commit 3773f94303aa443f6feae6163764032af73062bb Author: Tim Leikauf Date: Sat Jan 3 15:24:36 2026 +0100 Initialer Commit: Projekt Start diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..bdcbc5e Binary files /dev/null and b/.DS_Store differ diff --git a/CONNECTIONS_OVERVIEW.md b/CONNECTIONS_OVERVIEW.md new file mode 100644 index 0000000..a873327 --- /dev/null +++ b/CONNECTIONS_OVERVIEW.md @@ -0,0 +1,124 @@ +# 🔌 Verbindungen & API-Konfigurationen - Übersicht + +## ✅ Alle Verbindungen sind zentral konfiguriert! + +Alle Services verwenden die **zentrale Konfiguration** aus `woocommerce_service.dart`. Du musst nur **EINE Datei** anpassen! + +--- + +## 📍 Hauptkonfiguration (EINZIGE Stelle zum Anpassen) + +### `lib/services/woocommerce_service.dart` + +```dart +class WooCommerceService { + // 👇 HIER musst du nur diese 3 Werte ändern: + static const String baseUrl = 'https://hyggecraftery.com'; + static const String consumerKey = 'ck_your_consumer_key'; + static const String consumerSecret = 'cs_your_consumer_secret'; +} +``` + +**Das war's!** Alle anderen Services verwenden diese Werte automatisch. + +--- + +## 🔗 Welche Services verwenden die Konfiguration? + +### ✅ Automatisch konfiguriert (nutzen `WooCommerceService.baseUrl`): + +1. **AuthService** (`lib/services/auth_service.dart`) + - Login, Registrierung, Passwort-Reset + - WordPress REST API: `/wp-json/wp/v2/...` + - WooCommerce API: `/wp-json/wc/v3/...` + +2. **OrderService** (`lib/services/order_service.dart`) + - Bestellungen abrufen + - WooCommerce Orders API: `/wp-json/wc/v3/orders` + +3. **CouponService** (`lib/services/coupon_service.dart`) + - Gutscheine validieren + - WooCommerce Coupons API: `/wp-json/wc/v3/coupons` + +4. **WooCommerceCheckoutService** (`lib/services/woocommerce_checkout_service.dart`) + - Checkout-URLs erstellen + - Checkout-Seite: `/checkout/` + +5. **CheckoutScreen** (`lib/screens/checkout_screen.dart`) + - WebView für Checkout + - Warenkorb-URL: `/cart/` + +6. **WooCommerceService** selbst + - Produkte, Kategorien, Reviews + - Alle WooCommerce REST API Endpunkte + +--- + +## 📊 Separate Konfiguration (Optional) + +### Umami Analytics +**Datei:** `lib/services/analytics_service.dart` + +```dart +static const String umamiUrl = 'https://analytics.hyggecraftery.com'; +static const String websiteId = 'c43cd023-ff64-43c8-a42a-ac23d32366f6'; +``` + +**Hinweis:** Analytics ist optional und blockiert die App nicht, wenn es nicht funktioniert. + +--- + +## ✅ Checkliste - Was du konfigurieren musst: + +- [x] **WooCommerce URL** → `woocommerce_service.dart` Zeile 9 +- [x] **Consumer Key** → `woocommerce_service.dart` Zeile 10 +- [x] **Consumer Secret** → `woocommerce_service.dart` Zeile 11 +- [ ] (Optional) **Umami URL** → `analytics_service.dart` Zeile 10 +- [ ] (Optional) **Umami Website ID** → `analytics_service.dart` Zeile 13 + +--- + +## 🎯 Zusammenfassung + +**Du musst nur 1 Datei anpassen:** +- ✅ `lib/services/woocommerce_service.dart` (Zeilen 9-11) + +**Optional:** +- ⚙️ `lib/services/analytics_service.dart` (nur wenn du Analytics nutzen willst) + +**Alle anderen Verbindungen werden automatisch über die zentrale Konfiguration gesteuert!** + +--- + +## 🔍 Verwendete API-Endpunkte (automatisch) + +### WordPress REST API +- `/wp-json/wp/v2/users/me` - Benutzerdaten +- `/wp-json/wp/v2/users` - Registrierung +- `/wp-json/jwt-auth/v1/token` - JWT Login (optional) + +### WooCommerce REST API +- `/wp-json/wc/v3/products` - Produkte +- `/wp-json/wc/v3/products/categories` - Kategorien +- `/wp-json/wc/v3/products/reviews` - Bewertungen +- `/wp-json/wc/v3/orders` - Bestellungen +- `/wp-json/wc/v3/coupons` - Gutscheine +- `/wp-json/wc/v3/customers` - Kunden + +### WooCommerce Web-Seiten +- `/checkout/` - Checkout (WebView) +- `/cart/` - Warenkorb (WebView) + +--- + +## ✨ Fazit + +**Es fehlt nichts!** Alle Verbindungen sind zentral konfiguriert und verwenden die `baseUrl` aus `woocommerce_service.dart`. + +Du musst nur: +1. ✅ `baseUrl` in `woocommerce_service.dart` setzen +2. ✅ `consumerKey` in `woocommerce_service.dart` setzen +3. ✅ `consumerSecret` in `woocommerce_service.dart` setzen + +Fertig! 🎉 + diff --git a/COOLIFY_APP_KONFIGURIEREN.md b/COOLIFY_APP_KONFIGURIEREN.md new file mode 100644 index 0000000..a2f2c38 --- /dev/null +++ b/COOLIFY_APP_KONFIGURIEREN.md @@ -0,0 +1,132 @@ +# ⚙️ Coolify Application konfigurieren + +## 📋 Schritt-für-Schritt Anleitung + +### Schritt 1: Application öffnen + +1. Gehe zu Coolify Dashboard +2. Öffne deine **neue Application** (die du gerade erstellt hast) +3. Klicke auf **"Settings"** oder **"Configuration"** + +--- + +### Schritt 2: Source konfigurieren + +1. Gehe zu **"Source"** oder **"Repository"** Tab +2. **Source Type**: Wähle **"Private Repository (with GitHub App)"** +3. **GitHub App**: Wähle **"hyggecraftery-app"** aus der Dropdown-Liste + - Das ist die GitHub App, die du vorhin erstellt hast +4. **Repository**: + - Entweder: Wähle `Timborimbo/hyggecraftery_APP` aus der Dropdown-Liste + - ODER: Gib manuell ein: `https://github.com/Timborimbo/hyggecraftery_APP.git` +5. **Branch**: `main` +6. Klicke auf **"Save"** + +--- + +### Schritt 3: Build Pack konfigurieren + +1. Gehe zu **"Build Pack"** oder **"Build"** Tab +2. **Build Pack**: Wähle **"Dockerfile"** +3. **Dockerfile Path**: `Dockerfile` (Standard) +4. **Port**: `80` +5. Klicke auf **"Save"** + +--- + +### Schritt 4: Prüfen ob Repository verfügbar ist + +Falls das Repository nicht in der Dropdown-Liste erscheint: + +1. Gehe zurück zu **GitHub App Settings** (nicht Application Settings!) +2. Klicke auf **"Update Repositories"** (Button mit externem Link) +3. Oder: Gehe direkt zu GitHub → Settings → GitHub Apps → hyggecraftery-app +4. Stelle sicher, dass `hyggecraftery_APP` Repository ausgewählt ist +5. Gehe zurück zu Application Settings +6. Klicke auf **"Refresh"** oder **"Sync"** + +--- + +### Schritt 5: Deployen + +1. Gehe zurück zu deiner Application +2. Klicke auf **"Deploy"** oder **"Redeploy"** +3. Coolify wird jetzt: + - Code von GitHub holen (über die GitHub App) + - Dockerfile bauen + - App deployen + +--- + +## 🔍 Was passiert technisch? + +1. **Coolify verbindet sich mit GitHub:** + - Über die GitHub App (`hyggecraftery-app`) + - Mit den Credentials (App Id, Installation Id, Private Key) + +2. **Coolify holt den Code:** + - Von: `https://github.com/Timborimbo/hyggecraftery_APP.git` + - Branch: `main` + +3. **Coolify baut das Docker Image:** + - Verwendet das `Dockerfile` aus dem Repository + - Baut die Flutter Web App + +4. **Coolify deployed die App:** + - Startet den Container + - Macht die App verfügbar unter der konfigurierten Domain + +--- + +## ✅ Checkliste + +- [ ] Application erstellt +- [ ] Source Type = "Private Repository (with GitHub App)" +- [ ] GitHub App = "hyggecraftery-app" +- [ ] Repository = `Timborimbo/hyggecraftery_APP` oder URL +- [ ] Branch = `main` +- [ ] Build Pack = "Dockerfile" +- [ ] Dockerfile Path = `Dockerfile` +- [ ] Port = `80` +- [ ] Repository in GitHub App konfiguriert +- [ ] Deploy gestartet + +--- + +## 🆘 Troubleshooting + +### Problem: Repository erscheint nicht in der Liste + +**Lösung:** +1. Gehe zu GitHub App Settings in Coolify +2. Klicke auf **"Update Repositories"** +3. Prüfe in GitHub: Repository → Settings → GitHub Apps → hyggecraftery-app +4. Stelle sicher, dass das Repository ausgewählt ist + +### Problem: "Repository not found" + +**Lösung:** +- Prüfe die Repository-URL (muss genau sein) +- Prüfe, ob das Repository in der GitHub App konfiguriert ist +- Prüfe, ob die GitHub App Installation aktiv ist + +### Problem: "Permission denied" + +**Lösung:** +- Prüfe die GitHub App Permissions +- Stelle sicher, dass die App Zugriff auf das Repository hat + +--- + +## 📋 Zusammenfassung + +**Coolify weiß, was es nutzen soll, weil du es konfigurierst:** + +1. **GitHub App** → Verbindung zu GitHub +2. **Repository** → Welches Repository +3. **Branch** → Welcher Branch +4. **Build Pack** → Wie gebaut wird (Dockerfile) +5. **Port** → Auf welchem Port die App läuft + +Alles wird in den **Application Settings** konfiguriert! + diff --git a/COOLIFY_GITHUB_APP.md b/COOLIFY_GITHUB_APP.md new file mode 100644 index 0000000..9fdc61b --- /dev/null +++ b/COOLIFY_GITHUB_APP.md @@ -0,0 +1,114 @@ +# 🔗 Coolify mit GitHub App konfigurieren + +## ✅ GitHub App erstellt + +Du hast bereits eine GitHub App erstellt: +- **App Name:** `hyggecraftery-app` +- **App Id:** `2575909` +- **Installation Id:** `102151662` + +--- + +## 📋 Schritt 1: Application konfigurieren + +### 1.1 Application öffnen + +1. Gehe zu Coolify Dashboard +2. Öffne deine Application: **APP_hgyyecraftery** +3. Klicke auf **"Settings"** oder **"Configuration"** + +### 1.2 Source konfigurieren + +1. Gehe zu **"Source"** oder **"Repository"** +2. **Source Type**: Wähle **"Private Repository (with GitHub App)"** +3. **GitHub App**: Wähle **"hyggecraftery-app"** (deine erstellte App) +4. **Repository URL**: `https://github.com/Timborimbo/hyggecraftery_APP.git` + - ODER: Wähle das Repository aus der Dropdown-Liste (falls verfügbar) +5. **Branch**: `main` +6. **Speichern** + +--- + +## 📋 Schritt 2: Repository zu GitHub App hinzufügen (falls nötig) + +Falls das Repository nicht in der Dropdown-Liste erscheint: + +1. Gehe zurück zu **GitHub App Settings** (wo du die App erstellt hast) +2. Klicke auf **"Update Repositories"** (Button mit externem Link) +3. Oder: Gehe direkt zu GitHub → Settings → GitHub Apps → hyggecraftery-app +4. Stelle sicher, dass `hyggecraftery_APP` Repository ausgewählt ist +5. Gehe zurück zu Coolify und klicke auf **"Sync Name"** oder **"Update Repositories"** + +--- + +## 📋 Schritt 3: Deployen + +1. Gehe zurück zu deiner Application +2. Klicke auf **"Deploy"** oder **"Redeploy"** +3. Coolify wird jetzt: + - Code von GitHub holen (über die GitHub App) + - Dockerfile bauen + - App deployen + +--- + +## ✅ Vorteile der GitHub App + +- ✅ **Sicherer** als Deploy Keys (bessere Berechtigungen) +- ✅ **Einfacher** (kein manuelles Hinzufügen von Keys) +- ✅ **Mehrere Repositories** möglich +- ✅ **Automatische Updates** bei Repository-Änderungen + +--- + +## 🔍 Troubleshooting + +### Problem: Repository erscheint nicht in der Liste + +**Lösung:** +1. Gehe zu GitHub App Settings in Coolify +2. Klicke auf **"Update Repositories"** +3. Prüfe in GitHub, ob das Repository der App zugewiesen ist: + - GitHub → Settings → GitHub Apps → hyggecraftery-app → Repository access + +### Problem: "Repository not found" oder "Permission denied" + +**Lösung:** +1. Prüfe, ob das Repository in der GitHub App konfiguriert ist +2. Prüfe die Repository-URL (muss genau sein) +3. Prüfe, ob die GitHub App Installation aktiv ist + +### Problem: Code wird nicht aktualisiert + +**Lösung:** +- Pushe neue Änderungen zu GitHub: + ```bash + git add . + git commit -m "Update" + git push + ``` +- Dann in Coolify: **"Redeploy"** klicken + +--- + +## ✅ Checkliste + +- [ ] GitHub App erstellt: `hyggecraftery-app` ✅ +- [ ] Application: Source Type = "Private Repository (with GitHub App)" +- [ ] Application: GitHub App = "hyggecraftery-app" +- [ ] Application: Repository URL = `https://github.com/Timborimbo/hyggecraftery_APP.git` +- [ ] Application: Branch = `main` +- [ ] Repository in GitHub App konfiguriert +- [ ] Deploy gestartet +- [ ] Build erfolgreich + +--- + +## 🎯 Zusammenfassung + +1. ✅ GitHub App erstellt +2. **Application konfigurieren**: Private Repository + GitHub App +3. **Deployen**: Fertig! 🎉 + +Die GitHub App ist die beste Lösung für private Repositories - viel einfacher als Deploy Keys! + diff --git a/DEPLOY.md b/DEPLOY.md new file mode 100644 index 0000000..2a3cdb8 --- /dev/null +++ b/DEPLOY.md @@ -0,0 +1,115 @@ +# Deployment zu Coolify + +## ✅ Aktuelle Lösung: Git + GitHub App + +Die App wird über **Git** und eine **GitHub App** zu Coolify deployed. + +**Siehe:** [`README_DEPLOYMENT.md`](README_DEPLOYMENT.md) für die aktuelle Anleitung. + +--- + +## 📋 Kurzfassung + +### 1. Code zu GitHub pushen + +```bash +./push-to-github.sh +``` + +### 2. In Coolify + +1. **Application Settings** → **Source** +2. **Source Type**: "Private Repository (with GitHub App)" +3. **GitHub App**: "hyggecraftery-app" +4. **Repository**: `Timborimbo/hyggecraftery_APP` +5. **Branch**: `main` +6. **Build Pack**: "Dockerfile" +7. **Deploy** klicken + +Coolify baut automatisch die App mit dem Dockerfile! + +--- + +## Option 2: Mit Build Command + +### 1. In Coolify konfigurieren + +1. **Neue Resource** → **Application** +2. **Source**: Dein Git Repository +3. **Build Pack**: **Nixpacks** oder **Buildpacks** +4. **Build Command**: + ```bash + flutter pub get && flutter build web --release --web-renderer canvaskit + ``` +5. **Start Command**: + ```bash + npx serve -s build/web -l 3000 + ``` +6. **Port**: `3000` + +--- + +## Option 3: Lokaler Build & Upload + +### 1. Lokal bauen + +```bash +# Im Projektordner +flutter pub get +flutter build web --release --web-renderer canvaskit +``` + +### 2. Build-Ordner zu Coolify hochladen + +```bash +# Mit rsync oder scp +rsync -avz build/web/ user@coolify-server:/path/to/deployment/ +``` + +--- + +## Umgebungsvariablen (Optional) + +Falls du Umgebungsvariablen brauchst, kannst du sie in Coolify setzen: + +- `UMAMI_URL` (falls du die URL ändern willst) +- `WOOCOMMERCE_URL` (falls du die Shop-URL ändern willst) + +--- + +## Wichtig für Flutter Web + +⚠️ **WebView funktioniert nicht im Web!** + +Der Checkout verwendet `webview_flutter`, was im Web nicht funktioniert. Du musst den Checkout für Web anpassen: + +- Option 1: Checkout in neuem Tab öffnen +- Option 2: iframe verwenden +- Option 3: Native Checkout implementieren + +--- + +## Troubleshooting + +### Build schlägt fehl +```bash +# Prüfe Flutter Version +flutter --version + +# Clean Build +flutter clean +flutter pub get +flutter build web --release +``` + +### App lädt nicht +- Prüfe Browser-Konsole auf Fehler +- Prüfe nginx Logs in Coolify +- Prüfe CORS-Einstellungen bei WooCommerce + +--- + +## Empfohlene Methode + +**Dockerfile-Methode** ist am einfachsten und zuverlässigsten für Coolify! + diff --git a/DEPLOYMENT_ZEIT.md b/DEPLOYMENT_ZEIT.md new file mode 100644 index 0000000..3ff60b1 --- /dev/null +++ b/DEPLOYMENT_ZEIT.md @@ -0,0 +1,147 @@ +# ⏱️ Deployment-Zeit - Was ist normal? + +## ⏱️ Typische Deployment-Zeiten + +### Erster Build (kalt) +- **10-20 Minuten** (manchmal länger) +- Flutter SDK muss installiert werden (~2-3 Min) +- Dependencies herunterladen (~2-3 Min) +- Flutter Web Build (~5-10 Min) +- Docker Image bauen (~1-2 Min) + +### Weitere Builds (mit Cache) +- **5-10 Minuten** +- Flutter SDK ist bereits da (Cache) +- Dependencies werden gecacht +- Nur Code-Änderungen werden neu gebaut + +--- + +## 🐌 Warum dauert es so lange? + +### 1. Flutter SDK Installation +```dockerfile +RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter +``` +- **Dauer:** ~2-3 Minuten +- **Beim ersten Build:** Muss komplett heruntergeladen werden +- **Bei weiteren Builds:** Wird gecacht (schneller) + +### 2. Flutter Dependencies +```dockerfile +RUN flutter pub get +``` +- **Dauer:** ~2-3 Minuten +- **Beim ersten Build:** Alle Packages müssen heruntergeladen werden +- **Bei weiteren Builds:** Werden gecacht + +### 3. Flutter Web Build +```dockerfile +RUN flutter build web --release +``` +- **Dauer:** ~5-10 Minuten +- **Das ist der langsamste Teil!** +- Flutter kompiliert Dart zu JavaScript +- Optimiert den Code +- Erstellt alle Assets + +### 4. Docker Image Build +- **Dauer:** ~1-2 Minuten +- Kopiert die gebauten Dateien +- Erstellt das finale Image + +--- + +## ⚡ Möglichkeiten zur Beschleunigung + +### Option 1: Build-Cache optimieren (Coolify) + +Coolify sollte automatisch Docker-Layer cachen. Falls nicht: + +1. Gehe zu Application Settings +2. Suche nach **"Build Cache"** oder **"Docker Cache"** +3. Aktiviere **"Use Build Cache"** + +### Option 2: Multi-Stage Build optimieren + +Das Dockerfile ist bereits optimiert (Multi-Stage Build), aber wir könnten: +- Flutter SDK in einem separaten Image cachen +- Dependencies in einem separaten Layer cachen + +### Option 3: Lokaler Build + Upload (schneller) + +Falls du lokal baust und nur die `build/web` Dateien hochlädst: + +```bash +# Lokal bauen (auf deinem Mac - schneller) +flutter build web --release + +# Nur build/web zu Coolify kopieren +# Dann nginx Container verwenden +``` + +**Vorteil:** ~2-3 Minuten statt 10-20 Minuten + +**Nachteil:** Du musst Flutter lokal installiert haben + +--- + +## 📊 Was ist normal? + +### ✅ Normal: +- **Erster Build:** 10-20 Minuten +- **Weitere Builds:** 5-10 Minuten +- **Bei Code-Änderungen:** 5-10 Minuten + +### ⚠️ Zu langsam: +- **Erster Build:** >30 Minuten +- **Weitere Builds:** >15 Minuten + +### 🚀 Sehr schnell: +- **Erster Build:** <10 Minuten (selten) +- **Weitere Builds:** <5 Minuten (mit perfektem Cache) + +--- + +## 🔍 Deployment-Status prüfen + +**In Coolify Dashboard:** +1. Gehe zu deiner Application +2. Klicke auf **"Logs"** oder **"Build Logs"** +3. Du siehst den aktuellen Fortschritt: + - "Installing dependencies..." + - "Building Flutter app..." + - "Creating Docker image..." + +--- + +## 💡 Tipps + +### 1. Geduld beim ersten Build +- Der erste Build dauert immer am längsten +- Weitere Builds sind schneller (Cache) + +### 2. Logs beobachten +- Schaue in die Build-Logs +- Du siehst, wo es gerade hängt + +### 3. Nicht zu oft deployen +- Deploye nur bei wichtigen Änderungen +- Nicht bei jedem kleinen Commit + +### 4. Lokaler Build für Tests +- Teste lokal: `flutter run -d chrome` +- Deploye nur wenn alles funktioniert + +--- + +## ✅ Zusammenfassung + +**Typische Zeiten:** +- **Erster Build:** 10-20 Minuten ✅ +- **Weitere Builds:** 5-10 Minuten ✅ + +**Das ist normal für Flutter Web Builds!** 🎯 + +Flutter Web Builds sind einfach langsam - das ist ein bekanntes Problem. Aber die App läuft dann schnell! 🚀 + diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1f5df94 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,58 @@ +# Flutter Web Build für Coolify +FROM debian:stable-slim AS build + +# System-Abhängigkeiten installieren +RUN apt-get update && apt-get install -y \ + curl \ + git \ + unzip \ + xz-utils \ + zip \ + libglu1-mesa \ + && rm -rf /var/lib/apt/lists/* + +# Flutter SDK installieren +RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter +ENV PATH="/usr/local/flutter/bin:/usr/local/flutter/bin/cache/dart-sdk/bin:${PATH}" + +# Git Safe Directory für Root-User +RUN git config --global --add safe.directory /usr/local/flutter + +# Web-Support aktivieren +RUN flutter config --enable-web + +WORKDIR /app + +# Alle Dateien kopieren +COPY . . + +# Prüfe ob pubspec.yaml vorhanden ist (Debug) +RUN ls -la /app/ | head -20 + +# Dependencies installieren +RUN flutter pub get + +# Web-Build +RUN flutter build web --release + +# Production Stage mit nginx +FROM nginx:alpine + +# Kopiere die gebaute Web-App +COPY --from=build /app/build/web /usr/share/nginx/html + +# Nginx Konfiguration für SPA (Single Page Application) +RUN echo 'server { \ + listen 80; \ + server_name _; \ + root /usr/share/nginx/html; \ + index index.html; \ + location / { \ + try_files $uri $uri/ /index.html; \ + } \ +}' > /etc/nginx/conf.d/default.conf + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] + diff --git a/FEATURES_MISSING.md b/FEATURES_MISSING.md new file mode 100644 index 0000000..0a7559e --- /dev/null +++ b/FEATURES_MISSING.md @@ -0,0 +1,220 @@ +# Fehlende Features für eine vollständige E-Commerce-App + +Diese Liste zeigt alle wichtigen Features, die noch für eine professionelle E-Commerce-App fehlen. + +## 🔴 Kritisch (Sollte schnell implementiert werden) + +### 1. **Registrierung/Account-Erstellung** +- [ ] Registrierungs-Screen +- [ ] E-Mail-Verifizierung +- [ ] Passwort-Stärke-Validierung +- [ ] Nutzungsbedingungen & Datenschutz-Checkbox + +### 2. **Passwort zurücksetzen** +- [ ] "Passwort vergessen?" Link im Login +- [ ] E-Mail-Versand für Passwort-Reset +- [ ] Reset-Token-Validierung +- [ ] Neues Passwort setzen + +### 3. **Produktsuche** +- [ ] Suchleiste in der AppBar +- [ ] Such-API-Integration +- [ ] Suchergebnisse-Seite +- [ ] Suchverlauf (optional) + +### 4. **Kategorien & Filter** +- [ ] Kategorien-Übersicht +- [ ] Filter nach Kategorien +- [ ] Filter nach Preis +- [ ] Sortierung (Preis, Name, Neuheit) +- [ ] Filter-Reset-Funktion + +## 🟡 Wichtig (Für bessere UX) + +### 5. **Favoriten/Wunschliste** +- [ ] Herz-Icon auf Produktkarten +- [ ] Favoriten-Provider +- [ ] Favoriten-Seite +- [ ] Persistente Speicherung + +### 6. **Produktvarianten** +- [ ] Größen-Auswahl (S, M, L, XL) +- [ ] Farben-Auswahl +- [ ] Andere Varianten (Material, etc.) +- [ ] Varianten-Preis-Anzeige +- [ ] Verfügbarkeit pro Variante + +### 7. **Produktbewertungen & Reviews** +- [ ] Sterne-Bewertungen anzeigen +- [ ] Review-Liste pro Produkt +- [ ] Eigene Bewertung abgeben (für eingeloggte User) +- [ ] Bewertungen filtern (höchste/niedrigste) + +### 8. **Versandkosten-Anzeige** +- [ ] Versandkosten vor Checkout anzeigen +- [ ] Versandoptionen im Warenkorb +- [ ] Kostenloser Versand ab X€ +- [ ] Versandkosten-Rechner + +### 9. **Gutscheine/Coupons** +- [ ] Gutschein-Eingabefeld im Checkout +- [ ] Gutschein-Validierung +- [ ] Rabatt-Anzeige +- [ ] Gutschein-Historie + +### 10. **Bessere Error-Handling** +- [ ] Netzwerk-Fehler-Behandlung +- [ ] Retry-Mechanismus +- [ ] Offline-Modus-Anzeige +- [ ] Benutzerfreundliche Fehlermeldungen + +## 🟢 Nice-to-Have (Für Premium-Feel) + +### 11. **Push-Benachrichtigungen** +- [ ] Bestellstatus-Updates +- [ ] Neue Produkte +- [ ] Sale-Benachrichtigungen +- [ ] Firebase Cloud Messaging Integration + +### 12. **Produktvergleich** +- [ ] Produkte zum Vergleich hinzufügen +- [ ] Vergleichs-Seite +- [ ] Side-by-Side-Vergleich + +### 13. **Kundensupport** +- [ ] Kontakt-Formular +- [ ] FAQ-Seite +- [ ] Live-Chat (optional) +- [ ] Support-Ticket-System + +### 14. **Profil-Verwaltung** +- [ ] Profil bearbeiten +- [ ] Adressen verwalten +- [ ] Zahlungsmethoden speichern +- [ ] Profilbild hochladen + +### 15. **Social Features** +- [ ] Produkte teilen (Social Media) +- [ ] Produkt-Link kopieren +- [ ] "Freunden empfehlen" + +### 16. **Analytics & Tracking** +- [ ] Firebase Analytics +- [ ] User-Verhalten tracken +- [ ] Conversion-Tracking +- [ ] Crash Reporting (Firebase Crashlytics) + +## 🎨 Design & UX + +### 17. **App-Icons & Assets** +- [ ] App-Icon für iOS +- [ ] App-Icon für Android +- [ ] Splash Screen +- [ ] Launcher-Icons in verschiedenen Größen + +### 18. **Dark Mode** +- [ ] Dark Theme +- [ ] Theme-Switcher +- [ ] System-Theme-Erkennung + +### 19. **Mehrsprachigkeit (i18n)** +- [ ] Englisch/Deutsch +- [ ] Lokalisierung +- [ ] Währungsformatierung +- [ ] Datumsformatierung + +### 20. **Animationen & Transitions** +- [ ] Smooth Page-Transitions +- [ ] Loading-Animationen +- [ ] Micro-Interactions +- [ ] Pull-to-Refresh-Animationen + +## 🔧 Technische Verbesserungen + +### 21. **Performance** +- [ ] Bild-Optimierung (WebP) +- [ ] Lazy Loading +- [ ] Caching-Strategie +- [ ] Code-Splitting + +### 22. **Offline-Funktionalität** +- [ ] Offline-Produktliste (Cached) +- [ ] Offline-Warenkorb +- [ ] Sync bei Online-Wiederverbindung + +### 23. **Sicherheit** +- [ ] Passwort-Verschlüsselung +- [ ] SSL-Pinning +- [ ] API-Key-Sicherheit +- [ ] Biometrische Authentifizierung (Face ID/Touch ID) + +### 24. **Testing** +- [ ] Unit Tests +- [ ] Widget Tests +- [ ] Integration Tests +- [ ] E2E Tests + +## 📱 App Store Optimierung + +### 25. **Veröffentlichung** +- [ ] App Store Listing +- [ ] Google Play Listing +- [ ] Screenshots +- [ ] App-Beschreibung +- [ ] Privacy Policy +- [ ] Terms of Service + +### 26. **Versionierung** +- [ ] Semantic Versioning +- [ ] Changelog +- [ ] Update-Mechanismus +- [ ] Force-Update für kritische Versionen + +## 📊 Prioritäten-Empfehlung + +### Phase 1 (MVP+ - Sofort) +1. Registrierung +2. Passwort zurücksetzen +3. Produktsuche +4. Kategorien & Filter + +### Phase 2 (Wichtig - Nächste 2-4 Wochen) +5. Favoriten +6. Produktvarianten +7. Versandkosten-Anzeige +8. Besseres Error-Handling + +### Phase 3 (Nice-to-Have - Später) +9. Reviews +10. Gutscheine +11. Push-Benachrichtigungen +12. Dark Mode + +### Phase 4 (Premium - Optional) +13. Produktvergleich +14. Analytics +15. Offline-Modus +16. Mehrsprachigkeit + +## 💡 Quick Wins (Schnell umsetzbar) + +- [ ] "Passwort vergessen?" Link hinzufügen +- [ ] Suchleiste in AppBar +- [ ] Kategorien-Liste in Sidebar +- [ ] Favoriten-Button auf Produktkarten +- [ ] Dark Mode Toggle +- [ ] App-Icon erstellen +- [ ] Splash Screen + +## 🔗 Integrationen + +- [ ] **Firebase** (Analytics, Push, Crashlytics) +- [ ] **OneSignal** (Push-Benachrichtigungen) +- [ ] **Stripe/PayPal SDK** (Native Zahlungen) +- [ ] **Google Maps** (Versand-Tracking) +- [ ] **Social Login** (Google, Facebook, Apple) + +--- + +**Hinweis:** Nicht alle Features sind für jede App notwendig. Priorisiere basierend auf deinen spezifischen Anforderungen und deinem Zeitrahmen. + diff --git a/KONFIGURATION.md b/KONFIGURATION.md new file mode 100644 index 0000000..fccf10b --- /dev/null +++ b/KONFIGURATION.md @@ -0,0 +1,118 @@ +# API-Konfiguration für WordPress/WooCommerce + +## 📍 Hauptkonfiguration + +### 1. WooCommerce API-Konfiguration +**Datei:** `lib/services/woocommerce_service.dart` + +```dart +class WooCommerceService { + // 👇 HIER deine Shop-URL eintragen + static const String baseUrl = 'https://hyggecraftery.com'; + + // 👇 HIER deine WooCommerce API Keys eintragen + static const String consumerKey = 'ck_your_consumer_key'; + static const String consumerSecret = 'cs_your_consumer_secret'; +} +``` + +**Was musst du ändern:** +- `baseUrl`: Deine WordPress/WooCommerce Shop-URL (z.B. `https://hyggecraftery.com`) +- `consumerKey`: Dein WooCommerce Consumer Key (beginnt mit `ck_`) +- `consumerSecret`: Dein WooCommerce Consumer Secret (beginnt mit `cs_`) + +--- + +## 🔑 WooCommerce API Keys erstellen + +1. **WordPress Admin** → **WooCommerce** → **Settings** → **Advanced** → **REST API** +2. Klicke auf **"Add Key"** +3. Gib eine Beschreibung ein (z.B. "Flutter App") +4. Wähle **Berechtigungen**: + - **Read** (für Produkte, Kategorien, etc.) + - **Write** (für Bestellungen, falls du native Checkout willst) +5. Klicke auf **"Generate API Key"** +6. Kopiere **Consumer Key** und **Consumer Secret** + +--- + +## 📝 Weitere Konfigurationen + +### 2. Analytics (Umami) - Optional +**Datei:** `lib/services/analytics_service.dart` + +```dart +class AnalyticsService { + static const String umamiUrl = 'https://analytics.hyggecraftery.com'; + static const String websiteId = 'c43cd023-ff64-43c8-a42a-ac23d32366f6'; +} +``` + +--- + +## ⚙️ Welche API-Endpunkte werden verwendet? + +### WordPress REST API +- `/wp-json/wp/v2/users/me` - Benutzerdaten +- `/wp-json/wp/v2/users` - Benutzer-Registrierung +- `/wp-json/jwt-auth/v1/token` - JWT Login (falls Plugin installiert) + +### WooCommerce REST API +- `/wp-json/wc/v3/products` - Produkte +- `/wp-json/wc/v3/products/categories` - Kategorien +- `/wp-json/wc/v3/products/reviews` - Bewertungen +- `/wp-json/wc/v3/orders` - Bestellungen +- `/wp-json/wc/v3/coupons` - Gutscheine +- `/wp-json/wc/v3/customers` - Kunden + +### WooCommerce Web-Seiten +- `/checkout/` - Checkout-Seite (WebView) +- `/cart/` - Warenkorb-Seite + +--- + +## 🔒 Sicherheit + +**Wichtig:** +- **NICHT** die API Keys in Git committen! +- Verwende Umgebungsvariablen für Production +- Oder nutze `.env` Dateien (nicht im Repository) + +### Für Production (später): +Du kannst `env.dart` erweitern: + +```dart +// lib/env.dart +const String wooCommerceUrl = String.fromEnvironment( + 'WOOCOMMERCE_URL', + defaultValue: 'https://hyggecraftery.com', +); +``` + +--- + +## ✅ Checkliste + +- [ ] `baseUrl` in `woocommerce_service.dart` gesetzt +- [ ] `consumerKey` in `woocommerce_service.dart` gesetzt +- [ ] `consumerSecret` in `woocommerce_service.dart` gesetzt +- [ ] WooCommerce REST API aktiviert +- [ ] API Keys mit richtigen Berechtigungen erstellt +- [ ] (Optional) JWT Auth Plugin installiert für besseres Login + +--- + +## 🧪 Testen + +Nach der Konfiguration kannst du testen: + +```bash +# Lokal testen +flutter run -d chrome + +# Oder Web-Build testen +flutter build web --release +``` + +Die App sollte jetzt auf deine WooCommerce-API zugreifen können! + diff --git a/README.md b/README.md new file mode 100644 index 0000000..25baca2 --- /dev/null +++ b/README.md @@ -0,0 +1,112 @@ +# HyggeCraftery Flutter App + +Eine E-Commerce Flutter-App, die mit dem WordPress/WooCommerce-Shop hyggecraftery.com verbunden ist. + +## Features + +- 🏠 **Homepage** mit ausgewählten Produkten zum Thema Gemütlichkeit +- 📦 **Produktliste** mit allen verfügbaren Produkten +- 🔍 **Produktdetails** mit Bildern und Beschreibungen +- 🛒 **Warenkorb** Funktionalität mit Persistenz (bleibt nach App-Neustart erhalten) +- 💳 **Checkout** über WooCommerce WebView (nutzt alle WooCommerce-Einstellungen) +- 👤 **Login/Logout** für Kunden +- 📋 **Bestellhistorie** - Kunden können ihre Bestellungen einsehen +- 💾 **Persistente Anmeldung** - bleibt nach App-Neustart eingeloggt +- 🔄 **Pull-to-Refresh** für Produktlisten +- ♾️ **Infinite Scroll** für automatisches Laden weiterer Produkte + +## Setup + +### 1. WooCommerce API Konfiguration + +Öffne `lib/services/woocommerce_service.dart` und konfiguriere: + +```dart +static const String baseUrl = 'https://hyggecraftery.com'; +static const String consumerKey = 'ck_your_consumer_key'; +static const String consumerSecret = 'cs_your_consumer_secret'; +``` + +**WooCommerce REST API Keys erstellen:** +1. Gehe zu deinem WordPress Admin-Bereich +2. Navigiere zu WooCommerce → Settings → Advanced → REST API +3. Erstelle einen neuen API Key +4. Kopiere Consumer Key und Consumer Secret in die App + +**Hinweis:** Wenn deine Produkte öffentlich sind, kannst du die API auch ohne Authentifizierung verwenden (die Keys können leer bleiben). + +### 2. Dependencies installieren + +```bash +flutter pub get +``` + +### 3. App starten + +```bash +flutter run +``` + +## Projektstruktur + +``` +lib/ +├── main.dart # App-Einstiegspunkt +├── models/ +│ ├── product.dart # Produkt-Modell +│ ├── user.dart # Benutzer-Modell +│ └── order.dart # Bestellungs-Modell +├── services/ +│ ├── woocommerce_service.dart # WooCommerce API Service +│ ├── woocommerce_checkout_service.dart # Checkout Service +│ ├── auth_service.dart # Authentifizierungs-Service +│ └── order_service.dart # Bestellungs-Service +├── providers/ +│ ├── cart_provider.dart # Warenkorb State Management (mit Persistenz) +│ └── user_provider.dart # Benutzer State Management +├── screens/ +│ ├── home_screen.dart # Homepage mit Tabs +│ ├── products_screen.dart # Alle Produkte +│ ├── product_detail_screen.dart # Produktdetails +│ ├── cart_screen.dart # Warenkorb +│ ├── checkout_screen.dart # Checkout (WebView) +│ ├── login_screen.dart # Login +│ ├── orders_screen.dart # Bestellhistorie +│ └── order_detail_screen.dart # Bestelldetails +└── widgets/ + └── product_card.dart # Produktkarten-Widget +``` + +## Login & Authentifizierung + +Die App unterstützt die Anmeldung von Kunden mit ihren WooCommerce-Konten: + +1. **Login**: Kunden können sich mit ihrem Benutzernamen/E-Mail und Passwort anmelden +2. **Persistente Anmeldung**: Die Anmeldung bleibt nach App-Neustart erhalten +3. **Bestellhistorie**: Eingeloggte Kunden können alle ihre Bestellungen einsehen +4. **Account-Menü**: Über das Account-Icon in der AppBar können Kunden auf ihre Bestellungen zugreifen + +### WordPress JWT Auth Plugin (Optional) + +Für die beste Login-Erfahrung wird empfohlen, das **JWT Authentication for WP REST API** Plugin zu installieren: +- Plugin installieren: `https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/` +- Alternativ funktioniert die App auch ohne das Plugin (verwendet dann WooCommerce API) + +## Nächste Schritte + +- [x] Warenkorb-Seite implementieren +- [x] Checkout-Prozess implementieren +- [x] Benutzer-Authentifizierung +- [x] Bestellhistorie +- [ ] Produktsuche +- [ ] Kategorien-Filter +- [ ] Favoriten/Wunschliste +- [ ] Push-Benachrichtigungen für Bestellstatus + +## Technologien + +- Flutter 3.0+ +- Provider (State Management) +- HTTP (API Calls) +- Cached Network Image (Bildladen) + diff --git a/README_DEPLOYMENT.md b/README_DEPLOYMENT.md new file mode 100644 index 0000000..e82ef4b --- /dev/null +++ b/README_DEPLOYMENT.md @@ -0,0 +1,69 @@ +# 🚀 Deployment zu Coolify + +## ✅ Aktuelle Lösung: Git + GitHub App + +Die App wird über **Git** und eine **GitHub App** zu Coolify deployed. + +--- + +## 📋 Workflow + +### 1. Code ändern (lokal) + +Bearbeite die Dateien auf deinem Mac: +- `lib/main.dart` +- `lib/screens/...` +- etc. + +### 2. Code zu GitHub pushen + +```bash +cd /Users/tim/Documents/HyggeCraftery/APP +./push-to-github.sh +``` + +Das Script: +- Fügt alle Änderungen hinzu +- Erstellt einen Commit +- Pusht zu GitHub + +**Bei der ersten Push-Abfrage:** +- Username: `Timborimbo` +- Password: Dein Personal Access Token + +### 3. Coolify deployed automatisch + +- Coolify holt den Code von GitHub (über die GitHub App) +- Baut das Docker Image mit dem Dockerfile +- Deployed die neue Version + +**Oder manuell:** +- Gehe zu Coolify Dashboard +- Klicke auf **"Redeploy"** in deiner Application + +--- + +## 🔧 Wichtige Dateien + +- **`push-to-github.sh`** - Script zum Pushen zu GitHub +- **`setup-github.sh`** - Script zum Setup (einmalig) +- **`Dockerfile`** - Build-Konfiguration für Coolify +- **`COOLIFY_GITHUB_APP.md`** - Anleitung für GitHub App Setup +- **`COOLIFY_APP_KONFIGURIEREN.md`** - Anleitung für Application Konfiguration +- **`WIE_CODE_ZU_GITHUB.md`** - Erklärung des Git-Workflows + +--- + +## 📦 Repository + +**GitHub:** https://github.com/Timborimbo/hyggecraftery_APP + +--- + +## 🎯 Zusammenfassung + +1. Code ändern (lokal) +2. `./push-to-github.sh` ausführen +3. Coolify deployed automatisch oder manuell "Redeploy" klicken +4. Fertig! 🎉 + diff --git a/TOKEN_SPEICHERN.md b/TOKEN_SPEICHERN.md new file mode 100644 index 0000000..87eefc3 --- /dev/null +++ b/TOKEN_SPEICHERN.md @@ -0,0 +1,90 @@ +# 🔐 GitHub Token speichern + +## Problem + +Das Script fragt jedes Mal nach einem neuen Token, obwohl du bereits einen hast. + +--- + +## ✅ Lösung: Token in macOS Keychain speichern + +### Schritt 1: Credential Helper aktivieren + +```bash +git config --global credential.helper osxkeychain +``` + +Das habe ich bereits für dich gemacht! ✅ + +### Schritt 2: Token einmalig eingeben + +Beim nächsten `git push` wirst du nach Credentials gefragt: + +**Username:** `Timborimbo` +**Password:** `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` + +**Wichtig:** +- ✅ Hake **"Store in keychain"** an (wird automatisch angeboten) +- ✅ Der Token wird dann in macOS Keychain gespeichert +- ✅ Danach musst du ihn **nie wieder eingeben** + +--- + +## 🔄 Alternative: Token direkt in URL verwenden + +Falls du den Token nicht speichern möchtest, kannst du ihn direkt verwenden: + +```bash +git push https://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@github.com/Timborimbo/hyggecraftery_APP.git main +``` + +**Aber:** Das ist weniger sicher, da der Token in der Command-History gespeichert wird. + +--- + +## ✅ Empfohlene Lösung + +**Token in Keychain speichern** (einmalig): + +1. Führe aus: `git push origin main` +2. Bei der Abfrage: + - Username: `Timborimbo` + - Password: `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` + - ✅ "Store in keychain" anhaken +3. Fertig! 🎉 + +Danach funktioniert `./push-to-github.sh` ohne weitere Eingaben. + +--- + +## 🔍 Token in Keychain prüfen + +Falls du prüfen möchtest, ob der Token gespeichert ist: + +1. Öffne **Keychain Access** (macOS App) +2. Suche nach **"github.com"** +3. Du solltest einen Eintrag sehen + +--- + +## 🆘 Falls Token nicht gespeichert wird + +**Manuell in Keychain hinzufügen:** + +1. Öffne **Keychain Access** +2. Klicke auf **"Internet Passwords"** +3. Klicke auf **"+"** (neuer Eintrag) +4. **Server:** `github.com` +5. **Account Name:** `Timborimbo` +6. **Password:** `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` +7. **Speichern** + +--- + +## ✅ Zusammenfassung + +- ✅ Credential Helper ist aktiviert +- ✅ Code wurde erfolgreich gepusht +- ✅ Beim nächsten Push: Token einmalig eingeben und in Keychain speichern +- ✅ Danach: Keine weiteren Eingaben nötig! + diff --git a/WIE_CODE_ZU_GITHUB.md b/WIE_CODE_ZU_GITHUB.md new file mode 100644 index 0000000..eb10c5c --- /dev/null +++ b/WIE_CODE_ZU_GITHUB.md @@ -0,0 +1,153 @@ +# 📤 Wie kommt der Code zu GitHub? + +## ✅ Aktueller Status + +Der Code wurde bereits zu GitHub gepusht! 🎉 + +**Repository:** https://github.com/Timborimbo/hyggecraftery_APP + +--- + +## 🔄 Workflow: Code zu GitHub → Coolify + +### 1. Code auf deinem Mac ändern + +Du bearbeitest die Dateien lokal: +- `lib/main.dart` +- `lib/screens/...` +- etc. + +### 2. Code zu GitHub pushen + +**Einfachste Methode - Script verwenden:** + +```bash +cd /Users/tim/Documents/HyggeCraftery/APP +./push-to-github.sh +``` + +Das Script: +- Fügt alle Änderungen hinzu +- Erstellt einen Commit +- Pusht zu GitHub + +**Manuell:** + +```bash +cd /Users/tim/Documents/HyggeCraftery/APP + +# Änderungen hinzufügen +git add . + +# Commit erstellen +git commit -m "Beschreibung der Änderungen" + +# Zu GitHub pushen +git push origin main +``` + +**Bei der ersten Push-Abfrage nach Credentials:** +- **Username:** `Timborimbo` +- **Password:** Dein Personal Access Token (`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`) + +### 3. Coolify holt Code von GitHub + +**Automatisch:** +- Coolify kann automatisch bei jedem Push deployen (falls konfiguriert) + +**Manuell:** +- Gehe zu Coolify Dashboard +- Klicke auf **"Redeploy"** in deiner Application +- Coolify holt den neuesten Code von GitHub + +--- + +## 🔐 Token in Git speichern (optional) + +Damit du nicht jedes Mal den Token eingeben musst: + +```bash +# Token wird in macOS Keychain gespeichert +git config --global credential.helper osxkeychain +``` + +Dann beim ersten Push: +- Username: `Timborimbo` +- Password: `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` + +Danach wird der Token gespeichert und du musst ihn nicht mehr eingeben. + +--- + +## 📋 Typischer Workflow + +### Beispiel: Du änderst etwas in der App + +```bash +# 1. Code ändern (z.B. in lib/main.dart) + +# 2. Änderungen zu GitHub pushen +cd /Users/tim/Documents/HyggeCraftery/APP +./push-to-github.sh + +# 3. In Coolify: "Redeploy" klicken +# → Coolify holt neuen Code +# → Baut Docker Image neu +# → Deployed neue Version +``` + +--- + +## ✅ Prüfen ob Code auf GitHub ist + +**Im Browser:** +- Gehe zu: https://github.com/Timborimbo/hyggecraftery_APP +- Du solltest alle Dateien sehen: `lib/`, `pubspec.yaml`, `Dockerfile`, etc. + +**Per Git:** +```bash +cd /Users/tim/Documents/HyggeCraftery/APP +git log --oneline -5 +# Zeigt die letzten 5 Commits +``` + +--- + +## 🔄 Automatisches Deployment (optional) + +Coolify kann automatisch deployen, wenn du zu GitHub pushst: + +1. Gehe zu Application Settings +2. Suche nach **"Auto Deploy"** oder **"Webhooks"** +3. Aktiviere **"Deploy on Push"** +4. Jetzt: Bei jedem `git push` → Coolify deployed automatisch! + +--- + +## 📋 Zusammenfassung + +**Aktuell:** +- ✅ Code ist auf GitHub +- ✅ Coolify kann Code von GitHub holen + +**Zukünftige Updates:** +1. Code ändern (lokal) +2. `./push-to-github.sh` ausführen +3. In Coolify: "Redeploy" klicken +4. Fertig! 🎉 + +--- + +## 🆘 Hilfe + +**Problem: "Repository not found"** +- Prüfe, ob das Repository existiert: https://github.com/Timborimbo/hyggecraftery_APP + +**Problem: "Permission denied"** +- Prüfe deinen Personal Access Token +- Token muss `repo` Scope haben + +**Problem: "Nothing to commit"** +- Keine Änderungen vorhanden +- Das ist OK - Code ist bereits auf GitHub + diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..0650117 --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,8 @@ +include: package:flutter_lints/flutter.yaml + +linter: + rules: + prefer_const_constructors: true + prefer_const_literals_to_create_immutables: true + avoid_print: false + diff --git a/android/.DS_Store b/android/.DS_Store new file mode 100644 index 0000000..7377060 Binary files /dev/null and b/android/.DS_Store differ diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..8e4fffd --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,63 @@ +plugins { + id "com.android.application" + id "kotlin-android" + id "dev.flutter.flutter-gradle-plugin" +} + +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +android { + namespace "com.hyggecraftery.app" + compileSdkVersion 34 + ndkVersion flutter.ndkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + applicationId "com.hyggecraftery.app" + minSdkVersion 21 + targetSdkVersion 34 + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies {} + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..16e26bc --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + diff --git a/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java b/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java new file mode 100644 index 0000000..708d040 --- /dev/null +++ b/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java @@ -0,0 +1,44 @@ +package io.flutter.plugins; + +import androidx.annotation.Keep; +import androidx.annotation.NonNull; +import io.flutter.Log; + +import io.flutter.embedding.engine.FlutterEngine; + +/** + * Generated file. Do not edit. + * This file is generated by the Flutter tool based on the + * plugins that support the Android platform. + */ +@Keep +public final class GeneratedPluginRegistrant { + private static final String TAG = "GeneratedPluginRegistrant"; + public static void registerWith(@NonNull FlutterEngine flutterEngine) { + try { + flutterEngine.getPlugins().add(new dev.fluttercommunity.plus.connectivity.ConnectivityPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin connectivity_plus, dev.fluttercommunity.plus.connectivity.ConnectivityPlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.pathprovider.PathProviderPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin path_provider_android, io.flutter.plugins.pathprovider.PathProviderPlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin shared_preferences_android, io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.tekartik.sqflite.SqflitePlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin sqflite_android, com.tekartik.sqflite.SqflitePlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.webviewflutter.WebViewFlutterPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin webview_flutter_android, io.flutter.plugins.webviewflutter.WebViewFlutterPlugin", e); + } + } +} diff --git a/android/app/src/main/kotlin/com/hyggecraftery/app/MainActivity.kt b/android/app/src/main/kotlin/com/hyggecraftery/app/MainActivity.kt new file mode 100644 index 0000000..9b35717 --- /dev/null +++ b/android/app/src/main/kotlin/com/hyggecraftery/app/MainActivity.kt @@ -0,0 +1,7 @@ +package com.hyggecraftery.app + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} + diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..c22862d --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,32 @@ +buildscript { + ext.kotlin_version = '1.9.0' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:8.1.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +tasks.register("clean", Delete) { + delete rootProject.buildDir +} + diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..e60119f --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,4 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true + diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..76edbaa --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip + diff --git a/android/local.properties b/android/local.properties new file mode 100644 index 0000000..9dffb6a --- /dev/null +++ b/android/local.properties @@ -0,0 +1 @@ +flutter.sdk=/Users/tim/develop/flutter \ No newline at end of file diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..c91ee0a --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,30 @@ +pluginManagement { + def flutterSdkPath = { + def properties = new Properties() + file("local.properties").withInputStream { properties.load(it) } + def flutterSdkPath = properties.getProperty("flutter.sdk") + assert flutterSdkPath != null, "flutter.sdk not set in local.properties" + return flutterSdkPath + }() + + includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } + + plugins { + id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false + } +} + +plugins { + id "dev.flutter.flutter-plugin-loader" version "1.0.0" + id "com.android.application" version "8.1.0" apply false + id "org.jetbrains.kotlin.android" version "1.9.0" apply false +} + +include ":app" + diff --git a/build-and-export.sh b/build-and-export.sh new file mode 100755 index 0000000..6b60a64 --- /dev/null +++ b/build-and-export.sh @@ -0,0 +1,140 @@ +#!/bin/bash +# Script zum Bauen und Exportieren für Coolify (ohne Git/Accounts) + +echo "🚀 HyggeCraftery - Build & Export Script" +echo "========================================" +echo "" + +# Flutter-Pfad finden +FLUTTER_PATH="" +if command -v flutter &> /dev/null; then + FLUTTER_PATH="flutter" + echo "✅ Flutter gefunden im PATH" +else + # Typische Flutter-Installationspfade prüfen + POSSIBLE_PATHS=( + "$HOME/develop/flutter/bin/flutter" + "$HOME/flutter/bin/flutter" + "$HOME/.flutter/bin/flutter" + "/usr/local/flutter/bin/flutter" + "/opt/flutter/bin/flutter" + ) + + for path in "${POSSIBLE_PATHS[@]}"; do + if [ -f "$path" ]; then + FLUTTER_PATH="$path" + echo "✅ Flutter gefunden: $path" + # PATH für diese Session erweitern + export PATH="$(dirname "$path"):$PATH" + break + fi + done + + if [ -z "$FLUTTER_PATH" ]; then + echo "❌ Flutter ist nicht installiert oder nicht im PATH!" + echo " Installiere Flutter: https://flutter.dev/docs/get-started/install" + echo " Oder setze den PATH: export PATH=\"\$HOME/develop/flutter/bin:\$PATH\"" + exit 1 + fi +fi + +# Prüfe ob Docker installiert ist (optional) +HAS_DOCKER=false +if command -v docker &> /dev/null; then + HAS_DOCKER=true + echo "✅ Docker gefunden" +else + echo "⚠️ Docker nicht gefunden (optional für Docker Image Export)" +fi + +echo "" +echo "📦 Schritt 1: Flutter Dependencies installieren..." +$FLUTTER_PATH pub get + +if [ $? -ne 0 ]; then + echo "❌ Fehler beim Installieren der Dependencies!" + exit 1 +fi + +echo "" +echo "📦 Schritt 2: Flutter Web Build..." +$FLUTTER_PATH build web --release + +if [ $? -ne 0 ]; then + echo "❌ Fehler beim Build!" + exit 1 +fi + +echo "" +echo "✅ Flutter Build abgeschlossen!" +echo "📁 Build-Ordner: build/web" +echo "" + +# Option 1: Deployment-Archiv erstellen +echo "📦 Schritt 3: Erstelle Deployment-Archiv..." +tar -czf deploy.tar.gz \ + pubspec.yaml \ + lib/ \ + android/ \ + ios/ \ + analysis_options.yaml \ + Dockerfile \ + .dockerignore \ + --exclude='build' \ + --exclude='.dart_tool' \ + --exclude='.flutter-plugins' \ + --exclude='.flutter-plugins-dependencies' \ + 2>/dev/null + +if [ -f "deploy.tar.gz" ]; then + echo "✅ deploy.tar.gz erstellt ($(du -h deploy.tar.gz | cut -f1))" +else + echo "⚠️ Konnte deploy.tar.gz nicht erstellen" +fi + +# Option 2: Docker Image bauen (falls Docker verfügbar) +if [ "$HAS_DOCKER" = true ]; then + echo "" + echo "🐳 Schritt 4: Docker Image bauen..." + docker build -t hyggecraftery-app:latest . 2>&1 | tail -5 + + if [ $? -eq 0 ]; then + echo "✅ Docker Image gebaut: hyggecraftery-app:latest" + + echo "" + echo "💾 Möchtest du das Image als tar-Datei exportieren? (j/n)" + read -r EXPORT_IMAGE + + if [ "$EXPORT_IMAGE" = "j" ] || [ "$EXPORT_IMAGE" = "J" ] || [ "$EXPORT_IMAGE" = "y" ] || [ "$EXPORT_IMAGE" = "Y" ]; then + echo "📦 Exportiere Docker Image..." + docker save hyggecraftery-app:latest -o hyggecraftery-app.tar + if [ -f "hyggecraftery-app.tar" ]; then + echo "✅ hyggecraftery-app.tar erstellt ($(du -h hyggecraftery-app.tar | cut -f1))" + fi + fi + else + echo "⚠️ Docker Build fehlgeschlagen (nicht kritisch)" + fi +fi + +echo "" +echo "========================================" +echo "✅ Fertig!" +echo "" +echo "📦 Erstellte Dateien:" +echo " - build/web/ (Flutter Web Build)" +if [ -f "deploy.tar.gz" ]; then + echo " - deploy.tar.gz (Deployment-Archiv)" +fi +if [ -f "hyggecraftery-app.tar" ]; then + echo " - hyggecraftery-app.tar (Docker Image)" +fi +echo "" +echo "📋 Nächste Schritte:" +echo " 1. Öffne Coolify im Browser" +echo " 2. Neue Resource → Application" +echo " 3. Wähle eine Upload-Option" +echo " 4. Lade die Dateien hoch" +echo "" +echo "📖 Siehe DEPLOY_SCHRITT_FUER_SCHRITT.md für Details" + diff --git a/build/.DS_Store b/build/.DS_Store new file mode 100644 index 0000000..eb9fda7 Binary files /dev/null and b/build/.DS_Store differ diff --git a/build/6ab642d2d29d49c7c5f5a6d85fcef46b.cache.dill.track.dill b/build/6ab642d2d29d49c7c5f5a6d85fcef46b.cache.dill.track.dill new file mode 100644 index 0000000..95bffe6 Binary files /dev/null and b/build/6ab642d2d29d49c7c5f5a6d85fcef46b.cache.dill.track.dill differ diff --git a/build/a4c113762c1c0387974123a422d8588e/.filecache b/build/a4c113762c1c0387974123a422d8588e/.filecache new file mode 100644 index 0000000..9322cfb --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/.filecache @@ -0,0 +1 @@ +{"version":2,"files":[{"path":"/Users/tim/Documents/HyggeCraftery/APP/.dart_tool/package_config.json","hash":"7cfd80472d0d12315945f9292f896e2f"},{"path":"/Users/tim/Documents/HyggeCraftery/APP/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json","hash":"4d56c2376f211a41429c39b27c39921e"},{"path":"/Users/tim/develop/flutter/packages/flutter_tools/lib/src/build_system/targets/native_assets.dart","hash":"276915f1b5ecce2bf8c85fb481b16ce4"}]} \ No newline at end of file diff --git a/build/a4c113762c1c0387974123a422d8588e/_composite.stamp b/build/a4c113762c1c0387974123a422d8588e/_composite.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/_composite.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/build/a4c113762c1c0387974123a422d8588e/dart_build.d b/build/a4c113762c1c0387974123a422d8588e/dart_build.d new file mode 100644 index 0000000..89285d8 --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/dart_build.d @@ -0,0 +1 @@ + /Users/tim/Documents/HyggeCraftery/APP/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json: \ No newline at end of file diff --git a/build/a4c113762c1c0387974123a422d8588e/dart_build.stamp b/build/a4c113762c1c0387974123a422d8588e/dart_build.stamp new file mode 100644 index 0000000..8e2fe7b --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/dart_build.stamp @@ -0,0 +1 @@ +{"inputs":["/Users/tim/develop/flutter/packages/flutter_tools/lib/src/build_system/targets/native_assets.dart","/Users/tim/Documents/HyggeCraftery/APP/.dart_tool/package_config.json"],"outputs":["/Users/tim/Documents/HyggeCraftery/APP/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json","/Users/tim/Documents/HyggeCraftery/APP/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json"]} \ No newline at end of file diff --git a/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json b/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json new file mode 100644 index 0000000..8c5e1a5 --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json @@ -0,0 +1 @@ +{"build_start":"2026-01-01T22:14:59.946668","build_end":"2026-01-01T22:14:59.946669","dependencies":[],"code_assets":[],"data_assets":[]} \ No newline at end of file diff --git a/build/a4c113762c1c0387974123a422d8588e/gen_dart_plugin_registrant.stamp b/build/a4c113762c1c0387974123a422d8588e/gen_dart_plugin_registrant.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/gen_dart_plugin_registrant.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/build/a4c113762c1c0387974123a422d8588e/gen_localizations.stamp b/build/a4c113762c1c0387974123a422d8588e/gen_localizations.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/gen_localizations.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/build/a4c113762c1c0387974123a422d8588e/outputs.json b/build/a4c113762c1c0387974123a422d8588e/outputs.json new file mode 100644 index 0000000..2065dfb --- /dev/null +++ b/build/a4c113762c1c0387974123a422d8588e/outputs.json @@ -0,0 +1 @@ +["/Users/tim/Documents/HyggeCraftery/APP/build/a4c113762c1c0387974123a422d8588e/dart_build_result.json"] \ No newline at end of file diff --git a/build/flutter_assets/.DS_Store b/build/flutter_assets/.DS_Store new file mode 100644 index 0000000..e5b2573 Binary files /dev/null and b/build/flutter_assets/.DS_Store differ diff --git a/build/flutter_assets/AssetManifest.bin b/build/flutter_assets/AssetManifest.bin new file mode 100644 index 0000000..8fe7af5 --- /dev/null +++ b/build/flutter_assets/AssetManifest.bin @@ -0,0 +1 @@ + 2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf \ No newline at end of file diff --git a/build/flutter_assets/AssetManifest.bin.json b/build/flutter_assets/AssetManifest.bin.json new file mode 100644 index 0000000..69dd618 --- /dev/null +++ b/build/flutter_assets/AssetManifest.bin.json @@ -0,0 +1 @@ +"DQEHMnBhY2thZ2VzL2N1cGVydGlub19pY29ucy9hc3NldHMvQ3VwZXJ0aW5vSWNvbnMudHRmDAENAQcFYXNzZXQHMnBhY2thZ2VzL2N1cGVydGlub19pY29ucy9hc3NldHMvQ3VwZXJ0aW5vSWNvbnMudHRm" \ No newline at end of file diff --git a/build/flutter_assets/FontManifest.json b/build/flutter_assets/FontManifest.json new file mode 100644 index 0000000..464ab58 --- /dev/null +++ b/build/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/build/flutter_assets/NOTICES b/build/flutter_assets/NOTICES new file mode 100644 index 0000000..58f5cc9 --- /dev/null +++ b/build/flutter_assets/NOTICES @@ -0,0 +1,32074 @@ +abseil-cpp + + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +abseil-cpp + +Copyright 2020 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2009 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2010 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility + +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +angle +dart + +Copyright (c) 2011 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +dart +skia + +Copyright (c) 2013 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +dart +skia + +Copyright 2014 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +perfetto +skia + +Copyright 2020 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +skia + +Copyright 2017 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +skia + +Copyright 2018 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +brotli +icu +skia + +Copyright 2015 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +dart +flutter +icu +skia + +Copyright (c) 2012 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +dart +flutter +spring_animation +tonic +web_test_fonts + +Copyright 2013 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +dart +skia + +Copyright 2019 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +icu +skia + +Copyright 2016 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +skia + +Copyright (c) 2014 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +skia + +Copyright 2013 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +// Copyright 2018 The ANGLE Project Authors. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// +// Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// +// Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following +// disclaimer in the documentation and/or other materials provided +// with the distribution. +// +// Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. +// Ltd., nor the names of their contributors may be used to endorse +// or promote products derived from this software without specific +// prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2017 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2021 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2013-2017 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2013-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2017 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2018-2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2019-2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2020 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2002 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2007-2020 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +angle + +Copyright 2010 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2011 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2012 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2013 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2013-2020 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +angle + +Copyright 2014 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2015 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2015 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2016 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2017 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2017-2020 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +angle + +Copyright 2018 The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2018 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE Project. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE project authors. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the LICENSE file +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The Fuchsia Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 The ANGLE Project. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 The ANGLE Project. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2021-2022 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2022 The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2022 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2023 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle +boringssl +clock +cpu_features +fake_async +flatbuffers +gtest-parallel +spirv-cross +spirv-tools +swiftshader +vulkan-headers +vulkan-tools +vulkan-utility-libraries +wuffs +wycheproof_testvectors +yapf + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +angle +glfw + +Copyright (c) 2008-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle +spirv-tools + +Copyright (c) 2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle +swiftshader + +Copyright 2020 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle +xxhash + +Copyright 2019 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +args + +Copyright 2013, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +async +collection +mime +stream_channel +typed_data + +Copyright 2015, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +boolean_selector +meta + +Copyright 2016, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +brotli + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +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. +-------------------------------------------------------------------------------- +cached_network_image +cached_network_image_platform_interface +cached_network_image_web + + +The MIT License (MIT) + +Copyright (c) 2018 Rene Floor + +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. + +-------------------------------------------------------------------------------- +ceval + + + +Copyright (c) 2021 e_t + +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. +-------------------------------------------------------------------------------- +characters +ffi + +Copyright 2019, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +connectivity_plus + +Copyright 2017 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +connectivity_plus_platform_interface + +// Copyright 2020 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +cpu_features + +Copyright (C) 2010 The Android Open Source Project +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2017 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2017 Google LLC +Copyright 2020 Intel Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2018 IBM + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2018 IBM. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2022 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2022 IBM + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2022 IBM. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2023 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +crypto +vm_service + +Copyright 2015, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +cupertino_icons + +The MIT License (MIT) + +Copyright (c) 2016 Vladimir Kharlampidi + +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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) %d, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2012 Adam Singer (adam@solvr.io) +All Rights Reserved. + +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" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +In addition, the following condition applies: + +All redistributions must retain an intact copy of this copyright notice +and disclaimer. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2010, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2012, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright 2013 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2016 The Dart project authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2017 The Dart project authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2025 The Dart Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +double-conversion + +Copyright 2006-2008 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart +perfetto + +Copyright (C) 2022 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +dart +skia + +Copyright (c) 2015 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +skia + +Copyright 2022 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +zlib + +Copyright 2011 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +zlib + +Copyright 2012 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +zlib + +Copyright 2014 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dawn +skia + +Copyright 2025 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dbus + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +-------------------------------------------------------------------------------- +devtools + +Copyright 2019 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2020 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +devtools + +Copyright 2020 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2021 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2022 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2023 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2024 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +dio +dio_web_adapter + +MIT License + +Copyright (c) 2018 Wen Du (wendux) +Copyright (c) 2022 The CFUG Team + +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. +-------------------------------------------------------------------------------- +double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +double-conversion + +Copyright 2010 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +double-conversion + +Copyright 2012 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +email_validator + +MIT License + +Copyright (c) 2018 Fredrik Eilertsen + +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. + +-------------------------------------------------------------------------------- +equatable + + + +Copyright (c) 2018 Felix Angelov + +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. +-------------------------------------------------------------------------------- +etc1 + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the +copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other +entities that control, are controlled by, or are under common control with +that entity. For the purposes of this definition, "control" means (i) the +power, direct or indirect, to cause the direction or management of such +entity, whether by contract or otherwise, or (ii) ownership of fifty +percent (50%) or more of the outstanding shares, or (iii) beneficial +ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, +including but not limited to software source code, documentation +source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation +or translation of a Source form, including but not limited to compiled +object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object +form, made available under the License, as indicated by a copyright +notice that is included in or attached to the work (an example is +provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object +form, that is based on (or derived from) the Work and for which the +editorial revisions, annotations, elaborations, or other modifications +represent, as a whole, an original work of authorship. For the purposes +of this License, Derivative Works shall not include works that remain +separable from, or merely link (or bind by name) to the interfaces of, +the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original +version of the Work and any modifications or additions to that Work or +Derivative Works thereof, that is intentionally submitted to Licensor +for inclusion in the Work by the copyright owner or by an individual or +Legal Entity authorized to submit on behalf of the copyright owner. For +the purposes of this definition, "submitted" means any form of electronic, +verbal, or written communication sent to the Licensor or its +representatives, including but not limited to communication on electronic +mailing lists, source code control systems, and issue tracking systems that +are managed by, or on behalf of, the Licensor for the purpose of discussing +and improving the Work, but excluding communication that is conspicuously +marked or otherwise designated in writing by the copyright owner as "Not +a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on +behalf of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this +License, each Contributor hereby grants to You a perpetual, worldwide, +non-exclusive, no-charge, royalty-free, irrevocable copyright license to +reproduce, prepare Derivative Works of, publicly display, publicly perform, +sublicense, and distribute the Work and such Derivative Works in Source or +Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this +License, each Contributor hereby grants to You a perpetual, worldwide, +non-exclusive, no-charge, royalty-free, irrevocable (except as stated in +this section) patent license to make, have made, use, offer to sell, sell, +import, and otherwise transfer the Work, where such license applies only to +those patent claims licensable by such Contributor that are necessarily +infringed by their Contribution(s) alone or by combination of their +Contribution(s) with the Work to which such Contribution(s) was submitted. +If You institute patent litigation against any entity (including a cross-claim +or counterclaim in a lawsuit) alleging that the Work or a Contribution +incorporated within the Work constitutes direct or contributory patent +infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or +Derivative Works thereof in any medium, with or without modifications, and +in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that +You changed the files; and +You must retain, in the Source form of any Derivative Works that You +distribute, all copyright, patent, trademark, and attribution notices +from the Source form of the Work, excluding those notices that do not +pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, +then any Derivative Works that You distribute must include a readable +copy of the attribution notices contained within such NOTICE file, excluding +those notices that do not pertain to any part of the Derivative Works, in +at least one of the following places: within a NOTICE text file distributed +as part of the Derivative Works; within the Source form or documentation, if +provided along with the Derivative Works; or, within a display generated by +the Derivative Works, if and wherever such third-party notices normally +appear. The contents of the NOTICE file are for informational purposes +only and do not modify the License. You may add Your own attribution +notices within Derivative Works that You distribute, alongside or as +an addendum to the NOTICE text from the Work, provided that such additional +attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a +whole, provided Your use, reproduction, and distribution of the Work otherwise +complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any +Contribution intentionally submitted for inclusion in the Work by You to the +Licensor shall be under the terms and conditions of this License, without any +additional terms or conditions. Notwithstanding the above, nothing herein +shall supersede or modify the terms of any separate license agreement you +may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, +trademarks, service marks, or product names of the Licensor, except as +required for reasonable and customary use in describing the origin of the +Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to +in writing, Licensor provides the Work (and each Contributor provides its +Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF +ANY KIND, either express or implied, including, without limitation, any +warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or +FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining +the appropriateness of using or redistributing the Work and assume any risks +associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in +tort (including negligence), contract, or otherwise, unless required by +applicable law (such as deliberate and grossly negligent acts) or agreed to +in writing, shall any Contributor be liable to You for damages, including +any direct, indirect, special, incidental, or consequential damages of any +character arising as a result of this License or out of the use or inability +to use the Work (including but not limited to damages for loss of goodwill, +work stoppage, computer failure or malfunction, or any and all other +commercial damages or losses), even if such Contributor has been advised +of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the +Work or Derivative Works thereof, You may choose to offer, and charge a +fee for, acceptance of support, warranty, indemnity, or other liability +obligations and/or rights consistent with this License. However, in accepting +such obligations, You may act only on Your own behalf and on Your sole +responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any +liability incurred by, or claims asserted against, such Contributor by +reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS +-------------------------------------------------------------------------------- +etc1 + +Copyright 2009 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +etc_decoder + + * Copyright (c) 2020-2022 Hans-Kristian Arntzen + * + * 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. + * +-------------------------------------------------------------------------------- +etc_decoder + +Copyright (c) 2020-2022 Hans-Kristian Arntzen + +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. +-------------------------------------------------------------------------------- +expat + +! /bin/bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017-2024 Sebastian Pipping +Copyright (c) 2017 Rolf Eike Beer +Copyright (c) 2019 Mohammed Khajapasha +Copyright (c) 2019 Manish, Kumar +Copyright (c) 2019 Philippe Antoine +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2019 Philippe Antoine +Copyright (c) 2019-2025 Hanno Böck +Copyright (c) 2024 Alexander Bluhm +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017 Sebastian Pipping +Copyright (c) 2019 Jeffrey Walton +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017-2022 Sebastian Pipping +Copyright (c) 2018 Marco Maggi +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017-2024 Sebastian Pipping +Copyright (c) 2018 Marco Maggi +Copyright (c) 2019 Mohammed Khajapasha +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2021 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2022 Sebastian Pipping +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2024 Sebastian Pipping +Copyright (c) 2022 Rosen Penev +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2020-2023 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2021-2022 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2021-2025 Sebastian Pipping +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2024-2025 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash +Creates release tarball and detached GPG signature file for upload + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2018-2019 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env python3 + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2023 Sebastian Pipping +Copyright (c) 2021 Tim Bray +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +!/bin/sh +USAGE: get-version.sh path/to/expat.h + +This script will print Expat's version number on stdout. For example: + + $ ./conftools/get-version.sh ./lib/expat.h + 1.95.3 + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2002 Greg Stein +Copyright (c) 2017 Kerin Millar +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +!/usr/bin/env bash +Clean source directory after running the coverage script. + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Marco Maggi +Copyright (c) 2019 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper +Copyright (c) 2001-2025 Expat maintainers + +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. +-------------------------------------------------------------------------------- +expat + +Read an XML document from standard input and print +element declarations (if any) to standard output. +It must be used with Expat compiled for UTF-8 output. +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2024 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 Zhongyuan Zhou +Copyright (c) 2024 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Read an XML document from standard input and print an element +outline on standard output. +Must be used with Expat compiled for UTF-8 output. +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +This file is included (from xmltok.c, 1-3 times depending on XML_MIN_SIZE)! +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Boris Kolpackov +Copyright (c) 2022 Martin Ettl +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +This file is included! +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +This is simple demonstration of how to use expat. This program +reads an XML document from standard input and writes a line with +the name of each element to standard output indenting child +elements by one tab stop more than their parent element. +It must be used with Expat compiled for UTF-8 output. +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 Zhongyuan Zhou +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2004 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Yury Gribov +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2005 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2025 Sebastian Pipping +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2017 Rhodri James +Copyright (c) 2022 Thijs Schreijer +Copyright (c) 2023 Hanno Böck +Copyright (c) 2023 Sony Corporation / Snild Dolkow +Copyright (c) 2024 Taichi Haradaguchi <20001722@ymail.ne.jp> +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2002 Fred L. Drake, Jr. +Copyright (c) 2006 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2024 Sebastian Pipping +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Don Lewis +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Alexander Bluhm +Copyright (c) 2017 Benbuck Nason +Copyright (c) 2017 José Gutiérrez de la Concha +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Donghee Na +Copyright (c) 2022 Martin Ettl +Copyright (c) 2022 Sean McBride +Copyright (c) 2023 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2009 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Joe Orton +Copyright (c) 2020 Kleber Tarcísio +Copyright (c) 2021 Tim Bray +Copyright (c) 2022 Martin Ettl +Copyright (c) 2022 Sean McBride +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2004 Fred L. Drake, Jr. +Copyright (c) 2002-2009 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Franek Korta +Copyright (c) 2022 Sean McBride +Copyright (c) 2025 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2005 Karl Waclawek +Copyright (c) 2016-2024 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2016-2023 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2019 David Loffredo +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2022 Martin Ettl +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2024 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Donghee Na +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Karl Waclawek +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017-2024 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Donghee Na +Copyright (c) 2024 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017-2019 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2018 Sebastian Pipping +Copyright (c) 2018 Marco Maggi +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1999-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2007 Karl Waclawek +Copyright (c) 2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2017-2023 Sebastian Pipping +Copyright (c) 2023 Orgad Shaneh +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2022 Mark Brand +Copyright (c) 2025 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +d19ae032c224863c1527ba44d228cc34b99192c3a4c5a27af1f4e054d45ee031 (2.7.1+) +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2006 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016 Eric Rahm +Copyright (c) 2016-2025 Sebastian Pipping +Copyright (c) 2016 Gaurav +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2016 Gustavo Grieco +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Ed Schouten +Copyright (c) 2017-2022 Rhodri James +Copyright (c) 2017 Václav Slavík +Copyright (c) 2017 Viktor Szakats +Copyright (c) 2017 Chanho Park +Copyright (c) 2017 Rolf Eike Beer +Copyright (c) 2017 Hans Wennborg +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Marco Maggi +Copyright (c) 2018 Mariusz Zaborski +Copyright (c) 2019 David Loffredo +Copyright (c) 2019-2020 Ben Wagner +Copyright (c) 2019 Vadim Zeitlin +Copyright (c) 2021 Donghee Na +Copyright (c) 2022 Samanta Navarro +Copyright (c) 2022 Jeffrey Walton +Copyright (c) 2022 Jann Horn +Copyright (c) 2022 Sean McBride +Copyright (c) 2023 Owain Davies +Copyright (c) 2023-2024 Sony Corporation / Snild Dolkow +Copyright (c) 2024-2025 Berkay Eren Ürün +Copyright (c) 2024 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat +harfbuzz + +// Copyright (c) 2021 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fallback_root_certificates +nm + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +-------------------------------------------------------------------------------- +ffx_spd + + +Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) <2014> +------- +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. +-------------------------------------------------------------------------------- +ffx_spd + + +Copyright (c) 2017-2020 Advanced Micro Devices, Inc. All rights reserved. +------- +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. +-------------------------------------------------------------------------------- +ffx_spd + +Copyright (c) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +fiat + +The Apache License, Version 2.0 (Apache-2.0) + +Copyright 2015-2020 the fiat-crypto authors (see the AUTHORS file) + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +file + +Copyright 2017, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fixnum +stack_trace + +Copyright 2014, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +flatbuffers + + +Copyright 2015 gRPC authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + + +Copyright 2018 Dan Field. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2014 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2014 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2015 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2016 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2018 Dan Field + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2018 Dan Field. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2018 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2019 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2020 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2021 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2022 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2023 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2024 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers +gtest-parallel + +Copyright 2017 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flutter + +Copyright 2014 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +flutter + +Copyright 2014 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +flutter + +Copyright 2019 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +flutter +skia + +Copyright 2022 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +flutter +tonic + +Copyright 2013 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +flutter_cache_manager + + +The MIT License (MIT) + +Copyright (c) 2017 Rene Floor + +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. + +-------------------------------------------------------------------------------- +flutter_lints +path_provider +path_provider_linux +path_provider_platform_interface +path_provider_windows +plugin_platform_interface +shared_preferences_linux +shared_preferences_platform_interface +shared_preferences_web +shared_preferences_windows +vector_graphics +vector_graphics_codec +vector_graphics_compiler +webview_flutter +webview_flutter_platform_interface +xdg_directories + +Copyright 2013 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +flutter_svg + +Copyright (c) 2018 Dan Field + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000, 2001, 2004 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000-2001, 2002 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000-2001, 2003 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000-2010, 2012-2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2003 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org + + +--- end of FTL.TXT --- +-------------------------------------------------------------------------------- +freetype2 + +Copyright 1990, 1994, 1998 The Open Group + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +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 +OPEN GROUP 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. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2004, 2011 Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2014 + Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2001, 2002, 2012 Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. +-------------------------------------------------------------------------------- +freetype2 + +version 1.2.11, January 15th, 2017 + +Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +fuchsia_sdk + + + + +Copyright © 2005-2014 Rich Felker, et al. + +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. + + +Authors/contributors include: + +Alex Dowad +Alexander Monakov +Anthony G. Basile +Arvid Picciani +Bobby Bingham +Boris Brezillon +Brent Cook +Chris Spiegel +Clément Vasseur +Daniel Micay +Denys Vlasenko +Emil Renner Berthing +Felix Fietkau +Felix Janda +Gianluca Anzolin +Hauke Mehrtens +Hiltjo Posthuma +Isaac Dunham +Jaydeep Patil +Jens Gustedt +Jeremy Huntwork +Jo-Philipp Wich +Joakim Sindholt +John Spencer +Josiah Worcester +Justin Cormack +Khem Raj +Kylie McClain +Luca Barbato +Luka Perkov +M Farkas-Dyck (Strake) +Mahesh Bodapati +Michael Forney +Natanael Copa +Nicholas J. Kain +orc +Pascal Cuoq +Petr Hosek +Pierre Carrier +Rich Felker +Richard Pennington +Shiz +sin +Solar Designer +Stefan Kristiansson +Szabolcs Nagy +Timo Teräs +Trutz Behn +Valentin Ochs +William Haddon + +Portions of this software are derived from third-party works licensed +under terms compatible with the above MIT license: + +Much of the math library code (third_party/math/* and +third_party/complex/*, and third_party/include/libm.h) is +Copyright © 1993,2004 Sun Microsystems or +Copyright © 2003-2011 David Schultz or +Copyright © 2003-2009 Steven G. Kargl or +Copyright © 2003-2009 Bruce D. Evans or +Copyright © 2008 Stephen L. Moshier +and labelled as such in comments in the individual source files. All +have been licensed under extremely permissive terms. + +The smoothsort implementation (third_party/smoothsort/qsort.c) is +Copyright © 2011 Valentin Ochs and is licensed under an MIT-style +license. + +The x86_64 files in third_party/arch were written by Nicholas J. Kain +and is licensed under the standard MIT terms. + +All other files which have no copyright comments are original works +produced specifically for use as part of this library, written either +by Rich Felker, the main author of the library, or by one or more +contibutors listed above. Details on authorship of individual files +can be found in the git version control history of the project. The +omission of copyright and license comments in each file is in the +interest of source tree size. + +In addition, permission is hereby granted for all public header files +(include/* and arch/*/bits/*) and crt files intended to be linked into +applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit +the copyright notice and permission notice otherwise required by the +license, and to use these files without any requirement of +attribution. These files include substantial contributions from: + +Bobby Bingham +John Spencer +Nicholas J. Kain +Rich Felker +Richard Pennington +Stefan Kristiansson +Szabolcs Nagy + +all of whom have explicitly granted such permission. + +This file previously contained text expressing a belief that most of +the files covered by the above exception were sufficiently trivial not +to be subject to copyright, resulting in confusion over whether it +negated the permissions granted in the license. In the spirit of +permissive licensing, and of not having licensing issues being an +obstacle to adoption, that text has been removed. + +-------------------------------------------------------------------------------- +fuchsia_sdk + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2014 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2016 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2017 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2018 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2020 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2021 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2022 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2023 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2024 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2025 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glfw + + +Copyright (c) 2017 Sean Barrett +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. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +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 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. +-------------------------------------------------------------------------------- +glfw + +Copyright (C) 1997-2013 Sam Lantinga + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard + +Copyright (c) 2006-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2016 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2018 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2018 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2016 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2021 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2010 Olivier Delannoy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2012 Marcus Geelnard + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2014 Jonas Ådahl + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2021 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2022 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) Marcus Geelnard +Copyright (c) Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright 2014-2022 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +glslang + + + +Copyright (c) 2022 Google LLC +Copyright (c) 2022 Sascha Willems + +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. +-------------------------------------------------------------------------------- +glslang + + + +Copyright (c) 2022 Sascha Willems + +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. +-------------------------------------------------------------------------------- +glslang + + + +Copyright (c) 2023 NVIDIA CORPORATION. + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2004 3Dlabs Inc. Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2019 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2024 Valve Corporation. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Copyright (C) 2015-2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017, 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2024 Ravi Prakash Singh. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2016 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Copyright (c) 2023, Mobica Limited + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (c) 2002-2010 The ANGLE Project Authors. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2016-2020 Google, Inc. +Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2012 LunarG, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of LunarG Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2022-2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017, 2022-2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2019, 2022-2024 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2022-2024 Arm Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. +Copyright (C) 2020 The Khronos Group Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2023 Mobica Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017-2018 Google, Inc. +Copyright (C) 2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2019 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2023 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2024 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2025 Jan Kelemen + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2025 NVIDIA Corporation + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2025 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2013 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2017 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2020 The Khronos Group Inc. +Copyright (C) 2022-2024 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2015-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2019, Viktor Latypov +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020, Travis Fort +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2021 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2022, 2025 ARM Limited + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright 2017 The Glslang Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang + +Copyright 2018 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang + +Copyright(C) 2021 Advanced Micro Devices, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang +skia +spirv-tools + +Copyright (c) 2014-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang +spirv-tools + +Copyright (c) 2015-2016 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang +spirv-tools + +Copyright (c) 2021 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang +spirv-tools + +Copyright (c) 2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +gtest-parallel + +Copyright 2013 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +harfbuzz + + + + Copyright (c) Microsoft Corporation. + + 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 +-------------------------------------------------------------------------------- +harfbuzz + + + +Copyright (C) 2012 Zilong Tan (eric.zltan@gmail.com) + +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. +-------------------------------------------------------------------------------- +harfbuzz + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2012 Grigori Goronzy + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Owen Taylor, Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Owen Taylor, Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2006 Behdad Esfahbod +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007 Chris Wilson +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Contributor(s): +Chris Wilson +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod, Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. +Copyright © 2019, Facebook Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2018,2019,2020 Ebrahim Byagowi +Copyright © 2018 Khaled Hosny + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Codethink Author(s): Ryan Lortie +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Codethink Author(s): Ryan Lortie +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod, Roozbeh Pournader + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Roderick Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2013 Google, Inc. +Copyright © 2021 Khaled Hosny + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Roozbeh Pournader + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012 Mozilla Foundation. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Mozilla Author(s): Jonathan Kew + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2013 Mozilla Foundation. +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Mozilla Author(s): Jonathan Kew +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2017 Google, Inc. +Copyright © 2021 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2013 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Roozbeh Pournader + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015 Google, Inc. +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Garret Rieger, Roderick Sheeter +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015 Mozilla Foundation. +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Mozilla Author(s): Jonathan Kew +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015-2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Elie Roux +Copyright © 2018 Google, Inc. +Copyright © 2018-2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Seigo Nonaka, Calder Kitagawa + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Sascha Brawer + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Sascha Brawer, Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Khaled Hosny +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Sascha Brawer, Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Igalia S.L. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Igalia Author(s): Frédéric Wang + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017,2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Calder Kitagawa + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger, Rod Sheeter, Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger, Roderick Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Rod Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. +Copyright © 2023 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger, Roderick Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF1_INTERP_CS_HH +define HB_CFF1_INTERP_CS_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF2_INTERP_CS_HH +define HB_CFF2_INTERP_CS_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF_INTERP_COMMON_HH +define HB_CFF_INTERP_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF_INTERP_CS_COMMON_HH +define HB_CFF_INTERP_CS_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF_INTERP_DICT_COMMON_HH +define HB_CFF_INTERP_DICT_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_OT_CFF_COMMON_HH +define HB_OT_CFF_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018-2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019-2020 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +include "hb-ot-var-common.hh" +include "hb-ot-var-hvar-table.hh" +HVAR table data from SourceSerif4Variable-Roman_subset.otf +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +include "hb-ot-var-cvar-table.hh" +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc +Copyright © 2021, 2022 Black Foundry + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +ifndef HB_GEOMETRY_HH +define HB_GEOMETRY_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Matthias Clasen + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Behdad Esfahbod +Copyright © 1999 David Turner +Copyright © 2005 Werner Lemberg +Copyright © 2013-2015 Alexei Podtelezhnikov + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Qunxin Liu + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 David Corbett + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2025 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2025 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010-2022 Google, Inc. +Copyright © 2015-2020 Ebrahim Byagowi +Copyright © 2019,2020 Facebook, Inc. +Copyright © 2012,2015 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2011 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod +Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. +Copyright © 1998-2005 David Turner and Werner Lemberg +Copyright © 2016 Igalia S.L. +Copyright © 2022 Matthias Clasen +Copyright © 2018,2021 Khaled Hosny +Copyright © 2018,2019,2020 Adobe, Inc +Copyright © 2013-2015 Alexei Podtelezhnikov + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +http +http_parser +matcher +path +source_span +string_scanner + +Copyright 2014, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines Corporation and others. +All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines Corporation +and others. All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2002-2010, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2001-2003 International Business Machines +Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2001-2010 International Business Machines +Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2005, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2010, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2005, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2010, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +#################################################################### +Copyright (c) 2009, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +#################################################################### +Copyright (c) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +* +* Copyright (C) 2004-2006, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2002, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2003, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2005, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2006, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2007, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2009, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2013, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2001-2003, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2001-2005, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2009-2012, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2014, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2009 International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +***************************************************************************** + + Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + +***************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1995-2001, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1995-2005, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1995-2010, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1997-2000, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1997-2003, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1997-2010, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 2010, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1999-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2010 IBM Corporation and Others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2010-2014, International Business Machines Corporation and others. +All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt) +Copyright (C) The Internet Society (2002). All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 2016-2023 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE 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 OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +---------------------------------------------------------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +---------------------------------------------------------------------- + +ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +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, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +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 +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +---------------------------------------------------------------------- + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyright (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + +---------------------------------------------------------------------- + +Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (C) 2016 and later: Unicode, Inc. and others. + # License & terms of use: http://www.unicode.org/copyright.html + # Copyright (c) 2015 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: https://github.com/rober42539/lao-dictionary + # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt + # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary version of Nov 22, 2020 + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in binary + # form must reproduce the above copyright notice, this list of conditions and + # the following disclaimer in the documentation and/or other materials + # provided with the distribution. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Time Zone Database + + ICU uses the public domain data and code derived from Time Zone +Database for its time zone support. The ownership of the TZ database +is explained in BCP 175: Procedure for Maintaining the Time Zone +Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + +---------------------------------------------------------------------- + +Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- + + +File: install-sh (only for ICU4C) + + +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + + Copyright (C) 2001, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + +Copyright (C) 2002-2006 IBM, Inc. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2013, International Business Machines Corporation + and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2005, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2004, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2005, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2008, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2001, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2003, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2004, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2014 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2016 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2003, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2008, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2008, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2003, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2011 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2004, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2007, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2009, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2005, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2007, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2011, International Business Machines + Corporation, Google and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2011, International Business Machines + Corporation, Google and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2011-2014 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2012,2014 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2012-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2012-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2013-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2001-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2003-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2003-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2002, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2003, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2007, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2010, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2009,2014 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2011,2014-2015 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1998-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1998-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1998-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2009, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2015 International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016 International Business Machines Corporation + and others. All rights reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016 International Business Machines Corporation + and others. All rights reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2004, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2011 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2015 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2015 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2003, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2008, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2006 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2008-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2008-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2008-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2014 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2012,2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2016, International Business Machines Corporation and + others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2012 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2012-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2013-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2014-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2015-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2000-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2000-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2012, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2005, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2010, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2011, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2012, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2014, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2008 International Business Machines Corporation + and others. All rights reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2008, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2011, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2014 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2010, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2015, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2014, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2010, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2011, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2013, International Business Machines +Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2016, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1998-2016, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2007, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2010, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2011, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2000-2004, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2011, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2011, International Business Machines Corporation. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines Corporation. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003 - 2009, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003 - 2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2008, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2015, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2016, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2004 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2004-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2006-2012, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2006-2014, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2006-2016, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2014, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008, Google, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2009, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2014, Google, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2014, Google, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2015, Google, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2015, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2016, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2010, Google, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2010, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2011, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2016, International Business Machines Corporation, +Google, and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2012,2015 International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2013, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2012-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2012-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2012-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2016, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1999-2002, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2004, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2007, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2014, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2008, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2014 International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1996-2008, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1996-2012, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1997-2013, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2003-2014, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2008, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2008-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2007 Google Inc. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2007 Google Inc. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2001 and onwards Google Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2004 and onwards Google Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2011, International Business Machines Corporation and +others. All Rights Reserved. +Copyright (C) 2010 , Yahoo! Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. +Copyright (C) 2010 , Yahoo! Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2016, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2001-2016, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2006, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2012, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2003-2010 International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2004-2010, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2008-2010, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2008-2011, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2008-2014, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2010. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2011. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2012. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2014. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2016. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2017 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2017, International Business Machines Corporation, +Google, and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu +skia + +Copyright (c) 2018 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +include + + + +Copyright (c) 2013-2021 Niels Lohmann + +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. +-------------------------------------------------------------------------------- +include + + +Copyright (c) 2013-2019 Niels Lohmann . + +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. +-------------------------------------------------------------------------------- +include + +Copyright (C) 2011 Nick Bruun +Copyright (C) 2013 Vlad Lazarenko +Copyright (C) 2014 Nicolas Pauss +-------------------------------------------------------------------------------- +include + +Copyright (c) 2009 Florian Loitsch. + +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. + +-------------------------------------------------------------------------------- +include + +Copyright (c) 2011 - Nick Bruun. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. If you meet (any of) the author(s), you're encouraged to buy them a beer, + a drink or whatever is suited to the situation, given that you like the + software. +4. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +include +json + +@copyright Copyright (c) 2008-2009 Bjoern Hoehrmann +@sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ +-------------------------------------------------------------------------------- +inja + + + +Copyright (c) 2018-2021 Berscheid + +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. +-------------------------------------------------------------------------------- +inja + +___ _ Version 3.3 +|_ _|_ __ (_) __ _ https://github.com/pantor/inja +| || '_ \ | |/ _` | Licensed under the MIT License . +| || | | || | (_| | +|___|_| |_|/ |\__,_| Copyright (c) 2018-2021 Lars Berscheid +|__/ +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. +-------------------------------------------------------------------------------- +intl + +Copyright 2013, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +io + +Copyright 2017, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +io + +Copyright 2017, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +io + +Copyright 2021, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +js + +Copyright 2012, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +json + + + +Copyright (c) 2013-2022 Niels Lohmann + +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. +-------------------------------------------------------------------------------- +json + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2013-2014 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +leak_tracker +leak_tracker_flutter_testing +leak_tracker_testing + +Copyright 2022, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +libXNVCtrl + +/* + * Copyright (c) 2008 NVIDIA, Corporation + * + * 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 (including the next + * paragraph) 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. + */ +-------------------------------------------------------------------------------- +libXNVCtrl + +Copyright (c) 2008 NVIDIA, Corporation + +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 (including the next +paragraph) 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. +-------------------------------------------------------------------------------- +libXNVCtrl + +Copyright (c) 2010 NVIDIA, Corporation + +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 (including the next +paragraph) 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. +-------------------------------------------------------------------------------- +libcxx + +Copyright 2018 Ulf Adams +Copyright (c) Microsoft Corporation. All rights reserved. + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +libcxx + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.'s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1991-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + + + +Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT + +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. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +University of Illinois/NCSA +Open Source License + +Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT + +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +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: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +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 +CONTRIBUTORS 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 WITH THE +SOFTWARE. +-------------------------------------------------------------------------------- +libcxx +libcxxabi +llvm_libc + +============================================================================== +The LLVM Project is under the Apache License v2.0 with LLVM Exceptions: +============================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +---- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. +Author: Ragesh Radhakrishnan +Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. +Copyright (C) 2014, Linaro Limited. All Rights Reserved. +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2014, Jay Foad. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Portions of this code are based on the PBMPLUS library, which is: + +Copyright (C) 1988 by Jef Poskanzer. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This code is loosely based on ppmtogif from the PBMPLUS distribution +of Feb. 1991. That file contains the following copyright notice: + Based on GIFENCODE by David Rowley . + Lempel-Ziv compression based on "compress" by Spencer W. Thomas et al. + Copyright (C) 1989 by Jef Poskanzer. + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, provided + that the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation. This software is provided "as is" without express or + implied warranty. + +We are also required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1994, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1995, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code +relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +Modified 2009 by Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009-2012, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2012, 2015, D. R. Commander. +Copyright (C) 2014, MIPS Technologies, Inc., California. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, 2015-2016, D. R. Commander. +Copyright (C) 2014, MIPS Technologies, Inc., California. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2014, MIPS Technologies, Inc., California. +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modifications: +Copyright (C) 2013, Linaro Limited. +Copyright (C) 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 1997-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 1997-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2015-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2002-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2016, D. R. Commander. +Copyright (C) 2013, Linaro Limited. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2003-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2009 by Bill Allombert, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2015, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009, 2011-2012, 2014-2015, D. R. Commander. +Copyright (C) 2013, Linaro Limited. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2013 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010-2011, 2013-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2011, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2014-2016, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010-2011, 2015-2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2002-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2003-2008 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2003-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2003-2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2013-2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2012, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2013, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only information +relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2012-2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1992-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1992-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2002-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, 2015, D. R. Commander. +Copyright (C) 2013, MIPS Technologies, Inc., California. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Modified 2011 by Siarhei Siamashka. +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2011, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2013, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2012 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2011, 2014, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2012 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2013, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2011, 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2015-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2011, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2013, Linaro Limited. +Copyright (C) 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. +Copyright (C) 2013, Linaro Limited. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +Modified 1997-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +Modified 2009 by Bill Allombert, Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, 2015-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +Modified 2003-2010 by Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +Modified 2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-1998, Thomas G. Lane. +Modified 2000-2009 by Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-2010, Thomas G. Lane, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1997-2011, Thomas G. Lane, Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1997-2011, Thomas G. Lane, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo Licenses +====================== + +libjpeg-turbo is covered by three compatible BSD-style open source licenses: + +- The IJG (Independent JPEG Group) License, which is listed in + [README.ijg](README.ijg) + + This license applies to the libjpeg API library and associated programs + (any code inherited from libjpeg, and any modifications to that code.) + +- The Modified (3-clause) BSD License, which is listed in + [turbojpeg.c](turbojpeg.c) + + This license covers the TurboJPEG API library and associated programs. + +- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) + + This license is a subset of the other two, and it covers the libjpeg-turbo + SIMD extensions. + + +Complying with the libjpeg-turbo Licenses +========================================= + +This section provides a roll-up of the libjpeg-turbo licensing terms, to the +best of our understanding. + +1. If you are distributing a modified version of the libjpeg-turbo source, + then: + + 1. You cannot alter or remove any existing copyright or license notices + from the source. + + **Origin** + - Clause 1 of the IJG License + - Clause 1 of the Modified BSD License + - Clauses 1 and 3 of the zlib License + + 2. You must add your own copyright notice to the header of each source + file you modified, so others can tell that you modified that file (if + there is not an existing copyright header in that file, then you can + simply add a notice stating that you modified the file.) + + **Origin** + - Clause 1 of the IJG License + - Clause 2 of the zlib License + + 3. You must include the IJG README file, and you must not alter any of the + copyright or license text in that file. + + **Origin** + - Clause 1 of the IJG License + +2. If you are distributing only libjpeg-turbo binaries without the source, or + if you are distributing an application that statically links with + libjpeg-turbo, then: + + 1. Your product documentation must include a message stating: + + This software is based in part on the work of the Independent JPEG + Group. + + **Origin** + - Clause 2 of the IJG license + + 2. If your binary distribution includes or uses the TurboJPEG API, then + your product documentation must include the text of the Modified BSD + License. + + **Origin** + - Clause 2 of the Modified BSD License + +3. You cannot use the name of the IJG or The libjpeg-turbo Project or the + contributors thereof in advertising, publicity, etc. + + **Origin** + - IJG License + - Clause 3 of the Modified BSD License + +4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be + free of defects, nor do we accept any liability for undesirable + consequences resulting from your use of the software. + + **Origin** + - IJG License + - Modified BSD License + - zlib License + +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project +to include only information relevant to libjpeg-turbo, to wordsmith certain +sections, and to remove impolitic language that existed in the libjpeg v8 +README. It is included only for reference. Please see README.md for +information specific to libjpeg-turbo. + + +The Independent JPEG Group's JPEG software +========================================== + +This distribution contains a release of the Independent JPEG Group's free JPEG +software. You are welcome to redistribute this software and to use it for any +purpose, subject to the conditions under LEGAL ISSUES, below. + +This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, +Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, +Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, +and other members of the Independent JPEG Group. + +IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee +(also known as JPEG, together with ITU-T SG16). + + +DOCUMENTATION ROADMAP +===================== + +This file contains the following sections: + +OVERVIEW General description of JPEG and the IJG software. +LEGAL ISSUES Copyright, lack of warranty, terms of distribution. +REFERENCES Where to learn more about JPEG. +ARCHIVE LOCATIONS Where to find newer versions of this software. +FILE FORMAT WARS Software *not* to get. +TO DO Plans for future IJG releases. + +Other documentation files in the distribution are: + +User documentation: + usage.txt Usage instructions for cjpeg, djpeg, jpegtran, + rdjpgcom, and wrjpgcom. + *.1 Unix-style man pages for programs (same info as usage.txt). + wizard.txt Advanced usage instructions for JPEG wizards only. + change.log Version-to-version change highlights. +Programmer and internal documentation: + libjpeg.txt How to use the JPEG library in your own programs. + example.c Sample code for calling the JPEG library. + structure.txt Overview of the JPEG library's internal structure. + coderules.txt Coding style rules --- please read if you contribute code. + +Please read at least usage.txt. Some information can also be found in the JPEG +FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find +out where to obtain the FAQ article. + +If you want to understand how the JPEG code works, we suggest reading one or +more of the REFERENCES, then looking at the documentation files (in roughly +the order listed) before diving into the code. + + +OVERVIEW +======== + +This package contains C software to implement JPEG image encoding, decoding, +and transcoding. JPEG (pronounced "jay-peg") is a standardized compression +method for full-color and grayscale images. JPEG's strong suit is compressing +photographic images or other types of images that have smooth color and +brightness transitions between neighboring pixels. Images with sharp lines or +other abrupt features may not compress well with JPEG, and a higher JPEG +quality may have to be used to avoid visible compression artifacts with such +images. + +JPEG is lossy, meaning that the output pixels are not necessarily identical to +the input pixels. However, on photographic content and other "smooth" images, +very good compression ratios can be obtained with no visible compression +artifacts, and extremely high compression ratios are possible if you are +willing to sacrifice image quality (by reducing the "quality" setting in the +compressor.) + +This software implements JPEG baseline, extended-sequential, and progressive +compression processes. Provision is made for supporting all variants of these +processes, although some uncommon parameter settings aren't implemented yet. +We have made no provision for supporting the hierarchical or lossless +processes defined in the standard. + +We provide a set of library routines for reading and writing JPEG image files, +plus two sample applications "cjpeg" and "djpeg", which use the library to +perform conversion between JPEG and some other popular image file formats. +The library is intended to be reused in other applications. + +In order to support file conversion and viewing software, we have included +considerable functionality beyond the bare JPEG coding/decoding capability; +for example, the color quantization modules are not strictly part of JPEG +decoding, but they are essential for output to colormapped file formats or +colormapped displays. These extra functions can be compiled out of the +library if not required for a particular application. + +We have also included "jpegtran", a utility for lossless transcoding between +different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple +applications for inserting and extracting textual comments in JFIF files. + +The emphasis in designing this software has been on achieving portability and +flexibility, while also making it fast enough to be useful. In particular, +the software is not intended to be read as a tutorial on JPEG. (See the +REFERENCES section for introductory material.) Rather, it is intended to +be reliable, portable, industrial-strength code. We do not claim to have +achieved that goal in every aspect of the software, but we strive for it. + +We welcome the use of this software as a component of commercial products. +No royalty is required, but we do ask for an acknowledgement in product +documentation, as described under LEGAL ISSUES. + + +LEGAL ISSUES +============ + +In plain English: + +1. We don't promise that this software works. (But if you find any bugs, + please let us know!) +2. You can use this software for whatever you want. You don't have to pay us. +3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + +In legalese: + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +The Unix configuration script "configure" was produced with GNU Autoconf. +It is copyright by the Free Software Foundation but is freely distributable. +The same holds for its supporting scripts (config.guess, config.sub, +ltmain.sh). Another support script, install-sh, is copyright by X Consortium +but is also freely distributable. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent (now expired), GIF reading +support has been removed altogether, and the GIF writer has been simplified +to produce "uncompressed GIFs". This technique does not use the LZW +algorithm; the resulting GIF files are larger than usual, but are readable +by all standard GIF decoders. + +We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + + +REFERENCES +========== + +We recommend reading one or more of these references before trying to +understand the innards of the JPEG software. + +The best short technical introduction to the JPEG compression algorithm is + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. +(Adjacent articles in that issue discuss MPEG motion picture compression, +applications of JPEG, and related topics.) If you don't have the CACM issue +handy, a PDF file containing a revised version of Wallace's article is +available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually +a preprint for an article that appeared in IEEE Trans. Consumer Electronics) +omits the sample images that appeared in CACM, but it includes corrections +and some added material. Note: the Wallace article is copyright ACM and IEEE, +and it may not be used for commercial purposes. + +A somewhat less technical, more leisurely introduction to JPEG can be found in +"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by +M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides +good explanations and example C code for a multitude of compression methods +including JPEG. It is an excellent source if you are comfortable reading C +code but don't know much about data compression in general. The book's JPEG +sample code is far from industrial-strength, but when you are ready to look +at a full implementation, you've got one here... + +The best currently available description of JPEG is the textbook "JPEG Still +Image Data Compression Standard" by William B. Pennebaker and Joan L. +Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. +Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG +standards (DIS 10918-1 and draft DIS 10918-2). + +The original JPEG standard is divided into two parts, Part 1 being the actual +specification, while Part 2 covers compliance testing methods. Part 1 is +titled "Digital Compression and Coding of Continuous-tone Still Images, +Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS +10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of +Continuous-tone Still Images, Part 2: Compliance testing" and has document +numbers ISO/IEC IS 10918-2, ITU-T T.83. + +The JPEG standard does not specify all details of an interchangeable file +format. For the omitted details we follow the "JFIF" conventions, revision +1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report +and thus received a formal publication status. It is available as a free +download in PDF format from +http://www.ecma-international.org/publications/techreports/E-TR-098.htm. +A PostScript version of the JFIF document is available at +http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at +http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. + +The TIFF 6.0 file format specification can be obtained by FTP from +ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme +found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. +IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). +Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 +(Compression tag 7). Copies of this Note can be obtained from +http://www.ijg.org/files/. It is expected that the next revision +of the TIFF spec will replace the 6.0 JPEG design with the Note's design. +Although IJG's own code does not support TIFF/JPEG, the free libtiff library +uses our library to implement TIFF/JPEG per the Note. + + +ARCHIVE LOCATIONS +================= + +The "official" archive site for this software is www.ijg.org. +The most recent released version can always be found there in +directory "files". + +The JPEG FAQ (Frequently Asked Questions) article is a source of some +general information about JPEG. +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ +and other news.answers archive sites, including the official news.answers +archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. +If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu +with body + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 + + +FILE FORMAT WARS +================ + +The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together +with ITU-T SG16) currently promotes different formats containing the name +"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does +not support these formats (see REFERENCES). Indeed, one of the original +reasons for developing this free software was to help force convergence on +common, interoperable format standards for JPEG files. +Don't use an incompatible file format! +(In any case, our decoder will remain capable of reading existing JPEG +image files indefinitely.) + + +TO DO +===== + +Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. + +-------------------------------------------------------------------------------- +libjxl +skia +vulkan-deps + +Copyright 2021 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +libpng + +PNG Reference Library License version 2 +--------------------------------------- + + * Copyright (c) 1995-2024 The PNG Reference Library Authors. + * Copyright (c) 2018-2024 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + + 1. The origin of this source code must not be misrepresented. + + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. + +-------------------------------------------------------------------------------- +libpng + +PNG Reference Library License version 2 +--------------------------------------- + + * Copyright (c) 1995-2024 The PNG Reference Library Authors. + * Copyright (c) 2018-2024 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + + 1. The origin of this source code must not be misrepresented. + + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. + +END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE. + +TRADEMARK +========= + +The name "libpng" has not been registered by the Copyright owners +as a trademark in any jurisdiction. However, because libpng has +been distributed and maintained world-wide, continually since 1995, +the Copyright owners claim "common-law trademark protection" in any +jurisdiction where common-law trademark is recognized. + +-------------------------------------------------------------------------------- +libpng +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +libtess2 + +** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) +** Copyright (C) [dates of first publication] Silicon Graphics, Inc. +** All Rights Reserved. +** +** 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 including the dates of first publication and either this +** permission notice or a reference to http://oss.sgi.com/projects/FreeB/ 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 SILICON GRAPHICS, INC. +** 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. +** +** Except as contained in this notice, the name of Silicon Graphics, Inc. shall not +** be used in advertising or otherwise to promote the sale, use or other dealings in +** this Software without prior written authorization from Silicon Graphics, Inc. +-------------------------------------------------------------------------------- +libtess2 + +Copyright (c) 2009 Mikko Mononen memon@inside.org + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libwebp + +Copyright (c) 2010, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright (c) 2021, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2010 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2011 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2012 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2013 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2014 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2015 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2016 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2017 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2018 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2021 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2022 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +lints + +Copyright 2021, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +llvm_libc + +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2019 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +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: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +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 +CONTRIBUTORS 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 WITH THE +SOFTWARE. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as +defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner +that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that +control, are controlled by, or are under common control with that entity. For the +purposes of this definition, "control" means (i) the power, direct or indirect, to +cause the direction or management of such entity, whether by contract or otherwise, +or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or +(iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions +granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not +limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included in or +attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based +on (or derived from) the Work and for which the editorial revisions, annotations, +elaborations, or other modifications represent, as a whole, an original work of +authorship. For the purposes of this License, Derivative Works shall not include works +that remain separable from, or merely link (or bind by name) to the interfaces of, the +Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the +Work and any modifications or additions to that Work or Derivative Works thereof, that +is intentionally submitted to Licensor for inclusion in the Work by the copyright owner +or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. +For the purposes of this definition, "submitted" means any form of electronic, verbal, +or written communication sent to the Licensor or its representatives, including but not +limited to communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose +of discussing and improving the Work, but excluding communication that is conspicuously +marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a +Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each +Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, +royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each +Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, +royalty-free, irrevocable (except as stated in this section) patent license to make, +have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such +license applies only to those patent claims licensable by such Contributor that are +necessarily infringed by their Contribution(s) alone or by combination of their +Contribution(s) with the Work to which such Contribution(s) was submitted. If You +institute patent litigation against any entity (including a cross-claim or counterclaim +in a lawsuit) alleging that the Work or a Contribution incorporated within the Work +constitutes direct or contributory patent infringement, then any patent licenses granted +to You under this License for that Work shall terminate as of the date such litigation +is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative +Works thereof in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this +License; and +You must cause any modified files to carry prominent notices stating that You changed +the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all +copyright, patent, trademark, and attribution notices from the Source form of the Work, +excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the attribution +notices contained within such NOTICE file, excluding those notices that do not pertain +to any part of the Derivative Works, in at least one of the following places: within a +NOTICE text file distributed as part of the Derivative Works; within the Source form or +documentation, if provided along with the Derivative Works; or, within a display +generated by the Derivative Works, if and wherever such third-party notices normally +appear. The contents of the NOTICE file are for informational purposes only and do not +modify the License. You may add Your own attribution notices within Derivative Works +that You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as modifying +the License. + +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies with +the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution +intentionally submitted for inclusion in the Work by You to the Licensor shall be under +the terms and conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of any +separate license agreement you may have executed with Licensor regarding such +Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, +trademarks, service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and reproducing the +content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, +Licensor provides the Work (and each Contributor provides its Contributions) on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, + including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, + MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for + determining the appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort +(including negligence), contract, or otherwise, unless required by applicable law (such +as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor +be liable to You for damages, including any direct, indirect, special, incidental, or +consequential damages of any character arising as a result of this License or out of the +use or inability to use the Work (including but not limited to damages for loss of +goodwill, work stoppage, computer failure or malfunction, or any and all other +commercial damages or losses), even if such Contributor has been advised of the +possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or +Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of +support, warranty, indemnity, or other liability obligations and/or rights consistent +with this License. However, in accepting such obligations, You may act only on Your own +behalf and on Your sole responsibility, not on behalf of any other Contributor, and only +if You agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your accepting +any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: HOW TO APPLY THE APACHE LICENSE TO YOUR WORK +To apply the Apache License to your work, attach the following boilerplate notice, with +the fields enclosed by brackets "[]" replaced with your own identifying information. +(Don't include the brackets!) The text should be enclosed in the appropriate comment +syntax for the file format. We also recommend that a file or class name and description +of purpose be included on the same "printed page" as the copyright notice for easier +identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (C) 2015-2021 Valve Corporation +Copyright (C) 2015-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2021 The Khronos Group Inc. +Copyright (c) 2015-2021 Valve Corporation +Copyright (c) 2015-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2021 The Khronos Group Inc. +Copyright (c) 2015-2021 Valve Corporation +Copyright (c) 2015-2021 LunarG, Inc. +Copyright (c) 2015-2021 Google, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2023 The Khronos Group Inc. +Copyright (c) 2015-2023 Valve Corporation +Copyright (c) 2015-2023 LunarG, Inc. +Copyright (C) 2015-2016 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2017, 2019, 2021 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved. +Copyright (C) 2015-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2019 The Khronos Group Inc. +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2020-2021 Valve Corporation +Copyright (c) 2020-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2020-2022 Valve Corporation +Copyright (c) 2020-2022 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2020-2025 Valve Corporation +Copyright (c) 2020-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2022-2025 Valve Corporation +Copyright (c) 2022-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools +vulkan-headers + +Copyright 2023-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +lunarg-vulkantools +vulkan-tools + +Copyright 2017 The Glslang Authors. All rights reserved. +Copyright (c) 2018-2023 Valve Corporation +Copyright (c) 2018-2023 LunarG, Inc. +Copyright (c) 2023-2023 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools +vulkan-validation-layers + +Copyright 2023-2024 The Khronos Group Inc. +Copyright 2023-2024 Valve Corporation +Copyright 2023-2024 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +material_color_utilities + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2021 Google LLC + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +-------------------------------------------------------------------------------- +nested +provider + +MIT License + +Copyright (c) 2019 Remi Rousselet + +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. +-------------------------------------------------------------------------------- +node_preamble + + + +Copyright (c) 2015 Michael Bullington + +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. +-------------------------------------------------------------------------------- +node_preamble + +Copyright 2012, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +octo_image + +MIT License + +Copyright (c) 2020 Baseflow + +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. + +-------------------------------------------------------------------------------- +path_parsing + +Copyright (c) 2018 Dan Field + +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. + +-------------------------------------------------------------------------------- +path_provider_android +path_provider_foundation +shared_preferences +shared_preferences_android +shared_preferences_foundation +webview_flutter_wkwebview + +Copyright 2013 The Flutter Authors + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +perfetto + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright (c) 2017, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +perfetto + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright (c) 2020, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +perfetto + +Copyright (c) 2019 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); you +may not use this file except in compliance with the License. You may +obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +implied. See the License for the specific language governing +permissions and limitations under the License. +-------------------------------------------------------------------------------- +petitparser + +The MIT License + +Copyright (c) 2006-2024 Lukas Renggli. +All rights reserved. + +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. + +-------------------------------------------------------------------------------- +platform + +Copyright 2017, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +process_runner + +Copyright 2020 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +process_runner + +Copyright 2020 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available-> + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> + +Licensed under the MIT License (the "License"); you may not use this file except +in compliance with the License-> You may obtain a copy of the License at + +http://opensource->org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied-> See the License for the +specific language governing permissions and limitations under the License-> +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Licensed under the MIT License (the "License"); you may not use this file except +in compliance with the License. You may obtain a copy of the License at + +http://opensource.org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Licensed under the MIT License (the "License"); you may not use this file except +in compliance with the License. You may obtain a copy of the License at + +http://opensource.org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. +If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. + +A copy of the MIT License is included in this file. + +Other dependencies and licenses: + +Open Source Software Licensed Under the BSD License: +-------------------------------------------------------------------- + +The msinttypes r29 +Copyright (c) 2006-2013 Alexander Chemeris +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +Terms of the MIT License: +-------------------------------------------------------------------- + +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. +-------------------------------------------------------------------------------- +rapidjson + +The above software in this distribution may have been modified by +THL A29 Limited ("Tencent Modifications"). +All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. +-------------------------------------------------------------------------------- +re2 + +// Copyright (c) 2009 The RE2 Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +re2 + +Copyright 1999-2005 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2003-2009 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2003-2009 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2003-2010 Google Inc. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2006 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2006-2007 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2007 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2008 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2009 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2010 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2016 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2018 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2019 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2022 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2023 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +The authors of this software are Rob Pike and Ken Thompson. + Copyright (c) 2002 by Lucent Technologies. +Permission to use, copy, modify, and distribute this software for any +purpose without fee is hereby granted, provided that this entire notice +is included in all copies of any software which is or includes a copy +or modification of this software and in all copies of the supporting +documentation for such software. +THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED +WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY +REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY +OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. +-------------------------------------------------------------------------------- +rxdart + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +-------------------------------------------------------------------------------- +shaderc + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2017 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2017-2022 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2020 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2020-2022 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2015 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2016 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2017 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2018 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2019 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +skia + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2021 Google LLC + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +skia + +// Copyright (c) 2011 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright %s %s + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (C) 2014 Google Inc. All rights reserved. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2011 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2014 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2016 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2017 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2019 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2020 Google LLC. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2022 Google LLC. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2005 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2006 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2006 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2006-2012 The Android Open Source Project +Copyright 2012 Mozilla Foundation + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2007 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2009 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2009-2015 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google Inc. +Copyright 2012 Mozilla Foundation + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google Inc. +Copyright 2017 ARM Ltd. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 The Bazel Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 Google Inc. + +Use of this source code is governed by a BD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file + +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. + +Copyright 2014 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Mozilla Foundation + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 ARM Ltd. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google Inc. + +Use of this source code is governed by a BD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google Inc. + +Use of this source code is governed by a BSD-style license that can be found +in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google Inc. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 The Bazel Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google Inc. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google Inc. and Adobe Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google Inc. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC + +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2025 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2025 Google LLC +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2025 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +spirv-cross + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, +AND DISTRIBUTION + + 1. Definitions. + + + +"License" shall mean the terms and conditions for use, reproduction, and distribution +as defined by Sections 1 through 9 of this document. + + + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + + + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct +or indirect, to cause the direction or management of such entity, whether +by contract or otherwise, or (ii) ownership of fifty percent (50%) or more +of the outstanding shares, or (iii) beneficial ownership of such entity. + + + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions +granted by this License. + + + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + + + +"Object" form shall mean any form resulting from mechanical transformation +or translation of a Source form, including but not limited to compiled object +code, generated documentation, and conversions to other media types. + + + +"Work" shall mean the work of authorship, whether in Source or Object form, +made available under the License, as indicated by a copyright notice that +is included in or attached to the work (an example is provided in the Appendix +below). + + + +"Derivative Works" shall mean any work, whether in Source or Object form, +that is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative +Works shall not include works that remain separable from, or merely link (or +bind by name) to the interfaces of, the Work and Derivative Works thereof. + + + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative +Works thereof, that is intentionally submitted to Licensor for inclusion in +the Work by the copyright owner or by an individual or Legal Entity authorized +to submit on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication +sent to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor +for the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + + + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently incorporated +within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this +License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable copyright license to reproduce, prepare +Derivative Works of, publicly display, publicly perform, sublicense, and distribute +the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, +each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) patent +license to make, have made, use, offer to sell, sell, import, and otherwise +transfer the Work, where such license applies only to those patent claims +licensable by such Contributor that are necessarily infringed by their Contribution(s) +alone or by combination of their Contribution(s) with the Work to which such +Contribution(s) was submitted. If You institute patent litigation against +any entity (including a cross-claim or counterclaim in a lawsuit) alleging +that the Work or a Contribution incorporated within the Work constitutes direct +or contributory patent infringement, then any patent licenses granted to You +under this License for that Work shall terminate as of the date such litigation +is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or +Derivative Works thereof in any medium, with or without modifications, and +in Source or Object form, provided that You meet the following conditions: + +(a) You must give any other recipients of the Work or Derivative Works a copy +of this License; and + +(b) You must cause any modified files to carry prominent notices stating that +You changed the files; and + +(c) You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source +form of the Work, excluding those notices that do not pertain to any part +of the Derivative Works; and + +(d) If the Work includes a "NOTICE" text file as part of its distribution, +then any Derivative Works that You distribute must include a readable copy +of the attribution notices contained within such NOTICE file, excluding those +notices that do not pertain to any part of the Derivative Works, in at least +one of the following places: within a NOTICE text file distributed as part +of the Derivative Works; within the Source form or documentation, if provided +along with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents +of the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works +that You distribute, alongside or as an addendum to the NOTICE text from the +Work, provided that such additional attribution notices cannot be construed +as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, +or distribution of Your modifications, or for any such Derivative Works as +a whole, provided Your use, reproduction, and distribution of the Work otherwise +complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any +Contribution intentionally submitted for inclusion in the Work by You to the +Licensor shall be under the terms and conditions of this License, without +any additional terms or conditions. Notwithstanding the above, nothing herein +shall supersede or modify the terms of any separate license agreement you +may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, +trademarks, service marks, or product names of the Licensor, except as required +for reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to +in writing, Licensor provides the Work (and each Contributor provides its +Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied, including, without limitation, any warranties +or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR +A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness +of using or redistributing the Work and assume any risks associated with Your +exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether +in tort (including negligence), contract, or otherwise, unless required by +applicable law (such as deliberate and grossly negligent acts) or agreed to +in writing, shall any Contributor be liable to You for damages, including +any direct, indirect, special, incidental, or consequential damages of any +character arising as a result of this License or out of the use or inability +to use the Work (including but not limited to damages for loss of goodwill, +work stoppage, computer failure or malfunction, or any and all other commercial +damages or losses), even if such Contributor has been advised of the possibility +of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work +or Derivative Works thereof, You may choose to offer, and charge a fee for, +acceptance of support, warranty, indemnity, or other liability obligations +and/or rights consistent with this License. However, in accepting such obligations, +You may act only on Your own behalf and on Your sole responsibility, not on +behalf of any other Contributor, and only if You agree to indemnify, defend, +and hold each Contributor harmless for any liability incurred by, or claims +asserted against, such Contributor by reason of your accepting any such warranty +or additional liability. END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own identifying +information. (Don't include the brackets!) The text should be enclosed in +the appropriate comment syntax for the file format. We also recommend that +a file or class name and description of purpose be included on the same "printed +page" as the copyright notice for easier identification within third-party +archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. + +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software + +distributed under the License is distributed on an "AS IS" BASIS, + +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and + +limitations under the License. + +-------------------------------------------------------------------------------- +spirv-cross + +Copyright (c) 2014-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +spirv-cross + +Copyright (c) 2014-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +spirv-cross + +Copyright 2016-2021 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +spirv-cross + +Copyright 2019-2021 Hans-Kristian Arntzen + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (C) 2019 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2016 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2016 The Khronos Group Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2020 The Khronos Group Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2022 The Khronos Group Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All +rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2016 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2016 Google Inc. +Copyright (c) 2025 Arm Ltd. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2016 Google Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Google Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Pierre Moreau + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Copyright (c) 2018 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Copyright (c) 2018-2021 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Copyright (c) 2019 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Copyright (c) 2019 NVIDIA Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All +rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. +Copyright (c) 2024 NVIDIA Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 The Khronos Group Inc. +Copyright (c) 2018 Valve Corporation +Copyright (c) 2018 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Google LLC +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 The Khronos Group Inc. +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 André Perez Maselco + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Stefano Milizia + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Stefano Milizia +Copyright (c) 2020 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Vasyl Teliman + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020-2022 Google LLC +Copyright (c) 2022 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Alastair F. Donaldson + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Mostafa Ashraf + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Shiyu Liu + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 The Khronos Group Inc. +Copyright (c) 2021 Valve Corporation +Copyright (c) 2021 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 ZHOU He + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 Advanced Micro Devices, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 The Khronos Group Inc. +Copyright (c) 2022 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023-2025 Arm Ltd. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 Epic Games, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 NVIDIA Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (c) 2025 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2018 The Go Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2019 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2019 The Go Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2025 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spring_animation + + + +Copyright (c) Meta Platforms, Inc. and affiliates. + +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. +-------------------------------------------------------------------------------- +sqflite +sqflite_android +sqflite_common +sqflite_darwin +sqflite_platform_interface + +BSD 2-Clause License + +Copyright (c) 2019, Alexandre Roux Tekartik +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +sqlite + +The source code for SQLite is in the public domain. No claim of +copyright is made on any part of the core source code. (The +documentation and test code is a different matter - some sections of +documentation and test logic are governed by open-source licenses.) +All contributors to the SQLite core software have signed affidavits +specifically disavowing any copyright interest in the code. This means +that anybody is able to legally do anything they want with the SQLite +source code. + +There are other SQL database engines with liberal licenses that allow +the code to be broadly and freely used. But those other engines are +still governed by copyright law. SQLite is different in that copyright +law simply does not apply. + +The source code files for other SQL database engines typically begin +with a comment describing your legal rights to view and copy that +file. The SQLite source code contains no license since it is not +governed by copyright. Instead of a license, the SQLite source code +offers a blessing: + +May you do good and not evil +May you find forgiveness for yourself and forgive others +May you share freely, never taking more than you give. +-------------------------------------------------------------------------------- +swiftshader + + + +Copyright © 2008-2011 Kristian Høgsberg +Copyright © 2010-2011 Intel Corporation +Copyright © 2012-2013 Collabora, Ltd. + +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 (including the +next paragraph) 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. +-------------------------------------------------------------------------------- +swiftshader + +Copyright (C) 2001-2006 Bart Massey, Jamey Sharp, and Josh Triplett. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +swiftshader + +Copyright (C) 2008 The Android Open Source Project +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2014-2023 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2015-2023 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2016 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2018 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2018 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2019 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2019 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2019 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2020 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2021 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2022 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright © 2008 Kristian Høgsberg + +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 (including the +next paragraph) 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. +-------------------------------------------------------------------------------- +swiftshader + +Copyright © 2012 Intel Corporation + +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 (including the +next paragraph) 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. +-------------------------------------------------------------------------------- +swiftshader +vulkan +vulkan-headers + +Copyright 2015-2023 The Khronos Group Inc. +Copyright 2015-2023 Valve Corporation +Copyright 2015-2023 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +synchronized + +MIT License + +Copyright (c) 2016, Alexandre Roux Tekartik. + +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. +-------------------------------------------------------------------------------- +term_glyph + +Copyright 2017, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +test_api + +Copyright 2018, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +test_shaders + +Copyright (c) 2022 by Selman Ay (https://codepen.io/selmanays/pen/yLVmEqY) + +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. +-------------------------------------------------------------------------------- +uuid + +Copyright (c) 2021 Yulian Kuncheff + +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. +-------------------------------------------------------------------------------- +vector_math + +Copyright 2015, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (C) 2013 Andrew Magill + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +-------------------------------------------------------------------------------- +volk + +Copyright (c) 2018-2019 Arseny Kapoulkine + +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. +-------------------------------------------------------------------------------- +vulkan + +// Copyright (c) 2018 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +vulkan +vulkan-headers + +Copyright 2014-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan +vulkan-headers + +Copyright 2015-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright (c) 2018-2019 Collabora, Ltd. +Copyright 2013-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright 2013-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright 2021-2025 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright 2023-2025 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-tools + + +Copyright (c) 2015-2017 The Khronos Group Inc. +Copyright (c) 2015-2017 Valve Corporation +Copyright (c) 2015-2017 LunarG, Inc. +Copyright (c) 2015-2017 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + + +Copyright (c) 2018 The Khronos Group Inc. +Copyright (c) 2018 Valve Corporation +Copyright (c) 2018 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + + +Copyright 2014, 2017 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2016 The Khronos Group Inc. +Copyright (c) 2015-2016 Valve Corporation +Copyright (c) 2015-2016 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2018, 2023 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2019 The Khronos Group Inc. +Copyright (c) 2015-2019 Valve Corporation +Copyright (c) 2015-2019 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2019 The Khronos Group Inc. +Copyright (c) 2015-2019 Valve Corporation +Copyright (c) 2015-2019 LunarG, Inc. +Copyright (c) 2025 The Fuchsia Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2021 The Khronos Group Inc. +Copyright (c) 2015-2021 Valve Corporation +Copyright (c) 2015-2021 LunarG, Inc. +Copyright (c) 2023-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2016 Google, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2018 The Khronos Group Inc. +Copyright (c) 2018 Valve Corporation +Copyright (c) 2018 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2018-2020 The Khronos Group Inc. +Copyright (c) 2018-2020 Valve Corporation +Copyright (c) 2018-2020 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2019 The Khronos Group Inc. +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG, Inc. +Copyright (c) 2023 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2019-2022 The Khronos Group Inc. +Copyright (c) 2019-2022 Valve Corporation +Copyright (c) 2019-2022 LunarG, Inc. +Copyright (c) 2023-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2020 The Khronos Group Inc. +Copyright (c) 2020 Valve Corporation +Copyright (c) 2020 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2025 The Fuchsia Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools +vulkan-utility-libraries + +Copyright 2023 The Khronos Group Inc. +Copyright 2023 Valve Corporation +Copyright 2023 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-tools +vulkan-validation-layers + +Copyright (c) 2024 The Khronos Group Inc. +Copyright (c) 2024 Valve Corporation +Copyright (c) 2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools +vulkan-validation-layers + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2017, 2019-2024 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2024 Valve Corporation +Copyright (c) 2015-2017, 2019-2024 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2017, 2019-2024 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2024 Valve Corporation +Copyright (c) 2015-2017, 2019-2024 LunarG, Inc. +Modifications Copyright (C) 2022 RasterGrid Kft. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Copyright (c) 2015-2024 Google Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2019-2024 The Khronos Group Inc. +Copyright (c) 2019-2024 Valve Corporation +Copyright (c) 2019-2024 LunarG, Inc. +Copyright (C) 2019-2024 Google Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright 2023-2025 The Khronos Group Inc. +Copyright 2023-2025 Valve Corporation +Copyright 2023-2025 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-validation-layers + + + + +Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved. +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. + +=========================================================================================== +File: layers/external/inplace_function.h +File: layers/external/parallel_hashmap/phmap_utils.h + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2024 Google Inc. +Copyright (c) 2023-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. +Copyright (c) 2015-2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. +Copyright (c) 2023-2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2016-2025 Google Inc. +Copyright (c) 2016-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2017-2024 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2020-2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2021-2024 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 Google Inc. +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2024-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright 2014-2024 Valve Software +Copyright 2015-2024 Google Inc. +Copyright 2019-2024 LunarG, Inc. +All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (C) 2012-2021 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2016 The Khronos Group Inc. +Copyright (c) 2015-2023 Valve Corporation +Copyright (c) 2015-2023 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2016, 2020-2025 The Khronos Group Inc. +Copyright (c) 2015-2016, 2020-2025 Valve Corporation +Copyright (c) 2015-2016, 2020-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2017, 2019-2025 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2025 Valve Corporation +Copyright (c) 2015-2017, 2019-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2017, 2019-2025 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2025 Valve Corporation +Copyright (c) 2015-2017, 2019-2025 LunarG, Inc. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2020 The Khronos Group Inc. +Copyright (c) 2015-2023 Valve Corporation +Copyright (c) 2015-2023 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Copyright (C) 2015-2023 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2023 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2023 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (C) 2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (C) 2025 Arm Limited. +Modifications Copyright (C) 2020-2025 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022-2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2024 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2021 The Khronos Group Inc. +Copyright (c) 2018-2023 Valve Corporation +Copyright (c) 2018-2023 LunarG, Inc. +Copyright (C) 2018-2021 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2024 The Khronos Group Inc. +Copyright (c) 2018-2024 Valve Corporation +Copyright (c) 2018-2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2025 The Khronos Group Inc. +Copyright (c) 2018-2025 Valve Corporation +Copyright (c) 2018-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2025 The Khronos Group Inc. +Copyright (c) 2018-2025 Valve Corporation +Copyright (c) 2018-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019, 2021, 2023-2025 The Khronos Group Inc. +Copyright (c) 2019, 2021, 2023-2025 Valve Corporation +Copyright (c) 2019, 2021, 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2024 The Khronos Group Inc. +Copyright (c) 2019-2024 Valve Corporation +Copyright (c) 2019-2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. +Copyright (C) 2019-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2020-2025 The Khronos Group Inc. +Copyright (c) 2020-2025 Valve Corporation +Copyright (c) 2020-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2020-2025 The Khronos Group Inc. +Copyright (c) 2020-2025 Valve Corporation +Copyright (c) 2020-2025 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (C) 2021-2022 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (C) 2021-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (C) 2021-2025 Google Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2022-2023 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2022-2024 The Khronos Group Inc. +Copyright (c) 2022-2024 RasterGrid Kft. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2022-2025 The Khronos Group Inc. +Copyright (c) 2022-2025 Valve Corporation +Copyright (c) 2022-2025 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023 The Khronos Group Inc. +Copyright (c) 2023 Valve Corporation +Copyright (c) 2023 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2024 LunarG, Inc. +Copyright (c) 2023-2024 Valve Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2024 Nintendo +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 LunarG, Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 Nintendo +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024 The Khronos Group Inc. +Copyright (c) 2024 LunarG, Inc. +Copyright (c) 2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024 The Khronos Group Inc. +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024 Valve Corporation +Copyright (c) 2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024-2025 The Khronos Group Inc. +Copyright (c) 2024-2025 Valve Corporation +Copyright (c) 2024-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024-2025 The Khronos Group Inc. +Copyright (c) 2024-2025 Valve Corporation +Copyright (c) 2024-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright 2017 The Glslang Authors. All rights reserved. +Copyright (c) 2018-2025 Valve Corporation +Copyright (c) 2018-2025 LunarG, Inc. +Copyright (c) 2023-2023 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +The majority of files in this project use the Apache 2.0 License. +There are a few exceptions and their license can be found in the source. +Any license deviations from Apache 2.0 are "more permissive" licenses. +Any file without a license in it's source defaults to the repository Apache 2.0 License. + +=========================================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + + +Copyright (C) 1997-2020 by Dimitri van Heesch + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + + +Copyright (c) 2021 - 2022 jothepro + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + +Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + +Copyright (c) 2018-2025 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + +Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +web + +Copyright 2023, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +web_locale_keymap + + + +Copyright (c) 2015 - present Microsoft Corporation + +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. +-------------------------------------------------------------------------------- +webview_flutter_android + +Copyright 2013 The Flutter Authors + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +xml + +The MIT License + +Copyright (c) 2006-2025 Lukas Renggli. +All rights reserved. + +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. + +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet + + BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet. + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +xxhash + +xxHash Library +Copyright (c) 2012-2014, Yann Collet +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +yapf + +Copyright 2022 Bill Wendling, All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +yapf_diff + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2005 Gilles Vollant +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) + +Modifications for Zip64 support +Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) + +For more info read MiniZip_info.txt + +--------------------------------------------------------------------------- + +Condition of use and distribution are the same than zlib : + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) + +Modifications of Unzip for Zip64 +Copyright (C) 2007-2008 Even Rouault + +Modifications for Zip64 support on both zip and unzip +Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) + +For more info read MiniZip_info.txt + +--------------------------------------------------------------------------------- + +Condition of use and distribution are the same than zlib : + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 2017 ARM, Inc. +Copyright 2017 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2017 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2017 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2018 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2019 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +version 1.2.12, March 27th, 2022 + +Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +version 1.3.0.1, August xxth, 2023 + +Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/build/flutter_assets/fonts/MaterialIcons-Regular.otf b/build/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..8c99266 Binary files /dev/null and b/build/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/build/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/build/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 0000000..d580ce7 Binary files /dev/null and b/build/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/build/flutter_assets/shaders/ink_sparkle.frag b/build/flutter_assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..d43532a --- /dev/null +++ b/build/flutter_assets/shaders/ink_sparkle.frag @@ -0,0 +1,126 @@ +{ + "sksl": { + "entrypoint": "ink_sparkle_fragment_main", + "shader": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec4 u_color;\nuniform vec4 u_composite_1;\nuniform vec2 u_center;\nuniform float u_max_radius;\nuniform vec2 u_resolution_scale;\nuniform vec2 u_noise_scale;\nuniform float u_noise_phase;\nuniform vec2 u_circle1;\nuniform vec2 u_circle2;\nuniform vec2 u_circle3;\nuniform vec2 u_rotation1;\nuniform vec2 u_rotation2;\nuniform vec2 u_rotation3;\n\nvec4 fragColor;\n\nfloat u_alpha;\nfloat u_sparkle_alpha;\nfloat u_blur;\nfloat u_radius_scale;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nmat2 FLT_flutter_local_rotate2d(vec2 rad)\n{\n return mat2(vec2(rad.x, -rad.y), vec2(rad.y, rad.x));\n}\n\nfloat FLT_flutter_local_soft_circle(vec2 uv, vec2 xy, float radius, float blur)\n{\n float blur_half = blur * 0.5;\n float d = distance(uv, xy);\n return 1.0 - smoothstep(1.0 - blur_half, 1.0 + blur_half, d / radius);\n}\n\nfloat FLT_flutter_local_circle_grid(vec2 resolution, inout vec2 p, vec2 xy, vec2 rotation, float cell_diameter)\n{\n vec2 param = rotation;\n p = (FLT_flutter_local_rotate2d(param) * (xy - p)) + xy;\n p = mod(p, vec2(cell_diameter)) / resolution;\n float cell_uv = (cell_diameter / resolution.y) * 0.5;\n float r = 0.64999997615814208984375 * cell_uv;\n vec2 param_1 = p;\n vec2 param_2 = vec2(cell_uv);\n float param_3 = r;\n float param_4 = r * 50.0;\n return FLT_flutter_local_soft_circle(param_1, param_2, param_3, param_4);\n}\n\nfloat FLT_flutter_local_turbulence(vec2 uv)\n{\n vec2 uv_scale = uv * vec2(0.800000011920928955078125);\n vec2 param = vec2(0.800000011920928955078125);\n vec2 param_1 = uv_scale;\n vec2 param_2 = u_circle1;\n vec2 param_3 = u_rotation1;\n float param_4 = 0.17000000178813934326171875;\n float _319 = FLT_flutter_local_circle_grid(param, param_1, param_2, param_3, param_4);\n float g1 = _319;\n vec2 param_5 = vec2(0.800000011920928955078125);\n vec2 param_6 = uv_scale;\n vec2 param_7 = u_circle2;\n vec2 param_8 = u_rotation2;\n float param_9 = 0.20000000298023223876953125;\n float _331 = FLT_flutter_local_circle_grid(param_5, param_6, param_7, param_8, param_9);\n float g2 = _331;\n vec2 param_10 = vec2(0.800000011920928955078125);\n vec2 param_11 = uv_scale;\n vec2 param_12 = u_circle3;\n vec2 param_13 = u_rotation3;\n float param_14 = 0.2750000059604644775390625;\n float _344 = FLT_flutter_local_circle_grid(param_10, param_11, param_12, param_13, param_14);\n float g3 = _344;\n float v = (((g1 * g1) + g2) - g3) * 0.5;\n return clamp(0.449999988079071044921875 + (0.800000011920928955078125 * v), 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_soft_ring(vec2 uv, vec2 xy, float radius, float thickness, float blur)\n{\n vec2 param = uv;\n vec2 param_1 = xy;\n float param_2 = radius + thickness;\n float param_3 = blur;\n float circle_outer = FLT_flutter_local_soft_circle(param, param_1, param_2, param_3);\n vec2 param_4 = uv;\n vec2 param_5 = xy;\n float param_6 = max(radius - thickness, 0.0);\n float param_7 = blur;\n float circle_inner = FLT_flutter_local_soft_circle(param_4, param_5, param_6, param_7);\n return clamp(circle_outer - circle_inner, 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_triangle_noise(inout vec2 n)\n{\n n = fract(n * vec2(5.398700237274169921875, 5.442100048065185546875));\n n += vec2(dot(n.yx, n + vec2(21.5351009368896484375, 14.3136997222900390625)));\n float xy = n.x * n.y;\n return (fract(xy * 95.43070220947265625) + fract(xy * 75.0496063232421875)) - 1.0;\n}\n\nfloat FLT_flutter_local_threshold(float v, float l, float h)\n{\n return step(l, v) * (1.0 - step(h, v));\n}\n\nfloat FLT_flutter_local_sparkle(vec2 uv, float t)\n{\n vec2 param = uv;\n float _242 = FLT_flutter_local_triangle_noise(param);\n float n = _242;\n float param_1 = n;\n float param_2 = 0.0;\n float param_3 = 0.0500000007450580596923828125;\n float s = FLT_flutter_local_threshold(param_1, param_2, param_3);\n float param_4 = n + sin(3.1415927410125732421875 * (t + 0.3499999940395355224609375));\n float param_5 = 0.100000001490116119384765625;\n float param_6 = 0.1500000059604644775390625;\n s += FLT_flutter_local_threshold(param_4, param_5, param_6);\n float param_7 = n + sin(3.1415927410125732421875 * (t + 0.699999988079071044921875));\n float param_8 = 0.20000000298023223876953125;\n float param_9 = 0.25;\n s += FLT_flutter_local_threshold(param_7, param_8, param_9);\n float param_10 = n + sin(3.1415927410125732421875 * (t + 1.0499999523162841796875));\n float param_11 = 0.300000011920928955078125;\n float param_12 = 0.3499999940395355224609375;\n s += FLT_flutter_local_threshold(param_10, param_11, param_12);\n return clamp(s, 0.0, 1.0) * 0.550000011920928955078125;\n}\n\nvoid FLT_main()\n{\n u_alpha = u_composite_1.x;\n u_sparkle_alpha = u_composite_1.y;\n u_blur = u_composite_1.z;\n u_radius_scale = u_composite_1.w;\n vec2 p = FLT_flutter_local_FlutterFragCoord();\n vec2 uv_1 = p * u_resolution_scale;\n vec2 density_uv = uv_1 - mod(p, u_noise_scale);\n float radius = u_max_radius * u_radius_scale;\n vec2 param_13 = uv_1;\n float turbulence = FLT_flutter_local_turbulence(param_13);\n vec2 param_14 = p;\n vec2 param_15 = u_center;\n float param_16 = radius;\n float param_17 = 0.0500000007450580596923828125 * u_max_radius;\n float param_18 = u_blur;\n float ring = FLT_flutter_local_soft_ring(param_14, param_15, param_16, param_17, param_18);\n vec2 param_19 = density_uv;\n float param_20 = u_noise_phase;\n float sparkle = ((FLT_flutter_local_sparkle(param_19, param_20) * ring) * turbulence) * u_sparkle_alpha;\n vec2 param_21 = p;\n vec2 param_22 = u_center;\n float param_23 = radius;\n float param_24 = u_blur;\n float wave_alpha = (FLT_flutter_local_soft_circle(param_21, param_22, param_23, param_24) * u_alpha) * u_color.w;\n vec4 wave_color = vec4(u_color.xyz * wave_alpha, wave_alpha);\n fragColor = mix(wave_color, vec4(1.0), vec4(sparkle));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return fragColor;\n}\n", + "stage": 1, + "uniforms": [ + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 0, + "name": "u_color", + "rows": 4, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 1, + "name": "u_composite_1", + "rows": 4, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 2, + "name": "u_center", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 3, + "name": "u_max_radius", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 4, + "name": "u_resolution_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 5, + "name": "u_noise_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 6, + "name": "u_noise_phase", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 7, + "name": "u_circle1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 8, + "name": "u_circle2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 9, + "name": "u_circle3", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 10, + "name": "u_rotation1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 11, + "name": "u_rotation2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 12, + "name": "u_rotation3", + "rows": 2, + "type": 10 + } + ] + } +} \ No newline at end of file diff --git a/build/flutter_assets/shaders/stretch_effect.frag b/build/flutter_assets/shaders/stretch_effect.frag new file mode 100644 index 0000000..b93e39b --- /dev/null +++ b/build/flutter_assets/shaders/stretch_effect.frag @@ -0,0 +1,63 @@ +{ + "sksl": { + "entrypoint": "stretch_effect_fragment_main", + "shader": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec2 u_size;\nuniform float u_max_stretch_intensity;\nuniform float u_overscroll_x;\nuniform float u_overscroll_y;\nuniform float u_interpolation_strength;\nuniform shader u_texture;\nuniform half2 u_texture_size;\n\nvec4 frag_color;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nfloat FLT_flutter_local_ease_in(float t, float d)\n{\n return t * d;\n}\n\nfloat FLT_flutter_local_compute_overscroll_start(float in_pos, float overscroll, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float interpolation_strength)\n{\n float offset_pos = u_stretch_affected_dist - in_pos;\n float param = offset_pos;\n float param_1 = u_inverse_stretch_affected_dist;\n float pos_based_variation = mix(1.0, FLT_flutter_local_ease_in(param, param_1), interpolation_strength);\n float stretch_intensity = overscroll * pos_based_variation;\n return distance_stretched - (offset_pos / (1.0 + stretch_intensity));\n}\n\nfloat FLT_flutter_local_compute_overscroll_end(float in_pos, float overscroll, float reverse_stretch_dist, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float interpolation_strength, float viewport_dimension)\n{\n float offset_pos = in_pos - reverse_stretch_dist;\n float param = offset_pos;\n float param_1 = u_inverse_stretch_affected_dist;\n float pos_based_variation = mix(1.0, FLT_flutter_local_ease_in(param, param_1), interpolation_strength);\n float stretch_intensity = (-overscroll) * pos_based_variation;\n return viewport_dimension - (distance_stretched - (offset_pos / (1.0 + stretch_intensity)));\n}\n\nfloat FLT_flutter_local_compute_streched_effect(float in_pos, float overscroll, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float distance_diff, float interpolation_strength, float viewport_dimension)\n{\n if (overscroll > 0.0)\n {\n if (in_pos <= u_stretch_affected_dist)\n {\n float param = in_pos;\n float param_1 = overscroll;\n float param_2 = u_stretch_affected_dist;\n float param_3 = u_inverse_stretch_affected_dist;\n float param_4 = distance_stretched;\n float param_5 = interpolation_strength;\n return FLT_flutter_local_compute_overscroll_start(param, param_1, param_2, param_3, param_4, param_5);\n }\n else\n {\n return distance_diff + in_pos;\n }\n }\n else\n {\n if (overscroll < 0.0)\n {\n float stretch_affected_dist_calc = viewport_dimension - u_stretch_affected_dist;\n if (in_pos >= stretch_affected_dist_calc)\n {\n float param_6 = in_pos;\n float param_7 = overscroll;\n float param_8 = stretch_affected_dist_calc;\n float param_9 = u_stretch_affected_dist;\n float param_10 = u_inverse_stretch_affected_dist;\n float param_11 = distance_stretched;\n float param_12 = interpolation_strength;\n float param_13 = viewport_dimension;\n return FLT_flutter_local_compute_overscroll_end(param_6, param_7, param_8, param_9, param_10, param_11, param_12, param_13);\n }\n else\n {\n return (-distance_diff) + in_pos;\n }\n }\n else\n {\n return in_pos;\n }\n }\n}\n\nvoid FLT_main()\n{\n vec2 uv = FLT_flutter_local_FlutterFragCoord() / u_size;\n float in_u_norm = uv.x;\n float in_v_norm = uv.y;\n bool isVertical = u_overscroll_y != 0.0;\n float overscroll_1 = isVertical ? u_overscroll_y : u_overscroll_x;\n float norm_distance_stretched = 1.0 / (1.0 + abs(overscroll_1));\n float norm_dist_diff = norm_distance_stretched - 1.0;\n float _223;\n if (isVertical)\n {\n _223 = in_u_norm;\n }\n else\n {\n float param_14 = in_u_norm;\n float param_15 = overscroll_1;\n float param_16 = 1.0;\n float param_17 = 1.0;\n float param_18 = norm_distance_stretched;\n float param_19 = norm_dist_diff;\n float param_20 = u_interpolation_strength;\n float param_21 = 1.0;\n _223 = FLT_flutter_local_compute_streched_effect(param_14, param_15, param_16, param_17, param_18, param_19, param_20, param_21);\n }\n float out_u_norm = _223;\n float _246;\n if (isVertical)\n {\n float param_22 = in_v_norm;\n float param_23 = overscroll_1;\n float param_24 = 1.0;\n float param_25 = 1.0;\n float param_26 = norm_distance_stretched;\n float param_27 = norm_dist_diff;\n float param_28 = u_interpolation_strength;\n float param_29 = 1.0;\n _246 = FLT_flutter_local_compute_streched_effect(param_22, param_23, param_24, param_25, param_26, param_27, param_28, param_29);\n }\n else\n {\n _246 = in_v_norm;\n }\n float out_v_norm = _246;\n uv.x = out_u_norm;\n uv.y = out_v_norm;\n frag_color = u_texture.eval(u_texture_size * ( uv));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return frag_color;\n}\n", + "stage": 1, + "uniforms": [ + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 0, + "name": "u_size", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 0, + "columns": 1, + "location": 1, + "name": "u_texture", + "rows": 1, + "type": 12 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 2, + "name": "u_max_stretch_intensity", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 3, + "name": "u_overscroll_x", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 4, + "name": "u_overscroll_y", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 5, + "name": "u_interpolation_strength", + "rows": 1, + "type": 10 + } + ] + } +} \ No newline at end of file diff --git a/build/native_hooks/.last_build_id b/build/native_hooks/.last_build_id new file mode 100644 index 0000000..6d30b10 --- /dev/null +++ b/build/native_hooks/.last_build_id @@ -0,0 +1 @@ +a4c113762c1c0387974123a422d8588e \ No newline at end of file diff --git a/build/web/.DS_Store b/build/web/.DS_Store new file mode 100644 index 0000000..2f53175 Binary files /dev/null and b/build/web/.DS_Store differ diff --git a/build/web/.last_build_id b/build/web/.last_build_id new file mode 100644 index 0000000..2cfeeaf --- /dev/null +++ b/build/web/.last_build_id @@ -0,0 +1 @@ +661787741d728957c8a90d555ea195c3 \ No newline at end of file diff --git a/build/web/assets/AssetManifest.bin b/build/web/assets/AssetManifest.bin new file mode 100644 index 0000000..8fe7af5 --- /dev/null +++ b/build/web/assets/AssetManifest.bin @@ -0,0 +1 @@ + 2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf \ No newline at end of file diff --git a/build/web/assets/AssetManifest.bin.json b/build/web/assets/AssetManifest.bin.json new file mode 100644 index 0000000..69dd618 --- /dev/null +++ b/build/web/assets/AssetManifest.bin.json @@ -0,0 +1 @@ +"DQEHMnBhY2thZ2VzL2N1cGVydGlub19pY29ucy9hc3NldHMvQ3VwZXJ0aW5vSWNvbnMudHRmDAENAQcFYXNzZXQHMnBhY2thZ2VzL2N1cGVydGlub19pY29ucy9hc3NldHMvQ3VwZXJ0aW5vSWNvbnMudHRm" \ No newline at end of file diff --git a/build/web/assets/FontManifest.json b/build/web/assets/FontManifest.json new file mode 100644 index 0000000..464ab58 --- /dev/null +++ b/build/web/assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/build/web/assets/NOTICES b/build/web/assets/NOTICES new file mode 100644 index 0000000..58f5cc9 --- /dev/null +++ b/build/web/assets/NOTICES @@ -0,0 +1,32074 @@ +abseil-cpp + + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +abseil-cpp + +Copyright 2020 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2009 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2010 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility + +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +angle +dart + +Copyright (c) 2011 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +dart +skia + +Copyright (c) 2013 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +dart +skia + +Copyright 2014 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +perfetto +skia + +Copyright 2020 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +skia + +Copyright 2017 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +angle +skia + +Copyright 2018 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +brotli +icu +skia + +Copyright 2015 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +dart +flutter +icu +skia + +Copyright (c) 2012 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +dart +flutter +spring_animation +tonic +web_test_fonts + +Copyright 2013 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +dart +skia + +Copyright 2019 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +icu +skia + +Copyright 2016 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +skia + +Copyright (c) 2014 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +accessibility +skia + +Copyright 2013 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +// Copyright 2018 The ANGLE Project Authors. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// +// Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// +// Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following +// disclaimer in the documentation and/or other materials provided +// with the distribution. +// +// Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. +// Ltd., nor the names of their contributors may be used to endorse +// or promote products derived from this software without specific +// prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2017 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2021 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2013-2017 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2013-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2017 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2018-2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2019-2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2020 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2002 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2007-2020 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +angle + +Copyright 2010 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2011 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2012 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2013 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2013-2020 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +angle + +Copyright 2014 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2015 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2015 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2016 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2017 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2017-2020 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +angle + +Copyright 2018 The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2018 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE Project. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE project authors. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the LICENSE file +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The Fuchsia Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 The ANGLE Project. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 The ANGLE Project. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2021-2022 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2022 The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2022 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright 2023 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright The ANGLE Project Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +-------------------------------------------------------------------------------- +angle + +Copyright The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +angle +boringssl +clock +cpu_features +fake_async +flatbuffers +gtest-parallel +spirv-cross +spirv-tools +swiftshader +vulkan-headers +vulkan-tools +vulkan-utility-libraries +wuffs +wycheproof_testvectors +yapf + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +angle +glfw + +Copyright (c) 2008-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle +spirv-tools + +Copyright (c) 2020 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle +swiftshader + +Copyright 2020 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +angle +xxhash + +Copyright 2019 The ANGLE Project Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +args + +Copyright 2013, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +async +collection +mime +stream_channel +typed_data + +Copyright 2015, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +boolean_selector +meta + +Copyright 2016, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +brotli + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +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. +-------------------------------------------------------------------------------- +cached_network_image +cached_network_image_platform_interface +cached_network_image_web + + +The MIT License (MIT) + +Copyright (c) 2018 Rene Floor + +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. + +-------------------------------------------------------------------------------- +ceval + + + +Copyright (c) 2021 e_t + +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. +-------------------------------------------------------------------------------- +characters +ffi + +Copyright 2019, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +connectivity_plus + +Copyright 2017 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +connectivity_plus_platform_interface + +// Copyright 2020 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +cpu_features + +Copyright (C) 2010 The Android Open Source Project +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2017 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2017 Google LLC +Copyright 2020 Intel Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2018 IBM + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2018 IBM. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2022 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2022 IBM + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2022 IBM. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +cpu_features + +Copyright 2023 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +crypto +vm_service + +Copyright 2015, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +cupertino_icons + +The MIT License (MIT) + +Copyright (c) 2016 Vladimir Kharlampidi + +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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) %d, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2012 Adam Singer (adam@solvr.io) +All Rights Reserved. + +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" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +In addition, the following condition applies: + +All redistributions must retain an intact copy of this copyright notice +and disclaimer. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2010, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2012, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright 2013 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2016 The Dart project authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2017 The Dart project authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart + +Copyright 2025 The Dart Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +double-conversion + +Copyright 2006-2008 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart +perfetto + +Copyright (C) 2022 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +dart +skia + +Copyright (c) 2015 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +skia + +Copyright 2022 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +zlib + +Copyright 2011 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +zlib + +Copyright 2012 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dart +zlib + +Copyright 2014 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dawn +skia + +Copyright 2025 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +dbus + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +-------------------------------------------------------------------------------- +devtools + +Copyright 2019 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2020 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +devtools + +Copyright 2020 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2021 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2022 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2023 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +devtools + +Copyright 2024 The Flutter Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file +-------------------------------------------------------------------------------- +dio +dio_web_adapter + +MIT License + +Copyright (c) 2018 Wen Du (wendux) +Copyright (c) 2022 The CFUG Team + +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. +-------------------------------------------------------------------------------- +double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +double-conversion + +Copyright 2010 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +double-conversion + +Copyright 2012 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +email_validator + +MIT License + +Copyright (c) 2018 Fredrik Eilertsen + +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. + +-------------------------------------------------------------------------------- +equatable + + + +Copyright (c) 2018 Felix Angelov + +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. +-------------------------------------------------------------------------------- +etc1 + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the +copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other +entities that control, are controlled by, or are under common control with +that entity. For the purposes of this definition, "control" means (i) the +power, direct or indirect, to cause the direction or management of such +entity, whether by contract or otherwise, or (ii) ownership of fifty +percent (50%) or more of the outstanding shares, or (iii) beneficial +ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, +including but not limited to software source code, documentation +source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation +or translation of a Source form, including but not limited to compiled +object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object +form, made available under the License, as indicated by a copyright +notice that is included in or attached to the work (an example is +provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object +form, that is based on (or derived from) the Work and for which the +editorial revisions, annotations, elaborations, or other modifications +represent, as a whole, an original work of authorship. For the purposes +of this License, Derivative Works shall not include works that remain +separable from, or merely link (or bind by name) to the interfaces of, +the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original +version of the Work and any modifications or additions to that Work or +Derivative Works thereof, that is intentionally submitted to Licensor +for inclusion in the Work by the copyright owner or by an individual or +Legal Entity authorized to submit on behalf of the copyright owner. For +the purposes of this definition, "submitted" means any form of electronic, +verbal, or written communication sent to the Licensor or its +representatives, including but not limited to communication on electronic +mailing lists, source code control systems, and issue tracking systems that +are managed by, or on behalf of, the Licensor for the purpose of discussing +and improving the Work, but excluding communication that is conspicuously +marked or otherwise designated in writing by the copyright owner as "Not +a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on +behalf of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this +License, each Contributor hereby grants to You a perpetual, worldwide, +non-exclusive, no-charge, royalty-free, irrevocable copyright license to +reproduce, prepare Derivative Works of, publicly display, publicly perform, +sublicense, and distribute the Work and such Derivative Works in Source or +Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this +License, each Contributor hereby grants to You a perpetual, worldwide, +non-exclusive, no-charge, royalty-free, irrevocable (except as stated in +this section) patent license to make, have made, use, offer to sell, sell, +import, and otherwise transfer the Work, where such license applies only to +those patent claims licensable by such Contributor that are necessarily +infringed by their Contribution(s) alone or by combination of their +Contribution(s) with the Work to which such Contribution(s) was submitted. +If You institute patent litigation against any entity (including a cross-claim +or counterclaim in a lawsuit) alleging that the Work or a Contribution +incorporated within the Work constitutes direct or contributory patent +infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or +Derivative Works thereof in any medium, with or without modifications, and +in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that +You changed the files; and +You must retain, in the Source form of any Derivative Works that You +distribute, all copyright, patent, trademark, and attribution notices +from the Source form of the Work, excluding those notices that do not +pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, +then any Derivative Works that You distribute must include a readable +copy of the attribution notices contained within such NOTICE file, excluding +those notices that do not pertain to any part of the Derivative Works, in +at least one of the following places: within a NOTICE text file distributed +as part of the Derivative Works; within the Source form or documentation, if +provided along with the Derivative Works; or, within a display generated by +the Derivative Works, if and wherever such third-party notices normally +appear. The contents of the NOTICE file are for informational purposes +only and do not modify the License. You may add Your own attribution +notices within Derivative Works that You distribute, alongside or as +an addendum to the NOTICE text from the Work, provided that such additional +attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a +whole, provided Your use, reproduction, and distribution of the Work otherwise +complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any +Contribution intentionally submitted for inclusion in the Work by You to the +Licensor shall be under the terms and conditions of this License, without any +additional terms or conditions. Notwithstanding the above, nothing herein +shall supersede or modify the terms of any separate license agreement you +may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, +trademarks, service marks, or product names of the Licensor, except as +required for reasonable and customary use in describing the origin of the +Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to +in writing, Licensor provides the Work (and each Contributor provides its +Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF +ANY KIND, either express or implied, including, without limitation, any +warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or +FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining +the appropriateness of using or redistributing the Work and assume any risks +associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in +tort (including negligence), contract, or otherwise, unless required by +applicable law (such as deliberate and grossly negligent acts) or agreed to +in writing, shall any Contributor be liable to You for damages, including +any direct, indirect, special, incidental, or consequential damages of any +character arising as a result of this License or out of the use or inability +to use the Work (including but not limited to damages for loss of goodwill, +work stoppage, computer failure or malfunction, or any and all other +commercial damages or losses), even if such Contributor has been advised +of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the +Work or Derivative Works thereof, You may choose to offer, and charge a +fee for, acceptance of support, warranty, indemnity, or other liability +obligations and/or rights consistent with this License. However, in accepting +such obligations, You may act only on Your own behalf and on Your sole +responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any +liability incurred by, or claims asserted against, such Contributor by +reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS +-------------------------------------------------------------------------------- +etc1 + +Copyright 2009 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +etc_decoder + + * Copyright (c) 2020-2022 Hans-Kristian Arntzen + * + * 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. + * +-------------------------------------------------------------------------------- +etc_decoder + +Copyright (c) 2020-2022 Hans-Kristian Arntzen + +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. +-------------------------------------------------------------------------------- +expat + +! /bin/bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017-2024 Sebastian Pipping +Copyright (c) 2017 Rolf Eike Beer +Copyright (c) 2019 Mohammed Khajapasha +Copyright (c) 2019 Manish, Kumar +Copyright (c) 2019 Philippe Antoine +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2019 Philippe Antoine +Copyright (c) 2019-2025 Hanno Böck +Copyright (c) 2024 Alexander Bluhm +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017 Sebastian Pipping +Copyright (c) 2019 Jeffrey Walton +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017-2022 Sebastian Pipping +Copyright (c) 2018 Marco Maggi +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017-2024 Sebastian Pipping +Copyright (c) 2018 Marco Maggi +Copyright (c) 2019 Mohammed Khajapasha +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2021 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2022 Sebastian Pipping +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2024 Sebastian Pipping +Copyright (c) 2022 Rosen Penev +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2020-2023 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2021-2022 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2021-2025 Sebastian Pipping +Copyright (c) 2024 Dag-Erling Smørgrav +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2024-2025 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env bash +Creates release tarball and detached GPG signature file for upload + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2018-2019 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +! /usr/bin/env python3 + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2019-2023 Sebastian Pipping +Copyright (c) 2021 Tim Bray +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +!/bin/sh +USAGE: get-version.sh path/to/expat.h + +This script will print Expat's version number on stdout. For example: + + $ ./conftools/get-version.sh ./lib/expat.h + 1.95.3 + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2002 Greg Stein +Copyright (c) 2017 Kerin Millar +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +!/usr/bin/env bash +Clean source directory after running the coverage script. + __ __ _ + ___\ \/ /_ __ __ _| |_ + / _ \\ /| '_ \ / _` | __| + | __// \| |_) | (_| | |_ + \___/_/\_\ .__/ \__,_|\__| + |_| XML parser + +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Marco Maggi +Copyright (c) 2019 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper +Copyright (c) 2001-2025 Expat maintainers + +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. +-------------------------------------------------------------------------------- +expat + +Read an XML document from standard input and print +element declarations (if any) to standard output. +It must be used with Expat compiled for UTF-8 output. +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2024 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 Zhongyuan Zhou +Copyright (c) 2024 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Read an XML document from standard input and print an element +outline on standard output. +Must be used with Expat compiled for UTF-8 output. +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +This file is included (from xmltok.c, 1-3 times depending on XML_MIN_SIZE)! +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Boris Kolpackov +Copyright (c) 2022 Martin Ettl +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +This file is included! +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +This is simple demonstration of how to use expat. This program +reads an XML document from standard input and writes a line with +the name of each element to standard output indenting child +elements by one tab stop more than their parent element. +It must be used with Expat compiled for UTF-8 output. +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 Zhongyuan Zhou +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2004 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Yury Gribov +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2005 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2025 Sebastian Pipping +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2017 Rhodri James +Copyright (c) 2022 Thijs Schreijer +Copyright (c) 2023 Hanno Böck +Copyright (c) 2023 Sony Corporation / Snild Dolkow +Copyright (c) 2024 Taichi Haradaguchi <20001722@ymail.ne.jp> +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2002 Fred L. Drake, Jr. +Copyright (c) 2006 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2024 Sebastian Pipping +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Don Lewis +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Alexander Bluhm +Copyright (c) 2017 Benbuck Nason +Copyright (c) 2017 José Gutiérrez de la Concha +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Donghee Na +Copyright (c) 2022 Martin Ettl +Copyright (c) 2022 Sean McBride +Copyright (c) 2023 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2009 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Joe Orton +Copyright (c) 2020 Kleber Tarcísio +Copyright (c) 2021 Tim Bray +Copyright (c) 2022 Martin Ettl +Copyright (c) 2022 Sean McBride +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2004 Fred L. Drake, Jr. +Copyright (c) 2002-2009 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Franek Korta +Copyright (c) 2022 Sean McBride +Copyright (c) 2025 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2005 Karl Waclawek +Copyright (c) 2016-2024 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2016-2023 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2019 David Loffredo +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2022 Martin Ettl +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2024 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Donghee Na +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Karl Waclawek +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017-2024 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2023 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Donghee Na +Copyright (c) 2024 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017-2019 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2018 Sebastian Pipping +Copyright (c) 2018 Marco Maggi +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1999-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2007 Karl Waclawek +Copyright (c) 2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2017-2023 Sebastian Pipping +Copyright (c) 2023 Orgad Shaneh +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 2022 Mark Brand +Copyright (c) 2025 Sebastian Pipping +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +d19ae032c224863c1527ba44d228cc34b99192c3a4c5a27af1f4e054d45ee031 (2.7.1+) +__ __ _ +___\ \/ /_ __ __ _| |_ +/ _ \\ /| '_ \ / _` | __| +| __// \| |_) | (_| | |_ +\___/_/\_\ .__/ \__,_|\__| +|_| XML parser + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2006 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016 Eric Rahm +Copyright (c) 2016-2025 Sebastian Pipping +Copyright (c) 2016 Gaurav +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2016 Gustavo Grieco +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Ed Schouten +Copyright (c) 2017-2022 Rhodri James +Copyright (c) 2017 Václav Slavík +Copyright (c) 2017 Viktor Szakats +Copyright (c) 2017 Chanho Park +Copyright (c) 2017 Rolf Eike Beer +Copyright (c) 2017 Hans Wennborg +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Marco Maggi +Copyright (c) 2018 Mariusz Zaborski +Copyright (c) 2019 David Loffredo +Copyright (c) 2019-2020 Ben Wagner +Copyright (c) 2019 Vadim Zeitlin +Copyright (c) 2021 Donghee Na +Copyright (c) 2022 Samanta Navarro +Copyright (c) 2022 Jeffrey Walton +Copyright (c) 2022 Jann Horn +Copyright (c) 2022 Sean McBride +Copyright (c) 2023 Owain Davies +Copyright (c) 2023-2024 Sony Corporation / Snild Dolkow +Copyright (c) 2024-2025 Berkay Eren Ürün +Copyright (c) 2024 Hanno Böck +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat +harfbuzz + +// Copyright (c) 2021 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fallback_root_certificates +nm + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +-------------------------------------------------------------------------------- +ffx_spd + + +Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) <2014> +------- +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. +-------------------------------------------------------------------------------- +ffx_spd + + +Copyright (c) 2017-2020 Advanced Micro Devices, Inc. All rights reserved. +------- +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. +-------------------------------------------------------------------------------- +ffx_spd + +Copyright (c) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +fiat + +The Apache License, Version 2.0 (Apache-2.0) + +Copyright 2015-2020 the fiat-crypto authors (see the AUTHORS file) + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +file + +Copyright 2017, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fixnum +stack_trace + +Copyright 2014, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +flatbuffers + + +Copyright 2015 gRPC authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + + +Copyright 2018 Dan Field. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2014 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2014 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2015 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2016 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2018 Dan Field + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2018 Dan Field. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2018 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2019 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2020 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2021 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2022 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2023 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers + +Copyright 2024 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flatbuffers +gtest-parallel + +Copyright 2017 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flutter + +Copyright 2014 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +flutter + +Copyright 2014 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +flutter + +Copyright 2019 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +flutter +skia + +Copyright 2022 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +flutter +tonic + +Copyright 2013 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +flutter_cache_manager + + +The MIT License (MIT) + +Copyright (c) 2017 Rene Floor + +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. + +-------------------------------------------------------------------------------- +flutter_lints +path_provider +path_provider_linux +path_provider_platform_interface +path_provider_windows +plugin_platform_interface +shared_preferences_linux +shared_preferences_platform_interface +shared_preferences_web +shared_preferences_windows +vector_graphics +vector_graphics_codec +vector_graphics_compiler +webview_flutter +webview_flutter_platform_interface +xdg_directories + +Copyright 2013 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +flutter_svg + +Copyright (c) 2018 Dan Field + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000, 2001, 2004 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000-2001, 2002 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000-2001, 2003 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2000-2010, 2012-2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + + +Copyright 2003 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org + + +--- end of FTL.TXT --- +-------------------------------------------------------------------------------- +freetype2 + +Copyright 1990, 1994, 1998 The Open Group + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +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 +OPEN GROUP 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. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2004, 2011 Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2014 + Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2001, 2002, 2012 Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. +-------------------------------------------------------------------------------- +freetype2 + +version 1.2.11, January 15th, 2017 + +Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +fuchsia_sdk + + + + +Copyright © 2005-2014 Rich Felker, et al. + +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. + + +Authors/contributors include: + +Alex Dowad +Alexander Monakov +Anthony G. Basile +Arvid Picciani +Bobby Bingham +Boris Brezillon +Brent Cook +Chris Spiegel +Clément Vasseur +Daniel Micay +Denys Vlasenko +Emil Renner Berthing +Felix Fietkau +Felix Janda +Gianluca Anzolin +Hauke Mehrtens +Hiltjo Posthuma +Isaac Dunham +Jaydeep Patil +Jens Gustedt +Jeremy Huntwork +Jo-Philipp Wich +Joakim Sindholt +John Spencer +Josiah Worcester +Justin Cormack +Khem Raj +Kylie McClain +Luca Barbato +Luka Perkov +M Farkas-Dyck (Strake) +Mahesh Bodapati +Michael Forney +Natanael Copa +Nicholas J. Kain +orc +Pascal Cuoq +Petr Hosek +Pierre Carrier +Rich Felker +Richard Pennington +Shiz +sin +Solar Designer +Stefan Kristiansson +Szabolcs Nagy +Timo Teräs +Trutz Behn +Valentin Ochs +William Haddon + +Portions of this software are derived from third-party works licensed +under terms compatible with the above MIT license: + +Much of the math library code (third_party/math/* and +third_party/complex/*, and third_party/include/libm.h) is +Copyright © 1993,2004 Sun Microsystems or +Copyright © 2003-2011 David Schultz or +Copyright © 2003-2009 Steven G. Kargl or +Copyright © 2003-2009 Bruce D. Evans or +Copyright © 2008 Stephen L. Moshier +and labelled as such in comments in the individual source files. All +have been licensed under extremely permissive terms. + +The smoothsort implementation (third_party/smoothsort/qsort.c) is +Copyright © 2011 Valentin Ochs and is licensed under an MIT-style +license. + +The x86_64 files in third_party/arch were written by Nicholas J. Kain +and is licensed under the standard MIT terms. + +All other files which have no copyright comments are original works +produced specifically for use as part of this library, written either +by Rich Felker, the main author of the library, or by one or more +contibutors listed above. Details on authorship of individual files +can be found in the git version control history of the project. The +omission of copyright and license comments in each file is in the +interest of source tree size. + +In addition, permission is hereby granted for all public header files +(include/* and arch/*/bits/*) and crt files intended to be linked into +applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit +the copyright notice and permission notice otherwise required by the +license, and to use these files without any requirement of +attribution. These files include substantial contributions from: + +Bobby Bingham +John Spencer +Nicholas J. Kain +Rich Felker +Richard Pennington +Stefan Kristiansson +Szabolcs Nagy + +all of whom have explicitly granted such permission. + +This file previously contained text expressing a belief that most of +the files covered by the above exception were sufficiently trivial not +to be subject to copyright, resulting in confusion over whether it +negated the permissions granted in the license. In the spirit of +permissive licensing, and of not having licensing issues being an +obstacle to adoption, that text has been removed. + +-------------------------------------------------------------------------------- +fuchsia_sdk + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2014 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2016 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2017 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2018 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2020 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2021 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2022 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2023 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2024 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2025 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glfw + + +Copyright (c) 2017 Sean Barrett +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. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +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 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. +-------------------------------------------------------------------------------- +glfw + +Copyright (C) 1997-2013 Sam Lantinga + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard + +Copyright (c) 2006-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2016 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2018 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2018 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2016 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2021 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2010 Olivier Delannoy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2012 Marcus Geelnard + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2014 Jonas Ådahl + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016-2017 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2021 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2022 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) Marcus Geelnard +Copyright (c) Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright 2014-2022 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +glslang + + + +Copyright (c) 2022 Google LLC +Copyright (c) 2022 Sascha Willems + +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. +-------------------------------------------------------------------------------- +glslang + + + +Copyright (c) 2022 Sascha Willems + +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. +-------------------------------------------------------------------------------- +glslang + + + +Copyright (c) 2023 NVIDIA CORPORATION. + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2004 3Dlabs Inc. Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2019 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2024 Valve Corporation. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Copyright (C) 2015-2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017, 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2024 Ravi Prakash Singh. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2016 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2017, 2022-2024 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Copyright (c) 2023, Mobica Limited + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (c) 2002-2010 The ANGLE Project Authors. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2016-2020 Google, Inc. +Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2012 LunarG, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of LunarG Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2022-2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017, 2022-2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2019, 2022-2024 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2022-2024 Arm Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. +Copyright (C) 2020 The Khronos Group Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2023 Mobica Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017-2018 Google, Inc. +Copyright (C) 2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2019 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2023 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2024 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2025 Jan Kelemen + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2025 NVIDIA Corporation + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2025 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2013 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2017 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2020 The Khronos Group Inc. +Copyright (C) 2022-2024 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2015-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2019, Viktor Latypov +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020, Travis Fort +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2021 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2022, 2025 ARM Limited + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright 2017 The Glslang Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang + +Copyright 2018 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang + +Copyright(C) 2021 Advanced Micro Devices, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang +skia +spirv-tools + +Copyright (c) 2014-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang +spirv-tools + +Copyright (c) 2015-2016 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang +spirv-tools + +Copyright (c) 2021 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +glslang +spirv-tools + +Copyright (c) 2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +gtest-parallel + +Copyright 2013 Google Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +harfbuzz + + + + Copyright (c) Microsoft Corporation. + + 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 +-------------------------------------------------------------------------------- +harfbuzz + + + +Copyright (C) 2012 Zilong Tan (eric.zltan@gmail.com) + +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. +-------------------------------------------------------------------------------- +harfbuzz + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2012 Grigori Goronzy + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Owen Taylor, Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Owen Taylor, Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2006 Behdad Esfahbod +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007 Chris Wilson +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Contributor(s): +Chris Wilson +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod, Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. +Copyright © 2019, Facebook Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2018,2019,2020 Ebrahim Byagowi +Copyright © 2018 Khaled Hosny + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Codethink Author(s): Ryan Lortie +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Codethink Author(s): Ryan Lortie +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod, Roozbeh Pournader + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Roderick Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2013 Google, Inc. +Copyright © 2021 Khaled Hosny + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Roozbeh Pournader + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012 Mozilla Foundation. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Mozilla Author(s): Jonathan Kew + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2013 Mozilla Foundation. +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Mozilla Author(s): Jonathan Kew +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2017 Google, Inc. +Copyright © 2021 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2013 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Roozbeh Pournader + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015 Google, Inc. +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod, Garret Rieger, Roderick Sheeter +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015 Mozilla Foundation. +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Mozilla Author(s): Jonathan Kew +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015-2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Elie Roux +Copyright © 2018 Google, Inc. +Copyright © 2018-2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Seigo Nonaka, Calder Kitagawa + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Sascha Brawer + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Sascha Brawer, Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Khaled Hosny +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Sascha Brawer, Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Igalia S.L. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Igalia Author(s): Frédéric Wang + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017,2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Calder Kitagawa + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger, Rod Sheeter, Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger, Roderick Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Rod Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. +Copyright © 2023 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger, Roderick Sheeter + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF1_INTERP_CS_HH +define HB_CFF1_INTERP_CS_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF2_INTERP_CS_HH +define HB_CFF2_INTERP_CS_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF_INTERP_COMMON_HH +define HB_CFF_INTERP_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF_INTERP_CS_COMMON_HH +define HB_CFF_INTERP_CS_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_CFF_INTERP_DICT_COMMON_HH +define HB_CFF_INTERP_DICT_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza +ifndef HB_OT_CFF_COMMON_HH +define HB_OT_CFF_COMMON_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018-2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Facebook, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Facebook Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Adobe Author(s): Michiharu Ariza + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019-2020 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +include "hb-ot-var-common.hh" +include "hb-ot-var-hvar-table.hh" +HVAR table data from SourceSerif4Variable-Roman_subset.otf +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +include "hb-ot-var-cvar-table.hh" +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Garret Rieger + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc +Copyright © 2021, 2022 Black Foundry + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +ifndef HB_GEOMETRY_HH +define HB_GEOMETRY_HH +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Matthias Clasen + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Red Hat Author(s): Matthias Clasen + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Behdad Esfahbod +Copyright © 1999 David Turner +Copyright © 2005 Werner Lemberg +Copyright © 2013-2015 Alexei Podtelezhnikov + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Qunxin Liu + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 David Corbett + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2024 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Google Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2025 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2025 Behdad Esfahbod + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Author(s): Behdad Esfahbod + +-------------------------------------------------------------------------------- +harfbuzz + +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010-2022 Google, Inc. +Copyright © 2015-2020 Ebrahim Byagowi +Copyright © 2019,2020 Facebook, Inc. +Copyright © 2012,2015 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2011 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod +Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. +Copyright © 1998-2005 David Turner and Werner Lemberg +Copyright © 2016 Igalia S.L. +Copyright © 2022 Matthias Clasen +Copyright © 2018,2021 Khaled Hosny +Copyright © 2018,2019,2020 Adobe, Inc +Copyright © 2013-2015 Alexei Podtelezhnikov + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +http +http_parser +matcher +path +source_span +string_scanner + +Copyright 2014, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines Corporation and others. +All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines Corporation +and others. All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2002-2010, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2001-2003 International Business Machines +Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2001-2010 International Business Machines +Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2005, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2010, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2005, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2010, International Business Machines Corporation and others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +#################################################################### +Copyright (c) 2009, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +#################################################################### +Copyright (c) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +* +* Copyright (C) 2004-2006, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2002, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2003, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2005, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2006, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2007, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2009, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 1995-2013, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2001-2003, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2001-2005, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2009-2012, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2014, International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +*************************************************************************** +* +* Copyright (C) 2009 International Business Machines +* Corporation and others. All Rights Reserved. +* +*************************************************************************** +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +***************************************************************************** + + Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + +***************************************************************************** + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1995-2001, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1995-2005, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1995-2010, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1997-2000, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1997-2003, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 1997-2010, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +******************************************************************************* +* +* Copyright (C) 2010, International Business Machines +* Corporation and others. All Rights Reserved. +* +******************************************************************************* + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1999-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2010 IBM Corporation and Others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2010-2014, International Business Machines Corporation and others. +All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt) +Copyright (C) The Internet Society (2002). All Rights Reserved. +-------------------------------------------------------------------------------- +icu + +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 2016-2023 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE 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 OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +---------------------------------------------------------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +---------------------------------------------------------------------- + +ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +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, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +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 +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +---------------------------------------------------------------------- + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyright (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + +---------------------------------------------------------------------- + +Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (C) 2016 and later: Unicode, Inc. and others. + # License & terms of use: http://www.unicode.org/copyright.html + # Copyright (c) 2015 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: https://github.com/rober42539/lao-dictionary + # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt + # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary version of Nov 22, 2020 + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in binary + # form must reproduce the above copyright notice, this list of conditions and + # the following disclaimer in the documentation and/or other materials + # provided with the distribution. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Time Zone Database + + ICU uses the public domain data and code derived from Time Zone +Database for its time zone support. The ownership of the TZ database +is explained in BCP 175: Procedure for Maintaining the Time Zone +Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + +---------------------------------------------------------------------- + +Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- + + +File: install-sh (only for ICU4C) + + +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + + Copyright (C) 2001, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + +Copyright (C) 2002-2006 IBM, Inc. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2013, International Business Machines Corporation + and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1996-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2005, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2004, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2005, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2008, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1998-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2001, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2003, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2004, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2014 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2016 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2003, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2008, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2008, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2003, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2011 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2004, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2007, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2009, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2003-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2005, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2007, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2010, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2004-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2005-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2007-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2011, International Business Machines + Corporation, Google and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2011, International Business Machines + Corporation, Google and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2008-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2011-2014 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2012,2014 International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2012-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2012-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2013-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + + Copyright (C) 2016, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2001-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2003-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2003-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2002, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2003, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2007, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + +Copyright (c) 1999-2010, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1996-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2009,2014 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2011,2014-2015 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1997-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1998-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1998-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1998-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2006, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2009, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2015 International Business Machines + Corporation and others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016 International Business Machines Corporation + and others. All rights reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016 International Business Machines Corporation + and others. All rights reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2004, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2011 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2015 IBM and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2015 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2003, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2008, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2015, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2005-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2006 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2006, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2008-2011, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2008-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2008-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2014 International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2012, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2012,2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2010-2016, International Business Machines Corporation and + others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2011-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2012 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2012-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2013, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2013-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2014, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2014-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2015-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2000-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2000-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2007, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2012, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2005, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2010, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2011, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2012, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2014, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2002-2016, International Business Machines + Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2008 International Business Machines Corporation + and others. All rights reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2008, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2011, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2014 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016 International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2002-2016, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2003-2010, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (C) 2004-2015, International Business Machines Corporation and others. + All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + + Copyright (c) 2001-2005, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2014, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2010, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2011, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2013, International Business Machines +Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1997-2016, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1998-2016, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2007, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2010, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2011, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2000-2004, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2011, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2011, International Business Machines Corporation. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2014, International Business Machines Corporation. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003 - 2009, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003 - 2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2008, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2015, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2003-2016, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2004 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2004-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2006-2012, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2006-2014, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2006-2016, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2014, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008, Google, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2009, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2014, Google, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2014, Google, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2015, Google, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2015, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2016, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2010, Google, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2010, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2011, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2016, International Business Machines Corporation, +Google, and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2012,2015 International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2013, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2012-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2012-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2012-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2014, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2013-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2014-2016, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2016, International Business Machines Corporation + and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 1999-2002, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2004, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2007, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2014, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2008, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2014 International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2014, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (c) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2000-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2011, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2012, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2008-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2009-2013, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2009-2015, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + Copyright (C) 2009-2016, International Business Machines + Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1996-2008, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1996-2012, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1997-2013, International Business Machines Corporation and others. +All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2002-2016 International Business Machines Corporation + and others. All rights reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2003-2014, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2008, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2008-2014, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2007 Google Inc. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2007 Google Inc. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2001 and onwards Google Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Copyright 2004 and onwards Google Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2011, International Business Machines Corporation and +others. All Rights Reserved. +Copyright (C) 2010 , Yahoo! Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. +Copyright (C) 2010 , Yahoo! Inc. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1997-2016, International Business Machines Corporation +and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2001-2016, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2006, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2012, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2003-2010 International Business Machines +Corporation and others. All Rights Reserved. + + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2004-2010, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2008-2010, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2008-2011, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2008-2014, International Business Machines Corporation and +others. All Rights Reserved. + +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2010. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2011. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2012. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2014. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) IBM Corporation, 2000-2016. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +© 2017 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html + +Copyright (C) 2009-2017, International Business Machines Corporation, +Google, and others. All Rights Reserved. + + + +-------------------------------------------------------------------------------- +icu +skia + +Copyright (c) 2018 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +include + + + +Copyright (c) 2013-2021 Niels Lohmann + +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. +-------------------------------------------------------------------------------- +include + + +Copyright (c) 2013-2019 Niels Lohmann . + +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. +-------------------------------------------------------------------------------- +include + +Copyright (C) 2011 Nick Bruun +Copyright (C) 2013 Vlad Lazarenko +Copyright (C) 2014 Nicolas Pauss +-------------------------------------------------------------------------------- +include + +Copyright (c) 2009 Florian Loitsch. + +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. + +-------------------------------------------------------------------------------- +include + +Copyright (c) 2011 - Nick Bruun. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. If you meet (any of) the author(s), you're encouraged to buy them a beer, + a drink or whatever is suited to the situation, given that you like the + software. +4. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +include +json + +@copyright Copyright (c) 2008-2009 Bjoern Hoehrmann +@sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ +-------------------------------------------------------------------------------- +inja + + + +Copyright (c) 2018-2021 Berscheid + +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. +-------------------------------------------------------------------------------- +inja + +___ _ Version 3.3 +|_ _|_ __ (_) __ _ https://github.com/pantor/inja +| || '_ \ | |/ _` | Licensed under the MIT License . +| || | | || | (_| | +|___|_| |_|/ |\__,_| Copyright (c) 2018-2021 Lars Berscheid +|__/ +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. +-------------------------------------------------------------------------------- +intl + +Copyright 2013, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +io + +Copyright 2017, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +io + +Copyright 2017, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +io + +Copyright 2021, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Use of this source code is governed by a +BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +js + +Copyright 2012, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +json + + + +Copyright (c) 2013-2022 Niels Lohmann + +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. +-------------------------------------------------------------------------------- +json + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2013-2014 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +leak_tracker +leak_tracker_flutter_testing +leak_tracker_testing + +Copyright 2022, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +libXNVCtrl + +/* + * Copyright (c) 2008 NVIDIA, Corporation + * + * 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 (including the next + * paragraph) 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. + */ +-------------------------------------------------------------------------------- +libXNVCtrl + +Copyright (c) 2008 NVIDIA, Corporation + +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 (including the next +paragraph) 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. +-------------------------------------------------------------------------------- +libXNVCtrl + +Copyright (c) 2010 NVIDIA, Corporation + +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 (including the next +paragraph) 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. +-------------------------------------------------------------------------------- +libcxx + +Copyright 2018 Ulf Adams +Copyright (c) Microsoft Corporation. All rights reserved. + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +libcxx + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.'s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1991-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + + + +Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT + +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. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +University of Illinois/NCSA +Open Source License + +Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT + +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +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: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +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 +CONTRIBUTORS 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 WITH THE +SOFTWARE. +-------------------------------------------------------------------------------- +libcxx +libcxxabi +llvm_libc + +============================================================================== +The LLVM Project is under the Apache License v2.0 with LLVM Exceptions: +============================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +---- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. +Author: Ragesh Radhakrishnan +Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. +Copyright (C) 2014, Linaro Limited. All Rights Reserved. +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2014, Jay Foad. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Portions of this code are based on the PBMPLUS library, which is: + +Copyright (C) 1988 by Jef Poskanzer. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This code is loosely based on ppmtogif from the PBMPLUS distribution +of Feb. 1991. That file contains the following copyright notice: + Based on GIFENCODE by David Rowley . + Lempel-Ziv compression based on "compress" by Spencer W. Thomas et al. + Copyright (C) 1989 by Jef Poskanzer. + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, provided + that the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation. This software is provided "as is" without express or + implied warranty. + +We are also required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1994, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1995, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code +relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +Modified 2009 by Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009-2012, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2012, 2015, D. R. Commander. +Copyright (C) 2014, MIPS Technologies, Inc., California. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, 2015-2016, D. R. Commander. +Copyright (C) 2014, MIPS Technologies, Inc., California. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2014, MIPS Technologies, Inc., California. +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modifications: +Copyright (C) 2013, Linaro Limited. +Copyright (C) 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 1997-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 1997-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2015-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2002-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2016, D. R. Commander. +Copyright (C) 2013, Linaro Limited. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2003-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2009 by Bill Allombert, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2015, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009, 2011-2012, 2014-2015, D. R. Commander. +Copyright (C) 2013, Linaro Limited. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +Modified 2013 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010-2011, 2013-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009, 2011, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2014-2016, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010-2011, 2015-2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2002-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2003-2008 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2009-2011, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2003-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +Modified 2003-2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2013-2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2012, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2013, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only information +relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2012-2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1992-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1992-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2002-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, 2015, D. R. Commander. +Copyright (C) 2013, MIPS Technologies, Inc., California. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Modified 2011 by Siarhei Siamashka. +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2011, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2011 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2013, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2012 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2011, 2014, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +Modified 2009-2012 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2013, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2011, 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2015-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2011, 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2013, Linaro Limited. +Copyright (C) 2014-2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1996, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. +Copyright (C) 2013, Linaro Limited. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code and +information relevant to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +Modified 1997-2009 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +Modified 2009 by Bill Allombert, Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, 2015-2016, D. R. Commander. +Copyright (C) 2015, Google, Inc. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright 2009 Pierre Ossman for Cendio AB +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +Modified 2003-2010 by Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +Modified 2010 by Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1994-1998, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2016, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-1997, Thomas G. Lane. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-1997, Thomas G. Lane. +libjpeg-turbo Modifications: +Copyright (C) 2015, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-1998, Thomas G. Lane. +Modified 2000-2009 by Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1995-2010, Thomas G. Lane, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, 2014, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1997-2011, Thomas G. Lane, Guido Vollbeding. +It was modified by The libjpeg-turbo Project to include only code relevant +to libjpeg-turbo. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +This file was part of the Independent JPEG Group's software: +Copyright (C) 1997-2011, Thomas G. Lane, Guido Vollbeding. +libjpeg-turbo Modifications: +Copyright (C) 2010, D. R. Commander. +For conditions of distribution and use, see the accompanying README.ijg +file. +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo Licenses +====================== + +libjpeg-turbo is covered by three compatible BSD-style open source licenses: + +- The IJG (Independent JPEG Group) License, which is listed in + [README.ijg](README.ijg) + + This license applies to the libjpeg API library and associated programs + (any code inherited from libjpeg, and any modifications to that code.) + +- The Modified (3-clause) BSD License, which is listed in + [turbojpeg.c](turbojpeg.c) + + This license covers the TurboJPEG API library and associated programs. + +- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) + + This license is a subset of the other two, and it covers the libjpeg-turbo + SIMD extensions. + + +Complying with the libjpeg-turbo Licenses +========================================= + +This section provides a roll-up of the libjpeg-turbo licensing terms, to the +best of our understanding. + +1. If you are distributing a modified version of the libjpeg-turbo source, + then: + + 1. You cannot alter or remove any existing copyright or license notices + from the source. + + **Origin** + - Clause 1 of the IJG License + - Clause 1 of the Modified BSD License + - Clauses 1 and 3 of the zlib License + + 2. You must add your own copyright notice to the header of each source + file you modified, so others can tell that you modified that file (if + there is not an existing copyright header in that file, then you can + simply add a notice stating that you modified the file.) + + **Origin** + - Clause 1 of the IJG License + - Clause 2 of the zlib License + + 3. You must include the IJG README file, and you must not alter any of the + copyright or license text in that file. + + **Origin** + - Clause 1 of the IJG License + +2. If you are distributing only libjpeg-turbo binaries without the source, or + if you are distributing an application that statically links with + libjpeg-turbo, then: + + 1. Your product documentation must include a message stating: + + This software is based in part on the work of the Independent JPEG + Group. + + **Origin** + - Clause 2 of the IJG license + + 2. If your binary distribution includes or uses the TurboJPEG API, then + your product documentation must include the text of the Modified BSD + License. + + **Origin** + - Clause 2 of the Modified BSD License + +3. You cannot use the name of the IJG or The libjpeg-turbo Project or the + contributors thereof in advertising, publicity, etc. + + **Origin** + - IJG License + - Clause 3 of the Modified BSD License + +4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be + free of defects, nor do we accept any liability for undesirable + consequences resulting from your use of the software. + + **Origin** + - IJG License + - Modified BSD License + - zlib License + +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project +to include only information relevant to libjpeg-turbo, to wordsmith certain +sections, and to remove impolitic language that existed in the libjpeg v8 +README. It is included only for reference. Please see README.md for +information specific to libjpeg-turbo. + + +The Independent JPEG Group's JPEG software +========================================== + +This distribution contains a release of the Independent JPEG Group's free JPEG +software. You are welcome to redistribute this software and to use it for any +purpose, subject to the conditions under LEGAL ISSUES, below. + +This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, +Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, +Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, +and other members of the Independent JPEG Group. + +IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee +(also known as JPEG, together with ITU-T SG16). + + +DOCUMENTATION ROADMAP +===================== + +This file contains the following sections: + +OVERVIEW General description of JPEG and the IJG software. +LEGAL ISSUES Copyright, lack of warranty, terms of distribution. +REFERENCES Where to learn more about JPEG. +ARCHIVE LOCATIONS Where to find newer versions of this software. +FILE FORMAT WARS Software *not* to get. +TO DO Plans for future IJG releases. + +Other documentation files in the distribution are: + +User documentation: + usage.txt Usage instructions for cjpeg, djpeg, jpegtran, + rdjpgcom, and wrjpgcom. + *.1 Unix-style man pages for programs (same info as usage.txt). + wizard.txt Advanced usage instructions for JPEG wizards only. + change.log Version-to-version change highlights. +Programmer and internal documentation: + libjpeg.txt How to use the JPEG library in your own programs. + example.c Sample code for calling the JPEG library. + structure.txt Overview of the JPEG library's internal structure. + coderules.txt Coding style rules --- please read if you contribute code. + +Please read at least usage.txt. Some information can also be found in the JPEG +FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find +out where to obtain the FAQ article. + +If you want to understand how the JPEG code works, we suggest reading one or +more of the REFERENCES, then looking at the documentation files (in roughly +the order listed) before diving into the code. + + +OVERVIEW +======== + +This package contains C software to implement JPEG image encoding, decoding, +and transcoding. JPEG (pronounced "jay-peg") is a standardized compression +method for full-color and grayscale images. JPEG's strong suit is compressing +photographic images or other types of images that have smooth color and +brightness transitions between neighboring pixels. Images with sharp lines or +other abrupt features may not compress well with JPEG, and a higher JPEG +quality may have to be used to avoid visible compression artifacts with such +images. + +JPEG is lossy, meaning that the output pixels are not necessarily identical to +the input pixels. However, on photographic content and other "smooth" images, +very good compression ratios can be obtained with no visible compression +artifacts, and extremely high compression ratios are possible if you are +willing to sacrifice image quality (by reducing the "quality" setting in the +compressor.) + +This software implements JPEG baseline, extended-sequential, and progressive +compression processes. Provision is made for supporting all variants of these +processes, although some uncommon parameter settings aren't implemented yet. +We have made no provision for supporting the hierarchical or lossless +processes defined in the standard. + +We provide a set of library routines for reading and writing JPEG image files, +plus two sample applications "cjpeg" and "djpeg", which use the library to +perform conversion between JPEG and some other popular image file formats. +The library is intended to be reused in other applications. + +In order to support file conversion and viewing software, we have included +considerable functionality beyond the bare JPEG coding/decoding capability; +for example, the color quantization modules are not strictly part of JPEG +decoding, but they are essential for output to colormapped file formats or +colormapped displays. These extra functions can be compiled out of the +library if not required for a particular application. + +We have also included "jpegtran", a utility for lossless transcoding between +different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple +applications for inserting and extracting textual comments in JFIF files. + +The emphasis in designing this software has been on achieving portability and +flexibility, while also making it fast enough to be useful. In particular, +the software is not intended to be read as a tutorial on JPEG. (See the +REFERENCES section for introductory material.) Rather, it is intended to +be reliable, portable, industrial-strength code. We do not claim to have +achieved that goal in every aspect of the software, but we strive for it. + +We welcome the use of this software as a component of commercial products. +No royalty is required, but we do ask for an acknowledgement in product +documentation, as described under LEGAL ISSUES. + + +LEGAL ISSUES +============ + +In plain English: + +1. We don't promise that this software works. (But if you find any bugs, + please let us know!) +2. You can use this software for whatever you want. You don't have to pay us. +3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + +In legalese: + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +The Unix configuration script "configure" was produced with GNU Autoconf. +It is copyright by the Free Software Foundation but is freely distributable. +The same holds for its supporting scripts (config.guess, config.sub, +ltmain.sh). Another support script, install-sh, is copyright by X Consortium +but is also freely distributable. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent (now expired), GIF reading +support has been removed altogether, and the GIF writer has been simplified +to produce "uncompressed GIFs". This technique does not use the LZW +algorithm; the resulting GIF files are larger than usual, but are readable +by all standard GIF decoders. + +We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + + +REFERENCES +========== + +We recommend reading one or more of these references before trying to +understand the innards of the JPEG software. + +The best short technical introduction to the JPEG compression algorithm is + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. +(Adjacent articles in that issue discuss MPEG motion picture compression, +applications of JPEG, and related topics.) If you don't have the CACM issue +handy, a PDF file containing a revised version of Wallace's article is +available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually +a preprint for an article that appeared in IEEE Trans. Consumer Electronics) +omits the sample images that appeared in CACM, but it includes corrections +and some added material. Note: the Wallace article is copyright ACM and IEEE, +and it may not be used for commercial purposes. + +A somewhat less technical, more leisurely introduction to JPEG can be found in +"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by +M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides +good explanations and example C code for a multitude of compression methods +including JPEG. It is an excellent source if you are comfortable reading C +code but don't know much about data compression in general. The book's JPEG +sample code is far from industrial-strength, but when you are ready to look +at a full implementation, you've got one here... + +The best currently available description of JPEG is the textbook "JPEG Still +Image Data Compression Standard" by William B. Pennebaker and Joan L. +Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. +Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG +standards (DIS 10918-1 and draft DIS 10918-2). + +The original JPEG standard is divided into two parts, Part 1 being the actual +specification, while Part 2 covers compliance testing methods. Part 1 is +titled "Digital Compression and Coding of Continuous-tone Still Images, +Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS +10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of +Continuous-tone Still Images, Part 2: Compliance testing" and has document +numbers ISO/IEC IS 10918-2, ITU-T T.83. + +The JPEG standard does not specify all details of an interchangeable file +format. For the omitted details we follow the "JFIF" conventions, revision +1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report +and thus received a formal publication status. It is available as a free +download in PDF format from +http://www.ecma-international.org/publications/techreports/E-TR-098.htm. +A PostScript version of the JFIF document is available at +http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at +http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. + +The TIFF 6.0 file format specification can be obtained by FTP from +ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme +found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. +IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). +Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 +(Compression tag 7). Copies of this Note can be obtained from +http://www.ijg.org/files/. It is expected that the next revision +of the TIFF spec will replace the 6.0 JPEG design with the Note's design. +Although IJG's own code does not support TIFF/JPEG, the free libtiff library +uses our library to implement TIFF/JPEG per the Note. + + +ARCHIVE LOCATIONS +================= + +The "official" archive site for this software is www.ijg.org. +The most recent released version can always be found there in +directory "files". + +The JPEG FAQ (Frequently Asked Questions) article is a source of some +general information about JPEG. +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ +and other news.answers archive sites, including the official news.answers +archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. +If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu +with body + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 + + +FILE FORMAT WARS +================ + +The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together +with ITU-T SG16) currently promotes different formats containing the name +"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does +not support these formats (see REFERENCES). Indeed, one of the original +reasons for developing this free software was to help force convergence on +common, interoperable format standards for JPEG files. +Don't use an incompatible file format! +(In any case, our decoder will remain capable of reading existing JPEG +image files indefinitely.) + + +TO DO +===== + +Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. + +-------------------------------------------------------------------------------- +libjxl +skia +vulkan-deps + +Copyright 2021 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +libpng + +PNG Reference Library License version 2 +--------------------------------------- + + * Copyright (c) 1995-2024 The PNG Reference Library Authors. + * Copyright (c) 2018-2024 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + + 1. The origin of this source code must not be misrepresented. + + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. + +-------------------------------------------------------------------------------- +libpng + +PNG Reference Library License version 2 +--------------------------------------- + + * Copyright (c) 1995-2024 The PNG Reference Library Authors. + * Copyright (c) 2018-2024 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + + 1. The origin of this source code must not be misrepresented. + + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. + +END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE. + +TRADEMARK +========= + +The name "libpng" has not been registered by the Copyright owners +as a trademark in any jurisdiction. However, because libpng has +been distributed and maintained world-wide, continually since 1995, +the Copyright owners claim "common-law trademark protection" in any +jurisdiction where common-law trademark is recognized. + +-------------------------------------------------------------------------------- +libpng +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +libtess2 + +** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) +** Copyright (C) [dates of first publication] Silicon Graphics, Inc. +** All Rights Reserved. +** +** 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 including the dates of first publication and either this +** permission notice or a reference to http://oss.sgi.com/projects/FreeB/ 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 SILICON GRAPHICS, INC. +** 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. +** +** Except as contained in this notice, the name of Silicon Graphics, Inc. shall not +** be used in advertising or otherwise to promote the sale, use or other dealings in +** this Software without prior written authorization from Silicon Graphics, Inc. +-------------------------------------------------------------------------------- +libtess2 + +Copyright (c) 2009 Mikko Mononen memon@inside.org + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libwebp + +Copyright (c) 2010, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright (c) 2021, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2010 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2011 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2012 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2013 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2014 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2015 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2016 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2017 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2018 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2021 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2022 Google Inc. All Rights Reserved. + +Use of this source code is governed by a BSD-style license +that can be found in the COPYING file in the root of the source +tree. An additional intellectual property rights grant can be found +in the file PATENTS. All contributing project authors may +be found in the AUTHORS file in the root of the source tree. +-------------------------------------------------------------------------------- +lints + +Copyright 2021, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +llvm_libc + +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2019 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +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: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +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 +CONTRIBUTORS 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 WITH THE +SOFTWARE. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as +defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner +that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that +control, are controlled by, or are under common control with that entity. For the +purposes of this definition, "control" means (i) the power, direct or indirect, to +cause the direction or management of such entity, whether by contract or otherwise, +or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or +(iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions +granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not +limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included in or +attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based +on (or derived from) the Work and for which the editorial revisions, annotations, +elaborations, or other modifications represent, as a whole, an original work of +authorship. For the purposes of this License, Derivative Works shall not include works +that remain separable from, or merely link (or bind by name) to the interfaces of, the +Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the +Work and any modifications or additions to that Work or Derivative Works thereof, that +is intentionally submitted to Licensor for inclusion in the Work by the copyright owner +or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. +For the purposes of this definition, "submitted" means any form of electronic, verbal, +or written communication sent to the Licensor or its representatives, including but not +limited to communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose +of discussing and improving the Work, but excluding communication that is conspicuously +marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a +Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each +Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, +royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each +Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, +royalty-free, irrevocable (except as stated in this section) patent license to make, +have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such +license applies only to those patent claims licensable by such Contributor that are +necessarily infringed by their Contribution(s) alone or by combination of their +Contribution(s) with the Work to which such Contribution(s) was submitted. If You +institute patent litigation against any entity (including a cross-claim or counterclaim +in a lawsuit) alleging that the Work or a Contribution incorporated within the Work +constitutes direct or contributory patent infringement, then any patent licenses granted +to You under this License for that Work shall terminate as of the date such litigation +is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative +Works thereof in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this +License; and +You must cause any modified files to carry prominent notices stating that You changed +the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all +copyright, patent, trademark, and attribution notices from the Source form of the Work, +excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the attribution +notices contained within such NOTICE file, excluding those notices that do not pertain +to any part of the Derivative Works, in at least one of the following places: within a +NOTICE text file distributed as part of the Derivative Works; within the Source form or +documentation, if provided along with the Derivative Works; or, within a display +generated by the Derivative Works, if and wherever such third-party notices normally +appear. The contents of the NOTICE file are for informational purposes only and do not +modify the License. You may add Your own attribution notices within Derivative Works +that You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as modifying +the License. + +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies with +the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution +intentionally submitted for inclusion in the Work by You to the Licensor shall be under +the terms and conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of any +separate license agreement you may have executed with Licensor regarding such +Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, +trademarks, service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and reproducing the +content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, +Licensor provides the Work (and each Contributor provides its Contributions) on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, + including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, + MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for + determining the appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort +(including negligence), contract, or otherwise, unless required by applicable law (such +as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor +be liable to You for damages, including any direct, indirect, special, incidental, or +consequential damages of any character arising as a result of this License or out of the +use or inability to use the Work (including but not limited to damages for loss of +goodwill, work stoppage, computer failure or malfunction, or any and all other +commercial damages or losses), even if such Contributor has been advised of the +possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or +Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of +support, warranty, indemnity, or other liability obligations and/or rights consistent +with this License. However, in accepting such obligations, You may act only on Your own +behalf and on Your sole responsibility, not on behalf of any other Contributor, and only +if You agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your accepting +any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: HOW TO APPLY THE APACHE LICENSE TO YOUR WORK +To apply the Apache License to your work, attach the following boilerplate notice, with +the fields enclosed by brackets "[]" replaced with your own identifying information. +(Don't include the brackets!) The text should be enclosed in the appropriate comment +syntax for the file format. We also recommend that a file or class name and description +of purpose be included on the same "printed page" as the copyright notice for easier +identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (C) 2015-2021 Valve Corporation +Copyright (C) 2015-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2021 The Khronos Group Inc. +Copyright (c) 2015-2021 Valve Corporation +Copyright (c) 2015-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2021 The Khronos Group Inc. +Copyright (c) 2015-2021 Valve Corporation +Copyright (c) 2015-2021 LunarG, Inc. +Copyright (c) 2015-2021 Google, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2023 The Khronos Group Inc. +Copyright (c) 2015-2023 Valve Corporation +Copyright (c) 2015-2023 LunarG, Inc. +Copyright (C) 2015-2016 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2017, 2019, 2021 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved. +Copyright (C) 2015-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2019 The Khronos Group Inc. +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2020-2021 Valve Corporation +Copyright (c) 2020-2021 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2020-2022 Valve Corporation +Copyright (c) 2020-2022 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2020-2025 Valve Corporation +Copyright (c) 2020-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools + +Copyright (c) 2022-2025 Valve Corporation +Copyright (c) 2022-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools +vulkan-headers + +Copyright 2023-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +lunarg-vulkantools +vulkan-tools + +Copyright 2017 The Glslang Authors. All rights reserved. +Copyright (c) 2018-2023 Valve Corporation +Copyright (c) 2018-2023 LunarG, Inc. +Copyright (c) 2023-2023 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +lunarg-vulkantools +vulkan-validation-layers + +Copyright 2023-2024 The Khronos Group Inc. +Copyright 2023-2024 Valve Corporation +Copyright 2023-2024 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +material_color_utilities + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2021 Google LLC + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +-------------------------------------------------------------------------------- +nested +provider + +MIT License + +Copyright (c) 2019 Remi Rousselet + +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. +-------------------------------------------------------------------------------- +node_preamble + + + +Copyright (c) 2015 Michael Bullington + +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. +-------------------------------------------------------------------------------- +node_preamble + +Copyright 2012, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +octo_image + +MIT License + +Copyright (c) 2020 Baseflow + +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. + +-------------------------------------------------------------------------------- +path_parsing + +Copyright (c) 2018 Dan Field + +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. + +-------------------------------------------------------------------------------- +path_provider_android +path_provider_foundation +shared_preferences +shared_preferences_android +shared_preferences_foundation +webview_flutter_wkwebview + +Copyright 2013 The Flutter Authors + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +perfetto + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright (c) 2017, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +perfetto + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright (c) 2020, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +perfetto + +Copyright (c) 2019 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); you +may not use this file except in compliance with the License. You may +obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +implied. See the License for the specific language governing +permissions and limitations under the License. +-------------------------------------------------------------------------------- +petitparser + +The MIT License + +Copyright (c) 2006-2024 Lukas Renggli. +All rights reserved. + +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. + +-------------------------------------------------------------------------------- +platform + +Copyright 2017, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +process_runner + +Copyright 2020 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +process_runner + +Copyright 2020 The Flutter Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available-> + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> + +Licensed under the MIT License (the "License"); you may not use this file except +in compliance with the License-> You may obtain a copy of the License at + +http://opensource->org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied-> See the License for the +specific language governing permissions and limitations under the License-> +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Licensed under the MIT License (the "License"); you may not use this file except +in compliance with the License. You may obtain a copy of the License at + +http://opensource.org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Licensed under the MIT License (the "License"); you may not use this file except +in compliance with the License. You may obtain a copy of the License at + +http://opensource.org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. +-------------------------------------------------------------------------------- +rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. +If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. + +A copy of the MIT License is included in this file. + +Other dependencies and licenses: + +Open Source Software Licensed Under the BSD License: +-------------------------------------------------------------------- + +The msinttypes r29 +Copyright (c) 2006-2013 Alexander Chemeris +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +Terms of the MIT License: +-------------------------------------------------------------------- + +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. +-------------------------------------------------------------------------------- +rapidjson + +The above software in this distribution may have been modified by +THL A29 Limited ("Tencent Modifications"). +All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. +-------------------------------------------------------------------------------- +re2 + +// Copyright (c) 2009 The RE2 Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +re2 + +Copyright 1999-2005 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2003-2009 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2003-2009 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2003-2010 Google Inc. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2006 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2006-2007 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2007 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2008 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2009 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2010 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2016 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2018 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2019 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2022 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +Copyright 2023 The RE2 Authors. All Rights Reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +re2 + +The authors of this software are Rob Pike and Ken Thompson. + Copyright (c) 2002 by Lucent Technologies. +Permission to use, copy, modify, and distribute this software for any +purpose without fee is hereby granted, provided that this entire notice +is included in all copies of any software which is or includes a copy +or modification of this software and in all copies of the supporting +documentation for such software. +THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED +WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY +REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY +OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. +-------------------------------------------------------------------------------- +rxdart + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +-------------------------------------------------------------------------------- +shaderc + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2017 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2017-2022 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2020 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright (C) 2020-2022 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2015 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2016 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2017 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2018 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +shaderc + +Copyright 2019 The Shaderc Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +skia + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2021 Google LLC + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +skia + +// Copyright (c) 2011 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright %s %s + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (C) 2014 Google Inc. All rights reserved. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2011 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2014 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2016 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2017 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2019 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2020 Google LLC. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2022 Google LLC. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2005 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2006 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2006 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2006-2012 The Android Open Source Project +Copyright 2012 Mozilla Foundation + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2007 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2009 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2009-2015 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google Inc. +Copyright 2012 Mozilla Foundation + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google Inc. +Copyright 2017 ARM Ltd. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 The Bazel Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 Google Inc. + +Use of this source code is governed by a BD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file + +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. + +Copyright 2014 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Mozilla Foundation + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 ARM Ltd. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google Inc. + +Use of this source code is governed by a BD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google Inc. + +Use of this source code is governed by a BSD-style license that can be found +in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google Inc. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google Inc. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 The Bazel Authors. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google Inc. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google Inc. and Adobe Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google Inc. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC + +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google LLC. +Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 Google, LLC + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2024 The Android Open Source Project + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2025 Google Inc. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2025 Google LLC +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +skia + +Copyright 2025 Google LLC. + +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +spirv-cross + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, +AND DISTRIBUTION + + 1. Definitions. + + + +"License" shall mean the terms and conditions for use, reproduction, and distribution +as defined by Sections 1 through 9 of this document. + + + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + + + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct +or indirect, to cause the direction or management of such entity, whether +by contract or otherwise, or (ii) ownership of fifty percent (50%) or more +of the outstanding shares, or (iii) beneficial ownership of such entity. + + + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions +granted by this License. + + + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + + + +"Object" form shall mean any form resulting from mechanical transformation +or translation of a Source form, including but not limited to compiled object +code, generated documentation, and conversions to other media types. + + + +"Work" shall mean the work of authorship, whether in Source or Object form, +made available under the License, as indicated by a copyright notice that +is included in or attached to the work (an example is provided in the Appendix +below). + + + +"Derivative Works" shall mean any work, whether in Source or Object form, +that is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative +Works shall not include works that remain separable from, or merely link (or +bind by name) to the interfaces of, the Work and Derivative Works thereof. + + + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative +Works thereof, that is intentionally submitted to Licensor for inclusion in +the Work by the copyright owner or by an individual or Legal Entity authorized +to submit on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication +sent to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor +for the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + + + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently incorporated +within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this +License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable copyright license to reproduce, prepare +Derivative Works of, publicly display, publicly perform, sublicense, and distribute +the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, +each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) patent +license to make, have made, use, offer to sell, sell, import, and otherwise +transfer the Work, where such license applies only to those patent claims +licensable by such Contributor that are necessarily infringed by their Contribution(s) +alone or by combination of their Contribution(s) with the Work to which such +Contribution(s) was submitted. If You institute patent litigation against +any entity (including a cross-claim or counterclaim in a lawsuit) alleging +that the Work or a Contribution incorporated within the Work constitutes direct +or contributory patent infringement, then any patent licenses granted to You +under this License for that Work shall terminate as of the date such litigation +is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or +Derivative Works thereof in any medium, with or without modifications, and +in Source or Object form, provided that You meet the following conditions: + +(a) You must give any other recipients of the Work or Derivative Works a copy +of this License; and + +(b) You must cause any modified files to carry prominent notices stating that +You changed the files; and + +(c) You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source +form of the Work, excluding those notices that do not pertain to any part +of the Derivative Works; and + +(d) If the Work includes a "NOTICE" text file as part of its distribution, +then any Derivative Works that You distribute must include a readable copy +of the attribution notices contained within such NOTICE file, excluding those +notices that do not pertain to any part of the Derivative Works, in at least +one of the following places: within a NOTICE text file distributed as part +of the Derivative Works; within the Source form or documentation, if provided +along with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents +of the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works +that You distribute, alongside or as an addendum to the NOTICE text from the +Work, provided that such additional attribution notices cannot be construed +as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, +or distribution of Your modifications, or for any such Derivative Works as +a whole, provided Your use, reproduction, and distribution of the Work otherwise +complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any +Contribution intentionally submitted for inclusion in the Work by You to the +Licensor shall be under the terms and conditions of this License, without +any additional terms or conditions. Notwithstanding the above, nothing herein +shall supersede or modify the terms of any separate license agreement you +may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, +trademarks, service marks, or product names of the Licensor, except as required +for reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to +in writing, Licensor provides the Work (and each Contributor provides its +Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied, including, without limitation, any warranties +or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR +A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness +of using or redistributing the Work and assume any risks associated with Your +exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether +in tort (including negligence), contract, or otherwise, unless required by +applicable law (such as deliberate and grossly negligent acts) or agreed to +in writing, shall any Contributor be liable to You for damages, including +any direct, indirect, special, incidental, or consequential damages of any +character arising as a result of this License or out of the use or inability +to use the Work (including but not limited to damages for loss of goodwill, +work stoppage, computer failure or malfunction, or any and all other commercial +damages or losses), even if such Contributor has been advised of the possibility +of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work +or Derivative Works thereof, You may choose to offer, and charge a fee for, +acceptance of support, warranty, indemnity, or other liability obligations +and/or rights consistent with this License. However, in accepting such obligations, +You may act only on Your own behalf and on Your sole responsibility, not on +behalf of any other Contributor, and only if You agree to indemnify, defend, +and hold each Contributor harmless for any liability incurred by, or claims +asserted against, such Contributor by reason of your accepting any such warranty +or additional liability. END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own identifying +information. (Don't include the brackets!) The text should be enclosed in +the appropriate comment syntax for the file format. We also recommend that +a file or class name and description of purpose be included on the same "printed +page" as the copyright notice for easier identification within third-party +archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. + +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software + +distributed under the License is distributed on an "AS IS" BASIS, + +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and + +limitations under the License. + +-------------------------------------------------------------------------------- +spirv-cross + +Copyright (c) 2014-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +spirv-cross + +Copyright (c) 2014-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +spirv-cross + +Copyright 2016-2021 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +spirv-cross + +Copyright 2019-2021 Hans-Kristian Arntzen + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (C) 2019 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2016 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2016 The Khronos Group Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2020 The Khronos Group Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2015-2022 The Khronos Group Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All +rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2016 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2016 Google Inc. +Copyright (c) 2025 Arm Ltd. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2016 Google Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Google Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 Pierre Moreau + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Copyright (c) 2018 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Copyright (c) 2018-2021 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Copyright (c) 2019 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2017 The Khronos Group Inc. +Copyright (c) 2017 Valve Corporation +Copyright (c) 2017 LunarG Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Copyright (c) 2019 NVIDIA Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All +rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 Google LLC. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. +Copyright (c) 2024 NVIDIA Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2018 The Khronos Group Inc. +Copyright (c) 2018 Valve Corporation +Copyright (c) 2018 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Google LLC +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights +reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 The Khronos Group Inc. +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 André Perez Maselco + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Stefano Milizia + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Stefano Milizia +Copyright (c) 2020 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020 Vasyl Teliman + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2020-2022 Google LLC +Copyright (c) 2022 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Alastair F. Donaldson + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Mostafa Ashraf + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 Shiyu Liu + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 The Khronos Group Inc. +Copyright (c) 2021 Valve Corporation +Copyright (c) 2021 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2021 ZHOU He + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 Advanced Micro Devices, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2022 The Khronos Group Inc. +Copyright (c) 2022 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023 Google LLC. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2023-2025 Arm Ltd. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 Epic Games, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2024 NVIDIA Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 LunarG Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (c) 2025 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2018 The Go Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2019 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2019 The Go Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2025 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spirv-tools + +Copyright 2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +spring_animation + + + +Copyright (c) Meta Platforms, Inc. and affiliates. + +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. +-------------------------------------------------------------------------------- +sqflite +sqflite_android +sqflite_common +sqflite_darwin +sqflite_platform_interface + +BSD 2-Clause License + +Copyright (c) 2019, Alexandre Roux Tekartik +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +sqlite + +The source code for SQLite is in the public domain. No claim of +copyright is made on any part of the core source code. (The +documentation and test code is a different matter - some sections of +documentation and test logic are governed by open-source licenses.) +All contributors to the SQLite core software have signed affidavits +specifically disavowing any copyright interest in the code. This means +that anybody is able to legally do anything they want with the SQLite +source code. + +There are other SQL database engines with liberal licenses that allow +the code to be broadly and freely used. But those other engines are +still governed by copyright law. SQLite is different in that copyright +law simply does not apply. + +The source code files for other SQL database engines typically begin +with a comment describing your legal rights to view and copy that +file. The SQLite source code contains no license since it is not +governed by copyright. Instead of a license, the SQLite source code +offers a blessing: + +May you do good and not evil +May you find forgiveness for yourself and forgive others +May you share freely, never taking more than you give. +-------------------------------------------------------------------------------- +swiftshader + + + +Copyright © 2008-2011 Kristian Høgsberg +Copyright © 2010-2011 Intel Corporation +Copyright © 2012-2013 Collabora, Ltd. + +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 (including the +next paragraph) 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. +-------------------------------------------------------------------------------- +swiftshader + +Copyright (C) 2001-2006 Bart Massey, Jamey Sharp, and Josh Triplett. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +swiftshader + +Copyright (C) 2008 The Android Open Source Project +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2014-2023 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2015-2023 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2016 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2018 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2018 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2019 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2019 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2019 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2020 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2021 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright 2022 The SwiftShader Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +swiftshader + +Copyright © 2008 Kristian Høgsberg + +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 (including the +next paragraph) 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. +-------------------------------------------------------------------------------- +swiftshader + +Copyright © 2012 Intel Corporation + +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 (including the +next paragraph) 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. +-------------------------------------------------------------------------------- +swiftshader +vulkan +vulkan-headers + +Copyright 2015-2023 The Khronos Group Inc. +Copyright 2015-2023 Valve Corporation +Copyright 2015-2023 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +synchronized + +MIT License + +Copyright (c) 2016, Alexandre Roux Tekartik. + +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. +-------------------------------------------------------------------------------- +term_glyph + +Copyright 2017, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +test_api + +Copyright 2018, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +test_shaders + +Copyright (c) 2022 by Selman Ay (https://codepen.io/selmanays/pen/yLVmEqY) + +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. +-------------------------------------------------------------------------------- +uuid + +Copyright (c) 2021 Yulian Kuncheff + +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. +-------------------------------------------------------------------------------- +vector_math + +Copyright 2015, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (C) 2013 Andrew Magill + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +-------------------------------------------------------------------------------- +volk + +Copyright (c) 2018-2019 Arseny Kapoulkine + +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. +-------------------------------------------------------------------------------- +vulkan + +// Copyright (c) 2018 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +vulkan +vulkan-headers + +Copyright 2014-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan +vulkan-headers + +Copyright 2015-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright (c) 2018-2019 Collabora, Ltd. +Copyright 2013-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright 2013-2025 The Khronos Group Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright 2021-2025 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-headers + +Copyright 2023-2025 The Khronos Group Inc. +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-tools + + +Copyright (c) 2015-2017 The Khronos Group Inc. +Copyright (c) 2015-2017 Valve Corporation +Copyright (c) 2015-2017 LunarG, Inc. +Copyright (c) 2015-2017 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + + +Copyright (c) 2018 The Khronos Group Inc. +Copyright (c) 2018 Valve Corporation +Copyright (c) 2018 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + + +Copyright 2014, 2017 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2016 The Khronos Group Inc. +Copyright (c) 2015-2016 Valve Corporation +Copyright (c) 2015-2016 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2018, 2023 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2019 The Khronos Group Inc. +Copyright (c) 2015-2019 Valve Corporation +Copyright (c) 2015-2019 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2019 The Khronos Group Inc. +Copyright (c) 2015-2019 Valve Corporation +Copyright (c) 2015-2019 LunarG, Inc. +Copyright (c) 2025 The Fuchsia Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2021 The Khronos Group Inc. +Copyright (c) 2015-2021 Valve Corporation +Copyright (c) 2015-2021 LunarG, Inc. +Copyright (c) 2023-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2015-2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2016 Google, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2018 The Khronos Group Inc. +Copyright (c) 2018 Valve Corporation +Copyright (c) 2018 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2018-2020 The Khronos Group Inc. +Copyright (c) 2018-2020 Valve Corporation +Copyright (c) 2018-2020 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2019 The Khronos Group Inc. +Copyright (c) 2019 Valve Corporation +Copyright (c) 2019 LunarG, Inc. +Copyright (c) 2023 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2019-2022 The Khronos Group Inc. +Copyright (c) 2019-2022 Valve Corporation +Copyright (c) 2019-2022 LunarG, Inc. +Copyright (c) 2023-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2020 The Khronos Group Inc. +Copyright (c) 2020 Valve Corporation +Copyright (c) 2020 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools + +Copyright (c) 2025 The Fuchsia Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools +vulkan-utility-libraries + +Copyright 2023 The Khronos Group Inc. +Copyright 2023 Valve Corporation +Copyright 2023 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-tools +vulkan-validation-layers + +Copyright (c) 2024 The Khronos Group Inc. +Copyright (c) 2024 Valve Corporation +Copyright (c) 2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-tools +vulkan-validation-layers + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2017, 2019-2024 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2024 Valve Corporation +Copyright (c) 2015-2017, 2019-2024 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2017, 2019-2024 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2024 Valve Corporation +Copyright (c) 2015-2017, 2019-2024 LunarG, Inc. +Modifications Copyright (C) 2022 RasterGrid Kft. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Copyright (c) 2015-2024 Google Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright (c) 2019-2024 The Khronos Group Inc. +Copyright (c) 2019-2024 Valve Corporation +Copyright (c) 2019-2024 LunarG, Inc. +Copyright (C) 2019-2024 Google Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-utility-libraries + +Copyright 2023-2025 The Khronos Group Inc. +Copyright 2023-2025 Valve Corporation +Copyright 2023-2025 LunarG, Inc. + +SPDX-License-Identifier: Apache-2.0 +-------------------------------------------------------------------------------- +vulkan-validation-layers + + + + +Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved. +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. + +=========================================================================================== +File: layers/external/inplace_function.h +File: layers/external/parallel_hashmap/phmap_utils.h + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2024 Google Inc. +Copyright (c) 2023-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. +Copyright (c) 2015-2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2025 Google Inc. +Copyright (c) 2023-2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2016-2025 Google Inc. +Copyright (c) 2016-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2017-2024 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2020-2025 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2021-2024 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 Google Inc. +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2024-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + + +Copyright 2014-2024 Valve Software +Copyright 2015-2024 Google Inc. +Copyright 2019-2024 LunarG, Inc. +All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (C) 2012-2021 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2016 The Khronos Group Inc. +Copyright (c) 2015-2023 Valve Corporation +Copyright (c) 2015-2023 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2016, 2020-2025 The Khronos Group Inc. +Copyright (c) 2015-2016, 2020-2025 Valve Corporation +Copyright (c) 2015-2016, 2020-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2017, 2019-2025 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2025 Valve Corporation +Copyright (c) 2015-2017, 2019-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2017, 2019-2025 The Khronos Group Inc. +Copyright (c) 2015-2017, 2019-2025 Valve Corporation +Copyright (c) 2015-2017, 2019-2025 LunarG, Inc. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2020 The Khronos Group Inc. +Copyright (c) 2015-2023 Valve Corporation +Copyright (c) 2015-2023 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Copyright (C) 2015-2023 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2024 Valve Corporation +Copyright (c) 2015-2024 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2024 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2023 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2023 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2024 Google Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (C) 2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (C) 2025 Arm Limited. +Modifications Copyright (C) 2020-2025 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022-2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Copyright (c) 2025 Arm Limited. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2025 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (C) 2015-2025 Google Inc. +Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022-2024 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Copyright (c) 2015-2024 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2015-2025 The Khronos Group Inc. +Copyright (c) 2015-2025 Valve Corporation +Copyright (c) 2015-2025 LunarG, Inc. +Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2021 The Khronos Group Inc. +Copyright (c) 2018-2023 Valve Corporation +Copyright (c) 2018-2023 LunarG, Inc. +Copyright (C) 2018-2021 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2024 The Khronos Group Inc. +Copyright (c) 2018-2024 Valve Corporation +Copyright (c) 2018-2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2025 The Khronos Group Inc. +Copyright (c) 2018-2025 Valve Corporation +Copyright (c) 2018-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2018-2025 The Khronos Group Inc. +Copyright (c) 2018-2025 Valve Corporation +Copyright (c) 2018-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019, 2021, 2023-2025 The Khronos Group Inc. +Copyright (c) 2019, 2021, 2023-2025 Valve Corporation +Copyright (c) 2019, 2021, 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2024 The Khronos Group Inc. +Copyright (c) 2019-2024 Valve Corporation +Copyright (c) 2019-2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. +Copyright (C) 2019-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 The Khronos Group Inc. +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. +Modifications Copyright (C) 2022 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2019-2025 Valve Corporation +Copyright (c) 2019-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2020-2025 The Khronos Group Inc. +Copyright (c) 2020-2025 Valve Corporation +Copyright (c) 2020-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2020-2025 The Khronos Group Inc. +Copyright (c) 2020-2025 Valve Corporation +Copyright (c) 2020-2025 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (C) 2021-2022 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (C) 2021-2025 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (C) 2021-2025 Google Inc. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2021-2025 Valve Corporation +Copyright (c) 2021-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2021-2025 The Khronos Group Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2022-2023 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2022-2024 The Khronos Group Inc. +Copyright (c) 2022-2024 RasterGrid Kft. +Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2022-2025 The Khronos Group Inc. +Copyright (c) 2022-2025 Valve Corporation +Copyright (c) 2022-2025 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023 The Khronos Group Inc. +Copyright (c) 2023 Valve Corporation +Copyright (c) 2023 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2024 LunarG, Inc. +Copyright (c) 2023-2024 Valve Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2024 Nintendo +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 LunarG, Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 Nintendo +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 The Khronos Group Inc. +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2023-2025 Valve Corporation +Copyright (c) 2023-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024 The Khronos Group Inc. +Copyright (c) 2024 LunarG, Inc. +Copyright (c) 2024 Advanced Micro Devices, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024 The Khronos Group Inc. +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024 Valve Corporation +Copyright (c) 2024 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024-2025 The Khronos Group Inc. +Copyright (c) 2024-2025 Valve Corporation +Copyright (c) 2024-2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2024-2025 The Khronos Group Inc. +Copyright (c) 2024-2025 Valve Corporation +Copyright (c) 2024-2025 LunarG, Inc. +Copyright (c) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2025 The Khronos Group Inc. +Copyright (C) 2025 Arm Limited. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (c) 2025 Valve Corporation +Copyright (c) 2025 LunarG, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright 2017 The Glslang Authors. All rights reserved. +Copyright (c) 2018-2025 Valve Corporation +Copyright (c) 2018-2025 LunarG, Inc. +Copyright (c) 2023-2023 RasterGrid Kft. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +vulkan-validation-layers + +The majority of files in this project use the Apache 2.0 License. +There are a few exceptions and their license can be found in the source. +Any license deviations from Apache 2.0 are "more permissive" licenses. +Any file without a license in it's source defaults to the repository Apache 2.0 License. + +=========================================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + + +Copyright (C) 1997-2020 by Dimitri van Heesch + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + + +Copyright (c) 2021 - 2022 jothepro + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + +Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + + +Copyright (c) 2018-2025 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +vulkan_memory_allocator + +Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. + +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. +-------------------------------------------------------------------------------- +web + +Copyright 2023, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +web_locale_keymap + + + +Copyright (c) 2015 - present Microsoft Corporation + +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. +-------------------------------------------------------------------------------- +webview_flutter_android + +Copyright 2013 The Flutter Authors + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +xml + +The MIT License + +Copyright (c) 2006-2025 Lukas Renggli. +All rights reserved. + +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. + +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet + + BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet. + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +xxhash + +xxHash Library +Copyright (c) 2012-2014, Yann Collet +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +yapf + +Copyright 2022 Bill Wendling, All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +yapf_diff + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2005 Gilles Vollant +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) + +Modifications for Zip64 support +Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) + +For more info read MiniZip_info.txt + +--------------------------------------------------------------------------- + +Condition of use and distribution are the same than zlib : + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) + +Modifications of Unzip for Zip64 +Copyright (C) 2007-2008 Even Rouault + +Modifications for Zip64 support on both zip and unzip +Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) + +For more info read MiniZip_info.txt + +--------------------------------------------------------------------------------- + +Condition of use and distribution are the same than zlib : + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 2017 ARM, Inc. +Copyright 2017 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2017 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2017 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2018 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2019 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the Chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 The Chromium Authors +Use of this source code is governed by a BSD-style license that can be +found in the chromium source repository LICENSE file. +-------------------------------------------------------------------------------- +zlib + +version 1.2.12, March 27th, 2022 + +Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +version 1.3.0.1, August xxth, 2023 + +Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/build/web/assets/fonts/MaterialIcons-Regular.otf b/build/web/assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..49cbfb5 Binary files /dev/null and b/build/web/assets/fonts/MaterialIcons-Regular.otf differ diff --git a/build/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/build/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 0000000..e994225 Binary files /dev/null and b/build/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/build/web/assets/shaders/ink_sparkle.frag b/build/web/assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..d43532a --- /dev/null +++ b/build/web/assets/shaders/ink_sparkle.frag @@ -0,0 +1,126 @@ +{ + "sksl": { + "entrypoint": "ink_sparkle_fragment_main", + "shader": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec4 u_color;\nuniform vec4 u_composite_1;\nuniform vec2 u_center;\nuniform float u_max_radius;\nuniform vec2 u_resolution_scale;\nuniform vec2 u_noise_scale;\nuniform float u_noise_phase;\nuniform vec2 u_circle1;\nuniform vec2 u_circle2;\nuniform vec2 u_circle3;\nuniform vec2 u_rotation1;\nuniform vec2 u_rotation2;\nuniform vec2 u_rotation3;\n\nvec4 fragColor;\n\nfloat u_alpha;\nfloat u_sparkle_alpha;\nfloat u_blur;\nfloat u_radius_scale;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nmat2 FLT_flutter_local_rotate2d(vec2 rad)\n{\n return mat2(vec2(rad.x, -rad.y), vec2(rad.y, rad.x));\n}\n\nfloat FLT_flutter_local_soft_circle(vec2 uv, vec2 xy, float radius, float blur)\n{\n float blur_half = blur * 0.5;\n float d = distance(uv, xy);\n return 1.0 - smoothstep(1.0 - blur_half, 1.0 + blur_half, d / radius);\n}\n\nfloat FLT_flutter_local_circle_grid(vec2 resolution, inout vec2 p, vec2 xy, vec2 rotation, float cell_diameter)\n{\n vec2 param = rotation;\n p = (FLT_flutter_local_rotate2d(param) * (xy - p)) + xy;\n p = mod(p, vec2(cell_diameter)) / resolution;\n float cell_uv = (cell_diameter / resolution.y) * 0.5;\n float r = 0.64999997615814208984375 * cell_uv;\n vec2 param_1 = p;\n vec2 param_2 = vec2(cell_uv);\n float param_3 = r;\n float param_4 = r * 50.0;\n return FLT_flutter_local_soft_circle(param_1, param_2, param_3, param_4);\n}\n\nfloat FLT_flutter_local_turbulence(vec2 uv)\n{\n vec2 uv_scale = uv * vec2(0.800000011920928955078125);\n vec2 param = vec2(0.800000011920928955078125);\n vec2 param_1 = uv_scale;\n vec2 param_2 = u_circle1;\n vec2 param_3 = u_rotation1;\n float param_4 = 0.17000000178813934326171875;\n float _319 = FLT_flutter_local_circle_grid(param, param_1, param_2, param_3, param_4);\n float g1 = _319;\n vec2 param_5 = vec2(0.800000011920928955078125);\n vec2 param_6 = uv_scale;\n vec2 param_7 = u_circle2;\n vec2 param_8 = u_rotation2;\n float param_9 = 0.20000000298023223876953125;\n float _331 = FLT_flutter_local_circle_grid(param_5, param_6, param_7, param_8, param_9);\n float g2 = _331;\n vec2 param_10 = vec2(0.800000011920928955078125);\n vec2 param_11 = uv_scale;\n vec2 param_12 = u_circle3;\n vec2 param_13 = u_rotation3;\n float param_14 = 0.2750000059604644775390625;\n float _344 = FLT_flutter_local_circle_grid(param_10, param_11, param_12, param_13, param_14);\n float g3 = _344;\n float v = (((g1 * g1) + g2) - g3) * 0.5;\n return clamp(0.449999988079071044921875 + (0.800000011920928955078125 * v), 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_soft_ring(vec2 uv, vec2 xy, float radius, float thickness, float blur)\n{\n vec2 param = uv;\n vec2 param_1 = xy;\n float param_2 = radius + thickness;\n float param_3 = blur;\n float circle_outer = FLT_flutter_local_soft_circle(param, param_1, param_2, param_3);\n vec2 param_4 = uv;\n vec2 param_5 = xy;\n float param_6 = max(radius - thickness, 0.0);\n float param_7 = blur;\n float circle_inner = FLT_flutter_local_soft_circle(param_4, param_5, param_6, param_7);\n return clamp(circle_outer - circle_inner, 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_triangle_noise(inout vec2 n)\n{\n n = fract(n * vec2(5.398700237274169921875, 5.442100048065185546875));\n n += vec2(dot(n.yx, n + vec2(21.5351009368896484375, 14.3136997222900390625)));\n float xy = n.x * n.y;\n return (fract(xy * 95.43070220947265625) + fract(xy * 75.0496063232421875)) - 1.0;\n}\n\nfloat FLT_flutter_local_threshold(float v, float l, float h)\n{\n return step(l, v) * (1.0 - step(h, v));\n}\n\nfloat FLT_flutter_local_sparkle(vec2 uv, float t)\n{\n vec2 param = uv;\n float _242 = FLT_flutter_local_triangle_noise(param);\n float n = _242;\n float param_1 = n;\n float param_2 = 0.0;\n float param_3 = 0.0500000007450580596923828125;\n float s = FLT_flutter_local_threshold(param_1, param_2, param_3);\n float param_4 = n + sin(3.1415927410125732421875 * (t + 0.3499999940395355224609375));\n float param_5 = 0.100000001490116119384765625;\n float param_6 = 0.1500000059604644775390625;\n s += FLT_flutter_local_threshold(param_4, param_5, param_6);\n float param_7 = n + sin(3.1415927410125732421875 * (t + 0.699999988079071044921875));\n float param_8 = 0.20000000298023223876953125;\n float param_9 = 0.25;\n s += FLT_flutter_local_threshold(param_7, param_8, param_9);\n float param_10 = n + sin(3.1415927410125732421875 * (t + 1.0499999523162841796875));\n float param_11 = 0.300000011920928955078125;\n float param_12 = 0.3499999940395355224609375;\n s += FLT_flutter_local_threshold(param_10, param_11, param_12);\n return clamp(s, 0.0, 1.0) * 0.550000011920928955078125;\n}\n\nvoid FLT_main()\n{\n u_alpha = u_composite_1.x;\n u_sparkle_alpha = u_composite_1.y;\n u_blur = u_composite_1.z;\n u_radius_scale = u_composite_1.w;\n vec2 p = FLT_flutter_local_FlutterFragCoord();\n vec2 uv_1 = p * u_resolution_scale;\n vec2 density_uv = uv_1 - mod(p, u_noise_scale);\n float radius = u_max_radius * u_radius_scale;\n vec2 param_13 = uv_1;\n float turbulence = FLT_flutter_local_turbulence(param_13);\n vec2 param_14 = p;\n vec2 param_15 = u_center;\n float param_16 = radius;\n float param_17 = 0.0500000007450580596923828125 * u_max_radius;\n float param_18 = u_blur;\n float ring = FLT_flutter_local_soft_ring(param_14, param_15, param_16, param_17, param_18);\n vec2 param_19 = density_uv;\n float param_20 = u_noise_phase;\n float sparkle = ((FLT_flutter_local_sparkle(param_19, param_20) * ring) * turbulence) * u_sparkle_alpha;\n vec2 param_21 = p;\n vec2 param_22 = u_center;\n float param_23 = radius;\n float param_24 = u_blur;\n float wave_alpha = (FLT_flutter_local_soft_circle(param_21, param_22, param_23, param_24) * u_alpha) * u_color.w;\n vec4 wave_color = vec4(u_color.xyz * wave_alpha, wave_alpha);\n fragColor = mix(wave_color, vec4(1.0), vec4(sparkle));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return fragColor;\n}\n", + "stage": 1, + "uniforms": [ + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 0, + "name": "u_color", + "rows": 4, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 1, + "name": "u_composite_1", + "rows": 4, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 2, + "name": "u_center", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 3, + "name": "u_max_radius", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 4, + "name": "u_resolution_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 5, + "name": "u_noise_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 6, + "name": "u_noise_phase", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 7, + "name": "u_circle1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 8, + "name": "u_circle2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 9, + "name": "u_circle3", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 10, + "name": "u_rotation1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 11, + "name": "u_rotation2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 12, + "name": "u_rotation3", + "rows": 2, + "type": 10 + } + ] + } +} \ No newline at end of file diff --git a/build/web/assets/shaders/stretch_effect.frag b/build/web/assets/shaders/stretch_effect.frag new file mode 100644 index 0000000..b93e39b --- /dev/null +++ b/build/web/assets/shaders/stretch_effect.frag @@ -0,0 +1,63 @@ +{ + "sksl": { + "entrypoint": "stretch_effect_fragment_main", + "shader": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec2 u_size;\nuniform float u_max_stretch_intensity;\nuniform float u_overscroll_x;\nuniform float u_overscroll_y;\nuniform float u_interpolation_strength;\nuniform shader u_texture;\nuniform half2 u_texture_size;\n\nvec4 frag_color;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nfloat FLT_flutter_local_ease_in(float t, float d)\n{\n return t * d;\n}\n\nfloat FLT_flutter_local_compute_overscroll_start(float in_pos, float overscroll, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float interpolation_strength)\n{\n float offset_pos = u_stretch_affected_dist - in_pos;\n float param = offset_pos;\n float param_1 = u_inverse_stretch_affected_dist;\n float pos_based_variation = mix(1.0, FLT_flutter_local_ease_in(param, param_1), interpolation_strength);\n float stretch_intensity = overscroll * pos_based_variation;\n return distance_stretched - (offset_pos / (1.0 + stretch_intensity));\n}\n\nfloat FLT_flutter_local_compute_overscroll_end(float in_pos, float overscroll, float reverse_stretch_dist, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float interpolation_strength, float viewport_dimension)\n{\n float offset_pos = in_pos - reverse_stretch_dist;\n float param = offset_pos;\n float param_1 = u_inverse_stretch_affected_dist;\n float pos_based_variation = mix(1.0, FLT_flutter_local_ease_in(param, param_1), interpolation_strength);\n float stretch_intensity = (-overscroll) * pos_based_variation;\n return viewport_dimension - (distance_stretched - (offset_pos / (1.0 + stretch_intensity)));\n}\n\nfloat FLT_flutter_local_compute_streched_effect(float in_pos, float overscroll, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float distance_diff, float interpolation_strength, float viewport_dimension)\n{\n if (overscroll > 0.0)\n {\n if (in_pos <= u_stretch_affected_dist)\n {\n float param = in_pos;\n float param_1 = overscroll;\n float param_2 = u_stretch_affected_dist;\n float param_3 = u_inverse_stretch_affected_dist;\n float param_4 = distance_stretched;\n float param_5 = interpolation_strength;\n return FLT_flutter_local_compute_overscroll_start(param, param_1, param_2, param_3, param_4, param_5);\n }\n else\n {\n return distance_diff + in_pos;\n }\n }\n else\n {\n if (overscroll < 0.0)\n {\n float stretch_affected_dist_calc = viewport_dimension - u_stretch_affected_dist;\n if (in_pos >= stretch_affected_dist_calc)\n {\n float param_6 = in_pos;\n float param_7 = overscroll;\n float param_8 = stretch_affected_dist_calc;\n float param_9 = u_stretch_affected_dist;\n float param_10 = u_inverse_stretch_affected_dist;\n float param_11 = distance_stretched;\n float param_12 = interpolation_strength;\n float param_13 = viewport_dimension;\n return FLT_flutter_local_compute_overscroll_end(param_6, param_7, param_8, param_9, param_10, param_11, param_12, param_13);\n }\n else\n {\n return (-distance_diff) + in_pos;\n }\n }\n else\n {\n return in_pos;\n }\n }\n}\n\nvoid FLT_main()\n{\n vec2 uv = FLT_flutter_local_FlutterFragCoord() / u_size;\n float in_u_norm = uv.x;\n float in_v_norm = uv.y;\n bool isVertical = u_overscroll_y != 0.0;\n float overscroll_1 = isVertical ? u_overscroll_y : u_overscroll_x;\n float norm_distance_stretched = 1.0 / (1.0 + abs(overscroll_1));\n float norm_dist_diff = norm_distance_stretched - 1.0;\n float _223;\n if (isVertical)\n {\n _223 = in_u_norm;\n }\n else\n {\n float param_14 = in_u_norm;\n float param_15 = overscroll_1;\n float param_16 = 1.0;\n float param_17 = 1.0;\n float param_18 = norm_distance_stretched;\n float param_19 = norm_dist_diff;\n float param_20 = u_interpolation_strength;\n float param_21 = 1.0;\n _223 = FLT_flutter_local_compute_streched_effect(param_14, param_15, param_16, param_17, param_18, param_19, param_20, param_21);\n }\n float out_u_norm = _223;\n float _246;\n if (isVertical)\n {\n float param_22 = in_v_norm;\n float param_23 = overscroll_1;\n float param_24 = 1.0;\n float param_25 = 1.0;\n float param_26 = norm_distance_stretched;\n float param_27 = norm_dist_diff;\n float param_28 = u_interpolation_strength;\n float param_29 = 1.0;\n _246 = FLT_flutter_local_compute_streched_effect(param_22, param_23, param_24, param_25, param_26, param_27, param_28, param_29);\n }\n else\n {\n _246 = in_v_norm;\n }\n float out_v_norm = _246;\n uv.x = out_u_norm;\n uv.y = out_v_norm;\n frag_color = u_texture.eval(u_texture_size * ( uv));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return frag_color;\n}\n", + "stage": 1, + "uniforms": [ + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 0, + "name": "u_size", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 0, + "columns": 1, + "location": 1, + "name": "u_texture", + "rows": 1, + "type": 12 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 2, + "name": "u_max_stretch_intensity", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 3, + "name": "u_overscroll_x", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 4, + "name": "u_overscroll_y", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 5, + "name": "u_interpolation_strength", + "rows": 1, + "type": 10 + } + ] + } +} \ No newline at end of file diff --git a/build/web/canvaskit/canvaskit.js b/build/web/canvaskit/canvaskit.js new file mode 100644 index 0000000..5103e75 --- /dev/null +++ b/build/web/canvaskit/canvaskit.js @@ -0,0 +1,192 @@ + +var CanvasKitInit = (() => { + var _scriptName = import.meta.url; + + return ( +function(moduleArg = {}) { + var moduleRtn; + +var r=moduleArg,ba,ca,da=new Promise((a,b)=>{ba=a;ca=b}),fa="object"==typeof window,ia="function"==typeof importScripts; +(function(a){a.ce=a.ce||[];a.ce.push(function(){a.MakeSWCanvasSurface=function(b){var c=b,e="undefined"!==typeof OffscreenCanvas&&c instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&c instanceof HTMLCanvasElement||e||(c=document.getElementById(b),c)))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.Ae=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var e={width:b,height:c,colorType:a.ColorType.RGBA_8888, +alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB},f=b*c*4,k=a._malloc(f);if(e=a.Surface._makeRasterDirect(e,k,4*b))e.Ae=null,e.$e=b,e.Xe=c,e.Ye=f,e.He=k,e.getCanvas().clear(a.TRANSPARENT);return e};a.MakeRasterDirectSurface=function(b,c,e){return a.Surface._makeRasterDirect(b,c.byteOffset,e)};a.Surface.prototype.flush=function(b){a.$d(this.Zd);this._flush();if(this.Ae){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.He,this.Ye);c=new ImageData(c,this.$e,this.Xe);b?this.Ae.getContext("2d").putImageData(c, +0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.Ae.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose=function(){this.He&&a._free(this.He);this.delete()};a.$d=a.$d||function(){};a.Be=a.Be||function(){return null}})})(r); +(function(a){a.ce=a.ce||[];a.ce.push(function(){function b(l,p,v){return l&&l.hasOwnProperty(p)?l[p]:v}function c(l){var p=ja(ka);ka[p]=l;return p}function e(l){return l.naturalHeight||l.videoHeight||l.displayHeight||l.height}function f(l){return l.naturalWidth||l.videoWidth||l.displayWidth||l.width}function k(l,p,v,w){l.bindTexture(l.TEXTURE_2D,p);w||v.alphaType!==a.AlphaType.Premul||l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return p}function n(l,p,v){v||p.alphaType!==a.AlphaType.Premul|| +l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);l.bindTexture(l.TEXTURE_2D,null)}a.GetWebGLContext=function(l,p){if(!l)throw"null canvas passed into makeWebGLContext";var v={alpha:b(p,"alpha",1),depth:b(p,"depth",1),stencil:b(p,"stencil",8),antialias:b(p,"antialias",0),premultipliedAlpha:b(p,"premultipliedAlpha",1),preserveDrawingBuffer:b(p,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(p,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(p,"failIfMajorPerformanceCaveat", +0),enableExtensionsByDefault:b(p,"enableExtensionsByDefault",1),explicitSwapControl:b(p,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(p,"renderViaOffscreenBackBuffer",0)};v.majorVersion=p&&p.majorVersion?p.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(v.explicitSwapControl)throw"explicitSwapControl is not supported";l=na(l,v);if(!l)return 0;oa(l);z.le.getExtension("WEBGL_debug_renderer_info");return l};a.deleteContext=function(l){z===pa[l]&&(z=null);"object"==typeof JSEvents&& +JSEvents.Af(pa[l].le.canvas);pa[l]&&pa[l].le.canvas&&(pa[l].le.canvas.Ve=void 0);pa[l]=null};a._setTextureCleanup({deleteTexture:function(l,p){var v=ka[p];v&&pa[l].le.deleteTexture(v);ka[p]=null}});a.MakeWebGLContext=function(l){if(!this.$d(l))return null;var p=this._MakeGrContext();if(!p)return null;p.Zd=l;var v=p.delete.bind(p);p["delete"]=function(){a.$d(this.Zd);v()}.bind(p);return z.Je=p};a.MakeGrContext=a.MakeWebGLContext;a.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){a.$d(this.Zd); +this._getResourceCacheLimitBytes()};a.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){a.$d(this.Zd);this._getResourceCacheUsageBytes()};a.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){a.$d(this.Zd);this._releaseResourcesAndAbandonContext()};a.GrDirectContext.prototype.setResourceCacheLimitBytes=function(l){a.$d(this.Zd);this._setResourceCacheLimitBytes(l)};a.MakeOnScreenGLSurface=function(l,p,v,w,A,D){if(!this.$d(l.Zd))return null;p=void 0===A||void 0===D? +this._MakeOnScreenGLSurface(l,p,v,w):this._MakeOnScreenGLSurface(l,p,v,w,A,D);if(!p)return null;p.Zd=l.Zd;return p};a.MakeRenderTarget=function(){var l=arguments[0];if(!this.$d(l.Zd))return null;if(3===arguments.length){var p=this._MakeRenderTargetWH(l,arguments[1],arguments[2]);if(!p)return null}else if(2===arguments.length){if(p=this._MakeRenderTargetII(l,arguments[1]),!p)return null}else return null;p.Zd=l.Zd;return p};a.MakeWebGLCanvasSurface=function(l,p,v){p=p||null;var w=l,A="undefined"!== +typeof OffscreenCanvas&&w instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&w instanceof HTMLCanvasElement||A||(w=document.getElementById(l),w)))throw"Canvas with id "+l+" was not found";l=this.GetWebGLContext(w,v);if(!l||0>l)throw"failed to create webgl context: err "+l;l=this.MakeWebGLContext(l);p=this.MakeOnScreenGLSurface(l,w.width,w.height,p);return p?p:(p=w.cloneNode(!0),w.parentNode.replaceChild(p,w),p.classList.add("ck-replaced"),a.MakeSWCanvasSurface(p))};a.MakeCanvasSurface= +a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture=function(l,p){a.$d(this.Zd);l=c(l);if(p=this._makeImageFromTexture(this.Zd,l,p))p.ue=l;return p};a.Surface.prototype.makeImageFromTextureSource=function(l,p,v){p||={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:v?a.AlphaType.Premul:a.AlphaType.Unpremul};p.colorSpace||(p.colorSpace=a.ColorSpace.SRGB);a.$d(this.Zd);var w=z.le;v=k(w,w.createTexture(),p,v);2===z.version?w.texImage2D(w.TEXTURE_2D,0,w.RGBA,p.width,p.height, +0,w.RGBA,w.UNSIGNED_BYTE,l):w.texImage2D(w.TEXTURE_2D,0,w.RGBA,w.RGBA,w.UNSIGNED_BYTE,l);n(w,p);this._resetContext();return this.makeImageFromTexture(v,p)};a.Surface.prototype.updateTextureFromSource=function(l,p,v){if(l.ue){a.$d(this.Zd);var w=l.getImageInfo(),A=z.le,D=k(A,ka[l.ue],w,v);2===z.version?A.texImage2D(A.TEXTURE_2D,0,A.RGBA,f(p),e(p),0,A.RGBA,A.UNSIGNED_BYTE,p):A.texImage2D(A.TEXTURE_2D,0,A.RGBA,A.RGBA,A.UNSIGNED_BYTE,p);n(A,w,v);this._resetContext();ka[l.ue]=null;l.ue=c(D);w.colorSpace= +l.getColorSpace();p=this._makeImageFromTexture(this.Zd,l.ue,w);v=l.Yd.ae;A=l.Yd.ee;l.Yd.ae=p.Yd.ae;l.Yd.ee=p.Yd.ee;p.Yd.ae=v;p.Yd.ee=A;p.delete();w.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(l,p,v){p||={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:v?a.AlphaType.Premul:a.AlphaType.Unpremul};p.colorSpace||(p.colorSpace=a.ColorSpace.SRGB);var w={makeTexture:function(){var A=z,D=A.le,I=k(D,D.createTexture(),p,v);2===A.version?D.texImage2D(D.TEXTURE_2D,0,D.RGBA, +p.width,p.height,0,D.RGBA,D.UNSIGNED_BYTE,l):D.texImage2D(D.TEXTURE_2D,0,D.RGBA,D.RGBA,D.UNSIGNED_BYTE,l);n(D,p,v);return c(I)},freeSrc:function(){}};"VideoFrame"===l.constructor.name&&(w.freeSrc=function(){l.close()});return a.Image._makeFromGenerator(p,w)};a.$d=function(l){return l?oa(l):!1};a.Be=function(){return z&&z.Je&&!z.Je.isDeleted()?z.Je:null}})})(r); +(function(a){function b(g){return(f(255*g[3])<<24|f(255*g[0])<<16|f(255*g[1])<<8|f(255*g[2])<<0)>>>0}function c(g){if(g&&g._ck)return g;if(g instanceof Float32Array){for(var d=Math.floor(g.length/4),h=new Uint32Array(d),m=0;mx;x++)a.HEAPF32[t+m]=g[u][x],m++;g=h}else g=0;d.he=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return d}function p(g){if(!g)return 0;var d=aa.toTypedArray();if(g.length){if(6===g.length||9===g.length)return n(g,"HEAPF32",P),6===g.length&&a.HEAPF32.set(Vc,6+P/4),P;if(16===g.length)return d[0]=g[0],d[1]=g[1],d[2]=g[3],d[3]=g[4],d[4]=g[5],d[5]=g[7],d[6]=g[12],d[7]=g[13],d[8]=g[15],P;throw"invalid matrix size"; +}if(void 0===g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m41;d[3]=g.m12;d[4]=g.m22;d[5]=g.m42;d[6]=g.m14;d[7]=g.m24;d[8]=g.m44;return P}function v(g){if(!g)return 0;var d=X.toTypedArray();if(g.length){if(16!==g.length&&6!==g.length&&9!==g.length)throw"invalid matrix size";if(16===g.length)return n(g,"HEAPF32",la);d.fill(0);d[0]=g[0];d[1]=g[1];d[3]=g[2];d[4]=g[3];d[5]=g[4];d[7]=g[5];d[10]=1;d[12]=g[6];d[13]=g[7];d[15]=g[8];6===g.length&&(d[12]=0,d[13]=0,d[15]=1);return la}if(void 0=== +g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m31;d[3]=g.m41;d[4]=g.m12;d[5]=g.m22;d[6]=g.m32;d[7]=g.m42;d[8]=g.m13;d[9]=g.m23;d[10]=g.m33;d[11]=g.m43;d[12]=g.m14;d[13]=g.m24;d[14]=g.m34;d[15]=g.m44;return la}function w(g,d){return n(g,"HEAPF32",d||ha)}function A(g,d,h,m){var t=Ea.toTypedArray();t[0]=g;t[1]=d;t[2]=h;t[3]=m;return ha}function D(g){for(var d=new Float32Array(4),h=0;4>h;h++)d[h]=a.HEAPF32[g/4+h];return d}function I(g,d){return n(g,"HEAPF32",d||V)}function Q(g,d){return n(g, +"HEAPF32",d||tb)}a.Color=function(g,d,h,m){void 0===m&&(m=1);return a.Color4f(f(g)/255,f(d)/255,f(h)/255,m)};a.ColorAsInt=function(g,d,h,m){void 0===m&&(m=255);return(f(m)<<24|f(g)<<16|f(d)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,d,h,m){void 0===m&&(m=1);return Float32Array.of(g,d,h,m)};Object.defineProperty(a,"TRANSPARENT",{get:function(){return a.Color4f(0,0,0,0)}});Object.defineProperty(a,"BLACK",{get:function(){return a.Color4f(0,0,0,1)}});Object.defineProperty(a,"WHITE",{get:function(){return a.Color4f(1, +1,1,1)}});Object.defineProperty(a,"RED",{get:function(){return a.Color4f(1,0,0,1)}});Object.defineProperty(a,"GREEN",{get:function(){return a.Color4f(0,1,0,1)}});Object.defineProperty(a,"BLUE",{get:function(){return a.Color4f(0,0,1,1)}});Object.defineProperty(a,"YELLOW",{get:function(){return a.Color4f(1,1,0,1)}});Object.defineProperty(a,"CYAN",{get:function(){return a.Color4f(0,1,1,1)}});Object.defineProperty(a,"MAGENTA",{get:function(){return a.Color4f(1,0,1,1)}});a.getColorComponents=function(g){return[Math.floor(255* +g[0]),Math.floor(255*g[1]),Math.floor(255*g[2]),g[3]]};a.parseColorString=function(g,d){g=g.toLowerCase();if(g.startsWith("#")){d=255;switch(g.length){case 9:d=parseInt(g.slice(7,9),16);case 7:var h=parseInt(g.slice(1,3),16);var m=parseInt(g.slice(3,5),16);var t=parseInt(g.slice(5,7),16);break;case 5:d=17*parseInt(g.slice(4,5),16);case 4:h=17*parseInt(g.slice(1,2),16),m=17*parseInt(g.slice(2,3),16),t=17*parseInt(g.slice(3,4),16)}return a.Color(h,m,t,d/255)}return g.startsWith("rgba")?(g=g.slice(5, +-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("rgb")?(g=g.slice(4,-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("gray(")||g.startsWith("hsl")||!d||(g=d[g],void 0===g)?a.BLACK:g};a.multiplyByAlpha=function(g,d){g=g.slice();g[3]=Math.max(0,Math.min(g[3]*d,1));return g};a.Malloc=function(g,d){var h=a._malloc(d*g.BYTES_PER_ELEMENT);return{_ck:!0,length:d,byteOffset:h,qe:null,subarray:function(m,t){m=this.toTypedArray().subarray(m,t);m._ck=!0;return m},toTypedArray:function(){if(this.qe&& +this.qe.length)return this.qe;this.qe=new g(a.HEAPU8.buffer,h,d);this.qe._ck=!0;return this.qe}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=0;g.toTypedArray=null;g.qe=null};var P=0,aa,la=0,X,ha=0,Ea,ea,V=0,Ub,Aa=0,Vb,ub=0,Wb,vb=0,$a,Ma=0,Xb,tb=0,Yb,Zb=0,Vc=Float32Array.of(0,0,1);a.onRuntimeInitialized=function(){function g(d,h,m,t,u,x,C){x||(x=4*t.width,t.colorType===a.ColorType.RGBA_F16?x*=2:t.colorType===a.ColorType.RGBA_F32&&(x*=4));var G=x*t.height;var F=u?u.byteOffset:a._malloc(G); +if(C?!d._readPixels(t,F,x,h,m,C):!d._readPixels(t,F,x,h,m))return u||a._free(F),null;if(u)return u.toTypedArray();switch(t.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,F,G)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,F,G)).slice();break;default:return null}a._free(F);return d}Ea=a.Malloc(Float32Array,4);ha=Ea.byteOffset;X=a.Malloc(Float32Array,16);la=X.byteOffset;aa=a.Malloc(Float32Array,9);P=aa.byteOffset;Xb=a.Malloc(Float32Array, +12);tb=Xb.byteOffset;Yb=a.Malloc(Float32Array,12);Zb=Yb.byteOffset;ea=a.Malloc(Float32Array,4);V=ea.byteOffset;Ub=a.Malloc(Float32Array,4);Aa=Ub.byteOffset;Vb=a.Malloc(Float32Array,3);ub=Vb.byteOffset;Wb=a.Malloc(Float32Array,3);vb=Wb.byteOffset;$a=a.Malloc(Int32Array,4);Ma=$a.byteOffset;a.ColorSpace.SRGB=a.ColorSpace._MakeSRGB();a.ColorSpace.DISPLAY_P3=a.ColorSpace._MakeDisplayP3();a.ColorSpace.ADOBE_RGB=a.ColorSpace._MakeAdobeRGB();a.GlyphRunFlags={IsWhiteSpace:a._GlyphRunFlags_isWhiteSpace};a.Path.MakeFromCmds= +function(d){var h=n(d,"HEAPF32"),m=a.Path._MakeFromCmds(h,d.length);k(h,d);return m};a.Path.MakeFromVerbsPointsWeights=function(d,h,m){var t=n(d,"HEAPU8"),u=n(h,"HEAPF32"),x=n(m,"HEAPF32"),C=a.Path._MakeFromVerbsPointsWeights(t,d.length,u,h.length,x,m&&m.length||0);k(t,d);k(u,h);k(x,m);return C};a.Path.prototype.addArc=function(d,h,m){d=I(d);this._addArc(d,h,m);return this};a.Path.prototype.addCircle=function(d,h,m,t){this._addCircle(d,h,m,!!t);return this};a.Path.prototype.addOval=function(d,h,m){void 0=== +m&&(m=1);d=I(d);this._addOval(d,!!h,m);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments),h=d[0],m=!1;"boolean"===typeof d[d.length-1]&&(m=d.pop());if(1===d.length)this._addPath(h,1,0,0,0,1,0,0,0,1,m);else if(2===d.length)d=d[1],this._addPath(h,d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1,m);else if(7===d.length||10===d.length)this._addPath(h,d[1],d[2],d[3],d[4],d[5],d[6],d[7]||0,d[8]||0,d[9]||1,m);else return null;return this};a.Path.prototype.addPoly= +function(d,h){var m=n(d,"HEAPF32");this._addPoly(m,d.length/2,h);k(m,d);return this};a.Path.prototype.addRect=function(d,h){d=I(d);this._addRect(d,!!h);return this};a.Path.prototype.addRRect=function(d,h){d=Q(d);this._addRRect(d,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(d,h,m){var t=n(d,"HEAPU8"),u=n(h,"HEAPF32"),x=n(m,"HEAPF32");this._addVerbsPointsWeights(t,d.length,u,h.length,x,m&&m.length||0);k(t,d);k(u,h);k(x,m)};a.Path.prototype.arc=function(d,h,m,t,u,x){d=a.LTRBRect(d- +m,h-m,d+m,h+m);u=(u-t)/Math.PI*180-360*!!x;x=new a.Path;x.addArc(d,t/Math.PI*180,u);this.addPath(x,!0);x.delete();return this};a.Path.prototype.arcToOval=function(d,h,m,t){d=I(d);this._arcToOval(d,h,m,t);return this};a.Path.prototype.arcToRotated=function(d,h,m,t,u,x,C){this._arcToRotated(d,h,m,!!t,!!u,x,C);return this};a.Path.prototype.arcToTangent=function(d,h,m,t,u){this._arcToTangent(d,h,m,t,u);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= +function(d,h,m,t,u){this._conicTo(d,h,m,t,u);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.cubicTo=function(d,h,m,t,u,x){this._cubicTo(d,h,m,t,u,x);return this};a.Path.prototype.dash=function(d,h,m){return this._dash(d,h,m)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.lineTo=function(d, +h){this._lineTo(d,h);return this};a.Path.prototype.moveTo=function(d,h){this._moveTo(d,h);return this};a.Path.prototype.offset=function(d,h){this._transform(1,0,d,0,1,h,0,0,1);return this};a.Path.prototype.quadTo=function(d,h,m,t){this._quadTo(d,h,m,t);return this};a.Path.prototype.rArcTo=function(d,h,m,t,u,x,C){this._rArcTo(d,h,m,t,u,x,C);return this};a.Path.prototype.rConicTo=function(d,h,m,t,u){this._rConicTo(d,h,m,t,u);return this};a.Path.prototype.rCubicTo=function(d,h,m,t,u,x){this._rCubicTo(d, +h,m,t,u,x);return this};a.Path.prototype.rLineTo=function(d,h){this._rLineTo(d,h);return this};a.Path.prototype.rMoveTo=function(d,h){this._rMoveTo(d,h);return this};a.Path.prototype.rQuadTo=function(d,h,m,t){this._rQuadTo(d,h,m,t);return this};a.Path.prototype.stroke=function(d){d=d||{};d.width=d.width||1;d.miter_limit=d.miter_limit||4;d.cap=d.cap||a.StrokeCap.Butt;d.join=d.join||a.StrokeJoin.Miter;d.precision=d.precision||1;return this._stroke(d)?this:null};a.Path.prototype.transform=function(){if(1=== +arguments.length){var d=arguments[0];this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1)}else if(6===arguments.length||9===arguments.length)d=arguments,this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(d,h,m){return this._trim(d,h,!!m)?this:null};a.Image.prototype.encodeToBytes=function(d,h){var m=a.Be();d=d||a.ImageFormat.PNG;h=h||100; +return m?this._encodeToBytes(d,h,m):this._encodeToBytes(d,h)};a.Image.prototype.makeShaderCubic=function(d,h,m,t,u){u=p(u);return this._makeShaderCubic(d,h,m,t,u)};a.Image.prototype.makeShaderOptions=function(d,h,m,t,u){u=p(u);return this._makeShaderOptions(d,h,m,t,u)};a.Image.prototype.readPixels=function(d,h,m,t,u){var x=a.Be();return g(this,d,h,m,t,u,x)};a.Canvas.prototype.clear=function(d){a.$d(this.Zd);d=w(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,h,m){a.$d(this.Zd);d=Q(d);this._clipRRect(d, +h,m)};a.Canvas.prototype.clipRect=function(d,h,m){a.$d(this.Zd);d=I(d);this._clipRect(d,h,m)};a.Canvas.prototype.concat=function(d){a.$d(this.Zd);d=v(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,h,m,t,u){a.$d(this.Zd);d=I(d);this._drawArc(d,h,m,t,u)};a.Canvas.prototype.drawAtlas=function(d,h,m,t,u,x,C){if(d&&t&&h&&m&&h.length===m.length){a.$d(this.Zd);u||(u=a.BlendMode.SrcOver);var G=n(h,"HEAPF32"),F=n(m,"HEAPF32"),S=m.length/4,T=n(c(x),"HEAPU32");if(C&&"B"in C&&"C"in C)this._drawAtlasCubic(d, +F,G,T,S,u,C.B,C.C,t);else{let q=a.FilterMode.Linear,y=a.MipmapMode.None;C&&(q=C.filter,"mipmap"in C&&(y=C.mipmap));this._drawAtlasOptions(d,F,G,T,S,u,q,y,t)}k(G,h);k(F,m);k(T,x)}};a.Canvas.prototype.drawCircle=function(d,h,m,t){a.$d(this.Zd);this._drawCircle(d,h,m,t)};a.Canvas.prototype.drawColor=function(d,h){a.$d(this.Zd);d=w(d);void 0!==h?this._drawColor(d,h):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,h){a.$d(this.Zd);this._drawColorInt(d,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= +function(d,h,m,t,u){a.$d(this.Zd);d=A(d,h,m,t);void 0!==u?this._drawColor(d,u):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,h,m){a.$d(this.Zd);d=Q(d,tb);h=Q(h,Zb);this._drawDRRect(d,h,m)};a.Canvas.prototype.drawImage=function(d,h,m,t){a.$d(this.Zd);this._drawImage(d,h,m,t||null)};a.Canvas.prototype.drawImageCubic=function(d,h,m,t,u,x){a.$d(this.Zd);this._drawImageCubic(d,h,m,t,u,x||null)};a.Canvas.prototype.drawImageOptions=function(d,h,m,t,u,x){a.$d(this.Zd);this._drawImageOptions(d, +h,m,t,u,x||null)};a.Canvas.prototype.drawImageNine=function(d,h,m,t,u){a.$d(this.Zd);h=n(h,"HEAP32",Ma);m=I(m);this._drawImageNine(d,h,m,t,u||null)};a.Canvas.prototype.drawImageRect=function(d,h,m,t,u){a.$d(this.Zd);I(h,V);I(m,Aa);this._drawImageRect(d,V,Aa,t,!!u)};a.Canvas.prototype.drawImageRectCubic=function(d,h,m,t,u,x){a.$d(this.Zd);I(h,V);I(m,Aa);this._drawImageRectCubic(d,V,Aa,t,u,x||null)};a.Canvas.prototype.drawImageRectOptions=function(d,h,m,t,u,x){a.$d(this.Zd);I(h,V);I(m,Aa);this._drawImageRectOptions(d, +V,Aa,t,u,x||null)};a.Canvas.prototype.drawLine=function(d,h,m,t,u){a.$d(this.Zd);this._drawLine(d,h,m,t,u)};a.Canvas.prototype.drawOval=function(d,h){a.$d(this.Zd);d=I(d);this._drawOval(d,h)};a.Canvas.prototype.drawPaint=function(d){a.$d(this.Zd);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,h,m){a.$d(this.Zd);this._drawParagraph(d,h,m)};a.Canvas.prototype.drawPatch=function(d,h,m,t,u){if(24>d.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(m&&8>m.length)throw"Need 4 shader coordinates"; +a.$d(this.Zd);const x=n(d,"HEAPF32"),C=h?n(c(h),"HEAPU32"):0,G=m?n(m,"HEAPF32"):0;t||(t=a.BlendMode.Modulate);this._drawPatch(x,C,G,t,u);k(G,m);k(C,h);k(x,d)};a.Canvas.prototype.drawPath=function(d,h){a.$d(this.Zd);this._drawPath(d,h)};a.Canvas.prototype.drawPicture=function(d){a.$d(this.Zd);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,h,m){a.$d(this.Zd);var t=n(h,"HEAPF32");this._drawPoints(d,t,h.length/2,m);k(t,h)};a.Canvas.prototype.drawRRect=function(d,h){a.$d(this.Zd);d=Q(d); +this._drawRRect(d,h)};a.Canvas.prototype.drawRect=function(d,h){a.$d(this.Zd);d=I(d);this._drawRect(d,h)};a.Canvas.prototype.drawRect4f=function(d,h,m,t,u){a.$d(this.Zd);this._drawRect4f(d,h,m,t,u)};a.Canvas.prototype.drawShadow=function(d,h,m,t,u,x,C){a.$d(this.Zd);var G=n(u,"HEAPF32"),F=n(x,"HEAPF32");h=n(h,"HEAPF32",ub);m=n(m,"HEAPF32",vb);this._drawShadow(d,h,m,t,G,F,C);k(G,u);k(F,x)};a.getShadowLocalBounds=function(d,h,m,t,u,x,C){d=p(d);m=n(m,"HEAPF32",ub);t=n(t,"HEAPF32",vb);if(!this._getShadowLocalBounds(d, +h,m,t,u,x,V))return null;h=ea.toTypedArray();return C?(C.set(h),C):h.slice()};a.Canvas.prototype.drawTextBlob=function(d,h,m,t){a.$d(this.Zd);this._drawTextBlob(d,h,m,t)};a.Canvas.prototype.drawVertices=function(d,h,m){a.$d(this.Zd);this._drawVertices(d,h,m)};a.Canvas.prototype.getDeviceClipBounds=function(d){this._getDeviceClipBounds(Ma);var h=$a.toTypedArray();d?d.set(h):d=h.slice();return d};a.Canvas.prototype.quickReject=function(d){d=I(d);return this._quickReject(d)};a.Canvas.prototype.getLocalToDevice= +function(){this._getLocalToDevice(la);for(var d=la,h=Array(16),m=0;16>m;m++)h[m]=a.HEAPF32[d/4+m];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(P);for(var d=Array(9),h=0;9>h;h++)d[h]=a.HEAPF32[P/4+h];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Zd=this.Zd;return d};a.Canvas.prototype.readPixels=function(d,h,m,t,u){a.$d(this.Zd);return g(this,d,h,m,t,u)};a.Canvas.prototype.saveLayer=function(d,h,m,t,u){h=I(h);return this._saveLayer(d|| +null,h,m||null,t||0,u||a.TileMode.Clamp)};a.Canvas.prototype.writePixels=function(d,h,m,t,u,x,C,G){if(d.byteLength%(h*m))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.$d(this.Zd);var F=d.byteLength/(h*m);x=x||a.AlphaType.Unpremul;C=C||a.ColorType.RGBA_8888;G=G||a.ColorSpace.SRGB;var S=F*h;F=n(d,"HEAPU8");h=this._writePixels({width:h,height:m,colorType:C,alphaType:x,colorSpace:G},F,S,t,u);k(F,d);return h};a.ColorFilter.MakeBlend=function(d,h,m){d=w(d);m=m||a.ColorSpace.SRGB; +return a.ColorFilter._MakeBlend(d,h,m)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix";var h=n(d,"HEAPF32"),m=a.ColorFilter._makeMatrix(h);k(h,d);return m};a.ContourMeasure.prototype.getPosTan=function(d,h){this._getPosTan(d,V);d=ea.toTypedArray();return h?(h.set(d),h):d.slice()};a.ImageFilter.prototype.getOutputBounds=function(d,h,m){d=I(d,V);h=p(h);this._getOutputBounds(d,h,Ma);h=$a.toTypedArray();return m?(m.set(h),m):h.slice()};a.ImageFilter.MakeDropShadow= +function(d,h,m,t,u,x){u=w(u,ha);return a.ImageFilter._MakeDropShadow(d,h,m,t,u,x)};a.ImageFilter.MakeDropShadowOnly=function(d,h,m,t,u,x){u=w(u,ha);return a.ImageFilter._MakeDropShadowOnly(d,h,m,t,u,x)};a.ImageFilter.MakeImage=function(d,h,m,t){m=I(m,V);t=I(t,Aa);if("B"in h&&"C"in h)return a.ImageFilter._MakeImageCubic(d,h.B,h.C,m,t);const u=h.filter;let x=a.MipmapMode.None;"mipmap"in h&&(x=h.mipmap);return a.ImageFilter._MakeImageOptions(d,u,x,m,t)};a.ImageFilter.MakeMatrixTransform=function(d,h, +m){d=p(d);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(d,h.B,h.C,m);const t=h.filter;let u=a.MipmapMode.None;"mipmap"in h&&(u=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,t,u,m)};a.Paint.prototype.getColor=function(){this._getColor(ha);return D(ha)};a.Paint.prototype.setColor=function(d,h){h=h||null;d=w(d);this._setColor(d,h)};a.Paint.prototype.setColorComponents=function(d,h,m,t,u){u=u||null;d=A(d,h,m,t);this._setColor(d,u)};a.Path.prototype.getPoint=function(d, +h){this._getPoint(d,V);d=ea.toTypedArray();return h?(h[0]=d[0],h[1]=d[1],h):d.slice(0,2)};a.Picture.prototype.makeShader=function(d,h,m,t,u){t=p(t);u=I(u);return this._makeShader(d,h,m,t,u)};a.Picture.prototype.cullRect=function(d){this._cullRect(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.PictureRecorder.prototype.beginRecording=function(d,h){d=I(d);return this._beginRecording(d,!!h)};a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Zd=this.Zd;return d};a.Surface.prototype.makeImageSnapshot= +function(d){a.$d(this.Zd);d=n(d,"HEAP32",Ma);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface=function(d){a.$d(this.Zd);d=this._makeSurface(d);d.Zd=this.Zd;return d};a.Surface.prototype.Ze=function(d,h){this.te||(this.te=this.getCanvas());return requestAnimationFrame(function(){a.$d(this.Zd);d(this.te);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame||(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Ze);a.Surface.prototype.We=function(d,h){this.te|| +(this.te=this.getCanvas());requestAnimationFrame(function(){a.$d(this.Zd);d(this.te);this.flush(h);this.dispose()}.bind(this))};a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.We);a.PathEffect.MakeDash=function(d,h){h||=0;if(!d.length||1===d.length%2)throw"Intervals array must have even length";var m=n(d,"HEAPF32");h=a.PathEffect._MakeDash(m,d.length,h);k(m,d);return h};a.PathEffect.MakeLine2D=function(d,h){h=p(h);return a.PathEffect._MakeLine2D(d,h)};a.PathEffect.MakePath2D= +function(d,h){d=p(d);return a.PathEffect._MakePath2D(d,h)};a.Shader.MakeColor=function(d,h){h=h||null;d=w(d);return a.Shader._MakeColor(d,h)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(d,h,m,t,u,x,C,G){G=G||null;var F=l(m),S=n(t,"HEAPF32");C=C||0;x=p(x);var T=ea.toTypedArray();T.set(d);T.set(h,2);d=a.Shader._MakeLinearGradient(V,F.he,F.colorType,S,F.count,u,C,x,G);k(F.he,m);t&&k(S,t);return d};a.Shader.MakeRadialGradient=function(d,h,m, +t,u,x,C,G){G=G||null;var F=l(m),S=n(t,"HEAPF32");C=C||0;x=p(x);d=a.Shader._MakeRadialGradient(d[0],d[1],h,F.he,F.colorType,S,F.count,u,C,x,G);k(F.he,m);t&&k(S,t);return d};a.Shader.MakeSweepGradient=function(d,h,m,t,u,x,C,G,F,S){S=S||null;var T=l(m),q=n(t,"HEAPF32");C=C||0;G=G||0;F=F||360;x=p(x);d=a.Shader._MakeSweepGradient(d,h,T.he,T.colorType,q,T.count,u,G,F,C,x,S);k(T.he,m);t&&k(q,t);return d};a.Shader.MakeTwoPointConicalGradient=function(d,h,m,t,u,x,C,G,F,S){S=S||null;var T=l(u),q=n(x,"HEAPF32"); +F=F||0;G=p(G);var y=ea.toTypedArray();y.set(d);y.set(m,2);d=a.Shader._MakeTwoPointConicalGradient(V,h,t,T.he,T.colorType,q,T.count,C,F,G,S);k(T.he,u);x&&k(q,x);return d};a.Vertices.prototype.bounds=function(d){this._bounds(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.ce&&a.ce.forEach(function(d){d()})};a.computeTonalColors=function(g){var d=n(g.ambient,"HEAPF32"),h=n(g.spot,"HEAPF32");this._computeTonalColors(d,h);var m={ambient:D(d),spot:D(h)};k(d,g.ambient);k(h,g.spot);return m}; +a.LTRBRect=function(g,d,h,m){return Float32Array.of(g,d,h,m)};a.XYWHRect=function(g,d,h,m){return Float32Array.of(g,d,g+h,d+m)};a.LTRBiRect=function(g,d,h,m){return Int32Array.of(g,d,h,m)};a.XYWHiRect=function(g,d,h,m){return Int32Array.of(g,d,g+h,d+m)};a.RRectXY=function(g,d,h){return Float32Array.of(g[0],g[1],g[2],g[3],d,h,d,h,d,h,d,h)};a.MakeAnimatedImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeAnimatedImage(d,g.byteLength))? +g:null};a.MakeImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeImage(d,g.byteLength))?g:null};var ab=null;a.MakeImageFromCanvasImageSource=function(g){var d=g.width,h=g.height;ab||=document.createElement("canvas");ab.width=d;ab.height=h;var m=ab.getContext("2d",{willReadFrequently:!0});m.drawImage(g,0,0);g=m.getImageData(0,0,d,h);return a.MakeImage({width:d,height:h,alphaType:a.AlphaType.Unpremul,colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB}, +g.data,4*d)};a.MakeImage=function(g,d,h){var m=a._malloc(d.length);a.HEAPU8.set(d,m);return a._MakeImage(g,m,d.length,h)};a.MakeVertices=function(g,d,h,m,t,u){var x=t&&t.length||0,C=0;h&&h.length&&(C|=1);m&&m.length&&(C|=2);void 0===u||u||(C|=4);g=new a._VerticesBuilder(g,d.length/2,x,C);n(d,"HEAPF32",g.positions());g.texCoords()&&n(h,"HEAPF32",g.texCoords());g.colors()&&n(c(m),"HEAPU32",g.colors());g.indices()&&n(t,"HEAPU16",g.indices());return g.detach()};(function(g){g.ce=g.ce||[];g.ce.push(function(){function d(q){q&& +(q.dir=0===q.dir?g.TextDirection.RTL:g.TextDirection.LTR);return q}function h(q){if(!q||!q.length)return[];for(var y=[],M=0;Md)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.Font.prototype.getGlyphIntercepts= +function(g,d,h,m){var t=n(g,"HEAPU16"),u=n(d,"HEAPF32");return this._getGlyphIntercepts(t,g.length,!(g&&g._ck),u,d.length,!(d&&d._ck),h,m)};a.Font.prototype.getGlyphWidths=function(g,d,h){var m=n(g,"HEAPU16"),t=a._malloc(4*g.length);this._getGlyphWidthBounds(m,g.length,t,0,d||null);d=new Float32Array(a.HEAPU8.buffer,t,g.length);k(m,g);if(h)return h.set(d),a._free(t),h;g=Float32Array.from(d);a._free(t);return g};a.FontMgr.FromData=function(){if(!arguments.length)return null;var g=arguments;1===g.length&& +Array.isArray(g[0])&&(g=arguments[0]);if(!g.length)return null;for(var d=[],h=[],m=0;md)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.TextBlob.MakeOnPath=function(g,d,h,m){if(g&&g.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(g,h);m||=0;var t=h.getGlyphIDs(g);t=h.getGlyphWidths(t);var u=[];d=new a.ContourMeasureIter(d,!1,1);for(var x= +d.next(),C=new Float32Array(4),G=0;Gx.length()){x.delete();x=d.next();if(!x){g=g.substring(0,G);break}m=F/2}x.getPosTan(m,C);var S=C[2],T=C[3];u.push(S,T,C[0]-F/2*S,C[1]-F/2*T);m+=F/2}g=this.MakeFromRSXform(g,u,h);x&&x.delete();d.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,d,h){var m=qa(g)+1,t=a._malloc(m);ra(g,t,m);g=n(d,"HEAPF32");h=a.TextBlob._MakeFromRSXform(t,m-1,g,h);a._free(t);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g, +d,h){var m=n(g,"HEAPU16");d=n(d,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(m,2*g.length,d,h);k(m,g);return h?h:null};a.TextBlob.MakeFromGlyphs=function(g,d){var h=n(g,"HEAPU16");d=a.TextBlob._MakeFromGlyphs(h,2*g.length,d);k(h,g);return d?d:null};a.TextBlob.MakeFromText=function(g,d){var h=qa(g)+1,m=a._malloc(h);ra(g,m,h);g=a.TextBlob._MakeFromText(m,h-1,d);a._free(m);return g?g:null};a.MallocGlyphIDs=function(g){return a.Malloc(Uint16Array,g)}});a.ce=a.ce||[];a.ce.push(function(){a.MakePicture= +function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._MakePicture(d,g.byteLength))?g:null}});a.ce=a.ce||[];a.ce.push(function(){a.RuntimeEffect.Make=function(g,d){return a.RuntimeEffect._Make(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.MakeForBlender=function(g,d){return a.RuntimeEffect._MakeForBlender(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.prototype.makeShader=function(g,d){var h= +!g._ck,m=n(g,"HEAPF32");d=p(d);return this._makeShader(m,4*g.length,h,d)};a.RuntimeEffect.prototype.makeShaderWithChildren=function(g,d,h){var m=!g._ck,t=n(g,"HEAPF32");h=p(h);for(var u=[],x=0;x{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),ua=a=>fetch(a,{credentials:"same-origin"}).then(b=>b.ok?b.arrayBuffer():Promise.reject(Error(b.status+" : "+b.url))); +var xa=console.log.bind(console),ya=console.error.bind(console);Object.assign(r,sa);sa=null;var za,Ba=!1,Ca,B,Da,Fa,E,H,J,Ga;function Ha(){var a=za.buffer;r.HEAP8=Ca=new Int8Array(a);r.HEAP16=Da=new Int16Array(a);r.HEAPU8=B=new Uint8Array(a);r.HEAPU16=Fa=new Uint16Array(a);r.HEAP32=E=new Int32Array(a);r.HEAPU32=H=new Uint32Array(a);r.HEAPF32=J=new Float32Array(a);r.HEAPF64=Ga=new Float64Array(a)}var Ia=[],Ja=[],Ka=[],La=0,Na=null,Oa=null; +function Pa(a){a="Aborted("+a+")";ya(a);Ba=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");ca(a);throw a;}var Qa=a=>a.startsWith("data:application/octet-stream;base64,"),Ra;function Sa(a){return ua(a).then(b=>new Uint8Array(b),()=>{if(va)var b=va(a);else throw"both async and sync fetching of the wasm failed";return b})}function Ta(a,b,c){return Sa(a).then(e=>WebAssembly.instantiate(e,b)).then(c,e=>{ya(`failed to asynchronously prepare wasm: ${e}`);Pa(e)})} +function Ua(a,b){var c=Ra;return"function"!=typeof WebAssembly.instantiateStreaming||Qa(c)||"function"!=typeof fetch?Ta(c,a,b):fetch(c,{credentials:"same-origin"}).then(e=>WebAssembly.instantiateStreaming(e,a).then(b,function(f){ya(`wasm streaming compile failed: ${f}`);ya("falling back to ArrayBuffer instantiation");return Ta(c,a,b)}))}function Va(a){this.name="ExitStatus";this.message=`Program terminated with exit(${a})`;this.status=a}var Wa=a=>{a.forEach(b=>b(r))},Xa=r.noExitRuntime||!0; +class Ya{constructor(a){this.ae=a-24}} +var Za=0,bb=0,cb="undefined"!=typeof TextDecoder?new TextDecoder:void 0,db=(a,b=0,c=NaN)=>{var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}, +eb={},fb=a=>{for(;a.length;){var b=a.pop();a.pop()(b)}};function gb(a){return this.fromWireType(H[a>>2])} +var hb={},ib={},jb={},kb,mb=(a,b,c)=>{function e(l){l=c(l);if(l.length!==a.length)throw new kb("Mismatched type converter count");for(var p=0;pjb[l]=b);var f=Array(b.length),k=[],n=0;b.forEach((l,p)=>{ib.hasOwnProperty(l)?f[p]=ib[l]:(k.push(l),hb.hasOwnProperty(l)||(hb[l]=[]),hb[l].push(()=>{f[p]=ib[l];++n;n===k.length&&e(f)}))});0===k.length&&e(f)},nb,K=a=>{for(var b="";B[a];)b+=nb[B[a++]];return b},L; +function ob(a,b,c={}){var e=b.name;if(!a)throw new L(`type "${e}" must have a positive integer typeid pointer`);if(ib.hasOwnProperty(a)){if(c.lf)return;throw new L(`Cannot register type '${e}' twice`);}ib[a]=b;delete jb[a];hb.hasOwnProperty(a)&&(b=hb[a],delete hb[a],b.forEach(f=>f()))}function lb(a,b,c={}){return ob(a,b,c)} +var pb=a=>{throw new L(a.Yd.de.be.name+" instance already deleted");},qb=!1,rb=()=>{},sb=(a,b,c)=>{if(b===c)return a;if(void 0===c.ge)return null;a=sb(a,b,c.ge);return null===a?null:c.cf(a)},yb={},zb={},Ab=(a,b)=>{if(void 0===b)throw new L("ptr should not be undefined");for(;a.ge;)b=a.ye(b),a=a.ge;return zb[b]},Cb=(a,b)=>{if(!b.de||!b.ae)throw new kb("makeClassHandle requires ptr and ptrType");if(!!b.ie!==!!b.ee)throw new kb("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Bb(Object.create(a, +{Yd:{value:b,writable:!0}}))},Bb=a=>{if("undefined"===typeof FinalizationRegistry)return Bb=b=>b,a;qb=new FinalizationRegistry(b=>{b=b.Yd;--b.count.value;0===b.count.value&&(b.ee?b.ie.ne(b.ee):b.de.be.ne(b.ae))});Bb=b=>{var c=b.Yd;c.ee&&qb.register(b,{Yd:c},b);return b};rb=b=>{qb.unregister(b)};return Bb(a)},Db=[];function Eb(){} +var Fb=(a,b)=>Object.defineProperty(b,"name",{value:a}),Gb=(a,b,c)=>{if(void 0===a[b].fe){var e=a[b];a[b]=function(...f){if(!a[b].fe.hasOwnProperty(f.length))throw new L(`Function '${c}' called with an invalid number of arguments (${f.length}) - expects one of (${a[b].fe})!`);return a[b].fe[f.length].apply(this,f)};a[b].fe=[];a[b].fe[e.oe]=e}},Hb=(a,b,c)=>{if(r.hasOwnProperty(a)){if(void 0===c||void 0!==r[a].fe&&void 0!==r[a].fe[c])throw new L(`Cannot register public name '${a}' twice`);Gb(r,a,a); +if(r[a].fe.hasOwnProperty(c))throw new L(`Cannot register multiple overloads of a function with the same number of arguments (${c})!`);r[a].fe[c]=b}else r[a]=b,r[a].oe=c},Ib=a=>{a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?`_${a}`:a};function Jb(a,b,c,e,f,k,n,l){this.name=a;this.constructor=b;this.se=c;this.ne=e;this.ge=f;this.ff=k;this.ye=n;this.cf=l;this.pf=[]} +var Kb=(a,b,c)=>{for(;b!==c;){if(!b.ye)throw new L(`Expected null or instance of ${c.name}, got an instance of ${b.name}`);a=b.ye(a);b=b.ge}return a};function Lb(a,b){if(null===b){if(this.Ke)throw new L(`null is not a valid ${this.name}`);return 0}if(!b.Yd)throw new L(`Cannot pass "${Mb(b)}" as a ${this.name}`);if(!b.Yd.ae)throw new L(`Cannot pass deleted object as a pointer of type ${this.name}`);return Kb(b.Yd.ae,b.Yd.de.be,this.be)} +function Nb(a,b){if(null===b){if(this.Ke)throw new L(`null is not a valid ${this.name}`);if(this.De){var c=this.Le();null!==a&&a.push(this.ne,c);return c}return 0}if(!b||!b.Yd)throw new L(`Cannot pass "${Mb(b)}" as a ${this.name}`);if(!b.Yd.ae)throw new L(`Cannot pass deleted object as a pointer of type ${this.name}`);if(!this.Ce&&b.Yd.de.Ce)throw new L(`Cannot convert argument of type ${b.Yd.ie?b.Yd.ie.name:b.Yd.de.name} to parameter type ${this.name}`);c=Kb(b.Yd.ae,b.Yd.de.be,this.be);if(this.De){if(void 0=== +b.Yd.ee)throw new L("Passing raw pointer to smart pointer is illegal");switch(this.uf){case 0:if(b.Yd.ie===this)c=b.Yd.ee;else throw new L(`Cannot convert argument of type ${b.Yd.ie?b.Yd.ie.name:b.Yd.de.name} to parameter type ${this.name}`);break;case 1:c=b.Yd.ee;break;case 2:if(b.Yd.ie===this)c=b.Yd.ee;else{var e=b.clone();c=this.qf(c,Ob(()=>e["delete"]()));null!==a&&a.push(this.ne,c)}break;default:throw new L("Unsupporting sharing policy");}}return c} +function Pb(a,b){if(null===b){if(this.Ke)throw new L(`null is not a valid ${this.name}`);return 0}if(!b.Yd)throw new L(`Cannot pass "${Mb(b)}" as a ${this.name}`);if(!b.Yd.ae)throw new L(`Cannot pass deleted object as a pointer of type ${this.name}`);if(b.Yd.de.Ce)throw new L(`Cannot convert argument of type ${b.Yd.de.name} to parameter type ${this.name}`);return Kb(b.Yd.ae,b.Yd.de.be,this.be)} +function Qb(a,b,c,e,f,k,n,l,p,v,w){this.name=a;this.be=b;this.Ke=c;this.Ce=e;this.De=f;this.nf=k;this.uf=n;this.Se=l;this.Le=p;this.qf=v;this.ne=w;f||void 0!==b.ge?this.toWireType=Nb:(this.toWireType=e?Lb:Pb,this.ke=null)} +var Rb=(a,b,c)=>{if(!r.hasOwnProperty(a))throw new kb("Replacing nonexistent public symbol");void 0!==r[a].fe&&void 0!==c?r[a].fe[c]=b:(r[a]=b,r[a].oe=c)},N,Sb=(a,b,c=[])=>{a.includes("j")?(a=a.replace(/p/g,"i"),b=(0,r["dynCall_"+a])(b,...c)):b=N.get(b)(...c);return b},Tb=(a,b)=>(...c)=>Sb(a,b,c),O=(a,b)=>{a=K(a);var c=a.includes("j")?Tb(a,b):N.get(b);if("function"!=typeof c)throw new L(`unknown function pointer with signature ${a}: ${b}`);return c},ac,dc=a=>{a=bc(a);var b=K(a);cc(a);return b},ec= +(a,b)=>{function c(k){f[k]||ib[k]||(jb[k]?jb[k].forEach(c):(e.push(k),f[k]=!0))}var e=[],f={};b.forEach(c);throw new ac(`${a}: `+e.map(dc).join([", "]));};function fc(a){for(var b=1;bk)throw new L("argTypes array size mismatch! Must at least get return value and 'this' types!");var n=null!==b[1]&&null!==c,l=fc(b),p="void"!==b[0].name,v=k-2,w=Array(v),A=[],D=[];return Fb(a,function(...I){D.length=0;A.length=n?2:1;A[0]=f;if(n){var Q=b[1].toWireType(D,this);A[1]=Q}for(var P=0;P{for(var c=[],e=0;e>2]);return c},ic=a=>{a=a.trim();const b=a.indexOf("(");return-1!==b?a.substr(0,b):a},jc=[],kc=[],lc=a=>{9{if(!a)throw new L("Cannot use deleted val. handle = "+a);return kc[a]},Ob=a=>{switch(a){case void 0:return 2;case null:return 4;case !0:return 6;case !1:return 8;default:const b=jc.pop()||kc.length;kc[b]=a;kc[b+1]=1;return b}},nc={name:"emscripten::val",fromWireType:a=>{var b=mc(a);lc(a); +return b},toWireType:(a,b)=>Ob(b),je:8,readValueFromPointer:gb,ke:null},oc=(a,b,c)=>{switch(b){case 1:return c?function(e){return this.fromWireType(Ca[e])}:function(e){return this.fromWireType(B[e])};case 2:return c?function(e){return this.fromWireType(Da[e>>1])}:function(e){return this.fromWireType(Fa[e>>1])};case 4:return c?function(e){return this.fromWireType(E[e>>2])}:function(e){return this.fromWireType(H[e>>2])};default:throw new TypeError(`invalid integer width (${b}): ${a}`);}},pc=(a,b)=> +{var c=ib[a];if(void 0===c)throw a=`${b} has unknown type ${dc(a)}`,new L(a);return c},Mb=a=>{if(null===a)return"null";var b=typeof a;return"object"===b||"array"===b||"function"===b?a.toString():""+a},qc=(a,b)=>{switch(b){case 4:return function(c){return this.fromWireType(J[c>>2])};case 8:return function(c){return this.fromWireType(Ga[c>>3])};default:throw new TypeError(`invalid float width (${b}): ${a}`);}},rc=(a,b,c)=>{switch(b){case 1:return c?e=>Ca[e]:e=>B[e];case 2:return c?e=>Da[e>>1]:e=>Fa[e>> +1];case 4:return c?e=>E[e>>2]:e=>H[e>>2];default:throw new TypeError(`invalid integer width (${b}): ${a}`);}},ra=(a,b,c)=>{var e=B;if(!(0=n){var l=a.charCodeAt(++k);n=65536+((n&1023)<<10)|l&1023}if(127>=n){if(b>=c)break;e[b++]=n}else{if(2047>=n){if(b+1>=c)break;e[b++]=192|n>>6}else{if(65535>=n){if(b+2>=c)break;e[b++]=224|n>>12}else{if(b+3>=c)break;e[b++]=240|n>>18;e[b++]=128|n>>12&63}e[b++]=128|n>>6& +63}e[b++]=128|n&63}}e[b]=0;return b-f},qa=a=>{for(var b=0,c=0;c=e?b++:2047>=e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}return b},sc="undefined"!=typeof TextDecoder?new TextDecoder("utf-16le"):void 0,tc=(a,b)=>{var c=a>>1;for(var e=c+b/2;!(c>=e)&&Fa[c];)++c;c<<=1;if(32=b/2);++e){var f=Da[a+2*e>>1];if(0==f)break;c+=String.fromCharCode(f)}return c},uc=(a,b,c)=>{c??=2147483647;if(2>c)return 0;c-=2;var e= +b;c=c<2*a.length?c/2:a.length;for(var f=0;f>1]=a.charCodeAt(f),b+=2;Da[b>>1]=0;return b-e},vc=a=>2*a.length,wc=(a,b)=>{for(var c=0,e="";!(c>=b/4);){var f=E[a+4*c>>2];if(0==f)break;++c;65536<=f?(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023)):e+=String.fromCharCode(f)}return e},xc=(a,b,c)=>{c??=2147483647;if(4>c)return 0;var e=b;c=e+c-4;for(var f=0;f=k){var n=a.charCodeAt(++f);k=65536+((k&1023)<<10)|n&1023}E[b>>2]=k;b+= +4;if(b+4>c)break}E[b>>2]=0;return b-e},yc=a=>{for(var b=0,c=0;c=e&&++c;b+=4}return b},zc=(a,b,c)=>{var e=[];a=a.toWireType(e,c);e.length&&(H[b>>2]=Ob(e));return a},Ac=[],Bc={},Cc=a=>{var b=Bc[a];return void 0===b?K(a):b},Dc=()=>{function a(b){b.$$$embind_global$$$=b;var c="object"==typeof $$$embind_global$$$&&b.$$$embind_global$$$==b;c||delete b.$$$embind_global$$$;return c}if("object"==typeof globalThis)return globalThis;if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$; +"object"==typeof global&&a(global)?$$$embind_global$$$=global:"object"==typeof self&&a(self)&&($$$embind_global$$$=self);if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object.");},Ec=a=>{var b=Ac.length;Ac.push(a);return b},Fc=(a,b)=>{for(var c=Array(a),e=0;e>2],"parameter "+e);return c},Gc=Reflect.construct,R,Hc=a=>{var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=(c,e)=>b.vertexAttribDivisorANGLE(c, +e),a.drawArraysInstanced=(c,e,f,k)=>b.drawArraysInstancedANGLE(c,e,f,k),a.drawElementsInstanced=(c,e,f,k,n)=>b.drawElementsInstancedANGLE(c,e,f,k,n))},Ic=a=>{var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=()=>b.createVertexArrayOES(),a.deleteVertexArray=c=>b.deleteVertexArrayOES(c),a.bindVertexArray=c=>b.bindVertexArrayOES(c),a.isVertexArray=c=>b.isVertexArrayOES(c))},Jc=a=>{var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=(c,e)=>b.drawBuffersWEBGL(c,e))},Kc=a=> +{var b="ANGLE_instanced_arrays EXT_blend_minmax EXT_disjoint_timer_query EXT_frag_depth EXT_shader_texture_lod EXT_sRGB OES_element_index_uint OES_fbo_render_mipmap OES_standard_derivatives OES_texture_float OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_depth_texture WEBGL_draw_buffers EXT_color_buffer_float EXT_conservative_depth EXT_disjoint_timer_query_webgl2 EXT_texture_norm16 NV_shader_noperspective_interpolation WEBGL_clip_cull_distance EXT_clip_control EXT_color_buffer_half_float EXT_depth_clamp EXT_float_blend EXT_polygon_offset_clamp EXT_texture_compression_bptc EXT_texture_compression_rgtc EXT_texture_filter_anisotropic KHR_parallel_shader_compile OES_texture_float_linear WEBGL_blend_func_extended WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_etc1 WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context WEBGL_multi_draw WEBGL_polygon_mode".split(" "); +return(a.getSupportedExtensions()||[]).filter(c=>b.includes(c))},Lc=1,Mc=[],Nc=[],Oc=[],Pc=[],ka=[],Qc=[],Rc=[],pa=[],Sc=[],Tc=[],Uc=[],Wc={},Xc={},Yc=4,Zc=0,ja=a=>{for(var b=Lc++,c=a.length;c{for(var f=0;f>2]=n}},na=(a,b)=>{a.Ne||(a.Ne=a.getContext,a.getContext=function(e,f){f=a.Ne(e,f);return"webgl"==e==f instanceof WebGLRenderingContext?f:null});var c=1{var c=ja(pa),e={handle:c,attributes:b,version:b.majorVersion,le:a};a.canvas&&(a.canvas.Ve=e);pa[c]=e;("undefined"==typeof b.df||b.df)&&bd(e);return c},oa=a=>{z=pa[a];r.vf=R=z?.le;return!(a&&!R)},bd=a=>{a||=z;if(!a.mf){a.mf=!0;var b=a.le;b.zf=b.getExtension("WEBGL_multi_draw");b.xf=b.getExtension("EXT_polygon_offset_clamp");b.wf=b.getExtension("EXT_clip_control");b.Bf=b.getExtension("WEBGL_polygon_mode");Hc(b);Ic(b);Jc(b);b.Pe=b.getExtension("WEBGL_draw_instanced_base_vertex_base_instance"); +b.Re=b.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance");2<=a.version&&(b.me=b.getExtension("EXT_disjoint_timer_query_webgl2"));if(2>a.version||!b.me)b.me=b.getExtension("EXT_disjoint_timer_query");Kc(b).forEach(c=>{c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}},z,U,cd=(a,b)=>{R.bindFramebuffer(a,Oc[b])},dd=a=>{R.bindVertexArray(Rc[a])},ed=a=>R.clear(a),fd=(a,b,c,e)=>R.clearColor(a,b,c,e),gd=a=>R.clearStencil(a),hd=(a,b)=>{for(var c=0;c>2];R.deleteVertexArray(Rc[e]);Rc[e]=null}},jd=[],kd=(a,b)=>{$c(a,b,"createVertexArray",Rc)};function ld(){var a=Kc(R);return a=a.concat(a.map(b=>"GL_"+b))} +var md=(a,b,c)=>{if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&(U||=1280);return;case 34814:case 36345:e=0;break;case 34466:var f=R.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>z.version){U||=1282;return}e=ld().length;break;case 33307:case 33308:if(2>z.version){U||=1280;return}e=33307==a?3:0}if(void 0===e)switch(f=R.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":U||=1280;return;case "object":if(null===f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e= +0;break;default:U||=1280;return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:J[b+4*a>>2]=f[a];break;case 4:Ca[b+a]=f[a]?1:0}return}try{e=f.name|0}catch(k){U||=1280;ya(`GL_INVALID_ENUM in glGet${c}v: Unknown object returned from WebGL getParameter(${a})! (error: ${k})`);return}}break;default:U||=1280;ya(`GL_INVALID_ENUM in glGet${c}v: Native code calling glGet${c}v(${a}) and it returns ${f} of type ${typeof f}!`); +return}switch(c){case 1:c=e;H[b>>2]=c;H[b+4>>2]=(c-H[b>>2])/4294967296;break;case 0:E[b>>2]=e;break;case 2:J[b>>2]=e;break;case 4:Ca[b]=e?1:0}}else U||=1281},nd=(a,b)=>md(a,b,0),od=(a,b,c)=>{if(c){a=Sc[a];b=2>z.version?R.me.getQueryObjectEXT(a,b):R.getQueryParameter(a,b);var e;"boolean"==typeof b?e=b?1:0:e=b;H[c>>2]=e;H[c+4>>2]=(e-H[c>>2])/4294967296}else U||=1281},qd=a=>{var b=qa(a)+1,c=pd(b);c&&ra(a,c,b);return c},rd=a=>{var b=Wc[a];if(!b){switch(a){case 7939:b=qd(ld().join(" "));break;case 7936:case 7937:case 37445:case 37446:(b= +R.getParameter(a))||(U||=1280);b=b?qd(b):0;break;case 7938:b=R.getParameter(7938);var c=`OpenGL ES 2.0 (${b})`;2<=z.version&&(c=`OpenGL ES 3.0 (${b})`);b=qd(c);break;case 35724:b=R.getParameter(35724);c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!==c&&(3==c[1].length&&(c[1]+="0"),b=`OpenGL ES GLSL ES ${c[1]} (${b})`);b=qd(b);break;default:U||=1280}Wc[a]=b}return b},sd=(a,b)=>{if(2>z.version)return U||=1282,0;var c=Xc[a];if(c)return 0>b||b>=c.length?(U||=1281,0):c[b];switch(a){case 7939:return c= +ld().map(qd),c=Xc[a]=c,0>b||b>=c.length?(U||=1281,0):c[b];default:return U||=1280,0}},td=a=>"]"==a.slice(-1)&&a.lastIndexOf("["),ud=a=>{a-=5120;return 0==a?Ca:1==a?B:2==a?Da:4==a?E:6==a?J:5==a||28922==a||28520==a||30779==a||30782==a?H:Fa},vd=(a,b,c,e,f)=>{a=ud(a);b=e*((Zc||c)*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*a.BYTES_PER_ELEMENT+Yc-1&-Yc);return a.subarray(f>>>31-Math.clz32(a.BYTES_PER_ELEMENT),f+b>>>31-Math.clz32(a.BYTES_PER_ELEMENT))},Y=a=>{var b=R.bf;if(b){var c= +b.xe[a];"number"==typeof c&&(b.xe[a]=c=R.getUniformLocation(b,b.Te[a]+(0{if(!zd){var a={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:("object"==typeof navigator&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",_:"./this.program"},b;for(b in yd)void 0===yd[b]?delete a[b]:a[b]=yd[b];var c=[];for(b in a)c.push(`${b}=${a[b]}`);zd=c}return zd},zd,Bd=[null,[],[]]; +kb=r.InternalError=class extends Error{constructor(a){super(a);this.name="InternalError"}};for(var Cd=Array(256),Dd=0;256>Dd;++Dd)Cd[Dd]=String.fromCharCode(Dd);nb=Cd;L=r.BindingError=class extends Error{constructor(a){super(a);this.name="BindingError"}}; +Object.assign(Eb.prototype,{isAliasOf:function(a){if(!(this instanceof Eb&&a instanceof Eb))return!1;var b=this.Yd.de.be,c=this.Yd.ae;a.Yd=a.Yd;var e=a.Yd.de.be;for(a=a.Yd.ae;b.ge;)c=b.ye(c),b=b.ge;for(;e.ge;)a=e.ye(a),e=e.ge;return b===e&&c===a},clone:function(){this.Yd.ae||pb(this);if(this.Yd.we)return this.Yd.count.value+=1,this;var a=Bb,b=Object,c=b.create,e=Object.getPrototypeOf(this),f=this.Yd;a=a(c.call(b,e,{Yd:{value:{count:f.count,ve:f.ve,we:f.we,ae:f.ae,de:f.de,ee:f.ee,ie:f.ie}}}));a.Yd.count.value+= +1;a.Yd.ve=!1;return a},["delete"](){this.Yd.ae||pb(this);if(this.Yd.ve&&!this.Yd.we)throw new L("Object already scheduled for deletion");rb(this);var a=this.Yd;--a.count.value;0===a.count.value&&(a.ee?a.ie.ne(a.ee):a.de.be.ne(a.ae));this.Yd.we||(this.Yd.ee=void 0,this.Yd.ae=void 0)},isDeleted:function(){return!this.Yd.ae},deleteLater:function(){this.Yd.ae||pb(this);if(this.Yd.ve&&!this.Yd.we)throw new L("Object already scheduled for deletion");Db.push(this);this.Yd.ve=!0;return this}}); +Object.assign(Qb.prototype,{gf(a){this.Se&&(a=this.Se(a));return a},Oe(a){this.ne?.(a)},je:8,readValueFromPointer:gb,fromWireType:function(a){function b(){return this.De?Cb(this.be.se,{de:this.nf,ae:c,ie:this,ee:a}):Cb(this.be.se,{de:this,ae:a})}var c=this.gf(a);if(!c)return this.Oe(a),null;var e=Ab(this.be,c);if(void 0!==e){if(0===e.Yd.count.value)return e.Yd.ae=c,e.Yd.ee=a,e.clone();e=e.clone();this.Oe(a);return e}e=this.be.ff(c);e=yb[e];if(!e)return b.call(this);e=this.Ce?e.af:e.pointerType;var f= +sb(c,this.be,e.be);return null===f?b.call(this):this.De?Cb(e.be.se,{de:e,ae:f,ie:this,ee:a}):Cb(e.be.se,{de:e,ae:f})}});ac=r.UnboundTypeError=((a,b)=>{var c=Fb(b,function(e){this.name=b;this.message=e;e=Error(e).stack;void 0!==e&&(this.stack=this.toString()+"\n"+e.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(a.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:`${this.name}: ${this.message}`};return c})(Error,"UnboundTypeError"); +kc.push(0,1,void 0,1,null,1,!0,1,!1,1);r.count_emval_handles=()=>kc.length/2-5-jc.length;for(var Ed=0;32>Ed;++Ed)jd.push(Array(Ed));var Fd=new Float32Array(288);for(Ed=0;288>=Ed;++Ed)wd[Ed]=Fd.subarray(0,Ed);var Gd=new Int32Array(288);for(Ed=0;288>=Ed;++Ed)xd[Ed]=Gd.subarray(0,Ed); +var Vd={F:(a,b,c)=>{var e=new Ya(a);H[e.ae+16>>2]=0;H[e.ae+4>>2]=b;H[e.ae+8>>2]=c;Za=a;bb++;throw Za;},V:function(){return 0},vd:()=>{},ud:function(){return 0},td:()=>{},sd:()=>{},U:function(){},rd:()=>{},nd:()=>{Pa("")},B:a=>{var b=eb[a];delete eb[a];var c=b.Le,e=b.ne,f=b.Qe,k=f.map(n=>n.kf).concat(f.map(n=>n.sf));mb([a],k,n=>{var l={};f.forEach((p,v)=>{var w=n[v],A=p.hf,D=p.jf,I=n[v+f.length],Q=p.rf,P=p.tf;l[p.ef]={read:aa=>w.fromWireType(A(D,aa)),write:(aa,la)=>{var X=[];Q(P,aa,I.toWireType(X, +la));fb(X)}}});return[{name:b.name,fromWireType:p=>{var v={},w;for(w in l)v[w]=l[w].read(p);e(p);return v},toWireType:(p,v)=>{for(var w in l)if(!(w in v))throw new TypeError(`Missing field: "${w}"`);var A=c();for(w in l)l[w].write(A,v[w]);null!==p&&p.push(e,A);return A},je:8,readValueFromPointer:gb,ke:e}]})},Y:()=>{},md:(a,b,c,e)=>{b=K(b);lb(a,{name:b,fromWireType:function(f){return!!f},toWireType:function(f,k){return k?c:e},je:8,readValueFromPointer:function(f){return this.fromWireType(B[f])},ke:null})}, +k:(a,b,c,e,f,k,n,l,p,v,w,A,D)=>{w=K(w);k=O(f,k);l&&=O(n,l);v&&=O(p,v);D=O(A,D);var I=Ib(w);Hb(I,function(){ec(`Cannot construct ${w} due to unbound types`,[e])});mb([a,b,c],e?[e]:[],Q=>{Q=Q[0];if(e){var P=Q.be;var aa=P.se}else aa=Eb.prototype;Q=Fb(w,function(...Ea){if(Object.getPrototypeOf(this)!==la)throw new L("Use 'new' to construct "+w);if(void 0===X.pe)throw new L(w+" has no accessible constructor");var ea=X.pe[Ea.length];if(void 0===ea)throw new L(`Tried to invoke ctor of ${w} with invalid number of parameters (${Ea.length}) - expected (${Object.keys(X.pe).toString()}) parameters instead!`); +return ea.apply(this,Ea)});var la=Object.create(aa,{constructor:{value:Q}});Q.prototype=la;var X=new Jb(w,Q,la,D,P,k,l,v);if(X.ge){var ha;(ha=X.ge).ze??(ha.ze=[]);X.ge.ze.push(X)}P=new Qb(w,X,!0,!1,!1);ha=new Qb(w+"*",X,!1,!1,!1);aa=new Qb(w+" const*",X,!1,!0,!1);yb[a]={pointerType:ha,af:aa};Rb(I,Q);return[P,ha,aa]})},e:(a,b,c,e,f,k,n)=>{var l=hc(c,e);b=K(b);b=ic(b);k=O(f,k);mb([],[a],p=>{function v(){ec(`Cannot call ${w} due to unbound types`,l)}p=p[0];var w=`${p.name}.${b}`;b.startsWith("@@")&& +(b=Symbol[b.substring(2)]);var A=p.be.constructor;void 0===A[b]?(v.oe=c-1,A[b]=v):(Gb(A,b,w),A[b].fe[c-1]=v);mb([],l,D=>{D=[D[0],null].concat(D.slice(1));D=gc(w,D,null,k,n);void 0===A[b].fe?(D.oe=c-1,A[b]=D):A[b].fe[c-1]=D;if(p.be.ze)for(const I of p.be.ze)I.constructor.hasOwnProperty(b)||(I.constructor[b]=D);return[]});return[]})},z:(a,b,c,e,f,k)=>{var n=hc(b,c);f=O(e,f);mb([],[a],l=>{l=l[0];var p=`constructor ${l.name}`;void 0===l.be.pe&&(l.be.pe=[]);if(void 0!==l.be.pe[b-1])throw new L(`Cannot register multiple constructors with identical number of parameters (${b- +1}) for class '${l.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);l.be.pe[b-1]=()=>{ec(`Cannot construct ${l.name} due to unbound types`,n)};mb([],n,v=>{v.splice(1,0,null);l.be.pe[b-1]=gc(p,v,null,f,k);return[]});return[]})},a:(a,b,c,e,f,k,n,l)=>{var p=hc(c,e);b=K(b);b=ic(b);k=O(f,k);mb([],[a],v=>{function w(){ec(`Cannot call ${A} due to unbound types`,p)}v=v[0];var A=`${v.name}.${b}`;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);l&&v.be.pf.push(b); +var D=v.be.se,I=D[b];void 0===I||void 0===I.fe&&I.className!==v.name&&I.oe===c-2?(w.oe=c-2,w.className=v.name,D[b]=w):(Gb(D,b,A),D[b].fe[c-2]=w);mb([],p,Q=>{Q=gc(A,Q,v,k,n);void 0===D[b].fe?(Q.oe=c-2,D[b]=Q):D[b].fe[c-2]=Q;return[]});return[]})},q:(a,b,c)=>{a=K(a);mb([],[b],e=>{e=e[0];r[a]=e.fromWireType(c);return[]})},ld:a=>lb(a,nc),j:(a,b,c,e)=>{function f(){}b=K(b);f.values={};lb(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:(k,n)=>n.value,je:8, +readValueFromPointer:oc(b,c,e),ke:null});Hb(b,f)},b:(a,b,c)=>{var e=pc(a,"enum");b=K(b);a=e.constructor;e=Object.create(e.constructor.prototype,{value:{value:c},constructor:{value:Fb(`${e.name}_${b}`,function(){})}});a.values[c]=e;a[b]=e},S:(a,b,c)=>{b=K(b);lb(a,{name:b,fromWireType:e=>e,toWireType:(e,f)=>f,je:8,readValueFromPointer:qc(b,c),ke:null})},x:(a,b,c,e,f,k)=>{var n=hc(b,c);a=K(a);a=ic(a);f=O(e,f);Hb(a,function(){ec(`Cannot call ${a} due to unbound types`,n)},b-1);mb([],n,l=>{l=[l[0],null].concat(l.slice(1)); +Rb(a,gc(a,l,null,f,k),b-1);return[]})},C:(a,b,c,e,f)=>{b=K(b);-1===f&&(f=4294967295);f=l=>l;if(0===e){var k=32-8*c;f=l=>l<>>k}var n=b.includes("unsigned")?function(l,p){return p>>>0}:function(l,p){return p};lb(a,{name:b,fromWireType:f,toWireType:n,je:8,readValueFromPointer:rc(b,c,0!==e),ke:null})},p:(a,b,c)=>{function e(k){return new f(Ca.buffer,H[k+4>>2],H[k>>2])}var f=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b];c=K(c);lb(a,{name:c,fromWireType:e, +je:8,readValueFromPointer:e},{lf:!0})},o:(a,b,c,e,f,k,n,l,p,v,w,A)=>{c=K(c);k=O(f,k);l=O(n,l);v=O(p,v);A=O(w,A);mb([a],[b],D=>{D=D[0];return[new Qb(c,D.be,!1,!1,!0,D,e,k,l,v,A)]})},R:(a,b)=>{b=K(b);var c="std::string"===b;lb(a,{name:b,fromWireType:function(e){var f=H[e>>2],k=e+4;if(c)for(var n=k,l=0;l<=f;++l){var p=k+l;if(l==f||0==B[p]){n=n?db(B,n,p-n):"";if(void 0===v)var v=n;else v+=String.fromCharCode(0),v+=n;n=p+1}}else{v=Array(f);for(l=0;l>2]=n;if(c&&k)ra(f,p,n+1);else if(k)for(k=0;k{c=K(c);if(2===b){var e=tc;var f=uc;var k=vc;var n=l=>Fa[l>>1]}else 4===b&&(e=wc,f=xc,k=yc,n=l=>H[l>>2]);lb(a,{name:c,fromWireType:l=>{for(var p=H[l>>2],v,w=l+4,A=0;A<=p;++A){var D=l+4+A*b;if(A==p||0==n(D))w=e(w,D-w),void 0===v?v=w:(v+=String.fromCharCode(0),v+=w),w=D+b}cc(l);return v},toWireType:(l,p)=>{if("string"!=typeof p)throw new L(`Cannot pass non-string to C++ string type ${c}`);var v=k(p),w=pd(4+v+b); +H[w>>2]=v/b;f(p,w+4,v+b);null!==l&&l.push(cc,w);return w},je:8,readValueFromPointer:gb,ke(l){cc(l)}})},A:(a,b,c,e,f,k)=>{eb[a]={name:K(b),Le:O(c,e),ne:O(f,k),Qe:[]}},d:(a,b,c,e,f,k,n,l,p,v)=>{eb[a].Qe.push({ef:K(b),kf:c,hf:O(e,f),jf:k,sf:n,rf:O(l,p),tf:v})},kd:(a,b)=>{b=K(b);lb(a,{yf:!0,name:b,je:0,fromWireType:()=>{},toWireType:()=>{}})},jd:()=>1,id:()=>{throw Infinity;},E:(a,b,c)=>{a=mc(a);b=pc(b,"emval::as");return zc(b,c,a)},L:(a,b,c,e)=>{a=Ac[a];b=mc(b);return a(null,b,c,e)},t:(a,b,c,e,f)=>{a= +Ac[a];b=mc(b);c=Cc(c);return a(b,b[c],e,f)},c:lc,K:a=>{if(0===a)return Ob(Dc());a=Cc(a);return Ob(Dc()[a])},n:(a,b,c)=>{var e=Fc(a,b),f=e.shift();a--;var k=Array(a);b=`methodCaller<(${e.map(n=>n.name).join(", ")}) => ${f.name}>`;return Ec(Fb(b,(n,l,p,v)=>{for(var w=0,A=0;A{a=mc(a);b=mc(b);return Ob(a[b])},H:a=>{9Ob([]),f:a=>Ob(Cc(a)),D:()=>Ob({}),hd:a=>{a=mc(a); +return!a},l:a=>{var b=mc(a);fb(b);lc(a)},h:(a,b,c)=>{a=mc(a);b=mc(b);c=mc(c);a[b]=c},g:(a,b)=>{a=pc(a,"_emval_take_value");a=a.readValueFromPointer(b);return Ob(a)},X:function(){return-52},W:function(){},gd:(a,b,c,e)=>{var f=(new Date).getFullYear(),k=(new Date(f,0,1)).getTimezoneOffset();f=(new Date(f,6,1)).getTimezoneOffset();H[a>>2]=60*Math.max(k,f);E[b>>2]=Number(k!=f);b=n=>{var l=Math.abs(n);return`UTC${0<=n?"-":"+"}${String(Math.floor(l/60)).padStart(2,"0")}${String(l%60).padStart(2,"0")}`}; +a=b(k);b=b(f);fperformance.now(),ed:a=>R.activeTexture(a),dd:(a,b)=>{R.attachShader(Nc[a],Qc[b])},cd:(a,b)=>{R.beginQuery(a,Sc[b])},bd:(a,b)=>{R.me.beginQueryEXT(a,Sc[b])},ad:(a,b,c)=>{R.bindAttribLocation(Nc[a],b,c?db(B,c):"")},$c:(a,b)=>{35051==a?R.Ie=b:35052==a&&(R.re=b);R.bindBuffer(a,Mc[b])},_c:cd,Zc:(a,b)=>{R.bindRenderbuffer(a,Pc[b])},Yc:(a,b)=>{R.bindSampler(a,Tc[b])},Xc:(a,b)=>{R.bindTexture(a,ka[b])},Wc:dd,Vc:dd,Uc:(a,b,c,e)=>R.blendColor(a, +b,c,e),Tc:a=>R.blendEquation(a),Sc:(a,b)=>R.blendFunc(a,b),Rc:(a,b,c,e,f,k,n,l,p,v)=>R.blitFramebuffer(a,b,c,e,f,k,n,l,p,v),Qc:(a,b,c,e)=>{2<=z.version?c&&b?R.bufferData(a,B,e,c,b):R.bufferData(a,b,e):R.bufferData(a,c?B.subarray(c,c+b):b,e)},Pc:(a,b,c,e)=>{2<=z.version?c&&R.bufferSubData(a,b,B,e,c):R.bufferSubData(a,b,B.subarray(e,e+c))},Oc:a=>R.checkFramebufferStatus(a),Nc:ed,Mc:fd,Lc:gd,Kc:(a,b,c,e)=>R.clientWaitSync(Uc[a],b,(c>>>0)+4294967296*e),Jc:(a,b,c,e)=>{R.colorMask(!!a,!!b,!!c,!!e)},Ic:a=> +{R.compileShader(Qc[a])},Hc:(a,b,c,e,f,k,n,l)=>{2<=z.version?R.re||!n?R.compressedTexImage2D(a,b,c,e,f,k,n,l):R.compressedTexImage2D(a,b,c,e,f,k,B,l,n):R.compressedTexImage2D(a,b,c,e,f,k,B.subarray(l,l+n))},Gc:(a,b,c,e,f,k,n,l,p)=>{2<=z.version?R.re||!l?R.compressedTexSubImage2D(a,b,c,e,f,k,n,l,p):R.compressedTexSubImage2D(a,b,c,e,f,k,n,B,p,l):R.compressedTexSubImage2D(a,b,c,e,f,k,n,B.subarray(p,p+l))},Fc:(a,b,c,e,f)=>R.copyBufferSubData(a,b,c,e,f),Ec:(a,b,c,e,f,k,n,l)=>R.copyTexSubImage2D(a,b,c, +e,f,k,n,l),Dc:()=>{var a=ja(Nc),b=R.createProgram();b.name=a;b.Ge=b.Ee=b.Fe=0;b.Me=1;Nc[a]=b;return a},Cc:a=>{var b=ja(Qc);Qc[b]=R.createShader(a);return b},Bc:a=>R.cullFace(a),Ac:(a,b)=>{for(var c=0;c>2],f=Mc[e];f&&(R.deleteBuffer(f),f.name=0,Mc[e]=null,e==R.Ie&&(R.Ie=0),e==R.re&&(R.re=0))}},zc:(a,b)=>{for(var c=0;c>2],f=Oc[e];f&&(R.deleteFramebuffer(f),f.name=0,Oc[e]=null)}},yc:a=>{if(a){var b=Nc[a];b?(R.deleteProgram(b),b.name=0,Nc[a]=null):U||=1281}}, +xc:(a,b)=>{for(var c=0;c>2],f=Sc[e];f&&(R.deleteQuery(f),Sc[e]=null)}},wc:(a,b)=>{for(var c=0;c>2],f=Sc[e];f&&(R.me.deleteQueryEXT(f),Sc[e]=null)}},vc:(a,b)=>{for(var c=0;c>2],f=Pc[e];f&&(R.deleteRenderbuffer(f),f.name=0,Pc[e]=null)}},uc:(a,b)=>{for(var c=0;c>2],f=Tc[e];f&&(R.deleteSampler(f),f.name=0,Tc[e]=null)}},tc:a=>{if(a){var b=Qc[a];b?(R.deleteShader(b),Qc[a]=null):U||=1281}},sc:a=>{if(a){var b=Uc[a];b? +(R.deleteSync(b),b.name=0,Uc[a]=null):U||=1281}},rc:(a,b)=>{for(var c=0;c>2],f=ka[e];f&&(R.deleteTexture(f),f.name=0,ka[e]=null)}},qc:hd,pc:hd,oc:a=>{R.depthMask(!!a)},nc:a=>R.disable(a),mc:a=>{R.disableVertexAttribArray(a)},lc:(a,b,c)=>{R.drawArrays(a,b,c)},kc:(a,b,c,e)=>{R.drawArraysInstanced(a,b,c,e)},jc:(a,b,c,e,f)=>{R.Pe.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},ic:(a,b)=>{for(var c=jd[a],e=0;e>2];R.drawBuffers(c)},hc:(a,b,c,e)=>{R.drawElements(a, +b,c,e)},gc:(a,b,c,e,f)=>{R.drawElementsInstanced(a,b,c,e,f)},fc:(a,b,c,e,f,k,n)=>{R.Pe.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,k,n)},ec:(a,b,c,e,f,k)=>{R.drawElements(a,e,f,k)},dc:a=>R.enable(a),cc:a=>{R.enableVertexAttribArray(a)},bc:a=>R.endQuery(a),ac:a=>{R.me.endQueryEXT(a)},$b:(a,b)=>(a=R.fenceSync(a,b))?(b=ja(Uc),a.name=b,Uc[b]=a,b):0,_b:()=>R.finish(),Zb:()=>R.flush(),Yb:(a,b,c,e)=>{R.framebufferRenderbuffer(a,b,c,Pc[e])},Xb:(a,b,c,e,f)=>{R.framebufferTexture2D(a,b,c,ka[e], +f)},Wb:a=>R.frontFace(a),Vb:(a,b)=>{$c(a,b,"createBuffer",Mc)},Ub:(a,b)=>{$c(a,b,"createFramebuffer",Oc)},Tb:(a,b)=>{$c(a,b,"createQuery",Sc)},Sb:(a,b)=>{for(var c=0;c>2]=0;break}var f=ja(Sc);e.name=f;Sc[f]=e;E[b+4*c>>2]=f}},Rb:(a,b)=>{$c(a,b,"createRenderbuffer",Pc)},Qb:(a,b)=>{$c(a,b,"createSampler",Tc)},Pb:(a,b)=>{$c(a,b,"createTexture",ka)},Ob:kd,Nb:kd,Mb:a=>R.generateMipmap(a),Lb:(a,b,c)=>{c?E[c>>2]=R.getBufferParameter(a, +b):U||=1281},Kb:()=>{var a=R.getError()||U;U=0;return a},Jb:(a,b)=>md(a,b,2),Ib:(a,b,c,e)=>{a=R.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;E[e>>2]=a},Hb:nd,Gb:(a,b,c,e)=>{a=R.getProgramInfoLog(Nc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Fb:(a,b,c)=>{if(c)if(a>=Lc)U||=1281;else if(a=Nc[a],35716==b)a=R.getProgramInfoLog(a),null===a&&(a="(unknown error)"),E[c>>2]=a.length+1;else if(35719==b){if(!a.Ge){var e= +R.getProgramParameter(a,35718);for(b=0;b>2]=a.Ge}else if(35722==b){if(!a.Ee)for(e=R.getProgramParameter(a,35721),b=0;b>2]=a.Ee}else if(35381==b){if(!a.Fe)for(e=R.getProgramParameter(a,35382),b=0;b>2]=a.Fe}else E[c>>2]=R.getProgramParameter(a,b);else U||=1281},Eb:od,Db:od,Cb:(a,b,c)=>{if(c){a= +R.getQueryParameter(Sc[a],b);var e;"boolean"==typeof a?e=a?1:0:e=a;E[c>>2]=e}else U||=1281},Bb:(a,b,c)=>{if(c){a=R.me.getQueryObjectEXT(Sc[a],b);var e;"boolean"==typeof a?e=a?1:0:e=a;E[c>>2]=e}else U||=1281},Ab:(a,b,c)=>{c?E[c>>2]=R.getQuery(a,b):U||=1281},zb:(a,b,c)=>{c?E[c>>2]=R.me.getQueryEXT(a,b):U||=1281},yb:(a,b,c)=>{c?E[c>>2]=R.getRenderbufferParameter(a,b):U||=1281},xb:(a,b,c,e)=>{a=R.getShaderInfoLog(Qc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},wb:(a,b,c,e)=> +{a=R.getShaderPrecisionFormat(a,b);E[c>>2]=a.rangeMin;E[c+4>>2]=a.rangeMax;E[e>>2]=a.precision},vb:(a,b,c)=>{c?35716==b?(a=R.getShaderInfoLog(Qc[a]),null===a&&(a="(unknown error)"),E[c>>2]=a?a.length+1:0):35720==b?(a=R.getShaderSource(Qc[a]),E[c>>2]=a?a.length+1:0):E[c>>2]=R.getShaderParameter(Qc[a],b):U||=1281},ub:rd,tb:sd,sb:(a,b)=>{b=b?db(B,b):"";if(a=Nc[a]){var c=a,e=c.xe,f=c.Ue,k;if(!e){c.xe=e={};c.Te={};var n=R.getProgramParameter(c,35718);for(k=0;k>>0,f=b.slice(0,k));if((f=a.Ue[f])&&e{for(var e=jd[b],f=0;f>2];R.invalidateFramebuffer(a,e)},qb:(a,b,c,e,f,k,n)=>{for(var l=jd[b],p=0;p>2];R.invalidateSubFramebuffer(a,l,e,f,k,n)},pb:a=>R.isSync(Uc[a]), +ob:a=>(a=ka[a])?R.isTexture(a):0,nb:a=>R.lineWidth(a),mb:a=>{a=Nc[a];R.linkProgram(a);a.xe=0;a.Ue={}},lb:(a,b,c,e,f,k)=>{R.Re.multiDrawArraysInstancedBaseInstanceWEBGL(a,E,b>>2,E,c>>2,E,e>>2,H,f>>2,k)},kb:(a,b,c,e,f,k,n,l)=>{R.Re.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,E,b>>2,c,E,e>>2,E,f>>2,E,k>>2,H,n>>2,l)},jb:(a,b)=>{3317==a?Yc=b:3314==a&&(Zc=b);R.pixelStorei(a,b)},ib:(a,b)=>{R.me.queryCounterEXT(Sc[a],b)},hb:a=>R.readBuffer(a),gb:(a,b,c,e,f,k,n)=>{if(2<=z.version)if(R.Ie)R.readPixels(a, +b,c,e,f,k,n);else{var l=ud(k);n>>>=31-Math.clz32(l.BYTES_PER_ELEMENT);R.readPixels(a,b,c,e,f,k,l,n)}else(l=vd(k,f,c,e,n))?R.readPixels(a,b,c,e,f,k,l):U||=1280},fb:(a,b,c,e)=>R.renderbufferStorage(a,b,c,e),eb:(a,b,c,e,f)=>R.renderbufferStorageMultisample(a,b,c,e,f),db:(a,b,c)=>{R.samplerParameterf(Tc[a],b,c)},cb:(a,b,c)=>{R.samplerParameteri(Tc[a],b,c)},bb:(a,b,c)=>{R.samplerParameteri(Tc[a],b,E[c>>2])},ab:(a,b,c,e)=>R.scissor(a,b,c,e),$a:(a,b,c,e)=>{for(var f="",k=0;k>2])? +db(B,n,e?H[e+4*k>>2]:void 0):"";f+=n}R.shaderSource(Qc[a],f)},_a:(a,b,c)=>R.stencilFunc(a,b,c),Za:(a,b,c,e)=>R.stencilFuncSeparate(a,b,c,e),Ya:a=>R.stencilMask(a),Xa:(a,b)=>R.stencilMaskSeparate(a,b),Wa:(a,b,c)=>R.stencilOp(a,b,c),Va:(a,b,c,e)=>R.stencilOpSeparate(a,b,c,e),Ua:(a,b,c,e,f,k,n,l,p)=>{if(2<=z.version){if(R.re){R.texImage2D(a,b,c,e,f,k,n,l,p);return}if(p){var v=ud(l);p>>>=31-Math.clz32(v.BYTES_PER_ELEMENT);R.texImage2D(a,b,c,e,f,k,n,l,v,p);return}}v=p?vd(l,n,e,f,p):null;R.texImage2D(a, +b,c,e,f,k,n,l,v)},Ta:(a,b,c)=>R.texParameterf(a,b,c),Sa:(a,b,c)=>{R.texParameterf(a,b,J[c>>2])},Ra:(a,b,c)=>R.texParameteri(a,b,c),Qa:(a,b,c)=>{R.texParameteri(a,b,E[c>>2])},Pa:(a,b,c,e,f)=>R.texStorage2D(a,b,c,e,f),Oa:(a,b,c,e,f,k,n,l,p)=>{if(2<=z.version){if(R.re){R.texSubImage2D(a,b,c,e,f,k,n,l,p);return}if(p){var v=ud(l);R.texSubImage2D(a,b,c,e,f,k,n,l,v,p>>>31-Math.clz32(v.BYTES_PER_ELEMENT));return}}p=p?vd(l,n,f,k,p):null;R.texSubImage2D(a,b,c,e,f,k,n,l,p)},Na:(a,b)=>{R.uniform1f(Y(a),b)},Ma:(a, +b,c)=>{if(2<=z.version)b&&R.uniform1fv(Y(a),J,c>>2,b);else{if(288>=b)for(var e=wd[b],f=0;f>2];else e=J.subarray(c>>2,c+4*b>>2);R.uniform1fv(Y(a),e)}},La:(a,b)=>{R.uniform1i(Y(a),b)},Ka:(a,b,c)=>{if(2<=z.version)b&&R.uniform1iv(Y(a),E,c>>2,b);else{if(288>=b)for(var e=xd[b],f=0;f>2];else e=E.subarray(c>>2,c+4*b>>2);R.uniform1iv(Y(a),e)}},Ja:(a,b,c)=>{R.uniform2f(Y(a),b,c)},Ia:(a,b,c)=>{if(2<=z.version)b&&R.uniform2fv(Y(a),J,c>>2,2*b);else{if(144>=b){b*=2;for(var e= +wd[b],f=0;f>2],e[f+1]=J[c+(4*f+4)>>2]}else e=J.subarray(c>>2,c+8*b>>2);R.uniform2fv(Y(a),e)}},Ha:(a,b,c)=>{R.uniform2i(Y(a),b,c)},Ga:(a,b,c)=>{if(2<=z.version)b&&R.uniform2iv(Y(a),E,c>>2,2*b);else{if(144>=b){b*=2;for(var e=xd[b],f=0;f>2],e[f+1]=E[c+(4*f+4)>>2]}else e=E.subarray(c>>2,c+8*b>>2);R.uniform2iv(Y(a),e)}},Fa:(a,b,c,e)=>{R.uniform3f(Y(a),b,c,e)},Ea:(a,b,c)=>{if(2<=z.version)b&&R.uniform3fv(Y(a),J,c>>2,3*b);else{if(96>=b){b*=3;for(var e=wd[b],f=0;f< +b;f+=3)e[f]=J[c+4*f>>2],e[f+1]=J[c+(4*f+4)>>2],e[f+2]=J[c+(4*f+8)>>2]}else e=J.subarray(c>>2,c+12*b>>2);R.uniform3fv(Y(a),e)}},Da:(a,b,c,e)=>{R.uniform3i(Y(a),b,c,e)},Ca:(a,b,c)=>{if(2<=z.version)b&&R.uniform3iv(Y(a),E,c>>2,3*b);else{if(96>=b){b*=3;for(var e=xd[b],f=0;f>2],e[f+1]=E[c+(4*f+4)>>2],e[f+2]=E[c+(4*f+8)>>2]}else e=E.subarray(c>>2,c+12*b>>2);R.uniform3iv(Y(a),e)}},Ba:(a,b,c,e,f)=>{R.uniform4f(Y(a),b,c,e,f)},Aa:(a,b,c)=>{if(2<=z.version)b&&R.uniform4fv(Y(a),J,c>>2,4* +b);else{if(72>=b){var e=wd[4*b],f=J;c>>=2;b*=4;for(var k=0;k>2,c+16*b>>2);R.uniform4fv(Y(a),e)}},za:(a,b,c,e,f)=>{R.uniform4i(Y(a),b,c,e,f)},ya:(a,b,c)=>{if(2<=z.version)b&&R.uniform4iv(Y(a),E,c>>2,4*b);else{if(72>=b){b*=4;for(var e=xd[b],f=0;f>2],e[f+1]=E[c+(4*f+4)>>2],e[f+2]=E[c+(4*f+8)>>2],e[f+3]=E[c+(4*f+12)>>2]}else e=E.subarray(c>>2,c+16*b>>2);R.uniform4iv(Y(a),e)}},xa:(a,b,c,e)=> +{if(2<=z.version)b&&R.uniformMatrix2fv(Y(a),!!c,J,e>>2,4*b);else{if(72>=b){b*=4;for(var f=wd[b],k=0;k>2],f[k+1]=J[e+(4*k+4)>>2],f[k+2]=J[e+(4*k+8)>>2],f[k+3]=J[e+(4*k+12)>>2]}else f=J.subarray(e>>2,e+16*b>>2);R.uniformMatrix2fv(Y(a),!!c,f)}},wa:(a,b,c,e)=>{if(2<=z.version)b&&R.uniformMatrix3fv(Y(a),!!c,J,e>>2,9*b);else{if(32>=b){b*=9;for(var f=wd[b],k=0;k>2],f[k+1]=J[e+(4*k+4)>>2],f[k+2]=J[e+(4*k+8)>>2],f[k+3]=J[e+(4*k+12)>>2],f[k+4]=J[e+(4*k+16)>>2],f[k+ +5]=J[e+(4*k+20)>>2],f[k+6]=J[e+(4*k+24)>>2],f[k+7]=J[e+(4*k+28)>>2],f[k+8]=J[e+(4*k+32)>>2]}else f=J.subarray(e>>2,e+36*b>>2);R.uniformMatrix3fv(Y(a),!!c,f)}},va:(a,b,c,e)=>{if(2<=z.version)b&&R.uniformMatrix4fv(Y(a),!!c,J,e>>2,16*b);else{if(18>=b){var f=wd[16*b],k=J;e>>=2;b*=16;for(var n=0;n>2,e+64*b>>2);R.uniformMatrix4fv(Y(a),!!c,f)}},ua:a=>{a=Nc[a];R.useProgram(a);R.bf=a},ta:(a,b)=>R.vertexAttrib1f(a,b),sa:(a,b)=>{R.vertexAttrib2f(a,J[b>>2],J[b+4>>2])},ra:(a,b)=>{R.vertexAttrib3f(a,J[b>>2],J[b+4>>2],J[b+8>>2])},qa:(a,b)=>{R.vertexAttrib4f(a,J[b>>2],J[b+4>>2],J[b+8>>2],J[b+12>>2])},pa:(a,b)=>{R.vertexAttribDivisor(a,b)},oa:(a,b,c,e,f)=>{R.vertexAttribIPointer(a,b,c,e,f)},na:(a,b,c,e,f,k)=>{R.vertexAttribPointer(a,b,c, +!!e,f,k)},ma:(a,b,c,e)=>R.viewport(a,b,c,e),la:(a,b,c,e)=>{R.waitSync(Uc[a],b,(c>>>0)+4294967296*e)},ka:a=>{var b=B.length;a>>>=0;if(2147483648=c;c*=2){var e=b*(1+1/c);e=Math.min(e,a+100663296);a:{e=(Math.min(2147483648,65536*Math.ceil(Math.max(a,e)/65536))-za.buffer.byteLength+65535)/65536|0;try{za.grow(e);Ha();var f=1;break a}catch(k){}f=void 0}if(f)return!0}return!1},ja:()=>z?z.handle:0,qd:(a,b)=>{var c=0;Ad().forEach((e,f)=>{var k=b+c;f=H[a+4*f>>2]=k;for(k=0;k{var c=Ad();H[a>>2]=c.length;var e=0;c.forEach(f=>e+=f.length+1);H[b>>2]=e;return 0},ia:a=>{Xa||(Ba=!0);throw new Va(a);},N:()=>52,_:function(){return 52},od:()=>52,Z:function(){return 70},T:(a,b,c,e)=>{for(var f=0,k=0;k>2],l=H[b+4>>2];b+=8;for(var p=0;p>2]=f;return 0},ha:cd,ga:ed,fa:fd,ea:gd,J:nd,Q:rd,da:sd,i:Hd,w:Id,m:Jd,I:Kd, +ca:Ld,P:Md,O:Nd,s:Od,v:Pd,r:Qd,u:Rd,ba:Sd,aa:Td,$:Ud},Z=function(){function a(c){Z=c.exports;za=Z.wd;Ha();N=Z.zd;Ja.unshift(Z.xd);La--;0==La&&(null!==Na&&(clearInterval(Na),Na=null),Oa&&(c=Oa,Oa=null,c()));return Z}var b={a:Vd};La++;if(r.instantiateWasm)try{return r.instantiateWasm(b,a)}catch(c){ya(`Module.instantiateWasm callback failed with error: ${c}`),ca(c)}Ra??=r.locateFile?Qa("canvaskit.wasm")?"canvaskit.wasm":ta+"canvaskit.wasm":(new URL("canvaskit.wasm",import.meta.url)).href; +Ua(b,function(c){a(c.instance)}).catch(ca);return{}}(),bc=a=>(bc=Z.yd)(a),pd=r._malloc=a=>(pd=r._malloc=Z.Ad)(a),cc=r._free=a=>(cc=r._free=Z.Bd)(a),Wd=(a,b)=>(Wd=Z.Cd)(a,b),Xd=a=>(Xd=Z.Dd)(a),Yd=()=>(Yd=Z.Ed)();r.dynCall_viji=(a,b,c,e,f)=>(r.dynCall_viji=Z.Fd)(a,b,c,e,f);r.dynCall_vijiii=(a,b,c,e,f,k,n)=>(r.dynCall_vijiii=Z.Gd)(a,b,c,e,f,k,n);r.dynCall_viiiiij=(a,b,c,e,f,k,n,l)=>(r.dynCall_viiiiij=Z.Hd)(a,b,c,e,f,k,n,l);r.dynCall_vij=(a,b,c,e)=>(r.dynCall_vij=Z.Id)(a,b,c,e); +r.dynCall_iiiji=(a,b,c,e,f,k)=>(r.dynCall_iiiji=Z.Jd)(a,b,c,e,f,k);r.dynCall_jii=(a,b,c)=>(r.dynCall_jii=Z.Kd)(a,b,c);r.dynCall_jiiiiii=(a,b,c,e,f,k,n)=>(r.dynCall_jiiiiii=Z.Ld)(a,b,c,e,f,k,n);r.dynCall_jiiiiji=(a,b,c,e,f,k,n,l)=>(r.dynCall_jiiiiji=Z.Md)(a,b,c,e,f,k,n,l);r.dynCall_ji=(a,b)=>(r.dynCall_ji=Z.Nd)(a,b);r.dynCall_iijj=(a,b,c,e,f,k)=>(r.dynCall_iijj=Z.Od)(a,b,c,e,f,k);r.dynCall_iiji=(a,b,c,e,f)=>(r.dynCall_iiji=Z.Pd)(a,b,c,e,f); +r.dynCall_iijjiii=(a,b,c,e,f,k,n,l,p)=>(r.dynCall_iijjiii=Z.Qd)(a,b,c,e,f,k,n,l,p);r.dynCall_iij=(a,b,c,e)=>(r.dynCall_iij=Z.Rd)(a,b,c,e);r.dynCall_vijjjii=(a,b,c,e,f,k,n,l,p,v)=>(r.dynCall_vijjjii=Z.Sd)(a,b,c,e,f,k,n,l,p,v);r.dynCall_jiji=(a,b,c,e,f)=>(r.dynCall_jiji=Z.Td)(a,b,c,e,f);r.dynCall_viijii=(a,b,c,e,f,k,n)=>(r.dynCall_viijii=Z.Ud)(a,b,c,e,f,k,n);r.dynCall_iiiiij=(a,b,c,e,f,k,n)=>(r.dynCall_iiiiij=Z.Vd)(a,b,c,e,f,k,n); +r.dynCall_iiiiijj=(a,b,c,e,f,k,n,l,p)=>(r.dynCall_iiiiijj=Z.Wd)(a,b,c,e,f,k,n,l,p);r.dynCall_iiiiiijj=(a,b,c,e,f,k,n,l,p,v)=>(r.dynCall_iiiiiijj=Z.Xd)(a,b,c,e,f,k,n,l,p,v);function Rd(a,b,c,e,f){var k=Yd();try{N.get(a)(b,c,e,f)}catch(n){Xd(k);if(n!==n+0)throw n;Wd(1,0)}}function Id(a,b,c){var e=Yd();try{return N.get(a)(b,c)}catch(f){Xd(e);if(f!==f+0)throw f;Wd(1,0)}}function Pd(a,b,c){var e=Yd();try{N.get(a)(b,c)}catch(f){Xd(e);if(f!==f+0)throw f;Wd(1,0)}} +function Hd(a,b){var c=Yd();try{return N.get(a)(b)}catch(e){Xd(c);if(e!==e+0)throw e;Wd(1,0)}}function Od(a,b){var c=Yd();try{N.get(a)(b)}catch(e){Xd(c);if(e!==e+0)throw e;Wd(1,0)}}function Jd(a,b,c,e){var f=Yd();try{return N.get(a)(b,c,e)}catch(k){Xd(f);if(k!==k+0)throw k;Wd(1,0)}}function Ud(a,b,c,e,f,k,n,l,p,v){var w=Yd();try{N.get(a)(b,c,e,f,k,n,l,p,v)}catch(A){Xd(w);if(A!==A+0)throw A;Wd(1,0)}}function Qd(a,b,c,e){var f=Yd();try{N.get(a)(b,c,e)}catch(k){Xd(f);if(k!==k+0)throw k;Wd(1,0)}} +function Td(a,b,c,e,f,k,n){var l=Yd();try{N.get(a)(b,c,e,f,k,n)}catch(p){Xd(l);if(p!==p+0)throw p;Wd(1,0)}}function Md(a,b,c,e,f,k,n,l){var p=Yd();try{return N.get(a)(b,c,e,f,k,n,l)}catch(v){Xd(p);if(v!==v+0)throw v;Wd(1,0)}}function Sd(a,b,c,e,f,k){var n=Yd();try{N.get(a)(b,c,e,f,k)}catch(l){Xd(n);if(l!==l+0)throw l;Wd(1,0)}}function Kd(a,b,c,e,f){var k=Yd();try{return N.get(a)(b,c,e,f)}catch(n){Xd(k);if(n!==n+0)throw n;Wd(1,0)}} +function Nd(a,b,c,e,f,k,n,l,p,v){var w=Yd();try{return N.get(a)(b,c,e,f,k,n,l,p,v)}catch(A){Xd(w);if(A!==A+0)throw A;Wd(1,0)}}function Ld(a,b,c,e,f,k,n){var l=Yd();try{return N.get(a)(b,c,e,f,k,n)}catch(p){Xd(l);if(p!==p+0)throw p;Wd(1,0)}}var Zd,$d;Oa=function ae(){Zd||be();Zd||(Oa=ae)};function be(){if(!(0\28SkColorSpace*\29 +241:__memcpy +242:SkString::~SkString\28\29 +243:__memset +244:std::__2::basic_string\2c\20std::__2::allocator>::append\28char\20const*\2c\20unsigned\20long\29 +245:SkColorInfo::~SkColorInfo\28\29 +246:GrGLSLShaderBuilder::codeAppendf\28char\20const*\2c\20...\29 +247:SkData::~SkData\28\29 +248:memmove +249:SkString::SkString\28\29 +250:SkContainerAllocator::allocate\28int\2c\20double\29 +251:uprv_free_74 +252:SkPath::~SkPath\28\29 +253:memcmp +254:SkString::insert\28unsigned\20long\2c\20char\20const*\29 +255:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::~__func\28\29 +256:strlen +257:hb_blob_destroy +258:SkDebugf\28char\20const*\2c\20...\29 +259:uprv_malloc_74 +260:sk_report_container_overflow_and_die\28\29 +261:SkSL::ErrorReporter::error\28SkSL::Position\2c\20std::__2::basic_string_view>\29 +262:SkArenaAlloc::ensureSpace\28unsigned\20int\2c\20unsigned\20int\29 +263:ft_mem_free +264:strcmp +265:__wasm_setjmp_test +266:SkRasterPipeline::append\28SkRasterPipelineOp\2c\20void*\29 +267:SkString::SkString\28char\20const*\29 +268:FT_MulFix +269:emscripten::default_smart_ptr_trait>::share\28void*\29 +270:SkTDStorage::append\28\29 +271:SkWriter32::growToAtLeast\28unsigned\20long\29 +272:GrGpuResource::notifyARefCntIsZero\28GrIORef::LastRemovedRef\29\20const +273:fmaxf +274:std::__2::basic_string\2c\20std::__2::allocator>::size\5babi:nn180100\5d\28\29\20const +275:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:ne180100\5d\28\29\20const +276:SkString::SkString\28SkString&&\29 +277:SkSL::Pool::AllocMemory\28unsigned\20long\29 +278:GrColorInfo::~GrColorInfo\28\29 +279:SkIRect::intersect\28SkIRect\20const&\2c\20SkIRect\20const&\29 +280:SkMatrix::computePerspectiveTypeMask\28\29\20const +281:GrBackendFormat::~GrBackendFormat\28\29 +282:SkMatrix::computeTypeMask\28\29\20const +283:SkPaint::~SkPaint\28\29 +284:std::__2::basic_string\2c\20std::__2::allocator>::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +285:icu_74::UnicodeString::~UnicodeString\28\29 +286:GrContext_Base::caps\28\29\20const +287:void\20emscripten::internal::raw_destructor\28SkContourMeasure*\29 +288:icu_74::UMemory::operator\20delete\28void*\29 +289:SkTDStorage::~SkTDStorage\28\29 +290:std::__2::vector>::__throw_length_error\5babi:ne180100\5d\28\29\20const +291:SkSL::RP::Generator::pushExpression\28SkSL::Expression\20const&\2c\20bool\29 +292:SkTDStorage::SkTDStorage\28int\29 +293:SkStrokeRec::getStyle\28\29\20const +294:SkString::SkString\28SkString\20const&\29 +295:SkFontMgr*\20emscripten::base::convertPointer\28skia::textlayout::TypefaceFontProvider*\29 +296:SkColorInfo::SkColorInfo\28SkColorInfo\20const&\29 +297:icu_74::MaybeStackArray::~MaybeStackArray\28\29 +298:SkArenaAlloc::installFooter\28char*\20\28*\29\28char*\29\2c\20unsigned\20int\29 +299:SkArenaAlloc::allocObjectWithFooter\28unsigned\20int\2c\20unsigned\20int\29 +300:strncmp +301:sk_malloc_throw\28unsigned\20long\2c\20unsigned\20long\29 +302:SkBitmap::~SkBitmap\28\29 +303:SkMatrix::mapRect\28SkRect*\2c\20SkRect\20const&\29\20const +304:hb_ot_map_builder_t::add_feature\28unsigned\20int\2c\20hb_ot_map_feature_flags_t\2c\20unsigned\20int\29 +305:SkSemaphore::osSignal\28int\29 +306:fminf +307:icu_74::CharString::append\28char\20const*\2c\20int\2c\20UErrorCode&\29 +308:hb_buffer_t::message\28hb_font_t*\2c\20char\20const*\2c\20...\29 +309:SkArenaAlloc::~SkArenaAlloc\28\29 +310:SkString::operator=\28SkString&&\29 +311:SkSemaphore::osWait\28\29 +312:skia_png_error +313:SkSL::Parser::nextRawToken\28\29 +314:hb_buffer_t::make_room_for\28unsigned\20int\2c\20unsigned\20int\29 +315:icu_74::StringPiece::StringPiece\28char\20const*\29 +316:std::__2::__shared_weak_count::__release_weak\28\29 +317:ft_mem_realloc +318:SkIntersections::insert\28double\2c\20double\2c\20SkDPoint\20const&\29 +319:skia_private::TArray::push_back\28SkPoint\20const&\29 +320:SkString::appendf\28char\20const*\2c\20...\29 +321:SkPath::SkPath\28SkPath\20const&\29 +322:SkColorInfo::bytesPerPixel\28\29\20const +323:FT_DivFix +324:uprv_isASCIILetter_74 +325:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +326:skia_png_free +327:SkImageGenerator::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +328:utext_setNativeIndex_74 +329:utext_getNativeIndex_74 +330:ures_closeBundle\28UResourceBundle*\2c\20signed\20char\29 +331:std::__throw_bad_array_new_length\5babi:ne180100\5d\28\29 +332:skia_png_crc_finish +333:skia_png_chunk_benign_error +334:SkChecksum::Hash32\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20int\29 +335:emscripten_builtin_malloc +336:SkMatrix::setTranslate\28float\2c\20float\29 +337:SkBlitter::~SkBlitter\28\29 +338:GrVertexChunkBuilder::allocChunk\28int\29 +339:ft_mem_qrealloc +340:SkPaint::SkPaint\28SkPaint\20const&\29 +341:skia_png_warning +342:GrGLExtensions::has\28char\20const*\29\20const +343:icu_74::MaybeStackArray::MaybeStackArray\28\29 +344:FT_Stream_Seek +345:SkPathBuilder::lineTo\28SkPoint\29 +346:SkBitmap::SkBitmap\28\29 +347:strchr +348:SkReadBuffer::readUInt\28\29 +349:SkMatrix::invert\28\29\20const +350:SkImageInfo::MakeUnknown\28int\2c\20int\29 +351:GrSurfaceProxyView::asRenderTargetProxy\28\29\20const +352:skia_private::TArray::push_back\28unsigned\20long\20const&\29 +353:SkPaint::SkPaint\28\29 +354:SkColorInfo::SkColorInfo\28SkColorInfo&&\29 +355:strstr +356:hb_buffer_t::_set_glyph_flags\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +357:ft_validator_error +358:skia_private::TArray\2c\20true>::push_back\28sk_sp&&\29 +359:skgpu::Swizzle::Swizzle\28char\20const*\29 +360:hb_blob_get_data_writable +361:SkOpPtT::segment\28\29\20const +362:GrTextureGenerator::isTextureGenerator\28\29\20const +363:SkSL::Parser::expect\28SkSL::Token::Kind\2c\20char\20const*\2c\20SkSL::Token*\29 +364:sk_malloc_flags\28unsigned\20long\2c\20unsigned\20int\29 +365:uhash_close_74 +366:hb_draw_funcs_t::start_path\28void*\2c\20hb_draw_state_t&\29 +367:SkSL::RP::Builder::appendInstruction\28SkSL::RP::BuilderOp\2c\20SkSL::RP::Builder::SlotList\2c\20int\2c\20int\2c\20int\2c\20int\29 +368:FT_Stream_ReadUShort +369:skia_private::TArray::push_back\28SkSL::RP::Instruction&&\29 +370:skia_png_get_uint_32 +371:skia_png_calculate_crc +372:SkPoint::Length\28float\2c\20float\29 +373:OT::VarData::get_delta\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20OT::VarRegionList\20const&\2c\20float*\29\20const +374:hb_realloc +375:hb_lazy_loader_t\2c\20hb_face_t\2c\2031u\2c\20hb_blob_t>::do_destroy\28hb_blob_t*\29 +376:hb_calloc +377:SkSL::GLSLCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +378:SkPath::SkPath\28\29 +379:std::__2::basic_string\2c\20std::__2::allocator>::resize\5babi:nn180100\5d\28unsigned\20long\29 +380:SkRect::join\28SkRect\20const&\29 +381:OT::DeltaSetIndexMap::map\28unsigned\20int\29\20const +382:GrImageInfo::GrImageInfo\28GrImageInfo\20const&\29 +383:subtag_matches\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20int\29 +384:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +385:std::__2::locale::~locale\28\29 +386:icu_74::CharString::append\28char\2c\20UErrorCode&\29 +387:SkMatrix::mapPoints\28SkSpan\2c\20SkSpan\29\20const +388:SkLoadICULib\28\29 +389:ucptrie_internalSmallIndex_74 +390:std::__2::basic_string\2c\20std::__2::allocator>::__get_pointer\5babi:nn180100\5d\28\29 +391:skia_private::TArray::push_back\28SkString&&\29 +392:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +393:std::__2::__throw_bad_function_call\5babi:ne180100\5d\28\29 +394:SkRect::intersect\28SkRect\20const&\29 +395:SkRasterPipeline::uncheckedAppend\28SkRasterPipelineOp\2c\20void*\29 +396:strcpy +397:skia_private::TArray>\2c\20true>::operator=\28skia_private::TArray>\2c\20true>&&\29 +398:cf2_stack_popFixed +399:SkJSONWriter::appendName\28char\20const*\29 +400:SkCachedData::internalUnref\28bool\29\20const +401:skgpu::ganesh::SurfaceContext::caps\28\29\20const +402:GrProcessor::operator\20new\28unsigned\20long\29 +403:FT_MulDiv +404:icu_74::UnicodeString::doAppend\28char16_t\20const*\2c\20int\2c\20int\29 +405:hb_blob_reference +406:SkSemaphore::~SkSemaphore\28\29 +407:std::__2::to_string\28int\29 +408:std::__2::ios_base::getloc\28\29\20const +409:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28char\29 +410:hb_blob_make_immutable +411:SkRuntimeEffect::uniformSize\28\29\20const +412:SkMatrix::mapPointPerspective\28SkPoint\29\20const +413:SkJSONWriter::beginValue\28bool\29 +414:umtx_unlock_74 +415:skia_png_read_push_finish_row +416:skia::textlayout::TextStyle::~TextStyle\28\29 +417:SkString::operator=\28char\20const*\29 +418:hb_ot_map_builder_t::add_pause\28unsigned\20int\2c\20bool\20\28*\29\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29\29 +419:embind_init_Paragraph\28\29::$_10::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20unsigned\20long\2c\20unsigned\20long\29 +420:VP8GetValue +421:SkRegion::~SkRegion\28\29 +422:SkReadBuffer::setInvalid\28\29 +423:SkColorInfo::operator=\28SkColorInfo\20const&\29 +424:SkColorInfo::operator=\28SkColorInfo&&\29 +425:SkArenaAlloc::SkArenaAlloc\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +426:uhash_get_74 +427:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28\29 +428:icu_74::UnicodeSet::~UnicodeSet\28\29 +429:icu_74::UnicodeSet::contains\28int\29\20const +430:utext_next32_74 +431:skia_private::TArray::push_back\28SkPathVerb&&\29 +432:jdiv_round_up +433:SkSL::RP::Builder::binary_op\28SkSL::RP::BuilderOp\2c\20int\29 +434:jzero_far +435:SkPathBuilder::~SkPathBuilder\28\29 +436:SkPathBuilder::detach\28SkMatrix\20const*\29 +437:SkPath::operator=\28SkPath\20const&\29 +438:SkPath::Iter::next\28\29 +439:FT_Stream_ExitFrame +440:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +441:skia_private::TArray::push_back_raw\28int\29 +442:skia_png_write_data +443:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +444:umtx_lock_74 +445:abort +446:__shgetc +447:SkSL::SymbolTable::addWithoutOwnershipOrDie\28SkSL::Symbol*\29 +448:SkPoint::scale\28float\2c\20SkPoint*\29\20const +449:SkPath::getBounds\28\29\20const +450:SkDynamicMemoryWStream::write\28void\20const*\2c\20unsigned\20long\29 +451:SkBlitter::~SkBlitter\28\29_1466 +452:FT_Stream_GetUShort +453:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28wchar_t\20const*\29 +454:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28char\20const*\29 +455:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +456:SkMatrix::setConcat\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +457:round +458:icu_74::UVector32::expandCapacity\28int\2c\20UErrorCode&\29 +459:SkSL::String::printf\28char\20const*\2c\20...\29 +460:SkPoint::normalize\28\29 +461:SkPathRef::Editor::Editor\28sk_sp*\2c\20int\2c\20int\2c\20int\29 +462:SkIRect\20skif::Mapping::map\28SkIRect\20const&\2c\20SkMatrix\20const&\29 +463:OT::Layout::Common::Coverage::get_coverage\28unsigned\20int\29\20const +464:GrSurfaceProxyView::asTextureProxy\28\29\20const +465:GrOp::GenOpClassID\28\29 +466:hb_bit_set_t::page_for\28unsigned\20int\2c\20bool\29 +467:SkSurfaceProps::SkSurfaceProps\28\29 +468:SkStringPrintf\28char\20const*\2c\20...\29 +469:SkStream::readS32\28int*\29 +470:RoughlyEqualUlps\28float\2c\20float\29 +471:GrGLSLVaryingHandler::addVarying\28char\20const*\2c\20GrGLSLVarying*\2c\20GrGLSLVaryingHandler::Interpolation\29 +472:sktext::gpu::BagOfBytes::~BagOfBytes\28\29 +473:skia_png_chunk_error +474:SkTDStorage::reserve\28int\29 +475:SkPathBuilder::SkPathBuilder\28\29 +476:GrQuad::MakeFromRect\28SkRect\20const&\2c\20SkMatrix\20const&\29 +477:GrFragmentProcessor::ProgramImpl::invokeChild\28int\2c\20char\20const*\2c\20char\20const*\2c\20GrFragmentProcessor::ProgramImpl::EmitArgs&\2c\20std::__2::basic_string_view>\29 +478:hb_face_reference_table +479:SkStrikeSpec::~SkStrikeSpec\28\29 +480:SkSL::TProgramVisitor::visitStatement\28SkSL::Statement\20const&\29 +481:SkSL::RP::Builder::discard_stack\28int\2c\20int\29 +482:SkRecord::grow\28\29 +483:SkRGBA4f<\28SkAlphaType\293>::toBytes_RGBA\28\29\20const +484:GrProcessor::operator\20new\28unsigned\20long\2c\20unsigned\20long\29 +485:AutoLayerForImageFilter::~AutoLayerForImageFilter\28\29 +486:skgpu::ganesh::SurfaceDrawContext::addDrawOp\28GrClip\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::function\20const&\29 +487:skgpu::ResourceKeyHash\28unsigned\20int\20const*\2c\20unsigned\20long\29 +488:VP8LoadFinalBytes +489:SkSL::FunctionDeclaration::description\28\29\20const +490:SkPictureRecord::addDraw\28DrawType\2c\20unsigned\20long*\29::'lambda'\28\29::operator\28\29\28\29\20const +491:SkMatrix::postTranslate\28float\2c\20float\29 +492:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29 +493:SkCanvas::predrawNotify\28bool\29 +494:std::__2::__cloc\28\29 +495:sscanf +496:icu_74::UVector::elementAt\28int\29\20const +497:GrSkSLFP::GrSkSLFP\28sk_sp\2c\20char\20const*\2c\20GrSkSLFP::OptFlags\29 +498:GrBackendFormat::GrBackendFormat\28\29 +499:icu_74::umtx_initImplPreInit\28icu_74::UInitOnce&\29 +500:icu_74::umtx_initImplPostInit\28icu_74::UInitOnce&\29 +501:__multf3 +502:VP8LReadBits +503:SkTDStorage::append\28int\29 +504:SkSL::evaluate_n_way_intrinsic\28SkSL::Context\20const&\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +505:SkRect::Bounds\28SkSpan\29 +506:SkMatrix::setScale\28float\2c\20float\29 +507:GrOpsRenderPass::setScissorRect\28SkIRect\20const&\29 +508:GrOpsRenderPass::bindPipeline\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +509:GrCaps::getDefaultBackendFormat\28GrColorType\2c\20skgpu::Renderable\29\20const +510:emscripten_longjmp +511:SkRuntimeEffect::MakeForShader\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +512:GrSimpleMeshDrawOpHelper::~GrSimpleMeshDrawOpHelper\28\29 +513:GrProcessorSet::GrProcessorSet\28GrPaint&&\29 +514:GrBackendFormats::AsGLFormat\28GrBackendFormat\20const&\29 +515:FT_Stream_EnterFrame +516:uprv_realloc_74 +517:std::__2::locale::id::__get\28\29 +518:std::__2::locale::facet::facet\5babi:nn180100\5d\28unsigned\20long\29 +519:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29 +520:SkPathBuilder::moveTo\28SkPoint\29 +521:SkColorSpaceXformSteps::SkColorSpaceXformSteps\28SkColorSpace\20const*\2c\20SkAlphaType\2c\20SkColorSpace\20const*\2c\20SkAlphaType\29 +522:AlmostEqualUlps\28float\2c\20float\29 +523:udata_close_74 +524:ucln_common_registerCleanup_74 +525:std::__2::locale::__imp::install\28std::__2::locale::facet*\2c\20long\29 +526:skia_png_read_data +527:cosf +528:SkSpinlock::contendedAcquire\28\29 +529:SkSL::PipelineStage::PipelineStageCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +530:SkDPoint::approximatelyEqual\28SkDPoint\20const&\29\20const +531:GrSurfaceProxy::backingStoreDimensions\28\29\20const +532:GrOpsRenderPass::bindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +533:GrGeometryProcessor::AttributeSet::initImplicit\28GrGeometryProcessor::Attribute\20const*\2c\20int\29 +534:uprv_asciitolower_74 +535:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +536:skgpu::UniqueKey::GenerateDomain\28\29 +537:_uhash_create\28int\20\28*\29\28UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20int\2c\20UErrorCode*\29 +538:SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0::operator\28\29\28SkSL::FunctionDefinition\20const*\2c\20SkSL::FunctionDefinition\20const*\29\20const +539:SkSL::ConstructorCompound::MakeFromConstants\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20double\20const*\29 +540:SkPathRef::growForVerb\28SkPathVerb\2c\20float\29 +541:SkPaint::setStyle\28SkPaint::Style\29 +542:SkBlockAllocator::reset\28\29 +543:SkBitmap::SkBitmap\28SkBitmap\20const&\29 +544:OT::hb_ot_apply_context_t::match_properties_mark\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +545:GrMeshDrawOp::GrMeshDrawOp\28unsigned\20int\29 +546:GrContext_Base::contextID\28\29\20const +547:FT_RoundFix +548:std::__2::unique_ptr::~unique_ptr\5babi:nn180100\5d\28\29 +549:std::__2::unique_ptr::unique_ptr\5babi:nn180100\5d\28unsigned\20char*\2c\20std::__2::__dependent_type\2c\20true>::__good_rval_ref_type\29 +550:icu_74::UnicodeSet::UnicodeSet\28\29 +551:cf2_stack_pushFixed +552:__multi3 +553:SkSL::RP::Builder::push_duplicates\28int\29 +554:SkPaint::setShader\28sk_sp\29 +555:SkMatrix::Rect2Rect\28SkRect\20const&\2c\20SkRect\20const&\2c\20SkMatrix::ScaleToFit\29 +556:SkBitmapDevice::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +557:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20SkFilterMode\2c\20SkMipmapMode\29 +558:GrGLSLVaryingHandler::addPassThroughAttribute\28GrShaderVar\20const&\2c\20char\20const*\2c\20GrGLSLVaryingHandler::Interpolation\29 +559:GrFragmentProcessor::registerChild\28std::__2::unique_ptr>\2c\20SkSL::SampleUsage\29 +560:FT_Stream_ReleaseFrame +561:std::__2::istreambuf_iterator>::operator*\5babi:nn180100\5d\28\29\20const +562:skia_private::TArray::push_back_raw\28int\29 +563:skia::textlayout::TextStyle::TextStyle\28skia::textlayout::TextStyle\20const&\29 +564:hb_face_get_glyph_count +565:hb_buffer_t::merge_clusters_impl\28unsigned\20int\2c\20unsigned\20int\29 +566:decltype\28fp.sanitize\28this\29\29\20hb_sanitize_context_t::_dispatch\28OT::Layout::Common::Coverage\20const&\2c\20hb_priority<1u>\29 +567:SkWStream::writePackedUInt\28unsigned\20long\29 +568:SkSurface_Base::aboutToDraw\28SkSurface::ContentChangeMode\29 +569:SkString::equals\28SkString\20const&\29\20const +570:SkSL::RP::Builder::push_constant_i\28int\2c\20int\29 +571:SkSL::BreakStatement::~BreakStatement\28\29 +572:SkColorInfo::refColorSpace\28\29\20const +573:SkCanvas::concat\28SkMatrix\20const&\29 +574:SkBitmap::setImmutable\28\29 +575:GrPipeline::visitProxies\28std::__2::function\20const&\29\20const +576:338 +577:void\20emscripten::internal::raw_destructor\28GrDirectContext*\29 +578:std::__2::istreambuf_iterator>::operator*\5babi:nn180100\5d\28\29\20const +579:std::__2::__throw_bad_optional_access\5babi:ne180100\5d\28\29 +580:sk_srgb_singleton\28\29 +581:hb_face_t::load_num_glyphs\28\29\20const +582:dlrealloc +583:SkSL::fold_expression\28SkSL::Position\2c\20double\2c\20SkSL::Type\20const*\29 +584:SkSL::Type::MakeAliasType\28std::__2::basic_string_view>\2c\20SkSL::Type\20const&\29 +585:SkSL::RP::Generator::binaryOp\28SkSL::Type\20const&\2c\20SkSL::RP::Generator::TypedOps\20const&\29 +586:SkNullBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +587:GrGeometryProcessor::GrGeometryProcessor\28GrProcessor::ClassID\29 +588:GrGeometryProcessor::Attribute&\20skia_private::TArray::emplace_back\28char\20const\20\28&\29\20\5b10\5d\2c\20GrVertexAttribType&&\2c\20SkSLType&&\29 +589:FT_Stream_ReadByte +590:Cr_z_crc32 +591:skia_png_push_save_buffer +592:machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>::operator=\28machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\20const&\29 +593:icu_74::UnicodeSet::add\28int\2c\20int\29 +594:SkString::operator=\28SkString\20const&\29 +595:SkSL::RP::SlotManager::getVariableSlots\28SkSL::Variable\20const&\29 +596:SkSL::RP::Builder::unary_op\28SkSL::RP::BuilderOp\2c\20int\29 +597:SkRect::setBoundsCheck\28SkSpan\29 +598:SkReadBuffer::readScalar\28\29 +599:SkPaint::setBlendMode\28SkBlendMode\29 +600:SkImageGenerator::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +601:SkColorInfo::shiftPerPixel\28\29\20const +602:SkCanvas::save\28\29 +603:GrProcessorSet::visitProxies\28std::__2::function\20const&\29\20const +604:GrGLTexture::target\28\29\20const +605:ures_getByKey_74 +606:u_strlen_74 +607:std::__2::__throw_overflow_error\5babi:nn180100\5d\28char\20const*\29 +608:fmodf +609:fma +610:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression\20const&\29 +611:SkSL::Pool::FreeMemory\28void*\29 +612:SkRasterClip::~SkRasterClip\28\29 +613:SkPaint::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +614:SkPaint::canComputeFastBounds\28\29\20const +615:SkPaint::SkPaint\28SkPaint&&\29 +616:SkDPoint::ApproximatelyEqual\28SkPoint\20const&\2c\20SkPoint\20const&\29 +617:GrShape::asPath\28bool\29\20const +618:FT_Stream_ReadULong +619:381 +620:std::__2::unique_ptr>*\20std::__2::vector>\2c\20std::__2::allocator>>>::__push_back_slow_path>>\28std::__2::unique_ptr>&&\29 +621:std::__2::basic_string\2c\20std::__2::allocator>::__init_copy_ctor_external\28char\20const*\2c\20unsigned\20long\29 +622:skip_spaces +623:sk_realloc_throw\28void*\2c\20unsigned\20long\29 +624:emscripten::smart_ptr_trait>::get\28sk_sp\20const&\29 +625:cff1_path_procs_extents_t::curve\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +626:cff1_path_param_t::cubic_to\28CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +627:SkSL::Type::toCompound\28SkSL::Context\20const&\2c\20int\2c\20int\29\20const +628:SkPixmap::reset\28SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +629:SkPath::lineTo\28float\2c\20float\29 +630:SkPath::isEmpty\28\29\20const +631:SkMatrix::mapVectors\28SkSpan\2c\20SkSpan\29\20const +632:SkBlockAllocator::addBlock\28int\2c\20int\29 +633:SkBitmap::tryAllocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29 +634:GrThreadSafeCache::VertexData::~VertexData\28\29 +635:GrShaderVar::appendDecl\28GrShaderCaps\20const*\2c\20SkString*\29\20const +636:GrPixmapBase::~GrPixmapBase\28\29 +637:GrGLSLVaryingHandler::emitAttributes\28GrGeometryProcessor\20const&\29 +638:FT_Stream_ReadFields +639:uhash_put_74 +640:std::__2::unique_ptr::reset\5babi:nn180100\5d\28unsigned\20char*\29 +641:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +642:skia_private::TArray::push_back\28SkPaint\20const&\29 +643:icu_74::UnicodeString::getChar32At\28int\29\20const +644:icu_74::CharStringByteSink::CharStringByteSink\28icu_74::CharString*\29 +645:ft_mem_qalloc +646:__wasm_setjmp +647:SkSL::SymbolTable::~SymbolTable\28\29 +648:SkPathRef::~SkPathRef\28\29 +649:SkPathBuilder::quadTo\28SkPoint\2c\20SkPoint\29 +650:SkPathBuilder::close\28\29 +651:SkOpPtT::contains\28SkOpPtT\20const*\29\20const +652:SkOpAngle::segment\28\29\20const +653:SkMasks::getRed\28unsigned\20int\29\20const +654:SkMasks::getGreen\28unsigned\20int\29\20const +655:SkMasks::getBlue\28unsigned\20int\29\20const +656:SkDynamicMemoryWStream::detachAsData\28\29 +657:SkColorSpace::MakeSRGB\28\29 +658:GrProcessorSet::~GrProcessorSet\28\29 +659:GrMeshDrawOp::createProgramInfo\28GrMeshDrawTarget*\29 +660:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +661:skhdr::Metadata::MakeEmpty\28\29 +662:sinf +663:png_icc_profile_error +664:operator==\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +665:icu_74::UnicodeString::UnicodeString\28icu_74::UnicodeString\20const&\29 +666:expf +667:emscripten::internal::MethodInvoker::invoke\28int\20\28SkAnimatedImage::*\20const&\29\28\29\2c\20SkAnimatedImage*\29 +668:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20SkBlendMode\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20SkBlendMode\29 +669:emscripten::default_smart_ptr_trait>::construct_null\28\29 +670:VP8GetSignedValue +671:SkString::data\28\29 +672:SkSL::Type::MakeVectorType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\29 +673:SkRasterPipeline::SkRasterPipeline\28SkArenaAlloc*\29 +674:SkPoint::setLength\28float\29 +675:SkPathBuilder::conicTo\28SkPoint\2c\20SkPoint\2c\20float\29 +676:SkPath::countPoints\28\29\20const +677:SkMatrix::preConcat\28SkMatrix\20const&\29 +678:SkGlyph::rowBytes\28\29\20const +679:SkCanvas::restoreToCount\28int\29 +680:SkAAClipBlitter::~SkAAClipBlitter\28\29 +681:GrTextureProxy::mipmapped\28\29\20const +682:GrGpuResource::~GrGpuResource\28\29 +683:FT_Stream_GetULong +684:Cr_z__tr_flush_bits +685:void\20emscripten::internal::raw_destructor>\28sk_sp*\29 +686:uhash_setKeyDeleter_74 +687:uhash_init_74 +688:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +689:skgpu::UniqueKey::operator=\28skgpu::UniqueKey\20const&\29 +690:sk_double_nearly_zero\28double\29 +691:icu_74::UnicodeString::tempSubString\28int\2c\20int\29\20const +692:icu_74::UnicodeSet::compact\28\29 +693:icu_74::Locale::~Locale\28\29 +694:hb_font_get_glyph +695:ft_mem_alloc +696:fit_linear\28skcms_Curve\20const*\2c\20int\2c\20float\2c\20float*\2c\20float*\2c\20float*\29 +697:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29 +698:_output_with_dotted_circle\28hb_buffer_t*\29 +699:WebPSafeMalloc +700:SkSafeMath::Mul\28unsigned\20long\2c\20unsigned\20long\29 +701:SkSL::GLSLCodeGenerator::writeIdentifier\28std::__2::basic_string_view>\29 +702:SkSL::GLSLCodeGenerator::getTypeName\28SkSL::Type\20const&\29 +703:SkRGBA4f<\28SkAlphaType\293>::FromColor\28unsigned\20int\29 +704:SkPaint::setMaskFilter\28sk_sp\29 +705:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_3::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +706:SkImageGenerator::onIsValid\28SkRecorder*\29\20const +707:SkDrawable::getBounds\28\29 +708:SkData::MakeWithCopy\28void\20const*\2c\20unsigned\20long\29 +709:SkDCubic::ptAtT\28double\29\20const +710:SkColorInfo::SkColorInfo\28\29 +711:SkCanvas::~SkCanvas\28\29_1665 +712:SkCanvas::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +713:GrOpFlushState::drawMesh\28GrSimpleMesh\20const&\29 +714:GrImageInfo::GrImageInfo\28SkImageInfo\20const&\29 +715:DefaultGeoProc::Impl::~Impl\28\29 +716:void\20emscripten::internal::MemberAccess::setWire\28int\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\2c\20int\29 +717:std::__2::basic_string\2c\20std::__2::allocator>::__is_long\5babi:nn180100\5d\28\29\20const +718:skia::textlayout::Cluster::run\28\29\20const +719:skgpu::ganesh::SurfaceDrawContext::drawFilledQuad\28GrClip\20const*\2c\20GrPaint&&\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\29 +720:out +721:jpeg_fill_bit_buffer +722:int\20emscripten::internal::MemberAccess::getWire\28int\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\29 +723:icu_74::UnicodeSet::add\28int\29 +724:icu_74::ReorderingBuffer::appendZeroCC\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29 +725:SkTextBlob::~SkTextBlob\28\29 +726:SkStrokeRec::SkStrokeRec\28SkStrokeRec::InitStyle\29 +727:SkShaderBase::SkShaderBase\28\29 +728:SkSL::Type::coerceExpression\28std::__2::unique_ptr>\2c\20SkSL::Context\20const&\29\20const +729:SkSL::Type::MakeGenericType\28char\20const*\2c\20SkSpan\2c\20SkSL::Type\20const*\29 +730:SkSL::ConstantFolder::GetConstantValueForVariable\28SkSL::Expression\20const&\29 +731:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29 +732:SkRegion::SkRegion\28\29 +733:SkRecords::FillBounds::adjustForSaveLayerPaints\28SkRect*\2c\20int\29\20const +734:SkPathStroker::lineTo\28SkPoint\20const&\2c\20SkPath::Iter\20const*\29 +735:SkPath::isFinite\28\29\20const +736:SkPath::Iter::Iter\28SkPath\20const&\2c\20bool\29 +737:SkPaint::setPathEffect\28sk_sp\29 +738:SkPaint::setColor\28unsigned\20int\29 +739:SkPaint::setColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\29 +740:SkMatrix::postConcat\28SkMatrix\20const&\29 +741:SkM44::setConcat\28SkM44\20const&\2c\20SkM44\20const&\29 +742:SkImageInfo::Make\28int\2c\20int\2c\20SkColorType\2c\20SkAlphaType\29 +743:SkImageFilter::getInput\28int\29\20const +744:SkDrawable::getFlattenableType\28\29\20const +745:SkData::MakeWithProc\28void\20const*\2c\20unsigned\20long\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +746:SkAutoPixmapStorage::~SkAutoPixmapStorage\28\29 +747:GrMatrixEffect::Make\28SkMatrix\20const&\2c\20std::__2::unique_ptr>\29 +748:GrContext_Base::options\28\29\20const +749:u_memcpy_74 +750:std::__2::char_traits::assign\5babi:nn180100\5d\28char&\2c\20char\20const&\29 +751:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +752:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:nn180100\5d\28\29\20const +753:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_size\5babi:nn180100\5d\28unsigned\20long\29 +754:std::__2::__check_grouping\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int&\29 +755:skia_png_malloc +756:skia_png_chunk_report +757:png_write_complete_chunk +758:pad +759:icu_74::UnicodeString::UnicodeString\28char16_t\20const*\29 +760:__ashlti3 +761:SkWBuffer::writeNoSizeCheck\28void\20const*\2c\20unsigned\20long\29 +762:SkTCoincident::setPerp\28SkTCurve\20const&\2c\20double\2c\20SkDPoint\20const&\2c\20SkTCurve\20const&\29 +763:SkString::printf\28char\20const*\2c\20...\29 +764:SkSL::Type::MakeMatrixType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\2c\20signed\20char\29 +765:SkSL::Operator::tightOperatorName\28\29\20const +766:SkReadBuffer::readColor4f\28SkRGBA4f<\28SkAlphaType\293>*\29 +767:SkPixmap::reset\28\29 +768:SkPictureData::requiredPaint\28SkReadBuffer*\29\20const +769:SkPathBuilder::cubicTo\28SkPoint\2c\20SkPoint\2c\20SkPoint\29 +770:SkPath::transform\28SkMatrix\20const&\2c\20SkPath*\29\20const +771:SkPaintToGrPaint\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrPaint*\29 +772:SkMatrixPriv::MapRect\28SkM44\20const&\2c\20SkRect\20const&\29 +773:SkFindUnitQuadRoots\28float\2c\20float\2c\20float\2c\20float*\29 +774:SkDeque::push_back\28\29 +775:SkData::MakeEmpty\28\29 +776:SkCanvas::internalQuickReject\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29 +777:SkBitmap::installPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29 +778:SkBinaryWriteBuffer::writeBool\28bool\29 +779:OT::hb_paint_context_t::return_t\20OT::Paint::dispatch\28OT::hb_paint_context_t*\29\20const +780:GrShape::bounds\28\29\20const +781:GrProgramInfo::GrProgramInfo\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrGeometryProcessor\20const*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +782:GrPixmapBase::GrPixmapBase\28GrImageInfo\2c\20void*\2c\20unsigned\20long\29 +783:FT_Outline_Translate +784:FT_Load_Glyph +785:FT_GlyphLoader_CheckPoints +786:FT_Get_Char_Index +787:DefaultGeoProc::~DefaultGeoProc\28\29 +788:550 +789:utext_current32_74 +790:std::__2::ctype\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +791:skif::LayerSpace::mapRect\28skif::LayerSpace\20const&\29\20const +792:skcpu::Draw::Draw\28\29 +793:icu_74::BMPSet::~BMPSet\28\29_13496 +794:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28GrDirectContext&\2c\20unsigned\20long\29\2c\20GrDirectContext*\2c\20unsigned\20long\29 +795:bool\20OT::Layout::Common::Coverage::collect_coverage\28hb_set_digest_t*\29\20const +796:SkRasterPipeline::extend\28SkRasterPipeline\20const&\29 +797:SkJSONWriter::appendf\28char\20const*\2c\20...\29 +798:SkImageInfo::MakeA8\28int\2c\20int\29 +799:SkIRect::join\28SkIRect\20const&\29 +800:SkData::MakeUninitialized\28unsigned\20long\29 +801:SkDQuad::RootsValidT\28double\2c\20double\2c\20double\2c\20double*\29 +802:SkDLine::nearPoint\28SkDPoint\20const&\2c\20bool*\29\20const +803:SkColorSpaceXformSteps::apply\28float*\29\20const +804:SkCachedData::internalRef\28bool\29\20const +805:OT::GDEF::accelerator_t::mark_set_covers\28unsigned\20int\2c\20unsigned\20int\29\20const +806:GrSurface::RefCntedReleaseProc::~RefCntedReleaseProc\28\29 +807:GrStyle::initPathEffect\28sk_sp\29 +808:GrProcessor::operator\20delete\28void*\29 +809:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::~Impl\28\29 +810:GrColorInfo::GrColorInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\29 +811:GrBufferAllocPool::~GrBufferAllocPool\28\29_8962 +812:FT_Stream_Skip +813:AutoLayerForImageFilter::AutoLayerForImageFilter\28SkCanvas*\2c\20SkPaint\20const&\2c\20SkRect\20const*\2c\20bool\29 +814:u_terminateUChars_74 +815:strncpy +816:std::__2::numpunct::thousands_sep\5babi:nn180100\5d\28\29\20const +817:std::__2::numpunct::grouping\5babi:nn180100\5d\28\29\20const +818:std::__2::ctype\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +819:std::__2::basic_string\2c\20std::__2::allocator>::__set_short_size\5babi:nn180100\5d\28unsigned\20long\29 +820:skia_png_malloc_warn +821:rewind\28GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +822:icu_74::UVector::removeAllElements\28\29 +823:icu_74::BytesTrie::~BytesTrie\28\29 +824:icu_74::BytesTrie::next\28int\29 +825:cf2_stack_popInt +826:SkUTF::NextUTF8\28char\20const**\2c\20char\20const*\29 +827:SkSL::TProgramVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +828:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29 +829:SkRegion::setRect\28SkIRect\20const&\29 +830:SkPaint::setColorFilter\28sk_sp\29 +831:SkImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +832:SkColorFilter::isAlphaUnchanged\28\29\20const +833:SkCodec::~SkCodec\28\29 +834:SkAAClip::isRect\28\29\20const +835:GrSurface::ComputeSize\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20bool\29 +836:GrSimpleMeshDrawOpHelper::GrSimpleMeshDrawOpHelper\28GrProcessorSet*\2c\20GrAAType\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +837:GrGeometryProcessor::ProgramImpl::SetTransform\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrResourceHandle\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix*\29 +838:GrBlendFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkBlendMode\2c\20bool\29 +839:FT_Stream_ExtractFrame +840:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +841:skia_png_malloc_base +842:skcpu::Draw::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkDrawCoverage\2c\20SkBlitter*\29\20const +843:skcms_TransferFunction_eval +844:pow +845:icu_74::UnicodeString::setToBogus\28\29 +846:icu_74::UnicodeString::releaseBuffer\28int\29 +847:icu_74::UnicodeSet::_appendToPat\28icu_74::UnicodeString&\2c\20int\2c\20signed\20char\29 +848:icu_74::UVector::~UVector\28\29 +849:hb_lockable_set_t::fini\28hb_mutex_t&\29 +850:__addtf3 +851:SkTDStorage::reset\28\29 +852:SkSize\20skif::Mapping::map\28SkSize\20const&\2c\20SkMatrix\20const&\29 +853:SkSL::RP::Builder::label\28int\29 +854:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +855:SkRuntimeEffect::MakeForColorFilter\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +856:SkReadBuffer::skip\28unsigned\20long\2c\20unsigned\20long\29 +857:SkPath::countVerbs\28\29\20const +858:SkPaint::asBlendMode\28\29\20const +859:SkMatrix::set9\28float\20const*\29 +860:SkMatrix::mapRadius\28float\29\20const +861:SkMatrix::getMaxScale\28\29\20const +862:SkImageInfo::computeByteSize\28unsigned\20long\29\20const +863:SkImageInfo::Make\28int\2c\20int\2c\20SkColorType\2c\20SkAlphaType\2c\20sk_sp\29 +864:SkFontMgr::countFamilies\28\29\20const +865:SkDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +866:SkBlockAllocator::SkBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\2c\20unsigned\20long\29 +867:SkBlender::Mode\28SkBlendMode\29 +868:SkBitmap::setInfo\28SkImageInfo\20const&\2c\20unsigned\20long\29 +869:ReadHuffmanCode +870:GrSurfaceProxy::~GrSurfaceProxy\28\29 +871:GrRenderTask::makeClosed\28GrRecordingContext*\29 +872:GrGpuBuffer::unmap\28\29 +873:GrCaps::getReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +874:GrBufferAllocPool::reset\28\29 +875:ures_hasNext_74 +876:std::__2::char_traits::assign\5babi:nn180100\5d\28wchar_t&\2c\20wchar_t\20const&\29 +877:std::__2::basic_string\2c\20std::__2::allocator>::begin\5babi:nn180100\5d\28\29 +878:std::__2::__next_prime\28unsigned\20long\29 +879:std::__2::__libcpp_snprintf_l\28char*\2c\20unsigned\20long\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +880:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29 +881:skgpu::ganesh::AsView\28GrRecordingContext*\2c\20SkImage\20const*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +882:skcms_PrimariesToXYZD50 +883:sk_sp::~sk_sp\28\29 +884:memchr +885:locale_get_default_74 +886:is_equal\28std::type_info\20const*\2c\20std::type_info\20const*\2c\20bool\29 +887:hb_ot_face_t::init0\28hb_face_t*\29 +888:hb_lazy_loader_t\2c\20hb_face_t\2c\2025u\2c\20OT::GSUB_accelerator_t>::do_destroy\28OT::GSUB_accelerator_t*\29 +889:hb_buffer_t::sync\28\29 +890:cbrtf +891:__floatsitf +892:WebPSafeCalloc +893:StreamRemainingLengthIsBelow\28SkStream*\2c\20unsigned\20long\29 +894:SkSL::RP::Builder::swizzle\28int\2c\20SkSpan\29 +895:SkSL::Parser::expression\28\29 +896:SkRuntimeEffect::Uniform::sizeInBytes\28\29\20const +897:SkPathIter::next\28\29 +898:SkImageFilter_Base::getChildOutputLayerBounds\28int\2c\20skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +899:SkImageFilter_Base::getChildInputLayerBounds\28int\2c\20skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +900:SkImageFilter_Base::SkImageFilter_Base\28sk_sp\20const*\2c\20int\2c\20std::__2::optional\29 +901:SkGlyph::path\28\29\20const +902:SkDQuad::ptAtT\28double\29\20const +903:SkDLine::exactPoint\28SkDPoint\20const&\29\20const +904:SkDConic::ptAtT\28double\29\20const +905:SkConic::chopIntoQuadsPOW2\28SkPoint*\2c\20int\29\20const +906:SkColorInfo::makeColorType\28SkColorType\29\20const +907:SkColorInfo::makeAlphaType\28SkAlphaType\29\20const +908:SkCanvas::restore\28\29 +909:SkCanvas::drawImage\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +910:SkAAClip::Builder::addRun\28int\2c\20int\2c\20unsigned\20int\2c\20int\29 +911:GrSkSLFP::addChild\28std::__2::unique_ptr>\2c\20bool\29 +912:GrResourceProvider::findResourceByUniqueKey\28skgpu::UniqueKey\20const&\29 +913:GrQuad::MakeFromSkQuad\28SkPoint\20const*\2c\20SkMatrix\20const&\29 +914:GrGpuResource::hasRef\28\29\20const +915:GrGLSLShaderBuilder::appendTextureLookup\28SkString*\2c\20GrResourceHandle\2c\20char\20const*\29\20const +916:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\29 +917:GrFragmentProcessor::cloneAndRegisterAllChildProcessors\28GrFragmentProcessor\20const&\29 +918:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::~SwizzleFragmentProcessor\28\29 +919:GrBackendFormat::GrBackendFormat\28GrBackendFormat\20const&\29 +920:AutoFTAccess::AutoFTAccess\28SkTypeface_FreeType\20const*\29 +921:AlmostPequalUlps\28float\2c\20float\29 +922:AAT::Lookup>::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +923:xyz_almost_equal\28skcms_Matrix3x3\20const&\2c\20skcms_Matrix3x3\20const&\29 +924:void\20AAT::Lookup::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +925:std::__2::pair>*\20std::__2::vector>\2c\20std::__2::allocator>>>::__emplace_back_slow_path>\28unsigned\20int\20const&\2c\20sk_sp&&\29 +926:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20char\29\20const +927:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:ne180100\5d<0>\28char\20const*\29 +928:snprintf +929:skia_png_reset_crc +930:skia_png_benign_error +931:skgpu::ganesh::SurfaceContext::drawingManager\28\29 +932:skcms_TransferFunction_invert +933:skcms_TransferFunction_getType +934:icu_74::UnicodeString::operator=\28icu_74::UnicodeString\20const&\29 +935:icu_74::UnicodeString::doReplace\28int\2c\20int\2c\20char16_t\20const*\2c\20int\2c\20int\29 +936:icu_74::UnicodeString::UnicodeString\28signed\20char\2c\20icu_74::ConstChar16Ptr\2c\20int\29 +937:icu_74::UVector::adoptElement\28void*\2c\20UErrorCode&\29 +938:icu_74::MlBreakEngine::initKeyValue\28UResourceBundle*\2c\20char\20const*\2c\20char\20const*\2c\20icu_74::Hashtable&\2c\20UErrorCode&\29 +939:icu_74::ByteSinkUtil::appendUnchanged\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::ByteSink&\2c\20unsigned\20int\2c\20icu_74::Edits*\2c\20UErrorCode&\29 +940:hb_buffer_t::sync_so_far\28\29 +941:hb_buffer_t::move_to\28unsigned\20int\29 +942:VP8ExitCritical +943:SkTDStorage::resize\28int\29 +944:SkStrokeRec::SkStrokeRec\28SkPaint\20const&\2c\20float\29 +945:SkStream::readPackedUInt\28unsigned\20long*\29 +946:SkSL::Type::coercionCost\28SkSL::Type\20const&\29\20const +947:SkSL::Type::clone\28SkSL::Context\20const&\2c\20SkSL::SymbolTable*\29\20const +948:SkSL::RP::Generator::writeStatement\28SkSL::Statement\20const&\29 +949:SkSL::Parser::operatorRight\28SkSL::Parser::AutoDepth&\2c\20SkSL::OperatorKind\2c\20std::__2::unique_ptr>\20\28SkSL::Parser::*\29\28\29\2c\20std::__2::unique_ptr>&\29 +950:SkRuntimeEffectBuilder::writableUniformData\28\29 +951:SkRuntimeEffect::findUniform\28std::__2::basic_string_view>\29\20const +952:SkRegion::Cliperator::next\28\29 +953:SkRegion::Cliperator::Cliperator\28SkRegion\20const&\2c\20SkIRect\20const&\29 +954:SkReadBuffer::skip\28unsigned\20long\29 +955:SkReadBuffer::readFlattenable\28SkFlattenable::Type\29 +956:SkRRect::setOval\28SkRect\20const&\29 +957:SkRRect::initializeRect\28SkRect\20const&\29 +958:SkRGBA4f<\28SkAlphaType\293>::toSkColor\28\29\20const +959:SkPaint::operator=\28SkPaint&&\29 +960:SkImageFilter_Base::getFlattenableType\28\29\20const +961:SkConic::computeQuadPOW2\28float\29\20const +962:SkCanvas::translate\28float\2c\20float\29 +963:SkCanvas::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +964:SkAAClip::quickContains\28int\2c\20int\2c\20int\2c\20int\29\20const +965:OT::hb_ot_apply_context_t::hb_ot_apply_context_t\28unsigned\20int\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +966:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\29 +967:GrOpFlushState::caps\28\29\20const +968:GrGeometryProcessor::ProgramImpl::WriteLocalCoord\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20GrShaderVar\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +969:GrGLTextureParameters::SamplerOverriddenState::SamplerOverriddenState\28\29 +970:GrGLGpu::deleteFramebuffer\28unsigned\20int\29 +971:GrDrawOpAtlas::~GrDrawOpAtlas\28\29 +972:FT_Get_Module +973:Cr_z__tr_flush_block +974:AlmostBequalUlps\28float\2c\20float\29 +975:utext_previous32_74 +976:ures_getByKeyWithFallback_74 +977:std::__2::pair::type\2c\20std::__2::__unwrap_ref_decay::type>\20std::__2::make_pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +978:std::__2::numpunct::truename\5babi:nn180100\5d\28\29\20const +979:std::__2::moneypunct::do_grouping\28\29\20const +980:std::__2::locale::use_facet\28std::__2::locale::id&\29\20const +981:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29\20const +982:std::__2::char_traits::copy\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +983:std::__2::basic_string\2c\20std::__2::allocator>::empty\5babi:nn180100\5d\28\29\20const +984:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_cap\5babi:nn180100\5d\28unsigned\20long\29 +985:sktext::gpu::BagOfBytes::needMoreBytes\28int\2c\20int\29 +986:skia_png_save_int_32 +987:skia_png_safecat +988:skia_png_gamma_significant +989:skgpu::ganesh::SurfaceContext::readPixels\28GrDirectContext*\2c\20GrPixmap\2c\20SkIPoint\29 +990:llroundf +991:icu_74::UnicodeString::setTo\28signed\20char\2c\20icu_74::ConstChar16Ptr\2c\20int\29 +992:icu_74::UnicodeString::getBuffer\28int\29 +993:icu_74::UnicodeString::doAppend\28icu_74::UnicodeString\20const&\2c\20int\2c\20int\29 +994:icu_74::UVector32::~UVector32\28\29 +995:icu_74::RuleBasedBreakIterator::handleNext\28\29 +996:icu_74::Locale::Locale\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +997:hb_font_get_nominal_glyph +998:hb_buffer_t::clear_output\28\29 +999:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28SkPaint\20const&\29\2c\20SkCanvas*\2c\20SkPaint*\29 +1000:emscripten::internal::FunctionInvoker::invoke\28unsigned\20long\20\28**\29\28GrDirectContext&\29\2c\20GrDirectContext*\29 +1001:cff_parse_num +1002:\28anonymous\20namespace\29::write_trc_tag\28skcms_Curve\20const&\29 +1003:T_CString_toLowerCase_74 +1004:SkTSect::SkTSect\28SkTCurve\20const&\29 +1005:SkString::set\28char\20const*\2c\20unsigned\20long\29 +1006:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Context\20const&\2c\20SkSL::Symbol*\29 +1007:SkSL::Swizzle::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29 +1008:SkSL::String::Separator\28\29::Output::~Output\28\29 +1009:SkSL::Parser::layoutInt\28\29 +1010:SkSL::Parser::expectIdentifier\28SkSL::Token*\29 +1011:SkSL::Expression::description\28\29\20const +1012:SkResourceCache::Key::init\28void*\2c\20unsigned\20long\20long\2c\20unsigned\20long\29 +1013:SkNoDestructor::SkNoDestructor\28SkSL::String::Separator\28\29::Output&&\29 +1014:SkMatrix::isSimilarity\28float\29\20const +1015:SkMasks::getAlpha\28unsigned\20int\29\20const +1016:SkImageFilters::Crop\28SkRect\20const&\2c\20SkTileMode\2c\20sk_sp\29 +1017:SkImageFilter_Base::getChildOutput\28int\2c\20skif::Context\20const&\29\20const +1018:SkIDChangeListener::List::List\28\29 +1019:SkData::MakeFromMalloc\28void\20const*\2c\20unsigned\20long\29 +1020:SkDRect::setBounds\28SkTCurve\20const&\29 +1021:SkColorSpace::MakeRGB\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +1022:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +1023:SafeDecodeSymbol +1024:PS_Conv_ToFixed +1025:GrTriangulator::Line::intersect\28GrTriangulator::Line\20const&\2c\20SkPoint*\29\20const +1026:GrSimpleMeshDrawOpHelper::isCompatible\28GrSimpleMeshDrawOpHelper\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +1027:GrOpsRenderPass::bindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +1028:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkISize\20const&\29 +1029:GrGLSLShaderBuilder::appendTextureLookup\28GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +1030:GrColorInfo::GrColorInfo\28SkColorInfo\20const&\29 +1031:FT_Stream_Read +1032:FT_Activate_Size +1033:AlmostDequalUlps\28double\2c\20double\29 +1034:796 +1035:797 +1036:798 +1037:utrace_exit_74 +1038:utrace_entry_74 +1039:ures_getNextResource_74 +1040:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\29 +1041:tt_face_get_name +1042:strrchr +1043:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Module\20const*\29 +1044:std::__2::to_string\28long\20long\29 +1045:std::__2::__libcpp_locale_guard::~__libcpp_locale_guard\5babi:nn180100\5d\28\29 +1046:std::__2::__libcpp_locale_guard::__libcpp_locale_guard\5babi:nn180100\5d\28__locale_struct*&\29 +1047:skif::FilterResult::~FilterResult\28\29 +1048:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +1049:skia_png_app_error +1050:skgpu::ganesh::SurfaceFillContext::getOpsTask\28\29 +1051:log2f +1052:llround +1053:icu_74::UnicodeString::doIndexOf\28char16_t\2c\20int\2c\20int\29\20const +1054:hb_ot_layout_lookup_would_substitute +1055:getenv +1056:ft_module_get_service +1057:classify\28skcms_TransferFunction\20const&\2c\20TF_PQish*\2c\20TF_HLGish*\29 +1058:__sindf +1059:__shlim +1060:__cosdf +1061:\28anonymous\20namespace\29::init_resb_result\28UResourceDataEntry*\2c\20unsigned\20int\2c\20char\20const*\2c\20int\2c\20UResourceDataEntry*\2c\20char\20const*\2c\20int\2c\20UResourceBundle*\2c\20UErrorCode*\29 +1062:SkTiff::ImageFileDirectory::getEntryValuesGeneric\28unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20int\2c\20void*\29\20const +1063:SkTDStorage::removeShuffle\28int\29 +1064:SkSurface::getCanvas\28\29 +1065:SkSL::cast_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +1066:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitType\28SkSL::Type\20const&\29 +1067:SkSL::Variable::initialValue\28\29\20const +1068:SkSL::SymbolTable::addArrayDimension\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20int\29 +1069:SkSL::StringStream::str\28\29\20const +1070:SkSL::RP::Program::appendCopy\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20std::byte*\2c\20SkSL::RP::ProgramOp\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29\20const +1071:SkSL::RP::Generator::makeLValue\28SkSL::Expression\20const&\2c\20bool\29 +1072:SkSL::GLSLCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +1073:SkSL::Analysis::UpdateVariableRefKind\28SkSL::Expression*\2c\20SkSL::VariableRefKind\2c\20SkSL::ErrorReporter*\29 +1074:SkRegion::setEmpty\28\29 +1075:SkRasterPipeline::run\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +1076:SkRasterPipeline::appendLoadDst\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +1077:SkRRect::setRectRadii\28SkRect\20const&\2c\20SkPoint\20const*\29 +1078:SkPointPriv::DistanceToLineSegmentBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +1079:SkPictureRecorder::~SkPictureRecorder\28\29 +1080:SkPath::isConvex\28\29\20const +1081:SkPath::conicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\29 +1082:SkPaint::setImageFilter\28sk_sp\29 +1083:SkOpSpanBase::contains\28SkOpSegment\20const*\29\20const +1084:SkOpContourBuilder::flush\28\29 +1085:SkMipmap::ComputeLevelCount\28int\2c\20int\29 +1086:SkMatrix::reset\28\29 +1087:SkMatrix::preTranslate\28float\2c\20float\29 +1088:SkMatrix::preScale\28float\2c\20float\29 +1089:SkMatrix::mapPointsToHomogeneous\28SkSpan\2c\20SkSpan\29\20const +1090:SkMask::computeImageSize\28\29\20const +1091:SkKnownRuntimeEffects::GetKnownRuntimeEffect\28SkKnownRuntimeEffects::StableKey\29 +1092:SkIDChangeListener::List::~List\28\29 +1093:SkIDChangeListener::List::changed\28\29 +1094:SkColorTypeIsAlwaysOpaque\28SkColorType\29 +1095:SkColorSpace::Equals\28SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +1096:SkColorFilter::filterColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\2c\20SkColorSpace*\29\20const +1097:SkCodec::applyColorXform\28void*\2c\20void\20const*\2c\20int\29\20const +1098:SkBitmapCache::Rec::getKey\28\29\20const +1099:SkBitmap::peekPixels\28SkPixmap*\29\20const +1100:SkAutoPixmapStorage::SkAutoPixmapStorage\28\29 +1101:RunBasedAdditiveBlitter::flush\28\29 +1102:GrSurface::onRelease\28\29 +1103:GrStyledShape::unstyledKeySize\28\29\20const +1104:GrShape::convex\28bool\29\20const +1105:GrRenderTargetProxy::arenas\28\29 +1106:GrRecordingContext::threadSafeCache\28\29 +1107:GrProxyProvider::caps\28\29\20const +1108:GrOp::GrOp\28unsigned\20int\29 +1109:GrMakeUncachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +1110:GrGLSLShaderBuilder::getMangledFunctionName\28char\20const*\29 +1111:GrGLSLProgramBuilder::nameVariable\28char\2c\20char\20const*\2c\20bool\29 +1112:GrGLGpu::bindBuffer\28GrGpuBufferType\2c\20GrBuffer\20const*\29 +1113:GrGLAttribArrayState::set\28GrGLGpu*\2c\20int\2c\20GrBuffer\20const*\2c\20GrVertexAttribType\2c\20SkSLType\2c\20int\2c\20unsigned\20long\2c\20int\29 +1114:GrAAConvexTessellator::Ring::computeNormals\28GrAAConvexTessellator\20const&\29 +1115:GrAAConvexTessellator::Ring::computeBisectors\28GrAAConvexTessellator\20const&\29 +1116:Cr_z_adler32 +1117:vsnprintf +1118:uprv_toupper_74 +1119:ucptrie_getRange_74 +1120:u_strchr_74 +1121:top12 +1122:toSkImageInfo\28SimpleImageInfo\20const&\29 +1123:std::__2::vector>::__destroy_vector::__destroy_vector\5babi:nn180100\5d\28std::__2::vector>&\29 +1124:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +1125:std::__2::__tree\2c\20std::__2::__map_value_compare\2c\20std::__2::less\2c\20true>\2c\20std::__2::allocator>>::destroy\28std::__2::__tree_node\2c\20void*>*\29 +1126:std::__2::__num_put_base::__identify_padding\28char*\2c\20char*\2c\20std::__2::ios_base\20const&\29 +1127:std::__2::__num_get_base::__get_base\28std::__2::ios_base&\29 +1128:std::__2::__libcpp_asprintf_l\28char**\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +1129:skia_private::THashTable::Traits>::removeSlot\28int\29 +1130:skia_png_zstream_error +1131:skia::textlayout::TextLine::iterateThroughVisualRuns\28bool\2c\20std::__2::function\2c\20float*\29>\20const&\29\20const +1132:skia::textlayout::ParagraphImpl::cluster\28unsigned\20long\29 +1133:skia::textlayout::Cluster::runOrNull\28\29\20const +1134:skgpu::ganesh::SurfaceFillContext::replaceOpsTask\28\29 +1135:res_getStringNoTrace_74 +1136:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1137:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1138:icu_74::UnicodeString::unBogus\28\29 +1139:icu_74::UnicodeSetStringSpan::~UnicodeSetStringSpan\28\29 +1140:icu_74::SimpleFilteredSentenceBreakIterator::operator==\28icu_74::BreakIterator\20const&\29\20const +1141:icu_74::Locale::init\28char\20const*\2c\20signed\20char\29 +1142:icu_74::Edits::addUnchanged\28int\29 +1143:hb_serialize_context_t::pop_pack\28bool\29 +1144:hb_sanitize_context_t::return_t\20OT::Paint::dispatch\28hb_sanitize_context_t*\29\20const +1145:hb_buffer_reverse +1146:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1147:atan2f +1148:afm_parser_read_vals +1149:__extenddftf2 +1150:\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1151:\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1152:\28anonymous\20namespace\29::colrv1_transform\28FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\2c\20SkCanvas*\2c\20SkMatrix*\29 +1153:WebPRescalerImport +1154:SkString::Rec::Make\28char\20const*\2c\20unsigned\20long\29::$_0::operator\28\29\28\29\20const +1155:SkStrike::digestFor\28skglyph::ActionType\2c\20SkPackedGlyphID\29 +1156:SkStream::readS16\28short*\29 +1157:SkSL::compile_and_shrink\28SkSL::Compiler*\2c\20SkSL::ProgramKind\2c\20SkSL::ModuleType\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::Module\20const*\29 +1158:SkSL::VariableReference::VariableReference\28SkSL::Position\2c\20SkSL::Variable\20const*\2c\20SkSL::VariableRefKind\29 +1159:SkSL::SymbolTable::lookup\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +1160:SkSL::ProgramUsage::get\28SkSL::Variable\20const&\29\20const +1161:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29 +1162:SkSL::InlineCandidateAnalyzer::visitExpression\28std::__2::unique_ptr>*\29 +1163:SkSL::GetModuleData\28SkSL::ModuleType\2c\20char\20const*\29 +1164:SkSL::GLSLCodeGenerator::write\28std::__2::basic_string_view>\29 +1165:SkSL::GLSLCodeGenerator::getTypePrecision\28SkSL::Type\20const&\29 +1166:SkReadBuffer::readByteArray\28void*\2c\20unsigned\20long\29 +1167:SkRBuffer::read\28void*\2c\20unsigned\20long\29 +1168:SkPictureData::optionalPaint\28SkReadBuffer*\29\20const +1169:SkPath::getGenerationID\28\29\20const +1170:SkPaint::setStrokeWidth\28float\29 +1171:SkOpSegment::nextChase\28SkOpSpanBase**\2c\20int*\2c\20SkOpSpan**\2c\20SkOpSpanBase**\29\20const +1172:SkMemoryStream::Make\28sk_sp\29 +1173:SkMatrix::postScale\28float\2c\20float\29 +1174:SkIntersections::removeOne\28int\29 +1175:SkDLine::ptAtT\28double\29\20const +1176:SkBlockMemoryStream::getLength\28\29\20const +1177:SkBitmap::getAddr\28int\2c\20int\29\20const +1178:SkAAClip::setEmpty\28\29 +1179:PS_Conv_Strtol +1180:OT::Layout::GSUB_impl::SubstLookup*\20hb_serialize_context_t::push\28\29 +1181:OT::CmapSubtable::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +1182:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +1183:GrTriangulator::makeConnectingEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\2c\20int\29 +1184:GrTextureProxy::~GrTextureProxy\28\29 +1185:GrSimpleMeshDrawOpHelper::createProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +1186:GrResourceAllocator::addInterval\28GrSurfaceProxy*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20GrResourceAllocator::ActualUse\2c\20GrResourceAllocator::AllowRecycling\29 +1187:GrRecordingContextPriv::makeSFCWithFallback\28GrImageInfo\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1188:GrGpuResource::hasNoCommandBufferUsages\28\29\20const +1189:GrGpuBuffer::updateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +1190:GrGLTextureParameters::NonsamplerState::NonsamplerState\28\29 +1191:GrGLSLShaderBuilder::~GrGLSLShaderBuilder\28\29 +1192:GrGLGpu::prepareToDraw\28GrPrimitiveType\29 +1193:GrGLFormatFromGLEnum\28unsigned\20int\29 +1194:GrBackendTexture::getBackendFormat\28\29\20const +1195:GrBackendFormats::MakeGL\28unsigned\20int\2c\20unsigned\20int\29 +1196:GrBackendFormatToCompressionType\28GrBackendFormat\20const&\29 +1197:FilterLoop24_C +1198:AAT::Lookup::sanitize\28hb_sanitize_context_t*\29\20const +1199:utext_close_74 +1200:ures_open_74 +1201:ures_getStringByKey_74 +1202:ures_getKey_74 +1203:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +1204:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +1205:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +1206:ulocimp_getLanguage_74\28char\20const*\2c\20char\20const**\2c\20UErrorCode&\29 +1207:uhash_puti_74 +1208:u_terminateChars_74 +1209:std::__2::vector>::size\5babi:nn180100\5d\28\29\20const +1210:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +1211:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\20const*\2c\20char\20const*\29\20const +1212:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::AddTrianglesWhenChopping\2c\20skgpu::tess::DiscardFlatCurves>::writeTriangleStack\28skgpu::tess::MiddleOutPolygonTriangulator::PoppedTriangleStack&&\29 +1213:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +1214:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20char\20const*\29 +1215:std::__2::basic_string\2c\20std::__2::allocator>::__get_long_cap\5babi:nn180100\5d\28\29\20const +1216:skia_private::THashTable::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +1217:skia_png_write_finish_row +1218:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29 +1219:skcms_GetTagBySignature +1220:sk_doubles_nearly_equal_ulps\28double\2c\20double\2c\20unsigned\20char\29 +1221:scalbn +1222:non-virtual\20thunk\20to\20GrOpFlushState::allocator\28\29 +1223:icu_74::UnicodeSet::applyPattern\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +1224:icu_74::Normalizer2Impl::getFCD16FromNormData\28int\29\20const +1225:icu_74::Locale::Locale\28\29 +1226:icu_74::Edits::addReplace\28int\2c\20int\29 +1227:icu_74::BytesTrie::readValue\28unsigned\20char\20const*\2c\20int\29 +1228:hb_buffer_get_glyph_infos +1229:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1230:get_gsubgpos_table\28hb_face_t*\2c\20unsigned\20int\29 +1231:exp2f +1232:embind_init_Paragraph\28\29::$_5::__invoke\28skia::textlayout::ParagraphBuilderImpl&\29 +1233:cf2_stack_getReal +1234:cf2_hintmap_map +1235:antifilldot8\28int\2c\20int\2c\20int\2c\20int\2c\20SkBlitter*\2c\20bool\29 +1236:afm_stream_skip_spaces +1237:WebPRescalerInit +1238:WebPRescalerExportRow +1239:SkWStream::writeDecAsText\28int\29 +1240:SkTypeface::fontStyle\28\29\20const +1241:SkTextBlobBuilder::allocInternal\28SkFont\20const&\2c\20SkTextBlob::GlyphPositioning\2c\20int\2c\20int\2c\20SkPoint\2c\20SkRect\20const*\29 +1242:SkTDStorage::append\28void\20const*\2c\20int\29 +1243:SkShaders::Color\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\29 +1244:SkShader::makeWithLocalMatrix\28SkMatrix\20const&\29\20const +1245:SkSL::Parser::assignmentExpression\28\29 +1246:SkSL::ConstructorSplat::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1247:SkSL::ConstructorScalarCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1248:SkResourceCache::Find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +1249:SkRegion::SkRegion\28SkIRect\20const&\29 +1250:SkRasterPipeline::appendTransferFunction\28skcms_TransferFunction\20const&\29 +1251:SkRasterPipeline::appendStore\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +1252:SkRRect::checkCornerContainment\28float\2c\20float\29\20const +1253:SkPictureData::getImage\28SkReadBuffer*\29\20const +1254:SkPathPriv::Raw\28SkPath\20const&\29 +1255:SkPathMeasure::getLength\28\29 +1256:SkPathBuilder::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +1257:SkPathBuilder::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +1258:SkPath::quadTo\28float\2c\20float\2c\20float\2c\20float\29 +1259:SkPaint::refPathEffect\28\29\20const +1260:SkOpContour::addLine\28SkPoint*\29 +1261:SkNextID::ImageID\28\29 +1262:SkMipmap::getLevel\28int\2c\20SkMipmap::Level*\29\20const +1263:SkMatrix::ScaleTranslate\28float\2c\20float\2c\20float\2c\20float\29 +1264:SkMD5::bytesWritten\28\29\20const +1265:SkJSONWriter::appendCString\28char\20const*\2c\20char\20const*\29 +1266:SkIntersections::setCoincident\28int\29 +1267:SkImageFilter_Base::flatten\28SkWriteBuffer&\29\20const +1268:SkFont::setSubpixel\28bool\29 +1269:SkDescriptor::operator==\28SkDescriptor\20const&\29\20const +1270:SkDLine::NearPointV\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1271:SkDLine::NearPointH\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1272:SkDLine::ExactPointV\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1273:SkDLine::ExactPointH\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1274:SkConvertPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +1275:SkColorSpaceXformSteps::apply\28SkRasterPipeline*\29\20const +1276:SkCanvas::imageInfo\28\29\20const +1277:SkCanvas::drawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +1278:SkCanvas::drawColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +1279:SkBulkGlyphMetrics::~SkBulkGlyphMetrics\28\29 +1280:SkBulkGlyphMetrics::SkBulkGlyphMetrics\28SkStrikeSpec\20const&\29 +1281:SkBlockAllocator::releaseBlock\28SkBlockAllocator::Block*\29 +1282:SkAAClipBlitterWrapper::init\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1283:SkAAClipBlitterWrapper::SkAAClipBlitterWrapper\28\29 +1284:SkAAClipBlitterWrapper::SkAAClipBlitterWrapper\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1285:OT::MVAR::get_var\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29\20const +1286:GrXferProcessor::GrXferProcessor\28GrProcessor::ClassID\2c\20bool\2c\20GrProcessorAnalysisCoverage\29 +1287:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20GrCaps\20const&\2c\20float\20const*\29 +1288:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\29 +1289:GrSimpleMeshDrawOpHelper::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20bool*\29 +1290:GrShape::operator=\28GrShape\20const&\29 +1291:GrRecordingContext::OwnedArenas::get\28\29 +1292:GrProxyProvider::createProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\29 +1293:GrProxyProvider::assignUniqueKeyToProxy\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\29 +1294:GrProcessorSet::finalize\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrCaps\20const&\2c\20GrClampType\2c\20SkRGBA4f<\28SkAlphaType\292>*\29 +1295:GrOp::cutChain\28\29 +1296:GrMeshDrawTarget::makeVertexWriter\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +1297:GrGpuResource::GrGpuResource\28GrGpu*\2c\20std::__2::basic_string_view>\29 +1298:GrGeometryProcessor::TextureSampler::reset\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +1299:GrGeometryProcessor::AttributeSet::Iter::operator++\28\29 +1300:GrGeometryProcessor::AttributeSet::Iter::operator*\28\29\20const +1301:GrGLTextureParameters::set\28GrGLTextureParameters::SamplerOverriddenState\20const*\2c\20GrGLTextureParameters::NonsamplerState\20const&\2c\20unsigned\20long\20long\29 +1302:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29 +1303:GrBackendTexture::~GrBackendTexture\28\29 +1304:FT_Outline_Get_CBox +1305:FT_Get_Sfnt_Table +1306:AutoLayerForImageFilter::AutoLayerForImageFilter\28AutoLayerForImageFilter&&\29 +1307:utf8_prevCharSafeBody_74 +1308:ures_getString_74 +1309:ulocimp_getScript_74\28char\20const*\2c\20char\20const**\2c\20UErrorCode&\29 +1310:uhash_open_74 +1311:u_UCharsToChars_74 +1312:tanf +1313:std::__2::moneypunct::negative_sign\5babi:nn180100\5d\28\29\20const +1314:std::__2::moneypunct::do_pos_format\28\29\20const +1315:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +1316:std::__2::char_traits::copy\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20unsigned\20long\29 +1317:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1318:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1319:std::__2::basic_string\2c\20std::__2::allocator>::__set_size\5babi:nn180100\5d\28unsigned\20long\29 +1320:std::__2::basic_string\2c\20std::__2::allocator>::__get_short_size\5babi:nn180100\5d\28\29\20const +1321:std::__2::basic_string\2c\20std::__2::allocator>::__assign_external\28char\20const*\2c\20unsigned\20long\29 +1322:std::__2::__unwrap_iter_impl\2c\20true>::__unwrap\5babi:nn180100\5d\28std::__2::__wrap_iter\29 +1323:std::__2::__itoa::__append2\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +1324:sktext::SkStrikePromise::SkStrikePromise\28sktext::SkStrikePromise&&\29 +1325:skif::LayerSpace::ceil\28\29\20const +1326:skif::FilterResult::analyzeBounds\28SkMatrix\20const&\2c\20SkIRect\20const&\2c\20skif::FilterResult::BoundsScope\29\20const +1327:skia_private::THashMap::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +1328:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +1329:skia_png_read_finish_row +1330:skia_png_handle_unknown +1331:skia_png_gamma_correct +1332:skia_png_colorspace_sync +1333:skia_png_app_warning +1334:skia::textlayout::TextStyle::operator=\28skia::textlayout::TextStyle\20const&\29 +1335:skia::textlayout::TextLine::offset\28\29\20const +1336:skia::textlayout::Run::placeholderStyle\28\29\20const +1337:skgpu::ganesh::SurfaceFillContext::fillRectWithFP\28SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +1338:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20std::__2::basic_string_view>\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1339:skgpu::ganesh::SurfaceContext::PixelTransferResult::~PixelTransferResult\28\29 +1340:skgpu::ganesh::ClipStack::SaveRecord::state\28\29\20const +1341:skcpu::Draw::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkRect\20const*\29\20const +1342:ps_parser_to_token +1343:icu_74::UnicodeString::moveIndex32\28int\2c\20int\29\20const +1344:icu_74::UnicodeString::cloneArrayIfNeeded\28int\2c\20int\2c\20signed\20char\2c\20int**\2c\20signed\20char\29 +1345:icu_74::UnicodeSet::span\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +1346:icu_74::UVector::indexOf\28void*\2c\20int\29\20const +1347:icu_74::UVector::addElement\28void*\2c\20UErrorCode&\29 +1348:icu_74::UVector32::UVector32\28UErrorCode&\29 +1349:icu_74::RuleCharacterIterator::next\28int\2c\20signed\20char&\2c\20UErrorCode&\29 +1350:icu_74::ReorderingBuffer::appendBMP\28char16_t\2c\20unsigned\20char\2c\20UErrorCode&\29 +1351:icu_74::LSR::deleteOwned\28\29 +1352:icu_74::ICUServiceKey::prefix\28icu_74::UnicodeString&\29\20const +1353:icu_74::CharString::appendInvariantChars\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +1354:icu_74::CharString::appendInvariantChars\28char16_t\20const*\2c\20int\2c\20UErrorCode&\29 +1355:icu_74::BreakIterator::buildInstance\28icu_74::Locale\20const&\2c\20char\20const*\2c\20UErrorCode&\29 +1356:hb_face_t::load_upem\28\29\20const +1357:hb_buffer_t::merge_out_clusters\28unsigned\20int\2c\20unsigned\20int\29 +1358:hb_buffer_t::enlarge\28unsigned\20int\29 +1359:hb_buffer_destroy +1360:emscripten_builtin_calloc +1361:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20SkCanvas::PointMode\2c\20unsigned\20long\2c\20int\2c\20SkPaint&\29\2c\20SkCanvas*\2c\20SkCanvas::PointMode\2c\20unsigned\20long\2c\20int\2c\20SkPaint*\29 +1362:cff_index_init +1363:cf2_glyphpath_curveTo +1364:bool\20std::__2::operator!=\5babi:nn180100\5d\28std::__2::__wrap_iter\20const&\2c\20std::__2::__wrap_iter\20const&\29 +1365:__isspace +1366:WebPCopyPlane +1367:SkWStream::writeScalarAsText\28float\29 +1368:SkTextBlobBuilder::TightRunBounds\28SkTextBlob::RunRecord\20const&\29 +1369:SkTMaskGamma_build_correcting_lut\28unsigned\20char*\2c\20unsigned\20int\2c\20float\2c\20SkColorSpaceLuminance\20const&\2c\20float\29 +1370:SkSurfaces::RenderTarget\28GrRecordingContext*\2c\20skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20int\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const*\2c\20bool\2c\20bool\29 +1371:SkSurface_Raster::type\28\29\20const +1372:SkSurface::makeImageSnapshot\28\29 +1373:SkString::swap\28SkString&\29 +1374:SkString::reset\28\29 +1375:SkString::SkString\28char\20const*\2c\20unsigned\20long\29 +1376:SkSampler::Fill\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::ZeroInitialized\29 +1377:SkSL::Type::MakeTextureType\28char\20const*\2c\20SpvDim_\2c\20bool\2c\20bool\2c\20bool\2c\20SkSL::Type::TextureAccess\29 +1378:SkSL::Type::MakeSpecialType\28char\20const*\2c\20char\20const*\2c\20SkSL::Type::TypeKind\29 +1379:SkSL::RP::Builder::push_slots_or_immutable\28SkSL::RP::SlotRange\2c\20SkSL::RP::BuilderOp\29 +1380:SkSL::RP::Builder::push_clone_from_stack\28SkSL::RP::SlotRange\2c\20int\2c\20int\29 +1381:SkSL::Program::~Program\28\29 +1382:SkSL::PipelineStage::PipelineStageCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +1383:SkSL::Operator::isAssignment\28\29\20const +1384:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mul\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +1385:SkSL::InlineCandidateAnalyzer::visitStatement\28std::__2::unique_ptr>*\2c\20bool\29 +1386:SkSL::GLSLCodeGenerator::writeModifiers\28SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20bool\29 +1387:SkSL::ExpressionStatement::Make\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +1388:SkSL::ConstructorCompound::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +1389:SkSL::Analysis::IsSameExpressionTree\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +1390:SkSL::AliasType::resolve\28\29\20const +1391:SkResourceCache::Add\28SkResourceCache::Rec*\2c\20void*\29 +1392:SkRegion::writeToMemory\28void*\29\20const +1393:SkReadBuffer::readMatrix\28SkMatrix*\29 +1394:SkReadBuffer::readBool\28\29 +1395:SkRasterPipeline::appendConstantColor\28SkArenaAlloc*\2c\20float\20const*\29 +1396:SkRasterClip::SkRasterClip\28\29 +1397:SkRasterClip::SkRasterClip\28SkRasterClip\20const&\29 +1398:SkPathWriter::isClosed\28\29\20const +1399:SkPathMeasure::~SkPathMeasure\28\29 +1400:SkPathMeasure::SkPathMeasure\28SkPath\20const&\2c\20bool\2c\20float\29 +1401:SkPathBuilder::addRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1402:SkPath::makeFillType\28SkPathFillType\29\20const +1403:SkPath::isRect\28SkRect*\2c\20bool*\2c\20SkPathDirection*\29\20const +1404:SkPath::cubicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +1405:SkPath::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1406:SkParse::FindScalars\28char\20const*\2c\20float*\2c\20int\29 +1407:SkPaint::operator=\28SkPaint\20const&\29 +1408:SkOpSpan::computeWindSum\28\29 +1409:SkOpSegment::existing\28double\2c\20SkOpSegment\20const*\29\20const +1410:SkOpSegment::addCurveTo\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkPathWriter*\29\20const +1411:SkOpPtT::find\28SkOpSegment\20const*\29\20const +1412:SkOpCoincidence::addEndMovedSpans\28SkOpSpan\20const*\2c\20SkOpSpanBase\20const*\29 +1413:SkNoDrawCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +1414:SkMemoryStream::SkMemoryStream\28void\20const*\2c\20unsigned\20long\2c\20bool\29 +1415:SkMaskFilterBase::getFlattenableType\28\29\20const +1416:SkMakeImageFromRasterBitmap\28SkBitmap\20const&\2c\20SkCopyPixelsMode\29 +1417:SkImage_Ganesh::SkImage_Ganesh\28sk_sp\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20SkColorInfo\29 +1418:SkImageInfo::makeColorSpace\28sk_sp\29\20const +1419:SkImageInfo::computeOffset\28int\2c\20int\2c\20unsigned\20long\29\20const +1420:SkGlyph::imageSize\28\29\20const +1421:SkGetICULib\28\29 +1422:SkFont::textToGlyphs\28void\20const*\2c\20unsigned\20long\2c\20SkTextEncoding\2c\20SkSpan\29\20const +1423:SkDrawTiler::SkDrawTiler\28SkBitmapDevice*\2c\20SkRect\20const*\29 +1424:SkDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +1425:SkData::MakeZeroInitialized\28unsigned\20long\29 +1426:SkColorSpaceSingletonFactory::Make\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +1427:SkColorFilter::makeComposed\28sk_sp\29\20const +1428:SkCodec::SkCodec\28SkEncodedInfo&&\2c\20skcms_PixelFormat\2c\20std::__2::unique_ptr>\2c\20SkEncodedOrigin\29 +1429:SkChopQuadAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +1430:SkCanvas::drawImageRect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +1431:SkBmpCodec::getDstRow\28int\2c\20int\29\20const +1432:SkBitmap::getGenerationID\28\29\20const +1433:SkAutoDescriptor::SkAutoDescriptor\28\29 +1434:OT::GSUB_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1435:OT::DeltaSetIndexMap::sanitize\28hb_sanitize_context_t*\29\20const +1436:OT::ClassDef::sanitize\28hb_sanitize_context_t*\29\20const +1437:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +1438:GrTriangulator::Comparator::sweep_lt\28SkPoint\20const&\2c\20SkPoint\20const&\29\20const +1439:GrTextureProxy::textureType\28\29\20const +1440:GrSurfaceProxy::createSurfaceImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\29\20const +1441:GrStyledShape::writeUnstyledKey\28unsigned\20int*\29\20const +1442:GrSkSLFP::setInput\28std::__2::unique_ptr>\29 +1443:GrSimpleMeshDrawOpHelperWithStencil::GrSimpleMeshDrawOpHelperWithStencil\28GrProcessorSet*\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +1444:GrResourceProvider::createPatternedIndexBuffer\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\2c\20skgpu::UniqueKey\20const*\29 +1445:GrRenderTarget::~GrRenderTarget\28\29 +1446:GrRecordingContextPriv::makeSC\28GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +1447:GrOpFlushState::detachAppliedClip\28\29 +1448:GrGpuBuffer::map\28\29 +1449:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\29 +1450:GrGLSLShaderBuilder::declAppend\28GrShaderVar\20const&\29 +1451:GrGLGpu::didDrawTo\28GrRenderTarget*\29 +1452:GrFragmentProcessors::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkColorFilter\20const*\2c\20std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +1453:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +1454:GrCaps::validateSurfaceParams\28SkISize\20const&\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20GrTextureType\29\20const +1455:GrBufferAllocPool::putBack\28unsigned\20long\29 +1456:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29::$_0::operator\28\29\28SkIRect\2c\20SkIRect\29\20const +1457:GrBackendTexture::GrBackendTexture\28\29 +1458:GrAAConvexTessellator::createInsetRing\28GrAAConvexTessellator::Ring\20const&\2c\20GrAAConvexTessellator::Ring*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +1459:FT_Stream_GetByte +1460:FT_Set_Transform +1461:FT_Add_Module +1462:AutoLayerForImageFilter::operator=\28AutoLayerForImageFilter&&\29 +1463:AlmostLessOrEqualUlps\28float\2c\20float\29 +1464:ActiveEdge::intersect\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29\20const +1465:wrapper_cmp +1466:void\20std::__2::reverse\5babi:nn180100\5d\28char*\2c\20char*\29 +1467:void\20std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__do_rehash\28unsigned\20long\29 +1468:void\20emscripten::internal::MemberAccess::setWire\28bool\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\2c\20bool\29 +1469:utrace_data_74 +1470:utf8_nextCharSafeBody_74 +1471:utext_setup_74 +1472:uhash_openSize_74 +1473:uhash_nextElement_74 +1474:u_charType_74 +1475:std::__2::vector>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29 +1476:std::__2::vector>::__alloc\5babi:nn180100\5d\28\29 +1477:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ios_base&\2c\20wchar_t\29 +1478:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ios_base&\2c\20char\29 +1479:std::__2::char_traits::to_int_type\5babi:nn180100\5d\28char\29 +1480:std::__2::basic_ios>::~basic_ios\28\29 +1481:std::__2::basic_ios>::setstate\5babi:nn180100\5d\28unsigned\20int\29 +1482:std::__2::__compressed_pair_elem::__compressed_pair_elem\5babi:nn180100\5d\28void\20\28*&&\29\28void*\29\29 +1483:sktext::StrikeMutationMonitor::~StrikeMutationMonitor\28\29 +1484:sktext::StrikeMutationMonitor::StrikeMutationMonitor\28sktext::StrikeForGPU*\29 +1485:skif::LayerSpace::contains\28skif::LayerSpace\20const&\29\20const +1486:skif::FilterResult::resolve\28skif::Context\20const&\2c\20skif::LayerSpace\2c\20bool\29\20const +1487:skif::FilterResult::AutoSurface::snap\28\29 +1488:skif::FilterResult::AutoSurface::AutoSurface\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult::PixelBoundary\2c\20bool\2c\20SkSurfaceProps\20const*\29 +1489:skif::Backend::~Backend\28\29_2361 +1490:skia_private::TArray::push_back\28skif::FilterResult::Builder::SampledFilterResult&&\29 +1491:skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>::~STArray\28\29 +1492:skia_png_chunk_unknown_handling +1493:skia::textlayout::TextStyle::TextStyle\28\29 +1494:skia::textlayout::TextLine::iterateThroughSingleRunByStyles\28skia::textlayout::TextLine::TextAdjustment\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::StyleType\2c\20std::__2::function\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\20const&\29\20const +1495:skgpu::ganesh::\28anonymous\20namespace\29::update_degenerate_test\28skgpu::ganesh::\28anonymous\20namespace\29::DegenerateTestData*\2c\20SkPoint\20const&\29 +1496:skgpu::ganesh::SurfaceFillContext::internalClear\28SkIRect\20const*\2c\20std::__2::array\2c\20bool\29 +1497:skgpu::ganesh::SurfaceDrawContext::fillRectToRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +1498:skgpu::ganesh::SurfaceDrawContext::drawRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const*\29 +1499:skgpu::SkSLToBackend\28SkSL::ShaderCaps\20const*\2c\20bool\20\28*\29\28SkSL::Program&\2c\20SkSL::ShaderCaps\20const*\2c\20SkSL::NativeShader*\29\2c\20char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::NativeShader*\2c\20SkSL::ProgramInterface*\2c\20skgpu::ShaderErrorHandler*\29 +1500:skgpu::GetApproxSize\28SkISize\29 +1501:skcms_Transform::$_2::operator\28\29\28skcms_Curve\20const*\2c\20int\29\20const +1502:skcms_Matrix3x3_invert +1503:res_getTableItemByKey_74 +1504:read_curve\28unsigned\20char\20const*\2c\20unsigned\20int\2c\20skcms_Curve*\2c\20unsigned\20int*\29 +1505:powf +1506:icu_74::UnicodeString::operator=\28icu_74::UnicodeString&&\29 +1507:icu_74::UnicodeString::doEquals\28icu_74::UnicodeString\20const&\2c\20int\29\20const +1508:icu_74::UnicodeSet::ensureCapacity\28int\29 +1509:icu_74::UVector::UVector\28void\20\28*\29\28void*\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +1510:icu_74::UVector32::setElementAt\28int\2c\20int\29 +1511:icu_74::RuleCharacterIterator::setPos\28icu_74::RuleCharacterIterator::Pos\20const&\29 +1512:icu_74::ResourceTable::findValue\28char\20const*\2c\20icu_74::ResourceValue&\29\20const +1513:icu_74::Locale::operator=\28icu_74::Locale\20const&\29 +1514:icu_74::CharString::extract\28char*\2c\20int\2c\20UErrorCode&\29\20const +1515:hb_lazy_loader_t\2c\20hb_face_t\2c\2024u\2c\20OT::GDEF_accelerator_t>::do_destroy\28OT::GDEF_accelerator_t*\29 +1516:hb_buffer_set_flags +1517:hb_buffer_append +1518:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1519:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1520:hb_bit_set_t::add_range\28unsigned\20int\2c\20unsigned\20int\29 +1521:emscripten::internal::MethodInvoker\29\2c\20void\2c\20SkFont*\2c\20sk_sp>::invoke\28void\20\28SkFont::*\20const&\29\28sk_sp\29\2c\20SkFont*\2c\20sk_sp*\29 +1522:emscripten::internal::Invoker::invoke\28unsigned\20long\20\28*\29\28\29\29 +1523:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +1524:cos +1525:char*\20std::__2::__rewrap_iter\5babi:nn180100\5d>\28char*\2c\20char*\29 +1526:cf2_glyphpath_lineTo +1527:bool\20emscripten::internal::MemberAccess::getWire\28bool\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\29 +1528:alloc_small +1529:af_latin_hints_compute_segments +1530:_hb_glyph_info_set_unicode_props\28hb_glyph_info_t*\2c\20hb_buffer_t*\29 +1531:__wasi_syscall_ret +1532:__lshrti3 +1533:__letf2 +1534:__cxx_global_array_dtor_5174 +1535:\28anonymous\20namespace\29::SkBlurImageFilter::~SkBlurImageFilter\28\29 +1536:WebPDemuxGetI +1537:SkUTF::ToUTF16\28int\2c\20unsigned\20short*\29 +1538:SkTextBlobBuilder::~SkTextBlobBuilder\28\29 +1539:SkTextBlobBuilder::ConservativeRunBounds\28SkTextBlob::RunRecord\20const&\29 +1540:SkSynchronizedResourceCache::SkSynchronizedResourceCache\28unsigned\20long\29 +1541:SkSwizzler::swizzle\28void*\2c\20unsigned\20char\20const*\29 +1542:SkString::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +1543:SkString::insertUnichar\28unsigned\20long\2c\20int\29 +1544:SkStrikeSpec::findOrCreateScopedStrike\28sktext::StrikeForGPUCacheInterface*\29\20const +1545:SkStrikeCache::GlobalStrikeCache\28\29 +1546:SkShader::isAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +1547:SkSL::is_constant_value\28SkSL::Expression\20const&\2c\20double\29 +1548:SkSL::evaluate_pairwise_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +1549:SkSL::\28anonymous\20namespace\29::ReturnsOnAllPathsVisitor::visitStatement\28SkSL::Statement\20const&\29 +1550:SkSL::Type::MakeScalarType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type::NumberKind\2c\20signed\20char\2c\20signed\20char\29 +1551:SkSL::RP::Generator::pushBinaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +1552:SkSL::RP::Builder::push_clone\28int\2c\20int\29 +1553:SkSL::ProgramUsage::remove\28SkSL::Statement\20const*\29 +1554:SkSL::Parser::statement\28bool\29 +1555:SkSL::Operator::determineBinaryType\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\29\20const +1556:SkSL::ModifierFlags::description\28\29\20const +1557:SkSL::Layout::paddedDescription\28\29\20const +1558:SkSL::FieldAccess::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20int\2c\20SkSL::FieldAccessOwnerKind\29 +1559:SkSL::ConstructorCompoundCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1560:SkSL::Compiler::~Compiler\28\29 +1561:SkRuntimeEffect::findChild\28std::__2::basic_string_view>\29\20const +1562:SkResourceCache::remove\28SkResourceCache::Rec*\29 +1563:SkRectPriv::Subtract\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkIRect*\29 +1564:SkRasterClip::translate\28int\2c\20int\2c\20SkRasterClip*\29\20const +1565:SkRasterClip::setRect\28SkIRect\20const&\29 +1566:SkRasterClip::op\28SkIRect\20const&\2c\20SkClipOp\29 +1567:SkRRect::transform\28SkMatrix\20const&\29\20const +1568:SkPixmap::extractSubset\28SkPixmap*\2c\20SkIRect\20const&\29\20const +1569:SkPictureRecorder::SkPictureRecorder\28\29 +1570:SkPictureData::~SkPictureData\28\29 +1571:SkPathRef::CreateEmpty\28\29 +1572:SkPathRawShapes::Oval::Oval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1573:SkPathMeasure::nextContour\28\29 +1574:SkPathMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29 +1575:SkPathBuilder::incReserve\28int\2c\20int\2c\20int\29 +1576:SkPathBuilder::addRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1577:SkPath::moveTo\28float\2c\20float\29 +1578:SkPath::getPoint\28int\29\20const +1579:SkPath::addRaw\28SkPathRaw\20const&\29 +1580:SkPath::Polygon\28SkSpan\2c\20bool\2c\20SkPathFillType\2c\20bool\29 +1581:SkPaint::setBlender\28sk_sp\29 +1582:SkPaint::setAlphaf\28float\29 +1583:SkPaint::nothingToDraw\28\29\20const +1584:SkOpSegment::addT\28double\29 +1585:SkNoPixelsDevice::ClipState&\20skia_private::TArray::emplace_back\28SkIRect&&\2c\20bool&&\2c\20bool&&\29 +1586:SkImages::RasterFromBitmap\28SkBitmap\20const&\29 +1587:SkImage_Lazy::generator\28\29\20const +1588:SkImage_Base::~SkImage_Base\28\29 +1589:SkImage_Base::SkImage_Base\28SkImageInfo\20const&\2c\20unsigned\20int\29 +1590:SkImageInfo::Make\28SkISize\2c\20SkColorType\2c\20SkAlphaType\2c\20sk_sp\29 +1591:SkImage::refColorSpace\28\29\20const +1592:SkFont::setHinting\28SkFontHinting\29 +1593:SkFont::getWidthsBounds\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkPaint\20const*\29\20const +1594:SkFont::getMetrics\28SkFontMetrics*\29\20const +1595:SkFont::SkFont\28sk_sp\2c\20float\29 +1596:SkFont::SkFont\28\29 +1597:SkEmptyFontStyleSet::createTypeface\28int\29 +1598:SkDevice::setGlobalCTM\28SkM44\20const&\29 +1599:SkDevice::accessPixels\28SkPixmap*\29 +1600:SkConic::chopAt\28float\2c\20SkConic*\29\20const +1601:SkColorTypeBytesPerPixel\28SkColorType\29 +1602:SkColorFilter::asAColorMode\28unsigned\20int*\2c\20SkBlendMode*\29\20const +1603:SkCodec::fillIncompleteImage\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::ZeroInitialized\2c\20int\2c\20int\29 +1604:SkCanvas::saveLayer\28SkRect\20const*\2c\20SkPaint\20const*\29 +1605:SkCanvas::drawPaint\28SkPaint\20const&\29 +1606:SkCanvas::aboutToDraw\28SkPaint\20const&\2c\20SkRect\20const*\2c\20SkEnumBitMask\29 +1607:SkBulkGlyphMetrics::glyphs\28SkSpan\29 +1608:SkBitmap::operator=\28SkBitmap&&\29 +1609:SkBinaryWriteBuffer::writeByteArray\28void\20const*\2c\20unsigned\20long\29 +1610:SkArenaAllocWithReset::reset\28\29 +1611:OT::hb_ot_apply_context_t::_set_glyph_class\28unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +1612:OT::cmap::find_subtable\28unsigned\20int\2c\20unsigned\20int\29\20const +1613:OT::Layout::GPOS_impl::AnchorFormat3::sanitize\28hb_sanitize_context_t*\29\20const +1614:OT::GDEF_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1615:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +1616:GrTriangulator::Edge::disconnect\28\29 +1617:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\2c\20bool\29 +1618:GrSurfaceProxyView::mipmapped\28\29\20const +1619:GrSurfaceProxy::instantiateImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::UniqueKey\20const*\29 +1620:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +1621:GrSimpleMeshDrawOpHelperWithStencil::isCompatible\28GrSimpleMeshDrawOpHelperWithStencil\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +1622:GrSimpleMeshDrawOpHelperWithStencil::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20bool*\29 +1623:GrShape::simplifyRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20unsigned\20int\29 +1624:GrQuad::projectedBounds\28\29\20const +1625:GrProcessorSet::MakeEmptySet\28\29 +1626:GrPorterDuffXPFactory::SimpleSrcOverXP\28\29 +1627:GrPixmap::Allocate\28GrImageInfo\20const&\29 +1628:GrPathTessellationShader::MakeSimpleTriangleShader\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +1629:GrImageInfo::operator=\28GrImageInfo&&\29 +1630:GrImageInfo::makeColorType\28GrColorType\29\20const +1631:GrGpuResource::setUniqueKey\28skgpu::UniqueKey\20const&\29 +1632:GrGpuResource::release\28\29 +1633:GrGeometryProcessor::textureSampler\28int\29\20const +1634:GrGeometryProcessor::AttributeSet::end\28\29\20const +1635:GrGeometryProcessor::AttributeSet::begin\28\29\20const +1636:GrGLSLShaderBuilder::addFeature\28unsigned\20int\2c\20char\20const*\29 +1637:GrGLGpu::clearErrorsAndCheckForOOM\28\29 +1638:GrGLGpu::bindSurfaceFBOForPixelOps\28GrSurface*\2c\20int\2c\20unsigned\20int\2c\20GrGLGpu::TempFBOTarget\29 +1639:GrGLCompileAndAttachShader\28GrGLContext\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkSL::NativeShader\20const&\2c\20bool\2c\20GrThreadSafePipelineBuilder::Stats*\2c\20skgpu::ShaderErrorHandler*\29 +1640:GrDirectContextPriv::flushSurfaces\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +1641:GrDefaultGeoProcFactory::Make\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +1642:GrConvertPixels\28GrPixmap\20const&\2c\20GrCPixmap\20const&\2c\20bool\29 +1643:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +1644:GrColorInfo::GrColorInfo\28\29 +1645:GrBlurUtils::convolve_gaussian_1d\28skgpu::ganesh::SurfaceFillContext*\2c\20GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\2c\20SkIRect\20const&\2c\20SkAlphaType\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\29 +1646:GrBackendFormat::operator=\28GrBackendFormat\20const&\29 +1647:FT_GlyphLoader_Rewind +1648:FT_Done_Face +1649:Cr_z_inflate +1650:void\20std::__2::__stable_sort\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +1651:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\29 +1652:void\20icu_74::\28anonymous\20namespace\29::MixedBlocks::extend\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\29 +1653:utext_nativeLength_74 +1654:ures_openDirect_74 +1655:ures_getStringWithAlias\28UResourceBundle\20const*\2c\20unsigned\20int\2c\20int\2c\20int*\2c\20UErrorCode*\29 +1656:ures_getStringByKeyWithFallback_74 +1657:ulocimp_getKeywordValue_74 +1658:ulocimp_getCountry_74\28char\20const*\2c\20char\20const**\2c\20UErrorCode&\29 +1659:ulocimp_forLanguageTag_74 +1660:uenum_close_74 +1661:udata_getMemory_74 +1662:ucptrie_openFromBinary_74 +1663:u_charsToUChars_74 +1664:toupper +1665:top12_17380 +1666:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1667:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1668:std::__2::ctype::narrow\5babi:nn180100\5d\28char\2c\20char\29\20const +1669:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28wchar_t\20const*\29 +1670:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1671:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>&&\29 +1672:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1673:std::__2::basic_streambuf>::~basic_streambuf\28\29 +1674:std::__2::__num_get::__stage2_int_loop\28wchar_t\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20wchar_t\20const*\29 +1675:std::__2::__num_get::__stage2_int_loop\28char\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20char\20const*\29 +1676:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1677:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1678:src_p\28unsigned\20char\2c\20unsigned\20char\29 +1679:skif::RoundOut\28SkRect\29 +1680:skif::FilterResult::subset\28skif::LayerSpace\20const&\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +1681:skif::FilterResult::operator=\28skif::FilterResult&&\29 +1682:skia_private::THashMap::operator\5b\5d\28SkSL::Variable\20const*\20const&\29 +1683:skia_private::TArray::resize_back\28int\29 +1684:skia_private::TArray::push_back_raw\28int\29 +1685:skia_png_sig_cmp +1686:skia_png_set_longjmp_fn +1687:skia_png_get_valid +1688:skia_png_gamma_8bit_correct +1689:skia_png_free_data +1690:skia_png_destroy_read_struct +1691:skia_png_chunk_warning +1692:skia::textlayout::operator==\28skia::textlayout::FontArguments\20const&\2c\20skia::textlayout::FontArguments\20const&\29 +1693:skia::textlayout::TextLine::measureTextInsideOneRun\28skia::textlayout::SkRange\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20float\2c\20bool\2c\20skia::textlayout::TextLine::TextAdjustment\29\20const +1694:skia::textlayout::Run::positionX\28unsigned\20long\29\20const +1695:skia::textlayout::Run::Run\28skia::textlayout::ParagraphImpl*\2c\20SkShaper::RunHandler::RunInfo\20const&\2c\20unsigned\20long\2c\20float\2c\20bool\2c\20float\2c\20unsigned\20long\2c\20float\29 +1696:skia::textlayout::ParagraphCacheKey::operator==\28skia::textlayout::ParagraphCacheKey\20const&\29\20const +1697:skia::textlayout::FontCollection::enableFontFallback\28\29 +1698:skia::textlayout::FontArguments::FontArguments\28skia::textlayout::FontArguments\20const&\29 +1699:skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::chopAndWriteCubics\28skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20int\29 +1700:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::vertexSize\28\29\20const +1701:skgpu::ganesh::Device::readSurfaceView\28\29 +1702:skgpu::ganesh::ClipStack::clip\28skgpu::ganesh::ClipStack::RawElement&&\29 +1703:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::RawElement\20const&\29\20const +1704:skgpu::Swizzle::asString\28\29\20const +1705:skgpu::ScratchKey::GenerateResourceType\28\29 +1706:skgpu::GetBlendFormula\28bool\2c\20bool\2c\20SkBlendMode\29 +1707:skcpu::Recorder::TODO\28\29 +1708:sbrk +1709:ps_tofixedarray +1710:processPropertySeq\28UBiDi*\2c\20LevState*\2c\20unsigned\20char\2c\20int\2c\20int\29 +1711:png_format_buffer +1712:png_check_keyword +1713:nextafterf +1714:jpeg_huff_decode +1715:init_entry\28char\20const*\2c\20char\20const*\2c\20UErrorCode*\29 +1716:icu_74::UnicodeString::countChar32\28int\2c\20int\29\20const +1717:icu_74::UnicodeString::UnicodeString\28char\20const*\2c\20int\2c\20icu_74::UnicodeString::EInvariant\29 +1718:icu_74::UnicodeSet::setToBogus\28\29 +1719:icu_74::UnicodeSet::clear\28\29 +1720:icu_74::UVector::UVector\28void\20\28*\29\28void*\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20int\2c\20UErrorCode&\29 +1721:icu_74::UVector32::addElement\28int\2c\20UErrorCode&\29 +1722:icu_74::UVector32::UVector32\28int\2c\20UErrorCode&\29 +1723:icu_74::UCharsTrie::next\28int\29 +1724:icu_74::UCharsTrie::branchNext\28char16_t\20const*\2c\20int\2c\20int\29 +1725:icu_74::StackUResourceBundle::StackUResourceBundle\28\29 +1726:icu_74::ReorderingBuffer::appendSupplementary\28int\2c\20unsigned\20char\2c\20UErrorCode&\29 +1727:icu_74::Norm2AllModes::createNFCInstance\28UErrorCode&\29 +1728:icu_74::LanguageBreakEngine::LanguageBreakEngine\28\29 +1729:icu_74::LSR::LSR\28char\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20int\2c\20UErrorCode&\29 +1730:icu_74::CharacterProperties::getInclusionsForProperty\28UProperty\2c\20UErrorCode&\29 +1731:icu_74::CharString::ensureCapacity\28int\2c\20int\2c\20UErrorCode&\29 +1732:hb_vector_t::push\28\29 +1733:hb_unicode_funcs_destroy +1734:hb_serialize_context_t::pop_discard\28\29 +1735:hb_lazy_loader_t\2c\20hb_face_t\2c\205u\2c\20OT::hmtx_accelerator_t>::do_destroy\28OT::hmtx_accelerator_t*\29 +1736:hb_lazy_loader_t\2c\20hb_face_t\2c\2028u\2c\20AAT::morx_accelerator_t>::do_destroy\28AAT::morx_accelerator_t*\29 +1737:hb_lazy_loader_t\2c\20hb_face_t\2c\2030u\2c\20AAT::kerx_accelerator_t>::do_destroy\28AAT::kerx_accelerator_t*\29 +1738:hb_glyf_scratch_t::~hb_glyf_scratch_t\28\29 +1739:hb_font_t::get_glyph_h_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +1740:hb_font_t::changed\28\29 +1741:hb_buffer_t::next_glyph\28\29 +1742:hb_blob_create_sub_blob +1743:hairquad\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +1744:fmt_u +1745:flush_pending +1746:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\29\2c\20SkPath*\29 +1747:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28SkFont&\29\2c\20SkFont*\29 +1748:do_fixed +1749:destroy_face +1750:decltype\28fp\28\28SkRecords::NoOp*\29\28nullptr\29\29\29\20SkRecord::Record::mutate\28SkRecord::Destroyer&\29 +1751:char*\20const&\20std::__2::max\5babi:nn180100\5d\28char*\20const&\2c\20char*\20const&\29 +1752:cf2_stack_pushInt +1753:cf2_interpT2CharString +1754:cf2_glyphpath_moveTo +1755:_isVariantSubtag\28char\20const*\2c\20int\29 +1756:_hb_ot_metrics_get_position_common\28hb_font_t*\2c\20hb_ot_metrics_tag_t\2c\20int*\29 +1757:_getStringOrCopyKey\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +1758:__tandf +1759:__syscall_ret +1760:__floatunsitf +1761:__cxa_allocate_exception +1762:\28anonymous\20namespace\29::PathGeoBuilder::createMeshAndPutBackReserve\28\29 +1763:\28anonymous\20namespace\29::MeshOp::fixedFunctionFlags\28\29\20const +1764:\28anonymous\20namespace\29::DrawAtlasOpImpl::fixedFunctionFlags\28\29\20const +1765:VP8LDoFillBitWindow +1766:VP8LClear +1767:TT_Get_MM_Var +1768:SkWStream::writeScalar\28float\29 +1769:SkUTF::UTF8ToUTF16\28unsigned\20short*\2c\20int\2c\20char\20const*\2c\20unsigned\20long\29 +1770:SkTypeface::isFixedPitch\28\29\20const +1771:SkTypeface::MakeEmpty\28\29 +1772:SkTSect::BinarySearch\28SkTSect*\2c\20SkTSect*\2c\20SkIntersections*\29 +1773:SkTConic::operator\5b\5d\28int\29\20const +1774:SkTBlockList::reset\28\29 +1775:SkTBlockList::reset\28\29 +1776:SkString::insertU32\28unsigned\20long\2c\20unsigned\20int\29 +1777:SkShaders::MatrixRec::applyForFragmentProcessor\28SkMatrix\20const&\29\20const +1778:SkShaders::MatrixRec::MatrixRec\28SkMatrix\20const&\29 +1779:SkScan::FillRect\28SkRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +1780:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +1781:SkSL::optimize_comparison\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20bool\20\28*\29\28double\2c\20double\29\29 +1782:SkSL::coalesce_n_way_vector\28SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +1783:SkSL::Type::convertArraySize\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20long\20long\29\20const +1784:SkSL::String::appendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20...\29 +1785:SkSL::RP::Generator::returnComplexity\28SkSL::FunctionDefinition\20const*\29 +1786:SkSL::RP::Builder::dot_floats\28int\29 +1787:SkSL::ProgramUsage::get\28SkSL::FunctionDeclaration\20const&\29\20const +1788:SkSL::Parser::type\28SkSL::Modifiers*\29 +1789:SkSL::Parser::modifiers\28\29 +1790:SkSL::ConstructorDiagonalMatrix::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1791:SkSL::ConstructorArrayCast::~ConstructorArrayCast\28\29 +1792:SkSL::ConstantFolder::MakeConstantValueForVariable\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +1793:SkSL::Compiler::Compiler\28\29 +1794:SkSL::Analysis::IsTrivialExpression\28SkSL::Expression\20const&\29 +1795:SkRuntimeEffectPriv::CanDraw\28SkCapabilities\20const*\2c\20SkRuntimeEffect\20const*\29 +1796:SkRuntimeEffectBuilder::makeShader\28SkMatrix\20const*\29\20const +1797:SkRegion::setPath\28SkPath\20const&\2c\20SkRegion\20const&\29 +1798:SkRegion::operator=\28SkRegion\20const&\29 +1799:SkRegion::op\28SkRegion\20const&\2c\20SkRegion\20const&\2c\20SkRegion::Op\29 +1800:SkRegion::Iterator::next\28\29 +1801:SkRect\20skif::Mapping::map\28SkRect\20const&\2c\20SkMatrix\20const&\29 +1802:SkRasterPipeline::compile\28\29\20const +1803:SkRasterPipeline::appendClampIfNormalized\28SkImageInfo\20const&\29 +1804:SkRasterClip::SkRasterClip\28SkIRect\20const&\29 +1805:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20SkBBHFactory*\29 +1806:SkPathWriter::finishContour\28\29 +1807:SkPathStroker::cubicPerpRay\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +1808:SkPathBuilder::reset\28\29 +1809:SkPathBuilder::addRaw\28SkPathRaw\20const&\29 +1810:SkPath::reset\28\29 +1811:SkPaintPriv::ComputeLuminanceColor\28SkPaint\20const&\29 +1812:SkPaint::isSrcOver\28\29\20const +1813:SkOpAngle::linesOnOriginalSide\28SkOpAngle\20const*\29 +1814:SkNotifyBitmapGenIDIsStale\28unsigned\20int\29 +1815:SkMipmap::Build\28SkPixmap\20const&\2c\20SkDiscardableMemory*\20\28*\29\28unsigned\20long\29\2c\20bool\29 +1816:SkMeshSpecification::~SkMeshSpecification\28\29 +1817:SkMatrix::setRSXform\28SkRSXform\20const&\29 +1818:SkMatrix::mapHomogeneousPoints\28SkSpan\2c\20SkSpan\29\20const +1819:SkMatrix::decomposeScale\28SkSize*\2c\20SkMatrix*\29\20const +1820:SkMaskBuilder::AllocImage\28unsigned\20long\2c\20SkMaskBuilder::AllocType\29 +1821:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29 +1822:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_2D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +1823:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_1D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +1824:SkIntersections::insertNear\28double\2c\20double\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29 +1825:SkIntersections::flip\28\29 +1826:SkImageFilters::Empty\28\29 +1827:SkImageFilter_Base::~SkImageFilter_Base\28\29 +1828:SkImage::isAlphaOnly\28\29\20const +1829:SkGlyph::drawable\28\29\20const +1830:SkFont::unicharToGlyph\28int\29\20const +1831:SkFont::setTypeface\28sk_sp\29 +1832:SkFont::setEdging\28SkFont::Edging\29 +1833:SkFindQuadMaxCurvature\28SkPoint\20const*\29 +1834:SkEvalCubicAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29 +1835:SkDCubic::FindExtrema\28double\20const*\2c\20double*\29 +1836:SkCodec::getPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const*\29 +1837:SkChopCubicAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +1838:SkCanvas::internalRestore\28\29 +1839:SkCanvas::getLocalToDevice\28\29\20const +1840:SkCanvas::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +1841:SkCanvas::ImageSetEntry::~ImageSetEntry\28\29 +1842:SkBlendMode_AsCoeff\28SkBlendMode\2c\20SkBlendModeCoeff*\2c\20SkBlendModeCoeff*\29 +1843:SkBlendMode\20SkReadBuffer::read32LE\28SkBlendMode\29 +1844:SkBitmap::operator=\28SkBitmap\20const&\29 +1845:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29 +1846:SkAutoPixmapStorage::tryAlloc\28SkImageInfo\20const&\29 +1847:SkAAClip::SkAAClip\28\29 +1848:Read255UShort +1849:OT::cff1::accelerator_templ_t>::_fini\28\29 +1850:OT::Layout::GPOS_impl::ValueFormat::sanitize_value_devices\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\29\20const +1851:OT::Layout::GPOS_impl::ValueFormat::apply_value\28OT::hb_ot_apply_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\2c\20hb_glyph_position_t&\29\20const +1852:OT::ItemVariationStore::sanitize\28hb_sanitize_context_t*\29\20const +1853:OT::HVARVVAR::sanitize\28hb_sanitize_context_t*\29\20const +1854:GrTriangulator::VertexList::insert\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\29 +1855:GrTriangulator::Poly::addEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Side\2c\20GrTriangulator*\29 +1856:GrTriangulator::EdgeList::remove\28GrTriangulator::Edge*\29 +1857:GrStyledShape::simplify\28\29 +1858:GrStyledShape::operator=\28GrStyledShape\20const&\29 +1859:GrSimpleMeshDrawOpHelperWithStencil::createProgramInfoWithStencil\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +1860:GrRenderTask::addDependency\28GrDrawingManager*\2c\20GrSurfaceProxy*\2c\20skgpu::Mipmapped\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +1861:GrRenderTask::GrRenderTask\28\29 +1862:GrRenderTarget::onRelease\28\29 +1863:GrProxyProvider::findOrCreateProxyByUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxy::UseAllocator\29 +1864:GrProcessorSet::operator==\28GrProcessorSet\20const&\29\20const +1865:GrPathUtils::generateQuadraticPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +1866:GrMeshDrawOp::QuadHelper::QuadHelper\28GrMeshDrawTarget*\2c\20unsigned\20long\2c\20int\29 +1867:GrMakeCachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\29 +1868:GrIsStrokeHairlineOrEquivalent\28GrStyle\20const&\2c\20SkMatrix\20const&\2c\20float*\29 +1869:GrImageContext::abandoned\28\29 +1870:GrGpuResource::registerWithCache\28skgpu::Budgeted\29 +1871:GrGpuBuffer::isMapped\28\29\20const +1872:GrGpu::didWriteToSurface\28GrSurface*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const*\2c\20unsigned\20int\29\20const +1873:GrGeometryProcessor::ProgramImpl::setupUniformColor\28GrGLSLFPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20GrResourceHandle*\29 +1874:GrGLGpu::flushRenderTarget\28GrGLRenderTarget*\2c\20bool\29 +1875:GrFragmentProcessor::visitTextureEffects\28std::__2::function\20const&\29\20const +1876:GrFragmentProcessor::visitProxies\28std::__2::function\20const&\29\20const +1877:GrFragmentProcessor::MakeColor\28SkRGBA4f<\28SkAlphaType\292>\29 +1878:GrBufferAllocPool::makeSpace\28unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\29 +1879:GrBackendTextures::GetGLTextureInfo\28GrBackendTexture\20const&\2c\20GrGLTextureInfo*\29 +1880:FilterLoop26_C +1881:FT_Vector_Transform +1882:FT_Vector_NormLen +1883:FT_Outline_Transform +1884:CFF::dict_opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +1885:AlmostBetweenUlps\28float\2c\20float\2c\20float\29 +1886:1648 +1887:1649 +1888:1650 +1889:void\20hb_buffer_t::collect_codepoints\28hb_bit_set_t&\29\20const +1890:void\20extend_pts<\28SkPaint::Cap\292>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +1891:void\20extend_pts<\28SkPaint::Cap\291>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +1892:void\20AAT::Lookup>::collect_glyphs_filtered\28hb_bit_set_t&\2c\20unsigned\20int\2c\20hb_bit_page_t\20const&\29\20const +1893:utext_openUChars_74 +1894:utext_char32At_74 +1895:ures_openWithType\28UResourceBundle*\2c\20char\20const*\2c\20char\20const*\2c\20UResOpenType\2c\20UErrorCode*\29 +1896:ures_getSize_74 +1897:udata_openChoice_74 +1898:ucptrie_internalSmallU8Index_74 +1899:ucptrie_get_74 +1900:ubidi_getMemory_74 +1901:ubidi_getClass_74 +1902:transform\28unsigned\20int*\2c\20unsigned\20char\20const*\29 +1903:toUpperOrTitle\28int\2c\20int\20\28*\29\28void*\2c\20signed\20char\29\2c\20void*\2c\20char16_t\20const**\2c\20int\2c\20signed\20char\29 +1904:strtoul +1905:strtod +1906:strcspn +1907:std::__2::locale::locale\28std::__2::locale\20const&\29 +1908:std::__2::locale::classic\28\29 +1909:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char*\2c\20char*\2c\20char*&\29\20const +1910:std::__2::chrono::__libcpp_steady_clock_now\28\29 +1911:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28char\20const*\29 +1912:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20char\20const*\29 +1913:std::__2::basic_streambuf>::setg\5babi:nn180100\5d\28char*\2c\20char*\2c\20char*\29 +1914:std::__2::__wrap_iter\20std::__2::vector>::__insert_with_size\5babi:ne180100\5d\28std::__2::__wrap_iter\2c\20float\20const*\2c\20float\20const*\2c\20long\29 +1915:std::__2::__throw_bad_variant_access\5babi:ne180100\5d\28\29 +1916:std::__2::__split_buffer>::push_front\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +1917:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20wchar_t&\29 +1918:std::__2::__num_get::__do_widen\28std::__2::ios_base&\2c\20wchar_t*\29\20const +1919:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20char&\29 +1920:std::__2::__itoa::__append1\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +1921:sktext::gpu::GlyphVector::~GlyphVector\28\29 +1922:skif::LayerSpace::round\28\29\20const +1923:skif::LayerSpace::inverseMapRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29\20const +1924:skif::FilterResult::applyTransform\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkSamplingOptions\20const&\29\20const +1925:skif::FilterResult::Builder::~Builder\28\29 +1926:skif::FilterResult::Builder::Builder\28skif::Context\20const&\29 +1927:skia_private::THashTable::Traits>::resize\28int\29 +1928:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +1929:skia_private::TArray::resize_back\28int\29 +1930:skia_png_set_progressive_read_fn +1931:skia_png_set_interlace_handling +1932:skia_png_reciprocal +1933:skia_png_read_chunk_header +1934:skia_png_get_io_ptr +1935:skia_png_calloc +1936:skia::textlayout::TextLine::~TextLine\28\29 +1937:skia::textlayout::ParagraphStyle::ParagraphStyle\28skia::textlayout::ParagraphStyle\20const&\29 +1938:skia::textlayout::ParagraphCacheKey::~ParagraphCacheKey\28\29 +1939:skia::textlayout::OneLineShaper::RunBlock*\20std::__2::vector>::__emplace_back_slow_path\28skia::textlayout::OneLineShaper::RunBlock&\29 +1940:skia::textlayout::FontCollection::findTypefaces\28std::__2::vector>\20const&\2c\20SkFontStyle\2c\20std::__2::optional\20const&\29 +1941:skia::textlayout::Cluster::trimmedWidth\28unsigned\20long\29\20const +1942:skgpu::ganesh::TextureOp::BatchSizeLimiter::createOp\28GrTextureSetEntry*\2c\20int\2c\20GrAAType\29 +1943:skgpu::ganesh::SurfaceFillContext::fillWithFP\28std::__2::unique_ptr>\29 +1944:skgpu::ganesh::SurfaceDrawContext::drawShape\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\29 +1945:skgpu::ganesh::SurfaceDrawContext::drawShapeUsingPathRenderer\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\2c\20bool\29 +1946:skgpu::ganesh::SurfaceDrawContext::drawRRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20GrStyle\20const&\29 +1947:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29 +1948:skgpu::ganesh::SmallPathAtlasMgr::reset\28\29 +1949:skgpu::ganesh::QuadPerEdgeAA::CalcIndexBufferOption\28GrAAType\2c\20int\29 +1950:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29::$_0::operator\28\29\28GrSurfaceProxyView\20const&\29\20const +1951:skgpu::ganesh::Device::targetProxy\28\29 +1952:skgpu::ganesh::ClipStack::getConservativeBounds\28\29\20const +1953:skgpu::ganesh::ClipStack::RawElement::RawElement\28SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\2c\20SkClipOp\29 +1954:skgpu::TAsyncReadResult::addTransferResult\28skgpu::ganesh::SurfaceContext::PixelTransferResult\20const&\2c\20SkISize\2c\20unsigned\20long\2c\20skgpu::TClientMappedBufferManager*\29 +1955:skgpu::Swizzle::apply\28SkRasterPipeline*\29\20const +1956:skgpu::Plot::resetRects\28bool\29 +1957:res_getTableItemByIndex_74 +1958:res_getArrayItem_74 +1959:ps_dimension_add_t1stem +1960:log +1961:jcopy_sample_rows +1962:icu_74::initSingletons\28char\20const*\2c\20UErrorCode&\29 +1963:icu_74::\28anonymous\20namespace\29::AliasReplacer::replaceLanguage\28bool\2c\20bool\2c\20bool\2c\20icu_74::UVector&\2c\20UErrorCode&\29 +1964:icu_74::UnicodeString::doReplace\28int\2c\20int\2c\20icu_74::UnicodeString\20const&\2c\20int\2c\20int\29 +1965:icu_74::UnicodeString::append\28int\29 +1966:icu_74::UnicodeSetStringSpan::UnicodeSetStringSpan\28icu_74::UnicodeSet\20const&\2c\20icu_74::UVector\20const&\2c\20unsigned\20int\29 +1967:icu_74::UnicodeSet::spanUTF8\28char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +1968:icu_74::UnicodeSet::spanBack\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +1969:icu_74::UnicodeSet::spanBackUTF8\28char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +1970:icu_74::UnicodeSet::operator=\28icu_74::UnicodeSet\20const&\29 +1971:icu_74::UnicodeSet::getRangeStart\28int\29\20const +1972:icu_74::UnicodeSet::getRangeEnd\28int\29\20const +1973:icu_74::UnicodeSet::getRangeCount\28\29\20const +1974:icu_74::UVector32::setSize\28int\29 +1975:icu_74::UCharsTrieBuilder::write\28char16_t\20const*\2c\20int\29 +1976:icu_74::StringEnumeration::~StringEnumeration\28\29 +1977:icu_74::RuleCharacterIterator::getPos\28icu_74::RuleCharacterIterator::Pos&\29\20const +1978:icu_74::RuleBasedBreakIterator::BreakCache::populatePreceding\28UErrorCode&\29 +1979:icu_74::ResourceDataValue::~ResourceDataValue\28\29 +1980:icu_74::ReorderingBuffer::previousCC\28\29 +1981:icu_74::Normalizer2Impl::compose\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20signed\20char\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +1982:icu_74::Normalizer2Factory::getNFCImpl\28UErrorCode&\29 +1983:icu_74::LocaleUtility::initLocaleFromName\28icu_74::UnicodeString\20const&\2c\20icu_74::Locale&\29 +1984:icu_74::LocaleKeyFactory::~LocaleKeyFactory\28\29 +1985:icu_74::Locale::setToBogus\28\29 +1986:icu_74::LSR::indexForRegion\28char\20const*\29 +1987:icu_74::LSR::LSR\28icu_74::StringPiece\2c\20icu_74::StringPiece\2c\20icu_74::StringPiece\2c\20int\2c\20UErrorCode&\29 +1988:icu_74::BreakIterator::createInstance\28icu_74::Locale\20const&\2c\20int\2c\20UErrorCode&\29 +1989:hb_lazy_loader_t\2c\20hb_face_t\2c\2015u\2c\20OT::glyf_accelerator_t>::do_destroy\28OT::glyf_accelerator_t*\29 +1990:hb_font_t::has_func\28unsigned\20int\29 +1991:hb_buffer_create_similar +1992:hb_bit_set_t::intersects\28hb_bit_set_t\20const&\29\20const +1993:ft_service_list_lookup +1994:fseek +1995:fflush +1996:expm1 +1997:emscripten::internal::MethodInvoker::invoke\28void\20\28GrDirectContext::*\20const&\29\28\29\2c\20GrDirectContext*\29 +1998:emscripten::internal::Invoker>::invoke\28sk_sp\20\28*\29\28\29\29 +1999:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +2000:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkCanvas\20const&\2c\20unsigned\20long\29\2c\20SkCanvas*\2c\20unsigned\20long\29 +2001:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker\2c\20float&>\28float&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2002:crc32_z +2003:char*\20sktext::gpu::BagOfBytes::allocateBytesFor\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +2004:cf2_hintmap_insertHint +2005:cf2_hintmap_build +2006:cf2_glyphpath_pushPrevElem +2007:bool\20std::__2::__less::operator\28\29\5babi:nn180100\5d\28unsigned\20int\20const&\2c\20unsigned\20long\20const&\29\20const +2008:blit_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +2009:afm_stream_read_one +2010:af_shaper_get_cluster +2011:af_latin_hints_link_segments +2012:af_latin_compute_stem_width +2013:af_glyph_hints_reload +2014:acosf +2015:__sin +2016:__cos +2017:\28anonymous\20namespace\29::PathSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +2018:\28anonymous\20namespace\29::PathGeoBuilder::allocNewBuffers\28\29 +2019:WebPDemuxDelete +2020:VP8LHuffmanTablesDeallocate +2021:UDataMemory_createNewInstance_74 +2022:SkWriter32::writeSampling\28SkSamplingOptions\20const&\29 +2023:SkVertices::Builder::detach\28\29 +2024:SkUTF::NextUTF8WithReplacement\28char\20const**\2c\20char\20const*\29 +2025:SkTypeface_FreeType::~SkTypeface_FreeType\28\29 +2026:SkTypeface_FreeType::FaceRec::~FaceRec\28\29 +2027:SkTypeface::SkTypeface\28SkFontStyle\20const&\2c\20bool\29 +2028:SkTextBlob::RunRecord::textSizePtr\28\29\20const +2029:SkTMultiMap::remove\28skgpu::ScratchKey\20const&\2c\20GrGpuResource\20const*\29 +2030:SkTMultiMap::insert\28skgpu::ScratchKey\20const&\2c\20GrGpuResource*\29 +2031:SkTDStorage::insert\28int\2c\20int\2c\20void\20const*\29 +2032:SkTDPQueue<\28anonymous\20namespace\29::RunIteratorQueue::Entry\2c\20&\28anonymous\20namespace\29::RunIteratorQueue::CompareEntry\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\2c\20\28int*\20\28*\29\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\290>::insert\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\29 +2033:SkSwizzler::Make\28SkEncodedInfo\20const&\2c\20unsigned\20int\20const*\2c\20SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20SkIRect\20const*\29 +2034:SkSurface_Base::~SkSurface_Base\28\29 +2035:SkString::resize\28unsigned\20long\29 +2036:SkStrikeSpec::SkStrikeSpec\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +2037:SkStrikeSpec::MakeMask\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +2038:SkStrikeSpec::MakeCanonicalized\28SkFont\20const&\2c\20SkPaint\20const*\29 +2039:SkStrikeCache::findOrCreateStrike\28SkStrikeSpec\20const&\29 +2040:SkStrike::unlock\28\29 +2041:SkStrike::lock\28\29 +2042:SkShaders::MatrixRec::apply\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +2043:SkShaders::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +2044:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\29 +2045:SkScalerContext_FreeType::emboldenIfNeeded\28FT_FaceRec_*\2c\20FT_GlyphSlotRec_*\2c\20unsigned\20short\29 +2046:SkSafeMath::Add\28unsigned\20long\2c\20unsigned\20long\29 +2047:SkSL::Type::displayName\28\29\20const +2048:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20double\2c\20SkSL::Position\29\20const +2049:SkSL::RP::SlotManager::addSlotDebugInfoForGroup\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20int*\2c\20bool\29 +2050:SkSL::RP::Generator::foldComparisonOp\28SkSL::Operator\2c\20int\29 +2051:SkSL::RP::Builder::branch_if_no_lanes_active\28int\29 +2052:SkSL::PrefixExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +2053:SkSL::Parser::parseArrayDimensions\28SkSL::Position\2c\20SkSL::Type\20const**\29 +2054:SkSL::Parser::arraySize\28long\20long*\29 +2055:SkSL::Operator::operatorName\28\29\20const +2056:SkSL::ModifierFlags::paddedDescription\28\29\20const +2057:SkSL::ExpressionArray::clone\28\29\20const +2058:SkSL::ConstantFolder::GetConstantValue\28SkSL::Expression\20const&\2c\20double*\29 +2059:SkSL::ConstantFolder::GetConstantInt\28SkSL::Expression\20const&\2c\20long\20long*\29 +2060:SkSL::Compiler::convertProgram\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::ProgramSettings\20const&\29 +2061:SkRegion::op\28SkRegion\20const&\2c\20SkIRect\20const&\2c\20SkRegion::Op\29 +2062:SkRegion::Iterator::Iterator\28SkRegion\20const&\29 +2063:SkRectPriv::ClosestDisjointEdge\28SkIRect\20const&\2c\20SkIRect\20const&\29 +2064:SkRecords::FillBounds::bounds\28SkRecords::DrawArc\20const&\29\20const +2065:SkReadBuffer::setMemory\28void\20const*\2c\20unsigned\20long\29 +2066:SkRRect::writeToMemory\28void*\29\20const +2067:SkRRect::setRectXY\28SkRect\20const&\2c\20float\2c\20float\29 +2068:SkPointPriv::DistanceToLineBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPointPriv::Side*\29 +2069:SkPoint::setNormalize\28float\2c\20float\29 +2070:SkPngCodecBase::~SkPngCodecBase\28\29 +2071:SkPixmapUtils::SwapWidthHeight\28SkImageInfo\20const&\29 +2072:SkPixmap::setColorSpace\28sk_sp\29 +2073:SkPictureRecorder::finishRecordingAsPicture\28\29 +2074:SkPathRawShapes::Rect::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +2075:SkPathBuilder::getLastPt\28\29\20const +2076:SkPathBuilder::SkPathBuilder\28SkPathFillType\29 +2077:SkPath::isLine\28SkPoint*\29\20const +2078:SkPath::getSegmentMasks\28\29\20const +2079:SkPath::Iter::next\28SkPoint*\29 +2080:SkPaint::setStrokeCap\28SkPaint::Cap\29 +2081:SkPaint::refShader\28\29\20const +2082:SkOpSpan::setWindSum\28int\29 +2083:SkOpSegment::markDone\28SkOpSpan*\29 +2084:SkOpSegment::markAndChaseWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int\2c\20int\2c\20SkOpSpanBase**\29 +2085:SkOpContourBuilder::addCurve\28SkPath::Verb\2c\20SkPoint\20const*\2c\20float\29 +2086:SkOpAngle::starter\28\29 +2087:SkOpAngle::insert\28SkOpAngle*\29 +2088:SkNoDrawCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +2089:SkMatrixPriv::InverseMapRect\28SkMatrix\20const&\2c\20SkRect*\2c\20SkRect\20const&\29 +2090:SkMatrix::setSinCos\28float\2c\20float\29 +2091:SkMatrix::setRotate\28float\29 +2092:SkMatrix::preservesRightAngles\28float\29\20const +2093:SkMaskFilter::MakeBlur\28SkBlurStyle\2c\20float\2c\20bool\29 +2094:SkMD5::write\28void\20const*\2c\20unsigned\20long\29 +2095:SkLineClipper::IntersectLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\29 +2096:SkImage_GaneshBase::SkImage_GaneshBase\28sk_sp\2c\20SkImageInfo\2c\20unsigned\20int\29 +2097:SkImageGenerator::onRefEncodedData\28\29 +2098:SkImage::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\29\20const +2099:SkIDChangeListener::SkIDChangeListener\28\29 +2100:SkIDChangeListener::List::reset\28\29 +2101:SkGradientBaseShader::flatten\28SkWriteBuffer&\29\20const +2102:SkGlyph::setPath\28SkArenaAlloc*\2c\20SkPath\20const*\2c\20bool\2c\20bool\29 +2103:SkFontMgr::RefEmpty\28\29 +2104:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda0'\28\29::operator\28\29\28\29\20const +2105:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda'\28\29::operator\28\29\28\29\20const +2106:SkEvalQuadAt\28SkPoint\20const*\2c\20float\29 +2107:SkEncodedInfo::makeImageInfo\28\29\20const +2108:SkEdgeClipper::next\28SkPoint*\29 +2109:SkDevice::scalerContextFlags\28\29\20const +2110:SkDeque::SkDeque\28unsigned\20long\2c\20void*\2c\20unsigned\20long\2c\20int\29 +2111:SkConic::evalAt\28float\2c\20SkPoint*\2c\20SkPoint*\29\20const +2112:SkConic::TransformW\28SkPoint\20const*\2c\20float\2c\20SkMatrix\20const&\29 +2113:SkColorSpace::transferFn\28skcms_TransferFunction*\29\20const +2114:SkColorSpace::gammaIsLinear\28\29\20const +2115:SkColorInfo::SkColorInfo\28SkColorType\2c\20SkAlphaType\2c\20sk_sp\29 +2116:SkColorFilters::Blend\28unsigned\20int\2c\20SkBlendMode\29 +2117:SkCodec::skipScanlines\28int\29 +2118:SkCodec::rewindStream\28\29 +2119:SkCapabilities::RasterBackend\28\29 +2120:SkCanvas::topDevice\28\29\20const +2121:SkCanvas::saveLayer\28SkCanvas::SaveLayerRec\20const&\29 +2122:SkCanvas::init\28sk_sp\29 +2123:SkCanvas::drawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +2124:SkCanvas::drawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +2125:SkCanvas::drawClippedToSaveBehind\28SkPaint\20const&\29 +2126:SkCanvas::concat\28SkM44\20const&\29 +2127:SkCanvas::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +2128:SkCanvas::SkCanvas\28SkBitmap\20const&\29 +2129:SkBmpBaseCodec::~SkBmpBaseCodec\28\29 +2130:SkBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +2131:SkBitmap::extractSubset\28SkBitmap*\2c\20SkIRect\20const&\29\20const +2132:SkBitmap::asImage\28\29\20const +2133:SkBitmap::SkBitmap\28SkBitmap&&\29 +2134:SkBinaryWriteBuffer::SkBinaryWriteBuffer\28SkSerialProcs\20const&\29 +2135:SkAAClip::setRegion\28SkRegion\20const&\29 +2136:SaveErrorCode +2137:R +2138:OT::glyf_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2139:OT::GDEF::get_mark_attachment_type\28unsigned\20int\29\20const +2140:OT::GDEF::get_glyph_class\28unsigned\20int\29\20const +2141:GrXPFactory::FromBlendMode\28SkBlendMode\29 +2142:GrTriangulator::setBottom\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2143:GrTriangulator::mergeCollinearEdges\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2144:GrThreadSafeCache::find\28skgpu::UniqueKey\20const&\29 +2145:GrThreadSafeCache::add\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +2146:GrThreadSafeCache::Entry::makeEmpty\28\29 +2147:GrSurfaceProxyView::operator==\28GrSurfaceProxyView\20const&\29\20const +2148:GrSurfaceProxyView::Copy\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\29 +2149:GrSurfaceProxyPriv::doLazyInstantiation\28GrResourceProvider*\29 +2150:GrSurfaceProxy::isFunctionallyExact\28\29\20const +2151:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20sk_sp*\29 +2152:GrSimpleMeshDrawOpHelperWithStencil::fixedFunctionFlags\28\29\20const +2153:GrSimpleMeshDrawOpHelper::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20GrProcessorAnalysisColor*\29 +2154:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrProcessorSet&&\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrPipeline::InputFlags\2c\20GrUserStencilSettings\20const*\29 +2155:GrSimpleMeshDrawOpHelper::CreatePipeline\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20skgpu::Swizzle\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrProcessorSet&&\2c\20GrPipeline::InputFlags\29 +2156:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20void\20const*\2c\20skgpu::UniqueKey\20const&\29 +2157:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20skgpu::UniqueKey\20const&\2c\20void\20\28*\29\28skgpu::VertexWriter\2c\20unsigned\20long\29\29 +2158:GrResourceCache::purgeAsNeeded\28\29 +2159:GrResourceCache::findAndRefScratchResource\28skgpu::ScratchKey\20const&\29 +2160:GrRecordingContextPriv::makeSFC\28GrImageInfo\2c\20std::__2::basic_string_view>\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +2161:GrQuadUtils::TessellationHelper::Vertices::moveAlong\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +2162:GrQuad::asRect\28SkRect*\29\20const +2163:GrProcessorSet::GrProcessorSet\28GrProcessorSet&&\29 +2164:GrPathUtils::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +2165:GrOpFlushState::allocator\28\29 +2166:GrGpu::submitToGpu\28GrSubmitInfo\20const&\29 +2167:GrGpu::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +2168:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +2169:GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +2170:GrGLSLShaderBuilder::appendFunctionDecl\28SkSLType\2c\20char\20const*\2c\20SkSpan\29 +2171:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +2172:GrGLSLColorSpaceXformHelper::emitCode\28GrGLSLUniformHandler*\2c\20GrColorSpaceXform\20const*\2c\20unsigned\20int\29 +2173:GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +2174:GrGLRenderTarget::bindInternal\28unsigned\20int\2c\20bool\29 +2175:GrGLGpu::getErrorAndCheckForOOM\28\29 +2176:GrGLGpu::bindTexture\28int\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20GrGLTexture*\29 +2177:GrFragmentProcessor::visitWithImpls\28std::__2::function\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\20const +2178:GrFragmentProcessor::ColorMatrix\28std::__2::unique_ptr>\2c\20float\20const*\2c\20bool\2c\20bool\2c\20bool\29 +2179:GrDrawingManager::appendTask\28sk_sp\29 +2180:GrColorInfo::GrColorInfo\28GrColorInfo\20const&\29 +2181:GrCaps::isFormatCompressed\28GrBackendFormat\20const&\29\20const +2182:GrAAConvexTessellator::lineTo\28SkPoint\20const&\2c\20GrAAConvexTessellator::CurveState\29 +2183:FT_Stream_OpenMemory +2184:FT_Select_Charmap +2185:FT_Get_Next_Char +2186:FT_Get_Module_Interface +2187:FT_Done_Size +2188:DecodeImageStream +2189:CFF::opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +2190:CFF::Charset::get_glyph\28unsigned\20int\2c\20unsigned\20int\29\20const +2191:AAT::hb_aat_apply_context_t::replace_glyph_inplace\28unsigned\20int\2c\20unsigned\20int\29 +2192:AAT::SubtableGlyphCoverage::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +2193:1955 +2194:1956 +2195:1957 +2196:1958 +2197:1959 +2198:wuffs_gif__decoder__num_decoded_frames +2199:wmemchr +2200:void\20std::__2::reverse\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t*\29 +2201:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29_16081 +2202:void\20merge_sort<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +2203:void\20merge_sort<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +2204:void\20icu_74::\28anonymous\20namespace\29::MixedBlocks::extend\28unsigned\20int\20const*\2c\20int\2c\20int\2c\20int\29 +2205:void\20emscripten::internal::MemberAccess::setWire\28float\20StrokeOpts::*\20const&\2c\20StrokeOpts&\2c\20float\29 +2206:void\20AAT::ClassTable>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +2207:validate_offsetToRestore\28SkReadBuffer*\2c\20unsigned\20long\29 +2208:utrie2_enum_74 +2209:utext_clone_74 +2210:ustr_hashUCharsN_74 +2211:ures_getValueWithFallback_74 +2212:uprv_isInvariantUString_74 +2213:umutablecptrie_set_74 +2214:umutablecptrie_close_74 +2215:uloc_getVariant_74 +2216:uhash_setValueDeleter_74 +2217:uenum_next_74 +2218:ubidi_setPara_74 +2219:ubidi_getVisualRun_74 +2220:ubidi_getRuns_74 +2221:u_strstr_74 +2222:u_getPropertyValueEnum_74 +2223:u_getIntPropertyValue_74 +2224:tt_set_mm_blend +2225:tt_face_get_ps_name +2226:tt_face_get_location +2227:trinkle +2228:strtox_17556 +2229:std::__2::unique_ptr::release\5babi:nn180100\5d\28\29 +2230:std::__2::pair\2c\20void*>*>\2c\20bool>\20std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__emplace_unique_key_args\2c\20std::__2::tuple<>>\28GrTriangulator::Vertex*\20const&\2c\20std::__2::piecewise_construct_t\20const&\2c\20std::__2::tuple&&\2c\20std::__2::tuple<>&&\29 +2231:std::__2::pair::pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +2232:std::__2::moneypunct::do_decimal_point\28\29\20const +2233:std::__2::moneypunct::pos_format\5babi:nn180100\5d\28\29\20const +2234:std::__2::moneypunct::do_decimal_point\28\29\20const +2235:std::__2::istreambuf_iterator>::istreambuf_iterator\5babi:nn180100\5d\28std::__2::basic_istream>&\29 +2236:std::__2::ios_base::good\5babi:nn180100\5d\28\29\20const +2237:std::__2::hash::operator\28\29\28skia::textlayout::FontArguments\20const&\29\20const +2238:std::__2::default_delete\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot>::type\20std::__2::default_delete\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot>\28skia_private::THashTable\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot*\29\20const +2239:std::__2::ctype::toupper\5babi:nn180100\5d\28char\29\20const +2240:std::__2::chrono::duration>::duration\5babi:nn180100\5d\28long\20long\20const&\29 +2241:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +2242:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2243:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +2244:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +2245:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2246:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +2247:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +2248:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +2249:std::__2::basic_string\2c\20std::__2::allocator>&\20std::__2::basic_string\2c\20std::__2::allocator>::__assign_no_alias\28char\20const*\2c\20unsigned\20long\29 +2250:std::__2::basic_iostream>::~basic_iostream\28\29_17774 +2251:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::allocator&\2c\20wchar_t*\2c\20unsigned\20long\29 +2252:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::allocator&\2c\20char*\2c\20unsigned\20long\29 +2253:std::__2::__shared_count::__release_shared\5babi:nn180100\5d\28\29 +2254:std::__2::__num_put_base::__format_int\28char*\2c\20char\20const*\2c\20bool\2c\20unsigned\20int\29 +2255:std::__2::__num_put_base::__format_float\28char*\2c\20char\20const*\2c\20unsigned\20int\29 +2256:std::__2::__itoa::__append8\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2257:sktext::gpu::TextBlob::Key::operator==\28sktext::gpu::TextBlob::Key\20const&\29\20const +2258:sktext::gpu::GlyphVector::glyphs\28\29\20const +2259:sktext::SkStrikePromise::strike\28\29 +2260:skif::FilterResult::getAnalyzedShaderView\28skif::Context\20const&\2c\20SkSamplingOptions\20const&\2c\20SkEnumBitMask\29\20const +2261:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20bool\2c\20SkBlender\20const*\29\20const +2262:skif::FilterResult::applyCrop\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkTileMode\29\20const +2263:skif::FilterResult::FilterResult\28\29 +2264:skif::Context::~Context\28\29 +2265:skia_private::THashTable\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair>::resize\28int\29 +2266:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +2267:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::removeSlot\28int\29 +2268:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +2269:skia_private::THashTable\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair&&\2c\20unsigned\20int\29 +2270:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot::emplace\28sk_sp&&\2c\20unsigned\20int\29 +2271:skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::~THashMap\28\29 +2272:skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::THashMap\28std::initializer_list>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>\29 +2273:skia_private::TArray::move\28void*\29 +2274:skia_private::TArray::Plane\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +2275:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +2276:skia_private::TArray::operator=\28skia_private::TArray&&\29 +2277:skia_private::TArray\2c\20true>::push_back\28SkRGBA4f<\28SkAlphaType\293>&&\29 +2278:skia_png_set_text_2 +2279:skia_png_set_palette_to_rgb +2280:skia_png_handle_IHDR +2281:skia_png_handle_IEND +2282:skia::textlayout::TextWrapper::TextStretch::extend\28skia::textlayout::Cluster*\29 +2283:skia::textlayout::FontCollection::getFontManagerOrder\28\29\20const +2284:skia::textlayout::Decorations::calculateGaps\28skia::textlayout::TextLine::ClipContext\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\29 +2285:skia::textlayout::Cluster::isSoftBreak\28\29\20const +2286:skia::textlayout::Cluster::Cluster\28skia::textlayout::ParagraphImpl*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkSpan\2c\20float\2c\20float\29 +2287:skia::textlayout::Block&\20skia_private::TArray::emplace_back\28unsigned\20long&&\2c\20unsigned\20long&&\2c\20skia::textlayout::TextStyle\20const&\29 +2288:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::fixedFunctionFlags\28\29\20const +2289:skgpu::ganesh::SurfaceFillContext::fillRectWithFP\28SkIRect\20const&\2c\20SkMatrix\20const&\2c\20std::__2::unique_ptr>\29 +2290:skgpu::ganesh::SurfaceFillContext::SurfaceFillContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +2291:skgpu::ganesh::SurfaceDrawContext::drawPaint\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\29 +2292:skgpu::ganesh::SurfaceDrawContext::MakeWithFallback\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +2293:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29 +2294:skgpu::ganesh::SurfaceContext::PixelTransferResult::operator=\28skgpu::ganesh::SurfaceContext::PixelTransferResult&&\29 +2295:skgpu::ganesh::SmallPathAtlasMgr::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +2296:skgpu::ganesh::OpsTask::~OpsTask\28\29 +2297:skgpu::ganesh::OpsTask::setColorLoadOp\28GrLoadOp\2c\20std::__2::array\29 +2298:skgpu::ganesh::OpsTask::deleteOps\28\29 +2299:skgpu::ganesh::FillRectOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +2300:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29::$_0::operator\28\29\28int\29\20const +2301:skgpu::ganesh::ClipStack::~ClipStack\28\29 +2302:skgpu::TClientMappedBufferManager::~TClientMappedBufferManager\28\29 +2303:skgpu::TAsyncReadResult::Plane&\20skia_private::TArray::Plane\2c\20false>::emplace_back\2c\20unsigned\20long&>\28sk_sp&&\2c\20unsigned\20long&\29 +2304:skgpu::Plot::addSubImage\28int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +2305:skgpu::GetLCDBlendFormula\28SkBlendMode\29 +2306:skcpu::DrawTreatAAStrokeAsHairline\28float\2c\20SkMatrix\20const&\2c\20float*\29 +2307:skcms_TransferFunction_isHLGish +2308:skcms_TransferFunction_isHLG +2309:skcms_Matrix3x3_concat +2310:sk_srgb_linear_singleton\28\29 +2311:sk_sp::reset\28SkPathRef*\29 +2312:sk_sp*\20std::__2::vector\2c\20std::__2::allocator>>::__push_back_slow_path\20const&>\28sk_sp\20const&\29 +2313:shr +2314:shl +2315:setRegionCheck\28SkRegion*\2c\20SkRegion\20const&\29 +2316:res_findResource_74 +2317:read_metadata\28std::__2::vector>\20const&\2c\20unsigned\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +2318:read_header\28SkStream*\2c\20sk_sp\20const&\2c\20SkCodec**\2c\20png_struct_def**\2c\20png_info_def**\29 +2319:read_curves\28unsigned\20char\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skcms_Curve*\29 +2320:qsort +2321:ps_dimension_set_mask_bits +2322:operator==\28SkPath\20const&\2c\20SkPath\20const&\29 +2323:morphpoints\28SkSpan\2c\20SkSpan\2c\20SkPathMeasure&\2c\20float\29 +2324:mbrtowc +2325:jround_up +2326:jpeg_make_d_derived_tbl +2327:jpeg_destroy +2328:init\28\29 +2329:ilogbf +2330:icu_74::locale_set_default_internal\28char\20const*\2c\20UErrorCode&\29 +2331:icu_74::compute\28int\2c\20icu_74::ReadArray2D\20const&\2c\20icu_74::ReadArray2D\20const&\2c\20icu_74::ReadArray1D\20const&\2c\20icu_74::ReadArray1D\20const&\2c\20icu_74::Array1D&\2c\20icu_74::Array1D&\2c\20icu_74::Array1D&\29 +2332:icu_74::UnicodeString::getChar32Start\28int\29\20const +2333:icu_74::UnicodeString::fromUTF8\28icu_74::StringPiece\29 +2334:icu_74::UnicodeString::extract\28int\2c\20int\2c\20char*\2c\20int\2c\20icu_74::UnicodeString::EInvariant\29\20const +2335:icu_74::UnicodeString::copyFrom\28icu_74::UnicodeString\20const&\2c\20signed\20char\29 +2336:icu_74::UnicodeSet::retain\28int\20const*\2c\20int\2c\20signed\20char\29 +2337:icu_74::UnicodeSet::removeAllStrings\28\29 +2338:icu_74::UnicodeSet::freeze\28\29 +2339:icu_74::UnicodeSet::copyFrom\28icu_74::UnicodeSet\20const&\2c\20signed\20char\29 +2340:icu_74::UnicodeSet::complement\28\29 +2341:icu_74::UnicodeSet::add\28int\20const*\2c\20int\2c\20signed\20char\29 +2342:icu_74::UnicodeSet::_toPattern\28icu_74::UnicodeString&\2c\20signed\20char\29\20const +2343:icu_74::UnicodeSet::_add\28icu_74::UnicodeString\20const&\29 +2344:icu_74::UnicodeSet::UnicodeSet\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +2345:icu_74::UVector::removeElementAt\28int\29 +2346:icu_74::UDataPathIterator::next\28UErrorCode*\29 +2347:icu_74::StringTrieBuilder::writeNode\28int\2c\20int\2c\20int\29 +2348:icu_74::StringEnumeration::StringEnumeration\28\29 +2349:icu_74::SimpleFilteredSentenceBreakIterator::breakExceptionAt\28int\29 +2350:icu_74::RuleBasedBreakIterator::DictionaryCache::reset\28\29 +2351:icu_74::RuleBasedBreakIterator::BreakCache::reset\28int\2c\20int\29 +2352:icu_74::RuleBasedBreakIterator::BreakCache::populateNear\28int\2c\20UErrorCode&\29 +2353:icu_74::RuleBasedBreakIterator::BreakCache::populateFollowing\28\29 +2354:icu_74::ResourceDataValue::getBinary\28int&\2c\20UErrorCode&\29\20const +2355:icu_74::ResourceDataValue::getArray\28UErrorCode&\29\20const +2356:icu_74::ResourceArray::getValue\28int\2c\20icu_74::ResourceValue&\29\20const +2357:icu_74::ReorderingBuffer::init\28int\2c\20UErrorCode&\29 +2358:icu_74::Normalizer2Impl::makeFCD\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer*\2c\20UErrorCode&\29\20const +2359:icu_74::Normalizer2Impl::hasCompBoundaryBefore\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\29\20const +2360:icu_74::Normalizer2Impl::decomposeShort\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::Normalizer2Impl::StopAt\2c\20signed\20char\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +2361:icu_74::Normalizer2Impl::addPropertyStarts\28USetAdder\20const*\2c\20UErrorCode&\29\20const +2362:icu_74::ICU_Utility::skipWhitespace\28icu_74::UnicodeString\20const&\2c\20int&\2c\20signed\20char\29 +2363:icu_74::CheckedArrayByteSink::CheckedArrayByteSink\28char*\2c\20int\29 +2364:hb_vector_t::shrink_vector\28unsigned\20int\29 +2365:hb_ucd_get_unicode_funcs +2366:hb_syllabic_insert_dotted_circles\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +2367:hb_shape_full +2368:hb_serialize_context_t::~hb_serialize_context_t\28\29 +2369:hb_serialize_context_t::resolve_links\28\29 +2370:hb_serialize_context_t::reset\28\29 +2371:hb_paint_extents_context_t::paint\28\29 +2372:hb_lazy_loader_t\2c\20hb_face_t\2c\2016u\2c\20OT::cff1_accelerator_t>::do_destroy\28OT::cff1_accelerator_t*\29 +2373:hb_language_from_string +2374:hb_font_destroy +2375:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2376:hb_bit_set_t::resize\28unsigned\20int\2c\20bool\2c\20bool\29 +2377:hb_bit_set_t::process_\28hb_vector_size_t\20\28*\29\28hb_vector_size_t\20const&\2c\20hb_vector_size_t\20const&\29\2c\20bool\2c\20bool\2c\20hb_bit_set_t\20const&\29 +2378:hb_array_t::hash\28\29\20const +2379:get_sof +2380:ftell +2381:ft_var_readpackedpoints +2382:ft_mem_strdup +2383:ft_glyphslot_done +2384:float\20emscripten::internal::MemberAccess::getWire\28float\20StrokeOpts::*\20const&\2c\20StrokeOpts&\29 +2385:fill_window +2386:exp +2387:encodeImage\28GrDirectContext*\2c\20sk_sp\2c\20SkEncodedImageFormat\2c\20int\29 +2388:emscripten::val\20MakeTypedArray\28int\2c\20float\20const*\29 +2389:emscripten::internal::MethodInvoker::invoke\28float\20\28SkContourMeasure::*\20const&\29\28\29\20const\2c\20SkContourMeasure\20const*\29 +2390:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\29\2c\20unsigned\20long\2c\20unsigned\20long\29 +2391:dquad_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2392:do_clip_op\28SkReadBuffer*\2c\20SkCanvas*\2c\20SkRegion::Op\2c\20SkClipOp*\29 +2393:do_anti_hairline\28int\2c\20int\2c\20int\2c\20int\2c\20SkIRect\20const*\2c\20SkBlitter*\29 +2394:doWriteReverse\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +2395:doWriteForward\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +2396:dline_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2397:dispose_chunk +2398:direct_blur_y\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +2399:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29::'lambda'\28void*\29>\28SkA8_Blitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2400:decltype\28fp\28\28SkRecords::NoOp\29\28\29\29\29\20SkRecord::Record::visit\28SkRecords::Draw&\29\20const +2401:dcubic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2402:dconic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2403:crop_rect_edge\28SkRect\20const&\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float*\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +2404:createPath\28char\20const*\2c\20int\2c\20char\20const*\2c\20int\2c\20char\20const*\2c\20icu_74::CharString&\2c\20UErrorCode*\29 +2405:char\20const*\20std::__2::__rewrap_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +2406:cff_slot_load +2407:cff_parse_real +2408:cff_index_get_sid_string +2409:cff_index_access_element +2410:cf2_doStems +2411:cf2_doFlex +2412:buffer_verify_error\28hb_buffer_t*\2c\20hb_font_t*\2c\20char\20const*\2c\20...\29 +2413:blur_y_rect\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +2414:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29::$_0::operator\28\29\28unsigned\20char*\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29\20const +2415:auto\20std::__2::__unwrap_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +2416:af_sort_and_quantize_widths +2417:af_glyph_hints_align_weak_points +2418:af_glyph_hints_align_strong_points +2419:af_face_globals_new +2420:af_cjk_compute_stem_width +2421:add_huff_table +2422:addPoint\28UBiDi*\2c\20int\2c\20int\29 +2423:_addExtensionToList\28ExtensionListEntry**\2c\20ExtensionListEntry*\2c\20signed\20char\29 +2424:__uselocale +2425:__math_xflow +2426:__cxxabiv1::__base_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +2427:\28anonymous\20namespace\29::make_vertices_spec\28bool\2c\20bool\29 +2428:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_3::operator\28\29\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20bool\29\20const +2429:\28anonymous\20namespace\29::draw_stencil_rect\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrHardClip\20const&\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +2430:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +2431:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +2432:\28anonymous\20namespace\29::CacheImpl::removeInternal\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +2433:WriteRingBuffer +2434:WebPRescalerExport +2435:WebPInitAlphaProcessing +2436:WebPFreeDecBuffer +2437:VP8SetError +2438:VP8LInverseTransform +2439:VP8LDelete +2440:VP8LColorCacheClear +2441:UDataMemory_init_74 +2442:TT_Load_Context +2443:StringBuffer\20apply_format_string<1024>\28char\20const*\2c\20void*\2c\20char\20\28&\29\20\5b1024\5d\2c\20SkString*\29 +2444:SkYUVAPixmaps::operator=\28SkYUVAPixmaps\20const&\29 +2445:SkYUVAPixmapInfo::SupportedDataTypes::enableDataType\28SkYUVAPixmapInfo::DataType\2c\20int\29 +2446:SkWriter32::writeMatrix\28SkMatrix\20const&\29 +2447:SkWriter32::snapshotAsData\28\29\20const +2448:SkVertices::approximateSize\28\29\20const +2449:SkUnicode::convertUtf8ToUtf16\28char\20const*\2c\20int\29 +2450:SkUTF::UTF16ToUTF8\28char*\2c\20int\2c\20unsigned\20short\20const*\2c\20unsigned\20long\29 +2451:SkTypefaceCache::NewTypefaceID\28\29 +2452:SkTextBlobRunIterator::next\28\29 +2453:SkTextBlobRunIterator::SkTextBlobRunIterator\28SkTextBlob\20const*\29 +2454:SkTextBlobBuilder::make\28\29 +2455:SkTextBlobBuilder::SkTextBlobBuilder\28\29 +2456:SkTSpan::closestBoundedT\28SkDPoint\20const&\29\20const +2457:SkTSect::updateBounded\28SkTSpan*\2c\20SkTSpan*\2c\20SkTSpan*\29 +2458:SkTSect::trim\28SkTSpan*\2c\20SkTSect*\29 +2459:SkTDStorage::erase\28int\2c\20int\29 +2460:SkTDPQueue::percolateUpIfNecessary\28int\29 +2461:SkSurfaces::Raster\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20SkSurfaceProps\20const*\29 +2462:SkSurface_Base::createCaptureBreakpoint\28\29 +2463:SkSurface_Base::SkSurface_Base\28int\2c\20int\2c\20SkSurfaceProps\20const*\29 +2464:SkSurfaceProps::SkSurfaceProps\28unsigned\20int\2c\20SkPixelGeometry\2c\20float\2c\20float\29 +2465:SkStrokerPriv::JoinFactory\28SkPaint::Join\29 +2466:SkStrokeRec::setStrokeStyle\28float\2c\20bool\29 +2467:SkStrokeRec::setFillStyle\28\29 +2468:SkStrokeRec::applyToPath\28SkPathBuilder*\2c\20SkPath\20const&\29\20const +2469:SkString::set\28char\20const*\29 +2470:SkStrikeSpec::findOrCreateStrike\28\29\20const +2471:SkStrikeSpec::MakeWithNoDevice\28SkFont\20const&\2c\20SkPaint\20const*\29 +2472:SkStrike::glyph\28SkGlyphDigest\29 +2473:SkSpecialImages::MakeDeferredFromGpu\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +2474:SkSpecialImages::AsBitmap\28SkSpecialImage\20const*\2c\20SkBitmap*\29 +2475:SkSharedMutex::SkSharedMutex\28\29 +2476:SkShadowTessellator::MakeSpot\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkPoint3\20const&\2c\20float\2c\20bool\2c\20bool\29 +2477:SkShaders::Empty\28\29 +2478:SkShaders::Color\28unsigned\20int\29 +2479:SkShaderBase::appendRootStages\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +2480:SkScalerContext::~SkScalerContext\28\29_4126 +2481:SkSL::write_stringstream\28SkSL::StringStream\20const&\2c\20SkSL::OutputStream&\29 +2482:SkSL::evaluate_3_way_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +2483:SkSL::VarDeclaration::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\2c\20std::__2::unique_ptr>\29 +2484:SkSL::Type::priority\28\29\20const +2485:SkSL::Type::checkIfUsableInArray\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +2486:SkSL::SymbolTable::takeOwnershipOfString\28std::__2::basic_string\2c\20std::__2::allocator>\29 +2487:SkSL::SymbolTable::isBuiltinType\28std::__2::basic_string_view>\29\20const +2488:SkSL::SampleUsage::merge\28SkSL::SampleUsage\20const&\29 +2489:SkSL::RP::SlotManager::mapVariableToSlots\28SkSL::Variable\20const&\2c\20SkSL::RP::SlotRange\29 +2490:SkSL::RP::Program::appendStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkSL::RP::Callbacks*\2c\20SkSpan\29\20const +2491:SkSL::RP::Generator::pushVectorizedExpression\28SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +2492:SkSL::RP::Builder::ternary_op\28SkSL::RP::BuilderOp\2c\20int\29 +2493:SkSL::RP::Builder::simplifyPopSlotsUnmasked\28SkSL::RP::SlotRange*\29 +2494:SkSL::RP::Builder::pop_slots_unmasked\28SkSL::RP::SlotRange\29 +2495:SkSL::RP::Builder::exchange_src\28\29 +2496:SkSL::ProgramUsage::remove\28SkSL::ProgramElement\20const&\29 +2497:SkSL::ProgramUsage::isDead\28SkSL::Variable\20const&\29\20const +2498:SkSL::Pool::~Pool\28\29 +2499:SkSL::PipelineStage::PipelineStageCodeGenerator::typedVariable\28SkSL::Type\20const&\2c\20std::__2::basic_string_view>\29 +2500:SkSL::PipelineStage::PipelineStageCodeGenerator::typeName\28SkSL::Type\20const&\29 +2501:SkSL::MethodReference::~MethodReference\28\29_6481 +2502:SkSL::MethodReference::~MethodReference\28\29 +2503:SkSL::LiteralType::priority\28\29\20const +2504:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sub\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +2505:SkSL::IndexExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +2506:SkSL::GLSLCodeGenerator::writeAnyConstructor\28SkSL::AnyConstructor\20const&\2c\20SkSL::OperatorPrecedence\29 +2507:SkSL::Compiler::errorText\28bool\29 +2508:SkSL::Block::Make\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +2509:SkSL::Block::MakeBlock\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +2510:SkSL::Analysis::DetectVarDeclarationWithoutScope\28SkSL::Statement\20const&\2c\20SkSL::ErrorReporter*\29 +2511:SkRuntimeEffectPriv::TransformUniforms\28SkSpan\2c\20sk_sp\2c\20SkColorSpace\20const*\29 +2512:SkRuntimeEffect::getRPProgram\28SkSL::DebugTracePriv*\29\20const +2513:SkRegion::Spanerator::next\28int*\2c\20int*\29 +2514:SkRegion::SkRegion\28SkRegion\20const&\29 +2515:SkReduceOrder::Quad\28SkPoint\20const*\2c\20SkPoint*\29 +2516:SkReadBuffer::skipByteArray\28unsigned\20long*\29 +2517:SkReadBuffer::readSampling\28\29 +2518:SkReadBuffer::readRRect\28SkRRect*\29 +2519:SkReadBuffer::checkInt\28int\2c\20int\29 +2520:SkRasterPipeline::appendMatrix\28SkArenaAlloc*\2c\20SkMatrix\20const&\29 +2521:SkQuads::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +2522:SkPngCodecBase::applyXformRow\28void*\2c\20unsigned\20char\20const*\29 +2523:SkPngCodec::processData\28\29 +2524:SkPixmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +2525:SkPictureRecord::~SkPictureRecord\28\29 +2526:SkPicture::~SkPicture\28\29_3531 +2527:SkPathStroker::quadStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +2528:SkPathStroker::preJoinTo\28SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\2c\20bool\29 +2529:SkPathStroker::intersectRay\28SkQuadConstruct*\2c\20SkPathStroker::IntersectRayType\29\20const +2530:SkPathStroker::cubicStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +2531:SkPathStroker::conicStroke\28SkConic\20const&\2c\20SkQuadConstruct*\29 +2532:SkPathPriv::IsRectContour\28SkSpan\2c\20SkSpan\2c\20bool\29 +2533:SkPathPriv::ComputeConvexity\28SkSpan\2c\20SkSpan\2c\20SkSpan\29 +2534:SkPathMeasure::isClosed\28\29 +2535:SkPathMeasure::getPosTan\28float\2c\20SkPoint*\2c\20SkPoint*\29 +2536:SkPathEffectBase::getFlattenableType\28\29\20const +2537:SkPathEdgeIter::SkPathEdgeIter\28SkPathRaw\20const&\29 +2538:SkPathBuilder::transform\28SkMatrix\20const&\29 +2539:SkPathBuilder::addPolygon\28SkSpan\2c\20bool\29 +2540:SkPath::isLastContourClosed\28\29\20const +2541:SkPath::close\28\29 +2542:SkPath::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +2543:SkPaint::setStrokeMiter\28float\29 +2544:SkPaint::setStrokeJoin\28SkPaint::Join\29 +2545:SkOpSpanBase::mergeMatches\28SkOpSpanBase*\29 +2546:SkOpSpanBase::addOpp\28SkOpSpanBase*\29 +2547:SkOpSegment::subDivide\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkDCurve*\29\20const +2548:SkOpSegment::release\28SkOpSpan\20const*\29 +2549:SkOpSegment::operand\28\29\20const +2550:SkOpSegment::moveNearby\28\29 +2551:SkOpSegment::markAndChaseDone\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpSpanBase**\29 +2552:SkOpSegment::isClose\28double\2c\20SkOpSegment\20const*\29\20const +2553:SkOpSegment::init\28SkPoint*\2c\20float\2c\20SkOpContour*\2c\20SkPath::Verb\29 +2554:SkOpSegment::addT\28double\2c\20SkPoint\20const&\29 +2555:SkOpCoincidence::fixUp\28SkOpPtT*\2c\20SkOpPtT\20const*\29 +2556:SkOpCoincidence::add\28SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\29 +2557:SkOpCoincidence::addMissing\28bool*\29 +2558:SkOpCoincidence::addIfMissing\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20double\2c\20double\2c\20SkOpSegment*\2c\20SkOpSegment*\2c\20bool*\29 +2559:SkOpCoincidence::addExpanded\28\29 +2560:SkOpAngle::set\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +2561:SkOpAngle::lineOnOneSide\28SkDPoint\20const&\2c\20SkDVector\20const&\2c\20SkOpAngle\20const*\2c\20bool\29\20const +2562:SkNoPixelsDevice::ClipState::op\28SkClipOp\2c\20SkM44\20const&\2c\20SkRect\20const&\2c\20bool\2c\20bool\29 +2563:SkNoDestructor>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>>::SkNoDestructor\28skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>&&\29 +2564:SkMatrixPriv::DifferentialAreaScale\28SkMatrix\20const&\2c\20SkPoint\20const&\29 +2565:SkMatrix::writeToMemory\28void*\29\20const +2566:SkMatrix::setSinCos\28float\2c\20float\2c\20float\2c\20float\29 +2567:SkMakeBitmapShaderForPaint\28SkPaint\20const&\2c\20SkBitmap\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20SkCopyPixelsMode\29 +2568:SkM44::normalizePerspective\28\29 +2569:SkM44::invert\28SkM44*\29\20const +2570:SkLatticeIter::~SkLatticeIter\28\29 +2571:SkLatticeIter::next\28SkIRect*\2c\20SkRect*\2c\20bool*\2c\20unsigned\20int*\29 +2572:SkJpegCodec::ReadHeader\28SkStream*\2c\20SkCodec**\2c\20JpegDecoderMgr**\2c\20std::__2::unique_ptr>\29 +2573:SkJSONWriter::endObject\28\29 +2574:SkJSONWriter::endArray\28\29 +2575:SkImage_Lazy::Validator::Validator\28sk_sp\2c\20SkColorType\20const*\2c\20sk_sp\29 +2576:SkImageShader::MakeSubset\28sk_sp\2c\20SkRect\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +2577:SkImageFilters::MatrixTransform\28SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20sk_sp\29 +2578:SkImageFilters::Image\28sk_sp\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\29 +2579:SkImageFilters::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +2580:SkImage::width\28\29\20const +2581:SkImage::readPixels\28GrDirectContext*\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +2582:SkImage::readPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +2583:SkImage::hasMipmaps\28\29\20const +2584:SkHalfToFloat\28unsigned\20short\29 +2585:SkGradientShader::MakeSweep\28float\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +2586:SkGradientShader::MakeRadial\28SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +2587:SkGradientBaseShader::commonAsAGradient\28SkShaderBase::GradientInfo*\29\20const +2588:SkGradientBaseShader::ValidGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\29 +2589:SkGradientBaseShader::SkGradientBaseShader\28SkGradientBaseShader::Descriptor\20const&\2c\20SkMatrix\20const&\29 +2590:SkGradientBaseShader::MakeDegenerateGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20float\20const*\2c\20int\2c\20sk_sp\2c\20SkTileMode\29 +2591:SkGradientBaseShader::Descriptor::~Descriptor\28\29 +2592:SkGradientBaseShader::Descriptor::Descriptor\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\29 +2593:SkFontMgr::matchFamilyStyleCharacter\28char\20const*\2c\20SkFontStyle\20const&\2c\20char\20const**\2c\20int\2c\20int\29\20const +2594:SkFont::setSize\28float\29 +2595:SkEvalQuadAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +2596:SkEncodedInfo::~SkEncodedInfo\28\29 +2597:SkEmptyFontMgr::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +2598:SkDrawableList::~SkDrawableList\28\29 +2599:SkDrawable::draw\28SkCanvas*\2c\20SkMatrix\20const*\29 +2600:SkDevice::SkDevice\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +2601:SkData::PrivateNewWithCopy\28void\20const*\2c\20unsigned\20long\29::$_0::operator\28\29\28\29\20const +2602:SkDashPathEffect::Make\28SkSpan\2c\20float\29 +2603:SkDQuad::monotonicInX\28\29\20const +2604:SkDCubic::dxdyAtT\28double\29\20const +2605:SkDCubic::RootsValidT\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +2606:SkConicalGradient::~SkConicalGradient\28\29 +2607:SkColorSpace::MakeSRGBLinear\28\29 +2608:SkColorFilters::Blend\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\2c\20SkBlendMode\29 +2609:SkColorFilterPriv::MakeGaussian\28\29 +2610:SkColorConverter::SkColorConverter\28unsigned\20int\20const*\2c\20int\29 +2611:SkCodec::startScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const*\29 +2612:SkCodec::handleFrameIndex\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20std::__2::function\29 +2613:SkCodec::getScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +2614:SkChopQuadAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +2615:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\20const*\2c\20int\29 +2616:SkChopCubicAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +2617:SkCharToGlyphCache::SkCharToGlyphCache\28\29 +2618:SkCanvas::setMatrix\28SkM44\20const&\29 +2619:SkCanvas::getTotalMatrix\28\29\20const +2620:SkCanvas::getLocalClipBounds\28\29\20const +2621:SkCanvas::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +2622:SkCanvas::drawAtlas\28SkImage\20const*\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +2623:SkCanvas::canAttemptBlurredRRectDraw\28SkPaint\20const&\29\20const +2624:SkCanvas::attemptBlurredRRectDraw\28SkRRect\20const&\2c\20SkBlurMaskFilterImpl\20const*\2c\20SkPaint\20const&\2c\20SkEnumBitMask\29 +2625:SkCanvas::ImageSetEntry::ImageSetEntry\28SkCanvas::ImageSetEntry\20const&\29 +2626:SkBmpCodec::ReadHeader\28SkStream*\2c\20bool\2c\20std::__2::unique_ptr>*\29 +2627:SkBlurMaskFilterImpl::computeXformedSigma\28SkMatrix\20const&\29\20const +2628:SkBlitter::blitRectRegion\28SkIRect\20const&\2c\20SkRegion\20const&\29 +2629:SkBlendMode_ShouldPreScaleCoverage\28SkBlendMode\2c\20bool\29 +2630:SkBlendMode_AppendStages\28SkBlendMode\2c\20SkRasterPipeline*\29 +2631:SkBitmap::tryAllocPixels\28SkBitmap::Allocator*\29 +2632:SkBitmap::readPixels\28SkPixmap\20const&\2c\20int\2c\20int\29\20const +2633:SkBitmap::allocPixels\28SkImageInfo\20const&\29 +2634:SkBaseShadowTessellator::handleLine\28SkPoint\20const&\29 +2635:SkAutoDescriptor::~SkAutoDescriptor\28\29 +2636:SkAnimatedImage::getFrameCount\28\29\20const +2637:SkAAClip::~SkAAClip\28\29 +2638:SkAAClip::setPath\28SkPath\20const&\2c\20SkIRect\20const&\2c\20bool\29 +2639:SkAAClip::op\28SkAAClip\20const&\2c\20SkClipOp\29 +2640:ReadHuffmanCode_17049 +2641:OT::vmtx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2642:OT::kern_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2643:OT::cff1_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2644:OT::apply_lookup\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20OT::LookupRecord\20const*\2c\20unsigned\20int\29 +2645:OT::OpenTypeFontFile::sanitize\28hb_sanitize_context_t*\29\20const +2646:OT::Layout::GPOS_impl::ValueFormat::get_device\28OT::IntType\20const*\2c\20bool*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20hb_sanitize_context_t&\29 +2647:OT::Layout::GPOS_impl::AnchorFormat3::get_anchor\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20float*\2c\20float*\29\20const +2648:OT::Layout::GPOS_impl::AnchorFormat2::get_anchor\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20float*\2c\20float*\29\20const +2649:OT::GPOS_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2650:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +2651:JpegDecoderMgr::~JpegDecoderMgr\28\29 +2652:GrTriangulator::simplify\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +2653:GrTriangulator::setTop\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2654:GrTriangulator::mergeCoincidentVertices\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29\20const +2655:GrTriangulator::Vertex*\20SkArenaAlloc::make\28SkPoint&\2c\20int&&\29 +2656:GrThreadSafeCache::remove\28skgpu::UniqueKey\20const&\29 +2657:GrThreadSafeCache::internalFind\28skgpu::UniqueKey\20const&\29 +2658:GrThreadSafeCache::internalAdd\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +2659:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29 +2660:GrTexture::markMipmapsClean\28\29 +2661:GrTessellationShader::MakePipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedClip&&\2c\20GrProcessorSet&&\29 +2662:GrSurfaceProxyView::concatSwizzle\28skgpu::Swizzle\29 +2663:GrSurfaceProxy::LazyCallbackResult::LazyCallbackResult\28sk_sp\29 +2664:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20GrSurfaceProxy::RectsMustMatch\2c\20sk_sp*\29 +2665:GrStyledShape::GrStyledShape\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20bool\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +2666:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +2667:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrPipeline\20const*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrUserStencilSettings\20const*\29 +2668:GrShape::simplifyLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\29 +2669:GrShape::reset\28\29 +2670:GrShape::conservativeContains\28SkPoint\20const&\29\20const +2671:GrSWMaskHelper::init\28SkIRect\20const&\29 +2672:GrResourceProvider::createNonAAQuadIndexBuffer\28\29 +2673:GrResourceProvider::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\2c\20GrResourceProvider::ZeroInit\29 +2674:GrRenderTask::addTarget\28GrDrawingManager*\2c\20sk_sp\29 +2675:GrRenderTarget::~GrRenderTarget\28\29_9725 +2676:GrRecordingContextPriv::createDevice\28skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\2c\20skgpu::ganesh::Device::InitContents\29 +2677:GrQuadUtils::WillUseHairline\28GrQuad\20const&\2c\20GrAAType\2c\20GrQuadAAFlags\29 +2678:GrQuadUtils::CropToRect\28SkRect\20const&\2c\20GrAA\2c\20DrawQuad*\2c\20bool\29 +2679:GrProxyProvider::processInvalidUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\2c\20GrProxyProvider::InvalidateGPUResource\29 +2680:GrPorterDuffXPFactory::Get\28SkBlendMode\29 +2681:GrPixmap::operator=\28GrPixmap&&\29 +2682:GrPathUtils::scaleToleranceToSrc\28float\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +2683:GrPathUtils::quadraticPointCount\28SkPoint\20const*\2c\20float\29 +2684:GrPathUtils::cubicPointCount\28SkPoint\20const*\2c\20float\29 +2685:GrPaint::setPorterDuffXPFactory\28SkBlendMode\29 +2686:GrPaint::GrPaint\28GrPaint\20const&\29 +2687:GrOpsRenderPass::draw\28int\2c\20int\29 +2688:GrOpsRenderPass::drawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +2689:GrMeshDrawOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +2690:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29 +2691:GrGradientShader::MakeGradientFP\28SkGradientBaseShader\20const&\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\2c\20std::__2::unique_ptr>\2c\20SkMatrix\20const*\29 +2692:GrGpuResource::isPurgeable\28\29\20const +2693:GrGpuResource::getContext\28\29 +2694:GrGpu::writePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +2695:GrGLTexture::onSetLabel\28\29 +2696:GrGLTexture::onRelease\28\29 +2697:GrGLTexture::onAbandon\28\29 +2698:GrGLTexture::backendFormat\28\29\20const +2699:GrGLSLUniformHandler::addInputSampler\28skgpu::Swizzle\20const&\2c\20char\20const*\29 +2700:GrGLSLProgramBuilder::fragmentProcessorHasCoordsParam\28GrFragmentProcessor\20const*\29\20const +2701:GrGLRenderTarget::onRelease\28\29 +2702:GrGLRenderTarget::onAbandon\28\29 +2703:GrGLGpu::resolveRenderFBOs\28GrGLRenderTarget*\2c\20SkIRect\20const&\2c\20GrGLRenderTarget::ResolveDirection\2c\20bool\29 +2704:GrGLGpu::flushBlendAndColorWrite\28skgpu::BlendInfo\20const&\2c\20skgpu::Swizzle\20const&\29 +2705:GrGLGpu::deleteSync\28__GLsync*\29 +2706:GrGLGetVersionFromString\28char\20const*\29 +2707:GrGLFinishCallbacks::callAll\28bool\29 +2708:GrGLCheckLinkStatus\28GrGLGpu\20const*\2c\20unsigned\20int\2c\20bool\2c\20skgpu::ShaderErrorHandler*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const**\2c\20SkSL::NativeShader\20const*\29 +2709:GrGLCaps::maxRenderTargetSampleCount\28GrGLFormat\29\20const +2710:GrFragmentProcessors::Make\28SkBlenderBase\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20GrFPArgs\20const&\29 +2711:GrFragmentProcessor::isEqual\28GrFragmentProcessor\20const&\29\20const +2712:GrFragmentProcessor::asTextureEffect\28\29\20const +2713:GrFragmentProcessor::Rect\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRect\29 +2714:GrFragmentProcessor::ModulateRGBA\28std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +2715:GrDrawingManager::~GrDrawingManager\28\29 +2716:GrDrawingManager::removeRenderTasks\28\29 +2717:GrDrawingManager::getPathRenderer\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\2c\20bool\2c\20skgpu::ganesh::PathRendererChain::DrawType\2c\20skgpu::ganesh::PathRenderer::StencilSupport*\29 +2718:GrDrawOpAtlas::compact\28skgpu::Token\29 +2719:GrCpuBuffer::ref\28\29\20const +2720:GrContext_Base::~GrContext_Base\28\29 +2721:GrContext_Base::defaultBackendFormat\28SkColorType\2c\20skgpu::Renderable\29\20const +2722:GrColorSpaceXform::XformKey\28GrColorSpaceXform\20const*\29 +2723:GrColorSpaceXform::Make\28SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +2724:GrColorSpaceXform::Make\28GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +2725:GrColorInfo::operator=\28GrColorInfo\20const&\29 +2726:GrCaps::supportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +2727:GrCaps::getFallbackColorTypeAndFormat\28GrColorType\2c\20int\29\20const +2728:GrCaps::areColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +2729:GrBufferAllocPool::~GrBufferAllocPool\28\29 +2730:GrBlurUtils::DrawShapeWithMaskFilter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\29 +2731:GrBaseContextPriv::getShaderErrorHandler\28\29\20const +2732:GrBackendTexture::GrBackendTexture\28GrBackendTexture\20const&\29 +2733:GrBackendRenderTarget::getBackendFormat\28\29\20const +2734:GrBackendFormat::operator==\28GrBackendFormat\20const&\29\20const +2735:GrAAConvexTessellator::createOuterRing\28GrAAConvexTessellator::Ring\20const&\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring*\29 +2736:GrAAConvexTessellator::createInsetRings\28GrAAConvexTessellator::Ring&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring**\29 +2737:FindSortableTop\28SkOpContourHead*\29 +2738:FT_Stream_Close +2739:FT_Set_Charmap +2740:FT_Select_Metrics +2741:FT_Outline_Decompose +2742:FT_Open_Face +2743:FT_New_Size +2744:FT_Load_Sfnt_Table +2745:FT_GlyphLoader_Add +2746:FT_Get_Color_Glyph_Paint +2747:FT_Get_Color_Glyph_Layer +2748:FT_Done_Library +2749:FT_CMap_New +2750:End +2751:DecodeImageData\28sk_sp\29 +2752:Current_Ratio +2753:Cr_z__tr_stored_block +2754:ClipParams_unpackRegionOp\28SkReadBuffer*\2c\20unsigned\20int\29 +2755:CircleOp::Circle&\20skia_private::TArray::emplace_back\28CircleOp::Circle&&\29 +2756:AlmostEqualUlps_Pin\28float\2c\20float\29 +2757:AAT::hb_aat_apply_context_t::hb_aat_apply_context_t\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +2758:AAT::TrackTableEntry::get_value\28float\2c\20void\20const*\2c\20hb_array_t\2c\2016u>\20const>\29\20const +2759:AAT::StateTable::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +2760:2522 +2761:2523 +2762:2524 +2763:2525 +2764:2526 +2765:2527 +2766:2528 +2767:2529 +2768:wuffs_lzw__decoder__workbuf_len +2769:wuffs_gif__decoder__decode_image_config +2770:wuffs_gif__decoder__decode_frame_config +2771:winding_mono_quad\28SkSpan\2c\20float\2c\20float\2c\20int*\29 +2772:winding_mono_conic\28SkConic\20const&\2c\20float\2c\20float\2c\20int*\29 +2773:week_num +2774:wcrtomb +2775:wchar_t\20const*\20std::__2::find\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const&\29 +2776:void\20std::__2::__sort4\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +2777:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +2778:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +2779:void\20std::__2::__inplace_merge\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +2780:void\20sort_r_simple\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\2c\20void*\29\2c\20void*\29 +2781:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29_16147 +2782:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29 +2783:void\20SkTIntroSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29>\28int\2c\20double*\2c\20int\2c\20void\20SkTQSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29\20const&\29 +2784:void\20SkTIntroSort\28int\2c\20SkEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkEdge\20const*\2c\20SkEdge\20const*\29\29 +2785:void\20SkTHeapSort\28SkAnalyticEdge**\2c\20unsigned\20long\2c\20bool\20\20const\28&\29\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29\29 +2786:void\20AAT::StateTable::collect_initial_glyphs>\28hb_bit_set_t&\2c\20unsigned\20int\2c\20AAT::LigatureSubtable\20const&\29\20const +2787:vfprintf +2788:valid_args\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20unsigned\20long*\29 +2789:utf8_back1SafeBody_74 +2790:uscript_getShortName_74 +2791:uscript_getScript_74 +2792:ures_appendResPath\28UResourceBundle*\2c\20char\20const*\2c\20int\2c\20UErrorCode*\29 +2793:uprv_strnicmp_74 +2794:uprv_strdup_74 +2795:uprv_sortArray_74 +2796:uprv_min_74 +2797:uprv_mapFile_74 +2798:uprv_compareASCIIPropertyNames_74 +2799:update_offset_to_base\28char\20const*\2c\20long\29 +2800:update_box +2801:umutablecptrie_get_74 +2802:ultag_isUnicodeLocaleAttributes_74 +2803:ultag_isPrivateuseValueSubtags_74 +2804:ulocimp_getKeywords_74 +2805:ulocimp_canonicalize_74 +2806:uloc_openKeywords_74 +2807:uhash_remove_74 +2808:uhash_hashChars_74 +2809:uhash_getiAndFound_74 +2810:uhash_compareChars_74 +2811:udata_getHashTable\28UErrorCode&\29 +2812:ucstrTextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +2813:u_strToUTF8_74 +2814:u_strToUTF8WithSub_74 +2815:u_strCompare_74 +2816:u_getUnicodeProperties_74 +2817:u_getDataDirectory_74 +2818:u_charMirror_74 +2819:tt_size_reset +2820:tt_sbit_decoder_load_metrics +2821:tt_face_find_bdf_prop +2822:tolower +2823:toTextStyle\28SimpleTextStyle\20const&\29 +2824:t1_cmap_unicode_done +2825:subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +2826:subdivide\28SkConic\20const&\2c\20SkPoint*\2c\20int\29 +2827:subQuickSort\28char*\2c\20int\2c\20int\2c\20int\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\2c\20void\20const*\29\2c\20void\20const*\2c\20void*\2c\20void*\29 +2828:strtox +2829:strtoull_l +2830:strcat +2831:std::logic_error::~logic_error\28\29_19258 +2832:std::__2::vector>::__append\28unsigned\20long\29 +2833:std::__2::vector>::push_back\5babi:ne180100\5d\28float&&\29 +2834:std::__2::vector>::__append\28unsigned\20long\29 +2835:std::__2::vector<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20std::__2::allocator<\28anonymous\20namespace\29::CacheImpl::Value*>>::__throw_length_error\5babi:ne180100\5d\28\29\20const +2836:std::__2::vector>::reserve\28unsigned\20long\29 +2837:std::__2::vector\2c\20std::__2::allocator>>::push_back\5babi:ne180100\5d\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +2838:std::__2::unique_ptr<\28anonymous\20namespace\29::SoftwarePathData\2c\20std::__2::default_delete<\28anonymous\20namespace\29::SoftwarePathData>>::reset\5babi:ne180100\5d\28\28anonymous\20namespace\29::SoftwarePathData*\29 +2839:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2840:std::__2::time_put>>::~time_put\28\29_18799 +2841:std::__2::priority_queue>\2c\20GrAATriangulator::EventComparator>::push\28GrAATriangulator::Event*\20const&\29 +2842:std::__2::pair\2c\20std::__2::allocator>>>::~pair\28\29 +2843:std::__2::locale::operator=\28std::__2::locale\20const&\29 +2844:std::__2::locale::locale\28\29 +2845:std::__2::locale::__imp::acquire\28\29 +2846:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\29 +2847:std::__2::ios_base::~ios_base\28\29 +2848:std::__2::ios_base::clear\28unsigned\20int\29 +2849:std::__2::fpos<__mbstate_t>::fpos\5babi:nn180100\5d\28long\20long\29 +2850:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:ne180100\5d\28SkAnimatedImage::Frame&\2c\20SkAnimatedImage::Frame&\29 +2851:std::__2::default_delete::operator\28\29\5babi:ne180100\5d\28sktext::gpu::TextBlobRedrawCoordinator*\29\20const +2852:std::__2::char_traits::move\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +2853:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_17850 +2854:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29 +2855:std::__2::basic_stringbuf\2c\20std::__2::allocator>::__init_buf_ptrs\5babi:ne180100\5d\28\29 +2856:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28wchar_t\29 +2857:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +2858:std::__2::basic_string\2c\20std::__2::allocator>::append\28unsigned\20long\2c\20char\29 +2859:std::__2::basic_string\2c\20std::__2::allocator>::__make_iterator\5babi:nn180100\5d\28char*\29 +2860:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +2861:std::__2::basic_string\2c\20std::__2::allocator>::__init_copy_ctor_external\28char16_t\20const*\2c\20unsigned\20long\29 +2862:std::__2::basic_ostream>::~basic_ostream\28\29_17756 +2863:std::__2::basic_istream>::~basic_istream\28\29_17715 +2864:std::__2::basic_istream>::sentry::sentry\28std::__2::basic_istream>&\2c\20bool\29 +2865:std::__2::basic_iostream>::~basic_iostream\28\29_17777 +2866:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +2867:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +2868:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +2869:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +2870:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +2871:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +2872:std::__2::__to_address_helper\2c\20void>::__call\5babi:nn180100\5d\28std::__2::__wrap_iter\20const&\29 +2873:std::__2::__throw_length_error\5babi:ne180100\5d\28char\20const*\29 +2874:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +2875:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20wchar_t*\2c\20wchar_t&\2c\20wchar_t&\29 +2876:std::__2::__num_get::__stage2_float_loop\28wchar_t\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20wchar_t*\29 +2877:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20char*\2c\20char&\2c\20char&\29 +2878:std::__2::__num_get::__stage2_float_loop\28char\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20char*\29 +2879:std::__2::__libcpp_wcrtomb_l\5babi:nn180100\5d\28char*\2c\20wchar_t\2c\20__mbstate_t*\2c\20__locale_struct*\29 +2880:std::__2::__itoa::__base_10_u32\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2881:std::__2::__itoa::__append6\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2882:std::__2::__itoa::__append4\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2883:std::__2::__call_once\28unsigned\20long\20volatile&\2c\20void*\2c\20void\20\28*\29\28void*\29\29 +2884:sktext::gpu::VertexFiller::flatten\28SkWriteBuffer&\29\20const +2885:sktext::gpu::VertexFiller::deviceRectAndCheckTransform\28SkMatrix\20const&\29\20const +2886:sktext::gpu::VertexFiller::Make\28skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20SkRect\2c\20SkSpan\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::FillerType\29 +2887:sktext::gpu::SubRunContainer::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20SkRefCnt\20const*\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +2888:sktext::gpu::SubRunAllocator::SubRunAllocator\28int\29 +2889:sktext::gpu::StrikeCache::internalPurge\28unsigned\20long\29 +2890:sktext::gpu::GlyphVector::flatten\28SkWriteBuffer&\29\20const +2891:sktext::gpu::GlyphVector::Make\28sktext::SkStrikePromise&&\2c\20SkSpan\2c\20sktext::gpu::SubRunAllocator*\29 +2892:sktext::gpu::BagOfBytes::MinimumSizeWithOverhead\28int\2c\20int\2c\20int\2c\20int\29::'lambda'\28\29::operator\28\29\28\29\20const +2893:sktext::SkStrikePromise::flatten\28SkWriteBuffer&\29\20const +2894:sktext::GlyphRunBuilder::makeGlyphRunList\28sktext::GlyphRun\20const&\2c\20SkPaint\20const&\2c\20SkPoint\29 +2895:sktext::GlyphRun::GlyphRun\28SkFont\20const&\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\29 +2896:skpaint_to_grpaint_impl\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::optional>>\2c\20SkBlender*\2c\20GrPaint*\29 +2897:skip_literal_string +2898:skif::\28anonymous\20namespace\29::are_axes_nearly_integer_aligned\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29 +2899:skif::RoundIn\28SkRect\29 +2900:skif::FilterResult::applyColorFilter\28skif::Context\20const&\2c\20sk_sp\29\20const +2901:skif::FilterResult::Builder::outputBounds\28std::__2::optional>\29\20const +2902:skif::FilterResult::Builder::drawShader\28sk_sp\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +2903:skif::FilterResult::Builder::createInputShaders\28skif::LayerSpace\20const&\2c\20bool\29 +2904:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +2905:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +2906:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::set\28skia_private::THashMap>\2c\20SkGoodHash>::Pair\29 +2907:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +2908:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +2909:skia_private::THashTable::Traits>::resize\28int\29 +2910:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::resize\28int\29 +2911:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::find\28GrProgramDesc\20const&\29\20const +2912:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +2913:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrTextureProxy*&&\29 +2914:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +2915:skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::set\28SkSL::Variable\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +2916:skia_private::THashMap::set\28SkSL::SymbolTable::SymbolKey\2c\20SkSL::Symbol*\29 +2917:skia_private::THashMap::set\28SkSL::FunctionDeclaration\20const*\2c\20SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::FunctionState\29 +2918:skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::set\28SkIcuBreakIteratorCache::Request\2c\20sk_sp\29 +2919:skia_private::TArray::resize_back\28int\29 +2920:skia_private::TArray\2c\20false>::move\28void*\29 +2921:skia_private::TArray::push_back\28float\20const&\29 +2922:skia_private::TArray::operator=\28skia_private::TArray&&\29 +2923:skia_private::TArray::push_back\28SkRasterPipelineContexts::MemoryCtxInfo&&\29 +2924:skia_private::TArray::resize_back\28int\29 +2925:skia_png_write_chunk +2926:skia_png_set_sBIT +2927:skia_png_set_read_fn +2928:skia_png_set_packing +2929:skia_png_save_uint_32 +2930:skia_png_reciprocal2 +2931:skia_png_realloc_array +2932:skia_png_read_start_row +2933:skia_png_read_IDAT_data +2934:skia_png_handle_zTXt +2935:skia_png_handle_tRNS +2936:skia_png_handle_tIME +2937:skia_png_handle_tEXt +2938:skia_png_handle_sRGB +2939:skia_png_handle_sPLT +2940:skia_png_handle_sCAL +2941:skia_png_handle_sBIT +2942:skia_png_handle_pHYs +2943:skia_png_handle_pCAL +2944:skia_png_handle_oFFs +2945:skia_png_handle_iTXt +2946:skia_png_handle_iCCP +2947:skia_png_handle_hIST +2948:skia_png_handle_gAMA +2949:skia_png_handle_cHRM +2950:skia_png_handle_bKGD +2951:skia_png_handle_as_unknown +2952:skia_png_handle_PLTE +2953:skia_png_do_strip_channel +2954:skia_png_destroy_write_struct +2955:skia_png_destroy_info_struct +2956:skia_png_compress_IDAT +2957:skia_png_combine_row +2958:skia_png_colorspace_set_sRGB +2959:skia_png_check_fp_string +2960:skia_png_check_fp_number +2961:skia::textlayout::TypefaceFontStyleSet::createTypeface\28int\29 +2962:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::$_0::operator\28\29\28sk_sp\2c\20sk_sp\29\20const +2963:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const +2964:skia::textlayout::TextLine::getGlyphPositionAtCoordinate\28float\29 +2965:skia::textlayout::Run::isResolved\28\29\20const +2966:skia::textlayout::Run::copyTo\28SkTextBlobBuilder&\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +2967:skia::textlayout::ParagraphImpl::buildClusterTable\28\29 +2968:skia::textlayout::OneLineShaper::~OneLineShaper\28\29 +2969:skia::textlayout::FontCollection::setDefaultFontManager\28sk_sp\29 +2970:skia::textlayout::FontCollection::FontCollection\28\29 +2971:skia::textlayout::FontArguments::CloneTypeface\28sk_sp\20const&\29\20const +2972:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::flush\28GrMeshDrawTarget*\2c\20skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::FlushInfo*\29\20const +2973:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::~Impl\28\29 +2974:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::programInfo\28\29 +2975:skgpu::ganesh::SurfaceFillContext::discard\28\29 +2976:skgpu::ganesh::SurfaceDrawContext::internalStencilClear\28SkIRect\20const*\2c\20bool\29 +2977:skgpu::ganesh::SurfaceDrawContext::drawPath\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrStyle\20const&\29 +2978:skgpu::ganesh::SurfaceDrawContext::attemptQuadOptimization\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20DrawQuad*\2c\20GrPaint*\29 +2979:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +2980:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29::$_0::operator\28\29\28GrSurfaceProxyView\2c\20SkIRect\29\20const +2981:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +2982:skgpu::ganesh::QuadPerEdgeAA::MinColorType\28SkRGBA4f<\28SkAlphaType\292>\29 +2983:skgpu::ganesh::PathRendererChain::PathRendererChain\28GrRecordingContext*\2c\20skgpu::ganesh::PathRendererChain::Options\20const&\29 +2984:skgpu::ganesh::PathRenderer::getStencilSupport\28GrStyledShape\20const&\29\20const +2985:skgpu::ganesh::PathCurveTessellator::draw\28GrOpFlushState*\29\20const +2986:skgpu::ganesh::OpsTask::recordOp\28std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const*\2c\20GrCaps\20const&\29 +2987:skgpu::ganesh::MakeFragmentProcessorFromView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +2988:skgpu::ganesh::FilterAndMipmapHaveNoEffect\28GrQuad\20const&\2c\20GrQuad\20const&\29 +2989:skgpu::ganesh::FillRectOp::MakeNonAARect\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +2990:skgpu::ganesh::FillRRectOp::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +2991:skgpu::ganesh::Device::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +2992:skgpu::ganesh::Device::drawImageQuadDirect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +2993:skgpu::ganesh::Device::Make\28std::__2::unique_ptr>\2c\20SkAlphaType\2c\20skgpu::ganesh::Device::InitContents\29 +2994:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::setup_dashed_rect\28SkRect\20const&\2c\20skgpu::VertexWriter&\2c\20SkMatrix\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashCap\29 +2995:skgpu::ganesh::ClipStack::SaveRecord::invalidateMasks\28GrProxyProvider*\2c\20SkTBlockList*\29 +2996:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::SaveRecord\20const&\29\20const +2997:skgpu::ganesh::AtlasRenderTask::addAtlasDrawOp\28std::__2::unique_ptr>\2c\20GrCaps\20const&\29 +2998:skcpu::GlyphRunListPainter::GlyphRunListPainter\28SkSurfaceProps\20const&\2c\20SkColorType\2c\20SkColorSpace*\29 +2999:skcpu::Draw::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +3000:skcpu::Draw::drawDevicePoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\2c\20SkDevice*\29\20const +3001:skcpu::Draw::drawBitmap\28SkBitmap\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29\20const +3002:skcms_Transform +3003:skcms_TransferFunction_isPQish +3004:skcms_TransferFunction_isPQ +3005:skcms_MaxRoundtripError +3006:sk_sp::~sk_sp\28\29 +3007:sk_malloc_canfail\28unsigned\20long\2c\20unsigned\20long\29 +3008:sk_free_releaseproc\28void\20const*\2c\20void*\29 +3009:siprintf +3010:sift +3011:shallowTextClone\28UText*\2c\20UText\20const*\2c\20UErrorCode*\29 +3012:rotate\28SkDCubic\20const&\2c\20int\2c\20int\2c\20SkDCubic&\29 +3013:res_getResource_74 +3014:read_header\28SkStream*\2c\20SkISize*\29 +3015:quad_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3016:psh_globals_set_scale +3017:ps_parser_skip_PS_token +3018:ps_builder_done +3019:png_text_compress +3020:png_inflate_read +3021:png_inflate_claim +3022:png_image_size +3023:png_default_warning +3024:png_colorspace_endpoints_match +3025:png_build_16bit_table +3026:normalize +3027:next_marker +3028:make_unpremul_effect\28std::__2::unique_ptr>\29 +3029:long\20std::__2::__libcpp_atomic_refcount_decrement\5babi:nn180100\5d\28long&\29 +3030:long\20const&\20std::__2::min\5babi:nn180100\5d\28long\20const&\2c\20long\20const&\29 +3031:log1p +3032:locale_getKeywordsStart_74 +3033:load_truetype_glyph +3034:loadParentsExceptRoot\28UResourceDataEntry*&\2c\20char*\2c\20int\2c\20signed\20char\2c\20char*\2c\20UErrorCode*\29 +3035:line_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3036:lang_find_or_insert\28char\20const*\29 +3037:jpeg_calc_output_dimensions +3038:jpeg_CreateDecompress +3039:inner_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +3040:inflate_table +3041:increment_simple_rowgroup_ctr +3042:icu_74::spanOneUTF8\28icu_74::UnicodeSet\20const&\2c\20unsigned\20char\20const*\2c\20int\29 +3043:icu_74::enumGroupNames\28icu_74::UCharNames*\2c\20unsigned\20short\20const*\2c\20int\2c\20int\2c\20signed\20char\20\28*\29\28void*\2c\20int\2c\20UCharNameChoice\2c\20char\20const*\2c\20int\29\2c\20void*\2c\20UCharNameChoice\29 +3044:icu_74::\28anonymous\20namespace\29::appendResult\28char16_t*\2c\20int\2c\20int\2c\20int\2c\20char16_t\20const*\2c\20int\2c\20unsigned\20int\2c\20icu_74::Edits*\29 +3045:icu_74::\28anonymous\20namespace\29::AliasReplacer::replace\28icu_74::Locale\20const&\2c\20icu_74::CharString&\2c\20UErrorCode&\29::$_0::__invoke\28UElement\2c\20UElement\29 +3046:icu_74::XLikelySubtagsData::readStrings\28icu_74::ResourceTable\20const&\2c\20char\20const*\2c\20icu_74::ResourceValue&\2c\20icu_74::LocalMemory&\2c\20int&\2c\20UErrorCode&\29 +3047:icu_74::UniqueCharStrings::addByValue\28icu_74::UnicodeString\2c\20UErrorCode&\29 +3048:icu_74::UnicodeString::getTerminatedBuffer\28\29 +3049:icu_74::UnicodeString::doCompare\28int\2c\20int\2c\20char16_t\20const*\2c\20int\2c\20int\29\20const +3050:icu_74::UnicodeString::UnicodeString\28char16_t\20const*\2c\20int\29 +3051:icu_74::UnicodeSet::ensureBufferCapacity\28int\29 +3052:icu_74::UnicodeSet::applyIntPropertyValue\28UProperty\2c\20int\2c\20UErrorCode&\29 +3053:icu_74::UnicodeSet::applyFilter\28signed\20char\20\28*\29\28int\2c\20void*\29\2c\20void*\2c\20icu_74::UnicodeSet\20const*\2c\20UErrorCode&\29 +3054:icu_74::UnicodeSet::UnicodeSet\28icu_74::UnicodeSet\20const&\29 +3055:icu_74::UVector::sort\28int\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +3056:icu_74::UVector::insertElementAt\28void*\2c\20int\2c\20UErrorCode&\29 +3057:icu_74::UStack::UStack\28void\20\28*\29\28void*\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +3058:icu_74::UCharsTrieBuilder::add\28icu_74::UnicodeString\20const&\2c\20int\2c\20UErrorCode&\29 +3059:icu_74::StringTrieBuilder::~StringTrieBuilder\28\29 +3060:icu_74::StringPiece::compare\28icu_74::StringPiece\29 +3061:icu_74::SimpleFilteredSentenceBreakIterator::internalNext\28int\29 +3062:icu_74::RuleCharacterIterator::atEnd\28\29\20const +3063:icu_74::ResourceDataValue::getTable\28UErrorCode&\29\20const +3064:icu_74::ResourceDataValue::getString\28int&\2c\20UErrorCode&\29\20const +3065:icu_74::ReorderingBuffer::append\28char16_t\20const*\2c\20int\2c\20signed\20char\2c\20unsigned\20char\2c\20unsigned\20char\2c\20UErrorCode&\29 +3066:icu_74::PatternProps::isWhiteSpace\28int\29 +3067:icu_74::Normalizer2Impl::~Normalizer2Impl\28\29 +3068:icu_74::Normalizer2Impl::decompose\28int\2c\20unsigned\20short\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +3069:icu_74::Normalizer2Impl::decompose\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer*\2c\20UErrorCode&\29\20const +3070:icu_74::Normalizer2Impl::decomposeShort\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20signed\20char\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +3071:icu_74::Norm2AllModes::~Norm2AllModes\28\29 +3072:icu_74::Norm2AllModes::createInstance\28icu_74::Normalizer2Impl*\2c\20UErrorCode&\29 +3073:icu_74::LocaleUtility::initNameFromLocale\28icu_74::Locale\20const&\2c\20icu_74::UnicodeString&\29 +3074:icu_74::LocaleBuilder::~LocaleBuilder\28\29 +3075:icu_74::Locale::getKeywordValue\28icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20UErrorCode&\29\20const +3076:icu_74::Locale::getDefault\28\29 +3077:icu_74::LoadedNormalizer2Impl::load\28char\20const*\2c\20char\20const*\2c\20UErrorCode&\29 +3078:icu_74::ICUServiceKey::~ICUServiceKey\28\29 +3079:icu_74::ICUResourceBundleFactory::~ICUResourceBundleFactory\28\29 +3080:icu_74::ICULocaleService::~ICULocaleService\28\29 +3081:icu_74::EmojiProps::getSingleton\28UErrorCode&\29 +3082:icu_74::Edits::reset\28\29 +3083:icu_74::DictionaryBreakEngine::~DictionaryBreakEngine\28\29 +3084:icu_74::ByteSinkUtil::appendChange\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20char16_t\20const*\2c\20int\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29 +3085:icu_74::BreakIterator::makeInstance\28icu_74::Locale\20const&\2c\20int\2c\20UErrorCode&\29 +3086:hb_vector_t::push\28\29 +3087:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +3088:hb_tag_from_string +3089:hb_shape_plan_destroy +3090:hb_script_get_horizontal_direction +3091:hb_paint_extents_context_t::push_clip\28hb_extents_t\29 +3092:hb_lazy_loader_t\2c\20hb_face_t\2c\203u\2c\20OT::cmap_accelerator_t>::do_destroy\28OT::cmap_accelerator_t*\29 +3093:hb_lazy_loader_t\2c\20hb_face_t\2c\2039u\2c\20OT::SVG_accelerator_t>::do_destroy\28OT::SVG_accelerator_t*\29 +3094:hb_hashmap_t::alloc\28unsigned\20int\29 +3095:hb_font_funcs_destroy +3096:hb_face_get_upem +3097:hb_face_destroy +3098:hb_draw_cubic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +3099:hb_buffer_set_segment_properties +3100:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3101:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3102:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3103:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3104:hb_blob_create +3105:haircubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3106:gray_render_line +3107:get_vendor\28char\20const*\29 +3108:get_renderer\28char\20const*\2c\20GrGLExtensions\20const&\29 +3109:get_layer_mapping_and_bounds\28SkSpan>\2c\20SkM44\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\2c\20float\29 +3110:get_joining_type\28unsigned\20int\2c\20hb_unicode_general_category_t\29 +3111:getDefaultScript\28icu_74::CharString\20const&\2c\20icu_74::CharString\20const&\29 +3112:generate_distance_field_from_image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\29 +3113:ft_var_readpackeddeltas +3114:ft_var_get_item_delta +3115:ft_var_done_item_variation_store +3116:ft_glyphslot_alloc_bitmap +3117:freelocale +3118:free_pool +3119:fquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3120:fp_barrierf +3121:fline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3122:fixN0c\28BracketData*\2c\20int\2c\20int\2c\20unsigned\20char\29 +3123:fiprintf +3124:findFirstExisting\28char\20const*\2c\20char*\2c\20char\20const*\2c\20UResOpenType\2c\20signed\20char*\2c\20signed\20char*\2c\20signed\20char*\2c\20UErrorCode*\29 +3125:fcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3126:fconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3127:fclose +3128:expm1f +3129:exp2 +3130:emscripten::internal::MethodInvoker::invoke\28void\20\28SkFont::*\20const&\29\28float\29\2c\20SkFont*\2c\20float\29 +3131:emscripten::internal::Invoker>\2c\20SimpleParagraphStyle\2c\20sk_sp>::invoke\28std::__2::unique_ptr>\20\28*\29\28SimpleParagraphStyle\2c\20sk_sp\29\2c\20SimpleParagraphStyle*\2c\20sk_sp*\29 +3132:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28SkFontMgr&\2c\20int\29\2c\20SkFontMgr*\2c\20int\29 +3133:draw_nine\28SkMask\20const&\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\2c\20bool\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3134:do_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +3135:do_putc +3136:doLoadFromCommonData\28signed\20char\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20signed\20char\20\28*\29\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29\2c\20void*\2c\20UErrorCode*\2c\20UErrorCode*\29 +3137:deserialize_image\28sk_sp\2c\20SkDeserialProcs\2c\20std::__2::optional\29 +3138:decompose\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\2c\20unsigned\20int\29 +3139:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0>\28skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0&&\29::'lambda'\28char*\29::__invoke\28char*\29 +3140:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool&\2c\20GrPipeline*&\2c\20GrUserStencilSettings\20const*&&\2c\20\28anonymous\20namespace\29::DrawAtlasPathShader*&\2c\20GrPrimitiveType&&\2c\20GrXferBarrierFlags&\2c\20GrLoadOp&\29::'lambda'\28void*\29>\28GrProgramInfo&&\29::'lambda'\28char*\29::__invoke\28char*\29 +3141:cubic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3142:conic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3143:compute_ULong_sum +3144:char\20const*\20std::__2::find\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char\20const&\29 +3145:cff_index_get_pointers +3146:cf2_glyphpath_computeOffset +3147:build_tree +3148:bool\20std::__2::__is_pointer_in_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char\20const*\29 +3149:bool\20OT::glyf_impl::Glyph::get_points\28hb_font_t*\2c\20OT::glyf_accelerator_t\20const&\2c\20contour_point_vector_t&\2c\20hb_glyf_scratch_t&\2c\20contour_point_vector_t*\2c\20head_maxp_info_t*\2c\20unsigned\20int*\2c\20bool\2c\20bool\2c\20bool\2c\20hb_array_t\2c\20unsigned\20int\2c\20unsigned\20int*\29\20const +3150:bool\20OT::glyf_accelerator_t::get_points\28hb_font_t*\2c\20unsigned\20int\2c\20OT::glyf_accelerator_t::points_aggregator_t\2c\20hb_array_t\2c\20hb_glyf_scratch_t&\29\20const +3151:bool\20OT::GSUBGPOSVersion1_2::sanitize\28hb_sanitize_context_t*\29\20const +3152:bool\20OT::GSUBGPOSVersion1_2::sanitize\28hb_sanitize_context_t*\29\20const +3153:bool\20OT::Condition::evaluate\28int\20const*\2c\20unsigned\20int\2c\20OT::ItemVarStoreInstancer*\29\20const +3154:blit_aaa_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +3155:atan +3156:alloc_large +3157:af_glyph_hints_done +3158:add_quad\28SkPoint\20const*\2c\20skia_private::TArray*\29 +3159:acos +3160:aaa_fill_path\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20AdditiveBlitter*\2c\20int\2c\20int\2c\20bool\2c\20bool\2c\20bool\29 +3161:_get_path\28OT::cff1::accelerator_t\20const*\2c\20hb_font_t*\2c\20unsigned\20int\2c\20hb_draw_session_t&\2c\20bool\2c\20CFF::point_t*\29 +3162:_get_bounds\28OT::cff1::accelerator_t\20const*\2c\20unsigned\20int\2c\20bounds_t&\2c\20bool\29 +3163:_enumPropertyStartsRange\28void\20const*\2c\20int\2c\20int\2c\20unsigned\20int\29 +3164:_embind_register_bindings +3165:_canonicalize\28char\20const*\2c\20icu_74::ByteSink&\2c\20unsigned\20int\2c\20UErrorCode*\29 +3166:__trunctfdf2 +3167:__towrite +3168:__toread +3169:__subtf3 +3170:__strchrnul +3171:__rem_pio2f +3172:__rem_pio2 +3173:__math_uflowf +3174:__math_oflowf +3175:__fwritex +3176:__cxxabiv1::__class_type_info::process_static_type_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\29\20const +3177:__cxxabiv1::__class_type_info::process_static_type_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\29\20const +3178:__cxxabiv1::__class_type_info::process_found_base_class\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +3179:__cxxabiv1::__base_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +3180:\28anonymous\20namespace\29::ulayout_ensureData\28UErrorCode&\29 +3181:\28anonymous\20namespace\29::subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +3182:\28anonymous\20namespace\29::shape_contains_rect\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const&\2c\20bool\29 +3183:\28anonymous\20namespace\29::getRange\28void\20const*\2c\20int\2c\20unsigned\20int\20\28*\29\28void\20const*\2c\20unsigned\20int\29\2c\20void\20const*\2c\20unsigned\20int*\29 +3184:\28anonymous\20namespace\29::generateFacePathCOLRv1\28FT_FaceRec_*\2c\20unsigned\20short\2c\20SkMatrix\20const*\29 +3185:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads_with_constraint\28SkPoint\20const*\2c\20float\2c\20SkPathFirstDirection\2c\20skia_private::TArray*\2c\20int\29 +3186:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\2c\20int\2c\20bool\2c\20bool\29 +3187:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const +3188:\28anonymous\20namespace\29::bloat_quad\28SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkMatrix\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +3189:\28anonymous\20namespace\29::SkEmptyTypeface::onMakeClone\28SkFontArguments\20const&\29\20const +3190:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29_5425 +3191:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29 +3192:\28anonymous\20namespace\29::DrawAtlasOpImpl::visitProxies\28std::__2::function\20const&\29\20const +3193:\28anonymous\20namespace\29::DrawAtlasOpImpl::programInfo\28\29 +3194:\28anonymous\20namespace\29::DrawAtlasOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +3195:\28anonymous\20namespace\29::DirectMaskSubRun::~DirectMaskSubRun\28\29 +3196:\28anonymous\20namespace\29::DirectMaskSubRun::testingOnly_packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29\20const +3197:WebPRescaleNeededLines +3198:WebPInitDecBufferInternal +3199:WebPInitCustomIo +3200:WebPGetFeaturesInternal +3201:WebPDemuxGetFrame +3202:VP8LInitBitReader +3203:VP8LColorIndexInverseTransformAlpha +3204:VP8InitIoInternal +3205:VP8InitBitReader +3206:UDatamemory_assign_74 +3207:T_CString_toUpperCase_74 +3208:TT_Vary_Apply_Glyph_Deltas +3209:TT_Set_Var_Design +3210:SkWuffsCodec::decodeFrame\28\29 +3211:SkVertices::uniqueID\28\29\20const +3212:SkVertices::MakeCopy\28SkVertices::VertexMode\2c\20int\2c\20SkPoint\20const*\2c\20SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20short\20const*\29 +3213:SkVertices::Builder::texCoords\28\29 +3214:SkVertices::Builder::positions\28\29 +3215:SkVertices::Builder::init\28SkVertices::Desc\20const&\29 +3216:SkVertices::Builder::colors\28\29 +3217:SkVertices::Builder::Builder\28SkVertices::VertexMode\2c\20int\2c\20int\2c\20unsigned\20int\29 +3218:SkUnicodes::ICU::Make\28\29 +3219:SkUnicode_icu::extractPositions\28char\20const*\2c\20int\2c\20SkUnicode::BreakType\2c\20char\20const*\2c\20std::__2::function\20const&\29 +3220:SkTypeface_FreeType::MakeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29 +3221:SkTypeface::getTableSize\28unsigned\20int\29\20const +3222:SkTiff::ImageFileDirectory::getEntryTag\28unsigned\20short\29\20const +3223:SkTiff::ImageFileDirectory::MakeFromOffset\28sk_sp\2c\20bool\2c\20unsigned\20int\2c\20bool\29 +3224:SkTextBlobRunIterator::positioning\28\29\20const +3225:SkTSpan::splitAt\28SkTSpan*\2c\20double\2c\20SkArenaAlloc*\29 +3226:SkTSect::computePerpendiculars\28SkTSect*\2c\20SkTSpan*\2c\20SkTSpan*\29 +3227:SkTDStorage::insert\28int\29 +3228:SkTDStorage::calculateSizeOrDie\28int\29::$_0::operator\28\29\28\29\20const +3229:SkTDPQueue::percolateDownIfNecessary\28int\29 +3230:SkTConic::hullIntersects\28SkDConic\20const&\2c\20bool*\29\20const +3231:SkStrokerPriv::CapFactory\28SkPaint::Cap\29 +3232:SkStrokeRec::getInflationRadius\28\29\20const +3233:SkString::equals\28char\20const*\29\20const +3234:SkString::SkString\28unsigned\20long\29 +3235:SkString::SkString\28std::__2::basic_string_view>\29 +3236:SkStrikeSpec::MakeTransformMask\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +3237:SkStrikeSpec::MakePath\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\29 +3238:SkSpecialImages::MakeFromRaster\28SkIRect\20const&\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\29 +3239:SkShapers::HB::ShapeDontWrapOrReorder\28sk_sp\2c\20sk_sp\29 +3240:SkShaper::TrivialRunIterator::endOfCurrentRun\28\29\20const +3241:SkShaper::MakeFontMgrRunIterator\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20sk_sp\29 +3242:SkShadowTessellator::MakeAmbient\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20bool\29 +3243:SkScan::HairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +3244:SkScan::FillTriangle\28SkPoint\20const*\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3245:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3246:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3247:SkScan::AntiHairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3248:SkScan::AntiHairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +3249:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\2c\20bool\29 +3250:SkScalerContextRec::CachedMaskGamma\28unsigned\20char\2c\20unsigned\20char\29 +3251:SkScalerContextFTUtils::drawSVGGlyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +3252:SkScalerContext::getFontMetrics\28SkFontMetrics*\29 +3253:SkSLTypeString\28SkSLType\29 +3254:SkSL::simplify_negation\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\29 +3255:SkSL::simplify_matrix_multiplication\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +3256:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +3257:SkSL::build_argument_type_list\28SkSpan>\20const>\29 +3258:SkSL::\28anonymous\20namespace\29::SwitchCaseContainsExit::visitStatement\28SkSL::Statement\20const&\29 +3259:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::returnsInputAlpha\28SkSL::Expression\20const&\29 +3260:SkSL::\28anonymous\20namespace\29::ConstantExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +3261:SkSL::Variable::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\29 +3262:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29\20const +3263:SkSL::Type::MakeSamplerType\28char\20const*\2c\20SkSL::Type\20const&\29 +3264:SkSL::SymbolTable::moveSymbolTo\28SkSL::SymbolTable*\2c\20SkSL::Symbol*\2c\20SkSL::Context\20const&\29 +3265:SkSL::SymbolTable::isType\28std::__2::basic_string_view>\29\20const +3266:SkSL::Symbol::instantiate\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +3267:SkSL::StructType::slotCount\28\29\20const +3268:SkSL::ReturnStatement::~ReturnStatement\28\29_6054 +3269:SkSL::ReturnStatement::~ReturnStatement\28\29 +3270:SkSL::RP::UnownedLValueSlice::~UnownedLValueSlice\28\29 +3271:SkSL::RP::Generator::pushTernaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +3272:SkSL::RP::Generator::pushStructuredComparison\28SkSL::RP::LValue*\2c\20SkSL::Operator\2c\20SkSL::RP::LValue*\2c\20SkSL::Type\20const&\29 +3273:SkSL::RP::Generator::pushMatrixMultiply\28SkSL::RP::LValue*\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +3274:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29 +3275:SkSL::RP::Builder::push_uniform\28SkSL::RP::SlotRange\29 +3276:SkSL::RP::Builder::merge_condition_mask\28\29 +3277:SkSL::RP::Builder::jump\28int\29 +3278:SkSL::RP::Builder::branch_if_no_active_lanes_on_stack_top_equal\28int\2c\20int\29 +3279:SkSL::ProgramUsage::~ProgramUsage\28\29 +3280:SkSL::ProgramUsage::add\28SkSL::ProgramElement\20const&\29 +3281:SkSL::Pool::detachFromThread\28\29 +3282:SkSL::PipelineStage::ConvertProgram\28SkSL::Program\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20SkSL::PipelineStage::Callbacks*\29 +3283:SkSL::Parser::unaryExpression\28\29 +3284:SkSL::Parser::swizzle\28SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::basic_string_view>\2c\20SkSL::Position\29 +3285:SkSL::Parser::block\28bool\2c\20std::__2::unique_ptr>*\29 +3286:SkSL::Operator::getBinaryPrecedence\28\29\20const +3287:SkSL::ModuleLoader::loadGPUModule\28SkSL::Compiler*\29 +3288:SkSL::ModifierFlags::checkPermittedFlags\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\29\20const +3289:SkSL::Mangler::uniqueName\28std::__2::basic_string_view>\2c\20SkSL::SymbolTable*\29 +3290:SkSL::LiteralType::slotType\28unsigned\20long\29\20const +3291:SkSL::Layout::operator==\28SkSL::Layout\20const&\29\20const +3292:SkSL::Layout::checkPermittedLayout\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkEnumBitMask\29\20const +3293:SkSL::Inliner::analyze\28std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\29 +3294:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29 +3295:SkSL::GLSLCodeGenerator::writeLiteral\28SkSL::Literal\20const&\29 +3296:SkSL::GLSLCodeGenerator::writeFunctionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +3297:SkSL::ForStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3298:SkSL::FieldAccess::description\28SkSL::OperatorPrecedence\29\20const +3299:SkSL::Expression::isIncomplete\28SkSL::Context\20const&\29\20const +3300:SkSL::Expression::compareConstant\28SkSL::Expression\20const&\29\20const +3301:SkSL::DebugTracePriv::~DebugTracePriv\28\29 +3302:SkSL::Context::Context\28SkSL::BuiltinTypes\20const&\2c\20SkSL::ErrorReporter&\29 +3303:SkSL::ConstructorArrayCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +3304:SkSL::ConstructorArray::~ConstructorArray\28\29 +3305:SkSL::ConstructorArray::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +3306:SkSL::Analysis::GetReturnComplexity\28SkSL::FunctionDefinition\20const&\29 +3307:SkSL::Analysis::CallsColorTransformIntrinsics\28SkSL::Program\20const&\29 +3308:SkSL::AliasType::bitWidth\28\29\20const +3309:SkRuntimeEffectPriv::VarAsUniform\28SkSL::Variable\20const&\2c\20SkSL::Context\20const&\2c\20unsigned\20long*\29 +3310:SkRuntimeEffectPriv::UniformsAsSpan\28SkSpan\2c\20sk_sp\2c\20bool\2c\20SkColorSpace\20const*\2c\20SkArenaAlloc*\29 +3311:SkRuntimeEffect::source\28\29\20const +3312:SkRuntimeEffect::makeShader\28sk_sp\2c\20SkSpan\2c\20SkMatrix\20const*\29\20const +3313:SkRuntimeEffect::MakeForBlender\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +3314:SkResourceCache::~SkResourceCache\28\29 +3315:SkResourceCache::discardableFactory\28\29\20const +3316:SkResourceCache::checkMessages\28\29 +3317:SkResourceCache::NewCachedData\28unsigned\20long\29 +3318:SkRegion::translate\28int\2c\20int\2c\20SkRegion*\29\20const +3319:SkRegion::getBoundaryPath\28\29\20const +3320:SkReduceOrder::Cubic\28SkPoint\20const*\2c\20SkPoint*\29 +3321:SkRectPriv::QuadContainsRectMask\28SkM44\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20float\29 +3322:SkRectClipBlitter::~SkRectClipBlitter\28\29 +3323:SkRecords::PreCachedPath::PreCachedPath\28SkPath\20const&\29 +3324:SkRecords::FillBounds::pushSaveBlock\28SkPaint\20const*\2c\20bool\29 +3325:SkRecordDraw\28SkRecord\20const&\2c\20SkCanvas*\2c\20SkPicture\20const*\20const*\2c\20SkDrawable*\20const*\2c\20int\2c\20SkBBoxHierarchy\20const*\2c\20SkPicture::AbortCallback*\29 +3326:SkReadBuffer::readPoint\28SkPoint*\29 +3327:SkReadBuffer::readPath\28\29 +3328:SkReadBuffer::readByteArrayAsData\28\29 +3329:SkRasterPipeline_<256ul>::SkRasterPipeline_\28\29 +3330:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29 +3331:SkRasterPipelineBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +3332:SkRasterPipelineBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +3333:SkRasterPipeline::appendLoad\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +3334:SkRasterClipStack::SkRasterClipStack\28int\2c\20int\29 +3335:SkRasterClip::op\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkClipOp\2c\20bool\29 +3336:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29 +3337:SkRBuffer::skip\28unsigned\20long\29 +3338:SkPngEncoderImpl::~SkPngEncoderImpl\28\29 +3339:SkPngEncoderBase::getTargetInfo\28SkImageInfo\20const&\29 +3340:SkPngEncoder::Make\28SkWStream*\2c\20SkPixmap\20const&\2c\20SkPngEncoder::Options\20const&\29 +3341:SkPngDecoder::IsPng\28void\20const*\2c\20unsigned\20long\29 +3342:SkPixelRef::~SkPixelRef\28\29 +3343:SkPixelRef::notifyPixelsChanged\28\29 +3344:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20sk_sp\29 +3345:SkPictureRecord::addPathToHeap\28SkPath\20const&\29 +3346:SkPictureData::getPath\28SkReadBuffer*\29\20const +3347:SkPicture::serialize\28SkWStream*\2c\20SkSerialProcs\20const*\2c\20SkRefCntSet*\2c\20bool\29\20const +3348:SkPathWriter::update\28SkOpPtT\20const*\29 +3349:SkPathStroker::strokeCloseEnough\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20SkQuadConstruct*\29\20const +3350:SkPathStroker::finishContour\28bool\2c\20bool\29 +3351:SkPathRef::isRRect\28\29\20const +3352:SkPathRef::addGenIDChangeListener\28sk_sp\29 +3353:SkPathRawShapes::RRect::RRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +3354:SkPathPriv::ComputeFirstDirection\28SkPath\20const&\29 +3355:SkPathEffectBase::onAsPoints\28SkPathEffectBase::PointData*\2c\20SkPath\20const&\2c\20SkStrokeRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\29\20const +3356:SkPathEffect::filterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +3357:SkPathBuilder::privateReversePathTo\28SkPath\20const&\29 +3358:SkPathBuilder::operator=\28SkPath\20const&\29 +3359:SkPath::writeToMemory\28void*\29\20const +3360:SkPath::getConvexityOrUnknown\28\29\20const +3361:SkPath::contains\28float\2c\20float\29\20const +3362:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29::$_0::operator\28\29\28SkPoint\20const&\29\20const +3363:SkPath::approximateBytesUsed\28\29\20const +3364:SkParsePath::ToSVGString\28SkPath\20const&\2c\20SkParsePath::PathEncoding\29::$_0::operator\28\29\28char\2c\20SkPoint\20const*\2c\20unsigned\20long\29\20const +3365:SkParse::FindScalar\28char\20const*\2c\20float*\29 +3366:SkPaintToGrPaintWithBlend\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkBlender*\2c\20GrPaint*\29 +3367:SkPaintToGrPaintReplaceShader\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::unique_ptr>\2c\20GrPaint*\29 +3368:SkPaint::refImageFilter\28\29\20const +3369:SkPaint::refBlender\28\29\20const +3370:SkPaint::getBlendMode_or\28SkBlendMode\29\20const +3371:SkPackARGB_as_RGBA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +3372:SkPackARGB_as_BGRA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +3373:SkOpSpan::setOppSum\28int\29 +3374:SkOpSegment::markAndChaseWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int\2c\20SkOpSpanBase**\29 +3375:SkOpSegment::markAllDone\28\29 +3376:SkOpSegment::activeWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +3377:SkOpPtT::contains\28SkOpSegment\20const*\29\20const +3378:SkOpEdgeBuilder::closeContour\28SkPoint\20const&\2c\20SkPoint\20const&\29 +3379:SkOpCoincidence::releaseDeleted\28\29 +3380:SkOpCoincidence::markCollapsed\28SkOpPtT*\29 +3381:SkOpCoincidence::findOverlaps\28SkOpCoincidence*\29\20const +3382:SkOpCoincidence::expand\28\29 +3383:SkOpCoincidence::apply\28\29 +3384:SkOpAngle::orderable\28SkOpAngle*\29 +3385:SkOpAngle::computeSector\28\29 +3386:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\2c\20sk_sp\29 +3387:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\29 +3388:SkMipmap::countLevels\28\29\20const +3389:SkMessageBus::BufferFinishedMessage\2c\20GrDirectContext::DirectContextID\2c\20false>::Get\28\29 +3390:SkMemoryStream::SkMemoryStream\28sk_sp\29 +3391:SkMatrix\20skif::Mapping::map\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +3392:SkMatrix::postSkew\28float\2c\20float\29 +3393:SkMatrix::getMinScale\28\29\20const +3394:SkMatrix::getMinMaxScales\28float*\29\20const +3395:SkMatrix::PolyToPoly\28SkSpan\2c\20SkSpan\29 +3396:SkMaskBuilder::PrepareDestination\28int\2c\20int\2c\20SkMask\20const&\29 +3397:SkM44::preTranslate\28float\2c\20float\2c\20float\29 +3398:SkLineClipper::ClipLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\2c\20bool\29 +3399:SkLRUCache::~SkLRUCache\28\29 +3400:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29 +3401:SkJSONWriter::separator\28bool\29 +3402:SkInvert4x4Matrix\28float\20const*\2c\20float*\29 +3403:SkIntersections::intersectRay\28SkDQuad\20const&\2c\20SkDLine\20const&\29 +3404:SkIntersections::intersectRay\28SkDLine\20const&\2c\20SkDLine\20const&\29 +3405:SkIntersections::intersectRay\28SkDCubic\20const&\2c\20SkDLine\20const&\29 +3406:SkIntersections::intersectRay\28SkDConic\20const&\2c\20SkDLine\20const&\29 +3407:SkIntersections::cleanUpParallelLines\28bool\29 +3408:SkImage_Raster::onPeekBitmap\28\29\20const +3409:SkImage_Raster::SkImage_Raster\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20int\29 +3410:SkImage_Ganesh::~SkImage_Ganesh\28\29 +3411:SkImageShader::Make\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +3412:SkImageInfo::Make\28SkISize\2c\20SkColorType\2c\20SkAlphaType\29 +3413:SkImageInfo::MakeN32Premul\28SkISize\29 +3414:SkImageGenerator::getPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\29 +3415:SkImageGenerator::SkImageGenerator\28SkImageInfo\20const&\2c\20unsigned\20int\29 +3416:SkImageFilters::Blur\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +3417:SkImageFilter_Base::getInputBounds\28skif::Mapping\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\29\20const +3418:SkImageFilter_Base::filterImage\28skif::Context\20const&\29\20const +3419:SkImageFilter_Base::affectsTransparentBlack\28\29\20const +3420:SkImage::makeRasterImage\28GrDirectContext*\2c\20SkImage::CachingHint\29\20const +3421:SkImage::height\28\29\20const +3422:SkIcuBreakIteratorCache::makeBreakIterator\28SkUnicode::BreakType\2c\20char\20const*\29 +3423:SkIDChangeListener::List::add\28sk_sp\29 +3424:SkGradientShader::MakeTwoPointConical\28SkPoint\20const&\2c\20float\2c\20SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +3425:SkGradientShader::MakeLinear\28SkPoint\20const*\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +3426:SkGradientBaseShader::AppendInterpolatedToDstStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20bool\2c\20SkGradientShader::Interpolation\20const&\2c\20SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +3427:SkGlyph::setPath\28SkArenaAlloc*\2c\20SkScalerContext*\29 +3428:SkGlyph::pathIsHairline\28\29\20const +3429:SkGlyph::mask\28\29\20const +3430:SkFontPriv::ApproximateTransformedTextSize\28SkFont\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\20const&\29 +3431:SkFontMgr::matchFamily\28char\20const*\29\20const +3432:SkFloatInterpFunc\28float\2c\20float\20const*\2c\20float\20const*\2c\20int\29 +3433:SkFindCubicMaxCurvature\28SkPoint\20const*\2c\20float*\29 +3434:SkExif::parse_ifd\28SkExif::Metadata&\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20bool\2c\20bool\29 +3435:SkEncoder::encodeRows\28int\29 +3436:SkEncodedInfo::ICCProfile::Make\28sk_sp\29 +3437:SkEmptyFontMgr::onMatchFamilyStyleCharacter\28char\20const*\2c\20SkFontStyle\20const&\2c\20char\20const**\2c\20int\2c\20int\29\20const +3438:SkEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkIRect\20const*\29 +3439:SkDynamicMemoryWStream::padToAlign4\28\29 +3440:SkDrawable::SkDrawable\28\29 +3441:SkDevice::simplifyGlyphRunRSXFormAndRedraw\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +3442:SkDevice::setDeviceCoordinateSystem\28SkM44\20const&\2c\20SkM44\20const&\2c\20SkM44\20const&\2c\20int\2c\20int\29 +3443:SkDataTable::at\28int\2c\20unsigned\20long*\29\20const +3444:SkData::MakeFromStream\28SkStream*\2c\20unsigned\20long\29 +3445:SkDQuad::dxdyAtT\28double\29\20const +3446:SkDQuad::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +3447:SkDQuad::FindExtrema\28double\20const*\2c\20double*\29 +3448:SkDCubic::subDivide\28double\2c\20double\29\20const +3449:SkDCubic::searchRoots\28double*\2c\20int\2c\20double\2c\20SkDCubic::SearchAxis\2c\20double*\29\20const +3450:SkDCubic::Coefficients\28double\20const*\2c\20double*\2c\20double*\2c\20double*\2c\20double*\29 +3451:SkDConic::dxdyAtT\28double\29\20const +3452:SkDConic::FindExtrema\28double\20const*\2c\20float\2c\20double*\29 +3453:SkContourMeasure_segTo\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20float\2c\20SkPathBuilder*\29 +3454:SkContourMeasureIter::next\28\29 +3455:SkContourMeasureIter::Impl::compute_quad_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +3456:SkContourMeasureIter::Impl::compute_cubic_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +3457:SkContourMeasureIter::Impl::compute_conic_segs\28SkConic\20const&\2c\20float\2c\20int\2c\20SkPoint\20const&\2c\20int\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20int\29 +3458:SkContourMeasure::getPosTan\28float\2c\20SkPoint*\2c\20SkPoint*\29\20const +3459:SkConic::evalAt\28float\29\20const +3460:SkConic::BuildUnitArc\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPathDirection\2c\20SkMatrix\20const*\2c\20SkConic*\29 +3461:SkColorSpace::toXYZD50\28skcms_Matrix3x3*\29\20const +3462:SkColorSpace::serialize\28\29\20const +3463:SkColorSpace::gamutTransformTo\28SkColorSpace\20const*\2c\20skcms_Matrix3x3*\29\20const +3464:SkColorPalette::SkColorPalette\28unsigned\20int\20const*\2c\20int\29 +3465:SkColor4fPrepForDst\28SkRGBA4f<\28SkAlphaType\293>\2c\20GrColorInfo\20const&\29 +3466:SkCodec::startIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const*\29 +3467:SkCodec::outputScanline\28int\29\20const +3468:SkChopMonoCubicAtY\28SkPoint\20const*\2c\20float\2c\20SkPoint*\29 +3469:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\2c\20float\29 +3470:SkCanvas::scale\28float\2c\20float\29 +3471:SkCanvas::private_draw_shadow_rec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +3472:SkCanvas::onResetClip\28\29 +3473:SkCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +3474:SkCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +3475:SkCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +3476:SkCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +3477:SkCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +3478:SkCanvas::internal_private_resetClip\28\29 +3479:SkCanvas::internalSaveLayer\28SkCanvas::SaveLayerRec\20const&\2c\20SkCanvas::SaveLayerStrategy\2c\20bool\29 +3480:SkCanvas::internalDrawDeviceWithFilter\28SkDevice*\2c\20SkDevice*\2c\20SkSpan>\2c\20SkPaint\20const&\2c\20SkCanvas::DeviceCompatibleWithFilter\2c\20SkColorInfo\20const&\2c\20float\2c\20SkTileMode\2c\20bool\29 +3481:SkCanvas::experimental_DrawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +3482:SkCanvas::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +3483:SkCanvas::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +3484:SkCanvas::drawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +3485:SkCanvas::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +3486:SkCanvas::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +3487:SkCanvas::drawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +3488:SkCanvas::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +3489:SkCanvas::SkCanvas\28sk_sp\29 +3490:SkCanvas::SkCanvas\28SkIRect\20const&\29 +3491:SkCachedData::~SkCachedData\28\29 +3492:SkBmpRLECodec::setPixel\28void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20char\29 +3493:SkBmpCodec::prepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +3494:SkBlitterClipper::apply\28SkBlitter*\2c\20SkRegion\20const*\2c\20SkIRect\20const*\29 +3495:SkBlitter::blitRegion\28SkRegion\20const&\29 +3496:SkBitmapDevice::Create\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\2c\20SkRasterHandleAllocator*\29 +3497:SkBitmapCacheDesc::Make\28SkImage\20const*\29 +3498:SkBitmap::writePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +3499:SkBitmap::setPixels\28void*\29 +3500:SkBitmap::setPixelRef\28sk_sp\2c\20int\2c\20int\29 +3501:SkBitmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +3502:SkBitmap::pixelRefOrigin\28\29\20const +3503:SkBitmap::notifyPixelsChanged\28\29\20const +3504:SkBitmap::isImmutable\28\29\20const +3505:SkBitmap::installPixels\28SkPixmap\20const&\29 +3506:SkBitmap::allocPixels\28\29 +3507:SkBinaryWriteBuffer::writeScalarArray\28SkSpan\29 +3508:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29_5166 +3509:SkBaseShadowTessellator::handleQuad\28SkPoint\20const*\29 +3510:SkAutoDescriptor::SkAutoDescriptor\28SkAutoDescriptor&&\29 +3511:SkArenaAllocWithReset::SkArenaAllocWithReset\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +3512:SkAnimatedImage::decodeNextFrame\28\29 +3513:SkAnimatedImage::Frame::copyTo\28SkAnimatedImage::Frame*\29\20const +3514:SkAnalyticQuadraticEdge::updateQuadratic\28\29 +3515:SkAnalyticCubicEdge::updateCubic\28\29 +3516:SkAlphaRuns::reset\28int\29 +3517:SkAAClip::setRect\28SkIRect\20const&\29 +3518:ReconstructRow +3519:R_17328 +3520:OpAsWinding::nextEdge\28Contour&\2c\20OpAsWinding::Edge\29 +3521:OT::sbix::sanitize\28hb_sanitize_context_t*\29\20const +3522:OT::post::accelerator_t::cmp_gids\28void\20const*\2c\20void\20const*\2c\20void*\29 +3523:OT::hb_ot_layout_lookup_accelerator_t*\20OT::hb_ot_layout_lookup_accelerator_t::create\28OT::Layout::GSUB_impl::SubstLookup\20const&\29 +3524:OT::gvar_GVAR\2c\201735811442u>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +3525:OT::fvar::sanitize\28hb_sanitize_context_t*\29\20const +3526:OT::cmap_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3527:OT::cmap::sanitize\28hb_sanitize_context_t*\29\20const +3528:OT::cff2::accelerator_templ_t>::_fini\28\29 +3529:OT::avar::sanitize\28hb_sanitize_context_t*\29\20const +3530:OT::VarRegionList::evaluate\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +3531:OT::STAT::sanitize\28hb_sanitize_context_t*\29\20const +3532:OT::Rule::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +3533:OT::MVAR::sanitize\28hb_sanitize_context_t*\29\20const +3534:OT::Layout::GSUB_impl::SubstLookup::serialize_ligature\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20hb_sorted_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\29 +3535:OT::Layout::GPOS_impl::MarkArray::apply\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20OT::Layout::GPOS_impl::AnchorMatrix\20const&\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +3536:OT::GDEFVersion1_2::sanitize\28hb_sanitize_context_t*\29\20const +3537:OT::Device::get_y_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +3538:OT::Device::get_x_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +3539:OT::Condition::sanitize\28hb_sanitize_context_t*\29\20const +3540:OT::ClipList::get_extents\28unsigned\20int\2c\20hb_glyph_extents_t*\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +3541:OT::ChainRule::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +3542:OT::CPAL::sanitize\28hb_sanitize_context_t*\29\20const +3543:OT::COLR::sanitize\28hb_sanitize_context_t*\29\20const +3544:OT::COLR::paint_glyph\28hb_font_t*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20hb_colr_scratch_t&\29\20const +3545:OT::CBLC::sanitize\28hb_sanitize_context_t*\29\20const +3546:MakeRasterCopyPriv\28SkPixmap\20const&\2c\20unsigned\20int\29 +3547:LineQuadraticIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineQuadraticIntersections::PinTPoint\29 +3548:LineQuadraticIntersections::checkCoincident\28\29 +3549:LineQuadraticIntersections::addLineNearEndPoints\28\29 +3550:LineCubicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineCubicIntersections::PinTPoint\29 +3551:LineCubicIntersections::checkCoincident\28\29 +3552:LineCubicIntersections::addLineNearEndPoints\28\29 +3553:LineConicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineConicIntersections::PinTPoint\29 +3554:LineConicIntersections::checkCoincident\28\29 +3555:LineConicIntersections::addLineNearEndPoints\28\29 +3556:Ins_UNKNOWN +3557:GrXferProcessor::GrXferProcessor\28GrProcessor::ClassID\29 +3558:GrVertexChunkBuilder::~GrVertexChunkBuilder\28\29 +3559:GrTriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +3560:GrTriangulator::splitEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +3561:GrTriangulator::pathToPolys\28float\2c\20SkRect\20const&\2c\20bool*\29 +3562:GrTriangulator::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20GrTriangulator::VertexList*\2c\20int\29\20const +3563:GrTriangulator::emitTriangle\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20skgpu::VertexWriter\29\20const +3564:GrTriangulator::checkForIntersection\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +3565:GrTriangulator::applyFillType\28int\29\20const +3566:GrTriangulator::EdgeList::insert\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +3567:GrTriangulator::Edge::intersect\28GrTriangulator::Edge\20const&\2c\20SkPoint*\2c\20unsigned\20char*\29\20const +3568:GrTriangulator::Edge::insertBelow\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +3569:GrTriangulator::Edge::insertAbove\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +3570:GrToGLStencilFunc\28GrStencilTest\29 +3571:GrThreadSafeCache::~GrThreadSafeCache\28\29 +3572:GrThreadSafeCache::dropAllRefs\28\29 +3573:GrTextureRenderTargetProxy::callbackDesc\28\29\20const +3574:GrTextureProxy::clearUniqueKey\28\29 +3575:GrTexture::GrTexture\28GrGpu*\2c\20SkISize\20const&\2c\20skgpu::Protected\2c\20GrTextureType\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +3576:GrTexture::ComputeScratchKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20skgpu::ScratchKey*\29 +3577:GrSurfaceProxyView::asTextureProxyRef\28\29\20const +3578:GrSurfaceProxy::GrSurfaceProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +3579:GrSurfaceProxy::GrSurfaceProxy\28sk_sp\2c\20SkBackingFit\2c\20GrSurfaceProxy::UseAllocator\29 +3580:GrSurface::setRelease\28sk_sp\29 +3581:GrStyledShape::styledBounds\28\29\20const +3582:GrStyledShape::asLine\28SkPoint*\2c\20bool*\29\20const +3583:GrStyledShape::addGenIDChangeListener\28sk_sp\29\20const +3584:GrSimpleMeshDrawOpHelper::fixedFunctionFlags\28\29\20const +3585:GrShape::setRRect\28SkRRect\20const&\29 +3586:GrShape::segmentMask\28\29\20const +3587:GrResourceProvider::assignUniqueKeyToResource\28skgpu::UniqueKey\20const&\2c\20GrGpuResource*\29 +3588:GrResourceCache::releaseAll\28\29 +3589:GrResourceCache::refAndMakeResourceMRU\28GrGpuResource*\29 +3590:GrResourceCache::getNextTimestamp\28\29 +3591:GrRenderTask::addDependency\28GrRenderTask*\29 +3592:GrRenderTargetProxy::canUseStencil\28GrCaps\20const&\29\20const +3593:GrRecordingContextPriv::addOnFlushCallbackObject\28GrOnFlushCallbackObject*\29 +3594:GrRecordingContext::~GrRecordingContext\28\29 +3595:GrRecordingContext::abandonContext\28\29 +3596:GrQuadUtils::TessellationHelper::Vertices::moveTo\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +3597:GrQuadUtils::TessellationHelper::EdgeEquations::reset\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\29 +3598:GrQuadUtils::ResolveAAType\28GrAAType\2c\20GrQuadAAFlags\2c\20GrQuad\20const&\2c\20GrAAType*\2c\20GrQuadAAFlags*\29 +3599:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::append\28GrQuad\20const&\2c\20\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA&&\2c\20GrQuad\20const*\29 +3600:GrPixmap::GrPixmap\28GrImageInfo\2c\20void*\2c\20unsigned\20long\29 +3601:GrPipeline::GrPipeline\28GrPipeline::InitArgs\20const&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29 +3602:GrPersistentCacheUtils::UnpackCachedShaders\28SkReadBuffer*\2c\20SkSL::NativeShader*\2c\20bool\2c\20SkSL::ProgramInterface*\2c\20int\2c\20GrPersistentCacheUtils::ShaderMetadata*\29 +3603:GrPathUtils::convertCubicToQuads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\29 +3604:GrPathTessellationShader::Make\28GrShaderCaps\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::tess::PatchAttribs\29 +3605:GrOp::chainConcat\28std::__2::unique_ptr>\29 +3606:GrMeshDrawOp::PatternHelper::PatternHelper\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +3607:GrMemoryPool::Make\28unsigned\20long\2c\20unsigned\20long\29 +3608:GrMakeKeyFromImageID\28skgpu::UniqueKey*\2c\20unsigned\20int\2c\20SkIRect\20const&\29 +3609:GrImageInfo::GrImageInfo\28GrColorInfo\20const&\2c\20SkISize\20const&\29 +3610:GrGpuResource::removeScratchKey\28\29 +3611:GrGpuResource::registerWithCacheWrapped\28GrWrapCacheable\29 +3612:GrGpuResource::dumpMemoryStatisticsPriv\28SkTraceMemoryDump*\2c\20SkString\20const&\2c\20char\20const*\2c\20unsigned\20long\29\20const +3613:GrGpuBuffer::onGpuMemorySize\28\29\20const +3614:GrGpu::resolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +3615:GrGpu::executeFlushInfo\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20std::__2::optional\2c\20skgpu::MutableTextureState\20const*\29 +3616:GrGeometryProcessor::TextureSampler::TextureSampler\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +3617:GrGeometryProcessor::ProgramImpl::ComputeMatrixKeys\28GrShaderCaps\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\29 +3618:GrGLUniformHandler::getUniformVariable\28GrResourceHandle\29\20const +3619:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12500 +3620:GrGLSemaphore::GrGLSemaphore\28GrGLGpu*\2c\20bool\29 +3621:GrGLSLVaryingHandler::~GrGLSLVaryingHandler\28\29 +3622:GrGLSLShaderBuilder::emitFunction\28SkSLType\2c\20char\20const*\2c\20SkSpan\2c\20char\20const*\29 +3623:GrGLSLProgramDataManager::setSkMatrix\28GrResourceHandle\2c\20SkMatrix\20const&\29\20const +3624:GrGLSLProgramBuilder::writeFPFunction\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +3625:GrGLSLProgramBuilder::invokeFP\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +3626:GrGLSLProgramBuilder::addRTFlipUniform\28char\20const*\29 +3627:GrGLSLFragmentShaderBuilder::dstColor\28\29 +3628:GrGLSLBlend::BlendKey\28SkBlendMode\29 +3629:GrGLProgramBuilder::~GrGLProgramBuilder\28\29 +3630:GrGLProgramBuilder::computeCountsAndStrides\28unsigned\20int\2c\20GrGeometryProcessor\20const&\2c\20bool\29 +3631:GrGLGpu::flushScissor\28GrScissorState\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +3632:GrGLGpu::flushClearColor\28std::__2::array\29 +3633:GrGLGpu::createTexture\28SkISize\2c\20GrGLFormat\2c\20unsigned\20int\2c\20skgpu::Renderable\2c\20GrGLTextureParameters::SamplerOverriddenState*\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +3634:GrGLGpu::copySurfaceAsDraw\28GrSurface*\2c\20bool\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +3635:GrGLGpu::HWVertexArrayState::bindInternalVertexArray\28GrGLGpu*\2c\20GrBuffer\20const*\29 +3636:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +3637:GrGLBuffer::Make\28GrGLGpu*\2c\20unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +3638:GrGLAttribArrayState::enableVertexArrays\28GrGLGpu\20const*\2c\20int\2c\20GrPrimitiveRestart\29 +3639:GrFragmentProcessors::make_effect_fp\28sk_sp\2c\20char\20const*\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkSpan\2c\20GrFPArgs\20const&\29 +3640:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkMatrix\20const&\29 +3641:GrFragmentProcessors::MakeChildFP\28SkRuntimeEffect::ChildPtr\20const&\2c\20GrFPArgs\20const&\29 +3642:GrFragmentProcessors::IsSupported\28SkMaskFilter\20const*\29 +3643:GrFragmentProcessor::makeProgramImpl\28\29\20const +3644:GrFragmentProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +3645:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +3646:GrFragmentProcessor::MulInputByChildAlpha\28std::__2::unique_ptr>\29 +3647:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +3648:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29 +3649:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3650:GrDynamicAtlas::makeNode\28GrDynamicAtlas::Node*\2c\20int\2c\20int\2c\20int\2c\20int\29 +3651:GrDynamicAtlas::instantiate\28GrOnFlushResourceProvider*\2c\20sk_sp\29 +3652:GrDrawingManager::setLastRenderTask\28GrSurfaceProxy\20const*\2c\20GrRenderTask*\29 +3653:GrDrawingManager::flushSurfaces\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +3654:GrDrawOpAtlas::updatePlot\28GrDeferredUploadTarget*\2c\20skgpu::AtlasLocator*\2c\20skgpu::Plot*\29 +3655:GrDirectContext::resetContext\28unsigned\20int\29 +3656:GrDirectContext::getResourceCacheLimit\28\29\20const +3657:GrDefaultGeoProcFactory::MakeForDeviceSpace\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +3658:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20sk_sp\29 +3659:GrColorSpaceXform::apply\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +3660:GrColorSpaceXform::Equals\28GrColorSpaceXform\20const*\2c\20GrColorSpaceXform\20const*\29 +3661:GrBufferAllocPool::unmap\28\29 +3662:GrBlurUtils::can_filter_mask\28SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect*\29 +3663:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29 +3664:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +3665:GrBackendTextures::MakeGL\28int\2c\20int\2c\20skgpu::Mipmapped\2c\20GrGLTextureInfo\20const&\2c\20sk_sp\2c\20std::__2::basic_string_view>\29 +3666:GrBackendFormatStencilBits\28GrBackendFormat\20const&\29 +3667:GrBackendFormat::asMockCompressionType\28\29\20const +3668:GrAATriangulator::~GrAATriangulator\28\29 +3669:GrAAConvexTessellator::fanRing\28GrAAConvexTessellator::Ring\20const&\29 +3670:GrAAConvexTessellator::computePtAlongBisector\28int\2c\20SkPoint\20const&\2c\20int\2c\20float\2c\20SkPoint*\29\20const +3671:GetVariationDesignPosition\28FT_FaceRec_*\2c\20SkSpan\29 +3672:GetAxes\28FT_FaceRec_*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\29 +3673:FT_Stream_ReadAt +3674:FT_Set_Char_Size +3675:FT_Request_Metrics +3676:FT_New_Library +3677:FT_Hypot +3678:FT_Get_Var_Design_Coordinates +3679:FT_Get_Paint +3680:FT_Get_MM_Var +3681:FT_Get_Advance +3682:FT_Add_Default_Modules +3683:DecodeImageData +3684:Cr_z_inflate_table +3685:Cr_z_inflateReset +3686:Cr_z_deflateEnd +3687:Cr_z_copy_with_crc +3688:Compute_Point_Displacement +3689:BuildHuffmanTable +3690:BrotliWarmupBitReader +3691:BrotliDecoderHuffmanTreeGroupInit +3692:AAT::trak::sanitize\28hb_sanitize_context_t*\29\20const +3693:AAT::morx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3694:AAT::mortmorx::accelerator_t::~accelerator_t\28\29 +3695:AAT::mort_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3696:AAT::ltag::sanitize\28hb_sanitize_context_t*\29\20const +3697:AAT::feat::sanitize\28hb_sanitize_context_t*\29\20const +3698:AAT::ankr::sanitize\28hb_sanitize_context_t*\29\20const +3699:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +3700:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +3701:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +3702:AAT::KerxTable::accelerator_t::~accelerator_t\28\29 +3703:3465 +3704:3466 +3705:3467 +3706:3468 +3707:3469 +3708:3470 +3709:3471 +3710:3472 +3711:3473 +3712:3474 +3713:3475 +3714:3476 +3715:3477 +3716:3478 +3717:3479 +3718:3480 +3719:3481 +3720:3482 +3721:3483 +3722:3484 +3723:3485 +3724:3486 +3725:3487 +3726:3488 +3727:3489 +3728:3490 +3729:3491 +3730:3492 +3731:3493 +3732:zeroinfnan +3733:wuffs_lzw__decoder__transform_io +3734:wuffs_gif__decoder__set_quirk_enabled +3735:wuffs_gif__decoder__restart_frame +3736:wuffs_gif__decoder__num_animation_loops +3737:wuffs_gif__decoder__frame_dirty_rect +3738:wuffs_gif__decoder__decode_up_to_id_part1 +3739:wuffs_gif__decoder__decode_frame +3740:write_vertex_position\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrShaderVar\20const&\2c\20SkMatrix\20const&\2c\20char\20const*\2c\20GrShaderVar*\2c\20GrResourceHandle*\29 +3741:write_passthrough_vertex_position\28GrGLSLVertexBuilder*\2c\20GrShaderVar\20const&\2c\20GrShaderVar*\29 +3742:write_buf +3743:wctomb +3744:wchar_t*\20std::__2::copy\5babi:nn180100\5d\2c\20wchar_t*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20wchar_t*\29 +3745:wchar_t*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20std::__2::__element_count\29 +3746:walk_simple_edges\28SkEdge*\2c\20SkBlitter*\2c\20int\2c\20int\29 +3747:vsscanf +3748:void\20std::__2::vector>::__assign_with_size\5babi:ne180100\5d\28skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20long\29 +3749:void\20std::__2::vector>::__assign_with_size\5babi:ne180100\5d\28SkString*\2c\20SkString*\2c\20long\29 +3750:void\20std::__2::vector>::__assign_with_size\5babi:ne180100\5d\28SkFontArguments::VariationPosition::Coordinate*\2c\20SkFontArguments::VariationPosition::Coordinate*\2c\20long\29 +3751:void\20std::__2::basic_string\2c\20std::__2::allocator>::__init\28wchar_t\20const*\2c\20wchar_t\20const*\29 +3752:void\20std::__2::basic_string\2c\20std::__2::allocator>::__init\28char*\2c\20char*\29 +3753:void\20std::__2::__tree_balance_after_insert\5babi:ne180100\5d*>\28std::__2::__tree_node_base*\2c\20std::__2::__tree_node_base*\29 +3754:void\20std::__2::__stable_sort_move\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\29 +3755:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +3756:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\29 +3757:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +3758:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +3759:void\20std::__2::__sift_up\5babi:ne180100\5d*>>\28std::__2::__wrap_iter*>\2c\20std::__2::__wrap_iter*>\2c\20GrGeometryProcessor::ProgramImpl::emitTransformCode\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\29::$_1&\2c\20std::__2::iterator_traits*>>::difference_type\29 +3760:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d\20const&>\28std::__2::__optional_copy_assign_base\20const&\29 +3761:void\20std::__2::__introsort\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +3762:void\20std::__2::__introsort\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\2c\20std::__2::iterator_traits<\28anonymous\20namespace\29::Entry*>::difference_type\2c\20bool\29 +3763:void\20std::__2::__introsort\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +3764:void\20std::__2::__introsort\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +3765:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20char*&\2c\20char*&\29 +3766:void\20sorted_merge<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +3767:void\20sorted_merge<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +3768:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29_15835 +3769:void\20skgpu::ganesh::SurfaceFillContext::clear<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3770:void\20hair_path<\28SkPaint::Cap\292>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3771:void\20hair_path<\28SkPaint::Cap\291>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3772:void\20hair_path<\28SkPaint::Cap\290>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3773:void\20emscripten::internal::raw_destructor>\28sk_sp*\29 +3774:void\20emscripten::internal::MemberAccess>::setWire\28sk_sp\20SkRuntimeEffect::TracedShader::*\20const&\2c\20SkRuntimeEffect::TracedShader&\2c\20sk_sp*\29 +3775:void\20emscripten::internal::MemberAccess::setWire\28SimpleFontStyle\20SimpleStrutStyle::*\20const&\2c\20SimpleStrutStyle&\2c\20SimpleFontStyle*\29 +3776:void\20\28anonymous\20namespace\29::copyFT2LCD16\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\29 +3777:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int*\2c\20int\29 +3778:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20unsigned\20char*\2c\20int\29 +3779:void\20SkTIntroSort\28int\2c\20int*\2c\20int\2c\20DistanceLessThan\20const&\29 +3780:void\20SkTIntroSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29>\28int\2c\20float*\2c\20int\2c\20void\20SkTQSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29\20const&\29 +3781:void\20SkTIntroSort\28int\2c\20SkString*\2c\20int\2c\20bool\20\20const\28&\29\28SkString\20const&\2c\20SkString\20const&\29\29 +3782:void\20SkTIntroSort\28int\2c\20SkOpRayHit**\2c\20int\2c\20bool\20\20const\28&\29\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29\29 +3783:void\20SkTIntroSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29>\28int\2c\20SkOpContour*\2c\20int\2c\20void\20SkTQSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29\20const&\29 +3784:void\20SkTIntroSort>\2c\20SkCodec::Result*\29::Entry\2c\20SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29::EntryLessThan>\28int\2c\20SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29::Entry*\2c\20int\2c\20SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29::EntryLessThan\20const&\29 +3785:void\20SkTIntroSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29>\28int\2c\20SkClosestRecord\20const*\2c\20int\2c\20void\20SkTQSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29\20const&\29 +3786:void\20SkTIntroSort\28int\2c\20SkAnalyticEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29\29 +3787:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\20const\28&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +3788:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\28*\20const&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +3789:void\20SkTIntroSort\28int\2c\20Edge*\2c\20int\2c\20EdgeLT\20const&\29 +3790:void\20AAT::LookupFormat2>::collect_glyphs\28hb_bit_set_t&\29\20const +3791:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +3792:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +3793:virtual\20thunk\20to\20GrGLTexture::onSetLabel\28\29 +3794:virtual\20thunk\20to\20GrGLTexture::backendFormat\28\29\20const +3795:vfiprintf +3796:validate_texel_levels\28SkISize\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20GrCaps\20const*\29 +3797:utf8TextClose\28UText*\29 +3798:utf8TextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +3799:utext_openConstUnicodeString_74 +3800:utext_moveIndex32_74 +3801:utext_getPreviousNativeIndex_74 +3802:utext_extract_74 +3803:ustrcase_mapWithOverlap_74 +3804:ures_resetIterator_74 +3805:ures_initStackObject_74 +3806:ures_getInt_74 +3807:ures_getIntVector_74 +3808:ures_copyResb_74 +3809:uprv_stricmp_74 +3810:uprv_getMaxValues_74 +3811:uprv_compareInvAscii_74 +3812:upropsvec_addPropertyStarts_74 +3813:uprops_getSource_74 +3814:uprops_addPropertyStarts_74 +3815:unsigned\20short\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3816:unsigned\20long\20long\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3817:unsigned\20long\20const&\20std::__2::min\5babi:nn180100\5d\28unsigned\20long\20const&\2c\20unsigned\20long\20const&\29 +3818:unsigned\20int\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3819:unsigned\20int\20const*\20std::__2::lower_bound\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20unsigned\20long\20const&\29 +3820:unorm_getFCD16_74 +3821:ultag_isUnicodeLocaleKey_74 +3822:ultag_isScriptSubtag_74 +3823:ultag_isLanguageSubtag_74 +3824:ultag_isExtensionSubtags_74 +3825:ultag_getTKeyStart_74 +3826:ulocimp_toBcpType_74 +3827:uloc_toUnicodeLocaleType_74 +3828:uloc_toUnicodeLocaleKey_74 +3829:uloc_setKeywordValue_74 +3830:uloc_getTableStringWithFallback_74 +3831:uloc_getScript_74 +3832:uloc_getName_74 +3833:uloc_getLanguage_74 +3834:uloc_getDisplayName_74 +3835:uloc_getCountry_74 +3836:uloc_canonicalize_74 +3837:uenum_unext_74 +3838:udata_open_74 +3839:udata_checkCommonData_74 +3840:ucptrie_internalU8PrevIndex_74 +3841:uchar_addPropertyStarts_74 +3842:ucase_toFullUpper_74 +3843:ucase_toFullLower_74 +3844:ucase_toFullFolding_74 +3845:ucase_getTypeOrIgnorable_74 +3846:ucase_addPropertyStarts_74 +3847:ubidi_getPairedBracketType_74 +3848:ubidi_close_74 +3849:u_unescapeAt_74 +3850:u_strFindFirst_74 +3851:u_memrchr_74 +3852:u_memmove_74 +3853:u_memcmp_74 +3854:u_hasBinaryProperty_74 +3855:u_getPropertyEnum_74 +3856:tt_size_run_prep +3857:tt_size_done_bytecode +3858:tt_sbit_decoder_load_image +3859:tt_face_vary_cvt +3860:tt_face_palette_set +3861:tt_face_load_cvt +3862:tt_face_get_metrics +3863:tt_done_blend +3864:tt_delta_interpolate +3865:tt_cmap4_next +3866:tt_cmap4_char_map_linear +3867:tt_cmap4_char_map_binary +3868:tt_cmap14_get_def_chars +3869:tt_cmap13_next +3870:tt_cmap12_next +3871:tt_cmap12_init +3872:tt_cmap12_char_map_binary +3873:tt_apply_mvar +3874:toParagraphStyle\28SimpleParagraphStyle\20const&\29 +3875:toBytes\28sk_sp\29 +3876:tanhf +3877:t1_lookup_glyph_by_stdcharcode_ps +3878:t1_builder_close_contour +3879:t1_builder_check_points +3880:strtoull +3881:strtoll_l +3882:strtol +3883:strspn +3884:stream_close +3885:store_int +3886:std::logic_error::~logic_error\28\29 +3887:std::logic_error::logic_error\28char\20const*\29 +3888:std::exception::exception\5babi:nn180100\5d\28\29 +3889:std::__2::vector>::max_size\28\29\20const +3890:std::__2::vector>::capacity\5babi:nn180100\5d\28\29\20const +3891:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +3892:std::__2::vector>::__clear\5babi:nn180100\5d\28\29 +3893:std::__2::vector>::__base_destruct_at_end\5babi:nn180100\5d\28std::__2::locale::facet**\29 +3894:std::__2::vector>::insert\28std::__2::__wrap_iter\2c\20float&&\29 +3895:std::__2::vector>::__append\28unsigned\20long\29 +3896:std::__2::unique_ptr::operator=\5babi:nn180100\5d\28std::__2::unique_ptr&&\29 +3897:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3898:std::__2::unique_ptr>::operator=\5babi:ne180100\5d\28std::nullptr_t\29 +3899:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkCanvas::Layer*\29 +3900:std::__2::unique_ptr>*\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::insert>>\28GrProgramDesc\20const&\2c\20std::__2::unique_ptr>&&\29 +3901:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda0'\28\29::operator\28\29\28\29\20const +3902:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +3903:std::__2::to_string\28unsigned\20long\29 +3904:std::__2::to_chars_result\20std::__2::__to_chars_itoa\5babi:nn180100\5d\28char*\2c\20char*\2c\20unsigned\20int\2c\20std::__2::integral_constant\29 +3905:std::__2::time_put>>::~time_put\28\29 +3906:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3907:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3908:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3909:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3910:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3911:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3912:std::__2::reverse_iterator::operator++\5babi:nn180100\5d\28\29 +3913:std::__2::reverse_iterator::operator*\5babi:nn180100\5d\28\29\20const +3914:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t*\29\20const +3915:std::__2::pair\2c\20void*>*>\2c\20bool>\20std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__emplace_unique_key_args\2c\20std::__2::tuple<>>\28GrFragmentProcessor\20const*\20const&\2c\20std::__2::piecewise_construct_t\20const&\2c\20std::__2::tuple&&\2c\20std::__2::tuple<>&&\29 +3916:std::__2::pair*>\2c\20bool>\20std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__emplace_unique_key_args\28int\20const&\2c\20int\20const&\29 +3917:std::__2::pair\2c\20std::__2::allocator>>>::pair\5babi:ne180100\5d\28std::__2::pair\2c\20std::__2::allocator>>>&&\29 +3918:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +3919:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28wchar_t\29 +3920:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28char\29 +3921:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28SkPath\20const&\29 +3922:std::__2::numpunct::~numpunct\28\29 +3923:std::__2::numpunct::~numpunct\28\29 +3924:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +3925:std::__2::num_get>>\20const&\20std::__2::use_facet\5babi:nn180100\5d>>>\28std::__2::locale\20const&\29 +3926:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +3927:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3928:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3929:std::__2::moneypunct::do_negative_sign\28\29\20const +3930:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3931:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3932:std::__2::moneypunct::do_negative_sign\28\29\20const +3933:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20wchar_t*&\2c\20wchar_t*\29 +3934:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20char*&\2c\20char*\29 +3935:std::__2::locale::facet**\20std::__2::__construct_at\5babi:nn180100\5d\28std::__2::locale::facet**\29 +3936:std::__2::locale::__imp::~__imp\28\29 +3937:std::__2::locale::__imp::release\28\29 +3938:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20std::__2::random_access_iterator_tag\29 +3939:std::__2::iterator_traits\2c\20std::__2::allocator>\20const*>::difference_type\20std::__2::distance\5babi:nn180100\5d\2c\20std::__2::allocator>\20const*>\28std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\29 +3940:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28char*\2c\20char*\29 +3941:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28char*\2c\20char*\2c\20std::__2::random_access_iterator_tag\29 +3942:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +3943:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +3944:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +3945:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +3946:std::__2::ios_base::width\5babi:nn180100\5d\28long\29 +3947:std::__2::ios_base::init\28void*\29 +3948:std::__2::ios_base::imbue\28std::__2::locale\20const&\29 +3949:std::__2::ios_base::__call_callbacks\28std::__2::ios_base::event\29 +3950:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::writeDeferredStrokePatch\28SkPoint\2c\20std::__2::optional\29 +3951:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:nn180100\5d\28char&\2c\20char&\29 +3952:std::__2::deque>::__add_back_capacity\28\29 +3953:std::__2::default_delete::operator\28\29\5babi:ne180100\5d\28sktext::GlyphRunBuilder*\29\20const +3954:std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>::type\20std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>\28skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot*\29\20const +3955:std::__2::default_delete\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot>::type\20std::__2::default_delete\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot>\28skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot*\29\20const +3956:std::__2::default_delete\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot>::type\20std::__2::default_delete\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot>\28skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot*\29\20const +3957:std::__2::ctype::~ctype\28\29 +3958:std::__2::codecvt::~codecvt\28\29 +3959:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +3960:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char32_t\20const*\2c\20char32_t\20const*\2c\20char32_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +3961:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +3962:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char32_t*\2c\20char32_t*\2c\20char32_t*&\29\20const +3963:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +3964:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +3965:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char16_t*\2c\20char16_t*\2c\20char16_t*&\29\20const +3966:std::__2::char_traits::not_eof\5babi:nn180100\5d\28int\29 +3967:std::__2::char_traits::assign\5babi:nn180100\5d\28char*\2c\20unsigned\20long\2c\20char\29 +3968:std::__2::basic_stringstream\2c\20std::__2::allocator>::basic_stringstream\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29 +3969:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29 +3970:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +3971:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20wchar_t\20const*\29 +3972:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20char\29 +3973:std::__2::basic_string\2c\20std::__2::allocator>::basic_string>\2c\200>\28std::__2::basic_string_view>\20const&\29 +3974:std::__2::basic_string\2c\20std::__2::allocator>::__null_terminate_at\5babi:nn180100\5d\28char*\2c\20unsigned\20long\29 +3975:std::__2::basic_string\2c\20std::__2::allocator>&\20skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::emplace_back\28char\20const*&&\29 +3976:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +3977:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +3978:std::__2::basic_streambuf>::sputc\5babi:nn180100\5d\28char\29 +3979:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +3980:std::__2::basic_streambuf>::setp\5babi:nn180100\5d\28char*\2c\20char*\29 +3981:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +3982:std::__2::basic_streambuf>::basic_streambuf\28\29 +3983:std::__2::basic_streambuf>::__pbump\5babi:nn180100\5d\28long\29 +3984:std::__2::basic_ostream>::~basic_ostream\28\29_17758 +3985:std::__2::basic_ostream>::sentry::~sentry\28\29 +3986:std::__2::basic_ostream>::sentry::sentry\28std::__2::basic_ostream>&\29 +3987:std::__2::basic_ostream>::operator<<\28float\29 +3988:std::__2::basic_ostream>::flush\28\29 +3989:std::__2::basic_istream>::~basic_istream\28\29_17717 +3990:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::__sso_allocator&\2c\20std::__2::locale::facet**\2c\20unsigned\20long\29 +3991:std::__2::allocator::deallocate\5babi:nn180100\5d\28wchar_t*\2c\20unsigned\20long\29 +3992:std::__2::allocator::allocate\5babi:nn180100\5d\28unsigned\20long\29 +3993:std::__2::__wrap_iter\20std::__2::vector>::__insert_with_size\5babi:ne180100\5d>\2c\20std::__2::reverse_iterator>>\28std::__2::__wrap_iter\2c\20std::__2::reverse_iterator>\2c\20std::__2::reverse_iterator>\2c\20long\29 +3994:std::__2::__wrap_iter\20std::__2::vector>::__insert_with_size\5babi:ne180100\5d\2c\20std::__2::__wrap_iter>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20long\29 +3995:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +3996:std::__2::__time_put::__time_put\5babi:nn180100\5d\28\29 +3997:std::__2::__time_put::__do_put\28char*\2c\20char*&\2c\20tm\20const*\2c\20char\2c\20char\29\20const +3998:std::__2::__split_buffer>::push_back\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +3999:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +4000:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +4001:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +4002:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +4003:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +4004:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20wchar_t&\2c\20wchar_t&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +4005:std::__2::__money_put::__format\28wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20unsigned\20int\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +4006:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20char&\2c\20char&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +4007:std::__2::__money_put::__format\28char*\2c\20char*&\2c\20char*&\2c\20unsigned\20int\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +4008:std::__2::__libcpp_sscanf_l\28char\20const*\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +4009:std::__2::__libcpp_mbrtowc_l\5babi:nn180100\5d\28wchar_t*\2c\20char\20const*\2c\20unsigned\20long\2c\20__mbstate_t*\2c\20__locale_struct*\29 +4010:std::__2::__libcpp_mb_cur_max_l\5babi:nn180100\5d\28__locale_struct*\29 +4011:std::__2::__libcpp_deallocate\5babi:nn180100\5d\28void*\2c\20unsigned\20long\2c\20unsigned\20long\29 +4012:std::__2::__libcpp_allocate\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\29 +4013:std::__2::__is_overaligned_for_new\5babi:nn180100\5d\28unsigned\20long\29 +4014:std::__2::__function::__value_func::swap\5babi:ne180100\5d\28std::__2::__function::__value_func&\29 +4015:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +4016:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +4017:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +4018:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy_deallocate\28\29 +4019:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy\28\29 +4020:std::__2::__constexpr_wcslen\5babi:nn180100\5d\28wchar_t\20const*\29 +4021:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::__sso_allocator&\2c\20unsigned\20long\29 +4022:start_input_pass +4023:sktext::gpu::build_distance_adjust_table\28float\29 +4024:sktext::gpu::VertexFiller::isLCD\28\29\20const +4025:sktext::gpu::VertexFiller::CanUseDirect\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +4026:sktext::gpu::TextBlobRedrawCoordinator::internalRemove\28sktext::gpu::TextBlob*\29 +4027:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_2::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +4028:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_0::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +4029:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29 +4030:sktext::gpu::SubRunContainer::EstimateAllocSize\28sktext::GlyphRunList\20const&\29 +4031:sktext::gpu::SubRunAllocator::SubRunAllocator\28char*\2c\20int\2c\20int\29 +4032:sktext::gpu::StrikeCache::~StrikeCache\28\29 +4033:sktext::gpu::SlugImpl::Make\28SkMatrix\20const&\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\29 +4034:sktext::gpu::GlyphVector::packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29 +4035:sktext::gpu::BagOfBytes::BagOfBytes\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29::$_1::operator\28\29\28\29\20const +4036:sktext::glyphrun_source_bounds\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkZip\2c\20SkSpan\29 +4037:sktext::SkStrikePromise::resetStrike\28\29 +4038:sktext::GlyphRunList::makeBlob\28\29\20const +4039:sktext::GlyphRunBuilder::blobToGlyphRunList\28SkTextBlob\20const&\2c\20SkPoint\29 +4040:sktext::GlyphRun*\20std::__2::vector>::__emplace_back_slow_path&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&>\28SkFont\20const&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\29 +4041:skstd::to_string\28float\29 +4042:skpathutils::FillPathWithPaint\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkPathBuilder*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29 +4043:skjpeg_err_exit\28jpeg_common_struct*\29 +4044:skip_string +4045:skip_procedure +4046:skif::\28anonymous\20namespace\29::downscale_step_count\28float\29 +4047:skif::\28anonymous\20namespace\29::decompose_transform\28SkMatrix\20const&\2c\20SkPoint\2c\20SkMatrix*\2c\20SkMatrix*\29 +4048:skif::Mapping::adjustLayerSpace\28SkM44\20const&\29 +4049:skif::LayerSpace::relevantSubset\28skif::LayerSpace\2c\20SkTileMode\29\20const +4050:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20SkBlender\20const*\29\20const +4051:skif::FilterResult::MakeFromImage\28skif::Context\20const&\2c\20sk_sp\2c\20SkRect\2c\20skif::ParameterSpace\2c\20SkSamplingOptions\20const&\29 +4052:skif::FilterResult::FilterResult\28sk_sp\2c\20skif::LayerSpace\20const&\29 +4053:skif::Context::withNewSource\28skif::FilterResult\20const&\29\20const +4054:skia_private::THashTable::Traits>::set\28unsigned\20long\20long\29 +4055:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::set\28std::__2::basic_string_view>\29 +4056:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::resize\28int\29 +4057:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +4058:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::removeSlot\28int\29 +4059:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::resize\28int\29 +4060:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\29 +4061:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\2c\20unsigned\20int\29 +4062:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair&&\29 +4063:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +4064:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\29 +4065:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::operator=\28skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>\20const&\29 +4066:skia_private::THashTable::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::resize\28int\29 +4067:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair&&\29 +4068:skia_private::THashTable::Pair\2c\20SkSL::Analysis::SpecializedCallKey\2c\20skia_private::THashMap::Pair>::set\28skia_private::THashMap::Pair\29 +4069:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +4070:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +4071:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::resize\28int\29 +4072:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28skgpu::ganesh::SmallPathShapeData*&&\29 +4073:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +4074:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::resize\28int\29 +4075:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::resize\28int\29 +4076:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::uncheckedSet\28\28anonymous\20namespace\29::CacheImpl::Value*&&\29 +4077:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::resize\28int\29 +4078:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +4079:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +4080:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +4081:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +4082:skia_private::THashTable::resize\28int\29 +4083:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::removeIfExists\28unsigned\20int\20const&\29 +4084:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +4085:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::uncheckedSet\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*&&\29 +4086:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +4087:skia_private::THashTable::AdaptedTraits>::set\28GrThreadSafeCache::Entry*\29 +4088:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +4089:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +4090:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +4091:skia_private::THashTable::Traits>::resize\28int\29 +4092:skia_private::THashSet::add\28FT_Opaque_Paint_\29 +4093:skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +4094:skia_private::THashMap>\2c\20SkGoodHash>::remove\28SkImageFilter\20const*\20const&\29 +4095:skia_private::TArray::push_back_raw\28int\29 +4096:skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::checkRealloc\28int\2c\20double\29 +4097:skia_private::TArray::~TArray\28\29 +4098:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +4099:skia_private::TArray::operator=\28skia_private::TArray&&\29 +4100:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +4101:skia_private::TArray::BufferFinishedMessage\2c\20false>::operator=\28skia_private::TArray::BufferFinishedMessage\2c\20false>&&\29 +4102:skia_private::TArray::BufferFinishedMessage\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +4103:skia_private::TArray::operator=\28skia_private::TArray&&\29 +4104:skia_private::TArray\29::ReorderedArgument\2c\20false>::push_back\28SkSL::optimize_constructor_swizzle\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ConstructorCompound\20const&\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29::ReorderedArgument&&\29 +4105:skia_private::TArray::TArray\28skia_private::TArray&&\29 +4106:skia_private::TArray::swap\28skia_private::TArray&\29 +4107:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +4108:skia_private::TArray::push_back\28SkPath&&\29 +4109:skia_private::TArray::resize_back\28int\29 +4110:skia_private::TArray::push_back_raw\28int\29 +4111:skia_private::TArray::push_back_raw\28int\29 +4112:skia_private::TArray::push_back_raw\28int\29 +4113:skia_private::TArray::push_back_raw\28int\29 +4114:skia_private::TArray::move_back_n\28int\2c\20GrTextureProxy**\29 +4115:skia_private::TArray::operator=\28skia_private::TArray&&\29 +4116:skia_private::TArray::push_back_n\28int\2c\20EllipticalRRectOp::RRect\20const*\29 +4117:skia_png_zfree +4118:skia_png_write_zTXt +4119:skia_png_write_tIME +4120:skia_png_write_tEXt +4121:skia_png_write_iTXt +4122:skia_png_set_write_fn +4123:skia_png_set_unknown_chunks +4124:skia_png_set_swap +4125:skia_png_set_strip_16 +4126:skia_png_set_read_user_transform_fn +4127:skia_png_set_read_user_chunk_fn +4128:skia_png_set_option +4129:skia_png_set_mem_fn +4130:skia_png_set_expand_gray_1_2_4_to_8 +4131:skia_png_set_error_fn +4132:skia_png_set_compression_level +4133:skia_png_set_IHDR +4134:skia_png_read_filter_row +4135:skia_png_process_IDAT_data +4136:skia_png_icc_set_sRGB +4137:skia_png_icc_check_tag_table +4138:skia_png_icc_check_header +4139:skia_png_get_uint_31 +4140:skia_png_get_sBIT +4141:skia_png_get_rowbytes +4142:skia_png_get_error_ptr +4143:skia_png_get_bit_depth +4144:skia_png_get_IHDR +4145:skia_png_do_swap +4146:skia_png_do_read_transformations +4147:skia_png_do_read_interlace +4148:skia_png_do_packswap +4149:skia_png_do_invert +4150:skia_png_do_gray_to_rgb +4151:skia_png_do_expand +4152:skia_png_do_check_palette_indexes +4153:skia_png_do_bgr +4154:skia_png_destroy_png_struct +4155:skia_png_destroy_gamma_table +4156:skia_png_create_png_struct +4157:skia_png_create_info_struct +4158:skia_png_crc_read +4159:skia_png_colorspace_sync_info +4160:skia_png_check_IHDR +4161:skia::textlayout::TypefaceFontStyleSet::matchStyle\28SkFontStyle\20const&\29 +4162:skia::textlayout::TextStyle::matchOneAttribute\28skia::textlayout::StyleType\2c\20skia::textlayout::TextStyle\20const&\29\20const +4163:skia::textlayout::TextStyle::equals\28skia::textlayout::TextStyle\20const&\29\20const +4164:skia::textlayout::TextShadow::operator!=\28skia::textlayout::TextShadow\20const&\29\20const +4165:skia::textlayout::TextLine::paint\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\29 +4166:skia::textlayout::TextLine::iterateThroughClustersInGlyphsOrder\28bool\2c\20bool\2c\20std::__2::function\20const&\29\20const::$_0::operator\28\29\28unsigned\20long\20const&\29\20const +4167:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkRect\29::operator\28\29\28SkRect\29\20const +4168:skia::textlayout::TextLine::getMetrics\28\29\20const +4169:skia::textlayout::TextLine::ensureTextBlobCachePopulated\28\29 +4170:skia::textlayout::TextLine::buildTextBlob\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +4171:skia::textlayout::TextLine::TextLine\28skia::textlayout::ParagraphImpl*\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20skia::textlayout::InternalLineMetrics\29 +4172:skia::textlayout::TextLine&\20skia_private::TArray::emplace_back&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&>\28skia::textlayout::ParagraphImpl*&&\2c\20SkPoint&\2c\20SkPoint&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&\29 +4173:skia::textlayout::Run::shift\28skia::textlayout::Cluster\20const*\2c\20float\29 +4174:skia::textlayout::Run::newRunBuffer\28\29 +4175:skia::textlayout::Run::findLimitingGlyphClusters\28skia::textlayout::SkRange\29\20const +4176:skia::textlayout::Run::addSpacesAtTheEnd\28float\2c\20skia::textlayout::Cluster*\29 +4177:skia::textlayout::ParagraphStyle::effective_align\28\29\20const +4178:skia::textlayout::ParagraphStyle::ParagraphStyle\28\29 +4179:skia::textlayout::ParagraphPainter::DecorationStyle::DecorationStyle\28unsigned\20int\2c\20float\2c\20std::__2::optional\29 +4180:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29 +4181:skia::textlayout::ParagraphImpl::text\28skia::textlayout::SkRange\29 +4182:skia::textlayout::ParagraphImpl::resolveStrut\28\29 +4183:skia::textlayout::ParagraphImpl::getGlyphInfoAtUTF16Offset\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +4184:skia::textlayout::ParagraphImpl::getGlyphClusterAt\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +4185:skia::textlayout::ParagraphImpl::findPreviousGraphemeBoundary\28unsigned\20long\29\20const +4186:skia::textlayout::ParagraphImpl::computeEmptyMetrics\28\29 +4187:skia::textlayout::ParagraphImpl::clusters\28skia::textlayout::SkRange\29 +4188:skia::textlayout::ParagraphImpl::block\28unsigned\20long\29 +4189:skia::textlayout::ParagraphCacheValue::~ParagraphCacheValue\28\29 +4190:skia::textlayout::ParagraphCacheKey::ParagraphCacheKey\28skia::textlayout::ParagraphImpl\20const*\29 +4191:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29 +4192:skia::textlayout::ParagraphBuilderImpl::make\28skia::textlayout::ParagraphStyle\20const&\2c\20sk_sp\2c\20sk_sp\29 +4193:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\2c\20bool\29 +4194:skia::textlayout::ParagraphBuilderImpl::ParagraphBuilderImpl\28skia::textlayout::ParagraphStyle\20const&\2c\20sk_sp\2c\20sk_sp\29 +4195:skia::textlayout::Paragraph::~Paragraph\28\29 +4196:skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29 +4197:skia::textlayout::FontCollection::~FontCollection\28\29 +4198:skia::textlayout::FontCollection::matchTypeface\28SkString\20const&\2c\20SkFontStyle\29 +4199:skia::textlayout::FontCollection::defaultFallback\28int\2c\20SkFontStyle\2c\20SkString\20const&\2c\20std::__2::optional\20const&\29 +4200:skia::textlayout::FontCollection::FamilyKey::Hasher::operator\28\29\28skia::textlayout::FontCollection::FamilyKey\20const&\29\20const +4201:skhdr::Metadata::getMasteringDisplayColorVolume\28skhdr::MasteringDisplayColorVolume*\29\20const +4202:skhdr::Metadata::getContentLightLevelInformation\28skhdr::ContentLightLevelInformation*\29\20const +4203:skgpu::tess::\28anonymous\20namespace\29::write_curve_index_buffer_base_index\28skgpu::VertexWriter\2c\20unsigned\20long\2c\20unsigned\20short\29 +4204:skgpu::tess::StrokeIterator::next\28\29 +4205:skgpu::tess::StrokeIterator::finishOpenContour\28\29 +4206:skgpu::tess::PreChopPathCurves\28float\2c\20SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +4207:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29 +4208:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::SmallPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20GrUserStencilSettings\20const*\29 +4209:skgpu::ganesh::\28anonymous\20namespace\29::ChopPathIfNecessary\28SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkStrokeRec\20const&\2c\20SkPath*\29 +4210:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::recordDraw\28GrMeshDrawTarget*\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20int\2c\20unsigned\20short*\29 +4211:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::AAFlatteningConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20float\2c\20SkStrokeRec::Style\2c\20SkPaint::Join\2c\20float\2c\20GrUserStencilSettings\20const*\29 +4212:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::AAConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrUserStencilSettings\20const*\29 +4213:skgpu::ganesh::TextureOp::Make\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20SkBlendMode\2c\20GrAAType\2c\20DrawQuad*\2c\20SkRect\20const*\29 +4214:skgpu::ganesh::TessellationPathRenderer::IsSupported\28GrCaps\20const&\29 +4215:skgpu::ganesh::SurfaceFillContext::fillRectToRectWithFP\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +4216:skgpu::ganesh::SurfaceFillContext::blitTexture\28GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\29 +4217:skgpu::ganesh::SurfaceFillContext::addOp\28std::__2::unique_ptr>\29 +4218:skgpu::ganesh::SurfaceFillContext::addDrawOp\28std::__2::unique_ptr>\29 +4219:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29_10236 +4220:skgpu::ganesh::SurfaceDrawContext::drawVertices\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20sk_sp\2c\20GrPrimitiveType*\2c\20bool\29 +4221:skgpu::ganesh::SurfaceDrawContext::drawTexturedQuad\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkBlendMode\2c\20DrawQuad*\2c\20SkRect\20const*\29 +4222:skgpu::ganesh::SurfaceDrawContext::drawTexture\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkBlendMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +4223:skgpu::ganesh::SurfaceDrawContext::drawStrokedLine\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPoint\20const*\2c\20SkStrokeRec\20const&\29 +4224:skgpu::ganesh::SurfaceDrawContext::drawRegion\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrStyle\20const&\2c\20GrUserStencilSettings\20const*\29 +4225:skgpu::ganesh::SurfaceDrawContext::drawOval\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\29 +4226:skgpu::ganesh::SurfaceDrawContext::SurfaceDrawContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20sk_sp\2c\20SkSurfaceProps\20const&\29 +4227:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29 +4228:skgpu::ganesh::SurfaceContext::writePixels\28GrDirectContext*\2c\20GrCPixmap\2c\20SkIPoint\29 +4229:skgpu::ganesh::SurfaceContext::copy\28sk_sp\2c\20SkIRect\2c\20SkIPoint\29 +4230:skgpu::ganesh::SurfaceContext::copyScaled\28sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20SkFilterMode\29 +4231:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +4232:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::FinishContext::~FinishContext\28\29 +4233:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +4234:skgpu::ganesh::SurfaceContext::SurfaceContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +4235:skgpu::ganesh::StrokeTessellator::draw\28GrOpFlushState*\29\20const +4236:skgpu::ganesh::StrokeTessellateOp::prePrepareTessellator\28GrTessellationShader::ProgramArgs&&\2c\20GrAppliedClip&&\29 +4237:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::NonAAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrSimpleMeshDrawOpHelper::InputFlags\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\2c\20GrAAType\29 +4238:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::AAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::RectInfo\20const&\2c\20bool\29 +4239:skgpu::ganesh::StencilMaskHelper::drawShape\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20SkRegion::Op\2c\20GrAA\29 +4240:skgpu::ganesh::SoftwarePathRenderer::DrawAroundInvPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29 +4241:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_11733 +4242:skgpu::ganesh::SmallPathAtlasMgr::findOrCreate\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +4243:skgpu::ganesh::SmallPathAtlasMgr::deleteCacheEntry\28skgpu::ganesh::SmallPathShapeData*\29 +4244:skgpu::ganesh::ShadowRRectOp::Make\28GrRecordingContext*\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20float\2c\20float\29 +4245:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::RegionOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +4246:skgpu::ganesh::RasterAsView\28GrRecordingContext*\2c\20SkImage_Raster\20const*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +4247:skgpu::ganesh::QuadPerEdgeAA::Tessellator::append\28GrQuad*\2c\20GrQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\29 +4248:skgpu::ganesh::QuadPerEdgeAA::Tessellator::Tessellator\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29 +4249:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::initializeAttrs\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29 +4250:skgpu::ganesh::QuadPerEdgeAA::IssueDraw\28GrCaps\20const&\2c\20GrOpsRenderPass*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +4251:skgpu::ganesh::QuadPerEdgeAA::GetIndexBuffer\28GrMeshDrawTarget*\2c\20skgpu::ganesh::QuadPerEdgeAA::IndexBufferOption\29 +4252:skgpu::ganesh::PathTessellateOp::usesMSAA\28\29\20const +4253:skgpu::ganesh::PathTessellateOp::prepareTessellator\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +4254:skgpu::ganesh::PathTessellateOp::PathTessellateOp\28SkArenaAlloc*\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\2c\20SkRect\20const&\29 +4255:skgpu::ganesh::PathStencilCoverOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +4256:skgpu::ganesh::PathInnerTriangulateOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +4257:skgpu::ganesh::PathCurveTessellator::~PathCurveTessellator\28\29 +4258:skgpu::ganesh::PathCurveTessellator::prepareWithTriangles\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20GrTriangulator::BreadcrumbTriangleList*\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +4259:skgpu::ganesh::OpsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +4260:skgpu::ganesh::OpsTask::onExecute\28GrOpFlushState*\29 +4261:skgpu::ganesh::OpsTask::addOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +4262:skgpu::ganesh::OpsTask::addDrawOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +4263:skgpu::ganesh::OpsTask::OpsTask\28GrDrawingManager*\2c\20GrSurfaceProxyView\2c\20GrAuditTrail*\2c\20sk_sp\29 +4264:skgpu::ganesh::OpsTask::OpChain::tryConcat\28skgpu::ganesh::OpsTask::OpChain::List*\2c\20GrProcessorSet::Analysis\2c\20GrDstProxyView\20const&\2c\20GrAppliedClip\20const*\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrAuditTrail*\29 +4265:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29 +4266:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29 +4267:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::NonAALatticeOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20std::__2::unique_ptr>\2c\20SkRect\20const&\29 +4268:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::programInfo\28\29 +4269:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20GrAA\29 +4270:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::FillRRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29 +4271:skgpu::ganesh::DrawAtlasPathOp::prepareProgram\28GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +4272:skgpu::ganesh::Device::replaceBackingProxy\28SkSurface::ContentChangeMode\2c\20sk_sp\2c\20GrColorType\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +4273:skgpu::ganesh::Device::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +4274:skgpu::ganesh::Device::drawEdgeAAImage\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20SkTileMode\29 +4275:skgpu::ganesh::Device::discard\28\29 +4276:skgpu::ganesh::Device::android_utils_clipAsRgn\28SkRegion*\29\20const +4277:skgpu::ganesh::DefaultPathRenderer::internalDrawPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20bool\29 +4278:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +4279:skgpu::ganesh::CopyView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\2c\20std::__2::basic_string_view>\29 +4280:skgpu::ganesh::ClipStack::clipPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrAA\2c\20SkClipOp\29 +4281:skgpu::ganesh::ClipStack::SaveRecord::replaceWithElement\28skgpu::ganesh::ClipStack::RawElement&&\2c\20SkTBlockList*\29 +4282:skgpu::ganesh::ClipStack::SaveRecord::addElement\28skgpu::ganesh::ClipStack::RawElement&&\2c\20SkTBlockList*\29 +4283:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::Draw\20const&\29\20const +4284:skgpu::ganesh::AtlasTextOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +4285:skgpu::ganesh::AtlasTextOp::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20sktext::gpu::AtlasSubRun\20const*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp&&\29 +4286:skgpu::ganesh::AtlasRenderTask::stencilAtlasRect\28GrRecordingContext*\2c\20SkRect\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrUserStencilSettings\20const*\29 +4287:skgpu::ganesh::AtlasRenderTask::addPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIPoint\2c\20int\2c\20int\2c\20bool\2c\20SkIPoint16*\29 +4288:skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +4289:skgpu::ganesh::AtlasPathRenderer::addPathToAtlas\28GrRecordingContext*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRect\20const&\2c\20SkIRect*\2c\20SkIPoint16*\2c\20bool*\2c\20std::__2::function\20const&\29 +4290:skgpu::ganesh::AsFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkImage\20const*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +4291:skgpu::TiledTextureUtils::OptimizeSampleArea\28SkISize\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkRect*\2c\20SkRect*\2c\20SkMatrix*\29 +4292:skgpu::TClientMappedBufferManager::process\28\29 +4293:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29 +4294:skgpu::RectanizerSkyline::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +4295:skgpu::Plot::Plot\28int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20SkColorType\2c\20unsigned\20long\29 +4296:skgpu::GetReducedBlendModeInfo\28SkBlendMode\29 +4297:skgpu::CreateIntegralTable\28int\29 +4298:skgpu::BlendFuncName\28SkBlendMode\29 +4299:skcpu::clipHandlesSprite\28SkRasterClip\20const&\2c\20int\2c\20int\2c\20SkPixmap\20const&\29 +4300:skcpu::DrawToMask\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20SkMaskFilter\20const*\2c\20SkMatrix\20const*\2c\20SkMaskBuilder*\2c\20SkMaskBuilder::CreateMode\2c\20SkStrokeRec::InitStyle\29 +4301:skcpu::Draw::drawSprite\28SkBitmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29\20const +4302:skcpu::Draw::drawRRectNinePatch\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +4303:skcpu::Draw::drawPaint\28SkPaint\20const&\29\20const +4304:skcpu::Draw::drawDevMask\28SkMask\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29\20const +4305:skcms_private::baseline::exec_stages\28skcms_private::Op\20const*\2c\20void\20const**\2c\20char\20const*\2c\20char*\2c\20int\29 +4306:skcms_private::baseline::clut\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\29 +4307:skcms_ApproximatelyEqualProfiles +4308:sk_sp*\20std::__2::vector\2c\20std::__2::allocator>>::__emplace_back_slow_path>\28sk_sp&&\29 +4309:sk_sp\20sk_make_sp\2c\20SkSurfaceProps\20const*&>\28skcpu::RecorderImpl*&&\2c\20SkImageInfo\20const&\2c\20sk_sp&&\2c\20SkSurfaceProps\20const*&\29 +4310:sk_sp*\20emscripten::internal::MemberAccess>::getWire\28sk_sp\20SkRuntimeEffect::TracedShader::*\20const&\2c\20SkRuntimeEffect::TracedShader&\29 +4311:sk_fopen\28char\20const*\2c\20SkFILE_Flags\29 +4312:sk_fgetsize\28_IO_FILE*\29 +4313:sk_fclose\28_IO_FILE*\29 +4314:setup_masks_arabic_plan\28arabic_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_script_t\29 +4315:set_khr_debug_label\28GrGLGpu*\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +4316:set_as_oval\28SkPathRaw*\2c\20SkSpan\2c\20SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4317:setThrew +4318:setCommonICUData\28UDataMemory*\2c\20signed\20char\2c\20UErrorCode*\29 +4319:serialize_image\28SkImage\20const*\2c\20SkSerialProcs\29 +4320:send_tree +4321:select_curve_ops\28skcms_Curve\20const*\2c\20int\2c\20OpAndArg*\29 +4322:sect_with_vertical\28SkPoint\20const*\2c\20float\29 +4323:sect_with_horizontal\28SkPoint\20const*\2c\20float\29 +4324:scanexp +4325:scalbnl +4326:rewind_if_necessary\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +4327:resolveImplicitLevels\28UBiDi*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +4328:reset_and_decode_image_config\28wuffs_gif__decoder__struct*\2c\20wuffs_base__image_config__struct*\2c\20wuffs_base__io_buffer__struct*\2c\20SkStream*\29 +4329:res_unload_74 +4330:res_countArrayItems_74 +4331:renderbuffer_storage_msaa\28GrGLGpu*\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +4332:recursive_edge_intersect\28GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20SkPoint*\2c\20double*\2c\20double*\29 +4333:reclassify_vertex\28TriangulationVertex*\2c\20SkPoint\20const*\2c\20int\2c\20ReflexHash*\2c\20SkTInternalLList*\29 +4334:quad_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4335:quad_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4336:quad_in_line\28SkPoint\20const*\29 +4337:psh_hint_table_init +4338:psh_hint_table_find_strong_points +4339:psh_hint_table_activate_mask +4340:psh_hint_align +4341:psh_glyph_interpolate_strong_points +4342:psh_glyph_interpolate_other_points +4343:psh_glyph_interpolate_normal_points +4344:psh_blues_set_zones +4345:ps_parser_load_field +4346:ps_dimension_end +4347:ps_dimension_done +4348:ps_builder_start_point +4349:printf_core +4350:position_cluster\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\29 +4351:portable::uniform_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4352:portable::set_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4353:portable::memset64\28unsigned\20long\20long*\2c\20unsigned\20long\20long\2c\20int\29 +4354:portable::debug_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4355:portable::debug_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4356:portable::copy_from_indirect_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4357:portable::copy_2_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4358:portable::check_decal_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4359:portable::bilerp_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4360:pop_arg +4361:pntz +4362:png_inflate +4363:png_deflate_claim +4364:png_decompress_chunk +4365:png_cache_unknown_chunk +4366:operator_new_impl\28unsigned\20long\29 +4367:operator==\28SkPaint\20const&\2c\20SkPaint\20const&\29 +4368:open_face +4369:openCommonData\28char\20const*\2c\20int\2c\20UErrorCode*\29 +4370:offsetTOCEntryCount\28UDataMemory\20const*\29 +4371:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_2626 +4372:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +4373:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::size\28\29\20const +4374:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +4375:nearly_equal\28double\2c\20double\29 +4376:mbsrtowcs +4377:map_quad_general\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20SkMatrix\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +4378:make_tiled_gradient\28GrFPArgs\20const&\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20bool\2c\20bool\29 +4379:make_premul_effect\28std::__2::unique_ptr>\29 +4380:make_dual_interval_colorizer\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20float\29 +4381:make_clamped_gradient\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20bool\29 +4382:make_bmp_proxy\28GrProxyProvider*\2c\20SkBitmap\20const&\2c\20GrColorType\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +4383:longest_match +4384:long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +4385:long\20long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +4386:long\20double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +4387:load_post_names +4388:line_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4389:line_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4390:legalfunc$_embind_register_bigint +4391:jpeg_open_backing_store +4392:jpeg_consume_input +4393:jpeg_alloc_huff_table +4394:jinit_upsampler +4395:is_leap +4396:isSpecialTypeCodepoints\28char\20const*\29 +4397:isMatchAtCPBoundary\28char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*\29 +4398:internal_memalign +4399:int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::findBlock\28unsigned\20short\20const*\2c\20unsigned\20short\20const*\2c\20int\29\20const +4400:int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::findBlock\28unsigned\20short\20const*\2c\20unsigned\20int\20const*\2c\20int\29\20const +4401:insertRootBundle\28UResourceDataEntry*&\2c\20UErrorCode*\29 +4402:init_error_limit +4403:init_block +4404:icu_74::set32x64Bits\28unsigned\20int*\2c\20int\2c\20int\29 +4405:icu_74::getExtName\28unsigned\20int\2c\20char*\2c\20unsigned\20short\29 +4406:icu_74::compareUnicodeString\28UElement\2c\20UElement\29 +4407:icu_74::cloneUnicodeString\28UElement*\2c\20UElement*\29 +4408:icu_74::\28anonymous\20namespace\29::mungeCharName\28char*\2c\20char\20const*\2c\20int\29 +4409:icu_74::\28anonymous\20namespace\29::MutableCodePointTrie::getDataBlock\28int\29 +4410:icu_74::XLikelySubtagsData::readLSREncodedStrings\28icu_74::ResourceTable\20const&\2c\20char\20const*\2c\20icu_74::ResourceValue&\2c\20icu_74::ResourceArray\20const&\2c\20icu_74::LocalMemory&\2c\20int&\2c\20UErrorCode&\29 +4411:icu_74::XLikelySubtags::~XLikelySubtags\28\29 +4412:icu_74::XLikelySubtags::initLikelySubtags\28UErrorCode&\29 +4413:icu_74::UnicodeString::setCharAt\28int\2c\20char16_t\29 +4414:icu_74::UnicodeString::indexOf\28char16_t\20const*\2c\20int\2c\20int\2c\20int\2c\20int\29\20const +4415:icu_74::UnicodeString::doReverse\28int\2c\20int\29 +4416:icu_74::UnicodeSetStringSpan::span\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +4417:icu_74::UnicodeSetStringSpan::spanUTF8\28unsigned\20char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +4418:icu_74::UnicodeSetStringSpan::spanBack\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +4419:icu_74::UnicodeSetStringSpan::spanBackUTF8\28unsigned\20char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +4420:icu_74::UnicodeSet::set\28int\2c\20int\29 +4421:icu_74::UnicodeSet::setPattern\28char16_t\20const*\2c\20int\29 +4422:icu_74::UnicodeSet::retainAll\28icu_74::UnicodeSet\20const&\29 +4423:icu_74::UnicodeSet::remove\28int\2c\20int\29 +4424:icu_74::UnicodeSet::remove\28int\29 +4425:icu_74::UnicodeSet::matches\28icu_74::Replaceable\20const&\2c\20int&\2c\20int\2c\20signed\20char\29 +4426:icu_74::UnicodeSet::matchesIndexValue\28unsigned\20char\29\20const +4427:icu_74::UnicodeSet::clone\28\29\20const +4428:icu_74::UnicodeSet::cloneAsThawed\28\29\20const +4429:icu_74::UnicodeSet::applyPattern\28icu_74::RuleCharacterIterator&\2c\20icu_74::SymbolTable\20const*\2c\20icu_74::UnicodeString&\2c\20unsigned\20int\2c\20icu_74::UnicodeSet&\20\28icu_74::UnicodeSet::*\29\28int\29\2c\20int\2c\20UErrorCode&\29 +4430:icu_74::UnicodeSet::applyPatternIgnoreSpace\28icu_74::UnicodeString\20const&\2c\20icu_74::ParsePosition&\2c\20icu_74::SymbolTable\20const*\2c\20UErrorCode&\29 +4431:icu_74::UnicodeSet::add\28icu_74::UnicodeString\20const&\29 +4432:icu_74::UnicodeSet::_generatePattern\28icu_74::UnicodeString&\2c\20signed\20char\29\20const +4433:icu_74::UnicodeSet::UnicodeSet\28int\2c\20int\29 +4434:icu_74::UVector::sortedInsert\28void*\2c\20int\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +4435:icu_74::UVector::setElementAt\28void*\2c\20int\29 +4436:icu_74::UVector::removeElement\28void*\29 +4437:icu_74::UVector::assign\28icu_74::UVector\20const&\2c\20void\20\28*\29\28UElement*\2c\20UElement*\29\2c\20UErrorCode&\29 +4438:icu_74::UVector::UVector\28UErrorCode&\29 +4439:icu_74::UStringSet::~UStringSet\28\29_13659 +4440:icu_74::UStringSet::~UStringSet\28\29 +4441:icu_74::UDataPathIterator::UDataPathIterator\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +4442:icu_74::UCharsTrieBuilder::build\28UStringTrieBuildOption\2c\20UErrorCode&\29 +4443:icu_74::UCharsTrieBuilder::UCharsTrieBuilder\28UErrorCode&\29 +4444:icu_74::UCharsTrie::nextForCodePoint\28int\29 +4445:icu_74::UCharsTrie::Iterator::next\28UErrorCode&\29 +4446:icu_74::UCharsTrie::Iterator::branchNext\28char16_t\20const*\2c\20int\2c\20UErrorCode&\29 +4447:icu_74::UCharCharacterIterator::setText\28icu_74::ConstChar16Ptr\2c\20int\29 +4448:icu_74::StringTrieBuilder::writeBranchSubNode\28int\2c\20int\2c\20int\2c\20int\29 +4449:icu_74::StringTrieBuilder::LinearMatchNode::operator==\28icu_74::StringTrieBuilder::Node\20const&\29\20const +4450:icu_74::StringTrieBuilder::LinearMatchNode::markRightEdgesFirst\28int\29 +4451:icu_74::RuleCharacterIterator::skipIgnored\28int\29 +4452:icu_74::RuleBasedBreakIterator::~RuleBasedBreakIterator\28\29 +4453:icu_74::RuleBasedBreakIterator::handleSafePrevious\28int\29 +4454:icu_74::RuleBasedBreakIterator::RuleBasedBreakIterator\28UErrorCode*\29 +4455:icu_74::RuleBasedBreakIterator::DictionaryCache::~DictionaryCache\28\29 +4456:icu_74::RuleBasedBreakIterator::DictionaryCache::populateDictionary\28int\2c\20int\2c\20int\2c\20int\29 +4457:icu_74::RuleBasedBreakIterator::BreakCache::seek\28int\29 +4458:icu_74::RuleBasedBreakIterator::BreakCache::current\28\29 +4459:icu_74::ResourceDataValue::getIntVector\28int&\2c\20UErrorCode&\29\20const +4460:icu_74::ReorderingBuffer::equals\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\29\20const +4461:icu_74::RBBIDataWrapper::removeReference\28\29 +4462:icu_74::PropNameData::getPropertyOrValueEnum\28int\2c\20char\20const*\29 +4463:icu_74::Normalizer2WithImpl::normalizeSecondAndAppend\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29\20const +4464:icu_74::Normalizer2WithImpl::isNormalized\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +4465:icu_74::Normalizer2Impl::recompose\28icu_74::ReorderingBuffer&\2c\20int\2c\20signed\20char\29\20const +4466:icu_74::Normalizer2Impl::init\28int\20const*\2c\20UCPTrie\20const*\2c\20unsigned\20short\20const*\2c\20unsigned\20char\20const*\29 +4467:icu_74::Normalizer2Impl::findNextFCDBoundary\28char16_t\20const*\2c\20char16_t\20const*\29\20const +4468:icu_74::Normalizer2Impl::decomposeUTF8\28unsigned\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::ByteSink*\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +4469:icu_74::Normalizer2Impl::composeUTF8\28unsigned\20int\2c\20signed\20char\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::ByteSink*\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +4470:icu_74::Normalizer2Impl::composeQuickCheck\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20UNormalizationCheckResult*\29\20const +4471:icu_74::Normalizer2Factory::getNFKC_CFImpl\28UErrorCode&\29 +4472:icu_74::Normalizer2Factory::getInstance\28UNormalizationMode\2c\20UErrorCode&\29 +4473:icu_74::Normalizer2::getNFCInstance\28UErrorCode&\29 +4474:icu_74::NoopNormalizer2::normalizeSecondAndAppend\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +4475:icu_74::NoopNormalizer2::isNormalized\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +4476:icu_74::MlBreakEngine::~MlBreakEngine\28\29 +4477:icu_74::LocaleUtility::canonicalLocaleString\28icu_74::UnicodeString\20const*\2c\20icu_74::UnicodeString&\29 +4478:icu_74::LocaleKeyFactory::LocaleKeyFactory\28int\29 +4479:icu_74::LocaleKey::LocaleKey\28icu_74::UnicodeString\20const&\2c\20icu_74::UnicodeString\20const&\2c\20icu_74::UnicodeString\20const*\2c\20int\29 +4480:icu_74::LocaleBuilder::build\28UErrorCode&\29 +4481:icu_74::LocaleBuilder::LocaleBuilder\28\29 +4482:icu_74::LocaleBased::setLocaleIDs\28char\20const*\2c\20char\20const*\29 +4483:icu_74::Locale::setKeywordValue\28char\20const*\2c\20char\20const*\2c\20UErrorCode&\29 +4484:icu_74::Locale::operator=\28icu_74::Locale&&\29 +4485:icu_74::Locale::operator==\28icu_74::Locale\20const&\29\20const +4486:icu_74::Locale::createKeywords\28UErrorCode&\29\20const +4487:icu_74::Locale::createFromName\28char\20const*\29 +4488:icu_74::LaoBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +4489:icu_74::LSR::operator=\28icu_74::LSR&&\29 +4490:icu_74::InitCanonIterData::doInit\28icu_74::Normalizer2Impl*\2c\20UErrorCode&\29 +4491:icu_74::ICU_Utility::shouldAlwaysBeEscaped\28int\29 +4492:icu_74::ICU_Utility::isUnprintable\28int\29 +4493:icu_74::ICU_Utility::escape\28icu_74::UnicodeString&\2c\20int\29 +4494:icu_74::ICUServiceKey::parseSuffix\28icu_74::UnicodeString&\29 +4495:icu_74::ICUService::~ICUService\28\29 +4496:icu_74::ICUService::getVisibleIDs\28icu_74::UVector&\2c\20UErrorCode&\29\20const +4497:icu_74::ICUService::clearServiceCache\28\29 +4498:icu_74::ICUNotifier::~ICUNotifier\28\29 +4499:icu_74::Hashtable::put\28icu_74::UnicodeString\20const&\2c\20void*\2c\20UErrorCode&\29 +4500:icu_74::Edits::copyErrorTo\28UErrorCode&\29\20const +4501:icu_74::DecomposeNormalizer2::hasBoundaryBefore\28int\29\20const +4502:icu_74::DecomposeNormalizer2::hasBoundaryAfter\28int\29\20const +4503:icu_74::CjkBreakEngine::~CjkBreakEngine\28\29 +4504:icu_74::CjkBreakEngine::CjkBreakEngine\28icu_74::DictionaryMatcher*\2c\20icu_74::LanguageType\2c\20UErrorCode&\29 +4505:icu_74::CharString::truncate\28int\29 +4506:icu_74::CharString::cloneData\28UErrorCode&\29\20const +4507:icu_74::CharString*\20icu_74::MemoryPool::create\28char\20const*&\2c\20UErrorCode&\29 +4508:icu_74::CharString*\20icu_74::MemoryPool::create<>\28\29 +4509:icu_74::CanonIterData::addToStartSet\28int\2c\20int\2c\20UErrorCode&\29 +4510:icu_74::BytesTrie::branchNext\28unsigned\20char\20const*\2c\20int\2c\20int\29 +4511:icu_74::ByteSinkUtil::appendCodePoint\28int\2c\20int\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\29 +4512:icu_74::BreakIterator::getLocale\28ULocDataLocaleType\2c\20UErrorCode&\29\20const +4513:icu_74::BreakIterator::getLocaleID\28ULocDataLocaleType\2c\20UErrorCode&\29\20const +4514:icu_74::BreakIterator::createCharacterInstance\28icu_74::Locale\20const&\2c\20UErrorCode&\29 +4515:hb_vector_t\2c\20false>::resize\28int\2c\20bool\2c\20bool\29 +4516:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +4517:hb_vector_t::push\28\29 +4518:hb_vector_t\2c\20false>::resize\28int\2c\20bool\2c\20bool\29 +4519:hb_vector_size_t\20hb_bit_set_t::op_<$_14>\28hb_vector_size_t\20const&\2c\20hb_vector_size_t\20const&\29 +4520:hb_utf8_t::next\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20int*\2c\20unsigned\20int\29 +4521:hb_unicode_script +4522:hb_unicode_mirroring_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +4523:hb_unicode_funcs_t::is_default_ignorable\28unsigned\20int\29 +4524:hb_shape_plan_key_t::init\28bool\2c\20hb_face_t*\2c\20hb_segment_properties_t\20const*\2c\20hb_feature_t\20const*\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20char\20const*\20const*\29 +4525:hb_shape_plan_create2 +4526:hb_serialize_context_t::fini\28\29 +4527:hb_paint_extents_paint_linear_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +4528:hb_paint_extents_get_funcs\28\29 +4529:hb_paint_extents_context_t::clear\28\29 +4530:hb_ot_map_t::fini\28\29 +4531:hb_ot_layout_table_select_script +4532:hb_ot_layout_table_get_lookup_count +4533:hb_ot_layout_table_find_feature_variations +4534:hb_ot_layout_table_find_feature\28hb_face_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +4535:hb_ot_layout_script_select_language +4536:hb_ot_layout_language_get_required_feature +4537:hb_ot_layout_language_find_feature +4538:hb_ot_layout_has_substitution +4539:hb_ot_layout_feature_with_variations_get_lookups +4540:hb_ot_layout_collect_features_map +4541:hb_ot_font_set_funcs +4542:hb_lazy_loader_t::do_destroy\28hb_draw_funcs_t*\29 +4543:hb_lazy_loader_t\2c\20hb_face_t\2c\2038u\2c\20OT::sbix_accelerator_t>::create\28hb_face_t*\29 +4544:hb_lazy_loader_t\2c\20hb_face_t\2c\207u\2c\20OT::post_accelerator_t>::do_destroy\28OT::post_accelerator_t*\29 +4545:hb_lazy_loader_t\2c\20hb_face_t\2c\2017u\2c\20OT::cff2_accelerator_t>::do_destroy\28OT::cff2_accelerator_t*\29 +4546:hb_lazy_loader_t\2c\20hb_face_t\2c\2035u\2c\20OT::COLR_accelerator_t>::do_destroy\28OT::COLR_accelerator_t*\29 +4547:hb_lazy_loader_t\2c\20hb_face_t\2c\2037u\2c\20OT::CBDT_accelerator_t>::do_destroy\28OT::CBDT_accelerator_t*\29 +4548:hb_language_matches +4549:hb_indic_get_categories\28unsigned\20int\29 +4550:hb_hashmap_t::fetch_item\28hb_serialize_context_t::object_t\20const*\20const&\2c\20unsigned\20int\29\20const +4551:hb_hashmap_t::alloc\28unsigned\20int\29 +4552:hb_font_t::synthetic_glyph_extents\28hb_glyph_extents_t*\29 +4553:hb_font_t::get_glyph_v_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +4554:hb_font_t::get_glyph_contour_point_for_origin\28unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20int*\2c\20int*\29 +4555:hb_font_set_variations +4556:hb_font_set_funcs +4557:hb_font_get_variation_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +4558:hb_font_get_glyph_h_advance +4559:hb_font_get_glyph_extents +4560:hb_font_get_font_h_extents_nil\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +4561:hb_font_funcs_set_variation_glyph_func +4562:hb_font_funcs_set_nominal_glyphs_func +4563:hb_font_funcs_set_nominal_glyph_func +4564:hb_font_funcs_set_glyph_h_advances_func +4565:hb_font_funcs_set_glyph_extents_func +4566:hb_font_funcs_create +4567:hb_draw_move_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +4568:hb_draw_funcs_set_quadratic_to_func +4569:hb_draw_funcs_set_move_to_func +4570:hb_draw_funcs_set_line_to_func +4571:hb_draw_funcs_set_cubic_to_func +4572:hb_draw_funcs_create +4573:hb_draw_extents_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +4574:hb_buffer_t::sort\28unsigned\20int\2c\20unsigned\20int\2c\20int\20\28*\29\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29\29 +4575:hb_buffer_t::output_info\28hb_glyph_info_t\20const&\29 +4576:hb_buffer_t::message_impl\28hb_font_t*\2c\20char\20const*\2c\20void*\29 +4577:hb_buffer_t::leave\28\29 +4578:hb_buffer_t::delete_glyphs_inplace\28bool\20\28*\29\28hb_glyph_info_t\20const*\29\29 +4579:hb_buffer_t::clear_positions\28\29 +4580:hb_buffer_set_length +4581:hb_buffer_get_glyph_positions +4582:hb_buffer_diff +4583:hb_buffer_create +4584:hb_buffer_clear_contents +4585:hb_buffer_add_utf8 +4586:hb_blob_t*\20hb_sanitize_context_t::sanitize_blob\28hb_blob_t*\29 +4587:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +4588:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +4589:hb_aat_map_builder_t::compile\28hb_aat_map_t&\29 +4590:hb_aat_layout_remove_deleted_glyphs\28hb_buffer_t*\29 +4591:hb_aat_layout_compile_map\28hb_aat_map_builder_t\20const*\2c\20hb_aat_map_t*\29 +4592:hair_cubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +4593:getint +4594:get_win_string +4595:get_dst_swizzle_and_store\28GrColorType\2c\20SkRasterPipelineOp*\2c\20LumMode*\2c\20bool*\2c\20bool*\29 +4596:get_driver_and_version\28GrGLStandard\2c\20GrGLVendor\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +4597:getFallbackData\28UResourceBundle\20const*\2c\20char\20const**\2c\20unsigned\20int*\2c\20UErrorCode*\29 +4598:gen_key\28skgpu::KeyBuilder*\2c\20GrProgramInfo\20const&\2c\20GrCaps\20const&\29 +4599:gen_fp_key\28GrFragmentProcessor\20const&\2c\20GrCaps\20const&\2c\20skgpu::KeyBuilder*\29 +4600:gather_uniforms_and_check_for_main\28SkSL::Program\20const&\2c\20std::__2::vector>*\2c\20std::__2::vector>*\2c\20SkRuntimeEffect::Uniform::Flags\2c\20unsigned\20long*\29 +4601:fwrite +4602:ft_var_to_normalized +4603:ft_var_load_item_variation_store +4604:ft_var_load_hvvar +4605:ft_var_load_avar +4606:ft_var_get_value_pointer +4607:ft_var_apply_tuple +4608:ft_validator_init +4609:ft_mem_strcpyn +4610:ft_hash_num_lookup +4611:ft_glyphslot_set_bitmap +4612:ft_glyphslot_preset_bitmap +4613:ft_corner_orientation +4614:ft_corner_is_flat +4615:frexp +4616:free_entry\28UResourceDataEntry*\29 +4617:fread +4618:fp_force_eval +4619:fp_barrier_17368 +4620:fopen +4621:fold_opacity_layer_color_to_paint\28SkPaint\20const*\2c\20bool\2c\20SkPaint*\29 +4622:fmodl +4623:float\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +4624:fill_shadow_rec\28SkPath\20const&\2c\20SkPoint3\20const&\2c\20SkPoint3\20const&\2c\20float\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkDrawShadowRec*\29 +4625:fill_inverse_cmap +4626:fileno +4627:examine_app0 +4628:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29\2c\20SkCanvas*\2c\20SkPath*\2c\20SkClipOp\2c\20bool\29 +4629:emscripten::internal::MethodInvoker\20\28SkAnimatedImage::*\29\28\29\2c\20sk_sp\2c\20SkAnimatedImage*>::invoke\28sk_sp\20\28SkAnimatedImage::*\20const&\29\28\29\2c\20SkAnimatedImage*\29 +4630:emscripten::internal::Invoker\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20sk_sp\29\2c\20sk_sp*\2c\20sk_sp*\29 +4631:emscripten::internal::Invoker\2c\20SkBlendMode\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29\2c\20SkBlendMode\2c\20sk_sp*\2c\20sk_sp*\29 +4632:emscripten::internal::Invoker\2c\20SkBlendMode>::invoke\28sk_sp\20\28*\29\28SkBlendMode\29\2c\20SkBlendMode\29 +4633:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4634:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\29 +4635:emscripten::internal::FunctionInvoker\29\2c\20void\2c\20SkPaint&\2c\20unsigned\20long\2c\20sk_sp>::invoke\28void\20\28**\29\28SkPaint&\2c\20unsigned\20long\2c\20sk_sp\29\2c\20SkPaint*\2c\20unsigned\20long\2c\20sk_sp*\29 +4636:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29\2c\20SkCanvas*\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +4637:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +4638:emscripten::internal::FunctionInvoker\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +4639:emscripten::internal::FunctionInvoker\20\28*\29\28SkCanvas&\2c\20SimpleImageInfo\29\2c\20sk_sp\2c\20SkCanvas&\2c\20SimpleImageInfo>::invoke\28sk_sp\20\28**\29\28SkCanvas&\2c\20SimpleImageInfo\29\2c\20SkCanvas*\2c\20SimpleImageInfo*\29 +4640:emscripten::internal::FunctionInvoker::invoke\28int\20\28**\29\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SkFont*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +4641:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20SkPath\20const&\2c\20SkPathOp\29\2c\20SkPath*\2c\20SkPath*\2c\20SkPathOp\29 +4642:embind_init_builtin\28\29 +4643:embind_init_Skia\28\29 +4644:embind_init_Paragraph\28\29::$_0::__invoke\28SimpleParagraphStyle\2c\20sk_sp\29 +4645:embind_init_Paragraph\28\29 +4646:embind_init_ParagraphGen\28\29 +4647:edge_line_needs_recursion\28SkPoint\20const&\2c\20SkPoint\20const&\29 +4648:dquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4649:dquad_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4650:double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +4651:doOpenChoice\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20signed\20char\20\28*\29\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29\2c\20void*\2c\20UErrorCode*\29 +4652:doLoadFromIndividualFiles\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20signed\20char\20\28*\29\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29\2c\20void*\2c\20UErrorCode*\2c\20UErrorCode*\29 +4653:dline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4654:dline_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4655:deflate_stored +4656:decompose_current_character\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\29 +4657:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::Make\28SkArenaAlloc*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4658:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&\2c\20skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathCurveTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4659:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4660:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass\2c\20int&\2c\20float*&\2c\20skvx::Vec<4\2c\20float>*&>\28int&\2c\20float*&\2c\20skvx::Vec<4\2c\20float>*&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4661:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass\2c\20unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&>\28unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::A8Pass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4662:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29>\28GrThreadSafeCache::Entry&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4663:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29::'lambda'\28void*\29>\28GrResourceAllocator::Register&&\29 +4664:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrRRectShadowGeoProc::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4665:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28GrQuadEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4666:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrPipeline::InitArgs&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29::'lambda'\28void*\29>\28GrPipeline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4667:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldA8TextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20float\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4668:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28DefaultGeoProc::Make\28SkArenaAlloc*\2c\20unsigned\20int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29 +4669:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28CircleGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4670:decltype\28fp.sanitize\28this\2c\20std::forward\20const*>\28fp1\29\29\29\20hb_sanitize_context_t::_dispatch\2c\20OT::IntType\2c\20void\2c\20true>\2c\20OT::ContextFormat1_4\20const*>\28OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>\20const&\2c\20hb_priority<1u>\2c\20OT::ContextFormat1_4\20const*&&\29 +4671:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>>::__generic_construct\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__ctor\2c\20std::__2::unique_ptr>>>&\2c\20std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&>\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&\29 +4672:dcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4673:dcubic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4674:dconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4675:dconic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4676:data_destroy_arabic\28void*\29 +4677:data_create_arabic\28hb_ot_shape_plan_t\20const*\29 +4678:cycle +4679:cubic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4680:cubic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4681:create_colorindex +4682:copysignl +4683:conic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4684:conic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4685:compute_pos_tan\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +4686:compute_intersection\28OffsetSegment\20const&\2c\20OffsetSegment\20const&\2c\20SkPoint*\2c\20float*\2c\20float*\29 +4687:compress_block +4688:compose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +4689:compare_offsets +4690:clamp\28SkPoint\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Comparator\20const&\29 +4691:checkint +4692:check_inverse_on_empty_return\28SkRegion*\2c\20SkPath\20const&\2c\20SkRegion\20const&\29 +4693:charIterTextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +4694:char*\20std::__2::copy_n\5babi:nn180100\5d\28char\20const*\2c\20unsigned\20long\2c\20char*\29 +4695:char*\20std::__2::copy\5babi:nn180100\5d\2c\20char*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20char*\29 +4696:char*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20std::__2::__element_count\29 +4697:cff_vstore_done +4698:cff_subfont_load +4699:cff_subfont_done +4700:cff_size_select +4701:cff_parser_run +4702:cff_make_private_dict +4703:cff_load_private_dict +4704:cff_index_get_name +4705:cff_get_kerning +4706:cff_blend_build_vector +4707:cf2_getSeacComponent +4708:cf2_computeDarkening +4709:cf2_arrstack_push +4710:cbrt +4711:build_ycc_rgb_table +4712:bracketProcessChar\28BracketData*\2c\20int\29 +4713:bool\20std::__2::operator==\5babi:nn180100\5d\28std::__2::unique_ptr\20const&\2c\20std::nullptr_t\29 +4714:bool\20std::__2::operator!=\5babi:ne180100\5d\28std::__2::variant\20const&\2c\20std::__2::variant\20const&\29 +4715:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +4716:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\29 +4717:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +4718:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +4719:bool\20is_parallel\28SkDLine\20const&\2c\20SkTCurve\20const&\29 +4720:bool\20hb_hashmap_t::set_with_hash\28unsigned\20int\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool\29 +4721:bool\20hb_hashmap_t::set_with_hash\28hb_serialize_context_t::object_t*&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool\29 +4722:bool\20apply_string\28OT::hb_ot_apply_context_t*\2c\20GSUBProxy::Lookup\20const&\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\29 +4723:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4724:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4725:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4726:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4727:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4728:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4729:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4730:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4731:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4732:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4733:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4734:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4735:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4736:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4737:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4738:bool\20OT::TupleValues::decompile\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\2c\20bool\29 +4739:bool\20OT::OffsetTo\2c\20void\2c\20true>::serialize_serialize\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&>\28hb_serialize_context_t*\2c\20hb_map_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&\29 +4740:bool\20GrTTopoSort_Visit\28GrRenderTask*\2c\20unsigned\20int*\29 +4741:bool\20AAT::hb_aat_apply_context_t::output_glyphs\28unsigned\20int\2c\20OT::HBGlyphID16\20const*\29 +4742:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +4743:bits_to_runs\28SkBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\2c\20long\2c\20unsigned\20char\29 +4744:barycentric_coords\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +4745:auto\20std::__2::__unwrap_range\5babi:nn180100\5d\2c\20std::__2::__wrap_iter>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\29 +4746:atanf +4747:apply_forward\28OT::hb_ot_apply_context_t*\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\2c\20unsigned\20int\29 +4748:apply_alpha_and_colorfilter\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20SkPaint\20const&\29 +4749:append_multitexture_lookup\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20int\2c\20GrGLSLVarying\20const&\2c\20char\20const*\2c\20char\20const*\29 +4750:append_color_output\28PorterDuffXferProcessor\20const&\2c\20GrGLSLXPFragmentBuilder*\2c\20skgpu::BlendFormula::OutputType\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +4751:af_loader_compute_darkening +4752:af_latin_metrics_scale_dim +4753:af_latin_hints_detect_features +4754:af_latin_hint_edges +4755:af_hint_normal_stem +4756:af_cjk_metrics_scale_dim +4757:af_cjk_metrics_scale +4758:af_cjk_metrics_init_widths +4759:af_cjk_hints_init +4760:af_cjk_hints_detect_features +4761:af_cjk_hints_compute_blue_edges +4762:af_cjk_hints_apply +4763:af_cjk_hint_edges +4764:af_cjk_get_standard_widths +4765:af_axis_hints_new_edge +4766:adler32 +4767:a_ctz_32 +4768:_uhash_remove\28UHashtable*\2c\20UElement\29 +4769:_uhash_rehash\28UHashtable*\2c\20UErrorCode*\29 +4770:_uhash_put\28UHashtable*\2c\20UElement\2c\20UElement\2c\20signed\20char\2c\20UErrorCode*\29 +4771:_iup_worker_interpolate +4772:_isUnicodeExtensionSubtag\28int&\2c\20char\20const*\2c\20int\29 +4773:_isTransformedExtensionSubtag\28int&\2c\20char\20const*\2c\20int\29 +4774:_hb_preprocess_text_vowel_constraints\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +4775:_hb_ot_shape +4776:_hb_options_init\28\29 +4777:_hb_grapheme_group_func\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29 +4778:_hb_font_create\28hb_face_t*\29 +4779:_hb_fallback_shape +4780:_glyf_get_advance_with_var_unscaled\28hb_font_t*\2c\20unsigned\20int\2c\20bool\29 +4781:_getVariant\28char\20const*\2c\20char\2c\20icu_74::ByteSink&\2c\20signed\20char\29 +4782:__vfprintf_internal +4783:__trunctfsf2 +4784:__tan +4785:__strftime_l +4786:__rem_pio2_large +4787:__overflow +4788:__nl_langinfo_l +4789:__newlocale +4790:__munmap +4791:__mmap +4792:__math_xflowf +4793:__math_invalidf +4794:__loc_is_allocated +4795:__isxdigit_l +4796:__isdigit_l +4797:__getf2 +4798:__get_locale +4799:__ftello_unlocked +4800:__fstatat +4801:__fseeko_unlocked +4802:__floatscan +4803:__expo2 +4804:__dynamic_cast +4805:__divtf3 +4806:__cxxabiv1::__base_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +4807:_ZZN19GrGeometryProcessor11ProgramImpl17collectTransformsEP19GrGLSLVertexBuilderP20GrGLSLVaryingHandlerP20GrGLSLUniformHandler12GrShaderTypeRK11GrShaderVarSA_RK10GrPipelineEN3$_0clISE_EEvRT_RK19GrFragmentProcessorbPSJ_iNS0_9BaseCoordE +4808:\28anonymous\20namespace\29::write_text_tag\28char\20const*\29 +4809:\28anonymous\20namespace\29::write_mAB_or_mBA_tag\28unsigned\20int\2c\20skcms_Curve\20const*\2c\20skcms_Curve\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20skcms_Curve\20const*\2c\20skcms_Matrix3x4\20const*\29 +4810:\28anonymous\20namespace\29::set_uv_quad\28SkPoint\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +4811:\28anonymous\20namespace\29::safe_to_ignore_subset_rect\28GrAAType\2c\20SkFilterMode\2c\20DrawQuad\20const&\2c\20SkRect\20const&\29 +4812:\28anonymous\20namespace\29::morphology_pass\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20\28anonymous\20namespace\29::MorphType\2c\20\28anonymous\20namespace\29::MorphDirection\2c\20int\29 +4813:\28anonymous\20namespace\29::make_non_convex_fill_op\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20skgpu::ganesh::FillPathFlags\2c\20GrAAType\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\29 +4814:\28anonymous\20namespace\29::is_newer_better\28SkData*\2c\20SkData*\29 +4815:\28anonymous\20namespace\29::get_glyph_run_intercepts\28sktext::GlyphRun\20const&\2c\20SkPaint\20const&\2c\20float\20const*\2c\20float*\2c\20int*\29 +4816:\28anonymous\20namespace\29::get_cicp_trfn\28skcms_TransferFunction\20const&\29 +4817:\28anonymous\20namespace\29::get_cicp_primaries\28skcms_Matrix3x3\20const&\29 +4818:\28anonymous\20namespace\29::getStringArray\28ResourceData\20const*\2c\20icu_74::ResourceArray\20const&\2c\20icu_74::UnicodeString*\2c\20int\2c\20UErrorCode&\29 +4819:\28anonymous\20namespace\29::getInclusionsForSource\28UPropertySource\2c\20UErrorCode&\29 +4820:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_2::operator\28\29\28SkSpan\29\20const +4821:\28anonymous\20namespace\29::draw_to_sw_mask\28GrSWMaskHelper*\2c\20skgpu::ganesh::ClipStack::Element\20const&\2c\20bool\29 +4822:\28anonymous\20namespace\29::draw_tiled_image\28SkCanvas*\2c\20std::__2::function\20\28SkIRect\29>\2c\20SkISize\2c\20int\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkSamplingOptions\29 +4823:\28anonymous\20namespace\29::determine_clipped_src_rect\28SkIRect\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkRect\20const*\29 +4824:\28anonymous\20namespace\29::create_hb_face\28SkTypeface\20const&\29::$_0::__invoke\28void*\29 +4825:\28anonymous\20namespace\29::copyFTBitmap\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\29 +4826:\28anonymous\20namespace\29::colrv1_start_glyph\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20unsigned\20short\2c\20FT_Color_Root_Transform_\2c\20skia_private::THashSet*\29 +4827:\28anonymous\20namespace\29::colrv1_draw_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\29 +4828:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29 +4829:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29 +4830:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29 +4831:\28anonymous\20namespace\29::TriangulatingPathOp::TriangulatingPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +4832:\28anonymous\20namespace\29::TriangulatingPathOp::Triangulate\28GrEagerVertexAllocator*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool*\29 +4833:\28anonymous\20namespace\29::TriangulatingPathOp::CreateKey\28skgpu::UniqueKey*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\29 +4834:\28anonymous\20namespace\29::TextureOpImpl::propagateCoverageAAThroughoutChain\28\29 +4835:\28anonymous\20namespace\29::TextureOpImpl::characterize\28\28anonymous\20namespace\29::TextureOpImpl::Desc*\29\20const +4836:\28anonymous\20namespace\29::TextureOpImpl::appendQuad\28DrawQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\29 +4837:\28anonymous\20namespace\29::TextureOpImpl::Make\28GrRecordingContext*\2c\20GrTextureSetEntry*\2c\20int\2c\20int\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20GrAAType\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +4838:\28anonymous\20namespace\29::TextureOpImpl::FillInVertices\28GrCaps\20const&\2c\20\28anonymous\20namespace\29::TextureOpImpl*\2c\20\28anonymous\20namespace\29::TextureOpImpl::Desc*\2c\20char*\29 +4839:\28anonymous\20namespace\29::SpotVerticesFactory::makeVertices\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint*\29\20const +4840:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +4841:\28anonymous\20namespace\29::SkImageImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +4842:\28anonymous\20namespace\29::SkCropImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +4843:\28anonymous\20namespace\29::SDFTSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +4844:\28anonymous\20namespace\29::RunIteratorQueue::advanceRuns\28\29 +4845:\28anonymous\20namespace\29::RectsBlurKey::RectsBlurKey\28float\2c\20SkBlurStyle\2c\20SkSpan\29 +4846:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::maxSigma\28\29\20const +4847:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::'lambda'\28float\29::operator\28\29\28float\29\20const +4848:\28anonymous\20namespace\29::RPBlender::RPBlender\28SkColorType\2c\20SkColorType\2c\20SkAlphaType\2c\20bool\29 +4849:\28anonymous\20namespace\29::MipLevelHelper::allocAndInit\28SkArenaAlloc*\2c\20SkSamplingOptions\20const&\2c\20SkTileMode\2c\20SkTileMode\29 +4850:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29 +4851:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20sk_sp\2c\20GrPrimitiveType\20const*\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +4852:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMesh\20const&\2c\20skia_private::TArray>\2c\20true>\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +4853:\28anonymous\20namespace\29::MeshOp::Mesh::Mesh\28SkMesh\20const&\29 +4854:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29 +4855:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29 +4856:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineStruct\28char\20const*\29 +4857:\28anonymous\20namespace\29::FillRectOpImpl::tessellate\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29\20const +4858:\28anonymous\20namespace\29::FillRectOpImpl::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +4859:\28anonymous\20namespace\29::FillRectOpImpl::FillRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +4860:\28anonymous\20namespace\29::EllipticalRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRRect\20const&\29 +4861:\28anonymous\20namespace\29::DrawAtlasOpImpl::DrawAtlasOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrAAType\2c\20int\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\29 +4862:\28anonymous\20namespace\29::DirectMaskSubRun::glyphParams\28\29\20const +4863:\28anonymous\20namespace\29::DirectMaskSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +4864:\28anonymous\20namespace\29::DefaultPathOp::programInfo\28\29 +4865:\28anonymous\20namespace\29::DefaultPathOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +4866:\28anonymous\20namespace\29::DefaultPathOp::DefaultPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +4867:\28anonymous\20namespace\29::ClipGeometry\20\28anonymous\20namespace\29::get_clip_geometry\28skgpu::ganesh::ClipStack::SaveRecord\20const&\2c\20skgpu::ganesh::ClipStack::Draw\20const&\29 +4868:\28anonymous\20namespace\29::CircularRRectEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +4869:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29 +4870:\28anonymous\20namespace\29::CachedTessellations::CachedTessellations\28\29 +4871:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29 +4872:\28anonymous\20namespace\29::AAHairlineOp::AAHairlineOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIRect\2c\20float\2c\20GrUserStencilSettings\20const*\29 +4873:WebPResetDecParams +4874:WebPRescalerGetScaledDimensions +4875:WebPMultRows +4876:WebPMultARGBRows +4877:WebPIoInitFromOptions +4878:WebPInitUpsamplers +4879:WebPFlipBuffer +4880:WebPDemuxInternal +4881:WebPDemuxGetChunk +4882:WebPCopyDecBufferPixels +4883:WebPAllocateDecBuffer +4884:WebGLTextureImageGenerator::~WebGLTextureImageGenerator\28\29 +4885:VP8RemapBitReader +4886:VP8LHuffmanTablesAllocate +4887:VP8LDspInit +4888:VP8LConvertFromBGRA +4889:VP8LColorCacheInit +4890:VP8LColorCacheCopy +4891:VP8LBuildHuffmanTable +4892:VP8LBitReaderSetBuffer +4893:VP8InitScanline +4894:VP8GetInfo +4895:VP8BitReaderSetBuffer +4896:Update_Max +4897:TransformOne_C +4898:TT_Set_Named_Instance +4899:TT_Hint_Glyph +4900:StoreFrame +4901:SortContourList\28SkOpContourHead**\2c\20bool\2c\20bool\29 +4902:SkYUVAPixmapInfo::isSupported\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\29\20const +4903:SkWuffsCodec::seekFrame\28int\29 +4904:SkWuffsCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +4905:SkWuffsCodec::onIncrementalDecodeTwoPass\28\29 +4906:SkWuffsCodec::decodeFrameConfig\28\29 +4907:SkWriter32::writeString\28char\20const*\2c\20unsigned\20long\29 +4908:SkWebpDecoder::IsWebp\28void\20const*\2c\20unsigned\20long\29 +4909:SkWebpCodec::ensureAllData\28\29 +4910:SkWebpCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29 +4911:SkWbmpDecoder::IsWbmp\28void\20const*\2c\20unsigned\20long\29 +4912:SkWbmpCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29 +4913:SkWStream::SizeOfPackedUInt\28unsigned\20long\29 +4914:SkWBuffer::padToAlign4\28\29 +4915:SkVertices::Builder::indices\28\29 +4916:SkUnicode_icu::extractWords\28unsigned\20short*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +4917:SkUnicode::convertUtf16ToUtf8\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +4918:SkUTF::NextUTF16\28unsigned\20short\20const**\2c\20unsigned\20short\20const*\29 +4919:SkTypeface_FreeType::FaceRec::Make\28SkTypeface_FreeType\20const*\29 +4920:SkTypeface_Custom::onGetFamilyName\28SkString*\29\20const +4921:SkTypeface::textToGlyphs\28void\20const*\2c\20unsigned\20long\2c\20SkTextEncoding\2c\20SkSpan\29\20const +4922:SkTypeface::serialize\28SkWStream*\2c\20SkTypeface::SerializeBehavior\29\20const +4923:SkTypeface::openStream\28int*\29\20const +4924:SkTypeface::onGetFixedPitch\28\29\20const +4925:SkTypeface::getVariationDesignPosition\28SkSpan\29\20const +4926:SkTreatAsSprite\28SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkSamplingOptions\20const&\2c\20bool\29 +4927:SkTransformShader::update\28SkMatrix\20const&\29 +4928:SkTransformShader::SkTransformShader\28SkShaderBase\20const&\2c\20bool\29 +4929:SkTiff::ImageFileDirectory::getEntryRawData\28unsigned\20short\2c\20unsigned\20short*\2c\20unsigned\20short*\2c\20unsigned\20int*\2c\20unsigned\20char\20const**\2c\20unsigned\20long*\29\20const +4930:SkTextBlobBuilder::allocRunPos\28SkFont\20const&\2c\20int\2c\20SkRect\20const*\29 +4931:SkTextBlob::getIntercepts\28float\20const*\2c\20float*\2c\20SkPaint\20const*\29\20const +4932:SkTextBlob::RunRecord::StorageSize\28unsigned\20int\2c\20unsigned\20int\2c\20SkTextBlob::GlyphPositioning\2c\20SkSafeMath*\29 +4933:SkTextBlob::MakeFromText\28void\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20SkTextEncoding\29 +4934:SkTextBlob::MakeFromRSXform\28void\20const*\2c\20unsigned\20long\2c\20SkSpan\2c\20SkFont\20const&\2c\20SkTextEncoding\29 +4935:SkTextBlob::Iter::experimentalNext\28SkTextBlob::Iter::ExperimentalRun*\29 +4936:SkTextBlob::Iter::Iter\28SkTextBlob\20const&\29 +4937:SkTaskGroup::wait\28\29 +4938:SkTaskGroup::add\28std::__2::function\29 +4939:SkTSpan::onlyEndPointsInCommon\28SkTSpan\20const*\2c\20bool*\2c\20bool*\2c\20bool*\29 +4940:SkTSpan::linearIntersects\28SkTCurve\20const&\29\20const +4941:SkTSect::removeAllBut\28SkTSpan\20const*\2c\20SkTSpan*\2c\20SkTSect*\29 +4942:SkTSect::intersects\28SkTSpan*\2c\20SkTSect*\2c\20SkTSpan*\2c\20int*\29 +4943:SkTSect::deleteEmptySpans\28\29 +4944:SkTSect::addSplitAt\28SkTSpan*\2c\20double\29 +4945:SkTSect::addForPerp\28SkTSpan*\2c\20double\29 +4946:SkTSect::EndsEqual\28SkTSect\20const*\2c\20SkTSect\20const*\2c\20SkIntersections*\29 +4947:SkTMultiMap::~SkTMultiMap\28\29 +4948:SkTMaskGamma<3\2c\203\2c\203>::SkTMaskGamma\28float\2c\20float\29 +4949:SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::find\28SkImageFilterCacheKey\20const&\29\20const +4950:SkTDStorage::calculateSizeOrDie\28int\29::$_1::operator\28\29\28\29\20const +4951:SkTDStorage::SkTDStorage\28SkTDStorage&&\29 +4952:SkTCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +4953:SkTConic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +4954:SkTConic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +4955:SkTConic::controlsInside\28\29\20const +4956:SkTConic::collapsed\28\29\20const +4957:SkTBlockList::reset\28\29 +4958:SkTBlockList::reset\28\29 +4959:SkTBlockList::push_back\28GrGLProgramDataManager::GLUniformInfo\20const&\29 +4960:SkSwizzler::MakeSimple\28int\2c\20SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20SkIRect\20const*\29 +4961:SkSurfaces::WrapPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkSurfaceProps\20const*\29 +4962:SkSurface_Base::outstandingImageSnapshot\28\29\20const +4963:SkSurface_Base::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +4964:SkSurface_Base::onCapabilities\28\29 +4965:SkSurface::height\28\29\20const +4966:SkStrokeRec::setHairlineStyle\28\29 +4967:SkStrokeRec::SkStrokeRec\28SkPaint\20const&\2c\20SkPaint::Style\2c\20float\29 +4968:SkStrokeRec::GetInflationRadius\28SkPaint::Join\2c\20float\2c\20SkPaint::Cap\2c\20float\29 +4969:SkString::insertHex\28unsigned\20long\2c\20unsigned\20int\2c\20int\29 +4970:SkString::appendVAList\28char\20const*\2c\20void*\29 +4971:SkString*\20std::__2::vector>::__emplace_back_slow_path\28char\20const*&\29 +4972:SkStrikeSpec::SkStrikeSpec\28SkStrikeSpec\20const&\29 +4973:SkStrikeSpec::ShouldDrawAsPath\28SkPaint\20const&\2c\20SkFont\20const&\2c\20SkMatrix\20const&\29 +4974:SkStrike::~SkStrike\28\29 +4975:SkStream::readS8\28signed\20char*\29 +4976:SkStrSplit\28char\20const*\2c\20char\20const*\2c\20SkStrSplitMode\2c\20skia_private::TArray*\29 +4977:SkStrAppendS32\28char*\2c\20int\29 +4978:SkSpriteBlitter_Memcpy::~SkSpriteBlitter_Memcpy\28\29 +4979:SkSpecialImages::AsView\28GrRecordingContext*\2c\20SkSpecialImage\20const*\29 +4980:SkSharedMutex::releaseShared\28\29 +4981:SkShapers::unicode::BidiRunIterator\28sk_sp\2c\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20char\29 +4982:SkShapers::HB::ScriptRunIterator\28char\20const*\2c\20unsigned\20long\29 +4983:SkShaper::MakeStdLanguageRunIterator\28char\20const*\2c\20unsigned\20long\29 +4984:SkShaders::MatrixRec::concat\28SkMatrix\20const&\29\20const +4985:SkShaders::Blend\28sk_sp\2c\20sk_sp\2c\20sk_sp\29 +4986:SkShaderUtils::VisitLineByLine\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::function\20const&\29 +4987:SkShaderUtils::PrettyPrint\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +4988:SkShaderUtils::GLSLPrettyPrint::parseUntil\28char\20const*\29 +4989:SkShaderBlurAlgorithm::renderBlur\28SkRuntimeEffectBuilder*\2c\20SkFilterMode\2c\20SkISize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +4990:SkShaderBlurAlgorithm::evalBlur1D\28float\2c\20int\2c\20SkV2\2c\20sk_sp\2c\20SkIRect\2c\20SkTileMode\2c\20SkIRect\29\20const +4991:SkShaderBlurAlgorithm::Compute2DBlurOffsets\28SkISize\2c\20std::__2::array&\29 +4992:SkShaderBlurAlgorithm::Compute2DBlurKernel\28SkSize\2c\20SkISize\2c\20std::__2::array&\29 +4993:SkShaderBlurAlgorithm::Compute1DBlurLinearKernel\28float\2c\20int\2c\20std::__2::array&\29 +4994:SkShaderBase::getFlattenableType\28\29\20const +4995:SkShaderBase::asLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +4996:SkShader::makeWithColorFilter\28sk_sp\29\20const +4997:SkScan::PathRequiresTiling\28SkIRect\20const&\29 +4998:SkScan::HairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4999:SkScan::AntiHairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +5000:SkScan::AntiFrameRect\28SkRect\20const&\2c\20SkPoint\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +5001:SkScan::AntiFillXRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +5002:SkScan::AntiFillRect\28SkRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +5003:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +5004:SkScan::AAAFillPath\28SkPathRaw\20const&\2c\20SkBlitter*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +5005:SkScalerContext_FreeType::updateGlyphBoundsIfSubpixel\28SkGlyph\20const&\2c\20SkRect*\2c\20bool\29 +5006:SkScalerContext_FreeType::shouldSubpixelBitmap\28SkGlyph\20const&\2c\20SkMatrix\20const&\29 +5007:SkScalerContextRec::useStrokeForFakeBold\28\29 +5008:SkScalerContextRec::getSingleMatrix\28\29\20const +5009:SkScalerContextFTUtils::drawCOLRv1Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +5010:SkScalerContextFTUtils::drawCOLRv0Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +5011:SkScalerContext::internalMakeGlyph\28SkPackedGlyphID\2c\20SkMask::Format\2c\20SkArenaAlloc*\29 +5012:SkScalerContext::internalGetPath\28SkGlyph&\2c\20SkArenaAlloc*\2c\20std::__2::optional&&\29 +5013:SkScalerContext::SkScalerContext\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +5014:SkScalerContext::PreprocessRec\28SkTypeface\20const&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const&\29 +5015:SkScalerContext::MakeRecAndEffects\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\2c\20SkScalerContextRec*\2c\20SkScalerContextEffects*\29 +5016:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +5017:SkScalerContext::GetMaskPreBlend\28SkScalerContextRec\20const&\29 +5018:SkScalerContext::GenerateImageFromPath\28SkMaskBuilder&\2c\20SkPath\20const&\2c\20SkTMaskPreBlend<3\2c\203\2c\203>\20const&\2c\20bool\2c\20bool\2c\20bool\2c\20bool\29 +5019:SkScalerContext::AutoDescriptorGivenRecAndEffects\28SkScalerContextRec\20const&\2c\20SkScalerContextEffects\20const&\2c\20SkAutoDescriptor*\29 +5020:SkSampledCodec::sampledDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +5021:SkSampledCodec::accountForNativeScaling\28int*\2c\20int*\29\20const +5022:SkSL::zero_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\29 +5023:SkSL::type_to_sksltype\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSLType*\29 +5024:SkSL::stoi\28std::__2::basic_string_view>\2c\20long\20long*\29 +5025:SkSL::splat_scalar\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +5026:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_2::operator\28\29\28int\29\20const +5027:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_1::operator\28\29\28int\29\20const +5028:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_0::operator\28\29\28int\29\20const +5029:SkSL::negate_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +5030:SkSL::make_reciprocal_expression\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29 +5031:SkSL::index_out_of_range\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20long\20long\2c\20SkSL::Expression\20const&\29 +5032:SkSL::get_struct_definitions_from_module\28SkSL::Program&\2c\20SkSL::Module\20const&\2c\20std::__2::vector>*\29 +5033:SkSL::find_existing_declaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20SkSL::IntrinsicKind\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray>\2c\20true>&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration**\29::$_0::operator\28\29\28\29\20const +5034:SkSL::extract_matrix\28SkSL::Expression\20const*\2c\20float*\29 +5035:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +5036:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_4::operator\28\29\28int\29\20const +5037:SkSL::\28anonymous\20namespace\29::check_valid_uniform_type\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Context\20const&\2c\20bool\29::$_0::operator\28\29\28\29\20const +5038:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +5039:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +5040:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +5041:SkSL::VariableReference::setRefKind\28SkSL::VariableRefKind\29 +5042:SkSL::Variable::setVarDeclaration\28SkSL::VarDeclaration*\29 +5043:SkSL::Variable::setGlobalVarDeclaration\28SkSL::GlobalVarDeclaration*\29 +5044:SkSL::Variable::globalVarDeclaration\28\29\20const +5045:SkSL::Variable::Make\28SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20std::__2::basic_string_view>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20bool\2c\20SkSL::VariableStorage\29 +5046:SkSL::Variable::MakeScratchVariable\28SkSL::Context\20const&\2c\20SkSL::Mangler&\2c\20std::__2::basic_string_view>\2c\20SkSL::Type\20const*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>\29 +5047:SkSL::VarDeclaration::Make\28SkSL::Context\20const&\2c\20SkSL::Variable*\2c\20SkSL::Type\20const*\2c\20int\2c\20std::__2::unique_ptr>\29 +5048:SkSL::VarDeclaration::ErrorCheck\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Type\20const*\2c\20SkSL::VariableStorage\29 +5049:SkSL::TypeReference::description\28SkSL::OperatorPrecedence\29\20const +5050:SkSL::TypeReference::VerifyType\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Position\29 +5051:SkSL::TypeReference::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\29 +5052:SkSL::Type::MakeStructType\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20bool\29 +5053:SkSL::Type::MakeLiteralType\28char\20const*\2c\20SkSL::Type\20const&\2c\20signed\20char\29 +5054:SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::addDeclaringElement\28SkSL::ProgramElement\20const*\29 +5055:SkSL::Transform::EliminateDeadFunctions\28SkSL::Program&\29 +5056:SkSL::ToGLSL\28SkSL::Program&\2c\20SkSL::ShaderCaps\20const*\2c\20SkSL::NativeShader*\29 +5057:SkSL::TernaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +5058:SkSL::SymbolTable::insertNewParent\28\29 +5059:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Symbol*\29 +5060:SkSL::Swizzle::MaskString\28skia_private::FixedArray<4\2c\20signed\20char>\20const&\29 +5061:SkSL::SwitchStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +5062:SkSL::SwitchCase::Make\28SkSL::Position\2c\20long\20long\2c\20std::__2::unique_ptr>\29 +5063:SkSL::SwitchCase::MakeDefault\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +5064:SkSL::StructType::StructType\28SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20int\2c\20bool\2c\20bool\29 +5065:SkSL::String::vappendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20void*\29 +5066:SkSL::SingleArgumentConstructor::argumentSpan\28\29 +5067:SkSL::RP::stack_usage\28SkSL::RP::Instruction\20const&\29 +5068:SkSL::RP::UnownedLValueSlice::isWritable\28\29\20const +5069:SkSL::RP::UnownedLValueSlice::dynamicSlotRange\28\29 +5070:SkSL::RP::Program::~Program\28\29 +5071:SkSL::RP::LValue::swizzle\28\29 +5072:SkSL::RP::Generator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\29 +5073:SkSL::RP::Generator::writeFunction\28SkSL::IRNode\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSpan>\20const>\29 +5074:SkSL::RP::Generator::storeImmutableValueToSlots\28skia_private::TArray\20const&\2c\20SkSL::RP::SlotRange\29 +5075:SkSL::RP::Generator::pushVariableReferencePartial\28SkSL::VariableReference\20const&\2c\20SkSL::RP::SlotRange\29 +5076:SkSL::RP::Generator::pushPrefixExpression\28SkSL::Operator\2c\20SkSL::Expression\20const&\29 +5077:SkSL::RP::Generator::pushIntrinsic\28SkSL::IntrinsicKind\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +5078:SkSL::RP::Generator::pushImmutableData\28SkSL::Expression\20const&\29 +5079:SkSL::RP::Generator::pushAbsFloatIntrinsic\28int\29 +5080:SkSL::RP::Generator::getImmutableValueForExpression\28SkSL::Expression\20const&\2c\20skia_private::TArray*\29 +5081:SkSL::RP::Generator::foldWithMultiOp\28SkSL::RP::BuilderOp\2c\20int\29 +5082:SkSL::RP::Generator::findPreexistingImmutableData\28skia_private::TArray\20const&\29 +5083:SkSL::RP::DynamicIndexLValue::dynamicSlotRange\28\29 +5084:SkSL::RP::Builder::push_slots_or_immutable_indirect\28SkSL::RP::SlotRange\2c\20int\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::BuilderOp\29 +5085:SkSL::RP::Builder::push_condition_mask\28\29 +5086:SkSL::RP::Builder::pad_stack\28int\29 +5087:SkSL::RP::Builder::copy_stack_to_slots\28SkSL::RP::SlotRange\2c\20int\29 +5088:SkSL::RP::Builder::branch_if_any_lanes_active\28int\29 +5089:SkSL::ProgramVisitor::visit\28SkSL::Program\20const&\29 +5090:SkSL::ProgramUsage::remove\28SkSL::Expression\20const*\29 +5091:SkSL::ProgramUsage::add\28SkSL::Statement\20const*\29 +5092:SkSL::ProgramUsage::add\28SkSL::Expression\20const*\29 +5093:SkSL::Pool::attachToThread\28\29 +5094:SkSL::PipelineStage::PipelineStageCodeGenerator::functionName\28SkSL::FunctionDeclaration\20const&\2c\20int\29 +5095:SkSL::PipelineStage::PipelineStageCodeGenerator::functionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +5096:SkSL::PipelineStage::PipelineStageCodeGenerator::forEachSpecialization\28SkSL::FunctionDeclaration\20const&\2c\20std::__2::function\20const&\29 +5097:SkSL::Parser::~Parser\28\29 +5098:SkSL::Parser::varDeclarations\28\29 +5099:SkSL::Parser::varDeclarationsOrExpressionStatement\28\29 +5100:SkSL::Parser::switchCaseBody\28SkSL::ExpressionArray*\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>*\2c\20std::__2::unique_ptr>\29 +5101:SkSL::Parser::statementOrNop\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +5102:SkSL::Parser::shiftExpression\28\29 +5103:SkSL::Parser::relationalExpression\28\29 +5104:SkSL::Parser::parameter\28std::__2::unique_ptr>*\29 +5105:SkSL::Parser::multiplicativeExpression\28\29 +5106:SkSL::Parser::logicalXorExpression\28\29 +5107:SkSL::Parser::logicalAndExpression\28\29 +5108:SkSL::Parser::localVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +5109:SkSL::Parser::intLiteral\28long\20long*\29 +5110:SkSL::Parser::globalVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +5111:SkSL::Parser::equalityExpression\28\29 +5112:SkSL::Parser::directive\28bool\29 +5113:SkSL::Parser::declarations\28\29 +5114:SkSL::Parser::checkNext\28SkSL::Token::Kind\2c\20SkSL::Token*\29 +5115:SkSL::Parser::bitwiseXorExpression\28\29 +5116:SkSL::Parser::bitwiseOrExpression\28\29 +5117:SkSL::Parser::bitwiseAndExpression\28\29 +5118:SkSL::Parser::additiveExpression\28\29 +5119:SkSL::Parser::Parser\28SkSL::Compiler*\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::ProgramKind\2c\20std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20std::__2::default_delete\2c\20std::__2::allocator>>>\29 +5120:SkSL::MultiArgumentConstructor::argumentSpan\28\29 +5121:SkSL::ModuleTypeToString\28SkSL::ModuleType\29 +5122:SkSL::ModuleLoader::~ModuleLoader\28\29 +5123:SkSL::ModuleLoader::loadVertexModule\28SkSL::Compiler*\29 +5124:SkSL::ModuleLoader::loadPublicModule\28SkSL::Compiler*\29 +5125:SkSL::ModuleLoader::loadFragmentModule\28SkSL::Compiler*\29 +5126:SkSL::ModuleLoader::Get\28\29 +5127:SkSL::MatrixType::bitWidth\28\29\20const +5128:SkSL::MakeRasterPipelineProgram\28SkSL::Program\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSL::DebugTracePriv*\2c\20bool\29 +5129:SkSL::Layout::description\28\29\20const +5130:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_length\28std::__2::array\20const&\29 +5131:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_add\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +5132:SkSL::InterfaceBlock::~InterfaceBlock\28\29 +5133:SkSL::Inliner::candidateCanBeInlined\28SkSL::InlineCandidate\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20skia_private::THashMap*\29 +5134:SkSL::IfStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +5135:SkSL::GLSLCodeGenerator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\2c\20bool\29 +5136:SkSL::GLSLCodeGenerator::writeProgramElement\28SkSL::ProgramElement\20const&\29 +5137:SkSL::GLSLCodeGenerator::writeMinAbsHack\28SkSL::Expression&\2c\20SkSL::Expression&\29 +5138:SkSL::GLSLCodeGenerator::generateCode\28\29 +5139:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::visitStatementPtr\28std::__2::unique_ptr>&\29 +5140:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::addLocalVariable\28SkSL::Variable\20const*\2c\20SkSL::Position\29 +5141:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29_6591 +5142:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29 +5143:SkSL::FunctionDeclaration::mangledName\28\29\20const +5144:SkSL::FunctionDeclaration::determineFinalTypes\28SkSL::ExpressionArray\20const&\2c\20skia_private::STArray<8\2c\20SkSL::Type\20const*\2c\20true>*\2c\20SkSL::Type\20const**\29\20const +5145:SkSL::FunctionDeclaration::FunctionDeclaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20SkSL::Type\20const*\2c\20SkSL::IntrinsicKind\29 +5146:SkSL::FunctionDebugInfo*\20std::__2::vector>::__push_back_slow_path\28SkSL::FunctionDebugInfo&&\29 +5147:SkSL::FunctionCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +5148:SkSL::FunctionCall::FindBestFunctionForCall\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const*\2c\20SkSL::ExpressionArray\20const&\29 +5149:SkSL::FunctionCall::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +5150:SkSL::ForStatement::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +5151:SkSL::FindIntrinsicKind\28std::__2::basic_string_view>\29 +5152:SkSL::FieldAccess::~FieldAccess\28\29_6478 +5153:SkSL::FieldAccess::~FieldAccess\28\29 +5154:SkSL::ExtendedVariable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +5155:SkSL::ExpressionStatement::Convert\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +5156:SkSL::DoStatement::~DoStatement\28\29_6461 +5157:SkSL::DoStatement::~DoStatement\28\29 +5158:SkSL::DebugTracePriv::setSource\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +5159:SkSL::ConstructorScalarCast::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +5160:SkSL::ConstructorMatrixResize::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +5161:SkSL::Constructor::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +5162:SkSL::ConstantFolder::Simplify\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +5163:SkSL::Compiler::writeErrorCount\28\29 +5164:SkSL::Compiler::initializeContext\28SkSL::Module\20const*\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\2c\20std::__2::basic_string_view>\2c\20SkSL::ModuleType\29 +5165:SkSL::Compiler::cleanupContext\28\29 +5166:SkSL::ChildCall::~ChildCall\28\29_6396 +5167:SkSL::ChildCall::~ChildCall\28\29 +5168:SkSL::ChildCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Variable\20const&\2c\20SkSL::ExpressionArray\29 +5169:SkSL::BinaryExpression::isAssignmentIntoVariable\28\29 +5170:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\2c\20SkSL::Type\20const*\29 +5171:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29 +5172:SkSL::Analysis::IsConstantExpression\28SkSL::Expression\20const&\29 +5173:SkSL::Analysis::IsAssignable\28SkSL::Expression&\2c\20SkSL::Analysis::AssignmentInfo*\2c\20SkSL::ErrorReporter*\29 +5174:SkSL::Analysis::GetLoopUnrollInfo\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\20const&\2c\20SkSL::Statement\20const*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Expression\20const*\2c\20SkSL::Statement\20const*\2c\20SkSL::ErrorReporter*\29 +5175:SkSL::Analysis::GetLoopControlFlowInfo\28SkSL::Statement\20const&\29 +5176:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +5177:SkSL::AliasType::numberKind\28\29\20const +5178:SkSL::AliasType::isOrContainsBool\28\29\20const +5179:SkSL::AliasType::isOrContainsAtomic\28\29\20const +5180:SkSL::AliasType::isAllowedInES2\28\29\20const +5181:SkRuntimeShader::~SkRuntimeShader\28\29 +5182:SkRuntimeEffectPriv::WriteChildEffects\28SkWriteBuffer&\2c\20SkSpan\29 +5183:SkRuntimeEffectPriv::TransformUniforms\28SkSpan\2c\20sk_sp\2c\20SkColorSpaceXformSteps\20const&\29 +5184:SkRuntimeEffect::~SkRuntimeEffect\28\29 +5185:SkRuntimeEffect::makeShader\28sk_sp\2c\20sk_sp*\2c\20unsigned\20long\2c\20SkMatrix\20const*\29\20const +5186:SkRuntimeEffect::makeColorFilter\28sk_sp\2c\20SkSpan\29\20const +5187:SkRuntimeEffect::TracedShader*\20emscripten::internal::raw_constructor\28\29 +5188:SkRuntimeEffect::MakeInternal\28std::__2::unique_ptr>\2c\20SkRuntimeEffect::Options\20const&\2c\20SkSL::ProgramKind\29 +5189:SkRuntimeEffect::ChildPtr&\20skia_private::TArray::emplace_back&>\28sk_sp&\29 +5190:SkRuntimeBlender::flatten\28SkWriteBuffer&\29\20const +5191:SkRgnBuilder::~SkRgnBuilder\28\29 +5192:SkResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +5193:SkResourceCache::setTotalByteLimit\28unsigned\20long\29 +5194:SkResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +5195:SkResourceCache::newCachedData\28unsigned\20long\29 +5196:SkResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +5197:SkResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +5198:SkResourceCache::dump\28\29\20const +5199:SkResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +5200:SkResourceCache::PostPurgeSharedID\28unsigned\20long\20long\29 +5201:SkResourceCache::GetDiscardableFactory\28\29 +5202:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::rowBytes\28int\29\20const +5203:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +5204:SkRegion::addBoundaryPath\28SkPathBuilder*\29\20const +5205:SkRegion::Spanerator::Spanerator\28SkRegion\20const&\2c\20int\2c\20int\2c\20int\29 +5206:SkRegion::Oper\28SkRegion\20const&\2c\20SkRegion\20const&\2c\20SkRegion::Op\2c\20SkRegion*\29 +5207:SkRefCntSet::~SkRefCntSet\28\29 +5208:SkRefCntBase::internal_dispose\28\29\20const +5209:SkReduceOrder::reduce\28SkDQuad\20const&\29 +5210:SkReduceOrder::Conic\28SkConic\20const&\2c\20SkPoint*\29 +5211:SkRectClipBlitter::requestRowsPreserved\28\29\20const +5212:SkRectClipBlitter::allocBlitMemory\28unsigned\20long\29 +5213:SkRect::roundOut\28\29\20const +5214:SkRect::intersect\28SkRect\20const&\2c\20SkRect\20const&\29 +5215:SkRecords::TypedMatrix::TypedMatrix\28SkMatrix\20const&\29 +5216:SkRecordOptimize\28SkRecord*\29 +5217:SkRecordFillBounds\28SkRect\20const&\2c\20SkRecord\20const&\2c\20SkRect*\2c\20SkBBoxHierarchy::Metadata*\29 +5218:SkRecordCanvas::baseRecorder\28\29\20const +5219:SkRecord::bytesUsed\28\29\20const +5220:SkReadPixelsRec::trim\28int\2c\20int\29 +5221:SkReadBuffer::setDeserialProcs\28SkDeserialProcs\20const&\29 +5222:SkReadBuffer::readString\28unsigned\20long*\29 +5223:SkReadBuffer::readRegion\28SkRegion*\29 +5224:SkReadBuffer::readRect\28\29 +5225:SkReadBuffer::readPoint3\28SkPoint3*\29 +5226:SkReadBuffer::readPad32\28void*\2c\20unsigned\20long\29 +5227:SkReadBuffer::readArray\28void*\2c\20unsigned\20long\2c\20unsigned\20long\29 +5228:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29 +5229:SkRasterPipeline::tailPointer\28\29 +5230:SkRasterPipeline::appendSetRGB\28SkArenaAlloc*\2c\20float\20const*\29 +5231:SkRasterPipeline::addMemoryContext\28SkRasterPipelineContexts::MemoryCtx*\2c\20int\2c\20bool\2c\20bool\29 +5232:SkRTreeFactory::operator\28\29\28\29\20const +5233:SkRTree::search\28SkRTree::Node*\2c\20SkRect\20const&\2c\20std::__2::vector>*\29\20const +5234:SkRTree::bulkLoad\28std::__2::vector>*\2c\20int\29 +5235:SkRTree::allocateNodeAtLevel\28unsigned\20short\29 +5236:SkRRectPriv::AllCornersCircular\28SkRRect\20const&\2c\20float\29 +5237:SkRRect::scaleRadii\28\29 +5238:SkRRect::isValid\28\29\20const +5239:SkRRect::computeType\28\29 +5240:SkRRect::AreRectAndRadiiValid\28SkRect\20const&\2c\20SkPoint\20const*\29 +5241:SkRGBA4f<\28SkAlphaType\292>\20skgpu::Swizzle::applyTo<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\29\20const +5242:SkRBuffer::skipToAlign4\28\29 +5243:SkQuads::EvalAt\28double\2c\20double\2c\20double\2c\20double\29 +5244:SkQuadraticEdge::nextSegment\28\29 +5245:SkPtrSet::reset\28\29 +5246:SkPtrSet::copyToArray\28void**\29\20const +5247:SkPtrSet::add\28void*\29 +5248:SkPoint::Normalize\28SkPoint*\29 +5249:SkPngEncoder::Encode\28GrDirectContext*\2c\20SkImage\20const*\2c\20SkPngEncoder::Options\20const&\29 +5250:SkPngDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +5251:SkPngCodecBase::initializeXformParams\28\29 +5252:SkPngCodecBase::initializeSwizzler\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20bool\2c\20int\29 +5253:SkPngCodecBase::SkPngCodecBase\28SkEncodedInfo&&\2c\20std::__2::unique_ptr>\2c\20SkEncodedOrigin\29 +5254:SkPngCodec::initializeXforms\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +5255:SkPixmapUtils::Orient\28SkPixmap\20const&\2c\20SkPixmap\20const&\2c\20SkEncodedOrigin\29 +5256:SkPixmap::erase\28unsigned\20int\2c\20SkIRect\20const&\29\20const +5257:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const +5258:SkPixelRef::getGenerationID\28\29\20const +5259:SkPixelRef::addGenIDChangeListener\28sk_sp\29 +5260:SkPixelRef::SkPixelRef\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +5261:SkPictureShader::CachedImageInfo::makeImage\28sk_sp\2c\20SkPicture\20const*\29\20const +5262:SkPictureShader::CachedImageInfo::Make\28SkRect\20const&\2c\20SkMatrix\20const&\2c\20SkColorType\2c\20SkColorSpace*\2c\20int\2c\20SkSurfaceProps\20const&\29 +5263:SkPictureRecord::endRecording\28\29 +5264:SkPictureRecord::beginRecording\28\29 +5265:SkPicturePriv::Flatten\28sk_sp\2c\20SkWriteBuffer&\29 +5266:SkPicturePlayback::draw\28SkCanvas*\2c\20SkPicture::AbortCallback*\2c\20SkReadBuffer*\29 +5267:SkPictureData::parseBufferTag\28SkReadBuffer&\2c\20unsigned\20int\2c\20unsigned\20int\29 +5268:SkPictureData::getPicture\28SkReadBuffer*\29\20const +5269:SkPictureData::getDrawable\28SkReadBuffer*\29\20const +5270:SkPictureData::flatten\28SkWriteBuffer&\29\20const +5271:SkPictureData::flattenToBuffer\28SkWriteBuffer&\2c\20bool\29\20const +5272:SkPictureData::SkPictureData\28SkPictureRecord\20const&\2c\20SkPictInfo\20const&\29 +5273:SkPicture::backport\28\29\20const +5274:SkPicture::SkPicture\28\29 +5275:SkPicture::MakeFromStreamPriv\28SkStream*\2c\20SkDeserialProcs\20const*\2c\20SkTypefacePlayback*\2c\20int\29 +5276:SkPerlinNoiseShader::type\28\29\20const +5277:SkPerlinNoiseShader::getPaintingData\28\29\20const +5278:SkPathWriter::assemble\28\29 +5279:SkPathWriter::SkPathWriter\28SkPathFillType\29 +5280:SkPathRef::reset\28\29 +5281:SkPathRef::resetToSize\28int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +5282:SkPathRef::SkPathRef\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20unsigned\20int\2c\20SkMatrix\20const*\29 +5283:SkPathRaw::isRect\28\29\20const +5284:SkPathPriv::PerspectiveClip\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath*\29 +5285:SkPathPriv::IsNestedFillRects\28SkPathRaw\20const&\2c\20SkRect*\2c\20SkPathDirection*\29 +5286:SkPathPriv::DeduceRRectFromContour\28SkRect\20const&\2c\20SkSpan\2c\20SkSpan\29 +5287:SkPathPriv::CreateDrawArcPath\28SkArc\20const&\2c\20bool\29 +5288:SkPathPriv::ComputeFirstDirection\28SkPathRaw\20const&\29 +5289:SkPathEffectBase::PointData::~PointData\28\29 +5290:SkPathEffect::filterPath\28SkPath*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\29\20const +5291:SkPathEdgeIter::SkPathEdgeIter\28SkPath\20const&\29 +5292:SkPathBuilder::setLastPt\28float\2c\20float\29 +5293:SkPathBuilder::rQuadTo\28SkPoint\2c\20SkPoint\29 +5294:SkPathBuilder::privateReverseAddPath\28SkPath\20const&\29 +5295:SkPathBuilder::operator=\28SkPathBuilder\20const&\29 +5296:SkPathBuilder::addPath\28SkPath\20const&\2c\20float\2c\20float\2c\20SkPath::AddPathMode\29 +5297:SkPathBuilder::addOval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +5298:SkPathBuilder::addCircle\28float\2c\20float\2c\20float\2c\20SkPathDirection\29 +5299:SkPath::writeToMemoryAsRRect\28void*\29\20const +5300:SkPath::offset\28float\2c\20float\2c\20SkPath*\29\20const +5301:SkPath::isRRect\28SkRRect*\29\20const +5302:SkPath::isOval\28SkRect*\29\20const +5303:SkPath::conservativelyContainsRect\28SkRect\20const&\29\20const +5304:SkPath::arcTo\28float\2c\20float\2c\20float\2c\20SkPath::ArcSize\2c\20SkPathDirection\2c\20float\2c\20float\29 +5305:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +5306:SkPath::addRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +5307:SkPath::ReadFromMemory\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long*\29 +5308:SkPath::RRect\28SkRRect\20const&\2c\20SkPathDirection\29 +5309:SkParseEncodedOrigin\28void\20const*\2c\20unsigned\20long\2c\20SkEncodedOrigin*\29 +5310:SkPairPathEffect::flatten\28SkWriteBuffer&\29\20const +5311:SkPaintPriv::ShouldDither\28SkPaint\20const&\2c\20SkColorType\29 +5312:SkPaintPriv::Overwrites\28SkPaint\20const*\2c\20SkPaintPriv::ShaderOverrideOpacity\29 +5313:SkPaint::setStroke\28bool\29 +5314:SkPaint::reset\28\29 +5315:SkPaint::refColorFilter\28\29\20const +5316:SkOpSpanBase::merge\28SkOpSpan*\29 +5317:SkOpSpanBase::globalState\28\29\20const +5318:SkOpSpan::sortableTop\28SkOpContour*\29 +5319:SkOpSpan::release\28SkOpPtT\20const*\29 +5320:SkOpSpan::insertCoincidence\28SkOpSegment\20const*\2c\20bool\2c\20bool\29 +5321:SkOpSpan::init\28SkOpSegment*\2c\20SkOpSpan*\2c\20double\2c\20SkPoint\20const&\29 +5322:SkOpSegment::updateWindingReverse\28SkOpAngle\20const*\29 +5323:SkOpSegment::oppXor\28\29\20const +5324:SkOpSegment::moveMultiples\28\29 +5325:SkOpSegment::isXor\28\29\20const +5326:SkOpSegment::computeSum\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpAngle::IncludeType\29 +5327:SkOpSegment::collapsed\28double\2c\20double\29\20const +5328:SkOpSegment::addExpanded\28double\2c\20SkOpSpanBase\20const*\2c\20bool*\29 +5329:SkOpSegment::activeAngle\28SkOpSpanBase*\2c\20SkOpSpanBase**\2c\20SkOpSpanBase**\2c\20bool*\29 +5330:SkOpSegment::UseInnerWinding\28int\2c\20int\29 +5331:SkOpPtT::ptAlreadySeen\28SkOpPtT\20const*\29\20const +5332:SkOpPtT::contains\28SkOpSegment\20const*\2c\20double\29\20const +5333:SkOpGlobalState::SkOpGlobalState\28SkOpContourHead*\2c\20SkArenaAlloc*\29 +5334:SkOpEdgeBuilder::preFetch\28\29 +5335:SkOpEdgeBuilder::init\28\29 +5336:SkOpEdgeBuilder::finish\28\29 +5337:SkOpContourBuilder::addConic\28SkPoint*\2c\20float\29 +5338:SkOpContour::addQuad\28SkPoint*\29 +5339:SkOpContour::addCubic\28SkPoint*\29 +5340:SkOpContour::addConic\28SkPoint*\2c\20float\29 +5341:SkOpCoincidence::release\28SkOpSegment\20const*\29 +5342:SkOpCoincidence::mark\28\29 +5343:SkOpCoincidence::markCollapsed\28SkCoincidentSpans*\2c\20SkOpPtT*\29 +5344:SkOpCoincidence::fixUp\28SkCoincidentSpans*\2c\20SkOpPtT*\2c\20SkOpPtT\20const*\29 +5345:SkOpCoincidence::contains\28SkCoincidentSpans\20const*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\29\20const +5346:SkOpCoincidence::checkOverlap\28SkCoincidentSpans*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20SkTDArray*\29\20const +5347:SkOpCoincidence::addOrOverlap\28SkOpSegment*\2c\20SkOpSegment*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20bool*\29 +5348:SkOpAngle::tangentsDiverge\28SkOpAngle\20const*\2c\20double\29 +5349:SkOpAngle::setSpans\28\29 +5350:SkOpAngle::setSector\28\29 +5351:SkOpAngle::previous\28\29\20const +5352:SkOpAngle::midToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +5353:SkOpAngle::loopCount\28\29\20const +5354:SkOpAngle::loopContains\28SkOpAngle\20const*\29\20const +5355:SkOpAngle::lastMarked\28\29\20const +5356:SkOpAngle::endToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +5357:SkOpAngle::alignmentSameSide\28SkOpAngle\20const*\2c\20int*\29\20const +5358:SkOpAngle::after\28SkOpAngle*\29 +5359:SkOffsetSimplePolygon\28SkPoint\20const*\2c\20int\2c\20SkRect\20const&\2c\20float\2c\20SkTDArray*\2c\20SkTDArray*\29 +5360:SkNoDrawCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +5361:SkNoDrawCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +5362:SkModifyPaintAndDstForDrawImageRect\28SkImage\20const*\2c\20SkSamplingOptions\20const&\2c\20SkRect\2c\20SkRect\2c\20bool\2c\20SkPaint*\29 +5363:SkMipmapBuilder::level\28int\29\20const +5364:SkMessageBus::Inbox::~Inbox\28\29 +5365:SkMeshSpecification::Varying*\20std::__2::vector>::__push_back_slow_path\28SkMeshSpecification::Varying&&\29 +5366:SkMeshSpecification::Attribute*\20std::__2::vector>::__push_back_slow_path\28SkMeshSpecification::Attribute&&\29 +5367:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_2620 +5368:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +5369:SkMeshPriv::CpuBuffer::size\28\29\20const +5370:SkMeshPriv::CpuBuffer::peek\28\29\20const +5371:SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +5372:SkMatrixPriv::MapPointsWithStride\28SkMatrix\20const&\2c\20SkPoint*\2c\20unsigned\20long\2c\20int\29 +5373:SkMatrix::setRotate\28float\2c\20float\2c\20float\29 +5374:SkMatrix::preRotate\28float\29 +5375:SkMatrix::mapPoint\28SkPoint\29\20const +5376:SkMatrix::isFinite\28\29\20const +5377:SkMaskSwizzler::swizzle\28void*\2c\20unsigned\20char\20const*\29 +5378:SkMask::computeTotalImageSize\28\29\20const +5379:SkMakeResourceCacheSharedIDForBitmap\28unsigned\20int\29 +5380:SkMD5::finish\28\29 +5381:SkMD5::SkMD5\28\29 +5382:SkMD5::Digest::toHexString\28\29\20const +5383:SkM44::preScale\28float\2c\20float\29 +5384:SkM44::postTranslate\28float\2c\20float\2c\20float\29 +5385:SkM44::RectToRect\28SkRect\20const&\2c\20SkRect\20const&\29 +5386:SkLinearColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +5387:SkLineParameters::cubicEndPoints\28SkDCubic\20const&\29 +5388:SkLatticeIter::SkLatticeIter\28SkCanvas::Lattice\20const&\2c\20SkRect\20const&\29 +5389:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::~SkLRUCache\28\29 +5390:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::reset\28\29 +5391:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29::$_0::operator\28\29\28int\2c\20SkRuntimeEffect::Options\20const&\29\20const +5392:SkKnownRuntimeEffects::IsSkiaKnownRuntimeEffect\28int\29 +5393:SkJpegMetadataDecoderImpl::SkJpegMetadataDecoderImpl\28std::__2::vector>\29 +5394:SkJpegDecoder::IsJpeg\28void\20const*\2c\20unsigned\20long\29 +5395:SkJpegCodec::readRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20SkCodec::Options\20const&\2c\20int*\29 +5396:SkJpegCodec::initializeSwizzler\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20bool\29 +5397:SkJSONWriter::appendString\28char\20const*\2c\20unsigned\20long\29 +5398:SkIsSimplePolygon\28SkPoint\20const*\2c\20int\29 +5399:SkInvert3x3Matrix\28float\20const*\2c\20float*\29 +5400:SkInvert2x2Matrix\28float\20const*\2c\20float*\29 +5401:SkIntersections::vertical\28SkDQuad\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5402:SkIntersections::vertical\28SkDLine\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5403:SkIntersections::vertical\28SkDCubic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5404:SkIntersections::vertical\28SkDConic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5405:SkIntersections::mostOutside\28double\2c\20double\2c\20SkDPoint\20const&\29\20const +5406:SkIntersections::intersect\28SkDQuad\20const&\2c\20SkDLine\20const&\29 +5407:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDQuad\20const&\29 +5408:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDLine\20const&\29 +5409:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDConic\20const&\29 +5410:SkIntersections::intersect\28SkDConic\20const&\2c\20SkDQuad\20const&\29 +5411:SkIntersections::intersect\28SkDConic\20const&\2c\20SkDLine\20const&\29 +5412:SkIntersections::insertCoincident\28double\2c\20double\2c\20SkDPoint\20const&\29 +5413:SkIntersections::horizontal\28SkDQuad\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5414:SkIntersections::horizontal\28SkDLine\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5415:SkIntersections::horizontal\28SkDCubic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5416:SkIntersections::horizontal\28SkDConic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +5417:SkImages::RasterFromPixmap\28SkPixmap\20const&\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +5418:SkImages::RasterFromData\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\29 +5419:SkImages::DeferredFromGenerator\28std::__2::unique_ptr>\29 +5420:SkImage_Raster::onPeekMips\28\29\20const +5421:SkImage_Lazy::~SkImage_Lazy\28\29_4762 +5422:SkImage_Lazy::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +5423:SkImage_Base::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +5424:SkImage_Base::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +5425:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_1::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +5426:SkImageInfo::validRowBytes\28unsigned\20long\29\20const +5427:SkImageInfo::MakeN32Premul\28int\2c\20int\29 +5428:SkImageGenerator::~SkImageGenerator\28\29_903 +5429:SkImageFilters::ColorFilter\28sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +5430:SkImageFilter_Base::getCTMCapability\28\29\20const +5431:SkImageFilterCache::Get\28SkImageFilterCache::CreateIfNecessary\29 +5432:SkImageFilter::isColorFilterNode\28SkColorFilter**\29\20const +5433:SkImageFilter::computeFastBounds\28SkRect\20const&\29\20const +5434:SkImage::withMipmaps\28sk_sp\29\20const +5435:SkIcuBreakIteratorCache::purgeIfNeeded\28\29 +5436:SkIcoDecoder::IsIco\28void\20const*\2c\20unsigned\20long\29 +5437:SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29 +5438:SkGradientBaseShader::~SkGradientBaseShader\28\29 +5439:SkGradientBaseShader::AppendGradientFillStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const*\2c\20float\20const*\2c\20int\29 +5440:SkGlyph::setImage\28SkArenaAlloc*\2c\20SkScalerContext*\29 +5441:SkGlyph::setDrawable\28SkArenaAlloc*\2c\20SkScalerContext*\29 +5442:SkGlyph::mask\28SkPoint\29\20const +5443:SkGifDecoder::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::SelectionPolicy\2c\20SkCodec::Result*\29 +5444:SkGifDecoder::IsGif\28void\20const*\2c\20unsigned\20long\29 +5445:SkGenerateDistanceFieldFromA8Image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20unsigned\20long\29 +5446:SkGaussFilter::SkGaussFilter\28double\29 +5447:SkFrameHolder::setAlphaAndRequiredFrame\28SkFrame*\29 +5448:SkFrame::fillIn\28SkCodec::FrameInfo*\2c\20bool\29\20const +5449:SkFontStyleSet_Custom::appendTypeface\28sk_sp\29 +5450:SkFontStyleSet_Custom::SkFontStyleSet_Custom\28SkString\29 +5451:SkFontScanner_FreeType::scanInstance\28SkStreamAsset*\2c\20int\2c\20int\2c\20SkString*\2c\20SkFontStyle*\2c\20bool*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\2c\20skia_private::STArray<4\2c\20SkFontArguments::VariationPosition::Coordinate\2c\20true>*\29\20const +5452:SkFontScanner_FreeType::computeAxisValues\28skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>\20const&\2c\20SkFontArguments::VariationPosition\2c\20SkFontArguments::VariationPosition\2c\20int*\2c\20SkString\20const&\2c\20SkFontStyle*\29 +5453:SkFontPriv::GetFontBounds\28SkFont\20const&\29 +5454:SkFontMgr_Custom::onMakeFromStreamArgs\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29\20const +5455:SkFontMgr::matchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +5456:SkFontMgr::makeFromStream\28std::__2::unique_ptr>\2c\20int\29\20const +5457:SkFontMgr::makeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29\20const +5458:SkFontMgr::legacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +5459:SkFontDescriptor::SkFontStyleWidthForWidthAxisValue\28float\29 +5460:SkFontDescriptor::SkFontDescriptor\28\29 +5461:SkFont::setupForAsPaths\28SkPaint*\29 +5462:SkFont::setSkewX\28float\29 +5463:SkFont::setLinearMetrics\28bool\29 +5464:SkFont::setEmbolden\28bool\29 +5465:SkFont::operator==\28SkFont\20const&\29\20const +5466:SkFont::getPaths\28SkSpan\2c\20void\20\28*\29\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29\2c\20void*\29\20const +5467:SkFlattenable::RegisterFlattenablesIfNeeded\28\29 +5468:SkFlattenable::PrivateInitializer::InitEffects\28\29 +5469:SkFlattenable::NameToFactory\28char\20const*\29 +5470:SkFlattenable::FactoryToName\28sk_sp\20\28*\29\28SkReadBuffer&\29\29 +5471:SkFindQuadExtrema\28float\2c\20float\2c\20float\2c\20float*\29 +5472:SkFindCubicExtrema\28float\2c\20float\2c\20float\2c\20float\2c\20float*\29 +5473:SkFactorySet::~SkFactorySet\28\29 +5474:SkEmptyPicture::approximateBytesUsed\28\29\20const +5475:SkEdgeClipper::clipQuad\28SkPoint\20const*\2c\20SkRect\20const&\29 +5476:SkEdgeClipper::ClipPath\28SkPathRaw\20const&\2c\20SkRect\20const&\2c\20bool\2c\20void\20\28*\29\28SkEdgeClipper*\2c\20bool\2c\20void*\29\2c\20void*\29 +5477:SkEdgeBuilder::buildEdges\28SkPathRaw\20const&\2c\20SkIRect\20const*\29 +5478:SkDynamicMemoryWStream::bytesWritten\28\29\20const +5479:SkDrawableList::newDrawableSnapshot\28\29 +5480:SkDrawShadowMetrics::GetSpotShadowTransform\28SkPoint3\20const&\2c\20float\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkRect\20const&\2c\20bool\2c\20SkMatrix*\2c\20float*\29 +5481:SkDrawShadowMetrics::GetLocalBounds\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect*\29 +5482:SkDiscretePathEffectImpl::flatten\28SkWriteBuffer&\29\20const +5483:SkDiscretePathEffect::Make\28float\2c\20float\2c\20unsigned\20int\29 +5484:SkDevice::getRelativeTransform\28SkDevice\20const&\29\20const +5485:SkDevice::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +5486:SkDevice::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +5487:SkDevice::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +5488:SkDevice::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +5489:SkDescriptor::addEntry\28unsigned\20int\2c\20unsigned\20long\2c\20void\20const*\29 +5490:SkDeque::Iter::next\28\29 +5491:SkDeque::Iter::Iter\28SkDeque\20const&\2c\20SkDeque::Iter::IterStart\29 +5492:SkData::shareSubset\28unsigned\20long\2c\20unsigned\20long\29 +5493:SkDashPath::InternalFilter\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkSpan\2c\20float\2c\20int\2c\20float\2c\20float\2c\20SkDashPath::StrokeRecApplication\29 +5494:SkDashPath::CalcDashParameters\28float\2c\20SkSpan\2c\20float*\2c\20unsigned\20long*\2c\20float*\2c\20float*\29 +5495:SkDRect::setBounds\28SkDQuad\20const&\2c\20SkDQuad\20const&\2c\20double\2c\20double\29 +5496:SkDRect::setBounds\28SkDCubic\20const&\2c\20SkDCubic\20const&\2c\20double\2c\20double\29 +5497:SkDRect::setBounds\28SkDConic\20const&\2c\20SkDConic\20const&\2c\20double\2c\20double\29 +5498:SkDQuad::subDivide\28double\2c\20double\29\20const +5499:SkDQuad::monotonicInY\28\29\20const +5500:SkDQuad::isLinear\28int\2c\20int\29\20const +5501:SkDQuad::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +5502:SkDPoint::approximatelyDEqual\28SkDPoint\20const&\29\20const +5503:SkDCurveSweep::setCurveHullSweep\28SkPath::Verb\29 +5504:SkDCurve::nearPoint\28SkPath::Verb\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29\20const +5505:SkDCubic::monotonicInX\28\29\20const +5506:SkDCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +5507:SkDCubic::hullIntersects\28SkDPoint\20const*\2c\20int\2c\20bool*\29\20const +5508:SkDConic::subDivide\28double\2c\20double\29\20const +5509:SkCubics::RootsReal\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +5510:SkCubicEdge::nextSegment\28\29 +5511:SkCubicClipper::ChopMonoAtY\28SkPoint\20const*\2c\20float\2c\20float*\29 +5512:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20SkArenaAlloc*\2c\20sk_sp\29 +5513:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkArenaAlloc*\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +5514:SkCopyStreamToData\28SkStream*\29 +5515:SkContourMeasureIter::~SkContourMeasureIter\28\29 +5516:SkContourMeasureIter::SkContourMeasureIter\28SkPath\20const&\2c\20bool\2c\20float\29 +5517:SkContourMeasure::length\28\29\20const +5518:SkContourMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29\20const +5519:SkComputeRadialSteps\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float*\2c\20float*\2c\20int*\29 +5520:SkCompressedDataSize\28SkTextureCompressionType\2c\20SkISize\2c\20skia_private::TArray*\2c\20bool\29 +5521:SkColorTypeValidateAlphaType\28SkColorType\2c\20SkAlphaType\2c\20SkAlphaType*\29 +5522:SkColorToPMColor4f\28unsigned\20int\2c\20GrColorInfo\20const&\29 +5523:SkColorSpaceLuminance::Fetch\28float\29 +5524:SkColorSpace::toProfile\28skcms_ICCProfile*\29\20const +5525:SkColorSpace::makeLinearGamma\28\29\20const +5526:SkColorSpace::isSRGB\28\29\20const +5527:SkColorSpace::Make\28skcms_ICCProfile\20const&\29 +5528:SkColorMatrix_RGB2YUV\28SkYUVColorSpace\2c\20float*\29 +5529:SkColorInfo::makeColorSpace\28sk_sp\29\20const +5530:SkColorFilterShader::Make\28sk_sp\2c\20float\2c\20sk_sp\29 +5531:SkColor4fXformer::SkColor4fXformer\28SkGradientBaseShader\20const*\2c\20SkColorSpace*\2c\20bool\29 +5532:SkCoincidentSpans::extend\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\29 +5533:SkCodec::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +5534:SkCodec::initializeColorXform\28SkImageInfo\20const&\2c\20SkEncodedInfo::Alpha\2c\20bool\29 +5535:SkChopQuadAtMaxCurvature\28SkPoint\20const*\2c\20SkPoint*\29 +5536:SkChopQuadAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +5537:SkChopMonoCubicAtX\28SkPoint\20const*\2c\20float\2c\20SkPoint*\29 +5538:SkChopCubicAtInflections\28SkPoint\20const*\2c\20SkPoint*\29 +5539:SkCharToGlyphCache::findGlyphIndex\28int\29\20const +5540:SkCanvasPriv::WriteLattice\28void*\2c\20SkCanvas::Lattice\20const&\29 +5541:SkCanvasPriv::ReadLattice\28SkReadBuffer&\2c\20SkCanvas::Lattice*\29 +5542:SkCanvasPriv::GetDstClipAndMatrixCounts\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20int*\2c\20int*\29 +5543:SkCanvas::~SkCanvas\28\29 +5544:SkCanvas::skew\28float\2c\20float\29 +5545:SkCanvas::setMatrix\28SkMatrix\20const&\29 +5546:SkCanvas::only_axis_aligned_saveBehind\28SkRect\20const*\29 +5547:SkCanvas::getDeviceClipBounds\28\29\20const +5548:SkCanvas::experimental_DrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +5549:SkCanvas::drawVertices\28sk_sp\20const&\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +5550:SkCanvas::drawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +5551:SkCanvas::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +5552:SkCanvas::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +5553:SkCanvas::drawImageNine\28SkImage\20const*\2c\20SkIRect\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +5554:SkCanvas::drawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +5555:SkCanvas::didTranslate\28float\2c\20float\29 +5556:SkCanvas::clipShader\28sk_sp\2c\20SkClipOp\29 +5557:SkCanvas::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +5558:SkCanvas::ImageSetEntry::ImageSetEntry\28\29 +5559:SkCachedData::SkCachedData\28void*\2c\20unsigned\20long\29 +5560:SkCachedData::SkCachedData\28unsigned\20long\2c\20SkDiscardableMemory*\29 +5561:SkCTMShader::~SkCTMShader\28\29_4940 +5562:SkCTMShader::~SkCTMShader\28\29 +5563:SkCTMShader::isOpaque\28\29\20const +5564:SkBulkGlyphMetricsAndPaths::glyphs\28SkSpan\29 +5565:SkBmpStandardCodec::decodeIcoMask\28SkStream*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\29 +5566:SkBmpMaskCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +5567:SkBmpDecoder::IsBmp\28void\20const*\2c\20unsigned\20long\29 +5568:SkBmpCodec::SkBmpCodec\28SkEncodedInfo&&\2c\20std::__2::unique_ptr>\2c\20unsigned\20short\2c\20SkCodec::SkScanlineOrder\29 +5569:SkBmpBaseCodec::SkBmpBaseCodec\28SkEncodedInfo&&\2c\20std::__2::unique_ptr>\2c\20unsigned\20short\2c\20SkCodec::SkScanlineOrder\29 +5570:SkBlurMask::ConvertRadiusToSigma\28float\29 +5571:SkBlurMask::ComputeBlurredScanline\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20unsigned\20int\2c\20float\29 +5572:SkBlurMask::BlurRect\28float\2c\20SkMaskBuilder*\2c\20SkRect\20const&\2c\20SkBlurStyle\2c\20SkIPoint*\2c\20SkMaskBuilder::CreateMode\29 +5573:SkBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +5574:SkBlitter::Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +5575:SkBlitter::ChooseSprite\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkArenaAlloc*\2c\20sk_sp\29 +5576:SkBlenderBase::asBlendMode\28\29\20const +5577:SkBlenderBase::affectsTransparentBlack\28\29\20const +5578:SkBitmapImageGetPixelRef\28SkImage\20const*\29 +5579:SkBitmapDevice::getRasterHandle\28\29\20const +5580:SkBitmapDevice::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +5581:SkBitmapDevice::BDDraw::~BDDraw\28\29 +5582:SkBitmapCache::Rec::install\28SkBitmap*\29 +5583:SkBitmapCache::Rec::diagnostic_only_getDiscardable\28\29\20const +5584:SkBitmapCache::Find\28SkBitmapCacheDesc\20const&\2c\20SkBitmap*\29 +5585:SkBitmapCache::Alloc\28SkBitmapCacheDesc\20const&\2c\20SkImageInfo\20const&\2c\20SkPixmap*\29 +5586:SkBitmapCache::Add\28std::__2::unique_ptr\2c\20SkBitmap*\29 +5587:SkBitmap::setAlphaType\28SkAlphaType\29 +5588:SkBitmap::reset\28\29 +5589:SkBitmap::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\29\20const +5590:SkBitmap::eraseColor\28unsigned\20int\29\20const +5591:SkBitmap::allocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29::$_0::operator\28\29\28\29\20const +5592:SkBitmap::HeapAllocator::allocPixelRef\28SkBitmap*\29 +5593:SkBinaryWriteBuffer::writeFlattenable\28SkFlattenable\20const*\29 +5594:SkBinaryWriteBuffer::writeColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +5595:SkBigPicture::SkBigPicture\28SkRect\20const&\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20sk_sp\2c\20unsigned\20long\29 +5596:SkBezierQuad::IntersectWithHorizontalLine\28SkSpan\2c\20float\2c\20float*\29 +5597:SkBezierCubic::IntersectWithHorizontalLine\28SkSpan\2c\20float\2c\20float*\29 +5598:SkBasicEdgeBuilder::~SkBasicEdgeBuilder\28\29 +5599:SkBasicEdgeBuilder::recoverClip\28SkIRect\20const&\29\20const +5600:SkBaseShadowTessellator::handleCubic\28SkMatrix\20const&\2c\20SkPoint*\29 +5601:SkBaseShadowTessellator::handleConic\28SkMatrix\20const&\2c\20SkPoint*\2c\20float\29 +5602:SkBaseShadowTessellator::finishPathPolygon\28\29 +5603:SkBaseShadowTessellator::computeConvexShadow\28float\2c\20float\2c\20bool\29 +5604:SkBaseShadowTessellator::computeConcaveShadow\28float\2c\20float\29 +5605:SkBaseShadowTessellator::clipUmbraPoint\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint*\29 +5606:SkBaseShadowTessellator::addInnerPoint\28SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20int*\29 +5607:SkBaseShadowTessellator::addEdge\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20bool\2c\20bool\29 +5608:SkBaseShadowTessellator::addArc\28SkPoint\20const&\2c\20float\2c\20bool\29 +5609:SkAutoCanvasMatrixPaint::~SkAutoCanvasMatrixPaint\28\29 +5610:SkAutoCanvasMatrixPaint::SkAutoCanvasMatrixPaint\28SkCanvas*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\2c\20SkRect\20const&\29 +5611:SkAndroidCodecAdapter::~SkAndroidCodecAdapter\28\29 +5612:SkAndroidCodec::~SkAndroidCodec\28\29 +5613:SkAndroidCodec::getAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const*\29 +5614:SkAndroidCodec::SkAndroidCodec\28SkCodec*\29 +5615:SkAnalyticEdge::update\28int\29 +5616:SkAnalyticEdge::updateLine\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +5617:SkAnalyticEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\29 +5618:SkAAClip::operator=\28SkAAClip\20const&\29 +5619:SkAAClip::op\28SkIRect\20const&\2c\20SkClipOp\29 +5620:SkAAClip::Builder::flushRow\28bool\29 +5621:SkAAClip::Builder::finish\28SkAAClip*\29 +5622:SkAAClip::Builder::Blitter::~Blitter\28\29 +5623:SkAAClip::Builder::Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +5624:Sk2DPathEffect::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +5625:Simplify\28SkPath\20const&\29 +5626:SimpleImageInfo*\20emscripten::internal::raw_constructor\28\29 +5627:SimpleFontStyle*\20emscripten::internal::MemberAccess::getWire\28SimpleFontStyle\20SimpleStrutStyle::*\20const&\2c\20SimpleStrutStyle&\29 +5628:Shift +5629:SharedGenerator::isTextureGenerator\28\29 +5630:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29_4163 +5631:RgnOper::addSpan\28int\2c\20int\20const*\2c\20int\20const*\29 +5632:ReadBase128 +5633:PorterDuffXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +5634:PathSegment::init\28\29 +5635:PathAddVerbsPointsWeights\28SkPath&\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +5636:ParseSingleImage +5637:ParseHeadersInternal +5638:PS_Conv_ASCIIHexDecode +5639:Op\28SkPath\20const&\2c\20SkPath\20const&\2c\20SkPathOp\29 +5640:OpAsWinding::markReverse\28Contour*\2c\20Contour*\29 +5641:OpAsWinding::getDirection\28Contour&\29 +5642:OpAsWinding::checkContainerChildren\28Contour*\2c\20Contour*\29 +5643:OffsetEdge::computeCrossingDistance\28OffsetEdge\20const*\29 +5644:OT::sbix::accelerator_t::get_png_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +5645:OT::sbix::accelerator_t::choose_strike\28hb_font_t*\29\20const +5646:OT::post_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5647:OT::hmtxvmtx::accelerator_t::get_advance_with_var_unscaled\28unsigned\20int\2c\20hb_font_t*\2c\20float*\29\20const +5648:OT::hmtx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5649:OT::hb_ot_layout_lookup_accelerator_t*\20OT::hb_ot_layout_lookup_accelerator_t::create\28OT::Layout::GPOS_impl::PosLookup\20const&\29 +5650:OT::hb_ot_apply_context_t::replace_glyph\28unsigned\20int\29 +5651:OT::hb_kern_machine_t::kern\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20bool\29\20const +5652:OT::hb_accelerate_subtables_context_t::return_t\20OT::Context::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +5653:OT::hb_accelerate_subtables_context_t::return_t\20OT::ChainContext::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +5654:OT::glyf_accelerator_t::get_extents_at\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20hb_array_t\29\20const +5655:OT::glyf_accelerator_t::get_advance_with_var_unscaled\28hb_font_t*\2c\20unsigned\20int\2c\20bool\29\20const +5656:OT::cmap::accelerator_t::get_variation_glyph\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_cache_t<21u\2c\2016u\2c\208u\2c\20true>*\29\20const +5657:OT::cff2_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5658:OT::cff2::accelerator_templ_t>::~accelerator_templ_t\28\29 +5659:OT::cff1::lookup_expert_subset_charset_for_sid\28unsigned\20int\29 +5660:OT::cff1::lookup_expert_charset_for_sid\28unsigned\20int\29 +5661:OT::cff1::accelerator_templ_t>::~accelerator_templ_t\28\29 +5662:OT::TupleVariationData>::decompile_points\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\29 +5663:OT::SBIXStrike::get_glyph_blob\28unsigned\20int\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20unsigned\20int\2c\20unsigned\20int*\29\20const +5664:OT::RuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +5665:OT::RecordListOf::sanitize\28hb_sanitize_context_t*\29\20const +5666:OT::RecordListOf::sanitize\28hb_sanitize_context_t*\29\20const +5667:OT::PaintTranslate::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5668:OT::PaintSkewAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5669:OT::PaintSkew::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5670:OT::PaintScaleUniformAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5671:OT::PaintScaleUniform::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5672:OT::PaintScaleAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5673:OT::PaintScale::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5674:OT::PaintRotateAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5675:OT::PaintLinearGradient::sanitize\28hb_sanitize_context_t*\29\20const +5676:OT::PaintLinearGradient::sanitize\28hb_sanitize_context_t*\29\20const +5677:OT::OpenTypeFontFile::get_face\28unsigned\20int\2c\20unsigned\20int*\29\20const +5678:OT::Lookup::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +5679:OT::Layout::propagate_attachment_offsets\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +5680:OT::Layout::GSUB_impl::MultipleSubstFormat1_2::sanitize\28hb_sanitize_context_t*\29\20const +5681:OT::Layout::GSUB_impl::LigatureSet::apply\28OT::hb_ot_apply_context_t*\29\20const +5682:OT::Layout::GSUB_impl::Ligature::apply\28OT::hb_ot_apply_context_t*\29\20const +5683:OT::Layout::GSUB::get_lookup\28unsigned\20int\29\20const +5684:OT::Layout::GPOS_impl::reverse_cursive_minor_offset\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +5685:OT::Layout::GPOS_impl::PairPosFormat2_4::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5686:OT::Layout::GPOS_impl::PairPosFormat1_3::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5687:OT::Layout::GPOS_impl::MarkRecord::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +5688:OT::Layout::GPOS_impl::MarkBasePosFormat1_2::sanitize\28hb_sanitize_context_t*\29\20const +5689:OT::Layout::GPOS_impl::AnchorMatrix::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +5690:OT::IndexSubtableRecord::get_image_data\28unsigned\20int\2c\20void\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +5691:OT::GSUBGPOS::accelerator_t::get_accel\28unsigned\20int\29\20const +5692:OT::FeatureVariations::sanitize\28hb_sanitize_context_t*\29\20const +5693:OT::FeatureParams::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +5694:OT::Feature::sanitize\28hb_sanitize_context_t*\2c\20OT::Record_sanitize_closure_t\20const*\29\20const +5695:OT::ContextFormat3::sanitize\28hb_sanitize_context_t*\29\20const +5696:OT::ContextFormat2_5::sanitize\28hb_sanitize_context_t*\29\20const +5697:OT::ContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5698:OT::ContextFormat1_4::sanitize\28hb_sanitize_context_t*\29\20const +5699:OT::ConditionAnd::sanitize\28hb_sanitize_context_t*\29\20const +5700:OT::ColorLine::static_get_extend\28hb_color_line_t*\2c\20void*\2c\20void*\29 +5701:OT::CmapSubtableFormat4::accelerator_t::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +5702:OT::ClassDef::get_class\28unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +5703:OT::ChainRuleSet::sanitize\28hb_sanitize_context_t*\29\20const +5704:OT::ChainRuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +5705:OT::ChainContextFormat3::sanitize\28hb_sanitize_context_t*\29\20const +5706:OT::ChainContextFormat2_5::sanitize\28hb_sanitize_context_t*\29\20const +5707:OT::ChainContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5708:OT::ChainContextFormat1_4::sanitize\28hb_sanitize_context_t*\29\20const +5709:OT::COLR_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5710:OT::COLR::accelerator_t::~accelerator_t\28\29 +5711:OT::CBDT_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5712:OT::CBDT::accelerator_t::get_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +5713:OT::Affine2x3::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5714:MakeOnScreenGLSurface\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int\29 +5715:Load_SBit_Png +5716:LineCubicIntersections::intersectRay\28double*\29 +5717:LineCubicIntersections::VerticalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +5718:LineCubicIntersections::HorizontalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +5719:Launch +5720:JpegDecoderMgr::returnFailure\28char\20const*\2c\20SkCodec::Result\29 +5721:JpegDecoderMgr::getEncodedColor\28SkEncodedInfo::Color*\29 +5722:JSObjectFromLineMetrics\28skia::textlayout::LineMetrics&\29 +5723:JSObjectFromGlyphInfo\28skia::textlayout::Paragraph::GlyphInfo&\29 +5724:Ins_DELTAP +5725:HandleCoincidence\28SkOpContourHead*\2c\20SkOpCoincidence*\29 +5726:GrWritePixelsTask::~GrWritePixelsTask\28\29 +5727:GrWaitRenderTask::~GrWaitRenderTask\28\29 +5728:GrVertexBufferAllocPool::makeSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +5729:GrVertexBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +5730:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20SkPathFillType\2c\20skgpu::VertexWriter\29\20const +5731:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20GrEagerVertexAllocator*\29\20const +5732:GrTriangulator::mergeEdgesBelow\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +5733:GrTriangulator::mergeEdgesAbove\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +5734:GrTriangulator::makeSortedVertex\28SkPoint\20const&\2c\20unsigned\20char\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29\20const +5735:GrTriangulator::makeEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\29 +5736:GrTriangulator::computeBisector\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\29\20const +5737:GrTriangulator::appendQuadraticToContour\28SkPoint\20const*\2c\20float\2c\20GrTriangulator::VertexList*\29\20const +5738:GrTriangulator::SortMesh\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +5739:GrTriangulator::FindEnclosingEdges\28GrTriangulator::Vertex\20const&\2c\20GrTriangulator::EdgeList\20const&\2c\20GrTriangulator::Edge**\2c\20GrTriangulator::Edge**\29 +5740:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29 +5741:GrThreadSafeCache::findVertsWithData\28skgpu::UniqueKey\20const&\29 +5742:GrThreadSafeCache::addVertsWithData\28skgpu::UniqueKey\20const&\2c\20sk_sp\2c\20bool\20\28*\29\28SkData*\2c\20SkData*\29\29 +5743:GrThreadSafeCache::Entry::set\28skgpu::UniqueKey\20const&\2c\20sk_sp\29 +5744:GrThreadSafeCache::CreateLazyView\28GrDirectContext*\2c\20GrColorType\2c\20SkISize\2c\20GrSurfaceOrigin\2c\20SkBackingFit\29 +5745:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29 +5746:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29 +5747:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28GrCaps\20const&\2c\20std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\2c\20std::__2::basic_string_view>\29 +5748:GrTextureProxyPriv::setDeferredUploader\28std::__2::unique_ptr>\29 +5749:GrTextureProxy::setUniqueKey\28GrProxyProvider*\2c\20skgpu::UniqueKey\20const&\29 +5750:GrTextureProxy::ProxiesAreCompatibleAsDynamicState\28GrSurfaceProxy\20const*\2c\20GrSurfaceProxy\20const*\29 +5751:GrTextureProxy::GrTextureProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29_9988 +5752:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::$_1::operator\28\29\28int\2c\20GrSamplerState::WrapMode\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20float\29\20const +5753:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_2::operator\28\29\28GrTextureEffect::ShaderMode\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +5754:GrTexture::markMipmapsDirty\28\29 +5755:GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +5756:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29 +5757:GrSurfaceProxyPriv::exactify\28\29 +5758:GrSurfaceProxy::GrSurfaceProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +5759:GrStyledShape::setInheritedKey\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +5760:GrStyledShape::asRRect\28SkRRect*\2c\20bool*\29\20const +5761:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20SkPaint\20const&\2c\20GrStyledShape::DoSimplify\29 +5762:GrStyle::~GrStyle\28\29 +5763:GrStyle::applyToPath\28SkPath*\2c\20SkStrokeRec::InitStyle*\2c\20SkPath\20const&\2c\20float\29\20const +5764:GrStyle::applyPathEffect\28SkPath*\2c\20SkStrokeRec*\2c\20SkPath\20const&\29\20const +5765:GrStencilSettings::SetClipBitSettings\28bool\29 +5766:GrStagingBufferManager::detachBuffers\28\29 +5767:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineStruct\28char\20const*\29 +5768:GrShape::simplify\28unsigned\20int\29 +5769:GrShape::setRect\28SkRect\20const&\29 +5770:GrShape::conservativeContains\28SkRect\20const&\29\20const +5771:GrShape::closed\28\29\20const +5772:GrSWMaskHelper::toTextureView\28GrRecordingContext*\2c\20SkBackingFit\29 +5773:GrSWMaskHelper::drawShape\28GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +5774:GrSWMaskHelper::drawShape\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +5775:GrResourceProvider::writePixels\28sk_sp\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\29\20const +5776:GrResourceProvider::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +5777:GrResourceProvider::prepareLevels\28GrBackendFormat\20const&\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\2c\20skia_private::AutoSTArray<14\2c\20GrMipLevel>*\2c\20skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>*\29\20const +5778:GrResourceProvider::getExactScratch\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5779:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5780:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20GrColorType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMipLevel\20const*\2c\20std::__2::basic_string_view>\29 +5781:GrResourceProvider::createApproxTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5782:GrResourceCache::~GrResourceCache\28\29 +5783:GrResourceCache::removeResource\28GrGpuResource*\29 +5784:GrResourceCache::processFreedGpuResources\28\29 +5785:GrResourceCache::insertResource\28GrGpuResource*\29 +5786:GrResourceCache::didChangeBudgetStatus\28GrGpuResource*\29 +5787:GrResourceAllocator::~GrResourceAllocator\28\29 +5788:GrResourceAllocator::planAssignment\28\29 +5789:GrResourceAllocator::expire\28unsigned\20int\29 +5790:GrRenderTask::makeSkippable\28\29 +5791:GrRenderTask::isInstantiated\28\29\20const +5792:GrRenderTarget::GrRenderTarget\28GrGpu*\2c\20SkISize\20const&\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20sk_sp\29 +5793:GrRecordingContext::init\28\29 +5794:GrRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRRect\20const&\2c\20GrShaderCaps\20const&\29 +5795:GrQuadUtils::TessellationHelper::reset\28GrQuad\20const&\2c\20GrQuad\20const*\29 +5796:GrQuadUtils::TessellationHelper::outset\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuad*\2c\20GrQuad*\29 +5797:GrQuadUtils::TessellationHelper::adjustDegenerateVertices\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuadUtils::TessellationHelper::Vertices*\29 +5798:GrQuadUtils::TessellationHelper::OutsetRequest::reset\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\2c\20GrQuad::Type\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5799:GrQuadUtils::TessellationHelper::EdgeVectors::reset\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20GrQuad::Type\29 +5800:GrQuadUtils::ClipToW0\28DrawQuad*\2c\20DrawQuad*\29 +5801:GrQuad::bounds\28\29\20const +5802:GrProxyProvider::~GrProxyProvider\28\29 +5803:GrProxyProvider::wrapBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\2c\20GrIOType\2c\20sk_sp\29 +5804:GrProxyProvider::removeUniqueKeyFromProxy\28GrTextureProxy*\29 +5805:GrProxyProvider::createLazyProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20GrInternalSurfaceFlags\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +5806:GrProxyProvider::contextID\28\29\20const +5807:GrProxyProvider::adoptUniqueKeyFromSurface\28GrTextureProxy*\2c\20GrSurface\20const*\29 +5808:GrPixmapBase::clip\28SkISize\2c\20SkIPoint*\29 +5809:GrPixmap::GrPixmap\28GrImageInfo\2c\20sk_sp\2c\20unsigned\20long\29 +5810:GrPipeline::GrPipeline\28GrPipeline::InitArgs\20const&\2c\20sk_sp\2c\20GrAppliedHardClip\20const&\29 +5811:GrPersistentCacheUtils::GetType\28SkReadBuffer*\29 +5812:GrPathUtils::QuadUVMatrix::set\28SkPoint\20const*\29 +5813:GrPathTessellationShader::MakeStencilOnlyPipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedHardClip\20const&\2c\20GrPipeline::InputFlags\29 +5814:GrPaint::setCoverageSetOpXPFactory\28SkRegion::Op\2c\20bool\29 +5815:GrOvalOpFactory::MakeOvalOp\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\2c\20GrShaderCaps\20const*\29 +5816:GrOpsRenderPass::drawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +5817:GrOpsRenderPass::drawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +5818:GrOpsRenderPass::drawIndexPattern\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +5819:GrOpFlushState::reset\28\29 +5820:GrOpFlushState::executeDrawsAndUploadsForMeshDrawOp\28GrOp\20const*\2c\20SkRect\20const&\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +5821:GrOpFlushState::addASAPUpload\28std::__2::function&\29>&&\29 +5822:GrOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +5823:GrOp::combineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +5824:GrOnFlushResourceProvider::instantiateProxy\28GrSurfaceProxy*\29 +5825:GrMeshDrawTarget::allocMesh\28\29 +5826:GrMeshDrawOp::PatternHelper::init\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +5827:GrMeshDrawOp::CombinedQuadCountWillOverflow\28GrAAType\2c\20bool\2c\20int\29 +5828:GrMemoryPool::allocate\28unsigned\20long\29 +5829:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::changed\28\29 +5830:GrIndexBufferAllocPool::makeSpace\28int\2c\20sk_sp*\2c\20int*\29 +5831:GrIndexBufferAllocPool::makeSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +5832:GrImageInfo::refColorSpace\28\29\20const +5833:GrImageInfo::minRowBytes\28\29\20const +5834:GrImageInfo::makeDimensions\28SkISize\29\20const +5835:GrImageInfo::bpp\28\29\20const +5836:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20int\2c\20int\29 +5837:GrImageContext::abandonContext\28\29 +5838:GrGpuResource::removeUniqueKey\28\29 +5839:GrGpuResource::makeBudgeted\28\29 +5840:GrGpuResource::getResourceName\28\29\20const +5841:GrGpuResource::abandon\28\29 +5842:GrGpuResource::CreateUniqueID\28\29 +5843:GrGpu::~GrGpu\28\29 +5844:GrGpu::regenerateMipMapLevels\28GrTexture*\29 +5845:GrGpu::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5846:GrGpu::createTextureCommon\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +5847:GrGeometryProcessor::AttributeSet::addToKey\28skgpu::KeyBuilder*\29\20const +5848:GrGLVertexArray::invalidateCachedState\28\29 +5849:GrGLTextureParameters::invalidate\28\29 +5850:GrGLTexture::MakeWrapped\28GrGLGpu*\2c\20GrMipmapStatus\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrWrapCacheable\2c\20GrIOType\2c\20std::__2::basic_string_view>\29 +5851:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20skgpu::Budgeted\2c\20GrGLTexture::Desc\20const&\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +5852:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +5853:GrGLSLVaryingHandler::getFragDecls\28SkString*\2c\20SkString*\29\20const +5854:GrGLSLVaryingHandler::addAttribute\28GrShaderVar\20const&\29 +5855:GrGLSLUniformHandler::liftUniformToVertexShader\28GrProcessor\20const&\2c\20SkString\29 +5856:GrGLSLShaderBuilder::finalize\28unsigned\20int\29 +5857:GrGLSLShaderBuilder::emitFunction\28char\20const*\2c\20char\20const*\29 +5858:GrGLSLShaderBuilder::emitFunctionPrototype\28char\20const*\29 +5859:GrGLSLShaderBuilder::appendTextureLookupAndBlend\28char\20const*\2c\20SkBlendMode\2c\20GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +5860:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_1::operator\28\29\28char\20const*\2c\20GrResourceHandle\29\20const +5861:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_0::operator\28\29\28char\20const*\2c\20GrResourceHandle\2c\20skcms_TFType\29\20const +5862:GrGLSLShaderBuilder::addLayoutQualifier\28char\20const*\2c\20GrGLSLShaderBuilder::InterfaceQualifier\29 +5863:GrGLSLShaderBuilder::GrGLSLShaderBuilder\28GrGLSLProgramBuilder*\29 +5864:GrGLSLProgramDataManager::setRuntimeEffectUniforms\28SkSpan\2c\20SkSpan\20const>\2c\20SkSpan\2c\20void\20const*\29\20const +5865:GrGLSLProgramBuilder::~GrGLSLProgramBuilder\28\29 +5866:GrGLSLBlend::SetBlendModeUniformData\28GrGLSLProgramDataManager\20const&\2c\20GrResourceHandle\2c\20SkBlendMode\29 +5867:GrGLSLBlend::BlendExpression\28GrProcessor\20const*\2c\20GrGLSLUniformHandler*\2c\20GrResourceHandle*\2c\20char\20const*\2c\20char\20const*\2c\20SkBlendMode\29 +5868:GrGLRenderTarget::GrGLRenderTarget\28GrGLGpu*\2c\20SkISize\20const&\2c\20GrGLFormat\2c\20int\2c\20GrGLRenderTarget::IDs\20const&\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5869:GrGLProgramDataManager::set4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +5870:GrGLProgramDataManager::set2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +5871:GrGLProgramBuilder::uniformHandler\28\29 +5872:GrGLProgramBuilder::PrecompileProgram\28GrDirectContext*\2c\20GrGLPrecompiledProgram*\2c\20SkData\20const&\29::$_0::operator\28\29\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29\20const +5873:GrGLProgramBuilder::CreateProgram\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrGLPrecompiledProgram\20const*\29 +5874:GrGLProgram::~GrGLProgram\28\29 +5875:GrGLMakeAssembledWebGLInterface\28void*\2c\20void\20\28*\20\28*\29\28void*\2c\20char\20const*\29\29\28\29\29 +5876:GrGLGpu::~GrGLGpu\28\29 +5877:GrGLGpu::uploadTexData\28SkISize\2c\20unsigned\20int\2c\20SkIRect\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20long\2c\20GrMipLevel\20const*\2c\20int\29 +5878:GrGLGpu::uploadCompressedTexData\28SkTextureCompressionType\2c\20GrGLFormat\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20unsigned\20int\2c\20void\20const*\2c\20unsigned\20long\29 +5879:GrGLGpu::uploadColorToTex\28GrGLFormat\2c\20SkISize\2c\20unsigned\20int\2c\20std::__2::array\2c\20unsigned\20int\29 +5880:GrGLGpu::readOrTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20int\29 +5881:GrGLGpu::getTimerQueryResult\28unsigned\20int\29 +5882:GrGLGpu::getCompatibleStencilIndex\28GrGLFormat\29 +5883:GrGLGpu::createRenderTargetObjects\28GrGLTexture::Desc\20const&\2c\20int\2c\20GrGLRenderTarget::IDs*\29 +5884:GrGLGpu::createCompressedTexture2D\28SkISize\2c\20SkTextureCompressionType\2c\20GrGLFormat\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrGLTextureParameters::SamplerOverriddenState*\29 +5885:GrGLGpu::bindFramebuffer\28unsigned\20int\2c\20unsigned\20int\29 +5886:GrGLGpu::ProgramCache::reset\28\29 +5887:GrGLGpu::ProgramCache::findOrCreateProgramImpl\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrThreadSafePipelineBuilder::Stats::ProgramCacheResult*\29 +5888:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29 +5889:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\29 +5890:GrGLFormatIsCompressed\28GrGLFormat\29 +5891:GrGLFinishCallbacks::check\28\29 +5892:GrGLContext::~GrGLContext\28\29_12199 +5893:GrGLContext::~GrGLContext\28\29 +5894:GrGLCaps::~GrGLCaps\28\29 +5895:GrGLCaps::getTexSubImageExternalFormatAndType\28GrGLFormat\2c\20GrColorType\2c\20GrColorType\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +5896:GrGLCaps::getTexSubImageDefaultFormatTypeAndColorType\28GrGLFormat\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20GrColorType*\29\20const +5897:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrGLFormat\29\20const +5898:GrGLCaps::formatSupportsTexStorage\28GrGLFormat\29\20const +5899:GrGLCaps::canCopyAsDraw\28GrGLFormat\2c\20bool\2c\20bool\29\20const +5900:GrGLCaps::canCopyAsBlit\28GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20SkRect\20const&\2c\20bool\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29\20const +5901:GrFragmentProcessor::~GrFragmentProcessor\28\29 +5902:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +5903:GrFragmentProcessor::ProgramImpl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +5904:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::Make\28std::__2::unique_ptr>\29 +5905:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +5906:GrFragmentProcessor::ClampOutput\28std::__2::unique_ptr>\29 +5907:GrFixedClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +5908:GrFixedClip::getConservativeBounds\28\29\20const +5909:GrFixedClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +5910:GrExternalTextureGenerator::GrExternalTextureGenerator\28SkImageInfo\20const&\29 +5911:GrEagerDynamicVertexAllocator::unlock\28int\29 +5912:GrDynamicAtlas::readView\28GrCaps\20const&\29\20const +5913:GrDrawingManager::getLastRenderTask\28GrSurfaceProxy\20const*\29\20const +5914:GrDrawOpAtlasConfig::atlasDimensions\28skgpu::MaskFormat\29\20const +5915:GrDrawOpAtlasConfig::GrDrawOpAtlasConfig\28int\2c\20unsigned\20long\29 +5916:GrDrawOpAtlas::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +5917:GrDrawOpAtlas::Make\28GrProxyProvider*\2c\20GrBackendFormat\20const&\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20int\2c\20int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20GrDrawOpAtlas::AllowMultitexturing\2c\20skgpu::PlotEvictionCallback*\2c\20std::__2::basic_string_view>\29 +5918:GrDistanceFieldA8TextGeoProc::onTextureSampler\28int\29\20const +5919:GrDistanceFieldA8TextGeoProc::addNewViews\28GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\29 +5920:GrDisableColorXPFactory::MakeXferProcessor\28\29 +5921:GrDirectContextPriv::validPMUPMConversionExists\28\29 +5922:GrDirectContext::~GrDirectContext\28\29 +5923:GrDirectContext::onGetSmallPathAtlasMgr\28\29 +5924:GrDirectContext::getResourceCacheLimits\28int*\2c\20unsigned\20long*\29\20const +5925:GrCopyRenderTask::~GrCopyRenderTask\28\29 +5926:GrCopyRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +5927:GrCopyBaseMipMapToView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Budgeted\29 +5928:GrContext_Base::threadSafeProxy\28\29 +5929:GrContext_Base::maxSurfaceSampleCountForColorType\28SkColorType\29\20const +5930:GrContext_Base::backend\28\29\20const +5931:GrColorInfo::makeColorType\28GrColorType\29\20const +5932:GrColorInfo::isLinearlyBlended\28\29\20const +5933:GrColorFragmentProcessorAnalysis::GrColorFragmentProcessorAnalysis\28GrProcessorAnalysisColor\20const&\2c\20std::__2::unique_ptr>\20const*\2c\20int\29 +5934:GrClip::IsPixelAligned\28SkRect\20const&\29 +5935:GrCaps::surfaceSupportsWritePixels\28GrSurface\20const*\29\20const +5936:GrCaps::getDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\2c\20bool\29\20const +5937:GrCPixmap::GrCPixmap\28GrPixmap\20const&\29 +5938:GrBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\2c\20unsigned\20long*\29 +5939:GrBufferAllocPool::createBlock\28unsigned\20long\29 +5940:GrBufferAllocPool::CpuBufferCache::makeBuffer\28unsigned\20long\2c\20bool\29 +5941:GrBlurUtils::draw_shape_with_mask_filter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\29 +5942:GrBlurUtils::draw_mask\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrPaint&&\2c\20GrSurfaceProxyView\29 +5943:GrBlurUtils::convolve_gaussian\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20SkIRect\2c\20SkIRect\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkBackingFit\29 +5944:GrBlurUtils::\28anonymous\20namespace\29::make_texture_effect\28GrCaps\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20GrSamplerState\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkISize\20const&\29 +5945:GrBlurUtils::MakeRectBlur\28GrRecordingContext*\2c\20GrShaderCaps\20const&\2c\20SkRect\20const&\2c\20std::__2::optional\20const&\2c\20SkMatrix\20const&\2c\20float\29 +5946:GrBlurUtils::MakeRRectBlur\28GrRecordingContext*\2c\20float\2c\20float\2c\20SkRRect\20const&\2c\20SkRRect\20const&\29 +5947:GrBlurUtils::MakeCircleBlur\28GrRecordingContext*\2c\20SkRect\20const&\2c\20float\29 +5948:GrBitmapTextGeoProc::addNewViews\28GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\29 +5949:GrBitmapTextGeoProc::GrBitmapTextGeoProc\28GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29 +5950:GrBicubicEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +5951:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +5952:GrBackendTextures::MakeGL\28int\2c\20int\2c\20skgpu::Mipmapped\2c\20GrGLTextureInfo\20const&\2c\20std::__2::basic_string_view>\29 +5953:GrBackendTexture::operator=\28GrBackendTexture\20const&\29 +5954:GrBackendRenderTargets::MakeGL\28int\2c\20int\2c\20int\2c\20int\2c\20GrGLFramebufferInfo\20const&\29 +5955:GrBackendRenderTargets::GetGLFramebufferInfo\28GrBackendRenderTarget\20const&\2c\20GrGLFramebufferInfo*\29 +5956:GrBackendRenderTarget::~GrBackendRenderTarget\28\29 +5957:GrBackendRenderTarget::isProtected\28\29\20const +5958:GrBackendFormatBytesPerBlock\28GrBackendFormat\20const&\29 +5959:GrBackendFormat::makeTexture2D\28\29\20const +5960:GrBackendFormat::isMockStencilFormat\28\29\20const +5961:GrBackendFormat::MakeMock\28GrColorType\2c\20SkTextureCompressionType\2c\20bool\29 +5962:GrAuditTrail::opsCombined\28GrOp\20const*\2c\20GrOp\20const*\29 +5963:GrAttachment::ComputeSharedAttachmentUniqueKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\2c\20skgpu::UniqueKey*\29 +5964:GrAtlasManager::~GrAtlasManager\28\29 +5965:GrAtlasManager::getViews\28skgpu::MaskFormat\2c\20unsigned\20int*\29 +5966:GrAtlasManager::freeAll\28\29 +5967:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::EventList*\2c\20GrTriangulator::Comparator\20const&\29\20const +5968:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrAATriangulator::EventList*\29\20const +5969:GrAATriangulator::collapseOverlapRegions\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\2c\20GrAATriangulator::EventComparator\29 +5970:GrAAConvexTessellator::quadTo\28SkPoint\20const*\29 +5971:GetShapedLines\28skia::textlayout::Paragraph&\29 +5972:GetLargeValue +5973:FontMgrRunIterator::endOfCurrentRun\28\29\20const +5974:FontMgrRunIterator::atEnd\28\29\20const +5975:FinishRow +5976:FindUndone\28SkOpContourHead*\29 +5977:FT_Stream_Free +5978:FT_Sfnt_Table_Info +5979:FT_Select_Size +5980:FT_Render_Glyph_Internal +5981:FT_Remove_Module +5982:FT_Outline_Get_Orientation +5983:FT_Outline_EmboldenXY +5984:FT_New_GlyphSlot +5985:FT_Match_Size +5986:FT_List_Iterate +5987:FT_List_Find +5988:FT_List_Finalize +5989:FT_GlyphLoader_CheckSubGlyphs +5990:FT_Get_Postscript_Name +5991:FT_Get_Paint_Layers +5992:FT_Get_PS_Font_Info +5993:FT_Get_Glyph_Name +5994:FT_Get_FSType_Flags +5995:FT_Get_Colorline_Stops +5996:FT_Get_Color_Glyph_ClipBox +5997:FT_Bitmap_Convert +5998:EllipticalRRectOp::~EllipticalRRectOp\28\29_11430 +5999:EllipticalRRectOp::~EllipticalRRectOp\28\29 +6000:EllipticalRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6001:EllipticalRRectOp::RRect&\20skia_private::TArray::emplace_back\28EllipticalRRectOp::RRect&&\29 +6002:EllipticalRRectOp::EllipticalRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20SkPoint\2c\20bool\29 +6003:EllipseOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\29 +6004:EllipseOp::EllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20EllipseOp::DeviceSpaceParams\20const&\2c\20SkStrokeRec\20const&\29 +6005:EllipseGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +6006:DecodeVarLenUint8 +6007:DecodeContextMap +6008:DIEllipseOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\29 +6009:DIEllipseOp::DIEllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20DIEllipseOp::DeviceSpaceParams\20const&\2c\20SkMatrix\20const&\29 +6010:CustomXP::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +6011:CustomXP::makeProgramImpl\28\29\20const::Impl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +6012:Cr_z_zcfree +6013:Cr_z_deflateReset +6014:Cr_z_deflate +6015:Cr_z_crc32_z +6016:CoverageSetOpXP::onIsEqual\28GrXferProcessor\20const&\29\20const +6017:Contour*\20std::__2::vector>::__emplace_back_slow_path\28SkRect&\2c\20int&\2c\20int&\29 +6018:CircularRRectOp::~CircularRRectOp\28\29_11407 +6019:CircularRRectOp::~CircularRRectOp\28\29 +6020:CircularRRectOp::CircularRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +6021:CircleOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +6022:CircleOp::CircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +6023:CircleGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +6024:CheckDecBuffer +6025:CFF::path_procs_t::vvcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6026:CFF::path_procs_t::vlineto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6027:CFF::path_procs_t::vhcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6028:CFF::path_procs_t::rrcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6029:CFF::path_procs_t::rlineto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6030:CFF::path_procs_t::rlinecurve\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6031:CFF::path_procs_t::rcurveline\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6032:CFF::path_procs_t::hvcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6033:CFF::path_procs_t::hlineto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6034:CFF::path_procs_t::hhcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6035:CFF::path_procs_t::hflex\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6036:CFF::path_procs_t::hflex1\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6037:CFF::path_procs_t::flex\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6038:CFF::path_procs_t::flex1\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +6039:CFF::cff2_cs_opset_t::process_blend\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\29 +6040:CFF::cff1_private_dict_opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\2c\20CFF::cff1_private_dict_values_base_t&\29 +6041:CFF::FDSelect3_4\2c\20OT::IntType>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +6042:CFF::Charset::get_sid\28unsigned\20int\2c\20unsigned\20int\2c\20CFF::code_pair_t*\29\20const +6043:CFF::CFF2FDSelect::get_fd\28unsigned\20int\29\20const +6044:ButtCapDashedCircleOp::ButtCapDashedCircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6045:BrotliTransformDictionaryWord +6046:BrotliEnsureRingBuffer +6047:AutoLayerForImageFilter::addMaskFilterLayer\28SkRect\20const*\29 +6048:AngleWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\2c\20bool*\29 +6049:AddIntersectTs\28SkOpContour*\2c\20SkOpContour*\2c\20SkOpCoincidence*\29 +6050:ActiveEdgeList::replace\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +6051:ActiveEdgeList::remove\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +6052:ActiveEdgeList::insert\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +6053:AAT::kerx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +6054:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +6055:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +6056:AAT::hb_aat_apply_context_t::replace_glyph\28unsigned\20int\29 +6057:AAT::ankr::get_anchor\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +6058:AAT::TrackData::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6059:AAT::TrackData::get_tracking\28void\20const*\2c\20float\2c\20float\29\20const +6060:AAT::StateTable::EntryData>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +6061:AAT::StateTable::EntryData>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +6062:AAT::StateTable::EntryData>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +6063:AAT::RearrangementSubtable::driver_context_t::transition\28hb_buffer_t*\2c\20AAT::StateTableDriver::Flags>*\2c\20AAT::Entry\20const&\29 +6064:AAT::NoncontextualSubtable::apply\28AAT::hb_aat_apply_context_t*\29\20const +6065:AAT::Lookup>::sanitize\28hb_sanitize_context_t*\29\20const +6066:AAT::Lookup>::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +6067:AAT::InsertionSubtable::driver_context_t::transition\28hb_buffer_t*\2c\20AAT::StateTableDriver::EntryData\2c\20AAT::InsertionSubtable::Flags>*\2c\20AAT::Entry::EntryData>\20const&\29 +6068:AAT::Chain::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +6069:AAT::Chain::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +6070:5832 +6071:5833 +6072:5834 +6073:5835 +6074:5836 +6075:5837 +6076:5838 +6077:5839 +6078:5840 +6079:5841 +6080:5842 +6081:5843 +6082:5844 +6083:5845 +6084:5846 +6085:5847 +6086:5848 +6087:5849 +6088:5850 +6089:5851 +6090:5852 +6091:5853 +6092:5854 +6093:5855 +6094:5856 +6095:5857 +6096:5858 +6097:5859 +6098:5860 +6099:5861 +6100:5862 +6101:5863 +6102:5864 +6103:5865 +6104:5866 +6105:5867 +6106:5868 +6107:5869 +6108:5870 +6109:5871 +6110:5872 +6111:5873 +6112:5874 +6113:5875 +6114:5876 +6115:5877 +6116:5878 +6117:5879 +6118:5880 +6119:5881 +6120:5882 +6121:5883 +6122:5884 +6123:5885 +6124:5886 +6125:5887 +6126:5888 +6127:5889 +6128:5890 +6129:5891 +6130:5892 +6131:5893 +6132:5894 +6133:5895 +6134:5896 +6135:5897 +6136:5898 +6137:5899 +6138:5900 +6139:5901 +6140:5902 +6141:5903 +6142:5904 +6143:5905 +6144:5906 +6145:5907 +6146:5908 +6147:5909 +6148:5910 +6149:ycck_cmyk_convert +6150:ycc_rgb_convert +6151:ycc_rgb565_convert +6152:ycc_rgb565D_convert +6153:xyzd50_to_lab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +6154:xyzd50_to_hcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +6155:wuffs_gif__decoder__tell_me_more +6156:wuffs_gif__decoder__set_report_metadata +6157:wuffs_gif__decoder__num_decoded_frame_configs +6158:wuffs_base__pixel_swizzler__xxxxxxxx__index_binary_alpha__src_over +6159:wuffs_base__pixel_swizzler__xxxxxxxx__index__src +6160:wuffs_base__pixel_swizzler__xxxx__index_binary_alpha__src_over +6161:wuffs_base__pixel_swizzler__xxxx__index__src +6162:wuffs_base__pixel_swizzler__xxx__index_binary_alpha__src_over +6163:wuffs_base__pixel_swizzler__xxx__index__src +6164:wuffs_base__pixel_swizzler__transparent_black_src_over +6165:wuffs_base__pixel_swizzler__transparent_black_src +6166:wuffs_base__pixel_swizzler__copy_1_1 +6167:wuffs_base__pixel_swizzler__bgr_565__index_binary_alpha__src_over +6168:wuffs_base__pixel_swizzler__bgr_565__index__src +6169:webgl_get_gl_proc\28void*\2c\20char\20const*\29 +6170:void\20std::__2::__call_once_proxy\5babi:nn180100\5d>\28void*\29 +6171:void\20std::__2::__call_once_proxy\5babi:ne180100\5d>\28void*\29 +6172:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +6173:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +6174:void\20emscripten::internal::raw_destructor>\28sk_sp*\29 +6175:void\20emscripten::internal::raw_destructor\28SkVertices::Builder*\29 +6176:void\20emscripten::internal::raw_destructor\28SkRuntimeEffect::TracedShader*\29 +6177:void\20emscripten::internal::raw_destructor\28SkPictureRecorder*\29 +6178:void\20emscripten::internal::raw_destructor\28SkPath*\29 +6179:void\20emscripten::internal::raw_destructor\28SkPaint*\29 +6180:void\20emscripten::internal::raw_destructor\28SkContourMeasureIter*\29 +6181:void\20emscripten::internal::raw_destructor\28SimpleImageInfo*\29 +6182:void\20emscripten::internal::MemberAccess::setWire\28SimpleTextStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\2c\20SimpleTextStyle*\29 +6183:void\20emscripten::internal::MemberAccess::setWire\28SimpleStrutStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\2c\20SimpleStrutStyle*\29 +6184:void\20emscripten::internal::MemberAccess>::setWire\28sk_sp\20SimpleImageInfo::*\20const&\2c\20SimpleImageInfo&\2c\20sk_sp*\29 +6185:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::TypefaceFontProvider*\29 +6186:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::ParagraphBuilderImpl*\29 +6187:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::Paragraph*\29 +6188:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::FontCollection*\29 +6189:void\20const*\20emscripten::internal::getActualType\28SkVertices*\29 +6190:void\20const*\20emscripten::internal::getActualType\28SkVertices::Builder*\29 +6191:void\20const*\20emscripten::internal::getActualType\28SkTypeface*\29 +6192:void\20const*\20emscripten::internal::getActualType\28SkTextBlob*\29 +6193:void\20const*\20emscripten::internal::getActualType\28SkSurface*\29 +6194:void\20const*\20emscripten::internal::getActualType\28SkShader*\29 +6195:void\20const*\20emscripten::internal::getActualType\28SkSL::DebugTrace*\29 +6196:void\20const*\20emscripten::internal::getActualType\28SkRuntimeEffect*\29 +6197:void\20const*\20emscripten::internal::getActualType\28SkPictureRecorder*\29 +6198:void\20const*\20emscripten::internal::getActualType\28SkPicture*\29 +6199:void\20const*\20emscripten::internal::getActualType\28SkPathEffect*\29 +6200:void\20const*\20emscripten::internal::getActualType\28SkPath*\29 +6201:void\20const*\20emscripten::internal::getActualType\28SkPaint*\29 +6202:void\20const*\20emscripten::internal::getActualType\28SkMaskFilter*\29 +6203:void\20const*\20emscripten::internal::getActualType\28SkImageFilter*\29 +6204:void\20const*\20emscripten::internal::getActualType\28SkImage*\29 +6205:void\20const*\20emscripten::internal::getActualType\28SkFontMgr*\29 +6206:void\20const*\20emscripten::internal::getActualType\28SkFont*\29 +6207:void\20const*\20emscripten::internal::getActualType\28SkContourMeasureIter*\29 +6208:void\20const*\20emscripten::internal::getActualType\28SkContourMeasure*\29 +6209:void\20const*\20emscripten::internal::getActualType\28SkColorSpace*\29 +6210:void\20const*\20emscripten::internal::getActualType\28SkColorFilter*\29 +6211:void\20const*\20emscripten::internal::getActualType\28SkCanvas*\29 +6212:void\20const*\20emscripten::internal::getActualType\28SkBlender*\29 +6213:void\20const*\20emscripten::internal::getActualType\28SkAnimatedImage*\29 +6214:void\20const*\20emscripten::internal::getActualType\28GrDirectContext*\29 +6215:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6216:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6217:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6218:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6219:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6220:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6221:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6222:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6223:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6224:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6225:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6226:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6227:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6228:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6229:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6230:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6231:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6232:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6233:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6234:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6235:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6236:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6237:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6238:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6239:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6240:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6241:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6242:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6243:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6244:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6245:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6246:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6247:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6248:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6249:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6250:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6251:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6252:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6253:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6254:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6255:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6256:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6257:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6258:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6259:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6260:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6261:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6262:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6263:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6264:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6265:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6266:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6267:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6268:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6269:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6270:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6271:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6272:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6273:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6274:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6275:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6276:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6277:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6278:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6279:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6280:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6281:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6282:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6283:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6284:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6285:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6286:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6287:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6288:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6289:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6290:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6291:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6292:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6293:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6294:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6295:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6296:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6297:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6298:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6299:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6300:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6301:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6302:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6303:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6304:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6305:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6306:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6307:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6308:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6309:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6310:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +6311:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6312:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6313:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&fast_swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6314:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&fast_swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6315:void\20SkSwizzler::SkipLeading8888ZerosThen<&swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6316:void\20SkSwizzler::SkipLeading8888ZerosThen<&swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6317:void\20SkSwizzler::SkipLeading8888ZerosThen<&swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6318:void\20SkSwizzler::SkipLeading8888ZerosThen<&sample4\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6319:void\20SkSwizzler::SkipLeading8888ZerosThen<&fast_swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6320:void\20SkSwizzler::SkipLeading8888ZerosThen<&fast_swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6321:void\20SkSwizzler::SkipLeading8888ZerosThen<&fast_swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6322:void\20SkSwizzler::SkipLeading8888ZerosThen<©\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6323:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +6324:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_17854 +6325:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +6326:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29_17759 +6327:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29 +6328:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29_17718 +6329:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29 +6330:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_17779 +6331:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +6332:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10042 +6333:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +6334:virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +6335:virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +6336:virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +6337:virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +6338:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29_9993 +6339:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29 +6340:virtual\20thunk\20to\20GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +6341:virtual\20thunk\20to\20GrTextureProxy::instantiate\28GrResourceProvider*\29 +6342:virtual\20thunk\20to\20GrTextureProxy::getUniqueKey\28\29\20const +6343:virtual\20thunk\20to\20GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +6344:virtual\20thunk\20to\20GrTextureProxy::callbackDesc\28\29\20const +6345:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29\20const +6346:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29 +6347:virtual\20thunk\20to\20GrTexture::onGpuMemorySize\28\29\20const +6348:virtual\20thunk\20to\20GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +6349:virtual\20thunk\20to\20GrTexture::asTexture\28\29\20const +6350:virtual\20thunk\20to\20GrTexture::asTexture\28\29 +6351:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29_9762 +6352:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +6353:virtual\20thunk\20to\20GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +6354:virtual\20thunk\20to\20GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +6355:virtual\20thunk\20to\20GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +6356:virtual\20thunk\20to\20GrRenderTargetProxy::callbackDesc\28\29\20const +6357:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29\20const +6358:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29 +6359:virtual\20thunk\20to\20GrRenderTarget::onRelease\28\29 +6360:virtual\20thunk\20to\20GrRenderTarget::onAbandon\28\29 +6361:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29\20const +6362:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29 +6363:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12510 +6364:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +6365:virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +6366:virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +6367:virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +6368:virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +6369:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29_12477 +6370:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29 +6371:virtual\20thunk\20to\20GrGLTexture::onRelease\28\29 +6372:virtual\20thunk\20to\20GrGLTexture::onAbandon\28\29 +6373:virtual\20thunk\20to\20GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +6374:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_10787 +6375:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +6376:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::onFinalize\28\29 +6377:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29_12449 +6378:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29 +6379:virtual\20thunk\20to\20GrGLRenderTarget::onRelease\28\29 +6380:virtual\20thunk\20to\20GrGLRenderTarget::onGpuMemorySize\28\29\20const +6381:virtual\20thunk\20to\20GrGLRenderTarget::onAbandon\28\29 +6382:virtual\20thunk\20to\20GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +6383:virtual\20thunk\20to\20GrGLRenderTarget::backendFormat\28\29\20const +6384:utf8TextMapOffsetToNative\28UText\20const*\29 +6385:utf8TextMapIndexToUTF16\28UText\20const*\2c\20long\20long\29 +6386:utf8TextLength\28UText*\29 +6387:utf8TextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +6388:utf8TextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +6389:utext_openUTF8_74 +6390:ustrcase_internalToUpper_74 +6391:ustrcase_internalFold_74 +6392:ures_loc_resetLocales\28UEnumeration*\2c\20UErrorCode*\29 +6393:ures_loc_nextLocale\28UEnumeration*\2c\20int*\2c\20UErrorCode*\29 +6394:ures_loc_countLocales\28UEnumeration*\2c\20UErrorCode*\29 +6395:ures_loc_closeLocales\28UEnumeration*\29 +6396:ures_cleanup\28\29 +6397:unistrTextReplace\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t\20const*\2c\20int\2c\20UErrorCode*\29 +6398:unistrTextLength\28UText*\29 +6399:unistrTextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +6400:unistrTextCopy\28UText*\2c\20long\20long\2c\20long\20long\2c\20long\20long\2c\20signed\20char\2c\20UErrorCode*\29 +6401:unistrTextClose\28UText*\29 +6402:unistrTextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +6403:unistrTextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +6404:uloc_kw_resetKeywords\28UEnumeration*\2c\20UErrorCode*\29 +6405:uloc_kw_nextKeyword\28UEnumeration*\2c\20int*\2c\20UErrorCode*\29 +6406:uloc_kw_countKeywords\28UEnumeration*\2c\20UErrorCode*\29 +6407:uloc_kw_closeKeywords\28UEnumeration*\29 +6408:uloc_key_type_cleanup\28\29 +6409:uloc_getDefault_74 +6410:uloc_forLanguageTag_74 +6411:uhash_hashUnicodeString_74 +6412:uhash_hashUChars_74 +6413:uhash_hashIChars_74 +6414:uhash_deleteHashtable_74 +6415:uhash_compareUnicodeString_74 +6416:uhash_compareUChars_74 +6417:uhash_compareLong_74 +6418:uhash_compareIChars_74 +6419:uenum_unextDefault_74 +6420:udata_cleanup\28\29 +6421:ucstrTextLength\28UText*\29 +6422:ucstrTextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +6423:ucstrTextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +6424:ubrk_setUText_74 +6425:ubrk_setText_74 +6426:ubrk_preceding_74 +6427:ubrk_open_74 +6428:ubrk_next_74 +6429:ubrk_getRuleStatus_74 +6430:ubrk_first_74 +6431:ubidi_reorderVisual_74 +6432:ubidi_openSized_74 +6433:ubidi_getLevelAt_74 +6434:ubidi_getLength_74 +6435:ubidi_getDirection_74 +6436:u_strToUpper_74 +6437:u_isspace_74 +6438:u_iscntrl_74 +6439:u_isWhitespace_74 +6440:u_errorName_74 +6441:tt_vadvance_adjust +6442:tt_slot_init +6443:tt_size_select +6444:tt_size_reset_iterator +6445:tt_size_request +6446:tt_size_init +6447:tt_size_done +6448:tt_sbit_decoder_load_png +6449:tt_sbit_decoder_load_compound +6450:tt_sbit_decoder_load_byte_aligned +6451:tt_sbit_decoder_load_bit_aligned +6452:tt_property_set +6453:tt_property_get +6454:tt_name_ascii_from_utf16 +6455:tt_name_ascii_from_other +6456:tt_hadvance_adjust +6457:tt_glyph_load +6458:tt_get_var_blend +6459:tt_get_interface +6460:tt_get_glyph_name +6461:tt_get_cmap_info +6462:tt_get_advances +6463:tt_face_set_sbit_strike +6464:tt_face_load_strike_metrics +6465:tt_face_load_sbit_image +6466:tt_face_load_sbit +6467:tt_face_load_post +6468:tt_face_load_pclt +6469:tt_face_load_os2 +6470:tt_face_load_name +6471:tt_face_load_maxp +6472:tt_face_load_kern +6473:tt_face_load_hmtx +6474:tt_face_load_hhea +6475:tt_face_load_head +6476:tt_face_load_gasp +6477:tt_face_load_font_dir +6478:tt_face_load_cpal +6479:tt_face_load_colr +6480:tt_face_load_cmap +6481:tt_face_load_bhed +6482:tt_face_load_any +6483:tt_face_init +6484:tt_face_goto_table +6485:tt_face_get_paint_layers +6486:tt_face_get_paint +6487:tt_face_get_kerning +6488:tt_face_get_colr_layer +6489:tt_face_get_colr_glyph_paint +6490:tt_face_get_colorline_stops +6491:tt_face_get_color_glyph_clipbox +6492:tt_face_free_sbit +6493:tt_face_free_ps_names +6494:tt_face_free_name +6495:tt_face_free_cpal +6496:tt_face_free_colr +6497:tt_face_done +6498:tt_face_colr_blend_layer +6499:tt_driver_init +6500:tt_cvt_ready_iterator +6501:tt_cmap_unicode_init +6502:tt_cmap_unicode_char_next +6503:tt_cmap_unicode_char_index +6504:tt_cmap_init +6505:tt_cmap8_validate +6506:tt_cmap8_get_info +6507:tt_cmap8_char_next +6508:tt_cmap8_char_index +6509:tt_cmap6_validate +6510:tt_cmap6_get_info +6511:tt_cmap6_char_next +6512:tt_cmap6_char_index +6513:tt_cmap4_validate +6514:tt_cmap4_init +6515:tt_cmap4_get_info +6516:tt_cmap4_char_next +6517:tt_cmap4_char_index +6518:tt_cmap2_validate +6519:tt_cmap2_get_info +6520:tt_cmap2_char_next +6521:tt_cmap2_char_index +6522:tt_cmap14_variants +6523:tt_cmap14_variant_chars +6524:tt_cmap14_validate +6525:tt_cmap14_init +6526:tt_cmap14_get_info +6527:tt_cmap14_done +6528:tt_cmap14_char_variants +6529:tt_cmap14_char_var_isdefault +6530:tt_cmap14_char_var_index +6531:tt_cmap14_char_next +6532:tt_cmap13_validate +6533:tt_cmap13_get_info +6534:tt_cmap13_char_next +6535:tt_cmap13_char_index +6536:tt_cmap12_validate +6537:tt_cmap12_get_info +6538:tt_cmap12_char_next +6539:tt_cmap12_char_index +6540:tt_cmap10_validate +6541:tt_cmap10_get_info +6542:tt_cmap10_char_next +6543:tt_cmap10_char_index +6544:tt_cmap0_validate +6545:tt_cmap0_get_info +6546:tt_cmap0_char_next +6547:tt_cmap0_char_index +6548:t2_hints_stems +6549:t2_hints_open +6550:t1_make_subfont +6551:t1_hints_stem +6552:t1_hints_open +6553:t1_decrypt +6554:t1_decoder_parse_metrics +6555:t1_decoder_init +6556:t1_decoder_done +6557:t1_cmap_unicode_init +6558:t1_cmap_unicode_char_next +6559:t1_cmap_unicode_char_index +6560:t1_cmap_std_done +6561:t1_cmap_std_char_next +6562:t1_cmap_std_char_index +6563:t1_cmap_standard_init +6564:t1_cmap_expert_init +6565:t1_cmap_custom_init +6566:t1_cmap_custom_done +6567:t1_cmap_custom_char_next +6568:t1_cmap_custom_char_index +6569:t1_builder_start_point +6570:t1_builder_init +6571:t1_builder_add_point1 +6572:t1_builder_add_point +6573:t1_builder_add_contour +6574:swizzle_small_index_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6575:swizzle_small_index_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6576:swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6577:swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6578:swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6579:swizzle_rgba16_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6580:swizzle_rgba16_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6581:swizzle_rgba16_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6582:swizzle_rgba16_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6583:swizzle_rgb_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6584:swizzle_rgb_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6585:swizzle_rgb_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6586:swizzle_rgb16_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6587:swizzle_rgb16_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6588:swizzle_rgb16_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6589:swizzle_mask32_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6590:swizzle_mask32_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6591:swizzle_mask32_to_rgba_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6592:swizzle_mask32_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6593:swizzle_mask32_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6594:swizzle_mask32_to_bgra_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6595:swizzle_mask32_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6596:swizzle_mask24_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6597:swizzle_mask24_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6598:swizzle_mask24_to_rgba_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6599:swizzle_mask24_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6600:swizzle_mask24_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6601:swizzle_mask24_to_bgra_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6602:swizzle_mask24_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6603:swizzle_mask16_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6604:swizzle_mask16_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6605:swizzle_mask16_to_rgba_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6606:swizzle_mask16_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6607:swizzle_mask16_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6608:swizzle_mask16_to_bgra_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6609:swizzle_mask16_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6610:swizzle_index_to_n32_skipZ\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6611:swizzle_index_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6612:swizzle_index_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6613:swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6614:swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6615:swizzle_grayalpha_to_a8\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6616:swizzle_gray_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6617:swizzle_gray_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6618:swizzle_cmyk_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6619:swizzle_cmyk_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6620:swizzle_cmyk_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6621:swizzle_bit_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6622:swizzle_bit_to_grayscale\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6623:swizzle_bit_to_f16\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6624:swizzle_bit_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6625:swizzle_bgr_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6626:string_read +6627:std::exception::what\28\29\20const +6628:std::bad_variant_access::what\28\29\20const +6629:std::bad_optional_access::what\28\29\20const +6630:std::bad_array_new_length::what\28\29\20const +6631:std::bad_alloc::what\28\29\20const +6632:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +6633:std::__2::unique_ptr>::operator=\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +6634:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20tm\20const*\2c\20char\2c\20char\29\20const +6635:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20tm\20const*\2c\20char\2c\20char\29\20const +6636:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6637:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6638:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6639:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6640:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6641:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +6642:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6643:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6644:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6645:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6646:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6647:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +6648:std::__2::numpunct::~numpunct\28\29_18735 +6649:std::__2::numpunct::do_truename\28\29\20const +6650:std::__2::numpunct::do_grouping\28\29\20const +6651:std::__2::numpunct::do_falsename\28\29\20const +6652:std::__2::numpunct::~numpunct\28\29_18733 +6653:std::__2::numpunct::do_truename\28\29\20const +6654:std::__2::numpunct::do_thousands_sep\28\29\20const +6655:std::__2::numpunct::do_grouping\28\29\20const +6656:std::__2::numpunct::do_falsename\28\29\20const +6657:std::__2::numpunct::do_decimal_point\28\29\20const +6658:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20void\20const*\29\20const +6659:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\29\20const +6660:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\20long\29\20const +6661:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\29\20const +6662:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20long\29\20const +6663:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +6664:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20double\29\20const +6665:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20bool\29\20const +6666:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20void\20const*\29\20const +6667:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\29\20const +6668:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\20long\29\20const +6669:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\29\20const +6670:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20long\29\20const +6671:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +6672:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20double\29\20const +6673:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20bool\29\20const +6674:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +6675:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +6676:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +6677:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +6678:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6679:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +6680:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +6681:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +6682:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +6683:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +6684:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +6685:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +6686:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +6687:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6688:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +6689:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +6690:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +6691:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +6692:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6693:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +6694:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6695:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +6696:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +6697:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6698:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +6699:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6700:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6701:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6702:std::__2::locale::__imp::~__imp\28\29_18613 +6703:std::__2::ios_base::~ios_base\28\29_17976 +6704:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +6705:std::__2::ctype::do_toupper\28wchar_t\29\20const +6706:std::__2::ctype::do_toupper\28wchar_t*\2c\20wchar_t\20const*\29\20const +6707:std::__2::ctype::do_tolower\28wchar_t\29\20const +6708:std::__2::ctype::do_tolower\28wchar_t*\2c\20wchar_t\20const*\29\20const +6709:std::__2::ctype::do_scan_not\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6710:std::__2::ctype::do_scan_is\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6711:std::__2::ctype::do_narrow\28wchar_t\2c\20char\29\20const +6712:std::__2::ctype::do_narrow\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20char\2c\20char*\29\20const +6713:std::__2::ctype::do_is\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20unsigned\20long*\29\20const +6714:std::__2::ctype::do_is\28unsigned\20long\2c\20wchar_t\29\20const +6715:std::__2::ctype::~ctype\28\29_18661 +6716:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +6717:std::__2::ctype::do_toupper\28char\29\20const +6718:std::__2::ctype::do_toupper\28char*\2c\20char\20const*\29\20const +6719:std::__2::ctype::do_tolower\28char\29\20const +6720:std::__2::ctype::do_tolower\28char*\2c\20char\20const*\29\20const +6721:std::__2::ctype::do_narrow\28char\2c\20char\29\20const +6722:std::__2::ctype::do_narrow\28char\20const*\2c\20char\20const*\2c\20char\2c\20char*\29\20const +6723:std::__2::collate::do_transform\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6724:std::__2::collate::do_hash\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6725:std::__2::collate::do_compare\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6726:std::__2::collate::do_transform\28char\20const*\2c\20char\20const*\29\20const +6727:std::__2::collate::do_hash\28char\20const*\2c\20char\20const*\29\20const +6728:std::__2::collate::do_compare\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +6729:std::__2::codecvt::~codecvt\28\29_18679 +6730:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char*\2c\20char*\2c\20char*&\29\20const +6731:std::__2::codecvt::do_out\28__mbstate_t&\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +6732:std::__2::codecvt::do_max_length\28\29\20const +6733:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +6734:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20wchar_t*\2c\20wchar_t*\2c\20wchar_t*&\29\20const +6735:std::__2::codecvt::do_encoding\28\29\20const +6736:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +6737:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29_17846 +6738:std::__2::basic_stringbuf\2c\20std::__2::allocator>::underflow\28\29 +6739:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +6740:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +6741:std::__2::basic_stringbuf\2c\20std::__2::allocator>::pbackfail\28int\29 +6742:std::__2::basic_stringbuf\2c\20std::__2::allocator>::overflow\28int\29 +6743:std::__2::basic_streambuf>::~basic_streambuf\28\29_17691 +6744:std::__2::basic_streambuf>::xsputn\28char\20const*\2c\20long\29 +6745:std::__2::basic_streambuf>::xsgetn\28char*\2c\20long\29 +6746:std::__2::basic_streambuf>::uflow\28\29 +6747:std::__2::basic_streambuf>::setbuf\28char*\2c\20long\29 +6748:std::__2::basic_streambuf>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +6749:std::__2::basic_streambuf>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +6750:std::__2::bad_function_call::what\28\29\20const +6751:std::__2::__time_get_c_storage::__x\28\29\20const +6752:std::__2::__time_get_c_storage::__weeks\28\29\20const +6753:std::__2::__time_get_c_storage::__r\28\29\20const +6754:std::__2::__time_get_c_storage::__months\28\29\20const +6755:std::__2::__time_get_c_storage::__c\28\29\20const +6756:std::__2::__time_get_c_storage::__am_pm\28\29\20const +6757:std::__2::__time_get_c_storage::__X\28\29\20const +6758:std::__2::__time_get_c_storage::__x\28\29\20const +6759:std::__2::__time_get_c_storage::__weeks\28\29\20const +6760:std::__2::__time_get_c_storage::__r\28\29\20const +6761:std::__2::__time_get_c_storage::__months\28\29\20const +6762:std::__2::__time_get_c_storage::__c\28\29\20const +6763:std::__2::__time_get_c_storage::__am_pm\28\29\20const +6764:std::__2::__time_get_c_storage::__X\28\29\20const +6765:std::__2::__shared_ptr_pointer<_IO_FILE*\2c\20void\20\28*\29\28_IO_FILE*\29\2c\20std::__2::allocator<_IO_FILE>>::__on_zero_shared\28\29 +6766:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_7686 +6767:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +6768:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +6769:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_7968 +6770:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +6771:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +6772:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_5865 +6773:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +6774:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6775:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6776:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6777:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6778:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6779:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6780:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6781:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6782:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6783:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6784:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6785:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6786:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6787:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6788:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6789:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6790:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6791:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6792:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +6793:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6794:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +6795:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +6796:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6797:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +6798:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6799:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6800:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6801:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6802:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6803:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6804:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6805:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6806:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6807:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6808:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6809:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6810:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6811:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6812:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6813:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6814:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6815:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6816:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6817:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6818:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6819:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6820:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6821:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6822:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6823:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6824:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6825:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6826:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6827:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6828:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6829:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6830:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6831:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6832:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6833:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6834:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6835:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6836:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6837:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20float&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20SkPoint&&\2c\20SkPoint&&\2c\20skia::textlayout::InternalLineMetrics&&\2c\20bool&&\29 +6838:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>*\29\20const +6839:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28\29\20const +6840:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::operator\28\29\28skia::textlayout::Cluster*&&\29 +6841:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28std::__2::__function::__base*\29\20const +6842:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28\29\20const +6843:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6844:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28\29\20const +6845:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20SkSpan&&\2c\20float&\2c\20unsigned\20long&&\2c\20unsigned\20char&&\29 +6846:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28std::__2::__function::__base\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>*\29\20const +6847:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28\29\20const +6848:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::operator\28\29\28skia::textlayout::Block&&\2c\20skia_private::TArray&&\29 +6849:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28std::__2::__function::__base\29>*\29\20const +6850:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28\29\20const +6851:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::operator\28\29\28sk_sp&&\29 +6852:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28std::__2::__function::__base\29>*\29\20const +6853:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28\29\20const +6854:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::operator\28\29\28skia::textlayout::SkRange&&\29 +6855:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28std::__2::__function::__base\29>*\29\20const +6856:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28\29\20const +6857:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +6858:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +6859:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +6860:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29_10224 +6861:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29 +6862:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::operator\28\29\28void*&&\2c\20void\20const*&&\29 +6863:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy_deallocate\28\29 +6864:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy\28\29 +6865:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6866:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28\29\20const +6867:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6868:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6869:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6870:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6871:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6872:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6873:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +6874:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6875:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6876:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +6877:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6878:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6879:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +6880:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6881:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6882:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +6883:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +6884:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +6885:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::operator\28\29\28sktext::gpu::GlyphVector*&&\2c\20int&&\2c\20int&&\2c\20skgpu::MaskFormat&&\2c\20int&&\29 +6886:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28std::__2::__function::__base\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>*\29\20const +6887:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28\29\20const +6888:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::operator\28\29\28GrSurfaceProxy\20const*&&\29 +6889:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6890:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28\29\20const +6891:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +6892:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +6893:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +6894:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +6895:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +6896:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +6897:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +6898:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6899:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +6900:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6901:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6902:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6903:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6904:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +6905:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6906:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6907:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::operator\28\29\28\29 +6908:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6909:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28\29\20const +6910:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6911:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6912:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6913:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6914:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6915:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6916:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6917:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6918:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6919:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6920:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6921:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6922:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6923:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +6924:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +6925:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +6926:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +6927:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +6928:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +6929:std::__2::__function::__func>*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator>*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::operator\28\29\28int&&\2c\20int&&\29 +6930:std::__2::__function::__func>*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator>*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +6931:std::__2::__function::__func>*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator>*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28\29\20const +6932:std::__2::__function::__func*\29::'lambda0'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda0'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::operator\28\29\28int&&\2c\20int&&\29 +6933:std::__2::__function::__func*\29::'lambda0'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda0'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +6934:std::__2::__function::__func*\29::'lambda0'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda0'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28\29\20const +6935:std::__2::__function::__func*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::operator\28\29\28int&&\2c\20int&&\29 +6936:std::__2::__function::__func*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +6937:std::__2::__function::__func*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28\29\20const +6938:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29_4513 +6939:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29 +6940:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +6941:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy_deallocate\28\29 +6942:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy\28\29 +6943:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6944:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6945:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +6946:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6947:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +6948:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6949:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6950:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6951:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6952:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6953:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6954:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::operator\28\29\28SkSL::Variable\20const&\29 +6955:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6956:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28\29\20const +6957:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::operator\28\29\28int&&\2c\20SkSL::Variable\20const*&&\2c\20SkSL::Expression\20const*&&\29 +6958:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6959:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28\29\20const +6960:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::operator\28\29\28unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\29 +6961:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +6962:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +6963:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +6964:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +6965:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::operator\28\29\28SkVertices\20const*&&\2c\20SkBlendMode&&\2c\20SkPaint\20const&\2c\20float&&\2c\20float&&\2c\20bool&&\29 +6966:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6967:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28\29\20const +6968:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::operator\28\29\28SkIRect\20const&\29 +6969:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6970:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28\29\20const +6971:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::operator\28\29\28SkImageInfo\20const&\2c\20void*&&\2c\20unsigned\20long&&\2c\20SkCodec::Options\20const&\2c\20int&&\29 +6972:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +6973:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::__clone\28\29\20const +6974:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10086 +6975:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +6976:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +6977:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +6978:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +6979:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6980:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +6981:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_9679 +6982:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +6983:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +6984:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +6985:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +6986:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6987:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +6988:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_9686 +6989:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +6990:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +6991:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +6992:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +6993:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6994:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +6995:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::operator\28\29\28GrTextureProxy*&&\2c\20SkIRect&&\2c\20GrColorType&&\2c\20void\20const*&&\2c\20unsigned\20long&&\29 +6996:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +6997:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28\29\20const +6998:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::operator\28\29\28GrBackendTexture&&\29 +6999:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28std::__2::__function::__base*\29\20const +7000:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28\29\20const +7001:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +7002:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +7003:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +7004:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +7005:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +7006:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +7007:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +7008:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +7009:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +7010:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +7011:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +7012:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +7013:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +7014:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +7015:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +7016:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +7017:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +7018:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +7019:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9180 +7020:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +7021:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +7022:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +7023:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9187 +7024:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +7025:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +7026:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +7027:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +7028:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +7029:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +7030:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::operator\28\29\28int&&\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*&&\29 +7031:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +7032:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::__clone\28\29\20const +7033:start_pass_upsample +7034:start_pass_phuff_decoder +7035:start_pass_merged_upsample +7036:start_pass_main +7037:start_pass_huff_decoder +7038:start_pass_dpost +7039:start_pass_2_quant +7040:start_pass_1_quant +7041:start_pass +7042:start_output_pass +7043:start_input_pass_17136 +7044:srgb_to_hwb\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +7045:srgb_to_hsl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +7046:srcover_p\28unsigned\20char\2c\20unsigned\20char\29 +7047:sn_write +7048:sktext::gpu::post_purge_blob_message\28unsigned\20int\2c\20unsigned\20int\29 +7049:sktext::gpu::TextBlob::~TextBlob\28\29_12786 +7050:sktext::gpu::TextBlob::~TextBlob\28\29 +7051:sktext::gpu::SubRun::~SubRun\28\29 +7052:sktext::gpu::SlugImpl::~SlugImpl\28\29_12670 +7053:sktext::gpu::SlugImpl::~SlugImpl\28\29 +7054:sktext::gpu::SlugImpl::sourceBounds\28\29\20const +7055:sktext::gpu::SlugImpl::sourceBoundsWithOrigin\28\29\20const +7056:sktext::gpu::SlugImpl::doFlatten\28SkWriteBuffer&\29\20const +7057:sktext::gpu::SDFMaskFilterImpl::getTypeName\28\29\20const +7058:sktext::gpu::SDFMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +7059:sktext::gpu::SDFMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +7060:sktext::gpu::AtlasSubRun::~AtlasSubRun\28\29_12744 +7061:skip_variable +7062:skif::\28anonymous\20namespace\29::RasterBackend::~RasterBackend\28\29 +7063:skif::\28anonymous\20namespace\29::RasterBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +7064:skif::\28anonymous\20namespace\29::RasterBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +7065:skif::\28anonymous\20namespace\29::RasterBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +7066:skif::\28anonymous\20namespace\29::RasterBackend::getBlurEngine\28\29\20const +7067:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10883 +7068:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +7069:skif::\28anonymous\20namespace\29::GaneshBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +7070:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +7071:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +7072:skif::\28anonymous\20namespace\29::GaneshBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +7073:skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +7074:skia_png_zalloc +7075:skia_png_write_rows +7076:skia_png_write_info +7077:skia_png_write_end +7078:skia_png_user_version_check +7079:skia_png_set_text +7080:skia_png_set_sRGB +7081:skia_png_set_keep_unknown_chunks +7082:skia_png_set_iCCP +7083:skia_png_set_gray_to_rgb +7084:skia_png_set_filter +7085:skia_png_set_filler +7086:skia_png_read_update_info +7087:skia_png_read_info +7088:skia_png_read_image +7089:skia_png_read_end +7090:skia_png_push_fill_buffer +7091:skia_png_process_data +7092:skia_png_default_write_data +7093:skia_png_default_read_data +7094:skia_png_default_flush +7095:skia_png_create_read_struct +7096:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29_8153 +7097:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29 +7098:skia::textlayout::TypefaceFontStyleSet::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +7099:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29_8146 +7100:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29 +7101:skia::textlayout::TypefaceFontProvider::onMatchFamily\28char\20const*\29\20const +7102:skia::textlayout::TypefaceFontProvider::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +7103:skia::textlayout::TypefaceFontProvider::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +7104:skia::textlayout::TypefaceFontProvider::onGetFamilyName\28int\2c\20SkString*\29\20const +7105:skia::textlayout::TypefaceFontProvider::onCreateStyleSet\28int\29\20const +7106:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29_7997 +7107:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29 +7108:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +7109:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +7110:skia::textlayout::PositionWithAffinity*\20emscripten::internal::raw_constructor\28\29 +7111:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29_7810 +7112:skia::textlayout::ParagraphImpl::visit\28std::__2::function\20const&\29 +7113:skia::textlayout::ParagraphImpl::updateTextAlign\28skia::textlayout::TextAlign\29 +7114:skia::textlayout::ParagraphImpl::updateForegroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +7115:skia::textlayout::ParagraphImpl::updateFontSize\28unsigned\20long\2c\20unsigned\20long\2c\20float\29 +7116:skia::textlayout::ParagraphImpl::updateBackgroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +7117:skia::textlayout::ParagraphImpl::unresolvedGlyphs\28\29 +7118:skia::textlayout::ParagraphImpl::unresolvedCodepoints\28\29 +7119:skia::textlayout::ParagraphImpl::paint\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\29 +7120:skia::textlayout::ParagraphImpl::paint\28SkCanvas*\2c\20float\2c\20float\29 +7121:skia::textlayout::ParagraphImpl::markDirty\28\29 +7122:skia::textlayout::ParagraphImpl::lineNumber\28\29 +7123:skia::textlayout::ParagraphImpl::layout\28float\29 +7124:skia::textlayout::ParagraphImpl::getWordBoundary\28unsigned\20int\29 +7125:skia::textlayout::ParagraphImpl::getRectsForRange\28unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +7126:skia::textlayout::ParagraphImpl::getRectsForPlaceholders\28\29 +7127:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +7128:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29 +7129:skia::textlayout::ParagraphImpl::getLineNumberAt\28unsigned\20long\29\20const +7130:skia::textlayout::ParagraphImpl::getLineNumberAtUTF16Offset\28unsigned\20long\29 +7131:skia::textlayout::ParagraphImpl::getLineMetrics\28std::__2::vector>&\29 +7132:skia::textlayout::ParagraphImpl::getLineMetricsAt\28int\2c\20skia::textlayout::LineMetrics*\29\20const +7133:skia::textlayout::ParagraphImpl::getGlyphPositionAtCoordinate\28float\2c\20float\29 +7134:skia::textlayout::ParagraphImpl::getFonts\28\29\20const +7135:skia::textlayout::ParagraphImpl::getFontAt\28unsigned\20long\29\20const +7136:skia::textlayout::ParagraphImpl::getFontAtUTF16Offset\28unsigned\20long\29 +7137:skia::textlayout::ParagraphImpl::getClosestUTF16GlyphInfoAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +7138:skia::textlayout::ParagraphImpl::getClosestGlyphClusterAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +7139:skia::textlayout::ParagraphImpl::getActualTextRange\28int\2c\20bool\29\20const +7140:skia::textlayout::ParagraphImpl::extendedVisit\28std::__2::function\20const&\29 +7141:skia::textlayout::ParagraphImpl::containsEmoji\28SkTextBlob*\29 +7142:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29::$_0::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +7143:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29 +7144:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29_7750 +7145:skia::textlayout::ParagraphBuilderImpl::pushStyle\28skia::textlayout::TextStyle\20const&\29 +7146:skia::textlayout::ParagraphBuilderImpl::pop\28\29 +7147:skia::textlayout::ParagraphBuilderImpl::peekStyle\28\29 +7148:skia::textlayout::ParagraphBuilderImpl::getText\28\29 +7149:skia::textlayout::ParagraphBuilderImpl::getParagraphStyle\28\29\20const +7150:skia::textlayout::ParagraphBuilderImpl::addText\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +7151:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\2c\20unsigned\20long\29 +7152:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\29 +7153:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\29 +7154:skia::textlayout::ParagraphBuilderImpl::Reset\28\29 +7155:skia::textlayout::ParagraphBuilderImpl::RequiresClientICU\28\29 +7156:skia::textlayout::ParagraphBuilderImpl::Build\28\29 +7157:skia::textlayout::Paragraph::getMinIntrinsicWidth\28\29 +7158:skia::textlayout::Paragraph::getMaxWidth\28\29 +7159:skia::textlayout::Paragraph::getMaxIntrinsicWidth\28\29 +7160:skia::textlayout::Paragraph::getLongestLine\28\29 +7161:skia::textlayout::Paragraph::getIdeographicBaseline\28\29 +7162:skia::textlayout::Paragraph::getHeight\28\29 +7163:skia::textlayout::Paragraph::getAlphabeticBaseline\28\29 +7164:skia::textlayout::Paragraph::didExceedMaxLines\28\29 +7165:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29_7883 +7166:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29 +7167:skia::textlayout::OneLineShaper::~OneLineShaper\28\29_7674 +7168:skia::textlayout::OneLineShaper::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +7169:skia::textlayout::OneLineShaper::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +7170:skia::textlayout::LangIterator::~LangIterator\28\29_7731 +7171:skia::textlayout::LangIterator::~LangIterator\28\29 +7172:skia::textlayout::LangIterator::endOfCurrentRun\28\29\20const +7173:skia::textlayout::LangIterator::currentLanguage\28\29\20const +7174:skia::textlayout::LangIterator::consume\28\29 +7175:skia::textlayout::LangIterator::atEnd\28\29\20const +7176:skia::textlayout::FontCollection::~FontCollection\28\29_7642 +7177:skia::textlayout::CanvasParagraphPainter::translate\28float\2c\20float\29 +7178:skia::textlayout::CanvasParagraphPainter::save\28\29 +7179:skia::textlayout::CanvasParagraphPainter::restore\28\29 +7180:skia::textlayout::CanvasParagraphPainter::drawTextShadow\28sk_sp\20const&\2c\20float\2c\20float\2c\20unsigned\20int\2c\20float\29 +7181:skia::textlayout::CanvasParagraphPainter::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20std::__2::variant\20const&\29 +7182:skia::textlayout::CanvasParagraphPainter::drawRect\28SkRect\20const&\2c\20std::__2::variant\20const&\29 +7183:skia::textlayout::CanvasParagraphPainter::drawPath\28SkPath\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +7184:skia::textlayout::CanvasParagraphPainter::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +7185:skia::textlayout::CanvasParagraphPainter::drawFilledRect\28SkRect\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +7186:skia::textlayout::CanvasParagraphPainter::clipRect\28SkRect\20const&\29 +7187:skhdr::MasteringDisplayColorVolume::serialize\28\29\20const +7188:skhdr::ContentLightLevelInformation::serializePngChunk\28\29\20const +7189:skgpu::tess::FixedCountWedges::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +7190:skgpu::tess::FixedCountWedges::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +7191:skgpu::tess::FixedCountStrokes::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +7192:skgpu::tess::FixedCountCurves::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +7193:skgpu::tess::FixedCountCurves::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +7194:skgpu::ganesh::texture_proxy_view_from_planes\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20skgpu::Budgeted\29::$_0::__invoke\28void*\2c\20void*\29 +7195:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29_11759 +7196:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::visitProxies\28std::__2::function\20const&\29\20const +7197:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +7198:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7199:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7200:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::name\28\29\20const +7201:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::fixedFunctionFlags\28\29\20const +7202:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7203:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::name\28\29\20const +7204:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +7205:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +7206:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +7207:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +7208:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29_11635 +7209:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29 +7210:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::name\28\29\20const +7211:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +7212:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +7213:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29_11030 +7214:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29 +7215:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +7216:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +7217:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7218:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7219:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7220:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::name\28\29\20const +7221:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::fixedFunctionFlags\28\29\20const +7222:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7223:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29_10970 +7224:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29 +7225:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +7226:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +7227:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7228:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7229:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7230:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::name\28\29\20const +7231:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7232:skgpu::ganesh::TriangulatingPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7233:skgpu::ganesh::TriangulatingPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7234:skgpu::ganesh::TriangulatingPathRenderer::name\28\29\20const +7235:skgpu::ganesh::TessellationPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +7236:skgpu::ganesh::TessellationPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +7237:skgpu::ganesh::TessellationPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7238:skgpu::ganesh::TessellationPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7239:skgpu::ganesh::TessellationPathRenderer::name\28\29\20const +7240:skgpu::ganesh::SurfaceDrawContext::willReplaceOpsTask\28skgpu::ganesh::OpsTask*\2c\20skgpu::ganesh::OpsTask*\29 +7241:skgpu::ganesh::SurfaceDrawContext::canDiscardPreviousOpsOnFullClear\28\29\20const +7242:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29_9151 +7243:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +7244:skgpu::ganesh::SurfaceContext::asyncReadPixels\28GrDirectContext*\2c\20SkIRect\20const&\2c\20SkColorType\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +7245:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29_11830 +7246:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29 +7247:skgpu::ganesh::StrokeTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +7248:skgpu::ganesh::StrokeTessellateOp::usesStencil\28\29\20const +7249:skgpu::ganesh::StrokeTessellateOp::onPrepare\28GrOpFlushState*\29 +7250:skgpu::ganesh::StrokeTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7251:skgpu::ganesh::StrokeTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7252:skgpu::ganesh::StrokeTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7253:skgpu::ganesh::StrokeTessellateOp::name\28\29\20const +7254:skgpu::ganesh::StrokeTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7255:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29_11808 +7256:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29 +7257:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +7258:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::programInfo\28\29 +7259:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +7260:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7261:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7262:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::name\28\29\20const +7263:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7264:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29_11797 +7265:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29 +7266:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +7267:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::programInfo\28\29 +7268:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +7269:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7270:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7271:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7272:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::name\28\29\20const +7273:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7274:skgpu::ganesh::StencilClip::~StencilClip\28\29_10174 +7275:skgpu::ganesh::StencilClip::~StencilClip\28\29 +7276:skgpu::ganesh::StencilClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +7277:skgpu::ganesh::StencilClip::getConservativeBounds\28\29\20const +7278:skgpu::ganesh::StencilClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +7279:skgpu::ganesh::SoftwarePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7280:skgpu::ganesh::SoftwarePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7281:skgpu::ganesh::SoftwarePathRenderer::name\28\29\20const +7282:skgpu::ganesh::SmallPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7283:skgpu::ganesh::SmallPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7284:skgpu::ganesh::SmallPathRenderer::name\28\29\20const +7285:skgpu::ganesh::SmallPathAtlasMgr::preFlush\28GrOnFlushResourceProvider*\29 +7286:skgpu::ganesh::SmallPathAtlasMgr::postFlush\28skgpu::Token\29 +7287:skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +7288:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29_11706 +7289:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29 +7290:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::visitProxies\28std::__2::function\20const&\29\20const +7291:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::programInfo\28\29 +7292:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +7293:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7294:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7295:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7296:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::name\28\29\20const +7297:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7298:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_quad_generic\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7299:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7300:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7301:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7302:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7303:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7304:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7305:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +7306:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29_11695 +7307:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29 +7308:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::onTextureSampler\28int\29\20const +7309:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::name\28\29\20const +7310:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +7311:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +7312:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +7313:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +7314:skgpu::ganesh::PathWedgeTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +7315:skgpu::ganesh::PathTessellator::~PathTessellator\28\29 +7316:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29_11670 +7317:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29 +7318:skgpu::ganesh::PathTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +7319:skgpu::ganesh::PathTessellateOp::usesStencil\28\29\20const +7320:skgpu::ganesh::PathTessellateOp::onPrepare\28GrOpFlushState*\29 +7321:skgpu::ganesh::PathTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7322:skgpu::ganesh::PathTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7323:skgpu::ganesh::PathTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7324:skgpu::ganesh::PathTessellateOp::name\28\29\20const +7325:skgpu::ganesh::PathTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7326:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29_11653 +7327:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29 +7328:skgpu::ganesh::PathStencilCoverOp::visitProxies\28std::__2::function\20const&\29\20const +7329:skgpu::ganesh::PathStencilCoverOp::onPrepare\28GrOpFlushState*\29 +7330:skgpu::ganesh::PathStencilCoverOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7331:skgpu::ganesh::PathStencilCoverOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7332:skgpu::ganesh::PathStencilCoverOp::name\28\29\20const +7333:skgpu::ganesh::PathStencilCoverOp::fixedFunctionFlags\28\29\20const +7334:skgpu::ganesh::PathStencilCoverOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7335:skgpu::ganesh::PathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +7336:skgpu::ganesh::PathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +7337:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29_11629 +7338:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29 +7339:skgpu::ganesh::PathInnerTriangulateOp::visitProxies\28std::__2::function\20const&\29\20const +7340:skgpu::ganesh::PathInnerTriangulateOp::onPrepare\28GrOpFlushState*\29 +7341:skgpu::ganesh::PathInnerTriangulateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7342:skgpu::ganesh::PathInnerTriangulateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7343:skgpu::ganesh::PathInnerTriangulateOp::name\28\29\20const +7344:skgpu::ganesh::PathInnerTriangulateOp::fixedFunctionFlags\28\29\20const +7345:skgpu::ganesh::PathInnerTriangulateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7346:skgpu::ganesh::PathCurveTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +7347:skgpu::ganesh::OpsTask::~OpsTask\28\29_11568 +7348:skgpu::ganesh::OpsTask::onPrepare\28GrOpFlushState*\29 +7349:skgpu::ganesh::OpsTask::onPrePrepare\28GrRecordingContext*\29 +7350:skgpu::ganesh::OpsTask::onMakeSkippable\28\29 +7351:skgpu::ganesh::OpsTask::onIsUsed\28GrSurfaceProxy*\29\20const +7352:skgpu::ganesh::OpsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +7353:skgpu::ganesh::OpsTask::endFlush\28GrDrawingManager*\29 +7354:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29_11540 +7355:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::visitProxies\28std::__2::function\20const&\29\20const +7356:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onPrepareDraws\28GrMeshDrawTarget*\29 +7357:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7358:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7359:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7360:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::name\28\29\20const +7361:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7362:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29_11552 +7363:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29 +7364:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::onTextureSampler\28int\29\20const +7365:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::name\28\29\20const +7366:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +7367:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +7368:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +7369:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +7370:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29_11328 +7371:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29 +7372:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +7373:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +7374:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7375:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7376:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7377:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::name\28\29\20const +7378:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7379:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::clipToShape\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkClipOp\2c\20SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\29 +7380:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29_11345 +7381:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29 +7382:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::name\28\29\20const +7383:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +7384:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +7385:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +7386:skgpu::ganesh::DrawableOp::~DrawableOp\28\29_11318 +7387:skgpu::ganesh::DrawableOp::~DrawableOp\28\29 +7388:skgpu::ganesh::DrawableOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7389:skgpu::ganesh::DrawableOp::name\28\29\20const +7390:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29_11221 +7391:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29 +7392:skgpu::ganesh::DrawAtlasPathOp::visitProxies\28std::__2::function\20const&\29\20const +7393:skgpu::ganesh::DrawAtlasPathOp::onPrepare\28GrOpFlushState*\29 +7394:skgpu::ganesh::DrawAtlasPathOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7395:skgpu::ganesh::DrawAtlasPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7396:skgpu::ganesh::DrawAtlasPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7397:skgpu::ganesh::DrawAtlasPathOp::name\28\29\20const +7398:skgpu::ganesh::DrawAtlasPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7399:skgpu::ganesh::Device::~Device\28\29_8773 +7400:skgpu::ganesh::Device::~Device\28\29 +7401:skgpu::ganesh::Device::strikeDeviceInfo\28\29\20const +7402:skgpu::ganesh::Device::snapSpecial\28SkIRect\20const&\2c\20bool\29 +7403:skgpu::ganesh::Device::snapSpecialScaled\28SkIRect\20const&\2c\20SkISize\20const&\29 +7404:skgpu::ganesh::Device::replaceClip\28SkIRect\20const&\29 +7405:skgpu::ganesh::Device::pushClipStack\28\29 +7406:skgpu::ganesh::Device::popClipStack\28\29 +7407:skgpu::ganesh::Device::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +7408:skgpu::ganesh::Device::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +7409:skgpu::ganesh::Device::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +7410:skgpu::ganesh::Device::onClipShader\28sk_sp\29 +7411:skgpu::ganesh::Device::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +7412:skgpu::ganesh::Device::isClipWideOpen\28\29\20const +7413:skgpu::ganesh::Device::isClipRect\28\29\20const +7414:skgpu::ganesh::Device::isClipEmpty\28\29\20const +7415:skgpu::ganesh::Device::isClipAntiAliased\28\29\20const +7416:skgpu::ganesh::Device::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +7417:skgpu::ganesh::Device::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +7418:skgpu::ganesh::Device::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +7419:skgpu::ganesh::Device::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +7420:skgpu::ganesh::Device::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +7421:skgpu::ganesh::Device::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +7422:skgpu::ganesh::Device::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +7423:skgpu::ganesh::Device::drawPaint\28SkPaint\20const&\29 +7424:skgpu::ganesh::Device::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +7425:skgpu::ganesh::Device::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +7426:skgpu::ganesh::Device::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +7427:skgpu::ganesh::Device::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +7428:skgpu::ganesh::Device::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +7429:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +7430:skgpu::ganesh::Device::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +7431:skgpu::ganesh::Device::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +7432:skgpu::ganesh::Device::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +7433:skgpu::ganesh::Device::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +7434:skgpu::ganesh::Device::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +7435:skgpu::ganesh::Device::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +7436:skgpu::ganesh::Device::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +7437:skgpu::ganesh::Device::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +7438:skgpu::ganesh::Device::devClipBounds\28\29\20const +7439:skgpu::ganesh::Device::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +7440:skgpu::ganesh::Device::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +7441:skgpu::ganesh::Device::convertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +7442:skgpu::ganesh::Device::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +7443:skgpu::ganesh::Device::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +7444:skgpu::ganesh::Device::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +7445:skgpu::ganesh::Device::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +7446:skgpu::ganesh::Device::baseRecorder\28\29\20const +7447:skgpu::ganesh::Device::android_utils_clipWithStencil\28\29 +7448:skgpu::ganesh::DefaultPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +7449:skgpu::ganesh::DefaultPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +7450:skgpu::ganesh::DefaultPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7451:skgpu::ganesh::DefaultPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7452:skgpu::ganesh::DefaultPathRenderer::name\28\29\20const +7453:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::name\28\29\20const +7454:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +7455:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +7456:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +7457:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::name\28\29\20const +7458:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +7459:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +7460:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +7461:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29_11144 +7462:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29 +7463:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::visitProxies\28std::__2::function\20const&\29\20const +7464:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::programInfo\28\29 +7465:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +7466:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7467:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7468:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7469:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::name\28\29\20const +7470:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::fixedFunctionFlags\28\29\20const +7471:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7472:skgpu::ganesh::DashLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7473:skgpu::ganesh::DashLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7474:skgpu::ganesh::DashLinePathRenderer::name\28\29\20const +7475:skgpu::ganesh::ClipStack::~ClipStack\28\29_8734 +7476:skgpu::ganesh::ClipStack::preApply\28SkRect\20const&\2c\20GrAA\29\20const +7477:skgpu::ganesh::ClipStack::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +7478:skgpu::ganesh::ClearOp::~ClearOp\28\29 +7479:skgpu::ganesh::ClearOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7480:skgpu::ganesh::ClearOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7481:skgpu::ganesh::ClearOp::name\28\29\20const +7482:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29_11116 +7483:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29 +7484:skgpu::ganesh::AtlasTextOp::visitProxies\28std::__2::function\20const&\29\20const +7485:skgpu::ganesh::AtlasTextOp::onPrepareDraws\28GrMeshDrawTarget*\29 +7486:skgpu::ganesh::AtlasTextOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +7487:skgpu::ganesh::AtlasTextOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7488:skgpu::ganesh::AtlasTextOp::name\28\29\20const +7489:skgpu::ganesh::AtlasTextOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +7490:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29_11096 +7491:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29 +7492:skgpu::ganesh::AtlasRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +7493:skgpu::ganesh::AtlasRenderTask::onExecute\28GrOpFlushState*\29 +7494:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11060 +7495:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +7496:skgpu::ganesh::AtlasPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7497:skgpu::ganesh::AtlasPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7498:skgpu::ganesh::AtlasPathRenderer::name\28\29\20const +7499:skgpu::ganesh::AALinearizingConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7500:skgpu::ganesh::AALinearizingConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7501:skgpu::ganesh::AALinearizingConvexPathRenderer::name\28\29\20const +7502:skgpu::ganesh::AAHairLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7503:skgpu::ganesh::AAHairLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7504:skgpu::ganesh::AAHairLinePathRenderer::name\28\29\20const +7505:skgpu::ganesh::AAConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +7506:skgpu::ganesh::AAConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +7507:skgpu::ganesh::AAConvexPathRenderer::name\28\29\20const +7508:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29_10218 +7509:skgpu::TAsyncReadResult::rowBytes\28int\29\20const +7510:skgpu::TAsyncReadResult::data\28int\29\20const +7511:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29_9646 +7512:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29 +7513:skgpu::StringKeyBuilder::appendComment\28char\20const*\29 +7514:skgpu::StringKeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +7515:skgpu::ShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\2c\20bool\29 +7516:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29_12596 +7517:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29 +7518:skgpu::RectanizerSkyline::reset\28\29 +7519:skgpu::RectanizerSkyline::percentFull\28\29\20const +7520:skgpu::RectanizerPow2::reset\28\29 +7521:skgpu::RectanizerPow2::percentFull\28\29\20const +7522:skgpu::RectanizerPow2::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +7523:skgpu::Plot::~Plot\28\29_12571 +7524:skgpu::Plot::~Plot\28\29 +7525:skgpu::KeyBuilder::~KeyBuilder\28\29 +7526:skgpu::KeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +7527:skgpu::DefaultShaderErrorHandler\28\29::DefaultShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\29 +7528:skcpu::bw_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +7529:skcpu::bw_pt_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +7530:skcpu::bw_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +7531:skcpu::bw_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +7532:skcpu::aa_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +7533:skcpu::aa_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +7534:skcpu::aa_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +7535:skcpu::Draw::~Draw\28\29 +7536:skcpu::Draw::paintMasks\28SkZip\2c\20SkPaint\20const&\29\20const +7537:sk_write_fn\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20long\29 +7538:sk_sp*\20emscripten::internal::MemberAccess>::getWire\28sk_sp\20SimpleImageInfo::*\20const&\2c\20SimpleImageInfo&\29 +7539:sk_read_user_chunk\28png_struct_def*\2c\20png_unknown_chunk_t*\29 +7540:sk_mmap_releaseproc\28void\20const*\2c\20void*\29 +7541:sk_ft_stream_io\28FT_StreamRec_*\2c\20unsigned\20long\2c\20unsigned\20char*\2c\20unsigned\20long\29 +7542:sk_ft_realloc\28FT_MemoryRec_*\2c\20long\2c\20long\2c\20void*\29 +7543:sk_ft_free\28FT_MemoryRec_*\2c\20void*\29 +7544:sk_ft_alloc\28FT_MemoryRec_*\2c\20long\29 +7545:sk_error_fn\28png_struct_def*\2c\20char\20const*\29_13082 +7546:sk_error_fn\28png_struct_def*\2c\20char\20const*\29 +7547:sfnt_table_info +7548:sfnt_load_face +7549:sfnt_is_postscript +7550:sfnt_is_alphanumeric +7551:sfnt_init_face +7552:sfnt_get_ps_name +7553:sfnt_get_name_index +7554:sfnt_get_name_id +7555:sfnt_get_interface +7556:sfnt_get_glyph_name +7557:sfnt_get_charset_id +7558:sfnt_done_face +7559:setup_syllables_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7560:setup_syllables_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7561:setup_syllables_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7562:setup_syllables_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7563:setup_masks_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7564:setup_masks_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7565:setup_masks_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7566:setup_masks_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7567:setup_masks_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7568:setup_masks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7569:service_cleanup\28\29 +7570:sep_upsample +7571:self_destruct +7572:scriptGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +7573:save_marker +7574:sample8\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7575:sample6\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7576:sample4\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7577:sample2\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7578:sample1\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7579:rgb_rgb_convert +7580:rgb_rgb565_convert +7581:rgb_rgb565D_convert +7582:rgb_gray_convert +7583:reverse_hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +7584:reverse_hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +7585:reset_marker_reader +7586:reset_input_controller +7587:reset_error_mgr +7588:request_virt_sarray +7589:request_virt_barray +7590:reorder_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7591:reorder_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7592:reorder_marks_hebrew\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +7593:reorder_marks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +7594:reorder_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7595:release_data\28void*\2c\20void*\29 +7596:record_stch\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7597:record_rphf_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7598:record_pref_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7599:realize_virt_arrays +7600:read_restart_marker +7601:read_markers +7602:read_data_from_FT_Stream +7603:rbbi_cleanup_74 +7604:quantize_ord_dither +7605:quantize_fs_dither +7606:quantize3_ord_dither +7607:putil_cleanup\28\29 +7608:psnames_get_service +7609:pshinter_get_t2_funcs +7610:pshinter_get_t1_funcs +7611:pshinter_get_globals_funcs +7612:psh_globals_new +7613:psh_globals_destroy +7614:psaux_get_glyph_name +7615:ps_table_release +7616:ps_table_new +7617:ps_table_done +7618:ps_table_add +7619:ps_property_set +7620:ps_property_get +7621:ps_parser_to_token_array +7622:ps_parser_to_int +7623:ps_parser_to_fixed_array +7624:ps_parser_to_fixed +7625:ps_parser_to_coord_array +7626:ps_parser_to_bytes +7627:ps_parser_skip_spaces +7628:ps_parser_load_field_table +7629:ps_parser_init +7630:ps_hints_t2mask +7631:ps_hints_t2counter +7632:ps_hints_t1stem3 +7633:ps_hints_t1reset +7634:ps_hints_close +7635:ps_hints_apply +7636:ps_hinter_init +7637:ps_hinter_done +7638:ps_get_standard_strings +7639:ps_get_macintosh_name +7640:ps_decoder_init +7641:ps_builder_init +7642:progress_monitor\28jpeg_common_struct*\29 +7643:process_data_simple_main +7644:process_data_crank_post +7645:process_data_context_main +7646:prescan_quantize +7647:preprocess_text_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7648:preprocess_text_thai\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7649:preprocess_text_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7650:preprocess_text_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7651:prepare_for_output_pass +7652:premultiply_data +7653:premul_rgb\28SkRGBA4f<\28SkAlphaType\292>\29 +7654:premul_polar\28SkRGBA4f<\28SkAlphaType\292>\29 +7655:postprocess_glyphs_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7656:post_process_prepass +7657:post_process_2pass +7658:post_process_1pass +7659:portable::xy_to_unit_angle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7660:portable::xy_to_radius\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7661:portable::xy_to_2pt_conical_well_behaved\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7662:portable::xy_to_2pt_conical_strip\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7663:portable::xy_to_2pt_conical_smaller\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7664:portable::xy_to_2pt_conical_greater\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7665:portable::xy_to_2pt_conical_focal_on_circle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7666:portable::xor_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7667:portable::white_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7668:portable::unpremul_polar\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7669:portable::unpremul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7670:portable::uniform_color_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7671:portable::trace_var\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7672:portable::trace_scope\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7673:portable::trace_line\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7674:portable::trace_exit\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7675:portable::trace_enter\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7676:portable::tan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7677:portable::swizzle_copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7678:portable::swizzle_copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7679:portable::swizzle_copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7680:portable::swizzle_copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7681:portable::swizzle_copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7682:portable::swizzle_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7683:portable::swizzle_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7684:portable::swizzle_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7685:portable::swizzle_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7686:portable::swizzle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7687:portable::swap_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7688:portable::swap_rb_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7689:portable::swap_rb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7690:portable::sub_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7691:portable::sub_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7692:portable::sub_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7693:portable::sub_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7694:portable::sub_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7695:portable::sub_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7696:portable::sub_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7697:portable::sub_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7698:portable::sub_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7699:portable::sub_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7700:portable::store_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7701:portable::store_src_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7702:portable::store_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7703:portable::store_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7704:portable::store_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7705:portable::store_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7706:portable::store_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7707:portable::store_r8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7708:portable::store_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7709:portable::store_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7710:portable::store_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7711:portable::store_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7712:portable::store_device_xy01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7713:portable::store_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7714:portable::store_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7715:portable::store_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7716:portable::store_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7717:portable::store_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7718:portable::store_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7719:portable::store_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7720:portable::store_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7721:portable::store_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7722:portable::store_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7723:portable::store_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7724:portable::store_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7725:portable::start_pipeline\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkRasterPipelineStage*\2c\20SkSpan\2c\20unsigned\20char*\29 +7726:portable::stack_rewind\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7727:portable::stack_checkpoint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7728:portable::srcover_rgba_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7729:portable::srcover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7730:portable::srcout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7731:portable::srcin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7732:portable::srcatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7733:portable::sqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7734:portable::splat_4_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7735:portable::splat_3_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7736:portable::splat_2_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7737:portable::softlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7738:portable::smoothstep_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7739:portable::sin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7740:portable::shuffle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7741:portable::set_base_pointer\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7742:portable::seed_shader\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7743:portable::screen\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7744:portable::scale_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7745:portable::scale_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7746:portable::scale_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7747:portable::scale_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7748:portable::saturation\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7749:portable::rgb_to_hsl\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7750:portable::repeat_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7751:portable::repeat_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7752:portable::repeat_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7753:portable::refract_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7754:portable::reenable_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7755:portable::rect_memset64\28unsigned\20long\20long*\2c\20unsigned\20long\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +7756:portable::rect_memset32\28unsigned\20int*\2c\20unsigned\20int\2c\20int\2c\20unsigned\20long\2c\20int\29 +7757:portable::rect_memset16\28unsigned\20short*\2c\20unsigned\20short\2c\20int\2c\20unsigned\20long\2c\20int\29 +7758:portable::premul_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7759:portable::premul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7760:portable::pow_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7761:portable::plus_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7762:portable::perlin_noise\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7763:portable::parametric\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7764:portable::overlay\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7765:portable::ootf\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7766:portable::negate_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7767:portable::multiply\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7768:portable::mul_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7769:portable::mul_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7770:portable::mul_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7771:portable::mul_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7772:portable::mul_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7773:portable::mul_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7774:portable::mul_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7775:portable::mul_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7776:portable::mul_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7777:portable::mul_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7778:portable::mul_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7779:portable::mul_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7780:portable::move_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7781:portable::move_dst_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7782:portable::modulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7783:portable::mod_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7784:portable::mod_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7785:portable::mod_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7786:portable::mod_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7787:portable::mod_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7788:portable::mix_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7789:portable::mix_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7790:portable::mix_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7791:portable::mix_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7792:portable::mix_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7793:portable::mix_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7794:portable::mix_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7795:portable::mix_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7796:portable::mix_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7797:portable::mix_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7798:portable::mirror_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7799:portable::mirror_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7800:portable::mirror_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7801:portable::mipmap_linear_update\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7802:portable::mipmap_linear_init\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7803:portable::mipmap_linear_finish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7804:portable::min_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7805:portable::min_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7806:portable::min_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7807:portable::min_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7808:portable::min_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7809:portable::min_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7810:portable::min_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7811:portable::min_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7812:portable::min_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7813:portable::min_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7814:portable::min_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7815:portable::min_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7816:portable::min_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7817:portable::min_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7818:portable::min_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7819:portable::min_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7820:portable::merge_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7821:portable::merge_inv_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7822:portable::merge_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7823:portable::memset32\28unsigned\20int*\2c\20unsigned\20int\2c\20int\29 +7824:portable::memset16\28unsigned\20short*\2c\20unsigned\20short\2c\20int\29 +7825:portable::max_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7826:portable::max_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7827:portable::max_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7828:portable::max_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7829:portable::max_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7830:portable::max_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7831:portable::max_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7832:portable::max_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7833:portable::max_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7834:portable::max_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7835:portable::max_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7836:portable::max_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7837:portable::max_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7838:portable::max_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7839:portable::max_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7840:portable::max_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7841:portable::matrix_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7842:portable::matrix_scale_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7843:portable::matrix_perspective\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7844:portable::matrix_multiply_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7845:portable::matrix_multiply_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7846:portable::matrix_multiply_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7847:portable::matrix_4x5\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7848:portable::matrix_4x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7849:portable::matrix_3x4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7850:portable::matrix_3x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7851:portable::matrix_2x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7852:portable::mask_off_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7853:portable::mask_off_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7854:portable::mask_2pt_conical_nan\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7855:portable::mask_2pt_conical_degenerates\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7856:portable::luminosity\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7857:portable::log_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7858:portable::log2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7859:portable::load_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7860:portable::load_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7861:portable::load_rgf16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7862:portable::load_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7863:portable::load_rg88_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7864:portable::load_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7865:portable::load_rg1616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7866:portable::load_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7867:portable::load_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7868:portable::load_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7869:portable::load_f32_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7870:portable::load_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7871:portable::load_f16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7872:portable::load_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7873:portable::load_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7874:portable::load_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7875:portable::load_af16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7876:portable::load_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7877:portable::load_a8_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7878:portable::load_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7879:portable::load_a16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7880:portable::load_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7881:portable::load_8888_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7882:portable::load_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7883:portable::load_565_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7884:portable::load_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7885:portable::load_4444_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7886:portable::load_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7887:portable::load_16161616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7888:portable::load_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7889:portable::load_10x6_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7890:portable::load_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7891:portable::load_1010102_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7892:portable::load_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7893:portable::load_1010102_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7894:portable::load_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7895:portable::load_10101010_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7896:portable::load_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7897:portable::lighten\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7898:portable::lerp_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7899:portable::lerp_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7900:portable::lerp_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7901:portable::lerp_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7902:portable::just_return\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7903:portable::jump\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7904:portable::invsqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7905:portable::invsqrt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7906:portable::invsqrt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7907:portable::invsqrt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7908:portable::inverted_CMYK_to_RGB1\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +7909:portable::inverted_CMYK_to_BGR1\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +7910:portable::inverse_mat4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7911:portable::inverse_mat3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7912:portable::inverse_mat2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7913:portable::init_lane_masks\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7914:portable::hue\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7915:portable::hsl_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7916:portable::hardlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7917:portable::gray_to_RGB1\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7918:portable::grayA_to_rgbA\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7919:portable::grayA_to_RGBA\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7920:portable::gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7921:portable::gauss_a_to_rgba\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7922:portable::gather_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7923:portable::gather_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7924:portable::gather_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7925:portable::gather_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7926:portable::gather_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7927:portable::gather_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7928:portable::gather_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7929:portable::gather_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7930:portable::gather_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7931:portable::gather_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7932:portable::gather_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7933:portable::gather_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7934:portable::gather_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7935:portable::gather_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7936:portable::gather_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7937:portable::gather_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7938:portable::gamma_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7939:portable::force_opaque_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7940:portable::force_opaque\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7941:portable::floor_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7942:portable::floor_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7943:portable::floor_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7944:portable::floor_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7945:portable::exp_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7946:portable::exp2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7947:portable::exclusion\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7948:portable::exchange_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7949:portable::evenly_spaced_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7950:portable::evenly_spaced_2_stop_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7951:portable::emboss\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7952:portable::dstover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7953:portable::dstout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7954:portable::dstin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7955:portable::dstatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7956:portable::dot_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7957:portable::dot_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7958:portable::dot_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7959:portable::div_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7960:portable::div_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7961:portable::div_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7962:portable::div_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7963:portable::div_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7964:portable::div_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7965:portable::div_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7966:portable::div_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7967:portable::div_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7968:portable::div_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7969:portable::div_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7970:portable::div_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7971:portable::div_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7972:portable::div_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7973:portable::div_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7974:portable::dither\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7975:portable::difference\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7976:portable::decal_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7977:portable::decal_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7978:portable::decal_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7979:portable::debug_r_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7980:portable::debug_g_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7981:portable::debug_b_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7982:portable::debug_b\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7983:portable::debug_a_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7984:portable::debug_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7985:portable::darken\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7986:portable::css_oklab_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7987:portable::css_oklab_gamut_map_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7988:portable::css_lab_to_xyz\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7989:portable::css_hwb_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7990:portable::css_hsl_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7991:portable::css_hcl_to_lab\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7992:portable::cos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7993:portable::copy_uniform\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7994:portable::copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7995:portable::copy_slot_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7996:portable::copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7997:portable::copy_immutable_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7998:portable::copy_constant\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7999:portable::copy_4_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8000:portable::copy_4_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8001:portable::copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8002:portable::copy_4_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8003:portable::copy_3_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8004:portable::copy_3_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8005:portable::copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8006:portable::copy_3_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8007:portable::copy_2_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8008:portable::copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8009:portable::continue_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8010:portable::colordodge\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8011:portable::colorburn\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8012:portable::color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8013:portable::cmpne_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8014:portable::cmpne_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8015:portable::cmpne_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8016:portable::cmpne_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8017:portable::cmpne_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8018:portable::cmpne_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8019:portable::cmpne_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8020:portable::cmpne_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8021:portable::cmpne_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8022:portable::cmpne_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8023:portable::cmpne_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8024:portable::cmpne_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8025:portable::cmplt_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8026:portable::cmplt_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8027:portable::cmplt_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8028:portable::cmplt_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8029:portable::cmplt_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8030:portable::cmplt_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8031:portable::cmplt_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8032:portable::cmplt_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8033:portable::cmplt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8034:portable::cmplt_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8035:portable::cmplt_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8036:portable::cmplt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8037:portable::cmplt_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8038:portable::cmplt_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8039:portable::cmplt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8040:portable::cmplt_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8041:portable::cmplt_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8042:portable::cmplt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8043:portable::cmple_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8044:portable::cmple_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8045:portable::cmple_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8046:portable::cmple_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8047:portable::cmple_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8048:portable::cmple_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8049:portable::cmple_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8050:portable::cmple_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8051:portable::cmple_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8052:portable::cmple_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8053:portable::cmple_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8054:portable::cmple_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8055:portable::cmple_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8056:portable::cmple_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8057:portable::cmple_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8058:portable::cmple_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8059:portable::cmple_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8060:portable::cmple_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8061:portable::cmpeq_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8062:portable::cmpeq_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8063:portable::cmpeq_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8064:portable::cmpeq_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8065:portable::cmpeq_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8066:portable::cmpeq_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8067:portable::cmpeq_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8068:portable::cmpeq_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8069:portable::cmpeq_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8070:portable::cmpeq_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8071:portable::cmpeq_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8072:portable::cmpeq_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8073:portable::clear\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8074:portable::clamp_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8075:portable::clamp_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8076:portable::clamp_gamut\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8077:portable::clamp_a_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8078:portable::clamp_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8079:portable::ceil_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8080:portable::ceil_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8081:portable::ceil_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8082:portable::ceil_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8083:portable::cast_to_uint_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8084:portable::cast_to_uint_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8085:portable::cast_to_uint_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8086:portable::cast_to_uint_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8087:portable::cast_to_int_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8088:portable::cast_to_int_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8089:portable::cast_to_int_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8090:portable::cast_to_int_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8091:portable::cast_to_float_from_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8092:portable::cast_to_float_from_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8093:portable::cast_to_float_from_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8094:portable::cast_to_float_from_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8095:portable::cast_to_float_from_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8096:portable::cast_to_float_from_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8097:portable::cast_to_float_from_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8098:portable::cast_to_float_from_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8099:portable::case_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8100:portable::callback\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8101:portable::byte_tables\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8102:portable::bt709_luminance_or_luma_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8103:portable::bt709_luminance_or_luma_to_alpha\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8104:portable::branch_if_no_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8105:portable::branch_if_no_active_lanes_eq\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8106:portable::branch_if_any_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8107:portable::branch_if_all_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8108:portable::blit_row_s32a_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +8109:portable::black_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8110:portable::bitwise_xor_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8111:portable::bitwise_xor_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8112:portable::bitwise_xor_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8113:portable::bitwise_xor_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8114:portable::bitwise_xor_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8115:portable::bitwise_xor_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8116:portable::bitwise_or_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8117:portable::bitwise_or_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8118:portable::bitwise_or_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8119:portable::bitwise_or_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8120:portable::bitwise_or_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8121:portable::bitwise_and_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8122:portable::bitwise_and_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8123:portable::bitwise_and_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8124:portable::bitwise_and_imm_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8125:portable::bitwise_and_imm_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8126:portable::bitwise_and_imm_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8127:portable::bitwise_and_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8128:portable::bitwise_and_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8129:portable::bitwise_and_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8130:portable::bilinear_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8131:portable::bilinear_py\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8132:portable::bilinear_px\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8133:portable::bilinear_ny\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8134:portable::bilinear_nx\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8135:portable::bicubic_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8136:portable::bicubic_p3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8137:portable::bicubic_p3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8138:portable::bicubic_p1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8139:portable::bicubic_p1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8140:portable::bicubic_n3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8141:portable::bicubic_n3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8142:portable::bicubic_n1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8143:portable::bicubic_n1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8144:portable::bicubic_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8145:portable::atan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8146:portable::atan2_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8147:portable::asin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8148:portable::alter_2pt_conical_unswap\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8149:portable::alter_2pt_conical_compensate_focal\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8150:portable::alpha_to_red_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8151:portable::alpha_to_red\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8152:portable::alpha_to_gray_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8153:portable::alpha_to_gray\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8154:portable::add_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8155:portable::add_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8156:portable::add_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8157:portable::add_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8158:portable::add_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8159:portable::add_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8160:portable::add_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8161:portable::add_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8162:portable::add_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8163:portable::add_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8164:portable::add_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8165:portable::add_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8166:portable::acos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8167:portable::accumulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8168:portable::abs_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8169:portable::abs_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8170:portable::abs_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8171:portable::abs_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8172:portable::RGB_to_RGB1\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +8173:portable::RGB_to_BGR1\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +8174:portable::RGBA_to_rgbA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +8175:portable::RGBA_to_bgrA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +8176:portable::RGBA_to_BGRA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +8177:portable::PQish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8178:portable::HLGish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8179:portable::HLGinvish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +8180:pop_arg_long_double +8181:pointerTOCLookupFn\28UDataMemory\20const*\2c\20char\20const*\2c\20int*\2c\20UErrorCode*\29 +8182:png_read_filter_row_up +8183:png_read_filter_row_sub +8184:png_read_filter_row_paeth_multibyte_pixel +8185:png_read_filter_row_paeth_1byte_pixel +8186:png_read_filter_row_avg +8187:pass2_no_dither +8188:pass2_fs_dither +8189:override_features_khmer\28hb_ot_shape_planner_t*\29 +8190:override_features_indic\28hb_ot_shape_planner_t*\29 +8191:override_features_hangul\28hb_ot_shape_planner_t*\29 +8192:output_message +8193:operator\20delete\28void*\2c\20unsigned\20long\29 +8194:offsetTOCLookupFn\28UDataMemory\20const*\2c\20char\20const*\2c\20int*\2c\20UErrorCode*\29 +8195:null_convert +8196:noop_upsample +8197:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_17852 +8198:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +8199:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_17778 +8200:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +8201:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10895 +8202:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10894 +8203:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10892 +8204:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +8205:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +8206:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +8207:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_11734 +8208:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +8209:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +8210:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11064 +8211:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +8212:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +8213:non-virtual\20thunk\20to\20icu_74::UnicodeSet::~UnicodeSet\28\29_14540 +8214:non-virtual\20thunk\20to\20icu_74::UnicodeSet::~UnicodeSet\28\29 +8215:non-virtual\20thunk\20to\20icu_74::UnicodeSet::toPattern\28icu_74::UnicodeString&\2c\20signed\20char\29\20const +8216:non-virtual\20thunk\20to\20icu_74::UnicodeSet::matches\28icu_74::Replaceable\20const&\2c\20int&\2c\20int\2c\20signed\20char\29 +8217:non-virtual\20thunk\20to\20icu_74::UnicodeSet::matchesIndexValue\28unsigned\20char\29\20const +8218:non-virtual\20thunk\20to\20icu_74::UnicodeSet::addMatchSetTo\28icu_74::UnicodeSet&\29\20const +8219:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10040 +8220:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +8221:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +8222:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +8223:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +8224:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +8225:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29_9565 +8226:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29 +8227:non-virtual\20thunk\20to\20GrOpFlushState::writeView\28\29\20const +8228:non-virtual\20thunk\20to\20GrOpFlushState::usesMSAASurface\28\29\20const +8229:non-virtual\20thunk\20to\20GrOpFlushState::threadSafeCache\28\29\20const +8230:non-virtual\20thunk\20to\20GrOpFlushState::strikeCache\28\29\20const +8231:non-virtual\20thunk\20to\20GrOpFlushState::smallPathAtlasManager\28\29\20const +8232:non-virtual\20thunk\20to\20GrOpFlushState::sampledProxyArray\28\29 +8233:non-virtual\20thunk\20to\20GrOpFlushState::rtProxy\28\29\20const +8234:non-virtual\20thunk\20to\20GrOpFlushState::resourceProvider\28\29\20const +8235:non-virtual\20thunk\20to\20GrOpFlushState::renderPassBarriers\28\29\20const +8236:non-virtual\20thunk\20to\20GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +8237:non-virtual\20thunk\20to\20GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +8238:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndirectDraws\28int\29 +8239:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndices\28int\29 +8240:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +8241:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +8242:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +8243:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +8244:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +8245:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +8246:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +8247:non-virtual\20thunk\20to\20GrOpFlushState::dstProxyView\28\29\20const +8248:non-virtual\20thunk\20to\20GrOpFlushState::detachAppliedClip\28\29 +8249:non-virtual\20thunk\20to\20GrOpFlushState::deferredUploadTarget\28\29 +8250:non-virtual\20thunk\20to\20GrOpFlushState::colorLoadOp\28\29\20const +8251:non-virtual\20thunk\20to\20GrOpFlushState::caps\28\29\20const +8252:non-virtual\20thunk\20to\20GrOpFlushState::atlasManager\28\29\20const +8253:non-virtual\20thunk\20to\20GrOpFlushState::appliedClip\28\29\20const +8254:non-virtual\20thunk\20to\20GrGpuBuffer::~GrGpuBuffer\28\29 +8255:non-virtual\20thunk\20to\20GrGpuBuffer::unref\28\29\20const +8256:non-virtual\20thunk\20to\20GrGpuBuffer::ref\28\29\20const +8257:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12505 +8258:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +8259:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onSetLabel\28\29 +8260:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +8261:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +8262:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +8263:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +8264:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::backendFormat\28\29\20const +8265:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_10785 +8266:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +8267:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +8268:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +8269:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::dstColor\28\29 +8270:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29_12145 +8271:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29 +8272:new_color_map_2_quant +8273:new_color_map_1_quant +8274:merged_2v_upsample +8275:merged_1v_upsample +8276:locale_cleanup\28\29 +8277:lin_srgb_to_oklab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +8278:lin_srgb_to_okhcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +8279:legalstub$dynCall_vijjjii +8280:legalstub$dynCall_vijiii +8281:legalstub$dynCall_viji +8282:legalstub$dynCall_vij +8283:legalstub$dynCall_viijii +8284:legalstub$dynCall_viiiiij +8285:legalstub$dynCall_jiji +8286:legalstub$dynCall_jiiiiji +8287:legalstub$dynCall_jiiiiii +8288:legalstub$dynCall_jii +8289:legalstub$dynCall_ji +8290:legalstub$dynCall_iijjiii +8291:legalstub$dynCall_iijj +8292:legalstub$dynCall_iiji +8293:legalstub$dynCall_iij +8294:legalstub$dynCall_iiiji +8295:legalstub$dynCall_iiiiijj +8296:legalstub$dynCall_iiiiij +8297:legalstub$dynCall_iiiiiijj +8298:lcd_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +8299:layoutGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +8300:jpeg_start_output +8301:jpeg_start_decompress +8302:jpeg_skip_scanlines +8303:jpeg_save_markers +8304:jpeg_resync_to_restart +8305:jpeg_read_scanlines +8306:jpeg_read_raw_data +8307:jpeg_read_header +8308:jpeg_input_complete +8309:jpeg_idct_islow +8310:jpeg_idct_ifast +8311:jpeg_idct_float +8312:jpeg_idct_9x9 +8313:jpeg_idct_7x7 +8314:jpeg_idct_6x6 +8315:jpeg_idct_5x5 +8316:jpeg_idct_4x4 +8317:jpeg_idct_3x3 +8318:jpeg_idct_2x2 +8319:jpeg_idct_1x1 +8320:jpeg_idct_16x16 +8321:jpeg_idct_15x15 +8322:jpeg_idct_14x14 +8323:jpeg_idct_13x13 +8324:jpeg_idct_12x12 +8325:jpeg_idct_11x11 +8326:jpeg_idct_10x10 +8327:jpeg_finish_output +8328:jpeg_destroy_decompress +8329:jpeg_crop_scanline +8330:is_deleted_glyph\28hb_glyph_info_t\20const*\29 +8331:isRegionalIndicator\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8332:isPOSIX_xdigit\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8333:isPOSIX_print\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8334:isPOSIX_graph\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8335:isPOSIX_blank\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8336:isPOSIX_alnum\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8337:isNormInert\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8338:isMirrored\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8339:isJoinControl\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8340:isIDSUnaryOperator\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8341:isIDCompatMathStart\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8342:isIDCompatMathContinue\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8343:isCanonSegmentStarter\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8344:isBidiControl\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8345:isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +8346:int_upsample +8347:initial_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +8348:icu_74::uprv_normalizer2_cleanup\28\29 +8349:icu_74::uprv_loaded_normalizer2_cleanup\28\29 +8350:icu_74::unames_cleanup\28\29 +8351:icu_74::umtx_init\28\29 +8352:icu_74::umtx_cleanup\28\29 +8353:icu_74::sortComparator\28void\20const*\2c\20void\20const*\2c\20void\20const*\29 +8354:icu_74::segmentStarterMapper\28void\20const*\2c\20unsigned\20int\29 +8355:icu_74::isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +8356:icu_74::compareElementStrings\28void\20const*\2c\20void\20const*\2c\20void\20const*\29 +8357:icu_74::cacheDeleter\28void*\29 +8358:icu_74::\28anonymous\20namespace\29::versionFilter\28int\2c\20void*\29 +8359:icu_74::\28anonymous\20namespace\29::utf16_caseContextIterator\28void*\2c\20signed\20char\29 +8360:icu_74::\28anonymous\20namespace\29::numericValueFilter\28int\2c\20void*\29 +8361:icu_74::\28anonymous\20namespace\29::intPropertyFilter\28int\2c\20void*\29 +8362:icu_74::\28anonymous\20namespace\29::emojiprops_cleanup\28\29 +8363:icu_74::\28anonymous\20namespace\29::cleanup\28\29 +8364:icu_74::\28anonymous\20namespace\29::cleanupKnownCanonicalized\28\29 +8365:icu_74::\28anonymous\20namespace\29::AliasReplacer::replace\28icu_74::Locale\20const&\2c\20icu_74::CharString&\2c\20UErrorCode&\29::$_1::__invoke\28void*\29 +8366:icu_74::\28anonymous\20namespace\29::AliasReplacer::AliasReplacer\28UErrorCode\29::'lambda'\28UElement\2c\20UElement\29::__invoke\28UElement\2c\20UElement\29 +8367:icu_74::\28anonymous\20namespace\29::AliasData::cleanup\28\29 +8368:icu_74::UnicodeString::~UnicodeString\28\29_14623 +8369:icu_74::UnicodeString::handleReplaceBetween\28int\2c\20int\2c\20icu_74::UnicodeString\20const&\29 +8370:icu_74::UnicodeString::getLength\28\29\20const +8371:icu_74::UnicodeString::getDynamicClassID\28\29\20const +8372:icu_74::UnicodeString::getCharAt\28int\29\20const +8373:icu_74::UnicodeString::extractBetween\28int\2c\20int\2c\20icu_74::UnicodeString&\29\20const +8374:icu_74::UnicodeString::copy\28int\2c\20int\2c\20int\29 +8375:icu_74::UnicodeString::clone\28\29\20const +8376:icu_74::UnicodeSet::~UnicodeSet\28\29_14539 +8377:icu_74::UnicodeSet::toPattern\28icu_74::UnicodeString&\2c\20signed\20char\29\20const +8378:icu_74::UnicodeSet::getDynamicClassID\28\29\20const +8379:icu_74::UnicodeSet::addMatchSetTo\28icu_74::UnicodeSet&\29\20const +8380:icu_74::UnhandledEngine::~UnhandledEngine\28\29_13507 +8381:icu_74::UnhandledEngine::~UnhandledEngine\28\29 +8382:icu_74::UnhandledEngine::handles\28int\2c\20char\20const*\29\20const +8383:icu_74::UnhandledEngine::handleCharacter\28int\29 +8384:icu_74::UnhandledEngine::findBreaks\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +8385:icu_74::UVector::~UVector\28\29_14915 +8386:icu_74::UVector::getDynamicClassID\28\29\20const +8387:icu_74::UVector32::~UVector32\28\29_14937 +8388:icu_74::UVector32::getDynamicClassID\28\29\20const +8389:icu_74::UStack::getDynamicClassID\28\29\20const +8390:icu_74::UCharsTrieBuilder::~UCharsTrieBuilder\28\29_14279 +8391:icu_74::UCharsTrieBuilder::~UCharsTrieBuilder\28\29 +8392:icu_74::UCharsTrieBuilder::write\28int\29 +8393:icu_74::UCharsTrieBuilder::writeValueAndType\28signed\20char\2c\20int\2c\20int\29 +8394:icu_74::UCharsTrieBuilder::writeValueAndFinal\28int\2c\20signed\20char\29 +8395:icu_74::UCharsTrieBuilder::writeElementUnits\28int\2c\20int\2c\20int\29 +8396:icu_74::UCharsTrieBuilder::writeDeltaTo\28int\29 +8397:icu_74::UCharsTrieBuilder::skipElementsBySomeUnits\28int\2c\20int\2c\20int\29\20const +8398:icu_74::UCharsTrieBuilder::indexOfElementWithNextUnit\28int\2c\20int\2c\20char16_t\29\20const +8399:icu_74::UCharsTrieBuilder::getMinLinearMatch\28\29\20const +8400:icu_74::UCharsTrieBuilder::getLimitOfLinearMatch\28int\2c\20int\2c\20int\29\20const +8401:icu_74::UCharsTrieBuilder::getElementValue\28int\29\20const +8402:icu_74::UCharsTrieBuilder::getElementUnit\28int\2c\20int\29\20const +8403:icu_74::UCharsTrieBuilder::getElementStringLength\28int\29\20const +8404:icu_74::UCharsTrieBuilder::createLinearMatchNode\28int\2c\20int\2c\20int\2c\20icu_74::StringTrieBuilder::Node*\29\20const +8405:icu_74::UCharsTrieBuilder::countElementUnits\28int\2c\20int\2c\20int\29\20const +8406:icu_74::UCharsTrieBuilder::UCTLinearMatchNode::write\28icu_74::StringTrieBuilder&\29 +8407:icu_74::UCharsTrieBuilder::UCTLinearMatchNode::operator==\28icu_74::StringTrieBuilder::Node\20const&\29\20const +8408:icu_74::UCharsDictionaryMatcher::~UCharsDictionaryMatcher\28\29_13639 +8409:icu_74::UCharsDictionaryMatcher::~UCharsDictionaryMatcher\28\29 +8410:icu_74::UCharsDictionaryMatcher::matches\28UText*\2c\20int\2c\20int\2c\20int*\2c\20int*\2c\20int*\2c\20int*\29\20const +8411:icu_74::UCharCharacterIterator::setIndex\28int\29 +8412:icu_74::UCharCharacterIterator::setIndex32\28int\29 +8413:icu_74::UCharCharacterIterator::previous\28\29 +8414:icu_74::UCharCharacterIterator::previous32\28\29 +8415:icu_74::UCharCharacterIterator::operator==\28icu_74::ForwardCharacterIterator\20const&\29\20const +8416:icu_74::UCharCharacterIterator::next\28\29 +8417:icu_74::UCharCharacterIterator::nextPostInc\28\29 +8418:icu_74::UCharCharacterIterator::next32\28\29 +8419:icu_74::UCharCharacterIterator::next32PostInc\28\29 +8420:icu_74::UCharCharacterIterator::move\28int\2c\20icu_74::CharacterIterator::EOrigin\29 +8421:icu_74::UCharCharacterIterator::move32\28int\2c\20icu_74::CharacterIterator::EOrigin\29 +8422:icu_74::UCharCharacterIterator::last\28\29 +8423:icu_74::UCharCharacterIterator::last32\28\29 +8424:icu_74::UCharCharacterIterator::hashCode\28\29\20const +8425:icu_74::UCharCharacterIterator::hasPrevious\28\29 +8426:icu_74::UCharCharacterIterator::hasNext\28\29 +8427:icu_74::UCharCharacterIterator::getText\28icu_74::UnicodeString&\29 +8428:icu_74::UCharCharacterIterator::getDynamicClassID\28\29\20const +8429:icu_74::UCharCharacterIterator::first\28\29 +8430:icu_74::UCharCharacterIterator::firstPostInc\28\29 +8431:icu_74::UCharCharacterIterator::first32\28\29 +8432:icu_74::UCharCharacterIterator::first32PostInc\28\29 +8433:icu_74::UCharCharacterIterator::current\28\29\20const +8434:icu_74::UCharCharacterIterator::current32\28\29\20const +8435:icu_74::UCharCharacterIterator::clone\28\29\20const +8436:icu_74::ThaiBreakEngine::~ThaiBreakEngine\28\29_13619 +8437:icu_74::ThaiBreakEngine::~ThaiBreakEngine\28\29 +8438:icu_74::ThaiBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +8439:icu_74::StringTrieBuilder::SplitBranchNode::write\28icu_74::StringTrieBuilder&\29 +8440:icu_74::StringTrieBuilder::SplitBranchNode::operator==\28icu_74::StringTrieBuilder::Node\20const&\29\20const +8441:icu_74::StringTrieBuilder::SplitBranchNode::markRightEdgesFirst\28int\29 +8442:icu_74::StringTrieBuilder::Node::markRightEdgesFirst\28int\29 +8443:icu_74::StringTrieBuilder::ListBranchNode::write\28icu_74::StringTrieBuilder&\29 +8444:icu_74::StringTrieBuilder::ListBranchNode::operator==\28icu_74::StringTrieBuilder::Node\20const&\29\20const +8445:icu_74::StringTrieBuilder::ListBranchNode::markRightEdgesFirst\28int\29 +8446:icu_74::StringTrieBuilder::IntermediateValueNode::write\28icu_74::StringTrieBuilder&\29 +8447:icu_74::StringTrieBuilder::IntermediateValueNode::operator==\28icu_74::StringTrieBuilder::Node\20const&\29\20const +8448:icu_74::StringTrieBuilder::IntermediateValueNode::markRightEdgesFirst\28int\29 +8449:icu_74::StringTrieBuilder::FinalValueNode::write\28icu_74::StringTrieBuilder&\29 +8450:icu_74::StringTrieBuilder::FinalValueNode::operator==\28icu_74::StringTrieBuilder::Node\20const&\29\20const +8451:icu_74::StringTrieBuilder::BranchHeadNode::write\28icu_74::StringTrieBuilder&\29 +8452:icu_74::StringEnumeration::unext\28int*\2c\20UErrorCode&\29 +8453:icu_74::StringEnumeration::snext\28UErrorCode&\29 +8454:icu_74::StringEnumeration::operator==\28icu_74::StringEnumeration\20const&\29\20const +8455:icu_74::StringEnumeration::operator!=\28icu_74::StringEnumeration\20const&\29\20const +8456:icu_74::StringEnumeration::next\28int*\2c\20UErrorCode&\29 +8457:icu_74::SimpleLocaleKeyFactory::~SimpleLocaleKeyFactory\28\29_14154 +8458:icu_74::SimpleLocaleKeyFactory::~SimpleLocaleKeyFactory\28\29 +8459:icu_74::SimpleLocaleKeyFactory::updateVisibleIDs\28icu_74::Hashtable&\2c\20UErrorCode&\29\20const +8460:icu_74::SimpleLocaleKeyFactory::getDynamicClassID\28\29\20const +8461:icu_74::SimpleLocaleKeyFactory::create\28icu_74::ICUServiceKey\20const&\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +8462:icu_74::SimpleFilteredSentenceBreakIterator::~SimpleFilteredSentenceBreakIterator\28\29_13664 +8463:icu_74::SimpleFilteredSentenceBreakIterator::~SimpleFilteredSentenceBreakIterator\28\29 +8464:icu_74::SimpleFilteredSentenceBreakIterator::setText\28icu_74::UnicodeString\20const&\29 +8465:icu_74::SimpleFilteredSentenceBreakIterator::setText\28UText*\2c\20UErrorCode&\29 +8466:icu_74::SimpleFilteredSentenceBreakIterator::refreshInputText\28UText*\2c\20UErrorCode&\29 +8467:icu_74::SimpleFilteredSentenceBreakIterator::previous\28\29 +8468:icu_74::SimpleFilteredSentenceBreakIterator::preceding\28int\29 +8469:icu_74::SimpleFilteredSentenceBreakIterator::next\28int\29 +8470:icu_74::SimpleFilteredSentenceBreakIterator::next\28\29 +8471:icu_74::SimpleFilteredSentenceBreakIterator::last\28\29 +8472:icu_74::SimpleFilteredSentenceBreakIterator::isBoundary\28int\29 +8473:icu_74::SimpleFilteredSentenceBreakIterator::getUText\28UText*\2c\20UErrorCode&\29\20const +8474:icu_74::SimpleFilteredSentenceBreakIterator::getText\28\29\20const +8475:icu_74::SimpleFilteredSentenceBreakIterator::following\28int\29 +8476:icu_74::SimpleFilteredSentenceBreakIterator::first\28\29 +8477:icu_74::SimpleFilteredSentenceBreakIterator::current\28\29\20const +8478:icu_74::SimpleFilteredSentenceBreakIterator::createBufferClone\28void*\2c\20int&\2c\20UErrorCode&\29 +8479:icu_74::SimpleFilteredSentenceBreakIterator::clone\28\29\20const +8480:icu_74::SimpleFilteredSentenceBreakIterator::adoptText\28icu_74::CharacterIterator*\29 +8481:icu_74::SimpleFilteredSentenceBreakData::~SimpleFilteredSentenceBreakData\28\29_13661 +8482:icu_74::SimpleFilteredSentenceBreakData::~SimpleFilteredSentenceBreakData\28\29 +8483:icu_74::SimpleFilteredBreakIteratorBuilder::~SimpleFilteredBreakIteratorBuilder\28\29_13676 +8484:icu_74::SimpleFilteredBreakIteratorBuilder::~SimpleFilteredBreakIteratorBuilder\28\29 +8485:icu_74::SimpleFilteredBreakIteratorBuilder::unsuppressBreakAfter\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +8486:icu_74::SimpleFilteredBreakIteratorBuilder::suppressBreakAfter\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +8487:icu_74::SimpleFilteredBreakIteratorBuilder::build\28icu_74::BreakIterator*\2c\20UErrorCode&\29 +8488:icu_74::SimpleFactory::~SimpleFactory\28\29_14066 +8489:icu_74::SimpleFactory::~SimpleFactory\28\29 +8490:icu_74::SimpleFactory::updateVisibleIDs\28icu_74::Hashtable&\2c\20UErrorCode&\29\20const +8491:icu_74::SimpleFactory::getDynamicClassID\28\29\20const +8492:icu_74::SimpleFactory::getDisplayName\28icu_74::UnicodeString\20const&\2c\20icu_74::Locale\20const&\2c\20icu_74::UnicodeString&\29\20const +8493:icu_74::SimpleFactory::create\28icu_74::ICUServiceKey\20const&\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +8494:icu_74::ServiceEnumeration::~ServiceEnumeration\28\29_14130 +8495:icu_74::ServiceEnumeration::~ServiceEnumeration\28\29 +8496:icu_74::ServiceEnumeration::snext\28UErrorCode&\29 +8497:icu_74::ServiceEnumeration::reset\28UErrorCode&\29 +8498:icu_74::ServiceEnumeration::getDynamicClassID\28\29\20const +8499:icu_74::ServiceEnumeration::count\28UErrorCode&\29\20const +8500:icu_74::ServiceEnumeration::clone\28\29\20const +8501:icu_74::RuleBasedBreakIterator::~RuleBasedBreakIterator\28\29_13997 +8502:icu_74::RuleBasedBreakIterator::setText\28icu_74::UnicodeString\20const&\29 +8503:icu_74::RuleBasedBreakIterator::setText\28UText*\2c\20UErrorCode&\29 +8504:icu_74::RuleBasedBreakIterator::refreshInputText\28UText*\2c\20UErrorCode&\29 +8505:icu_74::RuleBasedBreakIterator::previous\28\29 +8506:icu_74::RuleBasedBreakIterator::preceding\28int\29 +8507:icu_74::RuleBasedBreakIterator::operator==\28icu_74::BreakIterator\20const&\29\20const +8508:icu_74::RuleBasedBreakIterator::next\28int\29 +8509:icu_74::RuleBasedBreakIterator::next\28\29 +8510:icu_74::RuleBasedBreakIterator::last\28\29 +8511:icu_74::RuleBasedBreakIterator::isBoundary\28int\29 +8512:icu_74::RuleBasedBreakIterator::hashCode\28\29\20const +8513:icu_74::RuleBasedBreakIterator::getUText\28UText*\2c\20UErrorCode&\29\20const +8514:icu_74::RuleBasedBreakIterator::getText\28\29\20const +8515:icu_74::RuleBasedBreakIterator::getRules\28\29\20const +8516:icu_74::RuleBasedBreakIterator::getRuleStatus\28\29\20const +8517:icu_74::RuleBasedBreakIterator::getRuleStatusVec\28int*\2c\20int\2c\20UErrorCode&\29 +8518:icu_74::RuleBasedBreakIterator::getDynamicClassID\28\29\20const +8519:icu_74::RuleBasedBreakIterator::getBinaryRules\28unsigned\20int&\29 +8520:icu_74::RuleBasedBreakIterator::following\28int\29 +8521:icu_74::RuleBasedBreakIterator::first\28\29 +8522:icu_74::RuleBasedBreakIterator::current\28\29\20const +8523:icu_74::RuleBasedBreakIterator::createBufferClone\28void*\2c\20int&\2c\20UErrorCode&\29 +8524:icu_74::RuleBasedBreakIterator::clone\28\29\20const +8525:icu_74::RuleBasedBreakIterator::adoptText\28icu_74::CharacterIterator*\29 +8526:icu_74::RuleBasedBreakIterator::BreakCache::~BreakCache\28\29_13982 +8527:icu_74::RuleBasedBreakIterator::BreakCache::~BreakCache\28\29 +8528:icu_74::ResourceDataValue::~ResourceDataValue\28\29_14777 +8529:icu_74::ResourceDataValue::isNoInheritanceMarker\28\29\20const +8530:icu_74::ResourceDataValue::getUInt\28UErrorCode&\29\20const +8531:icu_74::ResourceDataValue::getType\28\29\20const +8532:icu_74::ResourceDataValue::getStringOrFirstOfArray\28UErrorCode&\29\20const +8533:icu_74::ResourceDataValue::getStringArray\28icu_74::UnicodeString*\2c\20int\2c\20UErrorCode&\29\20const +8534:icu_74::ResourceDataValue::getStringArrayOrStringAsArray\28icu_74::UnicodeString*\2c\20int\2c\20UErrorCode&\29\20const +8535:icu_74::ResourceDataValue::getInt\28UErrorCode&\29\20const +8536:icu_74::ResourceDataValue::getAliasString\28int&\2c\20UErrorCode&\29\20const +8537:icu_74::ResourceBundle::~ResourceBundle\28\29_14037 +8538:icu_74::ResourceBundle::~ResourceBundle\28\29 +8539:icu_74::ResourceBundle::getDynamicClassID\28\29\20const +8540:icu_74::ParsePosition::getDynamicClassID\28\29\20const +8541:icu_74::Normalizer2WithImpl::spanQuickCheckYes\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +8542:icu_74::Normalizer2WithImpl::normalize\28icu_74::UnicodeString\20const&\2c\20icu_74::UnicodeString&\2c\20UErrorCode&\29\20const +8543:icu_74::Normalizer2WithImpl::normalizeSecondAndAppend\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +8544:icu_74::Normalizer2WithImpl::getRawDecomposition\28int\2c\20icu_74::UnicodeString&\29\20const +8545:icu_74::Normalizer2WithImpl::getDecomposition\28int\2c\20icu_74::UnicodeString&\29\20const +8546:icu_74::Normalizer2WithImpl::getCombiningClass\28int\29\20const +8547:icu_74::Normalizer2WithImpl::composePair\28int\2c\20int\29\20const +8548:icu_74::Normalizer2WithImpl::append\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +8549:icu_74::Normalizer2Impl::~Normalizer2Impl\28\29_13921 +8550:icu_74::Normalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +8551:icu_74::Normalizer2::isNormalizedUTF8\28icu_74::StringPiece\2c\20UErrorCode&\29\20const +8552:icu_74::NoopNormalizer2::spanQuickCheckYes\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +8553:icu_74::NoopNormalizer2::normalize\28icu_74::UnicodeString\20const&\2c\20icu_74::UnicodeString&\2c\20UErrorCode&\29\20const +8554:icu_74::NoopNormalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +8555:icu_74::MlBreakEngine::~MlBreakEngine\28\29_13837 +8556:icu_74::LocaleKeyFactory::~LocaleKeyFactory\28\29_14113 +8557:icu_74::LocaleKeyFactory::updateVisibleIDs\28icu_74::Hashtable&\2c\20UErrorCode&\29\20const +8558:icu_74::LocaleKeyFactory::handlesKey\28icu_74::ICUServiceKey\20const&\2c\20UErrorCode&\29\20const +8559:icu_74::LocaleKeyFactory::getDynamicClassID\28\29\20const +8560:icu_74::LocaleKeyFactory::getDisplayName\28icu_74::UnicodeString\20const&\2c\20icu_74::Locale\20const&\2c\20icu_74::UnicodeString&\29\20const +8561:icu_74::LocaleKeyFactory::create\28icu_74::ICUServiceKey\20const&\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +8562:icu_74::LocaleKey::~LocaleKey\28\29_14100 +8563:icu_74::LocaleKey::~LocaleKey\28\29 +8564:icu_74::LocaleKey::prefix\28icu_74::UnicodeString&\29\20const +8565:icu_74::LocaleKey::isFallbackOf\28icu_74::UnicodeString\20const&\29\20const +8566:icu_74::LocaleKey::getDynamicClassID\28\29\20const +8567:icu_74::LocaleKey::fallback\28\29 +8568:icu_74::LocaleKey::currentLocale\28icu_74::Locale&\29\20const +8569:icu_74::LocaleKey::currentID\28icu_74::UnicodeString&\29\20const +8570:icu_74::LocaleKey::currentDescriptor\28icu_74::UnicodeString&\29\20const +8571:icu_74::LocaleKey::canonicalLocale\28icu_74::Locale&\29\20const +8572:icu_74::LocaleKey::canonicalID\28icu_74::UnicodeString&\29\20const +8573:icu_74::LocaleBuilder::~LocaleBuilder\28\29_13707 +8574:icu_74::Locale::~Locale\28\29_13734 +8575:icu_74::Locale::getDynamicClassID\28\29\20const +8576:icu_74::LoadedNormalizer2Impl::~LoadedNormalizer2Impl\28\29_13695 +8577:icu_74::LoadedNormalizer2Impl::~LoadedNormalizer2Impl\28\29 +8578:icu_74::LoadedNormalizer2Impl::isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +8579:icu_74::LaoBreakEngine::~LaoBreakEngine\28\29_13623 +8580:icu_74::LaoBreakEngine::~LaoBreakEngine\28\29 +8581:icu_74::LSTMBreakEngine::~LSTMBreakEngine\28\29_13821 +8582:icu_74::LSTMBreakEngine::~LSTMBreakEngine\28\29 +8583:icu_74::LSTMBreakEngine::name\28\29\20const +8584:icu_74::LSTMBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +8585:icu_74::KhmerBreakEngine::~KhmerBreakEngine\28\29_13631 +8586:icu_74::KhmerBreakEngine::~KhmerBreakEngine\28\29 +8587:icu_74::KhmerBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +8588:icu_74::KeywordEnumeration::~KeywordEnumeration\28\29_13758 +8589:icu_74::KeywordEnumeration::~KeywordEnumeration\28\29 +8590:icu_74::KeywordEnumeration::snext\28UErrorCode&\29 +8591:icu_74::KeywordEnumeration::reset\28UErrorCode&\29 +8592:icu_74::KeywordEnumeration::next\28int*\2c\20UErrorCode&\29 +8593:icu_74::KeywordEnumeration::getDynamicClassID\28\29\20const +8594:icu_74::KeywordEnumeration::count\28UErrorCode&\29\20const +8595:icu_74::KeywordEnumeration::clone\28\29\20const +8596:icu_74::ICUServiceKey::~ICUServiceKey\28\29_14054 +8597:icu_74::ICUServiceKey::isFallbackOf\28icu_74::UnicodeString\20const&\29\20const +8598:icu_74::ICUServiceKey::getDynamicClassID\28\29\20const +8599:icu_74::ICUServiceKey::currentDescriptor\28icu_74::UnicodeString&\29\20const +8600:icu_74::ICUServiceKey::canonicalID\28icu_74::UnicodeString&\29\20const +8601:icu_74::ICUService::unregister\28void\20const*\2c\20UErrorCode&\29 +8602:icu_74::ICUService::reset\28\29 +8603:icu_74::ICUService::registerInstance\28icu_74::UObject*\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29 +8604:icu_74::ICUService::registerFactory\28icu_74::ICUServiceFactory*\2c\20UErrorCode&\29 +8605:icu_74::ICUService::reInitializeFactories\28\29 +8606:icu_74::ICUService::notifyListener\28icu_74::EventListener&\29\20const +8607:icu_74::ICUService::isDefault\28\29\20const +8608:icu_74::ICUService::getKey\28icu_74::ICUServiceKey&\2c\20icu_74::UnicodeString*\2c\20UErrorCode&\29\20const +8609:icu_74::ICUService::createSimpleFactory\28icu_74::UObject*\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29 +8610:icu_74::ICUService::createKey\28icu_74::UnicodeString\20const*\2c\20UErrorCode&\29\20const +8611:icu_74::ICUService::clearCaches\28\29 +8612:icu_74::ICUService::acceptsListener\28icu_74::EventListener\20const&\29\20const +8613:icu_74::ICUResourceBundleFactory::~ICUResourceBundleFactory\28\29_14148 +8614:icu_74::ICUResourceBundleFactory::handleCreate\28icu_74::Locale\20const&\2c\20int\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +8615:icu_74::ICUResourceBundleFactory::getSupportedIDs\28UErrorCode&\29\20const +8616:icu_74::ICUResourceBundleFactory::getDynamicClassID\28\29\20const +8617:icu_74::ICUNotifier::removeListener\28icu_74::EventListener\20const*\2c\20UErrorCode&\29 +8618:icu_74::ICUNotifier::notifyChanged\28\29 +8619:icu_74::ICUNotifier::addListener\28icu_74::EventListener\20const*\2c\20UErrorCode&\29 +8620:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29 +8621:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::Locale\20const&\2c\20int\2c\20int\2c\20UErrorCode&\29 +8622:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::Locale\20const&\2c\20int\2c\20UErrorCode&\29 +8623:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::Locale\20const&\2c\20UErrorCode&\29 +8624:icu_74::ICULocaleService::getAvailableLocales\28\29\20const +8625:icu_74::ICULocaleService::createKey\28icu_74::UnicodeString\20const*\2c\20int\2c\20UErrorCode&\29\20const +8626:icu_74::ICULocaleService::createKey\28icu_74::UnicodeString\20const*\2c\20UErrorCode&\29\20const +8627:icu_74::ICULanguageBreakFactory::~ICULanguageBreakFactory\28\29_13513 +8628:icu_74::ICULanguageBreakFactory::~ICULanguageBreakFactory\28\29 +8629:icu_74::ICULanguageBreakFactory::loadEngineFor\28int\2c\20char\20const*\29 +8630:icu_74::ICULanguageBreakFactory::loadDictionaryMatcherFor\28UScriptCode\29 +8631:icu_74::ICULanguageBreakFactory::getEngineFor\28int\2c\20char\20const*\29 +8632:icu_74::ICULanguageBreakFactory::addExternalEngine\28icu_74::ExternalBreakEngine*\2c\20UErrorCode&\29 +8633:icu_74::ICUBreakIteratorService::~ICUBreakIteratorService\28\29_13540 +8634:icu_74::ICUBreakIteratorService::~ICUBreakIteratorService\28\29 +8635:icu_74::ICUBreakIteratorService::isDefault\28\29\20const +8636:icu_74::ICUBreakIteratorService::handleDefault\28icu_74::ICUServiceKey\20const&\2c\20icu_74::UnicodeString*\2c\20UErrorCode&\29\20const +8637:icu_74::ICUBreakIteratorService::cloneInstance\28icu_74::UObject*\29\20const +8638:icu_74::ICUBreakIteratorFactory::~ICUBreakIteratorFactory\28\29_13538 +8639:icu_74::ICUBreakIteratorFactory::~ICUBreakIteratorFactory\28\29 +8640:icu_74::ICUBreakIteratorFactory::handleCreate\28icu_74::Locale\20const&\2c\20int\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +8641:icu_74::GraphemeClusterVectorizer::vectorize\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20icu_74::UVector32&\2c\20UErrorCode&\29\20const +8642:icu_74::FCDNormalizer2::spanQuickCheckYes\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29\20const +8643:icu_74::FCDNormalizer2::normalize\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +8644:icu_74::FCDNormalizer2::normalizeAndAppend\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20icu_74::UnicodeString&\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +8645:icu_74::FCDNormalizer2::isInert\28int\29\20const +8646:icu_74::EmojiProps::isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +8647:icu_74::DictionaryBreakEngine::setCharacters\28icu_74::UnicodeSet\20const&\29 +8648:icu_74::DictionaryBreakEngine::handles\28int\2c\20char\20const*\29\20const +8649:icu_74::DictionaryBreakEngine::findBreaks\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +8650:icu_74::DecomposeNormalizer2::spanQuickCheckYes\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29\20const +8651:icu_74::DecomposeNormalizer2::normalize\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +8652:icu_74::DecomposeNormalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +8653:icu_74::DecomposeNormalizer2::normalizeAndAppend\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20icu_74::UnicodeString&\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +8654:icu_74::DecomposeNormalizer2::isNormalizedUTF8\28icu_74::StringPiece\2c\20UErrorCode&\29\20const +8655:icu_74::DecomposeNormalizer2::isInert\28int\29\20const +8656:icu_74::DecomposeNormalizer2::getQuickCheck\28int\29\20const +8657:icu_74::ConstArray2D::get\28int\2c\20int\29\20const +8658:icu_74::ConstArray1D::get\28int\29\20const +8659:icu_74::ComposeNormalizer2::spanQuickCheckYes\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29\20const +8660:icu_74::ComposeNormalizer2::quickCheck\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +8661:icu_74::ComposeNormalizer2::normalize\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +8662:icu_74::ComposeNormalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +8663:icu_74::ComposeNormalizer2::normalizeAndAppend\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20icu_74::UnicodeString&\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +8664:icu_74::ComposeNormalizer2::isNormalized\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +8665:icu_74::ComposeNormalizer2::isNormalizedUTF8\28icu_74::StringPiece\2c\20UErrorCode&\29\20const +8666:icu_74::ComposeNormalizer2::isInert\28int\29\20const +8667:icu_74::ComposeNormalizer2::hasBoundaryBefore\28int\29\20const +8668:icu_74::ComposeNormalizer2::hasBoundaryAfter\28int\29\20const +8669:icu_74::ComposeNormalizer2::getQuickCheck\28int\29\20const +8670:icu_74::CodePointsVectorizer::vectorize\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20icu_74::UVector32&\2c\20UErrorCode&\29\20const +8671:icu_74::CjkBreakEngine::~CjkBreakEngine\28\29_13635 +8672:icu_74::CjkBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +8673:icu_74::CheckedArrayByteSink::Reset\28\29 +8674:icu_74::CheckedArrayByteSink::GetAppendBuffer\28int\2c\20int\2c\20char*\2c\20int\2c\20int*\29 +8675:icu_74::CheckedArrayByteSink::Append\28char\20const*\2c\20int\29 +8676:icu_74::CharacterIterator::firstPostInc\28\29 +8677:icu_74::CharacterIterator::first32PostInc\28\29 +8678:icu_74::CharStringByteSink::GetAppendBuffer\28int\2c\20int\2c\20char*\2c\20int\2c\20int*\29 +8679:icu_74::CharStringByteSink::Append\28char\20const*\2c\20int\29 +8680:icu_74::BytesDictionaryMatcher::~BytesDictionaryMatcher\28\29_13643 +8681:icu_74::BytesDictionaryMatcher::~BytesDictionaryMatcher\28\29 +8682:icu_74::BytesDictionaryMatcher::matches\28UText*\2c\20int\2c\20int\2c\20int*\2c\20int*\2c\20int*\2c\20int*\29\20const +8683:icu_74::BurmeseBreakEngine::~BurmeseBreakEngine\28\29_13627 +8684:icu_74::BurmeseBreakEngine::~BurmeseBreakEngine\28\29 +8685:icu_74::BreakIterator::getRuleStatusVec\28int*\2c\20int\2c\20UErrorCode&\29 +8686:icu_74::BreakEngineWrapper::~BreakEngineWrapper\28\29_13519 +8687:icu_74::BreakEngineWrapper::~BreakEngineWrapper\28\29 +8688:icu_74::BreakEngineWrapper::handles\28int\2c\20char\20const*\29\20const +8689:icu_74::BreakEngineWrapper::findBreaks\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +8690:icu_74::BMPSet::contains\28int\29\20const +8691:icu_74::Array1D::~Array1D\28\29_13808 +8692:icu_74::Array1D::~Array1D\28\29 +8693:icu_74::Array1D::get\28int\29\20const +8694:hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +8695:hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +8696:hb_unicode_script_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +8697:hb_unicode_general_category_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +8698:hb_ucd_script\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +8699:hb_ucd_mirroring\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +8700:hb_ucd_general_category\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +8701:hb_ucd_decompose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +8702:hb_ucd_compose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8703:hb_ucd_combining_class\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +8704:hb_syllabic_clear_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +8705:hb_paint_sweep_gradient_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8706:hb_paint_push_transform_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8707:hb_paint_push_clip_rectangle_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8708:hb_paint_image_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +8709:hb_paint_extents_push_transform\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8710:hb_paint_extents_push_group\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +8711:hb_paint_extents_push_clip_rectangle\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8712:hb_paint_extents_push_clip_glyph\28hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_font_t*\2c\20void*\29 +8713:hb_paint_extents_pop_transform\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +8714:hb_paint_extents_pop_group\28hb_paint_funcs_t*\2c\20void*\2c\20hb_paint_composite_mode_t\2c\20void*\29 +8715:hb_paint_extents_pop_clip\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +8716:hb_paint_extents_paint_sweep_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8717:hb_paint_extents_paint_image\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +8718:hb_paint_extents_paint_color\28hb_paint_funcs_t*\2c\20void*\2c\20int\2c\20unsigned\20int\2c\20void*\29 +8719:hb_outline_recording_pen_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8720:hb_outline_recording_pen_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +8721:hb_outline_recording_pen_line_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +8722:hb_outline_recording_pen_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8723:hb_outline_recording_pen_close_path\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +8724:hb_ot_shape_normalize_context_t::decompose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +8725:hb_ot_shape_normalize_context_t::compose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8726:hb_ot_paint_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +8727:hb_ot_map_t::lookup_map_t::cmp\28void\20const*\2c\20void\20const*\29 +8728:hb_ot_map_t::feature_map_t::cmp\28void\20const*\2c\20void\20const*\29 +8729:hb_ot_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +8730:hb_ot_get_variation_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8731:hb_ot_get_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +8732:hb_ot_get_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8733:hb_ot_get_glyph_v_origin\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +8734:hb_ot_get_glyph_v_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +8735:hb_ot_get_glyph_name\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +8736:hb_ot_get_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +8737:hb_ot_get_glyph_from_name\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +8738:hb_ot_get_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +8739:hb_ot_get_font_v_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +8740:hb_ot_get_font_h_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +8741:hb_ot_draw_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +8742:hb_font_paint_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +8743:hb_font_get_variation_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8744:hb_font_get_nominal_glyphs_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +8745:hb_font_get_nominal_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8746:hb_font_get_nominal_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8747:hb_font_get_glyph_v_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +8748:hb_font_get_glyph_v_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +8749:hb_font_get_glyph_v_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +8750:hb_font_get_glyph_v_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +8751:hb_font_get_glyph_v_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +8752:hb_font_get_glyph_v_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +8753:hb_font_get_glyph_name_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +8754:hb_font_get_glyph_name_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +8755:hb_font_get_glyph_h_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +8756:hb_font_get_glyph_h_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +8757:hb_font_get_glyph_h_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +8758:hb_font_get_glyph_h_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +8759:hb_font_get_glyph_h_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +8760:hb_font_get_glyph_h_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +8761:hb_font_get_glyph_from_name_default\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +8762:hb_font_get_glyph_extents_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +8763:hb_font_get_glyph_extents_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +8764:hb_font_get_glyph_contour_point_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +8765:hb_font_get_glyph_contour_point_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +8766:hb_font_get_font_v_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +8767:hb_font_get_font_h_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +8768:hb_font_draw_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +8769:hb_draw_quadratic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8770:hb_draw_quadratic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8771:hb_draw_move_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +8772:hb_draw_line_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +8773:hb_draw_extents_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8774:hb_draw_extents_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8775:hb_draw_cubic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +8776:hb_draw_close_path_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +8777:hb_blob_t*\20hb_sanitize_context_t::sanitize_blob\28hb_blob_t*\29 +8778:hb_aat_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +8779:hb_aat_map_builder_t::feature_event_t::cmp\28void\20const*\2c\20void\20const*\29 +8780:hashStringTrieNode\28UElement\29 +8781:hashEntry\28UElement\29 +8782:hasFullCompositionExclusion\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8783:hasEmojiProperty\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +8784:h2v2_upsample +8785:h2v2_merged_upsample_565D +8786:h2v2_merged_upsample_565 +8787:h2v2_merged_upsample +8788:h2v2_fancy_upsample +8789:h2v1_upsample +8790:h2v1_merged_upsample_565D +8791:h2v1_merged_upsample_565 +8792:h2v1_merged_upsample +8793:h2v1_fancy_upsample +8794:grayscale_convert +8795:gray_rgb_convert +8796:gray_rgb565_convert +8797:gray_rgb565D_convert +8798:gray_raster_render +8799:gray_raster_new +8800:gray_raster_done +8801:gray_move_to +8802:gray_line_to +8803:gray_cubic_to +8804:gray_conic_to +8805:get_sk_marker_list\28jpeg_decompress_struct*\29 +8806:get_sfnt_table +8807:get_interesting_appn +8808:getVo\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8809:getTrailCombiningClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8810:getScript\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8811:getNumericType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8812:getNormQuickCheck\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8813:getLeadCombiningClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8814:getJoiningType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8815:getJoiningGroup\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8816:getInSC\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8817:getInPC\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8818:getHangulSyllableType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8819:getGeneralCategory\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8820:getCombiningClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8821:getBiDiPairedBracketType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8822:getBiDiClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +8823:fullsize_upsample +8824:ft_smooth_transform +8825:ft_smooth_set_mode +8826:ft_smooth_render +8827:ft_smooth_overlap_spans +8828:ft_smooth_lcd_spans +8829:ft_smooth_init +8830:ft_smooth_get_cbox +8831:ft_gzip_free +8832:ft_gzip_alloc +8833:ft_ansi_stream_io +8834:ft_ansi_stream_close +8835:fquad_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +8836:format_message +8837:fmt_fp +8838:fline_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +8839:first_axis_intersection\28double\20const*\2c\20bool\2c\20double\2c\20double*\29 +8840:finish_pass1 +8841:finish_output_pass +8842:finish_input_pass +8843:final_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +8844:fcubic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +8845:fconic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +8846:fast_swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8847:fast_swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8848:fast_swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8849:fast_swizzle_rgb_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8850:fast_swizzle_rgb_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8851:fast_swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8852:fast_swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8853:fast_swizzle_gray_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8854:fast_swizzle_cmyk_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8855:fast_swizzle_cmyk_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8856:error_exit +8857:error_callback +8858:equalStringTrieNodes\28UElement\2c\20UElement\29 +8859:emscripten_stack_get_current +8860:emscripten::internal::MethodInvoker\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20void\2c\20SkCanvas*\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&>::invoke\28void\20\28SkCanvas::*\20const&\29\28sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20SkPaint*\29 +8861:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint*\29 +8862:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\2c\20SkPaint*\29 +8863:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\2c\20float\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\29 +8864:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\29\2c\20SkCanvas*\2c\20float\2c\20float\29 +8865:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28SkPath\20const&\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20SkPath*\2c\20SkPaint*\29 +8866:emscripten::internal::MethodInvoker\20\28skia::textlayout::Paragraph::*\29\28unsigned\20int\29\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::Paragraph*\2c\20unsigned\20int>::invoke\28skia::textlayout::SkRange\20\28skia::textlayout::Paragraph::*\20const&\29\28unsigned\20int\29\2c\20skia::textlayout::Paragraph*\2c\20unsigned\20int\29 +8867:emscripten::internal::MethodInvoker::invoke\28skia::textlayout::PositionWithAffinity\20\28skia::textlayout::Paragraph::*\20const&\29\28float\2c\20float\29\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +8868:emscripten::internal::MethodInvoker\20\28SkVertices::Builder::*\29\28\29\2c\20sk_sp\2c\20SkVertices::Builder*>::invoke\28sk_sp\20\28SkVertices::Builder::*\20const&\29\28\29\2c\20SkVertices::Builder*\29 +8869:emscripten::internal::MethodInvoker::invoke\28int\20\28skia::textlayout::Paragraph::*\20const&\29\28unsigned\20long\29\20const\2c\20skia::textlayout::Paragraph\20const*\2c\20unsigned\20long\29 +8870:emscripten::internal::MethodInvoker::invoke\28bool\20\28SkPath::*\20const&\29\28float\2c\20float\29\20const\2c\20SkPath\20const*\2c\20float\2c\20float\29 +8871:emscripten::internal::MethodInvoker::invoke\28SkPath&\20\28SkPath::*\20const&\29\28bool\29\2c\20SkPath*\2c\20bool\29 +8872:emscripten::internal::Invoker::invoke\28SkVertices::Builder*\20\28*\29\28SkVertices::VertexMode&&\2c\20int&&\2c\20int&&\2c\20unsigned\20int&&\29\2c\20SkVertices::VertexMode\2c\20int\2c\20int\2c\20unsigned\20int\29 +8873:emscripten::internal::Invoker&&\2c\20float&&\2c\20float&&\2c\20float&&>::invoke\28SkFont*\20\28*\29\28sk_sp&&\2c\20float&&\2c\20float&&\2c\20float&&\29\2c\20sk_sp*\2c\20float\2c\20float\2c\20float\29 +8874:emscripten::internal::Invoker&&\2c\20float&&>::invoke\28SkFont*\20\28*\29\28sk_sp&&\2c\20float&&\29\2c\20sk_sp*\2c\20float\29 +8875:emscripten::internal::Invoker&&>::invoke\28SkFont*\20\28*\29\28sk_sp&&\29\2c\20sk_sp*\29 +8876:emscripten::internal::Invoker::invoke\28SkContourMeasureIter*\20\28*\29\28SkPath\20const&\2c\20bool&&\2c\20float&&\29\2c\20SkPath*\2c\20bool\2c\20float\29 +8877:emscripten::internal::Invoker::invoke\28SkCanvas*\20\28*\29\28float&&\2c\20float&&\29\2c\20float\2c\20float\29 +8878:emscripten::internal::Invoker::invoke\28void\20\28*\29\28unsigned\20long\2c\20unsigned\20long\29\2c\20unsigned\20long\2c\20unsigned\20long\29 +8879:emscripten::internal::Invoker::invoke\28void\20\28*\29\28emscripten::val\29\2c\20emscripten::_EM_VAL*\29 +8880:emscripten::internal::Invoker::invoke\28unsigned\20long\20\28*\29\28unsigned\20long\29\2c\20unsigned\20long\29 +8881:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont*\29 +8882:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont*\29 +8883:emscripten::internal::Invoker\2c\20sk_sp\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20int\2c\20int\2c\20sk_sp*\2c\20int\2c\20int\29 +8884:emscripten::internal::Invoker\2c\20sk_sp\2c\20int\2c\20int\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\29\2c\20sk_sp*\2c\20int\2c\20int\2c\20sk_sp*\29 +8885:emscripten::internal::Invoker\2c\20sk_sp\2c\20int\2c\20int>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20int\2c\20int\29 +8886:emscripten::internal::Invoker\2c\20sk_sp\2c\20SimpleImageInfo>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20SimpleImageInfo\29\2c\20sk_sp*\2c\20SimpleImageInfo*\29 +8887:emscripten::internal::Invoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\29 +8888:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +8889:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20sk_sp\29\2c\20unsigned\20long\2c\20sk_sp*\29 +8890:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +8891:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +8892:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29\2c\20float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29 +8893:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +8894:emscripten::internal::Invoker\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val>::invoke\28sk_sp\20\28*\29\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\2c\20emscripten::_EM_VAL*\29 +8895:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20int\2c\20float>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20int\2c\20float\29\2c\20unsigned\20long\2c\20int\2c\20float\29 +8896:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20SkPath>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20SkPath\29\2c\20unsigned\20long\2c\20SkPath*\29 +8897:emscripten::internal::Invoker\2c\20float\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28float\2c\20unsigned\20long\29\2c\20float\2c\20unsigned\20long\29 +8898:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20unsigned\20int>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20unsigned\20int\29\2c\20float\2c\20float\2c\20unsigned\20int\29 +8899:emscripten::internal::Invoker\2c\20float>::invoke\28sk_sp\20\28*\29\28float\29\2c\20float\29 +8900:emscripten::internal::Invoker\2c\20SkPath\20const&\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style>::invoke\28sk_sp\20\28*\29\28SkPath\20const&\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style\29\2c\20SkPath*\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style\29 +8901:emscripten::internal::Invoker\2c\20SkBlurStyle\2c\20float\2c\20bool>::invoke\28sk_sp\20\28*\29\28SkBlurStyle\2c\20float\2c\20bool\29\2c\20SkBlurStyle\2c\20float\2c\20bool\29 +8902:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20float\2c\20float\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20float\2c\20float\2c\20sk_sp\29\2c\20unsigned\20long\2c\20float\2c\20float\2c\20sk_sp*\29 +8903:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp\29\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp*\29 +8904:emscripten::internal::Invoker\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\29\2c\20sk_sp*\29 +8905:emscripten::internal::Invoker\2c\20sk_sp\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\29 +8906:emscripten::internal::Invoker\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +8907:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20sk_sp\29\2c\20float\2c\20float\2c\20sk_sp*\29 +8908:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp\29\2c\20float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp*\29 +8909:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20SkTileMode\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\29\2c\20float\2c\20float\2c\20SkTileMode\2c\20sk_sp*\29 +8910:emscripten::internal::Invoker\2c\20SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp\2c\20sk_sp\29\2c\20SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp*\2c\20sk_sp*\29 +8911:emscripten::internal::Invoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28SimpleImageInfo\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\29\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\29 +8912:emscripten::internal::Invoker\2c\20SimpleImageInfo\2c\20emscripten::val>::invoke\28sk_sp\20\28*\29\28SimpleImageInfo\2c\20emscripten::val\29\2c\20SimpleImageInfo*\2c\20emscripten::_EM_VAL*\29 +8913:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20int\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\29 +8914:emscripten::internal::Invoker>::invoke\28sk_sp\20\28*\29\28\29\29 +8915:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20SkBlendMode\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20SkBlendMode\2c\20sk_sp\29\2c\20unsigned\20long\2c\20SkBlendMode\2c\20sk_sp*\29 +8916:emscripten::internal::Invoker\2c\20sk_sp\20const&\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\20const&\2c\20sk_sp\29\2c\20sk_sp*\2c\20sk_sp*\29 +8917:emscripten::internal::Invoker\2c\20float\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20sk_sp\2c\20sk_sp\29\2c\20float\2c\20sk_sp*\2c\20sk_sp*\29 +8918:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28unsigned\20long\2c\20int\29\2c\20unsigned\20long\2c\20int\29 +8919:emscripten::internal::Invoker\2c\20std::__2::allocator>>::invoke\28emscripten::val\20\28*\29\28std::__2::basic_string\2c\20std::__2::allocator>\29\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\29 +8920:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28emscripten::val\2c\20emscripten::val\2c\20float\29\2c\20emscripten::_EM_VAL*\2c\20emscripten::_EM_VAL*\2c\20float\29 +8921:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28SkPath\20const&\2c\20SkPath\20const&\2c\20float\29\2c\20SkPath*\2c\20SkPath*\2c\20float\29 +8922:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28SkPath\20const&\2c\20SkPath\20const&\2c\20SkPathOp\29\2c\20SkPath*\2c\20SkPath*\2c\20SkPathOp\29 +8923:emscripten::internal::Invoker::invoke\28bool\20\28*\29\28unsigned\20long\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\29\2c\20unsigned\20long\2c\20SkPath*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\29 +8924:emscripten::internal::Invoker\2c\20sk_sp>::invoke\28bool\20\28*\29\28sk_sp\2c\20sk_sp\29\2c\20sk_sp*\2c\20sk_sp*\29 +8925:emscripten::internal::Invoker::invoke\28bool\20\28*\29\28SkPath\20const&\2c\20SkPath\20const&\29\2c\20SkPath*\2c\20SkPath*\29 +8926:emscripten::internal::Invoker\2c\20int\2c\20int>::invoke\28SkRuntimeEffect::TracedShader\20\28*\29\28sk_sp\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20int\2c\20int\29 +8927:emscripten::internal::Invoker::invoke\28SkPath\20\28*\29\28unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +8928:emscripten::internal::FunctionInvoker\2c\20unsigned\20long\29\2c\20void\2c\20skia::textlayout::TypefaceFontProvider&\2c\20sk_sp\2c\20unsigned\20long>::invoke\28void\20\28**\29\28skia::textlayout::TypefaceFontProvider&\2c\20sk_sp\2c\20unsigned\20long\29\2c\20skia::textlayout::TypefaceFontProvider*\2c\20sk_sp*\2c\20unsigned\20long\29 +8929:emscripten::internal::FunctionInvoker\2c\20std::__2::allocator>\29\2c\20void\2c\20skia::textlayout::ParagraphBuilderImpl&\2c\20std::__2::basic_string\2c\20std::__2::allocator>>::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\29 +8930:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20float\2c\20float\2c\20skia::textlayout::PlaceholderAlignment\2c\20skia::textlayout::TextBaseline\2c\20float\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20float\2c\20float\2c\20skia::textlayout::PlaceholderAlignment\2c\20skia::textlayout::TextBaseline\2c\20float\29 +8931:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\2c\20SkPaint\2c\20SkPaint\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20SimpleTextStyle*\2c\20SkPaint*\2c\20SkPaint*\29 +8932:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20SimpleTextStyle*\29 +8933:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8934:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8935:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8936:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29 +8937:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8938:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20SkPath\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29\2c\20SkPath*\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8939:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkContourMeasure&\2c\20float\2c\20unsigned\20long\29\2c\20SkContourMeasure*\2c\20float\2c\20unsigned\20long\29 +8940:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont*\2c\20SkPaint*\29 +8941:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\2c\20SkPaint*\29 +8942:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +8943:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +8944:emscripten::internal::FunctionInvoker\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +8945:emscripten::internal::FunctionInvoker\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +8946:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont*\2c\20SkPaint*\29 +8947:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint*\29 +8948:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20int\29\2c\20SkCanvas*\2c\20SkPath*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20int\29 +8949:emscripten::internal::FunctionInvoker\2c\20std::__2::allocator>\20\28*\29\28SkSL::DebugTrace\20const*\29\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::DebugTrace\20const*>::invoke\28std::__2::basic_string\2c\20std::__2::allocator>\20\28**\29\28SkSL::DebugTrace\20const*\29\2c\20SkSL::DebugTrace\20const*\29 +8950:emscripten::internal::FunctionInvoker\20\28*\29\28SkFontMgr&\2c\20unsigned\20long\2c\20int\29\2c\20sk_sp\2c\20SkFontMgr&\2c\20unsigned\20long\2c\20int>::invoke\28sk_sp\20\28**\29\28SkFontMgr&\2c\20unsigned\20long\2c\20int\29\2c\20SkFontMgr*\2c\20unsigned\20long\2c\20int\29 +8951:emscripten::internal::FunctionInvoker\20\28*\29\28SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29\2c\20sk_sp\2c\20SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val>::invoke\28sk_sp\20\28**\29\28SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29\2c\20SkFontMgr*\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\2c\20emscripten::_EM_VAL*\29 +8952:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29\2c\20sk_sp\2c\20sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29 +8953:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29\2c\20sk_sp\2c\20sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29 +8954:emscripten::internal::FunctionInvoker\20\28*\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SkRuntimeEffect*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +8955:emscripten::internal::FunctionInvoker\20\28*\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29\2c\20SkRuntimeEffect*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29 +8956:emscripten::internal::FunctionInvoker\20\28*\29\28SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SkPicture*\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +8957:emscripten::internal::FunctionInvoker\20\28*\29\28SkPictureRecorder&\29\2c\20sk_sp\2c\20SkPictureRecorder&>::invoke\28sk_sp\20\28**\29\28SkPictureRecorder&\29\2c\20SkPictureRecorder*\29 +8958:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\29\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28**\29\28sk_sp\29\2c\20sk_sp*\29 +8959:emscripten::internal::FunctionInvoker\20\28*\29\28SkSurface&\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkSurface&\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkSurface&\2c\20unsigned\20long\29\2c\20SkSurface*\2c\20unsigned\20long\29 +8960:emscripten::internal::FunctionInvoker\20\28*\29\28SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo\29\2c\20sk_sp\2c\20SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo>::invoke\28sk_sp\20\28**\29\28SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo\29\2c\20SkSurface*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo*\29 +8961:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\29\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28**\29\28sk_sp\29\2c\20sk_sp*\29 +8962:emscripten::internal::FunctionInvoker\20\28*\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29\2c\20sk_sp\2c\20SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool>::invoke\28sk_sp\20\28**\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29\2c\20SkRuntimeEffect*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +8963:emscripten::internal::FunctionInvoker::invoke\28int\20\28**\29\28SkCanvas&\2c\20SkPaint\29\2c\20SkCanvas*\2c\20SkPaint*\29 +8964:emscripten::internal::FunctionInvoker::invoke\28int\20\28**\29\28SkCanvas&\2c\20SkPaint\20const*\2c\20unsigned\20long\2c\20SkImageFilter\20const*\2c\20unsigned\20int\2c\20SkTileMode\29\2c\20SkCanvas*\2c\20SkPaint\20const*\2c\20unsigned\20long\2c\20SkImageFilter\20const*\2c\20unsigned\20int\2c\20SkTileMode\29 +8965:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28skia::textlayout::Paragraph&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29\2c\20skia::textlayout::Paragraph*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +8966:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28skia::textlayout::Paragraph&\2c\20float\2c\20float\29\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +8967:emscripten::internal::FunctionInvoker\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29\2c\20emscripten::val\2c\20sk_sp\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*>::invoke\28emscripten::val\20\28**\29\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29\2c\20sk_sp*\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29 +8968:emscripten::internal::FunctionInvoker\2c\20SkEncodedImageFormat\2c\20int\29\2c\20emscripten::val\2c\20sk_sp\2c\20SkEncodedImageFormat\2c\20int>::invoke\28emscripten::val\20\28**\29\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\29\2c\20sk_sp*\2c\20SkEncodedImageFormat\2c\20int\29 +8969:emscripten::internal::FunctionInvoker\29\2c\20emscripten::val\2c\20sk_sp>::invoke\28emscripten::val\20\28**\29\28sk_sp\29\2c\20sk_sp*\29 +8970:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20float\2c\20float\29\2c\20SkFont*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20float\2c\20float\29 +8971:emscripten::internal::FunctionInvoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29\2c\20bool\2c\20sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*>::invoke\28bool\20\28**\29\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29\2c\20sk_sp*\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29 +8972:emscripten::internal::FunctionInvoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29\2c\20bool\2c\20sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int>::invoke\28bool\20\28**\29\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +8973:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\29 +8974:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20bool\29\2c\20SkPath*\2c\20float\2c\20float\2c\20bool\29 +8975:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20StrokeOpts\29\2c\20SkPath*\2c\20StrokeOpts*\29 +8976:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkCanvas&\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29\2c\20SkCanvas*\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +8977:emscripten::internal::FunctionInvoker::invoke\28SkPath\20\28**\29\28SkPath\20const&\29\2c\20SkPath*\29 +8978:emscripten::internal::FunctionInvoker::invoke\28SkPath\20\28**\29\28SkContourMeasure&\2c\20float\2c\20float\2c\20bool\29\2c\20SkContourMeasure*\2c\20float\2c\20float\2c\20bool\29 +8979:emscripten::internal::FunctionInvoker::invoke\28SkPaint\20\28**\29\28SkPaint\20const&\29\2c\20SkPaint*\29 +8980:emscripten::internal::FunctionInvoker::invoke\28SimpleImageInfo\20\28**\29\28SkSurface&\29\2c\20SkSurface*\29 +8981:emscripten::internal::FunctionInvoker::invoke\28RuntimeEffectUniform\20\28**\29\28SkRuntimeEffect&\2c\20int\29\2c\20SkRuntimeEffect*\2c\20int\29 +8982:emit_message +8983:embind_init_Skia\28\29::$_9::__invoke\28SkAnimatedImage&\29 +8984:embind_init_Skia\28\29::$_99::__invoke\28SkPath&\2c\20unsigned\20long\2c\20int\2c\20bool\29 +8985:embind_init_Skia\28\29::$_98::__invoke\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8986:embind_init_Skia\28\29::$_97::__invoke\28SkPath&\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20int\29 +8987:embind_init_Skia\28\29::$_96::__invoke\28SkPath&\2c\20unsigned\20long\2c\20float\2c\20float\29 +8988:embind_init_Skia\28\29::$_95::__invoke\28unsigned\20long\2c\20SkPath\29 +8989:embind_init_Skia\28\29::$_94::__invoke\28float\2c\20unsigned\20long\29 +8990:embind_init_Skia\28\29::$_93::__invoke\28unsigned\20long\2c\20int\2c\20float\29 +8991:embind_init_Skia\28\29::$_92::__invoke\28\29 +8992:embind_init_Skia\28\29::$_91::__invoke\28\29 +8993:embind_init_Skia\28\29::$_90::__invoke\28sk_sp\2c\20sk_sp\29 +8994:embind_init_Skia\28\29::$_8::__invoke\28emscripten::val\29 +8995:embind_init_Skia\28\29::$_89::__invoke\28SkPaint&\2c\20unsigned\20int\2c\20sk_sp\29 +8996:embind_init_Skia\28\29::$_88::__invoke\28SkPaint&\2c\20unsigned\20int\29 +8997:embind_init_Skia\28\29::$_87::__invoke\28SkPaint&\2c\20unsigned\20long\2c\20sk_sp\29 +8998:embind_init_Skia\28\29::$_86::__invoke\28SkPaint&\2c\20unsigned\20long\29 +8999:embind_init_Skia\28\29::$_85::__invoke\28SkPaint\20const&\29 +9000:embind_init_Skia\28\29::$_84::__invoke\28SkBlurStyle\2c\20float\2c\20bool\29 +9001:embind_init_Skia\28\29::$_83::__invoke\28float\2c\20float\2c\20sk_sp\29 +9002:embind_init_Skia\28\29::$_82::__invoke\28unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp\29 +9003:embind_init_Skia\28\29::$_81::__invoke\28unsigned\20long\2c\20float\2c\20float\2c\20sk_sp\29 +9004:embind_init_Skia\28\29::$_80::__invoke\28sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +9005:embind_init_Skia\28\29::$_7::__invoke\28GrDirectContext&\2c\20unsigned\20long\29 +9006:embind_init_Skia\28\29::$_79::__invoke\28sk_sp\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\29 +9007:embind_init_Skia\28\29::$_78::__invoke\28float\2c\20float\2c\20sk_sp\29 +9008:embind_init_Skia\28\29::$_77::__invoke\28float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp\29 +9009:embind_init_Skia\28\29::$_76::__invoke\28float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp\29 +9010:embind_init_Skia\28\29::$_75::__invoke\28sk_sp\29 +9011:embind_init_Skia\28\29::$_74::__invoke\28SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp\2c\20sk_sp\29 +9012:embind_init_Skia\28\29::$_73::__invoke\28float\2c\20float\2c\20sk_sp\29 +9013:embind_init_Skia\28\29::$_72::__invoke\28sk_sp\2c\20sk_sp\29 +9014:embind_init_Skia\28\29::$_71::__invoke\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\29 +9015:embind_init_Skia\28\29::$_70::__invoke\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +9016:embind_init_Skia\28\29::$_6::__invoke\28GrDirectContext&\29 +9017:embind_init_Skia\28\29::$_69::__invoke\28SkImageFilter\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +9018:embind_init_Skia\28\29::$_68::__invoke\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +9019:embind_init_Skia\28\29::$_67::__invoke\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29 +9020:embind_init_Skia\28\29::$_66::__invoke\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29 +9021:embind_init_Skia\28\29::$_65::__invoke\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29 +9022:embind_init_Skia\28\29::$_64::__invoke\28sk_sp\29 +9023:embind_init_Skia\28\29::$_63::__invoke\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29 +9024:embind_init_Skia\28\29::$_62::__invoke\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\29 +9025:embind_init_Skia\28\29::$_61::__invoke\28sk_sp\29 +9026:embind_init_Skia\28\29::$_60::__invoke\28sk_sp\29 +9027:embind_init_Skia\28\29::$_5::__invoke\28GrDirectContext&\29 +9028:embind_init_Skia\28\29::$_59::__invoke\28SkFontMgr&\2c\20unsigned\20long\2c\20int\29 +9029:embind_init_Skia\28\29::$_58::__invoke\28SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29 +9030:embind_init_Skia\28\29::$_57::__invoke\28SkFontMgr&\2c\20int\29 +9031:embind_init_Skia\28\29::$_56::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20int\29 +9032:embind_init_Skia\28\29::$_55::__invoke\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20float\2c\20float\29 +9033:embind_init_Skia\28\29::$_54::__invoke\28SkFont&\29 +9034:embind_init_Skia\28\29::$_53::__invoke\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +9035:embind_init_Skia\28\29::$_52::__invoke\28SkFont&\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPaint*\29 +9036:embind_init_Skia\28\29::$_51::__invoke\28SkContourMeasure&\2c\20float\2c\20float\2c\20bool\29 +9037:embind_init_Skia\28\29::$_50::__invoke\28SkContourMeasure&\2c\20float\2c\20unsigned\20long\29 +9038:embind_init_Skia\28\29::$_4::__invoke\28unsigned\20long\2c\20unsigned\20long\29 +9039:embind_init_Skia\28\29::$_49::__invoke\28unsigned\20long\29 +9040:embind_init_Skia\28\29::$_48::__invoke\28unsigned\20long\2c\20SkBlendMode\2c\20sk_sp\29 +9041:embind_init_Skia\28\29::$_47::__invoke\28SkCanvas&\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +9042:embind_init_Skia\28\29::$_46::__invoke\28SkCanvas&\2c\20SkPaint\29 +9043:embind_init_Skia\28\29::$_45::__invoke\28SkCanvas&\2c\20SkPaint\20const*\2c\20unsigned\20long\2c\20SkImageFilter\20const*\2c\20unsigned\20int\2c\20SkTileMode\29 +9044:embind_init_Skia\28\29::$_44::__invoke\28SkCanvas&\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +9045:embind_init_Skia\28\29::$_43::__invoke\28SkCanvas&\2c\20SimpleImageInfo\29 +9046:embind_init_Skia\28\29::$_42::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +9047:embind_init_Skia\28\29::$_41::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +9048:embind_init_Skia\28\29::$_40::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +9049:embind_init_Skia\28\29::$_3::__invoke\28unsigned\20long\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\29 +9050:embind_init_Skia\28\29::$_39::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +9051:embind_init_Skia\28\29::$_38::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29 +9052:embind_init_Skia\28\29::$_37::__invoke\28SkCanvas&\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20int\29 +9053:embind_init_Skia\28\29::$_36::__invoke\28SkCanvas&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +9054:embind_init_Skia\28\29::$_35::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +9055:embind_init_Skia\28\29::$_34::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +9056:embind_init_Skia\28\29::$_33::__invoke\28SkCanvas&\2c\20SkCanvas::PointMode\2c\20unsigned\20long\2c\20int\2c\20SkPaint&\29 +9057:embind_init_Skia\28\29::$_32::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +9058:embind_init_Skia\28\29::$_31::__invoke\28SkCanvas&\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +9059:embind_init_Skia\28\29::$_30::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +9060:embind_init_Skia\28\29::$_2::__invoke\28SimpleImageInfo\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\29 +9061:embind_init_Skia\28\29::$_29::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +9062:embind_init_Skia\28\29::$_28::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +9063:embind_init_Skia\28\29::$_27::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\20const*\2c\20bool\29 +9064:embind_init_Skia\28\29::$_26::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +9065:embind_init_Skia\28\29::$_25::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +9066:embind_init_Skia\28\29::$_24::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +9067:embind_init_Skia\28\29::$_23::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +9068:embind_init_Skia\28\29::$_22::__invoke\28SkCanvas&\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29 +9069:embind_init_Skia\28\29::$_21::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +9070:embind_init_Skia\28\29::$_20::__invoke\28SkCanvas&\2c\20unsigned\20int\2c\20SkBlendMode\29 +9071:embind_init_Skia\28\29::$_1::__invoke\28unsigned\20long\2c\20unsigned\20long\29 +9072:embind_init_Skia\28\29::$_19::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkBlendMode\29 +9073:embind_init_Skia\28\29::$_18::__invoke\28SkCanvas&\2c\20unsigned\20long\29 +9074:embind_init_Skia\28\29::$_17::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +9075:embind_init_Skia\28\29::$_16::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +9076:embind_init_Skia\28\29::$_15::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +9077:embind_init_Skia\28\29::$_150::__invoke\28SkVertices::Builder&\29 +9078:embind_init_Skia\28\29::$_14::__invoke\28SkCanvas&\2c\20unsigned\20long\29 +9079:embind_init_Skia\28\29::$_149::__invoke\28SkVertices::Builder&\29 +9080:embind_init_Skia\28\29::$_148::__invoke\28SkVertices::Builder&\29 +9081:embind_init_Skia\28\29::$_147::__invoke\28SkVertices::Builder&\29 +9082:embind_init_Skia\28\29::$_146::__invoke\28SkVertices&\2c\20unsigned\20long\29 +9083:embind_init_Skia\28\29::$_145::__invoke\28SkTypeface&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +9084:embind_init_Skia\28\29::$_144::__invoke\28SkTypeface&\29 +9085:embind_init_Skia\28\29::$_143::__invoke\28unsigned\20long\2c\20int\29 +9086:embind_init_Skia\28\29::$_142::__invoke\28\29 +9087:embind_init_Skia\28\29::$_141::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +9088:embind_init_Skia\28\29::$_140::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +9089:embind_init_Skia\28\29::$_13::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29 +9090:embind_init_Skia\28\29::$_139::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +9091:embind_init_Skia\28\29::$_138::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +9092:embind_init_Skia\28\29::$_137::__invoke\28SkSurface&\29 +9093:embind_init_Skia\28\29::$_136::__invoke\28SkSurface&\29 +9094:embind_init_Skia\28\29::$_135::__invoke\28SkSurface&\29 +9095:embind_init_Skia\28\29::$_134::__invoke\28SkSurface&\2c\20SimpleImageInfo\29 +9096:embind_init_Skia\28\29::$_133::__invoke\28SkSurface&\2c\20unsigned\20long\29 +9097:embind_init_Skia\28\29::$_132::__invoke\28SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo\29 +9098:embind_init_Skia\28\29::$_131::__invoke\28SkSurface&\29 +9099:embind_init_Skia\28\29::$_130::__invoke\28SkSurface&\29 +9100:embind_init_Skia\28\29::$_12::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29 +9101:embind_init_Skia\28\29::$_129::__invoke\28SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\29 +9102:embind_init_Skia\28\29::$_128::__invoke\28SkRuntimeEffect&\2c\20int\29 +9103:embind_init_Skia\28\29::$_127::__invoke\28SkRuntimeEffect&\2c\20int\29 +9104:embind_init_Skia\28\29::$_126::__invoke\28SkRuntimeEffect&\29 +9105:embind_init_Skia\28\29::$_125::__invoke\28SkRuntimeEffect&\29 +9106:embind_init_Skia\28\29::$_124::__invoke\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +9107:embind_init_Skia\28\29::$_123::__invoke\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +9108:embind_init_Skia\28\29::$_122::__invoke\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29 +9109:embind_init_Skia\28\29::$_121::__invoke\28sk_sp\2c\20int\2c\20int\29 +9110:embind_init_Skia\28\29::$_120::__invoke\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29 +9111:embind_init_Skia\28\29::$_11::__invoke\28SkCanvas&\2c\20unsigned\20long\29 +9112:embind_init_Skia\28\29::$_119::__invoke\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29 +9113:embind_init_Skia\28\29::$_118::__invoke\28SkSL::DebugTrace\20const*\29 +9114:embind_init_Skia\28\29::$_117::__invoke\28unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +9115:embind_init_Skia\28\29::$_116::__invoke\28float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29 +9116:embind_init_Skia\28\29::$_115::__invoke\28float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +9117:embind_init_Skia\28\29::$_114::__invoke\28float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +9118:embind_init_Skia\28\29::$_113::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +9119:embind_init_Skia\28\29::$_112::__invoke\28float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29 +9120:embind_init_Skia\28\29::$_111::__invoke\28unsigned\20long\2c\20sk_sp\29 +9121:embind_init_Skia\28\29::$_110::operator\28\29\28SkPicture&\29\20const::'lambda'\28SkImage*\2c\20void*\29::__invoke\28SkImage*\2c\20void*\29 +9122:embind_init_Skia\28\29::$_110::__invoke\28SkPicture&\29 +9123:embind_init_Skia\28\29::$_10::__invoke\28SkAnimatedImage&\29 +9124:embind_init_Skia\28\29::$_109::__invoke\28SkPicture&\2c\20unsigned\20long\29 +9125:embind_init_Skia\28\29::$_108::__invoke\28SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +9126:embind_init_Skia\28\29::$_107::__invoke\28SkPictureRecorder&\29 +9127:embind_init_Skia\28\29::$_106::__invoke\28SkPictureRecorder&\2c\20unsigned\20long\2c\20bool\29 +9128:embind_init_Skia\28\29::$_105::__invoke\28SkPath&\2c\20unsigned\20long\29 +9129:embind_init_Skia\28\29::$_104::__invoke\28SkPath&\2c\20unsigned\20long\29 +9130:embind_init_Skia\28\29::$_103::__invoke\28SkPath&\2c\20int\2c\20unsigned\20long\29 +9131:embind_init_Skia\28\29::$_102::__invoke\28SkPath&\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\29 +9132:embind_init_Skia\28\29::$_101::__invoke\28SkPath&\2c\20unsigned\20long\2c\20bool\29 +9133:embind_init_Skia\28\29::$_100::__invoke\28SkPath&\2c\20unsigned\20long\2c\20bool\29 +9134:embind_init_Skia\28\29::$_0::__invoke\28unsigned\20long\2c\20unsigned\20long\29 +9135:embind_init_Paragraph\28\29::$_9::__invoke\28skia::textlayout::ParagraphBuilderImpl&\29 +9136:embind_init_Paragraph\28\29::$_8::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20float\2c\20float\2c\20skia::textlayout::PlaceholderAlignment\2c\20skia::textlayout::TextBaseline\2c\20float\29 +9137:embind_init_Paragraph\28\29::$_7::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\2c\20SkPaint\2c\20SkPaint\29 +9138:embind_init_Paragraph\28\29::$_6::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\29 +9139:embind_init_Paragraph\28\29::$_4::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +9140:embind_init_Paragraph\28\29::$_3::__invoke\28emscripten::val\2c\20emscripten::val\2c\20float\29 +9141:embind_init_Paragraph\28\29::$_2::__invoke\28SimpleParagraphStyle\2c\20sk_sp\29 +9142:embind_init_Paragraph\28\29::$_19::__invoke\28skia::textlayout::FontCollection&\2c\20sk_sp\20const&\29 +9143:embind_init_Paragraph\28\29::$_18::__invoke\28\29 +9144:embind_init_Paragraph\28\29::$_17::__invoke\28skia::textlayout::TypefaceFontProvider&\2c\20sk_sp\2c\20unsigned\20long\29 +9145:embind_init_Paragraph\28\29::$_16::__invoke\28\29 +9146:dispose_external_texture\28void*\29 +9147:deleteJSTexture\28void*\29 +9148:deflate_slow +9149:deflate_fast +9150:defaultGetValue\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +9151:defaultGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +9152:defaultContains\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +9153:decompress_smooth_data +9154:decompress_onepass +9155:decompress_data +9156:decompose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +9157:decompose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +9158:decode_mcu_DC_refine +9159:decode_mcu_DC_first +9160:decode_mcu_AC_refine +9161:decode_mcu_AC_first +9162:decode_mcu +9163:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::Make\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20bool\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9164:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\2c\20GrShaderCaps\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::\28anonymous\20namespace\29::HullShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9165:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9166:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9167:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&>\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathTessellator::PathDrawList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9168:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29>\28skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20sk_sp\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9169:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Make\28SkArenaAlloc*\2c\20GrAAType\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9170:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerSkyline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9171:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerPow2&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9172:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make*\20SkArenaAlloc::make>\28\29::'lambda'\28void*\29>\28sk_sp&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9173:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::ThreeBoxApproxPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9174:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc>\28\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TextureOpImpl::Desc&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9175:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TentPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9176:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::SimpleTriangleShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9177:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader\2c\20bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*\2c\20GrShaderCaps\20const&>\28bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*&&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::DrawAtlasPathShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9178:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&>\28SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::BoundingBoxShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9179:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20unsigned\20char&&\29::'lambda'\28void*\29>\28Sprite_D32_S32&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9180:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&&\2c\20bool\20const&\29::'lambda'\28void*\29>\28SkTriColorShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9181:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTCubic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9182:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTConic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9183:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\29::'lambda'\28void*\29>\28SkSpriteBlitter_Memcpy&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9184:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&>\28SkPixmap\20const&\2c\20SkArenaAlloc*&\2c\20sk_sp&\29::'lambda'\28void*\29>\28SkRasterPipelineSpriteBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9185:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*&\29::'lambda'\28void*\29>\28SkRasterPipelineBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9186:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkNullBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9187:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkImage_Base\20const*&&\2c\20SkMatrix\20const&\2c\20SkMipmapMode&\29::'lambda'\28void*\29>\28SkMipmapAccessor&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9188:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::PathData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9189:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::DrawableData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9190:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9191:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkCubicEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9192:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\29>>::Node*\20SkArenaAlloc::make&\29>>::Node\2c\20std::__2::function&\29>>\28std::__2::function&\29>&&\29::'lambda'\28void*\29>\28SkArenaAllocList&\29>>::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9193:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node\2c\20std::__2::function&\29>\2c\20skgpu::Token>\28std::__2::function&\29>&&\2c\20skgpu::Token&&\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9194:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node>\28\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9195:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29::'lambda'\28void*\29>\28SkA8_Coverage_Blitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9196:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28GrSimpleMesh&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9197:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29::'lambda'\28void*\29>\28GrResourceAllocator::Register&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9198:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPath\20const&\2c\20SkArenaAlloc*\20const&\29::'lambda'\28void*\29>\28GrInnerFanTriangulator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9199:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldLCDTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20GrDistanceFieldLCDTextGeoProc::DistanceAdjust\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9200:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29>\28GrBitmapTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9201:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrAppliedClip&&\29::'lambda'\28void*\29>\28GrAppliedClip&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9202:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28EllipseGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9203:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28DefaultGeoProc::Make\28SkArenaAlloc*\2c\20unsigned\20int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +9204:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9205:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&\29 +9206:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9207:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9208:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9209:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +9210:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9211:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&\29 +9212:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9213:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9214:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +9215:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +9216:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +9217:deallocate_buffer_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9218:ddquad_xy_at_t\28SkDCurve\20const&\2c\20double\29 +9219:ddquad_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +9220:ddline_xy_at_t\28SkDCurve\20const&\2c\20double\29 +9221:ddline_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +9222:ddcubic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +9223:ddcubic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +9224:ddconic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +9225:ddconic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +9226:data_destroy_use\28void*\29 +9227:data_create_use\28hb_ot_shape_plan_t\20const*\29 +9228:data_create_khmer\28hb_ot_shape_plan_t\20const*\29 +9229:data_create_indic\28hb_ot_shape_plan_t\20const*\29 +9230:data_create_hangul\28hb_ot_shape_plan_t\20const*\29 +9231:copy\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +9232:convert_bytes_to_data +9233:consume_markers +9234:consume_data +9235:computeTonalColors\28unsigned\20long\2c\20unsigned\20long\29 +9236:compose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9237:compose_hebrew\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9238:compare_ppem +9239:compare_myanmar_order\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +9240:compare_edges\28SkEdge\20const*\2c\20SkEdge\20const*\29 +9241:compare_edges\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29 +9242:compare_combining_class\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +9243:compareKeywordStructs\28void\20const*\2c\20void\20const*\2c\20void\20const*\29 +9244:compareEntries\28UElement\2c\20UElement\29 +9245:color_quantize3 +9246:color_quantize +9247:collect_features_use\28hb_ot_shape_planner_t*\29 +9248:collect_features_myanmar\28hb_ot_shape_planner_t*\29 +9249:collect_features_khmer\28hb_ot_shape_planner_t*\29 +9250:collect_features_indic\28hb_ot_shape_planner_t*\29 +9251:collect_features_hangul\28hb_ot_shape_planner_t*\29 +9252:collect_features_arabic\28hb_ot_shape_planner_t*\29 +9253:clip\28SkPath\20const&\2c\20SkHalfPlane\20const&\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +9254:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitStatement\28SkSL::Statement\20const&\29 +9255:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +9256:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitExpression\28SkSL::Expression\20const&\29 +9257:charIterTextLength\28UText*\29 +9258:charIterTextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +9259:charIterTextClose\28UText*\29 +9260:charIterTextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +9261:changesWhenNFKC_Casefolded\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +9262:changesWhenCasefolded\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +9263:cff_slot_init +9264:cff_slot_done +9265:cff_size_request +9266:cff_size_init +9267:cff_size_done +9268:cff_sid_to_glyph_name +9269:cff_set_var_design +9270:cff_set_mm_weightvector +9271:cff_set_mm_blend +9272:cff_set_instance +9273:cff_random +9274:cff_ps_has_glyph_names +9275:cff_ps_get_font_info +9276:cff_ps_get_font_extra +9277:cff_parse_vsindex +9278:cff_parse_private_dict +9279:cff_parse_multiple_master +9280:cff_parse_maxstack +9281:cff_parse_font_matrix +9282:cff_parse_font_bbox +9283:cff_parse_cid_ros +9284:cff_parse_blend +9285:cff_metrics_adjust +9286:cff_hadvance_adjust +9287:cff_glyph_load +9288:cff_get_var_design +9289:cff_get_var_blend +9290:cff_get_standard_encoding +9291:cff_get_ros +9292:cff_get_ps_name +9293:cff_get_name_index +9294:cff_get_mm_weightvector +9295:cff_get_mm_var +9296:cff_get_mm_blend +9297:cff_get_is_cid +9298:cff_get_interface +9299:cff_get_glyph_name +9300:cff_get_glyph_data +9301:cff_get_cmap_info +9302:cff_get_cid_from_glyph_index +9303:cff_get_advances +9304:cff_free_glyph_data +9305:cff_fd_select_get +9306:cff_face_init +9307:cff_face_done +9308:cff_driver_init +9309:cff_done_blend +9310:cff_decoder_prepare +9311:cff_decoder_init +9312:cff_cmap_unicode_init +9313:cff_cmap_unicode_char_next +9314:cff_cmap_unicode_char_index +9315:cff_cmap_encoding_init +9316:cff_cmap_encoding_done +9317:cff_cmap_encoding_char_next +9318:cff_cmap_encoding_char_index +9319:cff_builder_start_point +9320:cff_builder_init +9321:cff_builder_add_point1 +9322:cff_builder_add_point +9323:cff_builder_add_contour +9324:cff_blend_check_vector +9325:cf2_free_instance +9326:cf2_decoder_parse_charstrings +9327:cf2_builder_moveTo +9328:cf2_builder_lineTo +9329:cf2_builder_cubeTo +9330:caseBinaryPropertyContains\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +9331:bw_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +9332:breakiterator_cleanup\28\29 +9333:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::SpotVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +9334:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::AmbientVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +9335:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9336:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9337:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9338:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9339:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9340:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9341:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9342:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9343:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9344:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +9345:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9346:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9347:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9348:bool\20OT::cmap::accelerator_t::get_glyph_from_macroman\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9349:bool\20OT::cmap::accelerator_t::get_glyph_from_ascii\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9350:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9351:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +9352:blur_y_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9353:blur_y_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9354:blur_y_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9355:blur_y_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9356:blur_x_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9357:blur_x_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9358:blur_x_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9359:blur_x_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +9360:blit_row_s32a_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +9361:blit_row_s32_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +9362:blit_row_s32_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +9363:biDiGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +9364:argb32_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +9365:arabic_fallback_shape\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9366:alwaysSaveTypefaceBytes\28SkTypeface*\2c\20void*\29 +9367:alloc_sarray +9368:alloc_barray +9369:afm_parser_parse +9370:afm_parser_init +9371:afm_parser_done +9372:afm_compare_kern_pairs +9373:af_property_set +9374:af_property_get +9375:af_latin_metrics_scale +9376:af_latin_metrics_init +9377:af_latin_hints_init +9378:af_latin_hints_apply +9379:af_latin_get_standard_widths +9380:af_indic_metrics_init +9381:af_indic_hints_apply +9382:af_get_interface +9383:af_face_globals_free +9384:af_dummy_hints_init +9385:af_dummy_hints_apply +9386:af_cjk_metrics_init +9387:af_autofitter_load_glyph +9388:af_autofitter_init +9389:access_virt_sarray +9390:access_virt_barray +9391:_hb_ot_font_destroy\28void*\29 +9392:_hb_glyph_info_is_default_ignorable\28hb_glyph_info_t\20const*\29 +9393:_hb_face_for_data_reference_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +9394:_hb_face_for_data_get_table_tags\28hb_face_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +9395:_hb_face_for_data_closure_destroy\28void*\29 +9396:_hb_clear_substitution_flags\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9397:_emscripten_stack_restore +9398:__wasm_call_ctors +9399:__stdio_write +9400:__stdio_seek +9401:__stdio_read +9402:__stdio_close +9403:__getTypeName +9404:__cxxabiv1::__vmi_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +9405:__cxxabiv1::__vmi_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +9406:__cxxabiv1::__vmi_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +9407:__cxxabiv1::__si_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +9408:__cxxabiv1::__si_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +9409:__cxxabiv1::__si_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +9410:__cxxabiv1::__class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +9411:__cxxabiv1::__class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +9412:__cxxabiv1::__class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +9413:__cxxabiv1::__class_type_info::can_catch\28__cxxabiv1::__shim_type_info\20const*\2c\20void*&\29\20const +9414:__cxx_global_array_dtor_9768 +9415:__cxx_global_array_dtor_8741 +9416:__cxx_global_array_dtor_8350 +9417:__cxx_global_array_dtor_8167 +9418:__cxx_global_array_dtor_4098 +9419:__cxx_global_array_dtor_14969 +9420:__cxx_global_array_dtor_10863 +9421:__cxx_global_array_dtor_10156 +9422:__cxx_global_array_dtor.88 +9423:__cxx_global_array_dtor.73 +9424:__cxx_global_array_dtor.58 +9425:__cxx_global_array_dtor.45 +9426:__cxx_global_array_dtor.43 +9427:__cxx_global_array_dtor.41 +9428:__cxx_global_array_dtor.39 +9429:__cxx_global_array_dtor.37 +9430:__cxx_global_array_dtor.35 +9431:__cxx_global_array_dtor.34 +9432:__cxx_global_array_dtor.32 +9433:__cxx_global_array_dtor.1_14970 +9434:__cxx_global_array_dtor.139 +9435:__cxx_global_array_dtor.136 +9436:__cxx_global_array_dtor.112 +9437:__cxx_global_array_dtor.1 +9438:__cxx_global_array_dtor +9439:\28anonymous\20namespace\29::uprops_cleanup\28\29 +9440:\28anonymous\20namespace\29::ulayout_isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +9441:\28anonymous\20namespace\29::skhb_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +9442:\28anonymous\20namespace\29::skhb_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +9443:\28anonymous\20namespace\29::skhb_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +9444:\28anonymous\20namespace\29::skhb_glyph_h_advance\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +9445:\28anonymous\20namespace\29::skhb_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +9446:\28anonymous\20namespace\29::skhb_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +9447:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29::$_0::__invoke\28void*\29 +9448:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +9449:\28anonymous\20namespace\29::make_morphology\28\28anonymous\20namespace\29::MorphType\2c\20SkSize\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +9450:\28anonymous\20namespace\29::make_drop_shadow_graph\28SkPoint\2c\20SkSize\2c\20SkRGBA4f<\28SkAlphaType\293>\2c\20sk_sp\2c\20bool\2c\20sk_sp\2c\20std::__2::optional\20const&\29 +9451:\28anonymous\20namespace\29::extension_compare\28SkString\20const&\2c\20SkString\20const&\29 +9452:\28anonymous\20namespace\29::characterproperties_cleanup\28\29 +9453:\28anonymous\20namespace\29::_set_add\28USet*\2c\20int\29 +9454:\28anonymous\20namespace\29::_set_addString\28USet*\2c\20char16_t\20const*\2c\20int\29 +9455:\28anonymous\20namespace\29::_set_addRange\28USet*\2c\20int\2c\20int\29 +9456:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29_4698 +9457:\28anonymous\20namespace\29::YUVPlanesRec::getCategory\28\29\20const +9458:\28anonymous\20namespace\29::YUVPlanesRec::diagnostic_only_getDiscardable\28\29\20const +9459:\28anonymous\20namespace\29::YUVPlanesRec::bytesUsed\28\29\20const +9460:\28anonymous\20namespace\29::YUVPlanesRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +9461:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29_11895 +9462:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29 +9463:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29_11879 +9464:\28anonymous\20namespace\29::TriangulatingPathOp::visitProxies\28std::__2::function\20const&\29\20const +9465:\28anonymous\20namespace\29::TriangulatingPathOp::programInfo\28\29 +9466:\28anonymous\20namespace\29::TriangulatingPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9467:\28anonymous\20namespace\29::TriangulatingPathOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9468:\28anonymous\20namespace\29::TriangulatingPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9469:\28anonymous\20namespace\29::TriangulatingPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9470:\28anonymous\20namespace\29::TriangulatingPathOp::name\28\29\20const +9471:\28anonymous\20namespace\29::TriangulatingPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9472:\28anonymous\20namespace\29::TransformedMaskSubRun::unflattenSize\28\29\20const +9473:\28anonymous\20namespace\29::TransformedMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +9474:\28anonymous\20namespace\29::TransformedMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +9475:\28anonymous\20namespace\29::TransformedMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +9476:\28anonymous\20namespace\29::ThreeBoxApproxPass::startBlur\28\29 +9477:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +9478:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +9479:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +9480:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29_11855 +9481:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29 +9482:\28anonymous\20namespace\29::TextureOpImpl::visitProxies\28std::__2::function\20const&\29\20const +9483:\28anonymous\20namespace\29::TextureOpImpl::programInfo\28\29 +9484:\28anonymous\20namespace\29::TextureOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +9485:\28anonymous\20namespace\29::TextureOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9486:\28anonymous\20namespace\29::TextureOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9487:\28anonymous\20namespace\29::TextureOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9488:\28anonymous\20namespace\29::TextureOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9489:\28anonymous\20namespace\29::TextureOpImpl::name\28\29\20const +9490:\28anonymous\20namespace\29::TextureOpImpl::fixedFunctionFlags\28\29\20const +9491:\28anonymous\20namespace\29::TextureOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9492:\28anonymous\20namespace\29::TentPass::startBlur\28\29 +9493:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +9494:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +9495:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +9496:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29_11900 +9497:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29 +9498:\28anonymous\20namespace\29::StaticVertexAllocator::unlock\28int\29 +9499:\28anonymous\20namespace\29::StaticVertexAllocator::lock\28unsigned\20long\2c\20int\29 +9500:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::currentScript\28\29\20const +9501:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::consume\28\29 +9502:\28anonymous\20namespace\29::SkUbrkGetLocaleByType::getLocaleByType\28UBreakIterator\20const*\2c\20ULocDataLocaleType\2c\20UErrorCode*\29 +9503:\28anonymous\20namespace\29::SkUbrkClone::clone\28UBreakIterator\20const*\2c\20UErrorCode*\29 +9504:\28anonymous\20namespace\29::SkShaderImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9505:\28anonymous\20namespace\29::SkShaderImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9506:\28anonymous\20namespace\29::SkShaderImageFilter::getTypeName\28\29\20const +9507:\28anonymous\20namespace\29::SkShaderImageFilter::flatten\28SkWriteBuffer&\29\20const +9508:\28anonymous\20namespace\29::SkShaderImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9509:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9510:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9511:\28anonymous\20namespace\29::SkMorphologyImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9512:\28anonymous\20namespace\29::SkMorphologyImageFilter::getTypeName\28\29\20const +9513:\28anonymous\20namespace\29::SkMorphologyImageFilter::flatten\28SkWriteBuffer&\29\20const +9514:\28anonymous\20namespace\29::SkMorphologyImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9515:\28anonymous\20namespace\29::SkMergeImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9516:\28anonymous\20namespace\29::SkMergeImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9517:\28anonymous\20namespace\29::SkMergeImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9518:\28anonymous\20namespace\29::SkMergeImageFilter::getTypeName\28\29\20const +9519:\28anonymous\20namespace\29::SkMergeImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9520:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9521:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9522:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9523:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::getTypeName\28\29\20const +9524:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::flatten\28SkWriteBuffer&\29\20const +9525:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9526:\28anonymous\20namespace\29::SkImageImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9527:\28anonymous\20namespace\29::SkImageImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9528:\28anonymous\20namespace\29::SkImageImageFilter::getTypeName\28\29\20const +9529:\28anonymous\20namespace\29::SkImageImageFilter::flatten\28SkWriteBuffer&\29\20const +9530:\28anonymous\20namespace\29::SkImageImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9531:\28anonymous\20namespace\29::SkFTGeometrySink::Quad\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +9532:\28anonymous\20namespace\29::SkFTGeometrySink::Move\28FT_Vector_\20const*\2c\20void*\29 +9533:\28anonymous\20namespace\29::SkFTGeometrySink::Line\28FT_Vector_\20const*\2c\20void*\29 +9534:\28anonymous\20namespace\29::SkFTGeometrySink::Cubic\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +9535:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +9536:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFamilyName\28SkString*\29\20const +9537:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +9538:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateFamilyNameIterator\28\29\20const +9539:\28anonymous\20namespace\29::SkEmptyTypeface::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +9540:\28anonymous\20namespace\29::SkEmptyTypeface::MakeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29 +9541:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9542:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9543:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9544:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::getTypeName\28\29\20const +9545:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::flatten\28SkWriteBuffer&\29\20const +9546:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9547:\28anonymous\20namespace\29::SkCropImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9548:\28anonymous\20namespace\29::SkCropImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9549:\28anonymous\20namespace\29::SkCropImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9550:\28anonymous\20namespace\29::SkCropImageFilter::onAffectsTransparentBlack\28\29\20const +9551:\28anonymous\20namespace\29::SkCropImageFilter::getTypeName\28\29\20const +9552:\28anonymous\20namespace\29::SkCropImageFilter::flatten\28SkWriteBuffer&\29\20const +9553:\28anonymous\20namespace\29::SkCropImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9554:\28anonymous\20namespace\29::SkComposeImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9555:\28anonymous\20namespace\29::SkComposeImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9556:\28anonymous\20namespace\29::SkComposeImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9557:\28anonymous\20namespace\29::SkComposeImageFilter::getTypeName\28\29\20const +9558:\28anonymous\20namespace\29::SkComposeImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9559:\28anonymous\20namespace\29::SkColorFilterImageFilter::onIsColorFilterNode\28SkColorFilter**\29\20const +9560:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9561:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9562:\28anonymous\20namespace\29::SkColorFilterImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9563:\28anonymous\20namespace\29::SkColorFilterImageFilter::onAffectsTransparentBlack\28\29\20const +9564:\28anonymous\20namespace\29::SkColorFilterImageFilter::getTypeName\28\29\20const +9565:\28anonymous\20namespace\29::SkColorFilterImageFilter::flatten\28SkWriteBuffer&\29\20const +9566:\28anonymous\20namespace\29::SkColorFilterImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9567:\28anonymous\20namespace\29::SkBlurImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9568:\28anonymous\20namespace\29::SkBlurImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9569:\28anonymous\20namespace\29::SkBlurImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9570:\28anonymous\20namespace\29::SkBlurImageFilter::getTypeName\28\29\20const +9571:\28anonymous\20namespace\29::SkBlurImageFilter::flatten\28SkWriteBuffer&\29\20const +9572:\28anonymous\20namespace\29::SkBlurImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9573:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29_5403 +9574:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29 +9575:\28anonymous\20namespace\29::SkBlendImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +9576:\28anonymous\20namespace\29::SkBlendImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +9577:\28anonymous\20namespace\29::SkBlendImageFilter::onFilterImage\28skif::Context\20const&\29\20const +9578:\28anonymous\20namespace\29::SkBlendImageFilter::onAffectsTransparentBlack\28\29\20const +9579:\28anonymous\20namespace\29::SkBlendImageFilter::getTypeName\28\29\20const +9580:\28anonymous\20namespace\29::SkBlendImageFilter::flatten\28SkWriteBuffer&\29\20const +9581:\28anonymous\20namespace\29::SkBlendImageFilter::computeFastBounds\28SkRect\20const&\29\20const +9582:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29_8163 +9583:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29 +9584:\28anonymous\20namespace\29::SkBidiIterator_icu::getLevelAt\28int\29 +9585:\28anonymous\20namespace\29::SkBidiIterator_icu::getLength\28\29 +9586:\28anonymous\20namespace\29::SimpleTriangleShader::name\28\29\20const +9587:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9588:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9589:\28anonymous\20namespace\29::ShaperHarfBuzz::~ShaperHarfBuzz\28\29_14999 +9590:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20float\2c\20SkShaper::RunHandler*\29\20const +9591:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +9592:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20bool\2c\20float\2c\20SkShaper::RunHandler*\29\20const +9593:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::~ShapeDontWrapOrReorder\28\29 +9594:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::wrap\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::BiDiRunIterator\20const&\2c\20SkShaper::LanguageRunIterator\20const&\2c\20SkShaper::ScriptRunIterator\20const&\2c\20SkShaper::FontRunIterator\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +9595:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29_5189 +9596:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29 +9597:\28anonymous\20namespace\29::ShadowInvalidator::changed\28\29 +9598:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29_11718 +9599:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29 +9600:\28anonymous\20namespace\29::ShadowCircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +9601:\28anonymous\20namespace\29::ShadowCircularRRectOp::programInfo\28\29 +9602:\28anonymous\20namespace\29::ShadowCircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9603:\28anonymous\20namespace\29::ShadowCircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9604:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9605:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9606:\28anonymous\20namespace\29::ShadowCircularRRectOp::name\28\29\20const +9607:\28anonymous\20namespace\29::ShadowCircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9608:\28anonymous\20namespace\29::SDFTSubRun::unflattenSize\28\29\20const +9609:\28anonymous\20namespace\29::SDFTSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +9610:\28anonymous\20namespace\29::SDFTSubRun::glyphParams\28\29\20const +9611:\28anonymous\20namespace\29::SDFTSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +9612:\28anonymous\20namespace\29::SDFTSubRun::doFlatten\28SkWriteBuffer&\29\20const +9613:\28anonymous\20namespace\29::SDFTSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +9614:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29_2492 +9615:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29 +9616:\28anonymous\20namespace\29::RectsBlurRec::getCategory\28\29\20const +9617:\28anonymous\20namespace\29::RectsBlurRec::diagnostic_only_getDiscardable\28\29\20const +9618:\28anonymous\20namespace\29::RectsBlurRec::bytesUsed\28\29\20const +9619:\28anonymous\20namespace\29::RectsBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +9620:\28anonymous\20namespace\29::RasterShaderBlurAlgorithm::makeDevice\28SkImageInfo\20const&\29\20const +9621:\28anonymous\20namespace\29::RasterBlurEngine::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +9622:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +9623:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +9624:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29_2486 +9625:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29 +9626:\28anonymous\20namespace\29::RRectBlurRec::getCategory\28\29\20const +9627:\28anonymous\20namespace\29::RRectBlurRec::diagnostic_only_getDiscardable\28\29\20const +9628:\28anonymous\20namespace\29::RRectBlurRec::bytesUsed\28\29\20const +9629:\28anonymous\20namespace\29::RRectBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +9630:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29_12758 +9631:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29 +9632:\28anonymous\20namespace\29::PathSubRun::unflattenSize\28\29\20const +9633:\28anonymous\20namespace\29::PathSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +9634:\28anonymous\20namespace\29::PathSubRun::doFlatten\28SkWriteBuffer&\29\20const +9635:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29_1332 +9636:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29 +9637:\28anonymous\20namespace\29::MipMapRec::getCategory\28\29\20const +9638:\28anonymous\20namespace\29::MipMapRec::diagnostic_only_getDiscardable\28\29\20const +9639:\28anonymous\20namespace\29::MipMapRec::bytesUsed\28\29\20const +9640:\28anonymous\20namespace\29::MipMapRec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +9641:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29_11941 +9642:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29 +9643:\28anonymous\20namespace\29::MiddleOutShader::name\28\29\20const +9644:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9645:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9646:\28anonymous\20namespace\29::MiddleOutShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9647:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29_11241 +9648:\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const +9649:\28anonymous\20namespace\29::MeshOp::programInfo\28\29 +9650:\28anonymous\20namespace\29::MeshOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9651:\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9652:\28anonymous\20namespace\29::MeshOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9653:\28anonymous\20namespace\29::MeshOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9654:\28anonymous\20namespace\29::MeshOp::name\28\29\20const +9655:\28anonymous\20namespace\29::MeshOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9656:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29_11268 +9657:\28anonymous\20namespace\29::MeshGP::onTextureSampler\28int\29\20const +9658:\28anonymous\20namespace\29::MeshGP::name\28\29\20const +9659:\28anonymous\20namespace\29::MeshGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9660:\28anonymous\20namespace\29::MeshGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9661:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29_11281 +9662:\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9663:\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9664:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +9665:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +9666:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +9667:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +9668:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMangledName\28char\20const*\29 +9669:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMainName\28\29 +9670:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +9671:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +9672:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +9673:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareFunction\28char\20const*\29 +9674:\28anonymous\20namespace\29::ImageFromPictureRec::~ImageFromPictureRec\28\29_4973 +9675:\28anonymous\20namespace\29::ImageFromPictureRec::~ImageFromPictureRec\28\29 +9676:\28anonymous\20namespace\29::ImageFromPictureRec::getCategory\28\29\20const +9677:\28anonymous\20namespace\29::ImageFromPictureRec::bytesUsed\28\29\20const +9678:\28anonymous\20namespace\29::ImageFromPictureRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +9679:\28anonymous\20namespace\29::HQDownSampler::buildLevel\28SkPixmap\20const&\2c\20SkPixmap\20const&\29 +9680:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +9681:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +9682:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +9683:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +9684:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +9685:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +9686:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +9687:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +9688:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29_11358 +9689:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29 +9690:\28anonymous\20namespace\29::FillRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +9691:\28anonymous\20namespace\29::FillRectOpImpl::programInfo\28\29 +9692:\28anonymous\20namespace\29::FillRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +9693:\28anonymous\20namespace\29::FillRectOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9694:\28anonymous\20namespace\29::FillRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9695:\28anonymous\20namespace\29::FillRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9696:\28anonymous\20namespace\29::FillRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9697:\28anonymous\20namespace\29::FillRectOpImpl::name\28\29\20const +9698:\28anonymous\20namespace\29::FillRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9699:\28anonymous\20namespace\29::EllipticalRRectEffect::onMakeProgramImpl\28\29\20const +9700:\28anonymous\20namespace\29::EllipticalRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9701:\28anonymous\20namespace\29::EllipticalRRectEffect::name\28\29\20const +9702:\28anonymous\20namespace\29::EllipticalRRectEffect::clone\28\29\20const +9703:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +9704:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +9705:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29_12766 +9706:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29 +9707:\28anonymous\20namespace\29::DrawableSubRun::unflattenSize\28\29\20const +9708:\28anonymous\20namespace\29::DrawableSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +9709:\28anonymous\20namespace\29::DrawableSubRun::doFlatten\28SkWriteBuffer&\29\20const +9710:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29_11226 +9711:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29 +9712:\28anonymous\20namespace\29::DrawAtlasPathShader::onTextureSampler\28int\29\20const +9713:\28anonymous\20namespace\29::DrawAtlasPathShader::name\28\29\20const +9714:\28anonymous\20namespace\29::DrawAtlasPathShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9715:\28anonymous\20namespace\29::DrawAtlasPathShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9716:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9717:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9718:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29_11198 +9719:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29 +9720:\28anonymous\20namespace\29::DrawAtlasOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +9721:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9722:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9723:\28anonymous\20namespace\29::DrawAtlasOpImpl::name\28\29\20const +9724:\28anonymous\20namespace\29::DrawAtlasOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9725:\28anonymous\20namespace\29::DirectMaskSubRun::unflattenSize\28\29\20const +9726:\28anonymous\20namespace\29::DirectMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +9727:\28anonymous\20namespace\29::DirectMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +9728:\28anonymous\20namespace\29::DirectMaskSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +9729:\28anonymous\20namespace\29::DirectMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +9730:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29_11183 +9731:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29 +9732:\28anonymous\20namespace\29::DefaultPathOp::visitProxies\28std::__2::function\20const&\29\20const +9733:\28anonymous\20namespace\29::DefaultPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9734:\28anonymous\20namespace\29::DefaultPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9735:\28anonymous\20namespace\29::DefaultPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9736:\28anonymous\20namespace\29::DefaultPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9737:\28anonymous\20namespace\29::DefaultPathOp::name\28\29\20const +9738:\28anonymous\20namespace\29::DefaultPathOp::fixedFunctionFlags\28\29\20const +9739:\28anonymous\20namespace\29::DefaultPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9740:\28anonymous\20namespace\29::CircularRRectEffect::onMakeProgramImpl\28\29\20const +9741:\28anonymous\20namespace\29::CircularRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9742:\28anonymous\20namespace\29::CircularRRectEffect::name\28\29\20const +9743:\28anonymous\20namespace\29::CircularRRectEffect::clone\28\29\20const +9744:\28anonymous\20namespace\29::CircularRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +9745:\28anonymous\20namespace\29::CircularRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +9746:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29_5183 +9747:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29 +9748:\28anonymous\20namespace\29::CachedTessellationsRec::getCategory\28\29\20const +9749:\28anonymous\20namespace\29::CachedTessellationsRec::bytesUsed\28\29\20const +9750:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29_5181 +9751:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29_2296 +9752:\28anonymous\20namespace\29::CacheImpl::set\28SkImageFilterCacheKey\20const&\2c\20SkImageFilter\20const*\2c\20skif::FilterResult\20const&\29 +9753:\28anonymous\20namespace\29::CacheImpl::purge\28\29 +9754:\28anonymous\20namespace\29::CacheImpl::purgeByImageFilter\28SkImageFilter\20const*\29 +9755:\28anonymous\20namespace\29::CacheImpl::get\28SkImageFilterCacheKey\20const&\2c\20skif::FilterResult*\29\20const +9756:\28anonymous\20namespace\29::BoundingBoxShader::name\28\29\20const +9757:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9758:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9759:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9760:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29_11004 +9761:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29 +9762:\28anonymous\20namespace\29::AAHairlineOp::visitProxies\28std::__2::function\20const&\29\20const +9763:\28anonymous\20namespace\29::AAHairlineOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9764:\28anonymous\20namespace\29::AAHairlineOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9765:\28anonymous\20namespace\29::AAHairlineOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9766:\28anonymous\20namespace\29::AAHairlineOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9767:\28anonymous\20namespace\29::AAHairlineOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9768:\28anonymous\20namespace\29::AAHairlineOp::name\28\29\20const +9769:\28anonymous\20namespace\29::AAHairlineOp::fixedFunctionFlags\28\29\20const +9770:\28anonymous\20namespace\29::AAHairlineOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9771:\28anonymous\20namespace\29::A8Pass::startBlur\28\29 +9772:\28anonymous\20namespace\29::A8Pass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +9773:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +9774:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +9775:YuvToRgbaRow +9776:YuvToRgba4444Row +9777:YuvToRgbRow +9778:YuvToRgb565Row +9779:YuvToBgraRow +9780:YuvToBgrRow +9781:YuvToArgbRow +9782:Write_CVT_Stretched +9783:Write_CVT +9784:WebPYuv444ToRgba_C +9785:WebPYuv444ToRgba4444_C +9786:WebPYuv444ToRgb_C +9787:WebPYuv444ToRgb565_C +9788:WebPYuv444ToBgra_C +9789:WebPYuv444ToBgr_C +9790:WebPYuv444ToArgb_C +9791:WebPRescalerImportRowShrink_C +9792:WebPRescalerImportRowExpand_C +9793:WebPRescalerExportRowShrink_C +9794:WebPRescalerExportRowExpand_C +9795:WebPMultRow_C +9796:WebPMultARGBRow_C +9797:WebPConvertRGBA32ToUV_C +9798:WebPConvertARGBToUV_C +9799:WebGLTextureImageGenerator::~WebGLTextureImageGenerator\28\29_892 +9800:WebGLTextureImageGenerator::generateExternalTexture\28GrRecordingContext*\2c\20skgpu::Mipmapped\29 +9801:Vertish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +9802:Vertish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +9803:VerticalUnfilter_C +9804:VerticalFilter_C +9805:VertState::Triangles\28VertState*\29 +9806:VertState::TrianglesX\28VertState*\29 +9807:VertState::TriangleStrip\28VertState*\29 +9808:VertState::TriangleStripX\28VertState*\29 +9809:VertState::TriangleFan\28VertState*\29 +9810:VertState::TriangleFanX\28VertState*\29 +9811:VR4_C +9812:VP8LTransformColorInverse_C +9813:VP8LPredictor9_C +9814:VP8LPredictor8_C +9815:VP8LPredictor7_C +9816:VP8LPredictor6_C +9817:VP8LPredictor5_C +9818:VP8LPredictor4_C +9819:VP8LPredictor3_C +9820:VP8LPredictor2_C +9821:VP8LPredictor1_C +9822:VP8LPredictor13_C +9823:VP8LPredictor12_C +9824:VP8LPredictor11_C +9825:VP8LPredictor10_C +9826:VP8LPredictor0_C +9827:VP8LConvertBGRAToRGB_C +9828:VP8LConvertBGRAToRGBA_C +9829:VP8LConvertBGRAToRGBA4444_C +9830:VP8LConvertBGRAToRGB565_C +9831:VP8LConvertBGRAToBGR_C +9832:VP8LAddGreenToBlueAndRed_C +9833:VLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +9834:VLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +9835:VL4_C +9836:VFilter8i_C +9837:VFilter8_C +9838:VFilter16i_C +9839:VFilter16_C +9840:VE8uv_C +9841:VE4_C +9842:VE16_C +9843:UpsampleRgbaLinePair_C +9844:UpsampleRgba4444LinePair_C +9845:UpsampleRgbLinePair_C +9846:UpsampleRgb565LinePair_C +9847:UpsampleBgraLinePair_C +9848:UpsampleBgrLinePair_C +9849:UpsampleArgbLinePair_C +9850:UnresolvedCodepoints\28skia::textlayout::Paragraph&\29 +9851:UnicodeString_charAt\28int\2c\20void*\29 +9852:TransformWHT_C +9853:TransformUV_C +9854:TransformTwo_C +9855:TransformDC_C +9856:TransformDCUV_C +9857:TransformAC3_C +9858:ToSVGString\28SkPath\20const&\29 +9859:ToCmds\28SkPath\20const&\29 +9860:TT_Set_MM_Blend +9861:TT_RunIns +9862:TT_Load_Simple_Glyph +9863:TT_Load_Glyph_Header +9864:TT_Load_Composite_Glyph +9865:TT_Get_Var_Design +9866:TT_Get_MM_Blend +9867:TT_Forget_Glyph_Frame +9868:TT_Access_Glyph_Frame +9869:TM8uv_C +9870:TM4_C +9871:TM16_C +9872:Sync +9873:SquareCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +9874:Sprite_D32_S32::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +9875:SkWuffsFrameHolder::onGetFrame\28int\29\20const +9876:SkWuffsCodec::~SkWuffsCodec\28\29_13452 +9877:SkWuffsCodec::~SkWuffsCodec\28\29 +9878:SkWuffsCodec::onIsAnimated\28\29 +9879:SkWuffsCodec::onIncrementalDecode\28int*\29 +9880:SkWuffsCodec::onGetRepetitionCount\28\29 +9881:SkWuffsCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +9882:SkWuffsCodec::onGetFrameInfo\28int\2c\20SkCodec::FrameInfo*\29\20const +9883:SkWuffsCodec::onGetFrameCount\28\29 +9884:SkWuffsCodec::getFrameHolder\28\29\20const +9885:SkWuffsCodec::getEncodedData\28\29\20const +9886:SkWriteICCProfile\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +9887:SkWebpDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +9888:SkWebpCodec::~SkWebpCodec\28\29_13131 +9889:SkWebpCodec::~SkWebpCodec\28\29 +9890:SkWebpCodec::onIsAnimated\28\29 +9891:SkWebpCodec::onGetValidSubset\28SkIRect*\29\20const +9892:SkWebpCodec::onGetRepetitionCount\28\29 +9893:SkWebpCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +9894:SkWebpCodec::onGetFrameInfo\28int\2c\20SkCodec::FrameInfo*\29\20const +9895:SkWebpCodec::onGetFrameCount\28\29 +9896:SkWebpCodec::getFrameHolder\28\29\20const +9897:SkWebpCodec::FrameHolder::~FrameHolder\28\29_13129 +9898:SkWebpCodec::FrameHolder::~FrameHolder\28\29 +9899:SkWebpCodec::FrameHolder::onGetFrame\28int\29\20const +9900:SkWeakRefCnt::internal_dispose\28\29\20const +9901:SkWbmpDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +9902:SkWbmpCodec::~SkWbmpCodec\28\29_5785 +9903:SkWbmpCodec::~SkWbmpCodec\28\29 +9904:SkWbmpCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +9905:SkWbmpCodec::onSkipScanlines\28int\29 +9906:SkWbmpCodec::onRewind\28\29 +9907:SkWbmpCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +9908:SkWbmpCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +9909:SkWbmpCodec::getSampler\28bool\29 +9910:SkWbmpCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +9911:SkVertices::Builder*\20emscripten::internal::operator_new\28SkVertices::VertexMode&&\2c\20int&&\2c\20int&&\2c\20unsigned\20int&&\29 +9912:SkUserTypeface::~SkUserTypeface\28\29_5070 +9913:SkUserTypeface::~SkUserTypeface\28\29 +9914:SkUserTypeface::onOpenStream\28int*\29\20const +9915:SkUserTypeface::onGetUPEM\28\29\20const +9916:SkUserTypeface::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +9917:SkUserTypeface::onGetFamilyName\28SkString*\29\20const +9918:SkUserTypeface::onFilterRec\28SkScalerContextRec*\29\20const +9919:SkUserTypeface::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +9920:SkUserTypeface::onCountGlyphs\28\29\20const +9921:SkUserTypeface::onComputeBounds\28SkRect*\29\20const +9922:SkUserTypeface::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +9923:SkUserTypeface::getGlyphToUnicodeMap\28SkSpan\29\20const +9924:SkUserScalerContext::~SkUserScalerContext\28\29 +9925:SkUserScalerContext::generatePath\28SkGlyph\20const&\29 +9926:SkUserScalerContext::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +9927:SkUserScalerContext::generateImage\28SkGlyph\20const&\2c\20void*\29 +9928:SkUserScalerContext::generateFontMetrics\28SkFontMetrics*\29 +9929:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29::DrawableMatrixWrapper::onGetBounds\28\29 +9930:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29::DrawableMatrixWrapper::onDraw\28SkCanvas*\29 +9931:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29::DrawableMatrixWrapper::onApproximateBytesUsed\28\29 +9932:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29 +9933:SkUnicode_icu::~SkUnicode_icu\28\29_8170 +9934:SkUnicode_icu::~SkUnicode_icu\28\29 +9935:SkUnicode_icu::toUpper\28SkString\20const&\2c\20char\20const*\29 +9936:SkUnicode_icu::toUpper\28SkString\20const&\29 +9937:SkUnicode_icu::reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29 +9938:SkUnicode_icu::makeBreakIterator\28char\20const*\2c\20SkUnicode::BreakType\29 +9939:SkUnicode_icu::makeBreakIterator\28SkUnicode::BreakType\29 +9940:SkUnicode_icu::makeBidiIterator\28unsigned\20short\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +9941:SkUnicode_icu::makeBidiIterator\28char\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +9942:SkUnicode_icu::isWhitespace\28int\29 +9943:SkUnicode_icu::isTabulation\28int\29 +9944:SkUnicode_icu::isSpace\28int\29 +9945:SkUnicode_icu::isRegionalIndicator\28int\29 +9946:SkUnicode_icu::isIdeographic\28int\29 +9947:SkUnicode_icu::isHardBreak\28int\29 +9948:SkUnicode_icu::isEmoji\28int\29 +9949:SkUnicode_icu::isEmojiModifier\28int\29 +9950:SkUnicode_icu::isEmojiModifierBase\28int\29 +9951:SkUnicode_icu::isEmojiComponent\28int\29 +9952:SkUnicode_icu::isControl\28int\29 +9953:SkUnicode_icu::getWords\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +9954:SkUnicode_icu::getUtf8Words\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +9955:SkUnicode_icu::getSentences\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +9956:SkUnicode_icu::getBidiRegions\28char\20const*\2c\20int\2c\20SkUnicode::TextDirection\2c\20std::__2::vector>*\29 +9957:SkUnicode_icu::computeCodeUnitFlags\28char16_t*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +9958:SkUnicode_icu::computeCodeUnitFlags\28char*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +9959:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29_14963 +9960:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29 +9961:SkUnicodeBidiRunIterator::endOfCurrentRun\28\29\20const +9962:SkUnicodeBidiRunIterator::currentLevel\28\29\20const +9963:SkUnicodeBidiRunIterator::consume\28\29 +9964:SkUnicodeBidiRunIterator::atEnd\28\29\20const +9965:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29_8341 +9966:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29 +9967:SkTypeface_FreeTypeStream::onOpenStream\28int*\29\20const +9968:SkTypeface_FreeTypeStream::onMakeFontData\28\29\20const +9969:SkTypeface_FreeTypeStream::onMakeClone\28SkFontArguments\20const&\29\20const +9970:SkTypeface_FreeTypeStream::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +9971:SkTypeface_FreeType::onGlyphMaskNeedsCurrentColor\28\29\20const +9972:SkTypeface_FreeType::onGetVariationDesignPosition\28SkSpan\29\20const +9973:SkTypeface_FreeType::onGetVariationDesignParameters\28SkSpan\29\20const +9974:SkTypeface_FreeType::onGetUPEM\28\29\20const +9975:SkTypeface_FreeType::onGetTableTags\28SkSpan\29\20const +9976:SkTypeface_FreeType::onGetTableData\28unsigned\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20void*\29\20const +9977:SkTypeface_FreeType::onGetPostScriptName\28SkString*\29\20const +9978:SkTypeface_FreeType::onGetKerningPairAdjustments\28SkSpan\2c\20SkSpan\29\20const +9979:SkTypeface_FreeType::onGetAdvancedMetrics\28\29\20const +9980:SkTypeface_FreeType::onFilterRec\28SkScalerContextRec*\29\20const +9981:SkTypeface_FreeType::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +9982:SkTypeface_FreeType::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +9983:SkTypeface_FreeType::onCreateFamilyNameIterator\28\29\20const +9984:SkTypeface_FreeType::onCountGlyphs\28\29\20const +9985:SkTypeface_FreeType::onCopyTableData\28unsigned\20int\29\20const +9986:SkTypeface_FreeType::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +9987:SkTypeface_FreeType::getPostScriptGlyphNames\28SkString*\29\20const +9988:SkTypeface_FreeType::getGlyphToUnicodeMap\28SkSpan\29\20const +9989:SkTypeface_Empty::~SkTypeface_Empty\28\29 +9990:SkTypeface_Custom::~SkTypeface_Custom\28\29_8284 +9991:SkTypeface_Custom::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +9992:SkTypeface::onOpenExistingStream\28int*\29\20const +9993:SkTypeface::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +9994:SkTypeface::onCopyTableData\28unsigned\20int\29\20const +9995:SkTypeface::onComputeBounds\28SkRect*\29\20const +9996:SkTrimPE::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +9997:SkTrimPE::getTypeName\28\29\20const +9998:SkTriColorShader::type\28\29\20const +9999:SkTriColorShader::isOpaque\28\29\20const +10000:SkTriColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10001:SkTransformShader::type\28\29\20const +10002:SkTransformShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10003:SkTQuad::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +10004:SkTQuad::setBounds\28SkDRect*\29\20const +10005:SkTQuad::ptAtT\28double\29\20const +10006:SkTQuad::make\28SkArenaAlloc&\29\20const +10007:SkTQuad::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +10008:SkTQuad::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +10009:SkTQuad::dxdyAtT\28double\29\20const +10010:SkTQuad::debugInit\28\29 +10011:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29_4125 +10012:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29 +10013:SkTCubic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +10014:SkTCubic::setBounds\28SkDRect*\29\20const +10015:SkTCubic::ptAtT\28double\29\20const +10016:SkTCubic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +10017:SkTCubic::make\28SkArenaAlloc&\29\20const +10018:SkTCubic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +10019:SkTCubic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +10020:SkTCubic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +10021:SkTCubic::dxdyAtT\28double\29\20const +10022:SkTCubic::debugInit\28\29 +10023:SkTCubic::controlsInside\28\29\20const +10024:SkTCubic::collapsed\28\29\20const +10025:SkTConic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +10026:SkTConic::setBounds\28SkDRect*\29\20const +10027:SkTConic::ptAtT\28double\29\20const +10028:SkTConic::make\28SkArenaAlloc&\29\20const +10029:SkTConic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +10030:SkTConic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +10031:SkTConic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +10032:SkTConic::dxdyAtT\28double\29\20const +10033:SkTConic::debugInit\28\29 +10034:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29_4494 +10035:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29 +10036:SkSynchronizedResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +10037:SkSynchronizedResourceCache::setTotalByteLimit\28unsigned\20long\29 +10038:SkSynchronizedResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +10039:SkSynchronizedResourceCache::purgeAll\28\29 +10040:SkSynchronizedResourceCache::newCachedData\28unsigned\20long\29 +10041:SkSynchronizedResourceCache::getTotalBytesUsed\28\29\20const +10042:SkSynchronizedResourceCache::getTotalByteLimit\28\29\20const +10043:SkSynchronizedResourceCache::getSingleAllocationByteLimit\28\29\20const +10044:SkSynchronizedResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +10045:SkSynchronizedResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +10046:SkSynchronizedResourceCache::dump\28\29\20const +10047:SkSynchronizedResourceCache::discardableFactory\28\29\20const +10048:SkSynchronizedResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +10049:SkSwizzler::onSetSampleX\28int\29 +10050:SkSwizzler::fillWidth\28\29\20const +10051:SkSweepGradient::getTypeName\28\29\20const +10052:SkSweepGradient::flatten\28SkWriteBuffer&\29\20const +10053:SkSweepGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +10054:SkSweepGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +10055:SkSurface_Raster::~SkSurface_Raster\28\29_4858 +10056:SkSurface_Raster::~SkSurface_Raster\28\29 +10057:SkSurface_Raster::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +10058:SkSurface_Raster::onRestoreBackingMutability\28\29 +10059:SkSurface_Raster::onNewSurface\28SkImageInfo\20const&\29 +10060:SkSurface_Raster::onNewImageSnapshot\28SkIRect\20const*\29 +10061:SkSurface_Raster::onNewCanvas\28\29 +10062:SkSurface_Raster::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +10063:SkSurface_Raster::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +10064:SkSurface_Raster::imageInfo\28\29\20const +10065:SkSurface_Ganesh::~SkSurface_Ganesh\28\29_11902 +10066:SkSurface_Ganesh::~SkSurface_Ganesh\28\29 +10067:SkSurface_Ganesh::replaceBackendTexture\28GrBackendTexture\20const&\2c\20GrSurfaceOrigin\2c\20SkSurface::ContentChangeMode\2c\20void\20\28*\29\28void*\29\2c\20void*\29 +10068:SkSurface_Ganesh::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +10069:SkSurface_Ganesh::onWait\28int\2c\20GrBackendSemaphore\20const*\2c\20bool\29 +10070:SkSurface_Ganesh::onNewSurface\28SkImageInfo\20const&\29 +10071:SkSurface_Ganesh::onNewImageSnapshot\28SkIRect\20const*\29 +10072:SkSurface_Ganesh::onNewCanvas\28\29 +10073:SkSurface_Ganesh::onIsCompatible\28GrSurfaceCharacterization\20const&\29\20const +10074:SkSurface_Ganesh::onGetRecordingContext\28\29\20const +10075:SkSurface_Ganesh::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +10076:SkSurface_Ganesh::onDiscard\28\29 +10077:SkSurface_Ganesh::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +10078:SkSurface_Ganesh::onCharacterize\28GrSurfaceCharacterization*\29\20const +10079:SkSurface_Ganesh::onCapabilities\28\29 +10080:SkSurface_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +10081:SkSurface_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +10082:SkSurface_Ganesh::imageInfo\28\29\20const +10083:SkSurface_Base::onMakeTemporaryImage\28\29 +10084:SkSurface_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +10085:SkSurface::imageInfo\28\29\20const +10086:SkString*\20std::__2::vector>::__emplace_back_slow_path\28char\20const*&\2c\20int&&\29 +10087:SkStrikeCache::~SkStrikeCache\28\29_4372 +10088:SkStrikeCache::~SkStrikeCache\28\29 +10089:SkStrikeCache::findOrCreateScopedStrike\28SkStrikeSpec\20const&\29 +10090:SkStrike::~SkStrike\28\29_4359 +10091:SkStrike::strikePromise\28\29 +10092:SkStrike::roundingSpec\28\29\20const +10093:SkStrike::prepareForPath\28SkGlyph*\29 +10094:SkStrike::prepareForImage\28SkGlyph*\29 +10095:SkStrike::prepareForDrawable\28SkGlyph*\29 +10096:SkStrike::getDescriptor\28\29\20const +10097:SkSpriteBlitter_Memcpy::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10098:SkSpriteBlitter::~SkSpriteBlitter\28\29_1509 +10099:SkSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +10100:SkSpriteBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10101:SkSpriteBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +10102:SkSpriteBlitter::blitH\28int\2c\20int\2c\20int\29 +10103:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29_4250 +10104:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29 +10105:SkSpecialImage_Raster::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +10106:SkSpecialImage_Raster::getSize\28\29\20const +10107:SkSpecialImage_Raster::backingStoreDimensions\28\29\20const +10108:SkSpecialImage_Raster::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +10109:SkSpecialImage_Raster::asImage\28\29\20const +10110:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29_10946 +10111:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29 +10112:SkSpecialImage_Gpu::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +10113:SkSpecialImage_Gpu::getSize\28\29\20const +10114:SkSpecialImage_Gpu::backingStoreDimensions\28\29\20const +10115:SkSpecialImage_Gpu::asImage\28\29\20const +10116:SkSpecialImage::~SkSpecialImage\28\29 +10117:SkSpecialImage::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +10118:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29_14956 +10119:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29 +10120:SkShaper::TrivialLanguageRunIterator::currentLanguage\28\29\20const +10121:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29_7726 +10122:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29 +10123:SkShaper::TrivialBiDiRunIterator::currentLevel\28\29\20const +10124:SkShaderBlurAlgorithm::maxSigma\28\29\20const +10125:SkShaderBlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +10126:SkScan::HairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +10127:SkScan::HairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +10128:SkScan::HairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +10129:SkScan::AntiHairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +10130:SkScan::AntiHairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +10131:SkScalingCodec::onGetScaledDimensions\28float\29\20const +10132:SkScalingCodec::onDimensionsSupported\28SkISize\20const&\29 +10133:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29_8316 +10134:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29 +10135:SkScalerContext_FreeType::generatePath\28SkGlyph\20const&\29 +10136:SkScalerContext_FreeType::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +10137:SkScalerContext_FreeType::generateImage\28SkGlyph\20const&\2c\20void*\29 +10138:SkScalerContext_FreeType::generateFontMetrics\28SkFontMetrics*\29 +10139:SkScalerContext_FreeType::generateDrawable\28SkGlyph\20const&\29 +10140:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::~SkScalerContext_Empty\28\29 +10141:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generatePath\28SkGlyph\20const&\29 +10142:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +10143:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateFontMetrics\28SkFontMetrics*\29 +10144:SkSampledCodec::onGetSampledDimensions\28int\29\20const +10145:SkSampledCodec::onGetAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +10146:SkSRGBColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +10147:SkSRGBColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +10148:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_3::__invoke\28double\2c\20double\29 +10149:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_2::__invoke\28double\2c\20double\29 +10150:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_1::__invoke\28double\2c\20double\29 +10151:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_0::__invoke\28double\2c\20double\29 +10152:SkSL::remove_break_statements\28std::__2::unique_ptr>&\29::RemoveBreaksWriter::visitStatementPtr\28std::__2::unique_ptr>&\29 +10153:SkSL::hoist_vardecl_symbols_into_outer_scope\28SkSL::Context\20const&\2c\20SkSL::Block\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::SymbolTable*\29::SymbolHoister::visitStatement\28SkSL::Statement\20const&\29 +10154:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29_6994 +10155:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29 +10156:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29_6987 +10157:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29 +10158:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +10159:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitExpressionPtr\28std::__2::unique_ptr>&\29 +10160:SkSL::count_returns_at_end_of_control_flow\28SkSL::FunctionDefinition\20const&\29::CountReturnsAtEndOfControlFlow::visitStatement\28SkSL::Statement\20const&\29 +10161:SkSL::\28anonymous\20namespace\29::VariableWriteVisitor::visitExpression\28SkSL::Expression\20const&\29 +10162:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +10163:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitExpression\28SkSL::Expression\20const&\29 +10164:SkSL::\28anonymous\20namespace\29::ReturnsNonOpaqueColorVisitor::visitStatement\28SkSL::Statement\20const&\29 +10165:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitStatement\28SkSL::Statement\20const&\29 +10166:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +10167:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitStatement\28SkSL::Statement\20const&\29 +10168:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitStatement\28SkSL::Statement\20const&\29 +10169:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +10170:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitExpression\28SkSL::Expression\20const&\29 +10171:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +10172:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +10173:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29_6098 +10174:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29 +10175:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitExpression\28SkSL::Expression\20const&\29 +10176:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29_6123 +10177:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29 +10178:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitStatement\28SkSL::Statement\20const&\29 +10179:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitExpression\28SkSL::Expression\20const&\29 +10180:SkSL::VectorType::isOrContainsBool\28\29\20const +10181:SkSL::VectorType::isAllowedInUniform\28SkSL::Position*\29\20const +10182:SkSL::VectorType::isAllowedInES2\28\29\20const +10183:SkSL::VariableReference::clone\28SkSL::Position\29\20const +10184:SkSL::Variable::~Variable\28\29_6937 +10185:SkSL::Variable::~Variable\28\29 +10186:SkSL::Variable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +10187:SkSL::Variable::mangledName\28\29\20const +10188:SkSL::Variable::layout\28\29\20const +10189:SkSL::Variable::description\28\29\20const +10190:SkSL::VarDeclaration::~VarDeclaration\28\29_6935 +10191:SkSL::VarDeclaration::~VarDeclaration\28\29 +10192:SkSL::VarDeclaration::description\28\29\20const +10193:SkSL::TypeReference::clone\28SkSL::Position\29\20const +10194:SkSL::Type::minimumValue\28\29\20const +10195:SkSL::Type::maximumValue\28\29\20const +10196:SkSL::Type::matches\28SkSL::Type\20const&\29\20const +10197:SkSL::Type::isAllowedInUniform\28SkSL::Position*\29\20const +10198:SkSL::Type::fields\28\29\20const +10199:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29_7020 +10200:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29 +10201:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::visitStatementPtr\28std::__2::unique_ptr>&\29 +10202:SkSL::Tracer::var\28int\2c\20int\29 +10203:SkSL::Tracer::scope\28int\29 +10204:SkSL::Tracer::line\28int\29 +10205:SkSL::Tracer::exit\28int\29 +10206:SkSL::Tracer::enter\28int\29 +10207:SkSL::TextureType::textureAccess\28\29\20const +10208:SkSL::TextureType::isMultisampled\28\29\20const +10209:SkSL::TextureType::isDepth\28\29\20const +10210:SkSL::TernaryExpression::~TernaryExpression\28\29_6720 +10211:SkSL::TernaryExpression::~TernaryExpression\28\29 +10212:SkSL::TernaryExpression::description\28SkSL::OperatorPrecedence\29\20const +10213:SkSL::TernaryExpression::clone\28SkSL::Position\29\20const +10214:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression&\29 +10215:SkSL::Swizzle::description\28SkSL::OperatorPrecedence\29\20const +10216:SkSL::Swizzle::clone\28SkSL::Position\29\20const +10217:SkSL::SwitchStatement::description\28\29\20const +10218:SkSL::SwitchCase::description\28\29\20const +10219:SkSL::StructType::slotType\28unsigned\20long\29\20const +10220:SkSL::StructType::isOrContainsUnsizedArray\28\29\20const +10221:SkSL::StructType::isOrContainsBool\28\29\20const +10222:SkSL::StructType::isOrContainsAtomic\28\29\20const +10223:SkSL::StructType::isOrContainsArray\28\29\20const +10224:SkSL::StructType::isInterfaceBlock\28\29\20const +10225:SkSL::StructType::isBuiltin\28\29\20const +10226:SkSL::StructType::isAllowedInUniform\28SkSL::Position*\29\20const +10227:SkSL::StructType::isAllowedInES2\28\29\20const +10228:SkSL::StructType::fields\28\29\20const +10229:SkSL::StructDefinition::description\28\29\20const +10230:SkSL::StringStream::~StringStream\28\29_12861 +10231:SkSL::StringStream::~StringStream\28\29 +10232:SkSL::StringStream::write\28void\20const*\2c\20unsigned\20long\29 +10233:SkSL::StringStream::writeText\28char\20const*\29 +10234:SkSL::StringStream::write8\28unsigned\20char\29 +10235:SkSL::SingleArgumentConstructor::~SingleArgumentConstructor\28\29 +10236:SkSL::Setting::description\28SkSL::OperatorPrecedence\29\20const +10237:SkSL::Setting::clone\28SkSL::Position\29\20const +10238:SkSL::ScalarType::priority\28\29\20const +10239:SkSL::ScalarType::numberKind\28\29\20const +10240:SkSL::ScalarType::minimumValue\28\29\20const +10241:SkSL::ScalarType::maximumValue\28\29\20const +10242:SkSL::ScalarType::isOrContainsBool\28\29\20const +10243:SkSL::ScalarType::isAllowedInUniform\28SkSL::Position*\29\20const +10244:SkSL::ScalarType::isAllowedInES2\28\29\20const +10245:SkSL::ScalarType::bitWidth\28\29\20const +10246:SkSL::SamplerType::textureAccess\28\29\20const +10247:SkSL::SamplerType::isMultisampled\28\29\20const +10248:SkSL::SamplerType::isDepth\28\29\20const +10249:SkSL::SamplerType::isArrayedTexture\28\29\20const +10250:SkSL::SamplerType::dimensions\28\29\20const +10251:SkSL::ReturnStatement::description\28\29\20const +10252:SkSL::RP::VariableLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10253:SkSL::RP::VariableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10254:SkSL::RP::VariableLValue::isWritable\28\29\20const +10255:SkSL::RP::VariableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +10256:SkSL::RP::UnownedLValueSlice::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10257:SkSL::RP::UnownedLValueSlice::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10258:SkSL::RP::UnownedLValueSlice::fixedSlotRange\28SkSL::RP::Generator*\29 +10259:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29_6351 +10260:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29 +10261:SkSL::RP::SwizzleLValue::swizzle\28\29 +10262:SkSL::RP::SwizzleLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10263:SkSL::RP::SwizzleLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10264:SkSL::RP::SwizzleLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +10265:SkSL::RP::ScratchLValue::~ScratchLValue\28\29_6365 +10266:SkSL::RP::ScratchLValue::~ScratchLValue\28\29 +10267:SkSL::RP::ScratchLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10268:SkSL::RP::ScratchLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +10269:SkSL::RP::LValueSlice::~LValueSlice\28\29_6349 +10270:SkSL::RP::LValueSlice::~LValueSlice\28\29 +10271:SkSL::RP::LValue::~LValue\28\29_6341 +10272:SkSL::RP::ImmutableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10273:SkSL::RP::ImmutableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +10274:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29_6358 +10275:SkSL::RP::DynamicIndexLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10276:SkSL::RP::DynamicIndexLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +10277:SkSL::RP::DynamicIndexLValue::isWritable\28\29\20const +10278:SkSL::RP::DynamicIndexLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +10279:SkSL::ProgramVisitor::visitStatementPtr\28std::__2::unique_ptr>\20const&\29 +10280:SkSL::ProgramVisitor::visitExpressionPtr\28std::__2::unique_ptr>\20const&\29 +10281:SkSL::PrefixExpression::~PrefixExpression\28\29_6650 +10282:SkSL::PrefixExpression::~PrefixExpression\28\29 +10283:SkSL::PrefixExpression::description\28SkSL::OperatorPrecedence\29\20const +10284:SkSL::PrefixExpression::clone\28SkSL::Position\29\20const +10285:SkSL::PostfixExpression::description\28SkSL::OperatorPrecedence\29\20const +10286:SkSL::PostfixExpression::clone\28SkSL::Position\29\20const +10287:SkSL::Poison::description\28SkSL::OperatorPrecedence\29\20const +10288:SkSL::Poison::clone\28SkSL::Position\29\20const +10289:SkSL::PipelineStage::Callbacks::getMainName\28\29 +10290:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29_6050 +10291:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29 +10292:SkSL::Parser::Checkpoint::ForwardingErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +10293:SkSL::Nop::description\28\29\20const +10294:SkSL::MultiArgumentConstructor::~MultiArgumentConstructor\28\29 +10295:SkSL::ModifiersDeclaration::description\28\29\20const +10296:SkSL::MethodReference::description\28SkSL::OperatorPrecedence\29\20const +10297:SkSL::MethodReference::clone\28SkSL::Position\29\20const +10298:SkSL::MatrixType::slotCount\28\29\20const +10299:SkSL::MatrixType::rows\28\29\20const +10300:SkSL::MatrixType::isAllowedInES2\28\29\20const +10301:SkSL::LiteralType::minimumValue\28\29\20const +10302:SkSL::LiteralType::maximumValue\28\29\20const +10303:SkSL::LiteralType::isOrContainsBool\28\29\20const +10304:SkSL::Literal::getConstantValue\28int\29\20const +10305:SkSL::Literal::description\28SkSL::OperatorPrecedence\29\20const +10306:SkSL::Literal::compareConstant\28SkSL::Expression\20const&\29\20const +10307:SkSL::Literal::clone\28SkSL::Position\29\20const +10308:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_uintBitsToFloat\28double\2c\20double\2c\20double\29 +10309:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_trunc\28double\2c\20double\2c\20double\29 +10310:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tanh\28double\2c\20double\2c\20double\29 +10311:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tan\28double\2c\20double\2c\20double\29 +10312:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_step\28double\2c\20double\2c\20double\29 +10313:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sqrt\28double\2c\20double\2c\20double\29 +10314:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_smoothstep\28double\2c\20double\2c\20double\29 +10315:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sinh\28double\2c\20double\2c\20double\29 +10316:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sin\28double\2c\20double\2c\20double\29 +10317:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_saturate\28double\2c\20double\2c\20double\29 +10318:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_radians\28double\2c\20double\2c\20double\29 +10319:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_pow\28double\2c\20double\2c\20double\29 +10320:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mod\28double\2c\20double\2c\20double\29 +10321:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mix\28double\2c\20double\2c\20double\29 +10322:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_min\28double\2c\20double\2c\20double\29 +10323:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_max\28double\2c\20double\2c\20double\29 +10324:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_matrixCompMult\28double\2c\20double\2c\20double\29 +10325:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log\28double\2c\20double\2c\20double\29 +10326:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log2\28double\2c\20double\2c\20double\29 +10327:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_inversesqrt\28double\2c\20double\2c\20double\29 +10328:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_intBitsToFloat\28double\2c\20double\2c\20double\29 +10329:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fract\28double\2c\20double\2c\20double\29 +10330:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fma\28double\2c\20double\2c\20double\29 +10331:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floor\28double\2c\20double\2c\20double\29 +10332:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToUint\28double\2c\20double\2c\20double\29 +10333:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToInt\28double\2c\20double\2c\20double\29 +10334:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp\28double\2c\20double\2c\20double\29 +10335:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp2\28double\2c\20double\2c\20double\29 +10336:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_degrees\28double\2c\20double\2c\20double\29 +10337:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cosh\28double\2c\20double\2c\20double\29 +10338:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cos\28double\2c\20double\2c\20double\29 +10339:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_clamp\28double\2c\20double\2c\20double\29 +10340:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_ceil\28double\2c\20double\2c\20double\29 +10341:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atanh\28double\2c\20double\2c\20double\29 +10342:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan\28double\2c\20double\2c\20double\29 +10343:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan2\28double\2c\20double\2c\20double\29 +10344:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asinh\28double\2c\20double\2c\20double\29 +10345:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asin\28double\2c\20double\2c\20double\29 +10346:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acosh\28double\2c\20double\2c\20double\29 +10347:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acos\28double\2c\20double\2c\20double\29 +10348:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_abs\28double\2c\20double\2c\20double\29 +10349:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_notEqual\28double\2c\20double\29 +10350:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThan\28double\2c\20double\29 +10351:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThanEqual\28double\2c\20double\29 +10352:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThan\28double\2c\20double\29 +10353:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThanEqual\28double\2c\20double\29 +10354:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_equal\28double\2c\20double\29 +10355:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_dot\28double\2c\20double\2c\20double\29 +10356:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_any\28double\2c\20double\2c\20double\29 +10357:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_all\28double\2c\20double\2c\20double\29 +10358:SkSL::InterfaceBlock::~InterfaceBlock\28\29_6617 +10359:SkSL::InterfaceBlock::description\28\29\20const +10360:SkSL::IndexExpression::~IndexExpression\28\29_6614 +10361:SkSL::IndexExpression::~IndexExpression\28\29 +10362:SkSL::IndexExpression::description\28SkSL::OperatorPrecedence\29\20const +10363:SkSL::IndexExpression::clone\28SkSL::Position\29\20const +10364:SkSL::IfStatement::~IfStatement\28\29_6607 +10365:SkSL::IfStatement::~IfStatement\28\29 +10366:SkSL::IfStatement::description\28\29\20const +10367:SkSL::GlobalVarDeclaration::description\28\29\20const +10368:SkSL::GenericType::slotType\28unsigned\20long\29\20const +10369:SkSL::GenericType::coercibleTypes\28\29\20const +10370:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29_12936 +10371:SkSL::FunctionReference::description\28SkSL::OperatorPrecedence\29\20const +10372:SkSL::FunctionReference::clone\28SkSL::Position\29\20const +10373:SkSL::FunctionPrototype::description\28\29\20const +10374:SkSL::FunctionDefinition::description\28\29\20const +10375:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29_6598 +10376:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29 +10377:SkSL::FunctionCall::description\28SkSL::OperatorPrecedence\29\20const +10378:SkSL::FunctionCall::clone\28SkSL::Position\29\20const +10379:SkSL::ForStatement::~ForStatement\28\29_6489 +10380:SkSL::ForStatement::~ForStatement\28\29 +10381:SkSL::ForStatement::description\28\29\20const +10382:SkSL::FieldSymbol::description\28\29\20const +10383:SkSL::FieldAccess::clone\28SkSL::Position\29\20const +10384:SkSL::Extension::description\28\29\20const +10385:SkSL::ExtendedVariable::~ExtendedVariable\28\29_6939 +10386:SkSL::ExtendedVariable::~ExtendedVariable\28\29 +10387:SkSL::ExtendedVariable::mangledName\28\29\20const +10388:SkSL::ExtendedVariable::layout\28\29\20const +10389:SkSL::ExtendedVariable::interfaceBlock\28\29\20const +10390:SkSL::ExtendedVariable::detachDeadInterfaceBlock\28\29 +10391:SkSL::ExpressionStatement::description\28\29\20const +10392:SkSL::Expression::getConstantValue\28int\29\20const +10393:SkSL::EmptyExpression::description\28SkSL::OperatorPrecedence\29\20const +10394:SkSL::EmptyExpression::clone\28SkSL::Position\29\20const +10395:SkSL::DoStatement::description\28\29\20const +10396:SkSL::DiscardStatement::description\28\29\20const +10397:SkSL::DebugTracePriv::~DebugTracePriv\28\29_6970 +10398:SkSL::DebugTracePriv::dump\28SkWStream*\29\20const +10399:SkSL::CountReturnsWithLimit::visitStatement\28SkSL::Statement\20const&\29 +10400:SkSL::ContinueStatement::description\28\29\20const +10401:SkSL::ConstructorStruct::clone\28SkSL::Position\29\20const +10402:SkSL::ConstructorSplat::getConstantValue\28int\29\20const +10403:SkSL::ConstructorSplat::clone\28SkSL::Position\29\20const +10404:SkSL::ConstructorScalarCast::clone\28SkSL::Position\29\20const +10405:SkSL::ConstructorMatrixResize::getConstantValue\28int\29\20const +10406:SkSL::ConstructorMatrixResize::clone\28SkSL::Position\29\20const +10407:SkSL::ConstructorDiagonalMatrix::getConstantValue\28int\29\20const +10408:SkSL::ConstructorDiagonalMatrix::clone\28SkSL::Position\29\20const +10409:SkSL::ConstructorCompoundCast::clone\28SkSL::Position\29\20const +10410:SkSL::ConstructorCompound::clone\28SkSL::Position\29\20const +10411:SkSL::ConstructorArrayCast::clone\28SkSL::Position\29\20const +10412:SkSL::ConstructorArray::clone\28SkSL::Position\29\20const +10413:SkSL::Compiler::CompilerErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +10414:SkSL::CodeGenerator::~CodeGenerator\28\29 +10415:SkSL::ChildCall::description\28SkSL::OperatorPrecedence\29\20const +10416:SkSL::ChildCall::clone\28SkSL::Position\29\20const +10417:SkSL::BreakStatement::description\28\29\20const +10418:SkSL::Block::~Block\28\29_6391 +10419:SkSL::Block::~Block\28\29 +10420:SkSL::Block::isEmpty\28\29\20const +10421:SkSL::Block::description\28\29\20const +10422:SkSL::BinaryExpression::~BinaryExpression\28\29_6384 +10423:SkSL::BinaryExpression::~BinaryExpression\28\29 +10424:SkSL::BinaryExpression::description\28SkSL::OperatorPrecedence\29\20const +10425:SkSL::BinaryExpression::clone\28SkSL::Position\29\20const +10426:SkSL::ArrayType::slotType\28unsigned\20long\29\20const +10427:SkSL::ArrayType::slotCount\28\29\20const +10428:SkSL::ArrayType::matches\28SkSL::Type\20const&\29\20const +10429:SkSL::ArrayType::isUnsizedArray\28\29\20const +10430:SkSL::ArrayType::isOrContainsUnsizedArray\28\29\20const +10431:SkSL::ArrayType::isBuiltin\28\29\20const +10432:SkSL::ArrayType::isAllowedInUniform\28SkSL::Position*\29\20const +10433:SkSL::AnyConstructor::getConstantValue\28int\29\20const +10434:SkSL::AnyConstructor::description\28SkSL::OperatorPrecedence\29\20const +10435:SkSL::AnyConstructor::compareConstant\28SkSL::Expression\20const&\29\20const +10436:SkSL::Analysis::\28anonymous\20namespace\29::LoopControlFlowVisitor::visitStatement\28SkSL::Statement\20const&\29 +10437:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29::IsDynamicallyUniformExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +10438:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29::IsCompileTimeConstantVisitor::visitExpression\28SkSL::Expression\20const&\29 +10439:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29::HasSideEffectsVisitor::visitExpression\28SkSL::Expression\20const&\29 +10440:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29_6166 +10441:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29 +10442:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::visitExpression\28SkSL::Expression\20const&\29 +10443:SkSL::Analysis::ContainsVariable\28SkSL::Expression\20const&\2c\20SkSL::Variable\20const&\29::ContainsVariableVisitor::visitExpression\28SkSL::Expression\20const&\29 +10444:SkSL::Analysis::ContainsRTAdjust\28SkSL::Expression\20const&\29::ContainsRTAdjustVisitor::visitExpression\28SkSL::Expression\20const&\29 +10445:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29_6092 +10446:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29 +10447:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitExpression\28SkSL::Expression\20const&\29 +10448:SkSL::AliasType::textureAccess\28\29\20const +10449:SkSL::AliasType::slotType\28unsigned\20long\29\20const +10450:SkSL::AliasType::slotCount\28\29\20const +10451:SkSL::AliasType::rows\28\29\20const +10452:SkSL::AliasType::priority\28\29\20const +10453:SkSL::AliasType::isVector\28\29\20const +10454:SkSL::AliasType::isUnsizedArray\28\29\20const +10455:SkSL::AliasType::isStruct\28\29\20const +10456:SkSL::AliasType::isScalar\28\29\20const +10457:SkSL::AliasType::isMultisampled\28\29\20const +10458:SkSL::AliasType::isMatrix\28\29\20const +10459:SkSL::AliasType::isLiteral\28\29\20const +10460:SkSL::AliasType::isInterfaceBlock\28\29\20const +10461:SkSL::AliasType::isDepth\28\29\20const +10462:SkSL::AliasType::isArrayedTexture\28\29\20const +10463:SkSL::AliasType::isArray\28\29\20const +10464:SkSL::AliasType::dimensions\28\29\20const +10465:SkSL::AliasType::componentType\28\29\20const +10466:SkSL::AliasType::columns\28\29\20const +10467:SkSL::AliasType::coercibleTypes\28\29\20const +10468:SkRuntimeShader::~SkRuntimeShader\28\29_4984 +10469:SkRuntimeShader::type\28\29\20const +10470:SkRuntimeShader::isOpaque\28\29\20const +10471:SkRuntimeShader::getTypeName\28\29\20const +10472:SkRuntimeShader::flatten\28SkWriteBuffer&\29\20const +10473:SkRuntimeShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10474:SkRuntimeEffect::~SkRuntimeEffect\28\29_4073 +10475:SkRuntimeEffect::MakeFromSource\28SkString\2c\20SkRuntimeEffect::Options\20const&\2c\20SkSL::ProgramKind\29 +10476:SkRuntimeColorFilter::~SkRuntimeColorFilter\28\29_5395 +10477:SkRuntimeColorFilter::~SkRuntimeColorFilter\28\29 +10478:SkRuntimeColorFilter::onIsAlphaUnchanged\28\29\20const +10479:SkRuntimeColorFilter::getTypeName\28\29\20const +10480:SkRuntimeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +10481:SkRuntimeBlender::~SkRuntimeBlender\28\29_4039 +10482:SkRuntimeBlender::~SkRuntimeBlender\28\29 +10483:SkRuntimeBlender::onAppendStages\28SkStageRec\20const&\29\20const +10484:SkRuntimeBlender::getTypeName\28\29\20const +10485:SkRgnClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10486:SkRgnClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10487:SkRgnClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +10488:SkRgnClipBlitter::blitH\28int\2c\20int\2c\20int\29 +10489:SkRgnClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +10490:SkRgnClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +10491:SkRgnBuilder::~SkRgnBuilder\28\29_3986 +10492:SkRgnBuilder::blitH\28int\2c\20int\2c\20int\29 +10493:SkResourceCache::~SkResourceCache\28\29_4005 +10494:SkResourceCache::purgeSharedID\28unsigned\20long\20long\29 +10495:SkResourceCache::purgeAll\28\29 +10496:SkResourceCache::SetTotalByteLimit\28unsigned\20long\29 +10497:SkResourceCache::GetTotalBytesUsed\28\29 +10498:SkResourceCache::GetTotalByteLimit\28\29 +10499:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29_4799 +10500:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29 +10501:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::data\28int\29\20const +10502:SkRefCntSet::~SkRefCntSet\28\29_2109 +10503:SkRefCntSet::incPtr\28void*\29 +10504:SkRefCntSet::decPtr\28void*\29 +10505:SkRectClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10506:SkRectClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10507:SkRectClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +10508:SkRectClipBlitter::blitH\28int\2c\20int\2c\20int\29 +10509:SkRectClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +10510:SkRectClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +10511:SkRecordedDrawable::~SkRecordedDrawable\28\29_3933 +10512:SkRecordedDrawable::~SkRecordedDrawable\28\29 +10513:SkRecordedDrawable::onMakePictureSnapshot\28\29 +10514:SkRecordedDrawable::onGetBounds\28\29 +10515:SkRecordedDrawable::onDraw\28SkCanvas*\29 +10516:SkRecordedDrawable::onApproximateBytesUsed\28\29 +10517:SkRecordedDrawable::getTypeName\28\29\20const +10518:SkRecordedDrawable::flatten\28SkWriteBuffer&\29\20const +10519:SkRecordCanvas::~SkRecordCanvas\28\29_3888 +10520:SkRecordCanvas::~SkRecordCanvas\28\29 +10521:SkRecordCanvas::willSave\28\29 +10522:SkRecordCanvas::onResetClip\28\29 +10523:SkRecordCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +10524:SkRecordCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +10525:SkRecordCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +10526:SkRecordCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +10527:SkRecordCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +10528:SkRecordCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +10529:SkRecordCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +10530:SkRecordCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +10531:SkRecordCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +10532:SkRecordCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +10533:SkRecordCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +10534:SkRecordCanvas::onDrawPaint\28SkPaint\20const&\29 +10535:SkRecordCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +10536:SkRecordCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +10537:SkRecordCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +10538:SkRecordCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +10539:SkRecordCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +10540:SkRecordCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +10541:SkRecordCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +10542:SkRecordCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +10543:SkRecordCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +10544:SkRecordCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +10545:SkRecordCanvas::onDrawBehind\28SkPaint\20const&\29 +10546:SkRecordCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +10547:SkRecordCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +10548:SkRecordCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +10549:SkRecordCanvas::onDoSaveBehind\28SkRect\20const*\29 +10550:SkRecordCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +10551:SkRecordCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +10552:SkRecordCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +10553:SkRecordCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +10554:SkRecordCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +10555:SkRecordCanvas::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +10556:SkRecordCanvas::didTranslate\28float\2c\20float\29 +10557:SkRecordCanvas::didSetM44\28SkM44\20const&\29 +10558:SkRecordCanvas::didScale\28float\2c\20float\29 +10559:SkRecordCanvas::didRestore\28\29 +10560:SkRecordCanvas::didConcat44\28SkM44\20const&\29 +10561:SkRecord::~SkRecord\28\29_3835 +10562:SkRecord::~SkRecord\28\29 +10563:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29_1514 +10564:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29 +10565:SkRasterPipelineSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +10566:SkRasterPipelineSpriteBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10567:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29_3790 +10568:SkRasterPipelineBlitter::canDirectBlit\28\29 +10569:SkRasterPipelineBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10570:SkRasterPipelineBlitter::blitH\28int\2c\20int\2c\20int\29 +10571:SkRasterPipelineBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +10572:SkRasterPipelineBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +10573:SkRasterPipelineBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +10574:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_3::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +10575:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_2::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +10576:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_1::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +10577:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_0::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +10578:SkRadialGradient::getTypeName\28\29\20const +10579:SkRadialGradient::flatten\28SkWriteBuffer&\29\20const +10580:SkRadialGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +10581:SkRadialGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +10582:SkRTree::~SkRTree\28\29_3723 +10583:SkRTree::~SkRTree\28\29 +10584:SkRTree::search\28SkRect\20const&\2c\20std::__2::vector>*\29\20const +10585:SkRTree::insert\28SkRect\20const*\2c\20int\29 +10586:SkRTree::bytesUsed\28\29\20const +10587:SkPtrSet::~SkPtrSet\28\29 +10588:SkPngNormalDecoder::~SkPngNormalDecoder\28\29 +10589:SkPngNormalDecoder::setRange\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +10590:SkPngNormalDecoder::decode\28int*\29 +10591:SkPngNormalDecoder::decodeAllRows\28void*\2c\20unsigned\20long\2c\20int*\29 +10592:SkPngNormalDecoder::RowCallback\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20int\2c\20int\29 +10593:SkPngNormalDecoder::AllRowsCallback\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20int\2c\20int\29 +10594:SkPngInterlacedDecoder::~SkPngInterlacedDecoder\28\29_13100 +10595:SkPngInterlacedDecoder::~SkPngInterlacedDecoder\28\29 +10596:SkPngInterlacedDecoder::setRange\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +10597:SkPngInterlacedDecoder::decode\28int*\29 +10598:SkPngInterlacedDecoder::decodeAllRows\28void*\2c\20unsigned\20long\2c\20int*\29 +10599:SkPngInterlacedDecoder::InterlacedRowCallback\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20int\2c\20int\29 +10600:SkPngEncoderImpl::~SkPngEncoderImpl\28\29_12958 +10601:SkPngEncoderImpl::onFinishEncoding\28\29 +10602:SkPngEncoderImpl::onEncodeRow\28SkSpan\29 +10603:SkPngEncoderBase::~SkPngEncoderBase\28\29 +10604:SkPngEncoderBase::onEncodeRows\28int\29 +10605:SkPngCompositeChunkReader::~SkPngCompositeChunkReader\28\29_13108 +10606:SkPngCompositeChunkReader::~SkPngCompositeChunkReader\28\29 +10607:SkPngCompositeChunkReader::readChunk\28char\20const*\2c\20void\20const*\2c\20unsigned\20long\29 +10608:SkPngCodecBase::initializeXforms\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20int\29 +10609:SkPngCodecBase::getSampler\28bool\29 +10610:SkPngCodec::~SkPngCodec\28\29_13092 +10611:SkPngCodec::onTryGetTrnsChunk\28\29 +10612:SkPngCodec::onTryGetPlteChunk\28\29 +10613:SkPngCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +10614:SkPngCodec::onRewind\28\29 +10615:SkPngCodec::onIncrementalDecode\28int*\29 +10616:SkPngCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +10617:SkPngCodec::onGetGainmapInfo\28SkGainmapInfo*\29 +10618:SkPngCodec::onGetGainmapCodec\28SkGainmapInfo*\2c\20std::__2::unique_ptr>*\29 +10619:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_2::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +10620:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_1::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +10621:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_0::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +10622:SkPixelRef::~SkPixelRef\28\29_3654 +10623:SkPictureShader::~SkPictureShader\28\29_4968 +10624:SkPictureShader::~SkPictureShader\28\29 +10625:SkPictureShader::type\28\29\20const +10626:SkPictureShader::getTypeName\28\29\20const +10627:SkPictureShader::flatten\28SkWriteBuffer&\29\20const +10628:SkPictureShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10629:SkPictureRecorder*\20emscripten::internal::operator_new\28\29 +10630:SkPictureRecord::~SkPictureRecord\28\29_3638 +10631:SkPictureRecord::willSave\28\29 +10632:SkPictureRecord::willRestore\28\29 +10633:SkPictureRecord::onResetClip\28\29 +10634:SkPictureRecord::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +10635:SkPictureRecord::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +10636:SkPictureRecord::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +10637:SkPictureRecord::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +10638:SkPictureRecord::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +10639:SkPictureRecord::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +10640:SkPictureRecord::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +10641:SkPictureRecord::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +10642:SkPictureRecord::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +10643:SkPictureRecord::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +10644:SkPictureRecord::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +10645:SkPictureRecord::onDrawPaint\28SkPaint\20const&\29 +10646:SkPictureRecord::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +10647:SkPictureRecord::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +10648:SkPictureRecord::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +10649:SkPictureRecord::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +10650:SkPictureRecord::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +10651:SkPictureRecord::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +10652:SkPictureRecord::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +10653:SkPictureRecord::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +10654:SkPictureRecord::onDrawBehind\28SkPaint\20const&\29 +10655:SkPictureRecord::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +10656:SkPictureRecord::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +10657:SkPictureRecord::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +10658:SkPictureRecord::onDoSaveBehind\28SkRect\20const*\29 +10659:SkPictureRecord::onClipShader\28sk_sp\2c\20SkClipOp\29 +10660:SkPictureRecord::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +10661:SkPictureRecord::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +10662:SkPictureRecord::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +10663:SkPictureRecord::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +10664:SkPictureRecord::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +10665:SkPictureRecord::didTranslate\28float\2c\20float\29 +10666:SkPictureRecord::didSetM44\28SkM44\20const&\29 +10667:SkPictureRecord::didScale\28float\2c\20float\29 +10668:SkPictureRecord::didConcat44\28SkM44\20const&\29 +10669:SkPictureData::serialize\28SkWStream*\2c\20SkSerialProcs\20const&\2c\20SkRefCntSet*\2c\20bool\29\20const::DevNull::write\28void\20const*\2c\20unsigned\20long\29 +10670:SkPerlinNoiseShader::~SkPerlinNoiseShader\28\29_4952 +10671:SkPerlinNoiseShader::~SkPerlinNoiseShader\28\29 +10672:SkPerlinNoiseShader::getTypeName\28\29\20const +10673:SkPerlinNoiseShader::flatten\28SkWriteBuffer&\29\20const +10674:SkPerlinNoiseShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10675:SkPathEffectBase::asADash\28\29\20const +10676:SkPath::setIsVolatile\28bool\29 +10677:SkPath::setFillType\28SkPathFillType\29 +10678:SkPath::isVolatile\28\29\20const +10679:SkPath::getFillType\28\29\20const +10680:SkPath2DPathEffectImpl::~SkPath2DPathEffectImpl\28\29_5229 +10681:SkPath2DPathEffectImpl::~SkPath2DPathEffectImpl\28\29 +10682:SkPath2DPathEffectImpl::next\28SkPoint\20const&\2c\20int\2c\20int\2c\20SkPathBuilder*\29\20const +10683:SkPath2DPathEffectImpl::getTypeName\28\29\20const +10684:SkPath2DPathEffectImpl::getFactory\28\29\20const +10685:SkPath2DPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +10686:SkPath2DPathEffectImpl::CreateProc\28SkReadBuffer&\29 +10687:SkPath1DPathEffectImpl::~SkPath1DPathEffectImpl\28\29_5203 +10688:SkPath1DPathEffectImpl::~SkPath1DPathEffectImpl\28\29 +10689:SkPath1DPathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +10690:SkPath1DPathEffectImpl::next\28SkPathBuilder*\2c\20float\2c\20SkPathMeasure&\29\20const +10691:SkPath1DPathEffectImpl::getTypeName\28\29\20const +10692:SkPath1DPathEffectImpl::getFactory\28\29\20const +10693:SkPath1DPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +10694:SkPath1DPathEffectImpl::begin\28float\29\20const +10695:SkPath1DPathEffectImpl::CreateProc\28SkReadBuffer&\29 +10696:SkPath1DPathEffect::Make\28SkPath\20const&\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style\29 +10697:SkPath*\20emscripten::internal::operator_new\28\29 +10698:SkPairPathEffect::~SkPairPathEffect\28\29_3467 +10699:SkPaint::setDither\28bool\29 +10700:SkPaint::setAntiAlias\28bool\29 +10701:SkPaint::getStrokeMiter\28\29\20const +10702:SkPaint::getStrokeJoin\28\29\20const +10703:SkPaint::getStrokeCap\28\29\20const +10704:SkPaint*\20emscripten::internal::operator_new\28\29 +10705:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29_8360 +10706:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29 +10707:SkOTUtils::LocalizedStrings_SingleName::next\28SkTypeface::LocalizedString*\29 +10708:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29_7606 +10709:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29 +10710:SkOTUtils::LocalizedStrings_NameTable::next\28SkTypeface::LocalizedString*\29 +10711:SkNoPixelsDevice::~SkNoPixelsDevice\28\29_1988 +10712:SkNoPixelsDevice::~SkNoPixelsDevice\28\29 +10713:SkNoPixelsDevice::replaceClip\28SkIRect\20const&\29 +10714:SkNoPixelsDevice::pushClipStack\28\29 +10715:SkNoPixelsDevice::popClipStack\28\29 +10716:SkNoPixelsDevice::onClipShader\28sk_sp\29 +10717:SkNoPixelsDevice::isClipWideOpen\28\29\20const +10718:SkNoPixelsDevice::isClipRect\28\29\20const +10719:SkNoPixelsDevice::isClipEmpty\28\29\20const +10720:SkNoPixelsDevice::isClipAntiAliased\28\29\20const +10721:SkNoPixelsDevice::devClipBounds\28\29\20const +10722:SkNoPixelsDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +10723:SkNoPixelsDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +10724:SkNoPixelsDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +10725:SkNoPixelsDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +10726:SkNoPixelsDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +10727:SkNoDrawCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +10728:SkNoDrawCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +10729:SkMipmap::~SkMipmap\28\29_2639 +10730:SkMipmap::~SkMipmap\28\29 +10731:SkMipmap::onDataChange\28void*\2c\20void*\29 +10732:SkMemoryStream::~SkMemoryStream\28\29_4320 +10733:SkMemoryStream::~SkMemoryStream\28\29 +10734:SkMemoryStream::setMemory\28void\20const*\2c\20unsigned\20long\2c\20bool\29 +10735:SkMemoryStream::seek\28unsigned\20long\29 +10736:SkMemoryStream::rewind\28\29 +10737:SkMemoryStream::read\28void*\2c\20unsigned\20long\29 +10738:SkMemoryStream::peek\28void*\2c\20unsigned\20long\29\20const +10739:SkMemoryStream::onFork\28\29\20const +10740:SkMemoryStream::onDuplicate\28\29\20const +10741:SkMemoryStream::move\28long\29 +10742:SkMemoryStream::isAtEnd\28\29\20const +10743:SkMemoryStream::getMemoryBase\28\29 +10744:SkMemoryStream::getLength\28\29\20const +10745:SkMemoryStream::getData\28\29\20const +10746:SkMatrixColorFilter::onIsAlphaUnchanged\28\29\20const +10747:SkMatrixColorFilter::onAsAColorMatrix\28float*\29\20const +10748:SkMatrixColorFilter::getTypeName\28\29\20const +10749:SkMatrixColorFilter::flatten\28SkWriteBuffer&\29\20const +10750:SkMatrixColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +10751:SkMatrix::Trans_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +10752:SkMatrix::Scale_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +10753:SkMatrix::Poly4Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +10754:SkMatrix::Poly3Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +10755:SkMatrix::Poly2Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +10756:SkMatrix::Persp_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +10757:SkMatrix::Identity_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +10758:SkMatrix::Affine_vpts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +10759:SkMaskSwizzler::onSetSampleX\28int\29 +10760:SkMaskFilterBase::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +10761:SkMaskFilterBase::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +10762:SkMaskFilterBase::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +10763:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29_2452 +10764:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29 +10765:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29_3664 +10766:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29 +10767:SkLumaColorFilter::Make\28\29 +10768:SkLocalMatrixShader::~SkLocalMatrixShader\28\29_4933 +10769:SkLocalMatrixShader::~SkLocalMatrixShader\28\29 +10770:SkLocalMatrixShader::type\28\29\20const +10771:SkLocalMatrixShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +10772:SkLocalMatrixShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +10773:SkLocalMatrixShader::makeAsALocalMatrixShader\28SkMatrix*\29\20const +10774:SkLocalMatrixShader::isOpaque\28\29\20const +10775:SkLocalMatrixShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +10776:SkLocalMatrixShader::getTypeName\28\29\20const +10777:SkLocalMatrixShader::flatten\28SkWriteBuffer&\29\20const +10778:SkLocalMatrixShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +10779:SkLocalMatrixShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10780:SkLinearGradient::getTypeName\28\29\20const +10781:SkLinearGradient::flatten\28SkWriteBuffer&\29\20const +10782:SkLinearGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +10783:SkLine2DPathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +10784:SkLine2DPathEffectImpl::nextSpan\28int\2c\20int\2c\20int\2c\20SkPathBuilder*\29\20const +10785:SkLine2DPathEffectImpl::getTypeName\28\29\20const +10786:SkLine2DPathEffectImpl::getFactory\28\29\20const +10787:SkLine2DPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +10788:SkLine2DPathEffectImpl::CreateProc\28SkReadBuffer&\29 +10789:SkJpegMetadataDecoderImpl::~SkJpegMetadataDecoderImpl\28\29_13016 +10790:SkJpegMetadataDecoderImpl::~SkJpegMetadataDecoderImpl\28\29 +10791:SkJpegMetadataDecoderImpl::getJUMBFMetadata\28bool\29\20const +10792:SkJpegMetadataDecoderImpl::getISOGainmapMetadata\28bool\29\20const +10793:SkJpegMetadataDecoderImpl::getICCProfileData\28bool\29\20const +10794:SkJpegMetadataDecoderImpl::getExifMetadata\28bool\29\20const +10795:SkJpegMemorySourceMgr::skipInputBytes\28unsigned\20long\2c\20unsigned\20char\20const*&\2c\20unsigned\20long&\29 +10796:SkJpegMemorySourceMgr::initSource\28unsigned\20char\20const*&\2c\20unsigned\20long&\29 +10797:SkJpegDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +10798:SkJpegCodec::~SkJpegCodec\28\29_12971 +10799:SkJpegCodec::~SkJpegCodec\28\29 +10800:SkJpegCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +10801:SkJpegCodec::onSkipScanlines\28int\29 +10802:SkJpegCodec::onRewind\28\29 +10803:SkJpegCodec::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +10804:SkJpegCodec::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +10805:SkJpegCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +10806:SkJpegCodec::onGetScaledDimensions\28float\29\20const +10807:SkJpegCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +10808:SkJpegCodec::onGetGainmapCodec\28SkGainmapInfo*\2c\20std::__2::unique_ptr>*\29 +10809:SkJpegCodec::onDimensionsSupported\28SkISize\20const&\29 +10810:SkJpegCodec::getSampler\28bool\29 +10811:SkJpegCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +10812:SkJpegBufferedSourceMgr::~SkJpegBufferedSourceMgr\28\29_13025 +10813:SkJpegBufferedSourceMgr::~SkJpegBufferedSourceMgr\28\29 +10814:SkJpegBufferedSourceMgr::skipInputBytes\28unsigned\20long\2c\20unsigned\20char\20const*&\2c\20unsigned\20long&\29 +10815:SkJpegBufferedSourceMgr::initSource\28unsigned\20char\20const*&\2c\20unsigned\20long&\29 +10816:SkJpegBufferedSourceMgr::fillInputBuffer\28unsigned\20char\20const*&\2c\20unsigned\20long&\29 +10817:SkImage_Raster::~SkImage_Raster\28\29_4771 +10818:SkImage_Raster::~SkImage_Raster\28\29 +10819:SkImage_Raster::onReinterpretColorSpace\28sk_sp\29\20const +10820:SkImage_Raster::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +10821:SkImage_Raster::onPeekPixels\28SkPixmap*\29\20const +10822:SkImage_Raster::onMakeWithMipmaps\28sk_sp\29\20const +10823:SkImage_Raster::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +10824:SkImage_Raster::onHasMipmaps\28\29\20const +10825:SkImage_Raster::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +10826:SkImage_Raster::notifyAddedToRasterCache\28\29\20const +10827:SkImage_Raster::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +10828:SkImage_Raster::isValid\28SkRecorder*\29\20const +10829:SkImage_Raster::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +10830:SkImage_LazyTexture::readPixelsProxy\28GrDirectContext*\2c\20SkPixmap\20const&\29\20const +10831:SkImage_LazyTexture::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +10832:SkImage_Lazy::~SkImage_Lazy\28\29 +10833:SkImage_Lazy::onReinterpretColorSpace\28sk_sp\29\20const +10834:SkImage_Lazy::onRefEncoded\28\29\20const +10835:SkImage_Lazy::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +10836:SkImage_Lazy::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +10837:SkImage_Lazy::onIsProtected\28\29\20const +10838:SkImage_Lazy::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +10839:SkImage_Lazy::isValid\28SkRecorder*\29\20const +10840:SkImage_Lazy::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +10841:SkImage_GaneshBase::~SkImage_GaneshBase\28\29 +10842:SkImage_GaneshBase::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +10843:SkImage_GaneshBase::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +10844:SkImage_GaneshBase::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +10845:SkImage_GaneshBase::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +10846:SkImage_GaneshBase::isValid\28SkRecorder*\29\20const +10847:SkImage_GaneshBase::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +10848:SkImage_GaneshBase::directContext\28\29\20const +10849:SkImage_Ganesh::~SkImage_Ganesh\28\29_10906 +10850:SkImage_Ganesh::textureSize\28\29\20const +10851:SkImage_Ganesh::onReinterpretColorSpace\28sk_sp\29\20const +10852:SkImage_Ganesh::onMakeColorTypeAndColorSpace\28GrDirectContext*\2c\20SkColorType\2c\20sk_sp\29\20const +10853:SkImage_Ganesh::onIsProtected\28\29\20const +10854:SkImage_Ganesh::onHasMipmaps\28\29\20const +10855:SkImage_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +10856:SkImage_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +10857:SkImage_Ganesh::generatingSurfaceIsDeleted\28\29 +10858:SkImage_Ganesh::flush\28GrDirectContext*\2c\20GrFlushInfo\20const&\29\20const +10859:SkImage_Ganesh::asView\28GrRecordingContext*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29\20const +10860:SkImage_Ganesh::asFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29\20const +10861:SkImage_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +10862:SkImage_Base::notifyAddedToRasterCache\28\29\20const +10863:SkImage_Base::makeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +10864:SkImage_Base::makeColorSpace\28SkRecorder*\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +10865:SkImage_Base::isTextureBacked\28\29\20const +10866:SkImage_Base::isLazyGenerated\28\29\20const +10867:SkImageShader::~SkImageShader\28\29_4918 +10868:SkImageShader::~SkImageShader\28\29 +10869:SkImageShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +10870:SkImageShader::isOpaque\28\29\20const +10871:SkImageShader::getTypeName\28\29\20const +10872:SkImageShader::flatten\28SkWriteBuffer&\29\20const +10873:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10874:SkImageGenerator::~SkImageGenerator\28\29 +10875:SkImageFilters::Compose\28sk_sp\2c\20sk_sp\29 +10876:SkImage::~SkImage\28\29 +10877:SkIcoDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +10878:SkIcoCodec::~SkIcoCodec\28\29_13047 +10879:SkIcoCodec::~SkIcoCodec\28\29 +10880:SkIcoCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +10881:SkIcoCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +10882:SkIcoCodec::onSkipScanlines\28int\29 +10883:SkIcoCodec::onIncrementalDecode\28int*\29 +10884:SkIcoCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +10885:SkIcoCodec::onGetScanlineOrder\28\29\20const +10886:SkIcoCodec::onGetScaledDimensions\28float\29\20const +10887:SkIcoCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +10888:SkIcoCodec::onDimensionsSupported\28SkISize\20const&\29 +10889:SkIcoCodec::getSampler\28bool\29 +10890:SkIcoCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +10891:SkGradientBaseShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +10892:SkGradientBaseShader::isOpaque\28\29\20const +10893:SkGradientBaseShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10894:SkGifDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +10895:SkGaussianColorFilter::getTypeName\28\29\20const +10896:SkGaussianColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +10897:SkGammaColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +10898:SkGammaColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +10899:SkGainmapInfo::serialize\28\29\20const +10900:SkGainmapInfo::SerializeVersion\28\29 +10901:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29_8287 +10902:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29 +10903:SkFontStyleSet_Custom::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +10904:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29_8353 +10905:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29 +10906:SkFontScanner_FreeType::scanFile\28SkStreamAsset*\2c\20int*\29\20const +10907:SkFontScanner_FreeType::scanFace\28SkStreamAsset*\2c\20int\2c\20int*\29\20const +10908:SkFontScanner_FreeType::getFactoryId\28\29\20const +10909:SkFontMgr_Custom::~SkFontMgr_Custom\28\29_8289 +10910:SkFontMgr_Custom::~SkFontMgr_Custom\28\29 +10911:SkFontMgr_Custom::onMatchFamily\28char\20const*\29\20const +10912:SkFontMgr_Custom::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +10913:SkFontMgr_Custom::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +10914:SkFontMgr_Custom::onMakeFromFile\28char\20const*\2c\20int\29\20const +10915:SkFontMgr_Custom::onMakeFromData\28sk_sp\2c\20int\29\20const +10916:SkFontMgr_Custom::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +10917:SkFontMgr_Custom::onGetFamilyName\28int\2c\20SkString*\29\20const +10918:SkFont::setScaleX\28float\29 +10919:SkFont::setEmbeddedBitmaps\28bool\29 +10920:SkFont::isEmbolden\28\29\20const +10921:SkFont::getSkewX\28\29\20const +10922:SkFont::getSize\28\29\20const +10923:SkFont::getScaleX\28\29\20const +10924:SkFont*\20emscripten::internal::operator_new\2c\20float\2c\20float\2c\20float>\28sk_sp&&\2c\20float&&\2c\20float&&\2c\20float&&\29 +10925:SkFont*\20emscripten::internal::operator_new\2c\20float>\28sk_sp&&\2c\20float&&\29 +10926:SkFont*\20emscripten::internal::operator_new>\28sk_sp&&\29 +10927:SkFont*\20emscripten::internal::operator_new\28\29 +10928:SkFILEStream::~SkFILEStream\28\29_4273 +10929:SkFILEStream::~SkFILEStream\28\29 +10930:SkFILEStream::seek\28unsigned\20long\29 +10931:SkFILEStream::rewind\28\29 +10932:SkFILEStream::read\28void*\2c\20unsigned\20long\29 +10933:SkFILEStream::onFork\28\29\20const +10934:SkFILEStream::onDuplicate\28\29\20const +10935:SkFILEStream::move\28long\29 +10936:SkFILEStream::isAtEnd\28\29\20const +10937:SkFILEStream::getPosition\28\29\20const +10938:SkFILEStream::getLength\28\29\20const +10939:SkEncoder::~SkEncoder\28\29 +10940:SkEmptyShader::getTypeName\28\29\20const +10941:SkEmptyPicture::~SkEmptyPicture\28\29 +10942:SkEmptyPicture::cullRect\28\29\20const +10943:SkEmptyFontMgr::onMatchFamily\28char\20const*\29\20const +10944:SkEdgeBuilder::~SkEdgeBuilder\28\29 +10945:SkEdgeBuilder::build\28SkPathRaw\20const&\2c\20SkIRect\20const*\2c\20bool\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +10946:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29_4303 +10947:SkDrawable::onMakePictureSnapshot\28\29 +10948:SkDiscretePathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +10949:SkDiscretePathEffectImpl::getTypeName\28\29\20const +10950:SkDiscretePathEffectImpl::getFactory\28\29\20const +10951:SkDiscretePathEffectImpl::computeFastBounds\28SkRect*\29\20const +10952:SkDiscretePathEffectImpl::CreateProc\28SkReadBuffer&\29 +10953:SkDevice::~SkDevice\28\29 +10954:SkDevice::strikeDeviceInfo\28\29\20const +10955:SkDevice::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +10956:SkDevice::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +10957:SkDevice::drawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20sk_sp\2c\20SkPaint\20const&\29 +10958:SkDevice::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +10959:SkDevice::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +10960:SkDevice::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10961:SkDevice::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +10962:SkDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +10963:SkDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +10964:SkDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +10965:SkDevice::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10966:SkDevice::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +10967:SkData::shareSubset\28unsigned\20long\2c\20unsigned\20long\29::$_0::__invoke\28void\20const*\2c\20void*\29 +10968:SkDashImpl::~SkDashImpl\28\29_5250 +10969:SkDashImpl::~SkDashImpl\28\29 +10970:SkDashImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +10971:SkDashImpl::onAsPoints\28SkPathEffectBase::PointData*\2c\20SkPath\20const&\2c\20SkStrokeRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\29\20const +10972:SkDashImpl::getTypeName\28\29\20const +10973:SkDashImpl::flatten\28SkWriteBuffer&\29\20const +10974:SkDashImpl::asADash\28\29\20const +10975:SkCustomTypefaceBuilder::MakeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29 +10976:SkCornerPathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +10977:SkCornerPathEffectImpl::getTypeName\28\29\20const +10978:SkCornerPathEffectImpl::getFactory\28\29\20const +10979:SkCornerPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +10980:SkCornerPathEffectImpl::CreateProc\28SkReadBuffer&\29 +10981:SkCornerPathEffect::Make\28float\29 +10982:SkContourMeasureIter*\20emscripten::internal::operator_new\28SkPath\20const&\2c\20bool&&\2c\20float&&\29 +10983:SkContourMeasure::~SkContourMeasure\28\29_1913 +10984:SkContourMeasure::~SkContourMeasure\28\29 +10985:SkContourMeasure::isClosed\28\29\20const +10986:SkConicalGradient::getTypeName\28\29\20const +10987:SkConicalGradient::flatten\28SkWriteBuffer&\29\20const +10988:SkConicalGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +10989:SkConicalGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +10990:SkComposePathEffect::~SkComposePathEffect\28\29 +10991:SkComposePathEffect::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +10992:SkComposePathEffect::getTypeName\28\29\20const +10993:SkComposePathEffect::computeFastBounds\28SkRect*\29\20const +10994:SkComposeColorFilter::~SkComposeColorFilter\28\29_5366 +10995:SkComposeColorFilter::~SkComposeColorFilter\28\29 +10996:SkComposeColorFilter::onIsAlphaUnchanged\28\29\20const +10997:SkComposeColorFilter::getTypeName\28\29\20const +10998:SkComposeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +10999:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29_5357 +11000:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29 +11001:SkColorSpaceXformColorFilter::getTypeName\28\29\20const +11002:SkColorSpaceXformColorFilter::flatten\28SkWriteBuffer&\29\20const +11003:SkColorSpaceXformColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +11004:SkColorShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11005:SkColorShader::isOpaque\28\29\20const +11006:SkColorShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11007:SkColorShader::getTypeName\28\29\20const +11008:SkColorShader::flatten\28SkWriteBuffer&\29\20const +11009:SkColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11010:SkColorPalette::~SkColorPalette\28\29_5590 +11011:SkColorPalette::~SkColorPalette\28\29 +11012:SkColorFilters::SRGBToLinearGamma\28\29 +11013:SkColorFilters::LinearToSRGBGamma\28\29 +11014:SkColorFilters::Lerp\28float\2c\20sk_sp\2c\20sk_sp\29 +11015:SkColorFilters::Compose\28sk_sp\20const&\2c\20sk_sp\29 +11016:SkColorFilterShader::~SkColorFilterShader\28\29_4882 +11017:SkColorFilterShader::~SkColorFilterShader\28\29 +11018:SkColorFilterShader::isOpaque\28\29\20const +11019:SkColorFilterShader::getTypeName\28\29\20const +11020:SkColorFilterShader::flatten\28SkWriteBuffer&\29\20const +11021:SkColorFilterShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11022:SkColorFilterBase::onFilterColor4f\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkColorSpace*\29\20const +11023:SkCodecPriv::PremultiplyARGBasRGBA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +11024:SkCodecPriv::PremultiplyARGBasBGRA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +11025:SkCodecImageGenerator::~SkCodecImageGenerator\28\29_5587 +11026:SkCodecImageGenerator::~SkCodecImageGenerator\28\29 +11027:SkCodecImageGenerator::onRefEncodedData\28\29 +11028:SkCodecImageGenerator::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +11029:SkCodecImageGenerator::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +11030:SkCodecImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +11031:SkCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +11032:SkCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +11033:SkCodec::onOutputScanline\28int\29\20const +11034:SkCodec::onGetScaledDimensions\28float\29\20const +11035:SkCodec::getEncodedData\28\29\20const +11036:SkCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +11037:SkCanvas::rotate\28float\2c\20float\2c\20float\29 +11038:SkCanvas::recordingContext\28\29\20const +11039:SkCanvas::recorder\28\29\20const +11040:SkCanvas::onPeekPixels\28SkPixmap*\29 +11041:SkCanvas::onNewSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +11042:SkCanvas::onImageInfo\28\29\20const +11043:SkCanvas::onGetProps\28SkSurfaceProps*\2c\20bool\29\20const +11044:SkCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +11045:SkCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +11046:SkCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +11047:SkCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +11048:SkCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +11049:SkCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +11050:SkCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +11051:SkCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +11052:SkCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +11053:SkCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +11054:SkCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +11055:SkCanvas::onDrawPaint\28SkPaint\20const&\29 +11056:SkCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +11057:SkCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +11058:SkCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +11059:SkCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +11060:SkCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +11061:SkCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +11062:SkCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +11063:SkCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +11064:SkCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +11065:SkCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +11066:SkCanvas::onDrawBehind\28SkPaint\20const&\29 +11067:SkCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +11068:SkCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +11069:SkCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +11070:SkCanvas::onDiscard\28\29 +11071:SkCanvas::onConvertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +11072:SkCanvas::onAccessTopLayerPixels\28SkPixmap*\29 +11073:SkCanvas::isClipRect\28\29\20const +11074:SkCanvas::isClipEmpty\28\29\20const +11075:SkCanvas::getSaveCount\28\29\20const +11076:SkCanvas::getBaseLayerSize\28\29\20const +11077:SkCanvas::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +11078:SkCanvas::drawPicture\28sk_sp\20const&\29 +11079:SkCanvas::drawCircle\28float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +11080:SkCanvas::baseRecorder\28\29\20const +11081:SkCanvas*\20emscripten::internal::operator_new\28float&&\2c\20float&&\29 +11082:SkCanvas*\20emscripten::internal::operator_new\28\29 +11083:SkCachedData::~SkCachedData\28\29_1641 +11084:SkCTMShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11085:SkCTMShader::getTypeName\28\29\20const +11086:SkCTMShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +11087:SkCTMShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11088:SkBreakIterator_icu::~SkBreakIterator_icu\28\29_8212 +11089:SkBreakIterator_icu::~SkBreakIterator_icu\28\29 +11090:SkBreakIterator_icu::status\28\29 +11091:SkBreakIterator_icu::setText\28char\20const*\2c\20int\29 +11092:SkBreakIterator_icu::setText\28char16_t\20const*\2c\20int\29 +11093:SkBreakIterator_icu::next\28\29 +11094:SkBreakIterator_icu::isDone\28\29 +11095:SkBreakIterator_icu::first\28\29 +11096:SkBreakIterator_icu::current\28\29 +11097:SkBmpStandardCodec::~SkBmpStandardCodec\28\29_5769 +11098:SkBmpStandardCodec::~SkBmpStandardCodec\28\29 +11099:SkBmpStandardCodec::onPrepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +11100:SkBmpStandardCodec::onInIco\28\29\20const +11101:SkBmpStandardCodec::getSampler\28bool\29 +11102:SkBmpStandardCodec::decodeRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +11103:SkBmpRLESampler::onSetSampleX\28int\29 +11104:SkBmpRLESampler::fillWidth\28\29\20const +11105:SkBmpRLECodec::~SkBmpRLECodec\28\29_5753 +11106:SkBmpRLECodec::~SkBmpRLECodec\28\29 +11107:SkBmpRLECodec::skipRows\28int\29 +11108:SkBmpRLECodec::onPrepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +11109:SkBmpRLECodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +11110:SkBmpRLECodec::getSampler\28bool\29 +11111:SkBmpRLECodec::decodeRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +11112:SkBmpMaskCodec::~SkBmpMaskCodec\28\29_5738 +11113:SkBmpMaskCodec::~SkBmpMaskCodec\28\29 +11114:SkBmpMaskCodec::onPrepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +11115:SkBmpMaskCodec::getSampler\28bool\29 +11116:SkBmpMaskCodec::decodeRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +11117:SkBmpDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +11118:SkBmpCodec::~SkBmpCodec\28\29 +11119:SkBmpCodec::skipRows\28int\29 +11120:SkBmpCodec::onSkipScanlines\28int\29 +11121:SkBmpCodec::onRewind\28\29 +11122:SkBmpCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +11123:SkBmpCodec::onGetScanlineOrder\28\29\20const +11124:SkBlurMaskFilterImpl::getTypeName\28\29\20const +11125:SkBlurMaskFilterImpl::flatten\28SkWriteBuffer&\29\20const +11126:SkBlurMaskFilterImpl::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +11127:SkBlurMaskFilterImpl::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +11128:SkBlurMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +11129:SkBlurMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +11130:SkBlurMaskFilterImpl::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +11131:SkBlurMaskFilterImpl::asABlur\28SkMaskFilterBase::BlurRec*\29\20const +11132:SkBlockMemoryStream::~SkBlockMemoryStream\28\29_4329 +11133:SkBlockMemoryStream::~SkBlockMemoryStream\28\29 +11134:SkBlockMemoryStream::seek\28unsigned\20long\29 +11135:SkBlockMemoryStream::rewind\28\29 +11136:SkBlockMemoryStream::read\28void*\2c\20unsigned\20long\29 +11137:SkBlockMemoryStream::peek\28void*\2c\20unsigned\20long\29\20const +11138:SkBlockMemoryStream::onFork\28\29\20const +11139:SkBlockMemoryStream::onDuplicate\28\29\20const +11140:SkBlockMemoryStream::move\28long\29 +11141:SkBlockMemoryStream::isAtEnd\28\29\20const +11142:SkBlockMemoryStream::getMemoryBase\28\29 +11143:SkBlockMemoryRefCnt::~SkBlockMemoryRefCnt\28\29_4327 +11144:SkBlockMemoryRefCnt::~SkBlockMemoryRefCnt\28\29 +11145:SkBlitter::canDirectBlit\28\29 +11146:SkBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11147:SkBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +11148:SkBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +11149:SkBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +11150:SkBlitter::allocBlitMemory\28unsigned\20long\29 +11151:SkBlendShader::~SkBlendShader\28\29_4866 +11152:SkBlendShader::~SkBlendShader\28\29 +11153:SkBlendShader::getTypeName\28\29\20const +11154:SkBlendShader::flatten\28SkWriteBuffer&\29\20const +11155:SkBlendShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11156:SkBlendModeColorFilter::onIsAlphaUnchanged\28\29\20const +11157:SkBlendModeColorFilter::onAsAColorMode\28unsigned\20int*\2c\20SkBlendMode*\29\20const +11158:SkBlendModeColorFilter::getTypeName\28\29\20const +11159:SkBlendModeColorFilter::flatten\28SkWriteBuffer&\29\20const +11160:SkBlendModeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +11161:SkBlendModeBlender::onAppendStages\28SkStageRec\20const&\29\20const +11162:SkBlendModeBlender::getTypeName\28\29\20const +11163:SkBlendModeBlender::flatten\28SkWriteBuffer&\29\20const +11164:SkBlendModeBlender::asBlendMode\28\29\20const +11165:SkBitmapDevice::~SkBitmapDevice\28\29_1389 +11166:SkBitmapDevice::~SkBitmapDevice\28\29 +11167:SkBitmapDevice::snapSpecial\28SkIRect\20const&\2c\20bool\29 +11168:SkBitmapDevice::setImmutable\28\29 +11169:SkBitmapDevice::replaceClip\28SkIRect\20const&\29 +11170:SkBitmapDevice::pushClipStack\28\29 +11171:SkBitmapDevice::popClipStack\28\29 +11172:SkBitmapDevice::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +11173:SkBitmapDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +11174:SkBitmapDevice::onPeekPixels\28SkPixmap*\29 +11175:SkBitmapDevice::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +11176:SkBitmapDevice::onClipShader\28sk_sp\29 +11177:SkBitmapDevice::onAccessPixels\28SkPixmap*\29 +11178:SkBitmapDevice::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +11179:SkBitmapDevice::isClipWideOpen\28\29\20const +11180:SkBitmapDevice::isClipRect\28\29\20const +11181:SkBitmapDevice::isClipEmpty\28\29\20const +11182:SkBitmapDevice::isClipAntiAliased\28\29\20const +11183:SkBitmapDevice::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +11184:SkBitmapDevice::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +11185:SkBitmapDevice::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +11186:SkBitmapDevice::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +11187:SkBitmapDevice::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +11188:SkBitmapDevice::drawPaint\28SkPaint\20const&\29 +11189:SkBitmapDevice::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +11190:SkBitmapDevice::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +11191:SkBitmapDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +11192:SkBitmapDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +11193:SkBitmapDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +11194:SkBitmapDevice::devClipBounds\28\29\20const +11195:SkBitmapDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +11196:SkBitmapDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +11197:SkBitmapDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +11198:SkBitmapDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +11199:SkBitmapDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +11200:SkBitmapDevice::baseRecorder\28\29\20const +11201:SkBitmapDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +11202:SkBitmapDevice::SkBitmapDevice\28SkBitmap\20const&\2c\20SkSurfaceProps\20const&\2c\20void*\29 +11203:SkBitmapCache::Rec::~Rec\28\29_1321 +11204:SkBitmapCache::Rec::~Rec\28\29 +11205:SkBitmapCache::Rec::postAddInstall\28void*\29 +11206:SkBitmapCache::Rec::getCategory\28\29\20const +11207:SkBitmapCache::Rec::canBePurged\28\29 +11208:SkBitmapCache::Rec::bytesUsed\28\29\20const +11209:SkBitmapCache::Rec::ReleaseProc\28void*\2c\20void*\29 +11210:SkBitmapCache::Rec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +11211:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29_4634 +11212:SkBinaryWriteBuffer::write\28SkM44\20const&\29 +11213:SkBinaryWriteBuffer::writeTypeface\28SkTypeface*\29 +11214:SkBinaryWriteBuffer::writeString\28std::__2::basic_string_view>\29 +11215:SkBinaryWriteBuffer::writeStream\28SkStream*\2c\20unsigned\20long\29 +11216:SkBinaryWriteBuffer::writeScalar\28float\29 +11217:SkBinaryWriteBuffer::writeSampling\28SkSamplingOptions\20const&\29 +11218:SkBinaryWriteBuffer::writeRegion\28SkRegion\20const&\29 +11219:SkBinaryWriteBuffer::writeRect\28SkRect\20const&\29 +11220:SkBinaryWriteBuffer::writePoint\28SkPoint\20const&\29 +11221:SkBinaryWriteBuffer::writePointArray\28SkSpan\29 +11222:SkBinaryWriteBuffer::writePoint3\28SkPoint3\20const&\29 +11223:SkBinaryWriteBuffer::writePath\28SkPath\20const&\29 +11224:SkBinaryWriteBuffer::writePaint\28SkPaint\20const&\29 +11225:SkBinaryWriteBuffer::writePad32\28void\20const*\2c\20unsigned\20long\29 +11226:SkBinaryWriteBuffer::writeMatrix\28SkMatrix\20const&\29 +11227:SkBinaryWriteBuffer::writeImage\28SkImage\20const*\29 +11228:SkBinaryWriteBuffer::writeColor4fArray\28SkSpan\20const>\29 +11229:SkBigPicture::~SkBigPicture\28\29_1266 +11230:SkBigPicture::~SkBigPicture\28\29 +11231:SkBigPicture::playback\28SkCanvas*\2c\20SkPicture::AbortCallback*\29\20const +11232:SkBigPicture::cullRect\28\29\20const +11233:SkBigPicture::approximateOpCount\28bool\29\20const +11234:SkBigPicture::approximateBytesUsed\28\29\20const +11235:SkBidiICUFactory::errorName\28UErrorCode\29\20const +11236:SkBidiICUFactory::bidi_setPara\28UBiDi*\2c\20char16_t\20const*\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20UErrorCode*\29\20const +11237:SkBidiICUFactory::bidi_reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29\20const +11238:SkBidiICUFactory::bidi_openSized\28int\2c\20int\2c\20UErrorCode*\29\20const +11239:SkBidiICUFactory::bidi_getLevelAt\28UBiDi\20const*\2c\20int\29\20const +11240:SkBidiICUFactory::bidi_getLength\28UBiDi\20const*\29\20const +11241:SkBidiICUFactory::bidi_getDirection\28UBiDi\20const*\29\20const +11242:SkBidiICUFactory::bidi_close_callback\28\29\20const +11243:SkBezierCubic::Subdivide\28double\20const*\2c\20double\2c\20double*\29 +11244:SkBasicEdgeBuilder::addQuad\28SkPoint\20const*\29 +11245:SkBasicEdgeBuilder::addLine\28SkPoint\20const*\29 +11246:SkBasicEdgeBuilder::addCubic\28SkPoint\20const*\29 +11247:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29 +11248:SkBBoxHierarchy::insert\28SkRect\20const*\2c\20SkBBoxHierarchy::Metadata\20const*\2c\20int\29 +11249:SkArenaAlloc::SkipPod\28char*\29 +11250:SkArenaAlloc::NextBlock\28char*\29 +11251:SkAnimatedImage::~SkAnimatedImage\28\29_7564 +11252:SkAnimatedImage::~SkAnimatedImage\28\29 +11253:SkAnimatedImage::reset\28\29 +11254:SkAnimatedImage::onGetBounds\28\29 +11255:SkAnimatedImage::onDraw\28SkCanvas*\29 +11256:SkAnimatedImage::getRepetitionCount\28\29\20const +11257:SkAnimatedImage::getCurrentFrame\28\29 +11258:SkAnimatedImage::currentFrameDuration\28\29 +11259:SkAndroidCodecAdapter::onGetSupportedSubset\28SkIRect*\29\20const +11260:SkAndroidCodecAdapter::onGetSampledDimensions\28int\29\20const +11261:SkAndroidCodecAdapter::onGetAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +11262:SkAnalyticEdgeBuilder::allocEdges\28unsigned\20long\2c\20unsigned\20long*\29 +11263:SkAnalyticEdgeBuilder::addQuad\28SkPoint\20const*\29 +11264:SkAnalyticEdgeBuilder::addPolyLine\28SkPoint\20const*\2c\20char*\2c\20char**\29 +11265:SkAnalyticEdgeBuilder::addLine\28SkPoint\20const*\29 +11266:SkAnalyticEdgeBuilder::addCubic\28SkPoint\20const*\29 +11267:SkAAClipBlitter::~SkAAClipBlitter\28\29_1220 +11268:SkAAClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11269:SkAAClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11270:SkAAClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +11271:SkAAClipBlitter::blitH\28int\2c\20int\2c\20int\29 +11272:SkAAClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +11273:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_1::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +11274:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_0::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +11275:SkAAClip::Builder::Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11276:SkAAClip::Builder::Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11277:SkAAClip::Builder::Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +11278:SkAAClip::Builder::Blitter::blitH\28int\2c\20int\2c\20int\29 +11279:SkAAClip::Builder::Blitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +11280:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29_1490 +11281:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29 +11282:SkA8_Coverage_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11283:SkA8_Coverage_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11284:SkA8_Coverage_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +11285:SkA8_Coverage_Blitter::blitH\28int\2c\20int\2c\20int\29 +11286:SkA8_Coverage_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +11287:SkA8_Blitter::~SkA8_Blitter\28\29_1492 +11288:SkA8_Blitter::~SkA8_Blitter\28\29 +11289:SkA8_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11290:SkA8_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11291:SkA8_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +11292:SkA8_Blitter::blitH\28int\2c\20int\2c\20int\29 +11293:SkA8_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +11294:SkA8Blitter_Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +11295:Sk2DPathEffect::nextSpan\28int\2c\20int\2c\20int\2c\20SkPathBuilder*\29\20const +11296:Sk2DPathEffect::flatten\28SkWriteBuffer&\29\20const +11297:SimpleVFilter16i_C +11298:SimpleVFilter16_C +11299:SimpleTextStyle*\20emscripten::internal::raw_constructor\28\29 +11300:SimpleTextStyle*\20emscripten::internal::MemberAccess::getWire\28SimpleTextStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\29 +11301:SimpleStrutStyle*\20emscripten::internal::raw_constructor\28\29 +11302:SimpleStrutStyle*\20emscripten::internal::MemberAccess::getWire\28SimpleStrutStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\29 +11303:SimpleParagraphStyle*\20emscripten::internal::raw_constructor\28\29 +11304:SimpleHFilter16i_C +11305:SimpleHFilter16_C +11306:SimpleFontStyle*\20emscripten::internal::raw_constructor\28\29 +11307:ShaderPDXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11308:ShaderPDXferProcessor::name\28\29\20const +11309:ShaderPDXferProcessor::makeProgramImpl\28\29\20const +11310:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +11311:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +11312:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11313:RuntimeEffectUniform*\20emscripten::internal::raw_constructor\28\29 +11314:RuntimeEffectRPCallbacks::toLinearSrgb\28void\20const*\29 +11315:RuntimeEffectRPCallbacks::fromLinearSrgb\28void\20const*\29 +11316:RuntimeEffectRPCallbacks::appendShader\28int\29 +11317:RuntimeEffectRPCallbacks::appendColorFilter\28int\29 +11318:RuntimeEffectRPCallbacks::appendBlender\28int\29 +11319:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29 +11320:RunBasedAdditiveBlitter::getRealBlitter\28bool\29 +11321:RunBasedAdditiveBlitter::flush_if_y_changed\28int\2c\20int\29 +11322:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +11323:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +11324:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11325:Round_Up_To_Grid +11326:Round_To_Half_Grid +11327:Round_To_Grid +11328:Round_To_Double_Grid +11329:Round_Super_45 +11330:Round_Super +11331:Round_None +11332:Round_Down_To_Grid +11333:RoundJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +11334:RoundCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +11335:Reset +11336:Read_CVT_Stretched +11337:Read_CVT +11338:RD4_C +11339:Project +11340:ProcessRows +11341:PredictorAdd9_C +11342:PredictorAdd8_C +11343:PredictorAdd7_C +11344:PredictorAdd6_C +11345:PredictorAdd5_C +11346:PredictorAdd4_C +11347:PredictorAdd3_C +11348:PredictorAdd2_C +11349:PredictorAdd1_C +11350:PredictorAdd13_C +11351:PredictorAdd12_C +11352:PredictorAdd11_C +11353:PredictorAdd10_C +11354:PredictorAdd0_C +11355:PrePostInverseBlitterProc\28SkBlitter*\2c\20int\2c\20bool\29 +11356:PorterDuffXferProcessor::onHasSecondaryOutput\28\29\20const +11357:PorterDuffXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +11358:PorterDuffXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11359:PorterDuffXferProcessor::name\28\29\20const +11360:PorterDuffXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +11361:PorterDuffXferProcessor::makeProgramImpl\28\29\20const +11362:ParseVP8X +11363:PackRGB_C +11364:PDLCDXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +11365:PDLCDXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +11366:PDLCDXferProcessor::name\28\29\20const +11367:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +11368:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +11369:PDLCDXferProcessor::makeProgramImpl\28\29\20const +11370:OT::match_glyph\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +11371:OT::match_coverage\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +11372:OT::match_class_cached\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +11373:OT::match_class_cached2\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +11374:OT::match_class_cached1\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +11375:OT::match_class\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +11376:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GSUB_impl::SubstLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +11377:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GPOS_impl::PosLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +11378:OT::cff1::accelerator_t::gname_t::cmp\28void\20const*\2c\20void\20const*\29 +11379:OT::Layout::Common::RangeRecord::cmp_range\28void\20const*\2c\20void\20const*\29 +11380:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +11381:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +11382:OT::CmapSubtableFormat4::accelerator_t::get_glyph_func\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +11383:Move_CVT_Stretched +11384:Move_CVT +11385:MiterJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +11386:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29_4157 +11387:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29 +11388:MaskAdditiveBlitter::getWidth\28\29 +11389:MaskAdditiveBlitter::getRealBlitter\28bool\29 +11390:MaskAdditiveBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11391:MaskAdditiveBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11392:MaskAdditiveBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +11393:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +11394:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +11395:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11396:MapAlpha_C +11397:MapARGB_C +11398:MakeRenderTarget\28sk_sp\2c\20int\2c\20int\29 +11399:MakeRenderTarget\28sk_sp\2c\20SimpleImageInfo\29 +11400:MakePathFromVerbsPointsWeights\28unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +11401:MakePathFromSVGString\28std::__2::basic_string\2c\20std::__2::allocator>\29 +11402:MakePathFromOp\28SkPath\20const&\2c\20SkPath\20const&\2c\20SkPathOp\29 +11403:MakePathFromInterpolation\28SkPath\20const&\2c\20SkPath\20const&\2c\20float\29 +11404:MakePathFromCmds\28unsigned\20long\2c\20int\29 +11405:MakeOnScreenGLSurface\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\29 +11406:MakeImageFromGenerator\28SimpleImageInfo\2c\20emscripten::val\29 +11407:MakeGrContext\28\29 +11408:MakeAsWinding\28SkPath\20const&\29 +11409:LD4_C +11410:JpegDecoderMgr::init\28\29 +11411:JpegDecoderMgr::SourceMgr::SkipInputData\28jpeg_decompress_struct*\2c\20long\29 +11412:JpegDecoderMgr::SourceMgr::InitSource\28jpeg_decompress_struct*\29 +11413:JpegDecoderMgr::SourceMgr::FillInputBuffer\28jpeg_decompress_struct*\29 +11414:JpegDecoderMgr::JpegDecoderMgr\28SkStream*\29 +11415:IsValidSimpleFormat +11416:IsValidExtendedFormat +11417:InverseBlitter::blitH\28int\2c\20int\2c\20int\29 +11418:Init +11419:HorizontalUnfilter_C +11420:HorizontalFilter_C +11421:Horish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +11422:Horish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +11423:HasAlpha8b_C +11424:HasAlpha32b_C +11425:HU4_C +11426:HLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +11427:HLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +11428:HFilter8i_C +11429:HFilter8_C +11430:HFilter16i_C +11431:HFilter16_C +11432:HE8uv_C +11433:HE4_C +11434:HE16_C +11435:HD4_C +11436:GradientUnfilter_C +11437:GradientFilter_C +11438:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11439:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11440:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const +11441:GrYUVtoRGBEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11442:GrYUVtoRGBEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11443:GrYUVtoRGBEffect::name\28\29\20const +11444:GrYUVtoRGBEffect::clone\28\29\20const +11445:GrXferProcessor::ProgramImpl::emitWriteSwizzle\28GrGLSLXPFragmentBuilder*\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20char\20const*\29\20const +11446:GrXferProcessor::ProgramImpl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +11447:GrXferProcessor::ProgramImpl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +11448:GrWritePixelsTask::~GrWritePixelsTask\28\29_10115 +11449:GrWritePixelsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +11450:GrWritePixelsTask::onExecute\28GrOpFlushState*\29 +11451:GrWritePixelsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +11452:GrWaitRenderTask::~GrWaitRenderTask\28\29_10105 +11453:GrWaitRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +11454:GrWaitRenderTask::onExecute\28GrOpFlushState*\29 +11455:GrWaitRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +11456:GrTriangulator::~GrTriangulator\28\29 +11457:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29_10095 +11458:GrTransferFromRenderTask::onExecute\28GrOpFlushState*\29 +11459:GrTransferFromRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +11460:GrThreadSafeCache::Trampoline::~Trampoline\28\29_10081 +11461:GrThreadSafeCache::Trampoline::~Trampoline\28\29 +11462:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29_10048 +11463:GrTextureResolveRenderTask::onExecute\28GrOpFlushState*\29 +11464:GrTextureResolveRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +11465:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10038 +11466:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +11467:GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +11468:GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +11469:GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +11470:GrTextureProxy::~GrTextureProxy\28\29_9992 +11471:GrTextureProxy::~GrTextureProxy\28\29_9990 +11472:GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +11473:GrTextureProxy::instantiate\28GrResourceProvider*\29 +11474:GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +11475:GrTextureProxy::callbackDesc\28\29\20const +11476:GrTextureEffect::~GrTextureEffect\28\29_10597 +11477:GrTextureEffect::~GrTextureEffect\28\29 +11478:GrTextureEffect::onMakeProgramImpl\28\29\20const +11479:GrTextureEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11480:GrTextureEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11481:GrTextureEffect::name\28\29\20const +11482:GrTextureEffect::clone\28\29\20const +11483:GrTextureEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11484:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11485:GrTexture::onGpuMemorySize\28\29\20const +11486:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29_8756 +11487:GrTDeferredProxyUploader>::freeData\28\29 +11488:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29_11784 +11489:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29 +11490:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::freeData\28\29 +11491:GrSurfaceProxy::getUniqueKey\28\29\20const +11492:GrSurface::~GrSurface\28\29 +11493:GrSurface::getResourceType\28\29\20const +11494:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29_11964 +11495:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29 +11496:GrStrokeTessellationShader::name\28\29\20const +11497:GrStrokeTessellationShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11498:GrStrokeTessellationShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11499:GrStrokeTessellationShader::Impl::~Impl\28\29_11967 +11500:GrStrokeTessellationShader::Impl::~Impl\28\29 +11501:GrStrokeTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11502:GrStrokeTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11503:GrSkSLFP::~GrSkSLFP\28\29_10553 +11504:GrSkSLFP::~GrSkSLFP\28\29 +11505:GrSkSLFP::onMakeProgramImpl\28\29\20const +11506:GrSkSLFP::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11507:GrSkSLFP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11508:GrSkSLFP::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +11509:GrSkSLFP::clone\28\29\20const +11510:GrSkSLFP::Impl::~Impl\28\29_10562 +11511:GrSkSLFP::Impl::~Impl\28\29 +11512:GrSkSLFP::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11513:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +11514:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +11515:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +11516:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +11517:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::getMangledName\28char\20const*\29 +11518:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +11519:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +11520:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +11521:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareFunction\28char\20const*\29 +11522:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11523:GrSimpleMesh*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29::'lambda'\28char*\29::__invoke\28char*\29 +11524:GrRingBuffer::FinishSubmit\28void*\29 +11525:GrResourceCache::CompareTimestamp\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29 +11526:GrRenderTask::~GrRenderTask\28\29 +11527:GrRenderTask::disown\28GrDrawingManager*\29 +11528:GrRenderTargetProxy::~GrRenderTargetProxy\28\29_9760 +11529:GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +11530:GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +11531:GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +11532:GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +11533:GrRenderTargetProxy::callbackDesc\28\29\20const +11534:GrRecordingContext::~GrRecordingContext\28\29_9696 +11535:GrRecordingContext::abandoned\28\29 +11536:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29_10536 +11537:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29 +11538:GrRRectShadowGeoProc::onTextureSampler\28int\29\20const +11539:GrRRectShadowGeoProc::name\28\29\20const +11540:GrRRectShadowGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11541:GrRRectShadowGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11542:GrQuadEffect::name\28\29\20const +11543:GrQuadEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11544:GrQuadEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11545:GrQuadEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11546:GrQuadEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11547:GrPorterDuffXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11548:GrPorterDuffXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11549:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29_10473 +11550:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29 +11551:GrPerlinNoise2Effect::onMakeProgramImpl\28\29\20const +11552:GrPerlinNoise2Effect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11553:GrPerlinNoise2Effect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11554:GrPerlinNoise2Effect::name\28\29\20const +11555:GrPerlinNoise2Effect::clone\28\29\20const +11556:GrPerlinNoise2Effect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11557:GrPerlinNoise2Effect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11558:GrPathTessellationShader::Impl::~Impl\28\29 +11559:GrPathTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11560:GrPathTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11561:GrOpsRenderPass::~GrOpsRenderPass\28\29 +11562:GrOpsRenderPass::onExecuteDrawable\28std::__2::unique_ptr>\29 +11563:GrOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +11564:GrOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +11565:GrOpFlushState::~GrOpFlushState\28\29_9551 +11566:GrOpFlushState::~GrOpFlushState\28\29 +11567:GrOpFlushState::writeView\28\29\20const +11568:GrOpFlushState::usesMSAASurface\28\29\20const +11569:GrOpFlushState::tokenTracker\28\29 +11570:GrOpFlushState::threadSafeCache\28\29\20const +11571:GrOpFlushState::strikeCache\28\29\20const +11572:GrOpFlushState::smallPathAtlasManager\28\29\20const +11573:GrOpFlushState::sampledProxyArray\28\29 +11574:GrOpFlushState::rtProxy\28\29\20const +11575:GrOpFlushState::resourceProvider\28\29\20const +11576:GrOpFlushState::renderPassBarriers\28\29\20const +11577:GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +11578:GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +11579:GrOpFlushState::putBackIndirectDraws\28int\29 +11580:GrOpFlushState::putBackIndices\28int\29 +11581:GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +11582:GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +11583:GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +11584:GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +11585:GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +11586:GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +11587:GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +11588:GrOpFlushState::dstProxyView\28\29\20const +11589:GrOpFlushState::colorLoadOp\28\29\20const +11590:GrOpFlushState::atlasManager\28\29\20const +11591:GrOpFlushState::appliedClip\28\29\20const +11592:GrOpFlushState::addInlineUpload\28std::__2::function&\29>&&\29 +11593:GrOp::~GrOp\28\29 +11594:GrOnFlushCallbackObject::postFlush\28skgpu::Token\29 +11595:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11596:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11597:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const +11598:GrModulateAtlasCoverageEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11599:GrModulateAtlasCoverageEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11600:GrModulateAtlasCoverageEffect::name\28\29\20const +11601:GrModulateAtlasCoverageEffect::clone\28\29\20const +11602:GrMeshDrawOp::onPrepare\28GrOpFlushState*\29 +11603:GrMeshDrawOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11604:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11605:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11606:GrMatrixEffect::onMakeProgramImpl\28\29\20const +11607:GrMatrixEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11608:GrMatrixEffect::name\28\29\20const +11609:GrMatrixEffect::clone\28\29\20const +11610:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29_10160 +11611:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29 +11612:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::$_0::__invoke\28void\20const*\2c\20void*\29 +11613:GrImageContext::~GrImageContext\28\29_9485 +11614:GrImageContext::~GrImageContext\28\29 +11615:GrHardClip::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +11616:GrGpuResource::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +11617:GrGpuBuffer::~GrGpuBuffer\28\29 +11618:GrGpuBuffer::unref\28\29\20const +11619:GrGpuBuffer::getResourceType\28\29\20const +11620:GrGpuBuffer::computeScratchKey\28skgpu::ScratchKey*\29\20const +11621:GrGpu::endTimerQuery\28GrTimerQuery\20const&\29 +11622:GrGeometryProcessor::onTextureSampler\28int\29\20const +11623:GrGeometryProcessor::ProgramImpl::~ProgramImpl\28\29 +11624:GrGLVaryingHandler::~GrGLVaryingHandler\28\29 +11625:GrGLUniformHandler::~GrGLUniformHandler\28\29_12526 +11626:GrGLUniformHandler::~GrGLUniformHandler\28\29 +11627:GrGLUniformHandler::samplerVariable\28GrResourceHandle\29\20const +11628:GrGLUniformHandler::samplerSwizzle\28GrResourceHandle\29\20const +11629:GrGLUniformHandler::internalAddUniformArray\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20bool\2c\20int\2c\20char\20const**\29 +11630:GrGLUniformHandler::getUniformCStr\28GrResourceHandle\29\20const +11631:GrGLUniformHandler::appendUniformDecls\28GrShaderFlags\2c\20SkString*\29\20const +11632:GrGLUniformHandler::addSampler\28GrBackendFormat\20const&\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20GrShaderCaps\20const*\29 +11633:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +11634:GrGLTextureRenderTarget::onSetLabel\28\29 +11635:GrGLTextureRenderTarget::onRelease\28\29 +11636:GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +11637:GrGLTextureRenderTarget::onAbandon\28\29 +11638:GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +11639:GrGLTextureRenderTarget::backendFormat\28\29\20const +11640:GrGLTexture::~GrGLTexture\28\29_12475 +11641:GrGLTexture::~GrGLTexture\28\29 +11642:GrGLTexture::textureParamsModified\28\29 +11643:GrGLTexture::onStealBackendTexture\28GrBackendTexture*\2c\20std::__2::function*\29 +11644:GrGLTexture::getBackendTexture\28\29\20const +11645:GrGLSemaphore::~GrGLSemaphore\28\29_12452 +11646:GrGLSemaphore::~GrGLSemaphore\28\29 +11647:GrGLSemaphore::setIsOwned\28\29 +11648:GrGLSemaphore::backendSemaphore\28\29\20const +11649:GrGLSLVertexBuilder::~GrGLSLVertexBuilder\28\29 +11650:GrGLSLVertexBuilder::onFinalize\28\29 +11651:GrGLSLUniformHandler::inputSamplerSwizzle\28GrResourceHandle\29\20const +11652:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_10781 +11653:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +11654:GrGLSLFragmentShaderBuilder::primaryColorOutputIsInOut\28\29\20const +11655:GrGLSLFragmentShaderBuilder::onFinalize\28\29 +11656:GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +11657:GrGLSLFragmentShaderBuilder::forceHighPrecision\28\29 +11658:GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +11659:GrGLRenderTarget::~GrGLRenderTarget\28\29_12447 +11660:GrGLRenderTarget::~GrGLRenderTarget\28\29 +11661:GrGLRenderTarget::onGpuMemorySize\28\29\20const +11662:GrGLRenderTarget::getBackendRenderTarget\28\29\20const +11663:GrGLRenderTarget::completeStencilAttachment\28GrAttachment*\2c\20bool\29 +11664:GrGLRenderTarget::canAttemptStencilAttachment\28bool\29\20const +11665:GrGLRenderTarget::backendFormat\28\29\20const +11666:GrGLRenderTarget::alwaysClearStencil\28\29\20const +11667:GrGLProgramDataManager::~GrGLProgramDataManager\28\29_12423 +11668:GrGLProgramDataManager::~GrGLProgramDataManager\28\29 +11669:GrGLProgramDataManager::setMatrix4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +11670:GrGLProgramDataManager::setMatrix4f\28GrResourceHandle\2c\20float\20const*\29\20const +11671:GrGLProgramDataManager::setMatrix3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +11672:GrGLProgramDataManager::setMatrix3f\28GrResourceHandle\2c\20float\20const*\29\20const +11673:GrGLProgramDataManager::setMatrix2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +11674:GrGLProgramDataManager::setMatrix2f\28GrResourceHandle\2c\20float\20const*\29\20const +11675:GrGLProgramDataManager::set4iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +11676:GrGLProgramDataManager::set4i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\2c\20int\29\20const +11677:GrGLProgramDataManager::set4f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\2c\20float\29\20const +11678:GrGLProgramDataManager::set3iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +11679:GrGLProgramDataManager::set3i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\29\20const +11680:GrGLProgramDataManager::set3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +11681:GrGLProgramDataManager::set3f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\29\20const +11682:GrGLProgramDataManager::set2iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +11683:GrGLProgramDataManager::set2i\28GrResourceHandle\2c\20int\2c\20int\29\20const +11684:GrGLProgramDataManager::set2f\28GrResourceHandle\2c\20float\2c\20float\29\20const +11685:GrGLProgramDataManager::set1iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +11686:GrGLProgramDataManager::set1i\28GrResourceHandle\2c\20int\29\20const +11687:GrGLProgramDataManager::set1fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +11688:GrGLProgramDataManager::set1f\28GrResourceHandle\2c\20float\29\20const +11689:GrGLProgramBuilder::~GrGLProgramBuilder\28\29_12561 +11690:GrGLProgramBuilder::varyingHandler\28\29 +11691:GrGLProgramBuilder::caps\28\29\20const +11692:GrGLProgram::~GrGLProgram\28\29_12381 +11693:GrGLOpsRenderPass::~GrGLOpsRenderPass\28\29 +11694:GrGLOpsRenderPass::onSetScissorRect\28SkIRect\20const&\29 +11695:GrGLOpsRenderPass::onEnd\28\29 +11696:GrGLOpsRenderPass::onDraw\28int\2c\20int\29 +11697:GrGLOpsRenderPass::onDrawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +11698:GrGLOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +11699:GrGLOpsRenderPass::onDrawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +11700:GrGLOpsRenderPass::onDrawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +11701:GrGLOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +11702:GrGLOpsRenderPass::onClear\28GrScissorState\20const&\2c\20std::__2::array\29 +11703:GrGLOpsRenderPass::onClearStencilClip\28GrScissorState\20const&\2c\20bool\29 +11704:GrGLOpsRenderPass::onBindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +11705:GrGLOpsRenderPass::onBindPipeline\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +11706:GrGLOpsRenderPass::onBindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +11707:GrGLOpsRenderPass::onBegin\28\29 +11708:GrGLOpsRenderPass::inlineUpload\28GrOpFlushState*\2c\20std::__2::function&\29>&\29 +11709:GrGLInterface::~GrGLInterface\28\29_12358 +11710:GrGLInterface::~GrGLInterface\28\29 +11711:GrGLGpu::~GrGLGpu\28\29_12226 +11712:GrGLGpu::xferBarrier\28GrRenderTarget*\2c\20GrXferBarrierType\29 +11713:GrGLGpu::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +11714:GrGLGpu::willExecute\28\29 +11715:GrGLGpu::waitSemaphore\28GrSemaphore*\29 +11716:GrGLGpu::submit\28GrOpsRenderPass*\29 +11717:GrGLGpu::startTimerQuery\28\29 +11718:GrGLGpu::stagingBufferManager\28\29 +11719:GrGLGpu::refPipelineBuilder\28\29 +11720:GrGLGpu::prepareTextureForCrossContextUsage\28GrTexture*\29 +11721:GrGLGpu::prepareSurfacesForBackendAccessAndStateUpdates\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20skgpu::MutableTextureState\20const*\29 +11722:GrGLGpu::precompileShader\28SkData\20const&\2c\20SkData\20const&\29 +11723:GrGLGpu::onWritePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +11724:GrGLGpu::onWrapRenderableBackendTexture\28GrBackendTexture\20const&\2c\20int\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +11725:GrGLGpu::onWrapCompressedBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +11726:GrGLGpu::onWrapBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\2c\20GrIOType\29 +11727:GrGLGpu::onWrapBackendRenderTarget\28GrBackendRenderTarget\20const&\29 +11728:GrGLGpu::onUpdateCompressedBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20void\20const*\2c\20unsigned\20long\29 +11729:GrGLGpu::onTransferPixelsTo\28GrTexture*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +11730:GrGLGpu::onTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\29 +11731:GrGLGpu::onTransferFromBufferToBuffer\28sk_sp\2c\20unsigned\20long\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +11732:GrGLGpu::onSubmitToGpu\28GrSubmitInfo\20const&\29 +11733:GrGLGpu::onResolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +11734:GrGLGpu::onResetTextureBindings\28\29 +11735:GrGLGpu::onResetContext\28unsigned\20int\29 +11736:GrGLGpu::onRegenerateMipMapLevels\28GrTexture*\29 +11737:GrGLGpu::onReadPixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20unsigned\20long\29 +11738:GrGLGpu::onGetOpsRenderPass\28GrRenderTarget*\2c\20bool\2c\20GrAttachment*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const&\2c\20GrOpsRenderPass::LoadAndStoreInfo\20const&\2c\20GrOpsRenderPass::StencilLoadAndStoreInfo\20const&\2c\20skia_private::TArray\20const&\2c\20GrXferBarrierFlags\29 +11739:GrGLGpu::onDumpJSON\28SkJSONWriter*\29\20const +11740:GrGLGpu::onCreateTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +11741:GrGLGpu::onCreateCompressedTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20void\20const*\2c\20unsigned\20long\29 +11742:GrGLGpu::onCreateCompressedBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\29 +11743:GrGLGpu::onCreateBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +11744:GrGLGpu::onCreateBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +11745:GrGLGpu::onCopySurface\28GrSurface*\2c\20SkIRect\20const&\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +11746:GrGLGpu::onClearBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20std::__2::array\29 +11747:GrGLGpu::makeStencilAttachment\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\29 +11748:GrGLGpu::makeSemaphore\28bool\29 +11749:GrGLGpu::makeMSAAAttachment\28SkISize\2c\20GrBackendFormat\20const&\2c\20int\2c\20skgpu::Protected\2c\20GrMemoryless\29 +11750:GrGLGpu::insertSemaphore\28GrSemaphore*\29 +11751:GrGLGpu::getPreferredStencilFormat\28GrBackendFormat\20const&\29 +11752:GrGLGpu::finishOutstandingGpuWork\28\29 +11753:GrGLGpu::endTimerQuery\28GrTimerQuery\20const&\29 +11754:GrGLGpu::disconnect\28GrGpu::DisconnectType\29 +11755:GrGLGpu::deleteBackendTexture\28GrBackendTexture\20const&\29 +11756:GrGLGpu::compile\28GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\29 +11757:GrGLGpu::checkFinishedCallbacks\28\29 +11758:GrGLGpu::addFinishedCallback\28skgpu::AutoCallback\2c\20std::__2::optional\29 +11759:GrGLGpu::ProgramCache::~ProgramCache\28\29_12338 +11760:GrGLGpu::ProgramCache::~ProgramCache\28\29 +11761:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20unsigned\20int\2c\20float\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29 +11762:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29 +11763:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11764:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\29\29::'lambda'\28void\20const*\2c\20float\29::__invoke\28void\20const*\2c\20float\29 +11765:GrGLFunction::GrGLFunction\28void\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +11766:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28__GLsync*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29 +11767:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +11768:GrGLCaps::~GrGLCaps\28\29_12193 +11769:GrGLCaps::surfaceSupportsReadPixels\28GrSurface\20const*\29\20const +11770:GrGLCaps::supportedWritePixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +11771:GrGLCaps::onSurfaceSupportsWritePixels\28GrSurface\20const*\29\20const +11772:GrGLCaps::onSupportsDynamicMSAA\28GrRenderTargetProxy\20const*\29\20const +11773:GrGLCaps::onSupportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +11774:GrGLCaps::onIsWindowRectanglesSupportedForRT\28GrBackendRenderTarget\20const&\29\20const +11775:GrGLCaps::onGetReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +11776:GrGLCaps::onGetDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\29\20const +11777:GrGLCaps::onGetDefaultBackendFormat\28GrColorType\29\20const +11778:GrGLCaps::onDumpJSON\28SkJSONWriter*\29\20const +11779:GrGLCaps::onCanCopySurface\28GrSurfaceProxy\20const*\2c\20SkIRect\20const&\2c\20GrSurfaceProxy\20const*\2c\20SkIRect\20const&\29\20const +11780:GrGLCaps::onAreColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +11781:GrGLCaps::onApplyOptionsOverrides\28GrContextOptions\20const&\29 +11782:GrGLCaps::maxRenderTargetSampleCount\28GrBackendFormat\20const&\29\20const +11783:GrGLCaps::makeDesc\28GrRenderTarget*\2c\20GrProgramInfo\20const&\2c\20GrCaps::ProgramDescOverrideFlags\29\20const +11784:GrGLCaps::isFormatTexturable\28GrBackendFormat\20const&\2c\20GrTextureType\29\20const +11785:GrGLCaps::isFormatSRGB\28GrBackendFormat\20const&\29\20const +11786:GrGLCaps::isFormatRenderable\28GrBackendFormat\20const&\2c\20int\29\20const +11787:GrGLCaps::isFormatCopyable\28GrBackendFormat\20const&\29\20const +11788:GrGLCaps::isFormatAsColorTypeRenderable\28GrColorType\2c\20GrBackendFormat\20const&\2c\20int\29\20const +11789:GrGLCaps::getWriteSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +11790:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrBackendFormat\20const&\29\20const +11791:GrGLCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +11792:GrGLCaps::getBackendFormatFromCompressionType\28SkTextureCompressionType\29\20const +11793:GrGLCaps::computeFormatKey\28GrBackendFormat\20const&\29\20const +11794:GrGLBuffer::~GrGLBuffer\28\29_12143 +11795:GrGLBuffer::~GrGLBuffer\28\29 +11796:GrGLBuffer::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +11797:GrGLBuffer::onUpdateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +11798:GrGLBuffer::onUnmap\28GrGpuBuffer::MapType\29 +11799:GrGLBuffer::onSetLabel\28\29 +11800:GrGLBuffer::onRelease\28\29 +11801:GrGLBuffer::onMap\28GrGpuBuffer::MapType\29 +11802:GrGLBuffer::onClearToZero\28\29 +11803:GrGLBuffer::onAbandon\28\29 +11804:GrGLBackendTextureData::~GrGLBackendTextureData\28\29_12117 +11805:GrGLBackendTextureData::~GrGLBackendTextureData\28\29 +11806:GrGLBackendTextureData::isSameTexture\28GrBackendTextureData\20const*\29\20const +11807:GrGLBackendTextureData::isProtected\28\29\20const +11808:GrGLBackendTextureData::getBackendFormat\28\29\20const +11809:GrGLBackendTextureData::equal\28GrBackendTextureData\20const*\29\20const +11810:GrGLBackendTextureData::copyTo\28SkAnySubclass&\29\20const +11811:GrGLBackendRenderTargetData::getBackendFormat\28\29\20const +11812:GrGLBackendRenderTargetData::equal\28GrBackendRenderTargetData\20const*\29\20const +11813:GrGLBackendRenderTargetData::copyTo\28SkAnySubclass&\29\20const +11814:GrGLBackendFormatData::toString\28\29\20const +11815:GrGLBackendFormatData::stencilBits\28\29\20const +11816:GrGLBackendFormatData::equal\28GrBackendFormatData\20const*\29\20const +11817:GrGLBackendFormatData::desc\28\29\20const +11818:GrGLBackendFormatData::copyTo\28SkAnySubclass&\29\20const +11819:GrGLBackendFormatData::compressionType\28\29\20const +11820:GrGLBackendFormatData::channelMask\28\29\20const +11821:GrGLBackendFormatData::bytesPerBlock\28\29\20const +11822:GrGLAttachment::~GrGLAttachment\28\29 +11823:GrGLAttachment::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +11824:GrGLAttachment::onSetLabel\28\29 +11825:GrGLAttachment::onRelease\28\29 +11826:GrGLAttachment::onAbandon\28\29 +11827:GrGLAttachment::backendFormat\28\29\20const +11828:GrFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +11829:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11830:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const +11831:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11832:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11833:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::name\28\29\20const +11834:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +11835:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::clone\28\29\20const +11836:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11837:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const +11838:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::name\28\29\20const +11839:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::clone\28\29\20const +11840:GrFragmentProcessor::ProgramImpl::~ProgramImpl\28\29 +11841:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11842:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const +11843:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::name\28\29\20const +11844:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::clone\28\29\20const +11845:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11846:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const +11847:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::name\28\29\20const +11848:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +11849:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::clone\28\29\20const +11850:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11851:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const +11852:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::name\28\29\20const +11853:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +11854:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::clone\28\29\20const +11855:GrFixedClip::~GrFixedClip\28\29_9258 +11856:GrFixedClip::~GrFixedClip\28\29 +11857:GrExternalTextureGenerator::onGenerateTexture\28GrRecordingContext*\2c\20SkImageInfo\20const&\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +11858:GrEagerDynamicVertexAllocator::lock\28unsigned\20long\2c\20int\29 +11859:GrDynamicAtlas::~GrDynamicAtlas\28\29_9229 +11860:GrDynamicAtlas::~GrDynamicAtlas\28\29 +11861:GrDrawingManager::flush\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +11862:GrDrawOp::usesStencil\28\29\20const +11863:GrDrawOp::usesMSAA\28\29\20const +11864:GrDrawOp::fixedFunctionFlags\28\29\20const +11865:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29_10429 +11866:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29 +11867:GrDistanceFieldPathGeoProc::onTextureSampler\28int\29\20const +11868:GrDistanceFieldPathGeoProc::name\28\29\20const +11869:GrDistanceFieldPathGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11870:GrDistanceFieldPathGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11871:GrDistanceFieldPathGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11872:GrDistanceFieldPathGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11873:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29_10433 +11874:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29 +11875:GrDistanceFieldLCDTextGeoProc::name\28\29\20const +11876:GrDistanceFieldLCDTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11877:GrDistanceFieldLCDTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11878:GrDistanceFieldLCDTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11879:GrDistanceFieldLCDTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11880:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29_10425 +11881:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29 +11882:GrDistanceFieldA8TextGeoProc::name\28\29\20const +11883:GrDistanceFieldA8TextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11884:GrDistanceFieldA8TextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11885:GrDistanceFieldA8TextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11886:GrDistanceFieldA8TextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11887:GrDisableColorXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11888:GrDisableColorXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11889:GrDirectContext::~GrDirectContext\28\29_9131 +11890:GrDirectContext::releaseResourcesAndAbandonContext\28\29 +11891:GrDirectContext::init\28\29 +11892:GrDirectContext::abandoned\28\29 +11893:GrDirectContext::abandonContext\28\29 +11894:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29_8759 +11895:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29 +11896:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29_9253 +11897:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29 +11898:GrCpuVertexAllocator::unlock\28int\29 +11899:GrCpuVertexAllocator::lock\28unsigned\20long\2c\20int\29 +11900:GrCpuBuffer::unref\28\29\20const +11901:GrCoverageSetOpXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11902:GrCoverageSetOpXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11903:GrCopyRenderTask::~GrCopyRenderTask\28\29_9091 +11904:GrCopyRenderTask::onMakeSkippable\28\29 +11905:GrCopyRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +11906:GrCopyRenderTask::onExecute\28GrOpFlushState*\29 +11907:GrCopyRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +11908:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11909:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11910:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const +11911:GrConvexPolyEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11912:GrConvexPolyEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11913:GrConvexPolyEffect::name\28\29\20const +11914:GrConvexPolyEffect::clone\28\29\20const +11915:GrContext_Base::~GrContext_Base\28\29_9071 +11916:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29_9059 +11917:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29 +11918:GrContextThreadSafeProxy::isValidCharacterizationForVulkan\28sk_sp\2c\20bool\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20bool\2c\20bool\29 +11919:GrConicEffect::name\28\29\20const +11920:GrConicEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11921:GrConicEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11922:GrConicEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11923:GrConicEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11924:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29_9043 +11925:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29 +11926:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11927:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11928:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const +11929:GrColorSpaceXformEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11930:GrColorSpaceXformEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11931:GrColorSpaceXformEffect::name\28\29\20const +11932:GrColorSpaceXformEffect::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +11933:GrColorSpaceXformEffect::clone\28\29\20const +11934:GrCaps::~GrCaps\28\29 +11935:GrCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +11936:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29_10338 +11937:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29 +11938:GrBitmapTextGeoProc::onTextureSampler\28int\29\20const +11939:GrBitmapTextGeoProc::name\28\29\20const +11940:GrBitmapTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11941:GrBitmapTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11942:GrBitmapTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11943:GrBitmapTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11944:GrBicubicEffect::onMakeProgramImpl\28\29\20const +11945:GrBicubicEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11946:GrBicubicEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11947:GrBicubicEffect::name\28\29\20const +11948:GrBicubicEffect::clone\28\29\20const +11949:GrBicubicEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11950:GrBicubicEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11951:GrAttachment::onGpuMemorySize\28\29\20const +11952:GrAttachment::getResourceType\28\29\20const +11953:GrAttachment::computeScratchKey\28skgpu::ScratchKey*\29\20const +11954:GrAtlasManager::~GrAtlasManager\28\29_11998 +11955:GrAtlasManager::preFlush\28GrOnFlushResourceProvider*\29 +11956:GrAtlasManager::postFlush\28skgpu::Token\29 +11957:GrAATriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +11958:GetRectsForRange\28skia::textlayout::Paragraph&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +11959:GetRectsForPlaceholders\28skia::textlayout::Paragraph&\29 +11960:GetLineMetrics\28skia::textlayout::Paragraph&\29 +11961:GetLineMetricsAt\28skia::textlayout::Paragraph&\2c\20unsigned\20long\29 +11962:GetGlyphInfoAt\28skia::textlayout::Paragraph&\2c\20unsigned\20long\29 +11963:GetCoeffsFast +11964:GetCoeffsAlt +11965:GetClosestGlyphInfoAtCoordinate\28skia::textlayout::Paragraph&\2c\20float\2c\20float\29 +11966:FontMgrRunIterator::~FontMgrRunIterator\28\29_14950 +11967:FontMgrRunIterator::~FontMgrRunIterator\28\29 +11968:FontMgrRunIterator::currentFont\28\29\20const +11969:FontMgrRunIterator::consume\28\29 +11970:ExtractGreen_C +11971:ExtractAlpha_C +11972:ExtractAlphaRows +11973:ExternalWebGLTexture::~ExternalWebGLTexture\28\29_906 +11974:ExternalWebGLTexture::~ExternalWebGLTexture\28\29 +11975:ExternalWebGLTexture::getBackendTexture\28\29 +11976:ExternalWebGLTexture::dispose\28\29 +11977:ExportAlphaRGBA4444 +11978:ExportAlpha +11979:Equals\28SkPath\20const&\2c\20SkPath\20const&\29 +11980:EmitYUV +11981:EmitSampledRGB +11982:EmitRescaledYUV +11983:EmitRescaledRGB +11984:EmitRescaledAlphaYUV +11985:EmitRescaledAlphaRGB +11986:EmitFancyRGB +11987:EmitAlphaYUV +11988:EmitAlphaRGBA4444 +11989:EmitAlphaRGB +11990:EllipticalRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11991:EllipticalRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11992:EllipticalRRectOp::name\28\29\20const +11993:EllipticalRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11994:EllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11995:EllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11996:EllipseOp::name\28\29\20const +11997:EllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11998:EllipseGeometryProcessor::name\28\29\20const +11999:EllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12000:EllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12001:EllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12002:Dual_Project +12003:DitherCombine8x8_C +12004:DispatchAlpha_C +12005:DispatchAlphaToGreen_C +12006:DisableColorXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12007:DisableColorXP::name\28\29\20const +12008:DisableColorXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12009:DisableColorXP::makeProgramImpl\28\29\20const +12010:Direct_Move_Y +12011:Direct_Move_X +12012:Direct_Move_Orig_Y +12013:Direct_Move_Orig_X +12014:Direct_Move_Orig +12015:Direct_Move +12016:DefaultGeoProc::name\28\29\20const +12017:DefaultGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12018:DefaultGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12019:DefaultGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12020:DefaultGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12021:DataFontLoader::loadSystemFonts\28SkFontScanner\20const*\2c\20skia_private::TArray\2c\20true>*\29\20const +12022:DataCacheElement_deleter\28void*\29 +12023:DIEllipseOp::~DIEllipseOp\28\29_11499 +12024:DIEllipseOp::~DIEllipseOp\28\29 +12025:DIEllipseOp::visitProxies\28std::__2::function\20const&\29\20const +12026:DIEllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12027:DIEllipseOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12028:DIEllipseOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12029:DIEllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12030:DIEllipseOp::name\28\29\20const +12031:DIEllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12032:DIEllipseGeometryProcessor::name\28\29\20const +12033:DIEllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12034:DIEllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12035:DIEllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12036:DC8uv_C +12037:DC8uvNoTop_C +12038:DC8uvNoTopLeft_C +12039:DC8uvNoLeft_C +12040:DC4_C +12041:DC16_C +12042:DC16NoTop_C +12043:DC16NoTopLeft_C +12044:DC16NoLeft_C +12045:CustomXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12046:CustomXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12047:CustomXP::xferBarrierType\28GrCaps\20const&\29\20const +12048:CustomXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12049:CustomXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12050:CustomXP::name\28\29\20const +12051:CustomXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12052:CustomXP::makeProgramImpl\28\29\20const +12053:CustomTeardown +12054:CustomSetup +12055:CustomPut +12056:Current_Ppem_Stretched +12057:Current_Ppem +12058:Cr_z_zcalloc +12059:CoverageSetOpXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12060:CoverageSetOpXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12061:CoverageSetOpXP::name\28\29\20const +12062:CoverageSetOpXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12063:CoverageSetOpXP::makeProgramImpl\28\29\20const +12064:CopyPath\28SkPath\20const&\29 +12065:ConvertRGB24ToY_C +12066:ConvertBGR24ToY_C +12067:ConvertARGBToY_C +12068:ColorTableEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12069:ColorTableEffect::onMakeProgramImpl\28\29\20const +12070:ColorTableEffect::name\28\29\20const +12071:ColorTableEffect::clone\28\29\20const +12072:CircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +12073:CircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12074:CircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12075:CircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12076:CircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12077:CircularRRectOp::name\28\29\20const +12078:CircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12079:CircleOp::~CircleOp\28\29_11473 +12080:CircleOp::~CircleOp\28\29 +12081:CircleOp::visitProxies\28std::__2::function\20const&\29\20const +12082:CircleOp::programInfo\28\29 +12083:CircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12084:CircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12085:CircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12086:CircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12087:CircleOp::name\28\29\20const +12088:CircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12089:CircleGeometryProcessor::name\28\29\20const +12090:CircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12091:CircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12092:CircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12093:CanInterpolate\28SkPath\20const&\2c\20SkPath\20const&\29 +12094:ButtCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +12095:ButtCapDashedCircleOp::visitProxies\28std::__2::function\20const&\29\20const +12096:ButtCapDashedCircleOp::programInfo\28\29 +12097:ButtCapDashedCircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12098:ButtCapDashedCircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12099:ButtCapDashedCircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12100:ButtCapDashedCircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12101:ButtCapDashedCircleOp::name\28\29\20const +12102:ButtCapDashedCircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12103:ButtCapDashedCircleGeometryProcessor::name\28\29\20const +12104:ButtCapDashedCircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12105:ButtCapDashedCircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12106:ButtCapDashedCircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12107:BrotliDefaultAllocFunc +12108:BluntJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +12109:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12110:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12111:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const +12112:BlendFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12113:BlendFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12114:BlendFragmentProcessor::name\28\29\20const +12115:BlendFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12116:BlendFragmentProcessor::clone\28\29\20const +12117:AutoCleanPng::infoCallback\28unsigned\20long\29 +12118:AutoCleanPng::decodeBounds\28\29 +12119:ApplyTrim\28SkPath&\2c\20float\2c\20float\2c\20bool\29 +12120:ApplyTransform\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +12121:ApplyStroke\28SkPath&\2c\20StrokeOpts\29 +12122:ApplySimplify\28SkPath&\29 +12123:ApplyRewind\28SkPath&\29 +12124:ApplyReset\28SkPath&\29 +12125:ApplyRQuadTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\29 +12126:ApplyRMoveTo\28SkPath&\2c\20float\2c\20float\29 +12127:ApplyRLineTo\28SkPath&\2c\20float\2c\20float\29 +12128:ApplyRCubicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +12129:ApplyRConicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +12130:ApplyRArcToArcSize\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29 +12131:ApplyQuadTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\29 +12132:ApplyPathOp\28SkPath&\2c\20SkPath\20const&\2c\20SkPathOp\29 +12133:ApplyMoveTo\28SkPath&\2c\20float\2c\20float\29 +12134:ApplyLineTo\28SkPath&\2c\20float\2c\20float\29 +12135:ApplyDash\28SkPath&\2c\20float\2c\20float\2c\20float\29 +12136:ApplyCubicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +12137:ApplyConicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +12138:ApplyClose\28SkPath&\29 +12139:ApplyArcToTangent\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +12140:ApplyArcToArcSize\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29 +12141:ApplyAlphaMultiply_C +12142:ApplyAlphaMultiply_16b_C +12143:ApplyAddPath\28SkPath&\2c\20SkPath\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +12144:AlphaReplace_C +12145:$_3::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +12146:$_2::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 +12147:$_1::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +12148:$_0::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 diff --git a/build/web/canvaskit/canvaskit.wasm b/build/web/canvaskit/canvaskit.wasm new file mode 100755 index 0000000..c83af99 Binary files /dev/null and b/build/web/canvaskit/canvaskit.wasm differ diff --git a/build/web/canvaskit/chromium/canvaskit.js b/build/web/canvaskit/chromium/canvaskit.js new file mode 100644 index 0000000..d95b1d3 --- /dev/null +++ b/build/web/canvaskit/chromium/canvaskit.js @@ -0,0 +1,192 @@ + +var CanvasKitInit = (() => { + var _scriptName = import.meta.url; + + return ( +function(moduleArg = {}) { + var moduleRtn; + +var r=moduleArg,ba,ca,da=new Promise((a,b)=>{ba=a;ca=b}),fa="object"==typeof window,ia="function"==typeof importScripts; +(function(a){a.Xd=a.Xd||[];a.Xd.push(function(){a.MakeSWCanvasSurface=function(b){var c=b,e="undefined"!==typeof OffscreenCanvas&&c instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&c instanceof HTMLCanvasElement||e||(c=document.getElementById(b),c)))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.ue=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var e={width:b,height:c,colorType:a.ColorType.RGBA_8888, +alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB},f=b*c*4,k=a._malloc(f);if(e=a.Surface._makeRasterDirect(e,k,4*b))e.ue=null,e.Ue=b,e.Re=c,e.Se=f,e.Be=k,e.getCanvas().clear(a.TRANSPARENT);return e};a.MakeRasterDirectSurface=function(b,c,e){return a.Surface._makeRasterDirect(b,c.byteOffset,e)};a.Surface.prototype.flush=function(b){a.Ud(this.Td);this._flush();if(this.ue){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.Be,this.Se);c=new ImageData(c,this.Ue,this.Re);b?this.ue.getContext("2d").putImageData(c, +0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.ue.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose=function(){this.Be&&a._free(this.Be);this.delete()};a.Ud=a.Ud||function(){};a.ve=a.ve||function(){return null}})})(r); +(function(a){a.Xd=a.Xd||[];a.Xd.push(function(){function b(l,q,v){return l&&l.hasOwnProperty(q)?l[q]:v}function c(l){var q=ja(ka);ka[q]=l;return q}function e(l){return l.naturalHeight||l.videoHeight||l.displayHeight||l.height}function f(l){return l.naturalWidth||l.videoWidth||l.displayWidth||l.width}function k(l,q,v,w){l.bindTexture(l.TEXTURE_2D,q);w||v.alphaType!==a.AlphaType.Premul||l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return q}function n(l,q,v){v||q.alphaType!==a.AlphaType.Premul|| +l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);l.bindTexture(l.TEXTURE_2D,null)}a.GetWebGLContext=function(l,q){if(!l)throw"null canvas passed into makeWebGLContext";var v={alpha:b(q,"alpha",1),depth:b(q,"depth",1),stencil:b(q,"stencil",8),antialias:b(q,"antialias",0),premultipliedAlpha:b(q,"premultipliedAlpha",1),preserveDrawingBuffer:b(q,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(q,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(q,"failIfMajorPerformanceCaveat", +0),enableExtensionsByDefault:b(q,"enableExtensionsByDefault",1),explicitSwapControl:b(q,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(q,"renderViaOffscreenBackBuffer",0)};v.majorVersion=q&&q.majorVersion?q.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(v.explicitSwapControl)throw"explicitSwapControl is not supported";l=na(l,v);if(!l)return 0;oa(l);z.fe.getExtension("WEBGL_debug_renderer_info");return l};a.deleteContext=function(l){z===pa[l]&&(z=null);"object"==typeof JSEvents&& +JSEvents.uf(pa[l].fe.canvas);pa[l]&&pa[l].fe.canvas&&(pa[l].fe.canvas.Pe=void 0);pa[l]=null};a._setTextureCleanup({deleteTexture:function(l,q){var v=ka[q];v&&pa[l].fe.deleteTexture(v);ka[q]=null}});a.MakeWebGLContext=function(l){if(!this.Ud(l))return null;var q=this._MakeGrContext();if(!q)return null;q.Td=l;var v=q.delete.bind(q);q["delete"]=function(){a.Ud(this.Td);v()}.bind(q);return z.De=q};a.MakeGrContext=a.MakeWebGLContext;a.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){a.Ud(this.Td); +this._getResourceCacheLimitBytes()};a.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){a.Ud(this.Td);this._getResourceCacheUsageBytes()};a.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){a.Ud(this.Td);this._releaseResourcesAndAbandonContext()};a.GrDirectContext.prototype.setResourceCacheLimitBytes=function(l){a.Ud(this.Td);this._setResourceCacheLimitBytes(l)};a.MakeOnScreenGLSurface=function(l,q,v,w,A,D){if(!this.Ud(l.Td))return null;q=void 0===A||void 0===D? +this._MakeOnScreenGLSurface(l,q,v,w):this._MakeOnScreenGLSurface(l,q,v,w,A,D);if(!q)return null;q.Td=l.Td;return q};a.MakeRenderTarget=function(){var l=arguments[0];if(!this.Ud(l.Td))return null;if(3===arguments.length){var q=this._MakeRenderTargetWH(l,arguments[1],arguments[2]);if(!q)return null}else if(2===arguments.length){if(q=this._MakeRenderTargetII(l,arguments[1]),!q)return null}else return null;q.Td=l.Td;return q};a.MakeWebGLCanvasSurface=function(l,q,v){q=q||null;var w=l,A="undefined"!== +typeof OffscreenCanvas&&w instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&w instanceof HTMLCanvasElement||A||(w=document.getElementById(l),w)))throw"Canvas with id "+l+" was not found";l=this.GetWebGLContext(w,v);if(!l||0>l)throw"failed to create webgl context: err "+l;l=this.MakeWebGLContext(l);q=this.MakeOnScreenGLSurface(l,w.width,w.height,q);return q?q:(q=w.cloneNode(!0),w.parentNode.replaceChild(q,w),q.classList.add("ck-replaced"),a.MakeSWCanvasSurface(q))};a.MakeCanvasSurface= +a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture=function(l,q){a.Ud(this.Td);l=c(l);if(q=this._makeImageFromTexture(this.Td,l,q))q.oe=l;return q};a.Surface.prototype.makeImageFromTextureSource=function(l,q,v){q||={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:v?a.AlphaType.Premul:a.AlphaType.Unpremul};q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);a.Ud(this.Td);var w=z.fe;v=k(w,w.createTexture(),q,v);2===z.version?w.texImage2D(w.TEXTURE_2D,0,w.RGBA,q.width,q.height, +0,w.RGBA,w.UNSIGNED_BYTE,l):w.texImage2D(w.TEXTURE_2D,0,w.RGBA,w.RGBA,w.UNSIGNED_BYTE,l);n(w,q);this._resetContext();return this.makeImageFromTexture(v,q)};a.Surface.prototype.updateTextureFromSource=function(l,q,v){if(l.oe){a.Ud(this.Td);var w=l.getImageInfo(),A=z.fe,D=k(A,ka[l.oe],w,v);2===z.version?A.texImage2D(A.TEXTURE_2D,0,A.RGBA,f(q),e(q),0,A.RGBA,A.UNSIGNED_BYTE,q):A.texImage2D(A.TEXTURE_2D,0,A.RGBA,A.RGBA,A.UNSIGNED_BYTE,q);n(A,w,v);this._resetContext();ka[l.oe]=null;l.oe=c(D);w.colorSpace= +l.getColorSpace();q=this._makeImageFromTexture(this.Td,l.oe,w);v=l.Sd.Vd;A=l.Sd.Zd;l.Sd.Vd=q.Sd.Vd;l.Sd.Zd=q.Sd.Zd;q.Sd.Vd=v;q.Sd.Zd=A;q.delete();w.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(l,q,v){q||={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:v?a.AlphaType.Premul:a.AlphaType.Unpremul};q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);var w={makeTexture:function(){var A=z,D=A.fe,I=k(D,D.createTexture(),q,v);2===A.version?D.texImage2D(D.TEXTURE_2D,0,D.RGBA, +q.width,q.height,0,D.RGBA,D.UNSIGNED_BYTE,l):D.texImage2D(D.TEXTURE_2D,0,D.RGBA,D.RGBA,D.UNSIGNED_BYTE,l);n(D,q,v);return c(I)},freeSrc:function(){}};"VideoFrame"===l.constructor.name&&(w.freeSrc=function(){l.close()});return a.Image._makeFromGenerator(q,w)};a.Ud=function(l){return l?oa(l):!1};a.ve=function(){return z&&z.De&&!z.De.isDeleted()?z.De:null}})})(r); +(function(a){function b(g){return(f(255*g[3])<<24|f(255*g[0])<<16|f(255*g[1])<<8|f(255*g[2])<<0)>>>0}function c(g){if(g&&g._ck)return g;if(g instanceof Float32Array){for(var d=Math.floor(g.length/4),h=new Uint32Array(d),m=0;mx;x++)a.HEAPF32[t+m]=g[u][x],m++;g=h}else g=0;d.be=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return d}function q(g){if(!g)return 0;var d=aa.toTypedArray();if(g.length){if(6===g.length||9===g.length)return n(g,"HEAPF32",O),6===g.length&&a.HEAPF32.set(Vc,6+O/4),O;if(16===g.length)return d[0]=g[0],d[1]=g[1],d[2]=g[3],d[3]=g[4],d[4]=g[5],d[5]=g[7],d[6]=g[12],d[7]=g[13],d[8]=g[15],O;throw"invalid matrix size"; +}if(void 0===g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m41;d[3]=g.m12;d[4]=g.m22;d[5]=g.m42;d[6]=g.m14;d[7]=g.m24;d[8]=g.m44;return O}function v(g){if(!g)return 0;var d=X.toTypedArray();if(g.length){if(16!==g.length&&6!==g.length&&9!==g.length)throw"invalid matrix size";if(16===g.length)return n(g,"HEAPF32",la);d.fill(0);d[0]=g[0];d[1]=g[1];d[3]=g[2];d[4]=g[3];d[5]=g[4];d[7]=g[5];d[10]=1;d[12]=g[6];d[13]=g[7];d[15]=g[8];6===g.length&&(d[12]=0,d[13]=0,d[15]=1);return la}if(void 0=== +g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m31;d[3]=g.m41;d[4]=g.m12;d[5]=g.m22;d[6]=g.m32;d[7]=g.m42;d[8]=g.m13;d[9]=g.m23;d[10]=g.m33;d[11]=g.m43;d[12]=g.m14;d[13]=g.m24;d[14]=g.m34;d[15]=g.m44;return la}function w(g,d){return n(g,"HEAPF32",d||ha)}function A(g,d,h,m){var t=Ea.toTypedArray();t[0]=g;t[1]=d;t[2]=h;t[3]=m;return ha}function D(g){for(var d=new Float32Array(4),h=0;4>h;h++)d[h]=a.HEAPF32[g/4+h];return d}function I(g,d){return n(g,"HEAPF32",d||V)}function P(g,d){return n(g, +"HEAPF32",d||tb)}a.Color=function(g,d,h,m){void 0===m&&(m=1);return a.Color4f(f(g)/255,f(d)/255,f(h)/255,m)};a.ColorAsInt=function(g,d,h,m){void 0===m&&(m=255);return(f(m)<<24|f(g)<<16|f(d)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,d,h,m){void 0===m&&(m=1);return Float32Array.of(g,d,h,m)};Object.defineProperty(a,"TRANSPARENT",{get:function(){return a.Color4f(0,0,0,0)}});Object.defineProperty(a,"BLACK",{get:function(){return a.Color4f(0,0,0,1)}});Object.defineProperty(a,"WHITE",{get:function(){return a.Color4f(1, +1,1,1)}});Object.defineProperty(a,"RED",{get:function(){return a.Color4f(1,0,0,1)}});Object.defineProperty(a,"GREEN",{get:function(){return a.Color4f(0,1,0,1)}});Object.defineProperty(a,"BLUE",{get:function(){return a.Color4f(0,0,1,1)}});Object.defineProperty(a,"YELLOW",{get:function(){return a.Color4f(1,1,0,1)}});Object.defineProperty(a,"CYAN",{get:function(){return a.Color4f(0,1,1,1)}});Object.defineProperty(a,"MAGENTA",{get:function(){return a.Color4f(1,0,1,1)}});a.getColorComponents=function(g){return[Math.floor(255* +g[0]),Math.floor(255*g[1]),Math.floor(255*g[2]),g[3]]};a.parseColorString=function(g,d){g=g.toLowerCase();if(g.startsWith("#")){d=255;switch(g.length){case 9:d=parseInt(g.slice(7,9),16);case 7:var h=parseInt(g.slice(1,3),16);var m=parseInt(g.slice(3,5),16);var t=parseInt(g.slice(5,7),16);break;case 5:d=17*parseInt(g.slice(4,5),16);case 4:h=17*parseInt(g.slice(1,2),16),m=17*parseInt(g.slice(2,3),16),t=17*parseInt(g.slice(3,4),16)}return a.Color(h,m,t,d/255)}return g.startsWith("rgba")?(g=g.slice(5, +-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("rgb")?(g=g.slice(4,-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("gray(")||g.startsWith("hsl")||!d||(g=d[g],void 0===g)?a.BLACK:g};a.multiplyByAlpha=function(g,d){g=g.slice();g[3]=Math.max(0,Math.min(g[3]*d,1));return g};a.Malloc=function(g,d){var h=a._malloc(d*g.BYTES_PER_ELEMENT);return{_ck:!0,length:d,byteOffset:h,ke:null,subarray:function(m,t){m=this.toTypedArray().subarray(m,t);m._ck=!0;return m},toTypedArray:function(){if(this.ke&& +this.ke.length)return this.ke;this.ke=new g(a.HEAPU8.buffer,h,d);this.ke._ck=!0;return this.ke}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=0;g.toTypedArray=null;g.ke=null};var O=0,aa,la=0,X,ha=0,Ea,ea,V=0,Ub,Aa=0,Vb,ub=0,Wb,vb=0,$a,Ma=0,Xb,tb=0,Yb,Zb=0,Vc=Float32Array.of(0,0,1);a.onRuntimeInitialized=function(){function g(d,h,m,t,u,x,C){x||(x=4*t.width,t.colorType===a.ColorType.RGBA_F16?x*=2:t.colorType===a.ColorType.RGBA_F32&&(x*=4));var G=x*t.height;var F=u?u.byteOffset:a._malloc(G); +if(C?!d._readPixels(t,F,x,h,m,C):!d._readPixels(t,F,x,h,m))return u||a._free(F),null;if(u)return u.toTypedArray();switch(t.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,F,G)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,F,G)).slice();break;default:return null}a._free(F);return d}Ea=a.Malloc(Float32Array,4);ha=Ea.byteOffset;X=a.Malloc(Float32Array,16);la=X.byteOffset;aa=a.Malloc(Float32Array,9);O=aa.byteOffset;Xb=a.Malloc(Float32Array, +12);tb=Xb.byteOffset;Yb=a.Malloc(Float32Array,12);Zb=Yb.byteOffset;ea=a.Malloc(Float32Array,4);V=ea.byteOffset;Ub=a.Malloc(Float32Array,4);Aa=Ub.byteOffset;Vb=a.Malloc(Float32Array,3);ub=Vb.byteOffset;Wb=a.Malloc(Float32Array,3);vb=Wb.byteOffset;$a=a.Malloc(Int32Array,4);Ma=$a.byteOffset;a.ColorSpace.SRGB=a.ColorSpace._MakeSRGB();a.ColorSpace.DISPLAY_P3=a.ColorSpace._MakeDisplayP3();a.ColorSpace.ADOBE_RGB=a.ColorSpace._MakeAdobeRGB();a.GlyphRunFlags={IsWhiteSpace:a._GlyphRunFlags_isWhiteSpace};a.Path.MakeFromCmds= +function(d){var h=n(d,"HEAPF32"),m=a.Path._MakeFromCmds(h,d.length);k(h,d);return m};a.Path.MakeFromVerbsPointsWeights=function(d,h,m){var t=n(d,"HEAPU8"),u=n(h,"HEAPF32"),x=n(m,"HEAPF32"),C=a.Path._MakeFromVerbsPointsWeights(t,d.length,u,h.length,x,m&&m.length||0);k(t,d);k(u,h);k(x,m);return C};a.Path.prototype.addArc=function(d,h,m){d=I(d);this._addArc(d,h,m);return this};a.Path.prototype.addCircle=function(d,h,m,t){this._addCircle(d,h,m,!!t);return this};a.Path.prototype.addOval=function(d,h,m){void 0=== +m&&(m=1);d=I(d);this._addOval(d,!!h,m);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments),h=d[0],m=!1;"boolean"===typeof d[d.length-1]&&(m=d.pop());if(1===d.length)this._addPath(h,1,0,0,0,1,0,0,0,1,m);else if(2===d.length)d=d[1],this._addPath(h,d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1,m);else if(7===d.length||10===d.length)this._addPath(h,d[1],d[2],d[3],d[4],d[5],d[6],d[7]||0,d[8]||0,d[9]||1,m);else return null;return this};a.Path.prototype.addPoly= +function(d,h){var m=n(d,"HEAPF32");this._addPoly(m,d.length/2,h);k(m,d);return this};a.Path.prototype.addRect=function(d,h){d=I(d);this._addRect(d,!!h);return this};a.Path.prototype.addRRect=function(d,h){d=P(d);this._addRRect(d,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(d,h,m){var t=n(d,"HEAPU8"),u=n(h,"HEAPF32"),x=n(m,"HEAPF32");this._addVerbsPointsWeights(t,d.length,u,h.length,x,m&&m.length||0);k(t,d);k(u,h);k(x,m)};a.Path.prototype.arc=function(d,h,m,t,u,x){d=a.LTRBRect(d- +m,h-m,d+m,h+m);u=(u-t)/Math.PI*180-360*!!x;x=new a.Path;x.addArc(d,t/Math.PI*180,u);this.addPath(x,!0);x.delete();return this};a.Path.prototype.arcToOval=function(d,h,m,t){d=I(d);this._arcToOval(d,h,m,t);return this};a.Path.prototype.arcToRotated=function(d,h,m,t,u,x,C){this._arcToRotated(d,h,m,!!t,!!u,x,C);return this};a.Path.prototype.arcToTangent=function(d,h,m,t,u){this._arcToTangent(d,h,m,t,u);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= +function(d,h,m,t,u){this._conicTo(d,h,m,t,u);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.cubicTo=function(d,h,m,t,u,x){this._cubicTo(d,h,m,t,u,x);return this};a.Path.prototype.dash=function(d,h,m){return this._dash(d,h,m)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.lineTo=function(d, +h){this._lineTo(d,h);return this};a.Path.prototype.moveTo=function(d,h){this._moveTo(d,h);return this};a.Path.prototype.offset=function(d,h){this._transform(1,0,d,0,1,h,0,0,1);return this};a.Path.prototype.quadTo=function(d,h,m,t){this._quadTo(d,h,m,t);return this};a.Path.prototype.rArcTo=function(d,h,m,t,u,x,C){this._rArcTo(d,h,m,t,u,x,C);return this};a.Path.prototype.rConicTo=function(d,h,m,t,u){this._rConicTo(d,h,m,t,u);return this};a.Path.prototype.rCubicTo=function(d,h,m,t,u,x){this._rCubicTo(d, +h,m,t,u,x);return this};a.Path.prototype.rLineTo=function(d,h){this._rLineTo(d,h);return this};a.Path.prototype.rMoveTo=function(d,h){this._rMoveTo(d,h);return this};a.Path.prototype.rQuadTo=function(d,h,m,t){this._rQuadTo(d,h,m,t);return this};a.Path.prototype.stroke=function(d){d=d||{};d.width=d.width||1;d.miter_limit=d.miter_limit||4;d.cap=d.cap||a.StrokeCap.Butt;d.join=d.join||a.StrokeJoin.Miter;d.precision=d.precision||1;return this._stroke(d)?this:null};a.Path.prototype.transform=function(){if(1=== +arguments.length){var d=arguments[0];this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1)}else if(6===arguments.length||9===arguments.length)d=arguments,this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(d,h,m){return this._trim(d,h,!!m)?this:null};a.Image.prototype.encodeToBytes=function(d,h){var m=a.ve();d=d||a.ImageFormat.PNG;h=h||100; +return m?this._encodeToBytes(d,h,m):this._encodeToBytes(d,h)};a.Image.prototype.makeShaderCubic=function(d,h,m,t,u){u=q(u);return this._makeShaderCubic(d,h,m,t,u)};a.Image.prototype.makeShaderOptions=function(d,h,m,t,u){u=q(u);return this._makeShaderOptions(d,h,m,t,u)};a.Image.prototype.readPixels=function(d,h,m,t,u){var x=a.ve();return g(this,d,h,m,t,u,x)};a.Canvas.prototype.clear=function(d){a.Ud(this.Td);d=w(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,h,m){a.Ud(this.Td);d=P(d);this._clipRRect(d, +h,m)};a.Canvas.prototype.clipRect=function(d,h,m){a.Ud(this.Td);d=I(d);this._clipRect(d,h,m)};a.Canvas.prototype.concat=function(d){a.Ud(this.Td);d=v(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,h,m,t,u){a.Ud(this.Td);d=I(d);this._drawArc(d,h,m,t,u)};a.Canvas.prototype.drawAtlas=function(d,h,m,t,u,x,C){if(d&&t&&h&&m&&h.length===m.length){a.Ud(this.Td);u||(u=a.BlendMode.SrcOver);var G=n(h,"HEAPF32"),F=n(m,"HEAPF32"),S=m.length/4,T=n(c(x),"HEAPU32");if(C&&"B"in C&&"C"in C)this._drawAtlasCubic(d, +F,G,T,S,u,C.B,C.C,t);else{let p=a.FilterMode.Linear,y=a.MipmapMode.None;C&&(p=C.filter,"mipmap"in C&&(y=C.mipmap));this._drawAtlasOptions(d,F,G,T,S,u,p,y,t)}k(G,h);k(F,m);k(T,x)}};a.Canvas.prototype.drawCircle=function(d,h,m,t){a.Ud(this.Td);this._drawCircle(d,h,m,t)};a.Canvas.prototype.drawColor=function(d,h){a.Ud(this.Td);d=w(d);void 0!==h?this._drawColor(d,h):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,h){a.Ud(this.Td);this._drawColorInt(d,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= +function(d,h,m,t,u){a.Ud(this.Td);d=A(d,h,m,t);void 0!==u?this._drawColor(d,u):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,h,m){a.Ud(this.Td);d=P(d,tb);h=P(h,Zb);this._drawDRRect(d,h,m)};a.Canvas.prototype.drawImage=function(d,h,m,t){a.Ud(this.Td);this._drawImage(d,h,m,t||null)};a.Canvas.prototype.drawImageCubic=function(d,h,m,t,u,x){a.Ud(this.Td);this._drawImageCubic(d,h,m,t,u,x||null)};a.Canvas.prototype.drawImageOptions=function(d,h,m,t,u,x){a.Ud(this.Td);this._drawImageOptions(d, +h,m,t,u,x||null)};a.Canvas.prototype.drawImageNine=function(d,h,m,t,u){a.Ud(this.Td);h=n(h,"HEAP32",Ma);m=I(m);this._drawImageNine(d,h,m,t,u||null)};a.Canvas.prototype.drawImageRect=function(d,h,m,t,u){a.Ud(this.Td);I(h,V);I(m,Aa);this._drawImageRect(d,V,Aa,t,!!u)};a.Canvas.prototype.drawImageRectCubic=function(d,h,m,t,u,x){a.Ud(this.Td);I(h,V);I(m,Aa);this._drawImageRectCubic(d,V,Aa,t,u,x||null)};a.Canvas.prototype.drawImageRectOptions=function(d,h,m,t,u,x){a.Ud(this.Td);I(h,V);I(m,Aa);this._drawImageRectOptions(d, +V,Aa,t,u,x||null)};a.Canvas.prototype.drawLine=function(d,h,m,t,u){a.Ud(this.Td);this._drawLine(d,h,m,t,u)};a.Canvas.prototype.drawOval=function(d,h){a.Ud(this.Td);d=I(d);this._drawOval(d,h)};a.Canvas.prototype.drawPaint=function(d){a.Ud(this.Td);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,h,m){a.Ud(this.Td);this._drawParagraph(d,h,m)};a.Canvas.prototype.drawPatch=function(d,h,m,t,u){if(24>d.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(m&&8>m.length)throw"Need 4 shader coordinates"; +a.Ud(this.Td);const x=n(d,"HEAPF32"),C=h?n(c(h),"HEAPU32"):0,G=m?n(m,"HEAPF32"):0;t||(t=a.BlendMode.Modulate);this._drawPatch(x,C,G,t,u);k(G,m);k(C,h);k(x,d)};a.Canvas.prototype.drawPath=function(d,h){a.Ud(this.Td);this._drawPath(d,h)};a.Canvas.prototype.drawPicture=function(d){a.Ud(this.Td);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,h,m){a.Ud(this.Td);var t=n(h,"HEAPF32");this._drawPoints(d,t,h.length/2,m);k(t,h)};a.Canvas.prototype.drawRRect=function(d,h){a.Ud(this.Td);d=P(d); +this._drawRRect(d,h)};a.Canvas.prototype.drawRect=function(d,h){a.Ud(this.Td);d=I(d);this._drawRect(d,h)};a.Canvas.prototype.drawRect4f=function(d,h,m,t,u){a.Ud(this.Td);this._drawRect4f(d,h,m,t,u)};a.Canvas.prototype.drawShadow=function(d,h,m,t,u,x,C){a.Ud(this.Td);var G=n(u,"HEAPF32"),F=n(x,"HEAPF32");h=n(h,"HEAPF32",ub);m=n(m,"HEAPF32",vb);this._drawShadow(d,h,m,t,G,F,C);k(G,u);k(F,x)};a.getShadowLocalBounds=function(d,h,m,t,u,x,C){d=q(d);m=n(m,"HEAPF32",ub);t=n(t,"HEAPF32",vb);if(!this._getShadowLocalBounds(d, +h,m,t,u,x,V))return null;h=ea.toTypedArray();return C?(C.set(h),C):h.slice()};a.Canvas.prototype.drawTextBlob=function(d,h,m,t){a.Ud(this.Td);this._drawTextBlob(d,h,m,t)};a.Canvas.prototype.drawVertices=function(d,h,m){a.Ud(this.Td);this._drawVertices(d,h,m)};a.Canvas.prototype.getDeviceClipBounds=function(d){this._getDeviceClipBounds(Ma);var h=$a.toTypedArray();d?d.set(h):d=h.slice();return d};a.Canvas.prototype.quickReject=function(d){d=I(d);return this._quickReject(d)};a.Canvas.prototype.getLocalToDevice= +function(){this._getLocalToDevice(la);for(var d=la,h=Array(16),m=0;16>m;m++)h[m]=a.HEAPF32[d/4+m];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(O);for(var d=Array(9),h=0;9>h;h++)d[h]=a.HEAPF32[O/4+h];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Td=this.Td;return d};a.Canvas.prototype.readPixels=function(d,h,m,t,u){a.Ud(this.Td);return g(this,d,h,m,t,u)};a.Canvas.prototype.saveLayer=function(d,h,m,t,u){h=I(h);return this._saveLayer(d|| +null,h,m||null,t||0,u||a.TileMode.Clamp)};a.Canvas.prototype.writePixels=function(d,h,m,t,u,x,C,G){if(d.byteLength%(h*m))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Ud(this.Td);var F=d.byteLength/(h*m);x=x||a.AlphaType.Unpremul;C=C||a.ColorType.RGBA_8888;G=G||a.ColorSpace.SRGB;var S=F*h;F=n(d,"HEAPU8");h=this._writePixels({width:h,height:m,colorType:C,alphaType:x,colorSpace:G},F,S,t,u);k(F,d);return h};a.ColorFilter.MakeBlend=function(d,h,m){d=w(d);m=m||a.ColorSpace.SRGB; +return a.ColorFilter._MakeBlend(d,h,m)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix";var h=n(d,"HEAPF32"),m=a.ColorFilter._makeMatrix(h);k(h,d);return m};a.ContourMeasure.prototype.getPosTan=function(d,h){this._getPosTan(d,V);d=ea.toTypedArray();return h?(h.set(d),h):d.slice()};a.ImageFilter.prototype.getOutputBounds=function(d,h,m){d=I(d,V);h=q(h);this._getOutputBounds(d,h,Ma);h=$a.toTypedArray();return m?(m.set(h),m):h.slice()};a.ImageFilter.MakeDropShadow= +function(d,h,m,t,u,x){u=w(u,ha);return a.ImageFilter._MakeDropShadow(d,h,m,t,u,x)};a.ImageFilter.MakeDropShadowOnly=function(d,h,m,t,u,x){u=w(u,ha);return a.ImageFilter._MakeDropShadowOnly(d,h,m,t,u,x)};a.ImageFilter.MakeImage=function(d,h,m,t){m=I(m,V);t=I(t,Aa);if("B"in h&&"C"in h)return a.ImageFilter._MakeImageCubic(d,h.B,h.C,m,t);const u=h.filter;let x=a.MipmapMode.None;"mipmap"in h&&(x=h.mipmap);return a.ImageFilter._MakeImageOptions(d,u,x,m,t)};a.ImageFilter.MakeMatrixTransform=function(d,h, +m){d=q(d);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(d,h.B,h.C,m);const t=h.filter;let u=a.MipmapMode.None;"mipmap"in h&&(u=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,t,u,m)};a.Paint.prototype.getColor=function(){this._getColor(ha);return D(ha)};a.Paint.prototype.setColor=function(d,h){h=h||null;d=w(d);this._setColor(d,h)};a.Paint.prototype.setColorComponents=function(d,h,m,t,u){u=u||null;d=A(d,h,m,t);this._setColor(d,u)};a.Path.prototype.getPoint=function(d, +h){this._getPoint(d,V);d=ea.toTypedArray();return h?(h[0]=d[0],h[1]=d[1],h):d.slice(0,2)};a.Picture.prototype.makeShader=function(d,h,m,t,u){t=q(t);u=I(u);return this._makeShader(d,h,m,t,u)};a.Picture.prototype.cullRect=function(d){this._cullRect(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.PictureRecorder.prototype.beginRecording=function(d,h){d=I(d);return this._beginRecording(d,!!h)};a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Td=this.Td;return d};a.Surface.prototype.makeImageSnapshot= +function(d){a.Ud(this.Td);d=n(d,"HEAP32",Ma);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface=function(d){a.Ud(this.Td);d=this._makeSurface(d);d.Td=this.Td;return d};a.Surface.prototype.Te=function(d,h){this.ne||(this.ne=this.getCanvas());return requestAnimationFrame(function(){a.Ud(this.Td);d(this.ne);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame||(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Te);a.Surface.prototype.Qe=function(d,h){this.ne|| +(this.ne=this.getCanvas());requestAnimationFrame(function(){a.Ud(this.Td);d(this.ne);this.flush(h);this.dispose()}.bind(this))};a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.Qe);a.PathEffect.MakeDash=function(d,h){h||=0;if(!d.length||1===d.length%2)throw"Intervals array must have even length";var m=n(d,"HEAPF32");h=a.PathEffect._MakeDash(m,d.length,h);k(m,d);return h};a.PathEffect.MakeLine2D=function(d,h){h=q(h);return a.PathEffect._MakeLine2D(d,h)};a.PathEffect.MakePath2D= +function(d,h){d=q(d);return a.PathEffect._MakePath2D(d,h)};a.Shader.MakeColor=function(d,h){h=h||null;d=w(d);return a.Shader._MakeColor(d,h)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(d,h,m,t,u,x,C,G){G=G||null;var F=l(m),S=n(t,"HEAPF32");C=C||0;x=q(x);var T=ea.toTypedArray();T.set(d);T.set(h,2);d=a.Shader._MakeLinearGradient(V,F.be,F.colorType,S,F.count,u,C,x,G);k(F.be,m);t&&k(S,t);return d};a.Shader.MakeRadialGradient=function(d,h,m, +t,u,x,C,G){G=G||null;var F=l(m),S=n(t,"HEAPF32");C=C||0;x=q(x);d=a.Shader._MakeRadialGradient(d[0],d[1],h,F.be,F.colorType,S,F.count,u,C,x,G);k(F.be,m);t&&k(S,t);return d};a.Shader.MakeSweepGradient=function(d,h,m,t,u,x,C,G,F,S){S=S||null;var T=l(m),p=n(t,"HEAPF32");C=C||0;G=G||0;F=F||360;x=q(x);d=a.Shader._MakeSweepGradient(d,h,T.be,T.colorType,p,T.count,u,G,F,C,x,S);k(T.be,m);t&&k(p,t);return d};a.Shader.MakeTwoPointConicalGradient=function(d,h,m,t,u,x,C,G,F,S){S=S||null;var T=l(u),p=n(x,"HEAPF32"); +F=F||0;G=q(G);var y=ea.toTypedArray();y.set(d);y.set(m,2);d=a.Shader._MakeTwoPointConicalGradient(V,h,t,T.be,T.colorType,p,T.count,C,F,G,S);k(T.be,u);x&&k(p,x);return d};a.Vertices.prototype.bounds=function(d){this._bounds(V);var h=ea.toTypedArray();return d?(d.set(h),d):h.slice()};a.Xd&&a.Xd.forEach(function(d){d()})};a.computeTonalColors=function(g){var d=n(g.ambient,"HEAPF32"),h=n(g.spot,"HEAPF32");this._computeTonalColors(d,h);var m={ambient:D(d),spot:D(h)};k(d,g.ambient);k(h,g.spot);return m}; +a.LTRBRect=function(g,d,h,m){return Float32Array.of(g,d,h,m)};a.XYWHRect=function(g,d,h,m){return Float32Array.of(g,d,g+h,d+m)};a.LTRBiRect=function(g,d,h,m){return Int32Array.of(g,d,h,m)};a.XYWHiRect=function(g,d,h,m){return Int32Array.of(g,d,g+h,d+m)};a.RRectXY=function(g,d,h){return Float32Array.of(g[0],g[1],g[2],g[3],d,h,d,h,d,h,d,h)};a.MakeAnimatedImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeAnimatedImage(d,g.byteLength))? +g:null};a.MakeImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeImage(d,g.byteLength))?g:null};var ab=null;a.MakeImageFromCanvasImageSource=function(g){var d=g.width,h=g.height;ab||=document.createElement("canvas");ab.width=d;ab.height=h;var m=ab.getContext("2d",{willReadFrequently:!0});m.drawImage(g,0,0);g=m.getImageData(0,0,d,h);return a.MakeImage({width:d,height:h,alphaType:a.AlphaType.Unpremul,colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB}, +g.data,4*d)};a.MakeImage=function(g,d,h){var m=a._malloc(d.length);a.HEAPU8.set(d,m);return a._MakeImage(g,m,d.length,h)};a.MakeVertices=function(g,d,h,m,t,u){var x=t&&t.length||0,C=0;h&&h.length&&(C|=1);m&&m.length&&(C|=2);void 0===u||u||(C|=4);g=new a._VerticesBuilder(g,d.length/2,x,C);n(d,"HEAPF32",g.positions());g.texCoords()&&n(h,"HEAPF32",g.texCoords());g.colors()&&n(c(m),"HEAPU32",g.colors());g.indices()&&n(t,"HEAPU16",g.indices());return g.detach()};(function(g){g.Xd=g.Xd||[];g.Xd.push(function(){function d(p){p&& +(p.dir=0===p.dir?g.TextDirection.RTL:g.TextDirection.LTR);return p}function h(p){if(!p||!p.length)return[];for(var y=[],M=0;Md)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.Font.prototype.getGlyphIntercepts= +function(g,d,h,m){var t=n(g,"HEAPU16"),u=n(d,"HEAPF32");return this._getGlyphIntercepts(t,g.length,!(g&&g._ck),u,d.length,!(d&&d._ck),h,m)};a.Font.prototype.getGlyphWidths=function(g,d,h){var m=n(g,"HEAPU16"),t=a._malloc(4*g.length);this._getGlyphWidthBounds(m,g.length,t,0,d||null);d=new Float32Array(a.HEAPU8.buffer,t,g.length);k(m,g);if(h)return h.set(d),a._free(t),h;g=Float32Array.from(d);a._free(t);return g};a.FontMgr.FromData=function(){if(!arguments.length)return null;var g=arguments;1===g.length&& +Array.isArray(g[0])&&(g=arguments[0]);if(!g.length)return null;for(var d=[],h=[],m=0;md)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.TextBlob.MakeOnPath=function(g,d,h,m){if(g&&g.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(g,h);m||=0;var t=h.getGlyphIDs(g);t=h.getGlyphWidths(t);var u=[];d=new a.ContourMeasureIter(d,!1,1);for(var x= +d.next(),C=new Float32Array(4),G=0;Gx.length()){x.delete();x=d.next();if(!x){g=g.substring(0,G);break}m=F/2}x.getPosTan(m,C);var S=C[2],T=C[3];u.push(S,T,C[0]-F/2*S,C[1]-F/2*T);m+=F/2}g=this.MakeFromRSXform(g,u,h);x&&x.delete();d.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,d,h){var m=qa(g)+1,t=a._malloc(m);ra(g,t,m);g=n(d,"HEAPF32");h=a.TextBlob._MakeFromRSXform(t,m-1,g,h);a._free(t);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g, +d,h){var m=n(g,"HEAPU16");d=n(d,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(m,2*g.length,d,h);k(m,g);return h?h:null};a.TextBlob.MakeFromGlyphs=function(g,d){var h=n(g,"HEAPU16");d=a.TextBlob._MakeFromGlyphs(h,2*g.length,d);k(h,g);return d?d:null};a.TextBlob.MakeFromText=function(g,d){var h=qa(g)+1,m=a._malloc(h);ra(g,m,h);g=a.TextBlob._MakeFromText(m,h-1,d);a._free(m);return g?g:null};a.MallocGlyphIDs=function(g){return a.Malloc(Uint16Array,g)}});a.Xd=a.Xd||[];a.Xd.push(function(){a.MakePicture= +function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._MakePicture(d,g.byteLength))?g:null}});a.Xd=a.Xd||[];a.Xd.push(function(){a.RuntimeEffect.Make=function(g,d){return a.RuntimeEffect._Make(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.MakeForBlender=function(g,d){return a.RuntimeEffect._MakeForBlender(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.prototype.makeShader=function(g,d){var h= +!g._ck,m=n(g,"HEAPF32");d=q(d);return this._makeShader(m,4*g.length,h,d)};a.RuntimeEffect.prototype.makeShaderWithChildren=function(g,d,h){var m=!g._ck,t=n(g,"HEAPF32");h=q(h);for(var u=[],x=0;x{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),ua=a=>fetch(a,{credentials:"same-origin"}).then(b=>b.ok?b.arrayBuffer():Promise.reject(Error(b.status+" : "+b.url))); +var xa=console.log.bind(console),ya=console.error.bind(console);Object.assign(r,sa);sa=null;var za,Ba=!1,Ca,B,Da,Fa,E,H,J,Ga;function Ha(){var a=za.buffer;r.HEAP8=Ca=new Int8Array(a);r.HEAP16=Da=new Int16Array(a);r.HEAPU8=B=new Uint8Array(a);r.HEAPU16=Fa=new Uint16Array(a);r.HEAP32=E=new Int32Array(a);r.HEAPU32=H=new Uint32Array(a);r.HEAPF32=J=new Float32Array(a);r.HEAPF64=Ga=new Float64Array(a)}var Ia=[],Ja=[],Ka=[],La=0,Na=null,Oa=null; +function Pa(a){a="Aborted("+a+")";ya(a);Ba=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");ca(a);throw a;}var Qa=a=>a.startsWith("data:application/octet-stream;base64,"),Ra;function Sa(a){return ua(a).then(b=>new Uint8Array(b),()=>{if(va)var b=va(a);else throw"both async and sync fetching of the wasm failed";return b})}function Ta(a,b,c){return Sa(a).then(e=>WebAssembly.instantiate(e,b)).then(c,e=>{ya(`failed to asynchronously prepare wasm: ${e}`);Pa(e)})} +function Ua(a,b){var c=Ra;return"function"!=typeof WebAssembly.instantiateStreaming||Qa(c)||"function"!=typeof fetch?Ta(c,a,b):fetch(c,{credentials:"same-origin"}).then(e=>WebAssembly.instantiateStreaming(e,a).then(b,function(f){ya(`wasm streaming compile failed: ${f}`);ya("falling back to ArrayBuffer instantiation");return Ta(c,a,b)}))}function Va(a){this.name="ExitStatus";this.message=`Program terminated with exit(${a})`;this.status=a}var Wa=a=>{a.forEach(b=>b(r))},Xa=r.noExitRuntime||!0; +class Ya{constructor(a){this.Vd=a-24}} +var Za=0,bb=0,cb="undefined"!=typeof TextDecoder?new TextDecoder:void 0,db=(a,b=0,c=NaN)=>{var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}, +eb={},fb=a=>{for(;a.length;){var b=a.pop();a.pop()(b)}};function gb(a){return this.fromWireType(H[a>>2])} +var hb={},ib={},jb={},kb,mb=(a,b,c)=>{function e(l){l=c(l);if(l.length!==a.length)throw new kb("Mismatched type converter count");for(var q=0;qjb[l]=b);var f=Array(b.length),k=[],n=0;b.forEach((l,q)=>{ib.hasOwnProperty(l)?f[q]=ib[l]:(k.push(l),hb.hasOwnProperty(l)||(hb[l]=[]),hb[l].push(()=>{f[q]=ib[l];++n;n===k.length&&e(f)}))});0===k.length&&e(f)},nb,K=a=>{for(var b="";B[a];)b+=nb[B[a++]];return b},L; +function ob(a,b,c={}){var e=b.name;if(!a)throw new L(`type "${e}" must have a positive integer typeid pointer`);if(ib.hasOwnProperty(a)){if(c.ef)return;throw new L(`Cannot register type '${e}' twice`);}ib[a]=b;delete jb[a];hb.hasOwnProperty(a)&&(b=hb[a],delete hb[a],b.forEach(f=>f()))}function lb(a,b,c={}){return ob(a,b,c)} +var pb=a=>{throw new L(a.Sd.Yd.Wd.name+" instance already deleted");},qb=!1,rb=()=>{},sb=(a,b,c)=>{if(b===c)return a;if(void 0===c.ae)return null;a=sb(a,b,c.ae);return null===a?null:c.Xe(a)},yb={},zb={},Ab=(a,b)=>{if(void 0===b)throw new L("ptr should not be undefined");for(;a.ae;)b=a.se(b),a=a.ae;return zb[b]},Cb=(a,b)=>{if(!b.Yd||!b.Vd)throw new kb("makeClassHandle requires ptr and ptrType");if(!!b.ce!==!!b.Zd)throw new kb("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Bb(Object.create(a, +{Sd:{value:b,writable:!0}}))},Bb=a=>{if("undefined"===typeof FinalizationRegistry)return Bb=b=>b,a;qb=new FinalizationRegistry(b=>{b=b.Sd;--b.count.value;0===b.count.value&&(b.Zd?b.ce.he(b.Zd):b.Yd.Wd.he(b.Vd))});Bb=b=>{var c=b.Sd;c.Zd&&qb.register(b,{Sd:c},b);return b};rb=b=>{qb.unregister(b)};return Bb(a)},Db=[];function Eb(){} +var Fb=(a,b)=>Object.defineProperty(b,"name",{value:a}),Gb=(a,b,c)=>{if(void 0===a[b].$d){var e=a[b];a[b]=function(...f){if(!a[b].$d.hasOwnProperty(f.length))throw new L(`Function '${c}' called with an invalid number of arguments (${f.length}) - expects one of (${a[b].$d})!`);return a[b].$d[f.length].apply(this,f)};a[b].$d=[];a[b].$d[e.ie]=e}},Hb=(a,b,c)=>{if(r.hasOwnProperty(a)){if(void 0===c||void 0!==r[a].$d&&void 0!==r[a].$d[c])throw new L(`Cannot register public name '${a}' twice`);Gb(r,a,a); +if(r[a].$d.hasOwnProperty(c))throw new L(`Cannot register multiple overloads of a function with the same number of arguments (${c})!`);r[a].$d[c]=b}else r[a]=b,r[a].ie=c},Ib=a=>{a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?`_${a}`:a};function Jb(a,b,c,e,f,k,n,l){this.name=a;this.constructor=b;this.me=c;this.he=e;this.ae=f;this.$e=k;this.se=n;this.Xe=l;this.hf=[]} +var Kb=(a,b,c)=>{for(;b!==c;){if(!b.se)throw new L(`Expected null or instance of ${c.name}, got an instance of ${b.name}`);a=b.se(a);b=b.ae}return a};function Lb(a,b){if(null===b){if(this.Ee)throw new L(`null is not a valid ${this.name}`);return 0}if(!b.Sd)throw new L(`Cannot pass "${Mb(b)}" as a ${this.name}`);if(!b.Sd.Vd)throw new L(`Cannot pass deleted object as a pointer of type ${this.name}`);return Kb(b.Sd.Vd,b.Sd.Yd.Wd,this.Wd)} +function Nb(a,b){if(null===b){if(this.Ee)throw new L(`null is not a valid ${this.name}`);if(this.xe){var c=this.Fe();null!==a&&a.push(this.he,c);return c}return 0}if(!b||!b.Sd)throw new L(`Cannot pass "${Mb(b)}" as a ${this.name}`);if(!b.Sd.Vd)throw new L(`Cannot pass deleted object as a pointer of type ${this.name}`);if(!this.we&&b.Sd.Yd.we)throw new L(`Cannot convert argument of type ${b.Sd.ce?b.Sd.ce.name:b.Sd.Yd.name} to parameter type ${this.name}`);c=Kb(b.Sd.Vd,b.Sd.Yd.Wd,this.Wd);if(this.xe){if(void 0=== +b.Sd.Zd)throw new L("Passing raw pointer to smart pointer is illegal");switch(this.nf){case 0:if(b.Sd.ce===this)c=b.Sd.Zd;else throw new L(`Cannot convert argument of type ${b.Sd.ce?b.Sd.ce.name:b.Sd.Yd.name} to parameter type ${this.name}`);break;case 1:c=b.Sd.Zd;break;case 2:if(b.Sd.ce===this)c=b.Sd.Zd;else{var e=b.clone();c=this.jf(c,Ob(()=>e["delete"]()));null!==a&&a.push(this.he,c)}break;default:throw new L("Unsupporting sharing policy");}}return c} +function Pb(a,b){if(null===b){if(this.Ee)throw new L(`null is not a valid ${this.name}`);return 0}if(!b.Sd)throw new L(`Cannot pass "${Mb(b)}" as a ${this.name}`);if(!b.Sd.Vd)throw new L(`Cannot pass deleted object as a pointer of type ${this.name}`);if(b.Sd.Yd.we)throw new L(`Cannot convert argument of type ${b.Sd.Yd.name} to parameter type ${this.name}`);return Kb(b.Sd.Vd,b.Sd.Yd.Wd,this.Wd)} +function Qb(a,b,c,e,f,k,n,l,q,v,w){this.name=a;this.Wd=b;this.Ee=c;this.we=e;this.xe=f;this.gf=k;this.nf=n;this.Me=l;this.Fe=q;this.jf=v;this.he=w;f||void 0!==b.ae?this.toWireType=Nb:(this.toWireType=e?Lb:Pb,this.ee=null)} +var Rb=(a,b,c)=>{if(!r.hasOwnProperty(a))throw new kb("Replacing nonexistent public symbol");void 0!==r[a].$d&&void 0!==c?r[a].$d[c]=b:(r[a]=b,r[a].ie=c)},N,Sb=(a,b,c=[])=>{a.includes("j")?(a=a.replace(/p/g,"i"),b=(0,r["dynCall_"+a])(b,...c)):b=N.get(b)(...c);return b},Tb=(a,b)=>(...c)=>Sb(a,b,c),Q=(a,b)=>{a=K(a);var c=a.includes("j")?Tb(a,b):N.get(b);if("function"!=typeof c)throw new L(`unknown function pointer with signature ${a}: ${b}`);return c},ac,dc=a=>{a=bc(a);var b=K(a);cc(a);return b},ec= +(a,b)=>{function c(k){f[k]||ib[k]||(jb[k]?jb[k].forEach(c):(e.push(k),f[k]=!0))}var e=[],f={};b.forEach(c);throw new ac(`${a}: `+e.map(dc).join([", "]));};function fc(a){for(var b=1;bk)throw new L("argTypes array size mismatch! Must at least get return value and 'this' types!");var n=null!==b[1]&&null!==c,l=fc(b),q="void"!==b[0].name,v=k-2,w=Array(v),A=[],D=[];return Fb(a,function(...I){D.length=0;A.length=n?2:1;A[0]=f;if(n){var P=b[1].toWireType(D,this);A[1]=P}for(var O=0;O{for(var c=[],e=0;e>2]);return c},ic=a=>{a=a.trim();const b=a.indexOf("(");return-1!==b?a.substr(0,b):a},jc=[],kc=[],lc=a=>{9{if(!a)throw new L("Cannot use deleted val. handle = "+a);return kc[a]},Ob=a=>{switch(a){case void 0:return 2;case null:return 4;case !0:return 6;case !1:return 8;default:const b=jc.pop()||kc.length;kc[b]=a;kc[b+1]=1;return b}},nc={name:"emscripten::val",fromWireType:a=>{var b=mc(a);lc(a); +return b},toWireType:(a,b)=>Ob(b),de:8,readValueFromPointer:gb,ee:null},oc=(a,b,c)=>{switch(b){case 1:return c?function(e){return this.fromWireType(Ca[e])}:function(e){return this.fromWireType(B[e])};case 2:return c?function(e){return this.fromWireType(Da[e>>1])}:function(e){return this.fromWireType(Fa[e>>1])};case 4:return c?function(e){return this.fromWireType(E[e>>2])}:function(e){return this.fromWireType(H[e>>2])};default:throw new TypeError(`invalid integer width (${b}): ${a}`);}},pc=(a,b)=> +{var c=ib[a];if(void 0===c)throw a=`${b} has unknown type ${dc(a)}`,new L(a);return c},Mb=a=>{if(null===a)return"null";var b=typeof a;return"object"===b||"array"===b||"function"===b?a.toString():""+a},qc=(a,b)=>{switch(b){case 4:return function(c){return this.fromWireType(J[c>>2])};case 8:return function(c){return this.fromWireType(Ga[c>>3])};default:throw new TypeError(`invalid float width (${b}): ${a}`);}},rc=(a,b,c)=>{switch(b){case 1:return c?e=>Ca[e]:e=>B[e];case 2:return c?e=>Da[e>>1]:e=>Fa[e>> +1];case 4:return c?e=>E[e>>2]:e=>H[e>>2];default:throw new TypeError(`invalid integer width (${b}): ${a}`);}},ra=(a,b,c)=>{var e=B;if(!(0=n){var l=a.charCodeAt(++k);n=65536+((n&1023)<<10)|l&1023}if(127>=n){if(b>=c)break;e[b++]=n}else{if(2047>=n){if(b+1>=c)break;e[b++]=192|n>>6}else{if(65535>=n){if(b+2>=c)break;e[b++]=224|n>>12}else{if(b+3>=c)break;e[b++]=240|n>>18;e[b++]=128|n>>12&63}e[b++]=128|n>>6& +63}e[b++]=128|n&63}}e[b]=0;return b-f},qa=a=>{for(var b=0,c=0;c=e?b++:2047>=e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}return b},sc="undefined"!=typeof TextDecoder?new TextDecoder("utf-16le"):void 0,tc=(a,b)=>{var c=a>>1;for(var e=c+b/2;!(c>=e)&&Fa[c];)++c;c<<=1;if(32=b/2);++e){var f=Da[a+2*e>>1];if(0==f)break;c+=String.fromCharCode(f)}return c},uc=(a,b,c)=>{c??=2147483647;if(2>c)return 0;c-=2;var e= +b;c=c<2*a.length?c/2:a.length;for(var f=0;f>1]=a.charCodeAt(f),b+=2;Da[b>>1]=0;return b-e},vc=a=>2*a.length,wc=(a,b)=>{for(var c=0,e="";!(c>=b/4);){var f=E[a+4*c>>2];if(0==f)break;++c;65536<=f?(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023)):e+=String.fromCharCode(f)}return e},xc=(a,b,c)=>{c??=2147483647;if(4>c)return 0;var e=b;c=e+c-4;for(var f=0;f=k){var n=a.charCodeAt(++f);k=65536+((k&1023)<<10)|n&1023}E[b>>2]=k;b+= +4;if(b+4>c)break}E[b>>2]=0;return b-e},yc=a=>{for(var b=0,c=0;c=e&&++c;b+=4}return b},zc=(a,b,c)=>{var e=[];a=a.toWireType(e,c);e.length&&(H[b>>2]=Ob(e));return a},Ac=[],Bc={},Cc=a=>{var b=Bc[a];return void 0===b?K(a):b},Dc=()=>{function a(b){b.$$$embind_global$$$=b;var c="object"==typeof $$$embind_global$$$&&b.$$$embind_global$$$==b;c||delete b.$$$embind_global$$$;return c}if("object"==typeof globalThis)return globalThis;if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$; +"object"==typeof global&&a(global)?$$$embind_global$$$=global:"object"==typeof self&&a(self)&&($$$embind_global$$$=self);if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object.");},Ec=a=>{var b=Ac.length;Ac.push(a);return b},Fc=(a,b)=>{for(var c=Array(a),e=0;e>2],"parameter "+e);return c},Gc=Reflect.construct,R,Hc=a=>{var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=(c,e)=>b.vertexAttribDivisorANGLE(c, +e),a.drawArraysInstanced=(c,e,f,k)=>b.drawArraysInstancedANGLE(c,e,f,k),a.drawElementsInstanced=(c,e,f,k,n)=>b.drawElementsInstancedANGLE(c,e,f,k,n))},Ic=a=>{var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=()=>b.createVertexArrayOES(),a.deleteVertexArray=c=>b.deleteVertexArrayOES(c),a.bindVertexArray=c=>b.bindVertexArrayOES(c),a.isVertexArray=c=>b.isVertexArrayOES(c))},Jc=a=>{var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=(c,e)=>b.drawBuffersWEBGL(c,e))},Kc=a=> +{var b="ANGLE_instanced_arrays EXT_blend_minmax EXT_disjoint_timer_query EXT_frag_depth EXT_shader_texture_lod EXT_sRGB OES_element_index_uint OES_fbo_render_mipmap OES_standard_derivatives OES_texture_float OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_depth_texture WEBGL_draw_buffers EXT_color_buffer_float EXT_conservative_depth EXT_disjoint_timer_query_webgl2 EXT_texture_norm16 NV_shader_noperspective_interpolation WEBGL_clip_cull_distance EXT_clip_control EXT_color_buffer_half_float EXT_depth_clamp EXT_float_blend EXT_polygon_offset_clamp EXT_texture_compression_bptc EXT_texture_compression_rgtc EXT_texture_filter_anisotropic KHR_parallel_shader_compile OES_texture_float_linear WEBGL_blend_func_extended WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_etc1 WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context WEBGL_multi_draw WEBGL_polygon_mode".split(" "); +return(a.getSupportedExtensions()||[]).filter(c=>b.includes(c))},Lc=1,Mc=[],Nc=[],Oc=[],Pc=[],ka=[],Qc=[],Rc=[],pa=[],Sc=[],Tc=[],Uc=[],Wc={},Xc={},Yc=4,Zc=0,ja=a=>{for(var b=Lc++,c=a.length;c{for(var f=0;f>2]=n}},na=(a,b)=>{a.He||(a.He=a.getContext,a.getContext=function(e,f){f=a.He(e,f);return"webgl"==e==f instanceof WebGLRenderingContext?f:null});var c=1{var c=ja(pa),e={handle:c,attributes:b,version:b.majorVersion,fe:a};a.canvas&&(a.canvas.Pe=e);pa[c]=e;("undefined"==typeof b.Ye||b.Ye)&&bd(e);return c},oa=a=>{z=pa[a];r.pf=R=z?.fe;return!(a&&!R)},bd=a=>{a||=z;if(!a.ff){a.ff=!0;var b=a.fe;b.tf=b.getExtension("WEBGL_multi_draw");b.rf=b.getExtension("EXT_polygon_offset_clamp");b.qf=b.getExtension("EXT_clip_control");b.vf=b.getExtension("WEBGL_polygon_mode");Hc(b);Ic(b);Jc(b);b.Je=b.getExtension("WEBGL_draw_instanced_base_vertex_base_instance"); +b.Le=b.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance");2<=a.version&&(b.ge=b.getExtension("EXT_disjoint_timer_query_webgl2"));if(2>a.version||!b.ge)b.ge=b.getExtension("EXT_disjoint_timer_query");Kc(b).forEach(c=>{c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}},z,U,cd=(a,b)=>{R.bindFramebuffer(a,Oc[b])},dd=a=>{R.bindVertexArray(Rc[a])},ed=a=>R.clear(a),fd=(a,b,c,e)=>R.clearColor(a,b,c,e),gd=a=>R.clearStencil(a),hd=(a,b)=>{for(var c=0;c>2];R.deleteVertexArray(Rc[e]);Rc[e]=null}},jd=[],kd=(a,b)=>{$c(a,b,"createVertexArray",Rc)};function ld(){var a=Kc(R);return a=a.concat(a.map(b=>"GL_"+b))} +var md=(a,b,c)=>{if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&(U||=1280);return;case 34814:case 36345:e=0;break;case 34466:var f=R.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>z.version){U||=1282;return}e=ld().length;break;case 33307:case 33308:if(2>z.version){U||=1280;return}e=33307==a?3:0}if(void 0===e)switch(f=R.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":U||=1280;return;case "object":if(null===f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e= +0;break;default:U||=1280;return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:J[b+4*a>>2]=f[a];break;case 4:Ca[b+a]=f[a]?1:0}return}try{e=f.name|0}catch(k){U||=1280;ya(`GL_INVALID_ENUM in glGet${c}v: Unknown object returned from WebGL getParameter(${a})! (error: ${k})`);return}}break;default:U||=1280;ya(`GL_INVALID_ENUM in glGet${c}v: Native code calling glGet${c}v(${a}) and it returns ${f} of type ${typeof f}!`); +return}switch(c){case 1:c=e;H[b>>2]=c;H[b+4>>2]=(c-H[b>>2])/4294967296;break;case 0:E[b>>2]=e;break;case 2:J[b>>2]=e;break;case 4:Ca[b]=e?1:0}}else U||=1281},nd=(a,b)=>md(a,b,0),od=(a,b,c)=>{if(c){a=Sc[a];b=2>z.version?R.ge.getQueryObjectEXT(a,b):R.getQueryParameter(a,b);var e;"boolean"==typeof b?e=b?1:0:e=b;H[c>>2]=e;H[c+4>>2]=(e-H[c>>2])/4294967296}else U||=1281},qd=a=>{var b=qa(a)+1,c=pd(b);c&&ra(a,c,b);return c},rd=a=>{var b=Wc[a];if(!b){switch(a){case 7939:b=qd(ld().join(" "));break;case 7936:case 7937:case 37445:case 37446:(b= +R.getParameter(a))||(U||=1280);b=b?qd(b):0;break;case 7938:b=R.getParameter(7938);var c=`OpenGL ES 2.0 (${b})`;2<=z.version&&(c=`OpenGL ES 3.0 (${b})`);b=qd(c);break;case 35724:b=R.getParameter(35724);c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!==c&&(3==c[1].length&&(c[1]+="0"),b=`OpenGL ES GLSL ES ${c[1]} (${b})`);b=qd(b);break;default:U||=1280}Wc[a]=b}return b},sd=(a,b)=>{if(2>z.version)return U||=1282,0;var c=Xc[a];if(c)return 0>b||b>=c.length?(U||=1281,0):c[b];switch(a){case 7939:return c= +ld().map(qd),c=Xc[a]=c,0>b||b>=c.length?(U||=1281,0):c[b];default:return U||=1280,0}},td=a=>"]"==a.slice(-1)&&a.lastIndexOf("["),ud=a=>{a-=5120;return 0==a?Ca:1==a?B:2==a?Da:4==a?E:6==a?J:5==a||28922==a||28520==a||30779==a||30782==a?H:Fa},vd=(a,b,c,e,f)=>{a=ud(a);b=e*((Zc||c)*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*a.BYTES_PER_ELEMENT+Yc-1&-Yc);return a.subarray(f>>>31-Math.clz32(a.BYTES_PER_ELEMENT),f+b>>>31-Math.clz32(a.BYTES_PER_ELEMENT))},Y=a=>{var b=R.We;if(b){var c= +b.re[a];"number"==typeof c&&(b.re[a]=c=R.getUniformLocation(b,b.Ne[a]+(0{if(!zd){var a={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:("object"==typeof navigator&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",_:"./this.program"},b;for(b in yd)void 0===yd[b]?delete a[b]:a[b]=yd[b];var c=[];for(b in a)c.push(`${b}=${a[b]}`);zd=c}return zd},zd,Bd=[null,[],[]]; +kb=r.InternalError=class extends Error{constructor(a){super(a);this.name="InternalError"}};for(var Cd=Array(256),Dd=0;256>Dd;++Dd)Cd[Dd]=String.fromCharCode(Dd);nb=Cd;L=r.BindingError=class extends Error{constructor(a){super(a);this.name="BindingError"}}; +Object.assign(Eb.prototype,{isAliasOf:function(a){if(!(this instanceof Eb&&a instanceof Eb))return!1;var b=this.Sd.Yd.Wd,c=this.Sd.Vd;a.Sd=a.Sd;var e=a.Sd.Yd.Wd;for(a=a.Sd.Vd;b.ae;)c=b.se(c),b=b.ae;for(;e.ae;)a=e.se(a),e=e.ae;return b===e&&c===a},clone:function(){this.Sd.Vd||pb(this);if(this.Sd.qe)return this.Sd.count.value+=1,this;var a=Bb,b=Object,c=b.create,e=Object.getPrototypeOf(this),f=this.Sd;a=a(c.call(b,e,{Sd:{value:{count:f.count,pe:f.pe,qe:f.qe,Vd:f.Vd,Yd:f.Yd,Zd:f.Zd,ce:f.ce}}}));a.Sd.count.value+= +1;a.Sd.pe=!1;return a},["delete"](){this.Sd.Vd||pb(this);if(this.Sd.pe&&!this.Sd.qe)throw new L("Object already scheduled for deletion");rb(this);var a=this.Sd;--a.count.value;0===a.count.value&&(a.Zd?a.ce.he(a.Zd):a.Yd.Wd.he(a.Vd));this.Sd.qe||(this.Sd.Zd=void 0,this.Sd.Vd=void 0)},isDeleted:function(){return!this.Sd.Vd},deleteLater:function(){this.Sd.Vd||pb(this);if(this.Sd.pe&&!this.Sd.qe)throw new L("Object already scheduled for deletion");Db.push(this);this.Sd.pe=!0;return this}}); +Object.assign(Qb.prototype,{af(a){this.Me&&(a=this.Me(a));return a},Ie(a){this.he?.(a)},de:8,readValueFromPointer:gb,fromWireType:function(a){function b(){return this.xe?Cb(this.Wd.me,{Yd:this.gf,Vd:c,ce:this,Zd:a}):Cb(this.Wd.me,{Yd:this,Vd:a})}var c=this.af(a);if(!c)return this.Ie(a),null;var e=Ab(this.Wd,c);if(void 0!==e){if(0===e.Sd.count.value)return e.Sd.Vd=c,e.Sd.Zd=a,e.clone();e=e.clone();this.Ie(a);return e}e=this.Wd.$e(c);e=yb[e];if(!e)return b.call(this);e=this.we?e.Ve:e.pointerType;var f= +sb(c,this.Wd,e.Wd);return null===f?b.call(this):this.xe?Cb(e.Wd.me,{Yd:e,Vd:f,ce:this,Zd:a}):Cb(e.Wd.me,{Yd:e,Vd:f})}});ac=r.UnboundTypeError=((a,b)=>{var c=Fb(b,function(e){this.name=b;this.message=e;e=Error(e).stack;void 0!==e&&(this.stack=this.toString()+"\n"+e.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(a.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:`${this.name}: ${this.message}`};return c})(Error,"UnboundTypeError"); +kc.push(0,1,void 0,1,null,1,!0,1,!1,1);r.count_emval_handles=()=>kc.length/2-5-jc.length;for(var Ed=0;32>Ed;++Ed)jd.push(Array(Ed));var Fd=new Float32Array(288);for(Ed=0;288>=Ed;++Ed)wd[Ed]=Fd.subarray(0,Ed);var Gd=new Int32Array(288);for(Ed=0;288>=Ed;++Ed)xd[Ed]=Gd.subarray(0,Ed); +var Vd={F:(a,b,c)=>{var e=new Ya(a);H[e.Vd+16>>2]=0;H[e.Vd+4>>2]=b;H[e.Vd+8>>2]=c;Za=a;bb++;throw Za;},U:function(){return 0},ud:()=>{},td:function(){return 0},sd:()=>{},rd:function(){},qd:()=>{},md:()=>{Pa("")},B:a=>{var b=eb[a];delete eb[a];var c=b.Fe,e=b.he,f=b.Ke,k=f.map(n=>n.df).concat(f.map(n=>n.lf));mb([a],k,n=>{var l={};f.forEach((q,v)=>{var w=n[v],A=q.bf,D=q.cf,I=n[v+f.length],P=q.kf,O=q.mf;l[q.Ze]={read:aa=>w.fromWireType(A(D,aa)),write:(aa,la)=>{var X=[];P(O,aa,I.toWireType(X,la));fb(X)}}}); +return[{name:b.name,fromWireType:q=>{var v={},w;for(w in l)v[w]=l[w].read(q);e(q);return v},toWireType:(q,v)=>{for(var w in l)if(!(w in v))throw new TypeError(`Missing field: "${w}"`);var A=c();for(w in l)l[w].write(A,v[w]);null!==q&&q.push(e,A);return A},de:8,readValueFromPointer:gb,ee:e}]})},X:()=>{},ld:(a,b,c,e)=>{b=K(b);lb(a,{name:b,fromWireType:function(f){return!!f},toWireType:function(f,k){return k?c:e},de:8,readValueFromPointer:function(f){return this.fromWireType(B[f])},ee:null})},k:(a,b, +c,e,f,k,n,l,q,v,w,A,D)=>{w=K(w);k=Q(f,k);l&&=Q(n,l);v&&=Q(q,v);D=Q(A,D);var I=Ib(w);Hb(I,function(){ec(`Cannot construct ${w} due to unbound types`,[e])});mb([a,b,c],e?[e]:[],P=>{P=P[0];if(e){var O=P.Wd;var aa=O.me}else aa=Eb.prototype;P=Fb(w,function(...Ea){if(Object.getPrototypeOf(this)!==la)throw new L("Use 'new' to construct "+w);if(void 0===X.je)throw new L(w+" has no accessible constructor");var ea=X.je[Ea.length];if(void 0===ea)throw new L(`Tried to invoke ctor of ${w} with invalid number of parameters (${Ea.length}) - expected (${Object.keys(X.je).toString()}) parameters instead!`); +return ea.apply(this,Ea)});var la=Object.create(aa,{constructor:{value:P}});P.prototype=la;var X=new Jb(w,P,la,D,O,k,l,v);if(X.ae){var ha;(ha=X.ae).te??(ha.te=[]);X.ae.te.push(X)}O=new Qb(w,X,!0,!1,!1);ha=new Qb(w+"*",X,!1,!1,!1);aa=new Qb(w+" const*",X,!1,!0,!1);yb[a]={pointerType:ha,Ve:aa};Rb(I,P);return[O,ha,aa]})},e:(a,b,c,e,f,k,n)=>{var l=hc(c,e);b=K(b);b=ic(b);k=Q(f,k);mb([],[a],q=>{function v(){ec(`Cannot call ${w} due to unbound types`,l)}q=q[0];var w=`${q.name}.${b}`;b.startsWith("@@")&& +(b=Symbol[b.substring(2)]);var A=q.Wd.constructor;void 0===A[b]?(v.ie=c-1,A[b]=v):(Gb(A,b,w),A[b].$d[c-1]=v);mb([],l,D=>{D=[D[0],null].concat(D.slice(1));D=gc(w,D,null,k,n);void 0===A[b].$d?(D.ie=c-1,A[b]=D):A[b].$d[c-1]=D;if(q.Wd.te)for(const I of q.Wd.te)I.constructor.hasOwnProperty(b)||(I.constructor[b]=D);return[]});return[]})},z:(a,b,c,e,f,k)=>{var n=hc(b,c);f=Q(e,f);mb([],[a],l=>{l=l[0];var q=`constructor ${l.name}`;void 0===l.Wd.je&&(l.Wd.je=[]);if(void 0!==l.Wd.je[b-1])throw new L(`Cannot register multiple constructors with identical number of parameters (${b- +1}) for class '${l.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);l.Wd.je[b-1]=()=>{ec(`Cannot construct ${l.name} due to unbound types`,n)};mb([],n,v=>{v.splice(1,0,null);l.Wd.je[b-1]=gc(q,v,null,f,k);return[]});return[]})},a:(a,b,c,e,f,k,n,l)=>{var q=hc(c,e);b=K(b);b=ic(b);k=Q(f,k);mb([],[a],v=>{function w(){ec(`Cannot call ${A} due to unbound types`,q)}v=v[0];var A=`${v.name}.${b}`;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);l&&v.Wd.hf.push(b); +var D=v.Wd.me,I=D[b];void 0===I||void 0===I.$d&&I.className!==v.name&&I.ie===c-2?(w.ie=c-2,w.className=v.name,D[b]=w):(Gb(D,b,A),D[b].$d[c-2]=w);mb([],q,P=>{P=gc(A,P,v,k,n);void 0===D[b].$d?(P.ie=c-2,D[b]=P):D[b].$d[c-2]=P;return[]});return[]})},q:(a,b,c)=>{a=K(a);mb([],[b],e=>{e=e[0];r[a]=e.fromWireType(c);return[]})},kd:a=>lb(a,nc),j:(a,b,c,e)=>{function f(){}b=K(b);f.values={};lb(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:(k,n)=>n.value,de:8, +readValueFromPointer:oc(b,c,e),ee:null});Hb(b,f)},b:(a,b,c)=>{var e=pc(a,"enum");b=K(b);a=e.constructor;e=Object.create(e.constructor.prototype,{value:{value:c},constructor:{value:Fb(`${e.name}_${b}`,function(){})}});a.values[c]=e;a[b]=e},R:(a,b,c)=>{b=K(b);lb(a,{name:b,fromWireType:e=>e,toWireType:(e,f)=>f,de:8,readValueFromPointer:qc(b,c),ee:null})},x:(a,b,c,e,f,k)=>{var n=hc(b,c);a=K(a);a=ic(a);f=Q(e,f);Hb(a,function(){ec(`Cannot call ${a} due to unbound types`,n)},b-1);mb([],n,l=>{l=[l[0],null].concat(l.slice(1)); +Rb(a,gc(a,l,null,f,k),b-1);return[]})},C:(a,b,c,e,f)=>{b=K(b);-1===f&&(f=4294967295);f=l=>l;if(0===e){var k=32-8*c;f=l=>l<>>k}var n=b.includes("unsigned")?function(l,q){return q>>>0}:function(l,q){return q};lb(a,{name:b,fromWireType:f,toWireType:n,de:8,readValueFromPointer:rc(b,c,0!==e),ee:null})},p:(a,b,c)=>{function e(k){return new f(Ca.buffer,H[k+4>>2],H[k>>2])}var f=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b];c=K(c);lb(a,{name:c,fromWireType:e, +de:8,readValueFromPointer:e},{ef:!0})},o:(a,b,c,e,f,k,n,l,q,v,w,A)=>{c=K(c);k=Q(f,k);l=Q(n,l);v=Q(q,v);A=Q(w,A);mb([a],[b],D=>{D=D[0];return[new Qb(c,D.Wd,!1,!1,!0,D,e,k,l,v,A)]})},Q:(a,b)=>{b=K(b);var c="std::string"===b;lb(a,{name:b,fromWireType:function(e){var f=H[e>>2],k=e+4;if(c)for(var n=k,l=0;l<=f;++l){var q=k+l;if(l==f||0==B[q]){n=n?db(B,n,q-n):"";if(void 0===v)var v=n;else v+=String.fromCharCode(0),v+=n;n=q+1}}else{v=Array(f);for(l=0;l>2]=n;if(c&&k)ra(f,q,n+1);else if(k)for(k=0;k{c=K(c);if(2===b){var e=tc;var f=uc;var k=vc;var n=l=>Fa[l>>1]}else 4===b&&(e=wc,f=xc,k=yc,n=l=>H[l>>2]);lb(a,{name:c,fromWireType:l=>{for(var q=H[l>>2],v,w=l+4,A=0;A<=q;++A){var D=l+4+A*b;if(A==q||0==n(D))w=e(w,D-w),void 0===v?v=w:(v+=String.fromCharCode(0),v+=w),w=D+b}cc(l);return v},toWireType:(l,q)=>{if("string"!=typeof q)throw new L(`Cannot pass non-string to C++ string type ${c}`);var v=k(q),w=pd(4+v+b); +H[w>>2]=v/b;f(q,w+4,v+b);null!==l&&l.push(cc,w);return w},de:8,readValueFromPointer:gb,ee(l){cc(l)}})},A:(a,b,c,e,f,k)=>{eb[a]={name:K(b),Fe:Q(c,e),he:Q(f,k),Ke:[]}},d:(a,b,c,e,f,k,n,l,q,v)=>{eb[a].Ke.push({Ze:K(b),df:c,bf:Q(e,f),cf:k,lf:n,kf:Q(l,q),mf:v})},jd:(a,b)=>{b=K(b);lb(a,{sf:!0,name:b,de:0,fromWireType:()=>{},toWireType:()=>{}})},id:()=>1,hd:()=>{throw Infinity;},E:(a,b,c)=>{a=mc(a);b=pc(b,"emval::as");return zc(b,c,a)},L:(a,b,c,e)=>{a=Ac[a];b=mc(b);return a(null,b,c,e)},t:(a,b,c,e,f)=>{a= +Ac[a];b=mc(b);c=Cc(c);return a(b,b[c],e,f)},c:lc,K:a=>{if(0===a)return Ob(Dc());a=Cc(a);return Ob(Dc()[a])},n:(a,b,c)=>{var e=Fc(a,b),f=e.shift();a--;var k=Array(a);b=`methodCaller<(${e.map(n=>n.name).join(", ")}) => ${f.name}>`;return Ec(Fb(b,(n,l,q,v)=>{for(var w=0,A=0;A{a=mc(a);b=mc(b);return Ob(a[b])},H:a=>{9Ob([]),f:a=>Ob(Cc(a)),D:()=>Ob({}),gd:a=>{a=mc(a); +return!a},l:a=>{var b=mc(a);fb(b);lc(a)},h:(a,b,c)=>{a=mc(a);b=mc(b);c=mc(c);a[b]=c},g:(a,b)=>{a=pc(a,"_emval_take_value");a=a.readValueFromPointer(b);return Ob(a)},W:function(){return-52},V:function(){},fd:(a,b,c,e)=>{var f=(new Date).getFullYear(),k=(new Date(f,0,1)).getTimezoneOffset();f=(new Date(f,6,1)).getTimezoneOffset();H[a>>2]=60*Math.max(k,f);E[b>>2]=Number(k!=f);b=n=>{var l=Math.abs(n);return`UTC${0<=n?"-":"+"}${String(Math.floor(l/60)).padStart(2,"0")}${String(l%60).padStart(2,"0")}`}; +a=b(k);b=b(f);fperformance.now(),dd:a=>R.activeTexture(a),cd:(a,b)=>{R.attachShader(Nc[a],Qc[b])},bd:(a,b)=>{R.beginQuery(a,Sc[b])},ad:(a,b)=>{R.ge.beginQueryEXT(a,Sc[b])},$c:(a,b,c)=>{R.bindAttribLocation(Nc[a],b,c?db(B,c):"")},_c:(a,b)=>{35051==a?R.Ce=b:35052==a&&(R.le=b);R.bindBuffer(a,Mc[b])},Zc:cd,Yc:(a,b)=>{R.bindRenderbuffer(a,Pc[b])},Xc:(a,b)=>{R.bindSampler(a,Tc[b])},Wc:(a,b)=>{R.bindTexture(a,ka[b])},Vc:dd,Uc:dd,Tc:(a,b,c,e)=>R.blendColor(a, +b,c,e),Sc:a=>R.blendEquation(a),Rc:(a,b)=>R.blendFunc(a,b),Qc:(a,b,c,e,f,k,n,l,q,v)=>R.blitFramebuffer(a,b,c,e,f,k,n,l,q,v),Pc:(a,b,c,e)=>{2<=z.version?c&&b?R.bufferData(a,B,e,c,b):R.bufferData(a,b,e):R.bufferData(a,c?B.subarray(c,c+b):b,e)},Oc:(a,b,c,e)=>{2<=z.version?c&&R.bufferSubData(a,b,B,e,c):R.bufferSubData(a,b,B.subarray(e,e+c))},Nc:a=>R.checkFramebufferStatus(a),Mc:ed,Lc:fd,Kc:gd,Jc:(a,b,c,e)=>R.clientWaitSync(Uc[a],b,(c>>>0)+4294967296*e),Ic:(a,b,c,e)=>{R.colorMask(!!a,!!b,!!c,!!e)},Hc:a=> +{R.compileShader(Qc[a])},Gc:(a,b,c,e,f,k,n,l)=>{2<=z.version?R.le||!n?R.compressedTexImage2D(a,b,c,e,f,k,n,l):R.compressedTexImage2D(a,b,c,e,f,k,B,l,n):R.compressedTexImage2D(a,b,c,e,f,k,B.subarray(l,l+n))},Fc:(a,b,c,e,f,k,n,l,q)=>{2<=z.version?R.le||!l?R.compressedTexSubImage2D(a,b,c,e,f,k,n,l,q):R.compressedTexSubImage2D(a,b,c,e,f,k,n,B,q,l):R.compressedTexSubImage2D(a,b,c,e,f,k,n,B.subarray(q,q+l))},Ec:(a,b,c,e,f)=>R.copyBufferSubData(a,b,c,e,f),Dc:(a,b,c,e,f,k,n,l)=>R.copyTexSubImage2D(a,b,c, +e,f,k,n,l),Cc:()=>{var a=ja(Nc),b=R.createProgram();b.name=a;b.Ae=b.ye=b.ze=0;b.Ge=1;Nc[a]=b;return a},Bc:a=>{var b=ja(Qc);Qc[b]=R.createShader(a);return b},Ac:a=>R.cullFace(a),zc:(a,b)=>{for(var c=0;c>2],f=Mc[e];f&&(R.deleteBuffer(f),f.name=0,Mc[e]=null,e==R.Ce&&(R.Ce=0),e==R.le&&(R.le=0))}},yc:(a,b)=>{for(var c=0;c>2],f=Oc[e];f&&(R.deleteFramebuffer(f),f.name=0,Oc[e]=null)}},xc:a=>{if(a){var b=Nc[a];b?(R.deleteProgram(b),b.name=0,Nc[a]=null):U||=1281}}, +wc:(a,b)=>{for(var c=0;c>2],f=Sc[e];f&&(R.deleteQuery(f),Sc[e]=null)}},vc:(a,b)=>{for(var c=0;c>2],f=Sc[e];f&&(R.ge.deleteQueryEXT(f),Sc[e]=null)}},uc:(a,b)=>{for(var c=0;c>2],f=Pc[e];f&&(R.deleteRenderbuffer(f),f.name=0,Pc[e]=null)}},tc:(a,b)=>{for(var c=0;c>2],f=Tc[e];f&&(R.deleteSampler(f),f.name=0,Tc[e]=null)}},sc:a=>{if(a){var b=Qc[a];b?(R.deleteShader(b),Qc[a]=null):U||=1281}},rc:a=>{if(a){var b=Uc[a];b? +(R.deleteSync(b),b.name=0,Uc[a]=null):U||=1281}},qc:(a,b)=>{for(var c=0;c>2],f=ka[e];f&&(R.deleteTexture(f),f.name=0,ka[e]=null)}},pc:hd,oc:hd,nc:a=>{R.depthMask(!!a)},mc:a=>R.disable(a),lc:a=>{R.disableVertexAttribArray(a)},kc:(a,b,c)=>{R.drawArrays(a,b,c)},jc:(a,b,c,e)=>{R.drawArraysInstanced(a,b,c,e)},ic:(a,b,c,e,f)=>{R.Je.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},hc:(a,b)=>{for(var c=jd[a],e=0;e>2];R.drawBuffers(c)},gc:(a,b,c,e)=>{R.drawElements(a, +b,c,e)},fc:(a,b,c,e,f)=>{R.drawElementsInstanced(a,b,c,e,f)},ec:(a,b,c,e,f,k,n)=>{R.Je.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,k,n)},dc:(a,b,c,e,f,k)=>{R.drawElements(a,e,f,k)},cc:a=>R.enable(a),bc:a=>{R.enableVertexAttribArray(a)},ac:a=>R.endQuery(a),$b:a=>{R.ge.endQueryEXT(a)},_b:(a,b)=>(a=R.fenceSync(a,b))?(b=ja(Uc),a.name=b,Uc[b]=a,b):0,Zb:()=>R.finish(),Yb:()=>R.flush(),Xb:(a,b,c,e)=>{R.framebufferRenderbuffer(a,b,c,Pc[e])},Wb:(a,b,c,e,f)=>{R.framebufferTexture2D(a,b,c,ka[e], +f)},Vb:a=>R.frontFace(a),Ub:(a,b)=>{$c(a,b,"createBuffer",Mc)},Tb:(a,b)=>{$c(a,b,"createFramebuffer",Oc)},Sb:(a,b)=>{$c(a,b,"createQuery",Sc)},Rb:(a,b)=>{for(var c=0;c>2]=0;break}var f=ja(Sc);e.name=f;Sc[f]=e;E[b+4*c>>2]=f}},Qb:(a,b)=>{$c(a,b,"createRenderbuffer",Pc)},Pb:(a,b)=>{$c(a,b,"createSampler",Tc)},Ob:(a,b)=>{$c(a,b,"createTexture",ka)},Nb:kd,Mb:kd,Lb:a=>R.generateMipmap(a),Kb:(a,b,c)=>{c?E[c>>2]=R.getBufferParameter(a, +b):U||=1281},Jb:()=>{var a=R.getError()||U;U=0;return a},Ib:(a,b)=>md(a,b,2),Hb:(a,b,c,e)=>{a=R.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;E[e>>2]=a},Gb:nd,Fb:(a,b,c,e)=>{a=R.getProgramInfoLog(Nc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Eb:(a,b,c)=>{if(c)if(a>=Lc)U||=1281;else if(a=Nc[a],35716==b)a=R.getProgramInfoLog(a),null===a&&(a="(unknown error)"),E[c>>2]=a.length+1;else if(35719==b){if(!a.Ae){var e= +R.getProgramParameter(a,35718);for(b=0;b>2]=a.Ae}else if(35722==b){if(!a.ye)for(e=R.getProgramParameter(a,35721),b=0;b>2]=a.ye}else if(35381==b){if(!a.ze)for(e=R.getProgramParameter(a,35382),b=0;b>2]=a.ze}else E[c>>2]=R.getProgramParameter(a,b);else U||=1281},Db:od,Cb:od,Bb:(a,b,c)=>{if(c){a= +R.getQueryParameter(Sc[a],b);var e;"boolean"==typeof a?e=a?1:0:e=a;E[c>>2]=e}else U||=1281},Ab:(a,b,c)=>{if(c){a=R.ge.getQueryObjectEXT(Sc[a],b);var e;"boolean"==typeof a?e=a?1:0:e=a;E[c>>2]=e}else U||=1281},zb:(a,b,c)=>{c?E[c>>2]=R.getQuery(a,b):U||=1281},yb:(a,b,c)=>{c?E[c>>2]=R.ge.getQueryEXT(a,b):U||=1281},xb:(a,b,c)=>{c?E[c>>2]=R.getRenderbufferParameter(a,b):U||=1281},wb:(a,b,c,e)=>{a=R.getShaderInfoLog(Qc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},vb:(a,b,c,e)=> +{a=R.getShaderPrecisionFormat(a,b);E[c>>2]=a.rangeMin;E[c+4>>2]=a.rangeMax;E[e>>2]=a.precision},ub:(a,b,c)=>{c?35716==b?(a=R.getShaderInfoLog(Qc[a]),null===a&&(a="(unknown error)"),E[c>>2]=a?a.length+1:0):35720==b?(a=R.getShaderSource(Qc[a]),E[c>>2]=a?a.length+1:0):E[c>>2]=R.getShaderParameter(Qc[a],b):U||=1281},tb:rd,sb:sd,rb:(a,b)=>{b=b?db(B,b):"";if(a=Nc[a]){var c=a,e=c.re,f=c.Oe,k;if(!e){c.re=e={};c.Ne={};var n=R.getProgramParameter(c,35718);for(k=0;k>>0,f=b.slice(0,k));if((f=a.Oe[f])&&e{for(var e=jd[b],f=0;f>2];R.invalidateFramebuffer(a,e)},pb:(a,b,c,e,f,k,n)=>{for(var l=jd[b],q=0;q>2];R.invalidateSubFramebuffer(a,l,e,f,k,n)},ob:a=>R.isSync(Uc[a]), +nb:a=>(a=ka[a])?R.isTexture(a):0,mb:a=>R.lineWidth(a),lb:a=>{a=Nc[a];R.linkProgram(a);a.re=0;a.Oe={}},kb:(a,b,c,e,f,k)=>{R.Le.multiDrawArraysInstancedBaseInstanceWEBGL(a,E,b>>2,E,c>>2,E,e>>2,H,f>>2,k)},jb:(a,b,c,e,f,k,n,l)=>{R.Le.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,E,b>>2,c,E,e>>2,E,f>>2,E,k>>2,H,n>>2,l)},ib:(a,b)=>{3317==a?Yc=b:3314==a&&(Zc=b);R.pixelStorei(a,b)},hb:(a,b)=>{R.ge.queryCounterEXT(Sc[a],b)},gb:a=>R.readBuffer(a),fb:(a,b,c,e,f,k,n)=>{if(2<=z.version)if(R.Ce)R.readPixels(a, +b,c,e,f,k,n);else{var l=ud(k);n>>>=31-Math.clz32(l.BYTES_PER_ELEMENT);R.readPixels(a,b,c,e,f,k,l,n)}else(l=vd(k,f,c,e,n))?R.readPixels(a,b,c,e,f,k,l):U||=1280},eb:(a,b,c,e)=>R.renderbufferStorage(a,b,c,e),db:(a,b,c,e,f)=>R.renderbufferStorageMultisample(a,b,c,e,f),cb:(a,b,c)=>{R.samplerParameterf(Tc[a],b,c)},bb:(a,b,c)=>{R.samplerParameteri(Tc[a],b,c)},ab:(a,b,c)=>{R.samplerParameteri(Tc[a],b,E[c>>2])},$a:(a,b,c,e)=>R.scissor(a,b,c,e),_a:(a,b,c,e)=>{for(var f="",k=0;k>2])? +db(B,n,e?H[e+4*k>>2]:void 0):"";f+=n}R.shaderSource(Qc[a],f)},Za:(a,b,c)=>R.stencilFunc(a,b,c),Ya:(a,b,c,e)=>R.stencilFuncSeparate(a,b,c,e),Xa:a=>R.stencilMask(a),Wa:(a,b)=>R.stencilMaskSeparate(a,b),Va:(a,b,c)=>R.stencilOp(a,b,c),Ua:(a,b,c,e)=>R.stencilOpSeparate(a,b,c,e),Ta:(a,b,c,e,f,k,n,l,q)=>{if(2<=z.version){if(R.le){R.texImage2D(a,b,c,e,f,k,n,l,q);return}if(q){var v=ud(l);q>>>=31-Math.clz32(v.BYTES_PER_ELEMENT);R.texImage2D(a,b,c,e,f,k,n,l,v,q);return}}v=q?vd(l,n,e,f,q):null;R.texImage2D(a, +b,c,e,f,k,n,l,v)},Sa:(a,b,c)=>R.texParameterf(a,b,c),Ra:(a,b,c)=>{R.texParameterf(a,b,J[c>>2])},Qa:(a,b,c)=>R.texParameteri(a,b,c),Pa:(a,b,c)=>{R.texParameteri(a,b,E[c>>2])},Oa:(a,b,c,e,f)=>R.texStorage2D(a,b,c,e,f),Na:(a,b,c,e,f,k,n,l,q)=>{if(2<=z.version){if(R.le){R.texSubImage2D(a,b,c,e,f,k,n,l,q);return}if(q){var v=ud(l);R.texSubImage2D(a,b,c,e,f,k,n,l,v,q>>>31-Math.clz32(v.BYTES_PER_ELEMENT));return}}q=q?vd(l,n,f,k,q):null;R.texSubImage2D(a,b,c,e,f,k,n,l,q)},Ma:(a,b)=>{R.uniform1f(Y(a),b)},La:(a, +b,c)=>{if(2<=z.version)b&&R.uniform1fv(Y(a),J,c>>2,b);else{if(288>=b)for(var e=wd[b],f=0;f>2];else e=J.subarray(c>>2,c+4*b>>2);R.uniform1fv(Y(a),e)}},Ka:(a,b)=>{R.uniform1i(Y(a),b)},Ja:(a,b,c)=>{if(2<=z.version)b&&R.uniform1iv(Y(a),E,c>>2,b);else{if(288>=b)for(var e=xd[b],f=0;f>2];else e=E.subarray(c>>2,c+4*b>>2);R.uniform1iv(Y(a),e)}},Ia:(a,b,c)=>{R.uniform2f(Y(a),b,c)},Ha:(a,b,c)=>{if(2<=z.version)b&&R.uniform2fv(Y(a),J,c>>2,2*b);else{if(144>=b){b*=2;for(var e= +wd[b],f=0;f>2],e[f+1]=J[c+(4*f+4)>>2]}else e=J.subarray(c>>2,c+8*b>>2);R.uniform2fv(Y(a),e)}},Ga:(a,b,c)=>{R.uniform2i(Y(a),b,c)},Fa:(a,b,c)=>{if(2<=z.version)b&&R.uniform2iv(Y(a),E,c>>2,2*b);else{if(144>=b){b*=2;for(var e=xd[b],f=0;f>2],e[f+1]=E[c+(4*f+4)>>2]}else e=E.subarray(c>>2,c+8*b>>2);R.uniform2iv(Y(a),e)}},Ea:(a,b,c,e)=>{R.uniform3f(Y(a),b,c,e)},Da:(a,b,c)=>{if(2<=z.version)b&&R.uniform3fv(Y(a),J,c>>2,3*b);else{if(96>=b){b*=3;for(var e=wd[b],f=0;f< +b;f+=3)e[f]=J[c+4*f>>2],e[f+1]=J[c+(4*f+4)>>2],e[f+2]=J[c+(4*f+8)>>2]}else e=J.subarray(c>>2,c+12*b>>2);R.uniform3fv(Y(a),e)}},Ca:(a,b,c,e)=>{R.uniform3i(Y(a),b,c,e)},Ba:(a,b,c)=>{if(2<=z.version)b&&R.uniform3iv(Y(a),E,c>>2,3*b);else{if(96>=b){b*=3;for(var e=xd[b],f=0;f>2],e[f+1]=E[c+(4*f+4)>>2],e[f+2]=E[c+(4*f+8)>>2]}else e=E.subarray(c>>2,c+12*b>>2);R.uniform3iv(Y(a),e)}},Aa:(a,b,c,e,f)=>{R.uniform4f(Y(a),b,c,e,f)},za:(a,b,c)=>{if(2<=z.version)b&&R.uniform4fv(Y(a),J,c>>2,4* +b);else{if(72>=b){var e=wd[4*b],f=J;c>>=2;b*=4;for(var k=0;k>2,c+16*b>>2);R.uniform4fv(Y(a),e)}},ya:(a,b,c,e,f)=>{R.uniform4i(Y(a),b,c,e,f)},xa:(a,b,c)=>{if(2<=z.version)b&&R.uniform4iv(Y(a),E,c>>2,4*b);else{if(72>=b){b*=4;for(var e=xd[b],f=0;f>2],e[f+1]=E[c+(4*f+4)>>2],e[f+2]=E[c+(4*f+8)>>2],e[f+3]=E[c+(4*f+12)>>2]}else e=E.subarray(c>>2,c+16*b>>2);R.uniform4iv(Y(a),e)}},wa:(a,b,c,e)=> +{if(2<=z.version)b&&R.uniformMatrix2fv(Y(a),!!c,J,e>>2,4*b);else{if(72>=b){b*=4;for(var f=wd[b],k=0;k>2],f[k+1]=J[e+(4*k+4)>>2],f[k+2]=J[e+(4*k+8)>>2],f[k+3]=J[e+(4*k+12)>>2]}else f=J.subarray(e>>2,e+16*b>>2);R.uniformMatrix2fv(Y(a),!!c,f)}},va:(a,b,c,e)=>{if(2<=z.version)b&&R.uniformMatrix3fv(Y(a),!!c,J,e>>2,9*b);else{if(32>=b){b*=9;for(var f=wd[b],k=0;k>2],f[k+1]=J[e+(4*k+4)>>2],f[k+2]=J[e+(4*k+8)>>2],f[k+3]=J[e+(4*k+12)>>2],f[k+4]=J[e+(4*k+16)>>2],f[k+ +5]=J[e+(4*k+20)>>2],f[k+6]=J[e+(4*k+24)>>2],f[k+7]=J[e+(4*k+28)>>2],f[k+8]=J[e+(4*k+32)>>2]}else f=J.subarray(e>>2,e+36*b>>2);R.uniformMatrix3fv(Y(a),!!c,f)}},ua:(a,b,c,e)=>{if(2<=z.version)b&&R.uniformMatrix4fv(Y(a),!!c,J,e>>2,16*b);else{if(18>=b){var f=wd[16*b],k=J;e>>=2;b*=16;for(var n=0;n>2,e+64*b>>2);R.uniformMatrix4fv(Y(a),!!c,f)}},ta:a=>{a=Nc[a];R.useProgram(a);R.We=a},sa:(a,b)=>R.vertexAttrib1f(a,b),ra:(a,b)=>{R.vertexAttrib2f(a,J[b>>2],J[b+4>>2])},qa:(a,b)=>{R.vertexAttrib3f(a,J[b>>2],J[b+4>>2],J[b+8>>2])},pa:(a,b)=>{R.vertexAttrib4f(a,J[b>>2],J[b+4>>2],J[b+8>>2],J[b+12>>2])},oa:(a,b)=>{R.vertexAttribDivisor(a,b)},na:(a,b,c,e,f)=>{R.vertexAttribIPointer(a,b,c,e,f)},ma:(a,b,c,e,f,k)=>{R.vertexAttribPointer(a,b,c, +!!e,f,k)},la:(a,b,c,e)=>R.viewport(a,b,c,e),ka:(a,b,c,e)=>{R.waitSync(Uc[a],b,(c>>>0)+4294967296*e)},ja:a=>{var b=B.length;a>>>=0;if(2147483648=c;c*=2){var e=b*(1+1/c);e=Math.min(e,a+100663296);a:{e=(Math.min(2147483648,65536*Math.ceil(Math.max(a,e)/65536))-za.buffer.byteLength+65535)/65536|0;try{za.grow(e);Ha();var f=1;break a}catch(k){}f=void 0}if(f)return!0}return!1},ia:()=>z?z.handle:0,pd:(a,b)=>{var c=0;Ad().forEach((e,f)=>{var k=b+c;f=H[a+4*f>>2]=k;for(k=0;k{var c=Ad();H[a>>2]=c.length;var e=0;c.forEach(f=>e+=f.length+1);H[b>>2]=e;return 0},ha:a=>{Xa||(Ba=!0);throw new Va(a);},T:()=>52,Z:function(){return 52},nd:()=>52,Y:function(){return 70},S:(a,b,c,e)=>{for(var f=0,k=0;k>2],l=H[b+4>>2];b+=8;for(var q=0;q>2]=f;return 0},ga:cd,fa:ed,ea:fd,da:gd,J:nd,P:rd,ca:sd,i:Hd,w:Id,m:Jd,I:Kd, +ba:Ld,O:Md,N:Nd,s:Od,v:Pd,r:Qd,u:Rd,aa:Sd,$:Td,_:Ud},Z=function(){function a(c){Z=c.exports;za=Z.vd;Ha();N=Z.yd;Ja.unshift(Z.wd);La--;0==La&&(null!==Na&&(clearInterval(Na),Na=null),Oa&&(c=Oa,Oa=null,c()));return Z}var b={a:Vd};La++;if(r.instantiateWasm)try{return r.instantiateWasm(b,a)}catch(c){ya(`Module.instantiateWasm callback failed with error: ${c}`),ca(c)}Ra??=r.locateFile?Qa("canvaskit.wasm")?"canvaskit.wasm":ta+"canvaskit.wasm":(new URL("canvaskit.wasm",import.meta.url)).href;Ua(b, +function(c){a(c.instance)}).catch(ca);return{}}(),bc=a=>(bc=Z.xd)(a),pd=r._malloc=a=>(pd=r._malloc=Z.zd)(a),cc=r._free=a=>(cc=r._free=Z.Ad)(a),Wd=(a,b)=>(Wd=Z.Bd)(a,b),Xd=a=>(Xd=Z.Cd)(a),Yd=()=>(Yd=Z.Dd)();r.dynCall_viji=(a,b,c,e,f)=>(r.dynCall_viji=Z.Ed)(a,b,c,e,f);r.dynCall_vijiii=(a,b,c,e,f,k,n)=>(r.dynCall_vijiii=Z.Fd)(a,b,c,e,f,k,n);r.dynCall_viiiiij=(a,b,c,e,f,k,n,l)=>(r.dynCall_viiiiij=Z.Gd)(a,b,c,e,f,k,n,l);r.dynCall_vij=(a,b,c,e)=>(r.dynCall_vij=Z.Hd)(a,b,c,e); +r.dynCall_jii=(a,b,c)=>(r.dynCall_jii=Z.Id)(a,b,c);r.dynCall_jiiiiii=(a,b,c,e,f,k,n)=>(r.dynCall_jiiiiii=Z.Jd)(a,b,c,e,f,k,n);r.dynCall_jiiiiji=(a,b,c,e,f,k,n,l)=>(r.dynCall_jiiiiji=Z.Kd)(a,b,c,e,f,k,n,l);r.dynCall_ji=(a,b)=>(r.dynCall_ji=Z.Ld)(a,b);r.dynCall_iijj=(a,b,c,e,f,k)=>(r.dynCall_iijj=Z.Md)(a,b,c,e,f,k);r.dynCall_jiji=(a,b,c,e,f)=>(r.dynCall_jiji=Z.Nd)(a,b,c,e,f);r.dynCall_viijii=(a,b,c,e,f,k,n)=>(r.dynCall_viijii=Z.Od)(a,b,c,e,f,k,n); +r.dynCall_iiiiij=(a,b,c,e,f,k,n)=>(r.dynCall_iiiiij=Z.Pd)(a,b,c,e,f,k,n);r.dynCall_iiiiijj=(a,b,c,e,f,k,n,l,q)=>(r.dynCall_iiiiijj=Z.Qd)(a,b,c,e,f,k,n,l,q);r.dynCall_iiiiiijj=(a,b,c,e,f,k,n,l,q,v)=>(r.dynCall_iiiiiijj=Z.Rd)(a,b,c,e,f,k,n,l,q,v);function Rd(a,b,c,e,f){var k=Yd();try{N.get(a)(b,c,e,f)}catch(n){Xd(k);if(n!==n+0)throw n;Wd(1,0)}}function Id(a,b,c){var e=Yd();try{return N.get(a)(b,c)}catch(f){Xd(e);if(f!==f+0)throw f;Wd(1,0)}} +function Pd(a,b,c){var e=Yd();try{N.get(a)(b,c)}catch(f){Xd(e);if(f!==f+0)throw f;Wd(1,0)}}function Hd(a,b){var c=Yd();try{return N.get(a)(b)}catch(e){Xd(c);if(e!==e+0)throw e;Wd(1,0)}}function Od(a,b){var c=Yd();try{N.get(a)(b)}catch(e){Xd(c);if(e!==e+0)throw e;Wd(1,0)}}function Jd(a,b,c,e){var f=Yd();try{return N.get(a)(b,c,e)}catch(k){Xd(f);if(k!==k+0)throw k;Wd(1,0)}}function Ud(a,b,c,e,f,k,n,l,q,v){var w=Yd();try{N.get(a)(b,c,e,f,k,n,l,q,v)}catch(A){Xd(w);if(A!==A+0)throw A;Wd(1,0)}} +function Qd(a,b,c,e){var f=Yd();try{N.get(a)(b,c,e)}catch(k){Xd(f);if(k!==k+0)throw k;Wd(1,0)}}function Td(a,b,c,e,f,k,n){var l=Yd();try{N.get(a)(b,c,e,f,k,n)}catch(q){Xd(l);if(q!==q+0)throw q;Wd(1,0)}}function Md(a,b,c,e,f,k,n,l){var q=Yd();try{return N.get(a)(b,c,e,f,k,n,l)}catch(v){Xd(q);if(v!==v+0)throw v;Wd(1,0)}}function Sd(a,b,c,e,f,k){var n=Yd();try{N.get(a)(b,c,e,f,k)}catch(l){Xd(n);if(l!==l+0)throw l;Wd(1,0)}} +function Kd(a,b,c,e,f){var k=Yd();try{return N.get(a)(b,c,e,f)}catch(n){Xd(k);if(n!==n+0)throw n;Wd(1,0)}}function Nd(a,b,c,e,f,k,n,l,q,v){var w=Yd();try{return N.get(a)(b,c,e,f,k,n,l,q,v)}catch(A){Xd(w);if(A!==A+0)throw A;Wd(1,0)}}function Ld(a,b,c,e,f,k,n){var l=Yd();try{return N.get(a)(b,c,e,f,k,n)}catch(q){Xd(l);if(q!==q+0)throw q;Wd(1,0)}}var Zd,$d;Oa=function ae(){Zd||be();Zd||(Oa=ae)}; +function be(){if(!(0\28SkColorSpace*\29 +240:__memcpy +241:SkString::~SkString\28\29 +242:__memset +243:std::__2::basic_string\2c\20std::__2::allocator>::append\28char\20const*\2c\20unsigned\20long\29 +244:SkColorInfo::~SkColorInfo\28\29 +245:GrGLSLShaderBuilder::codeAppendf\28char\20const*\2c\20...\29 +246:SkData::~SkData\28\29 +247:SkString::SkString\28\29 +248:memmove +249:SkContainerAllocator::allocate\28int\2c\20double\29 +250:SkPath::~SkPath\28\29 +251:SkString::insert\28unsigned\20long\2c\20char\20const*\29 +252:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::~__func\28\29 +253:hb_blob_destroy +254:SkDebugf\28char\20const*\2c\20...\29 +255:memcmp +256:sk_report_container_overflow_and_die\28\29 +257:SkSL::ErrorReporter::error\28SkSL::Position\2c\20std::__2::basic_string_view>\29 +258:SkArenaAlloc::ensureSpace\28unsigned\20int\2c\20unsigned\20int\29 +259:ft_mem_free +260:__wasm_setjmp_test +261:SkRasterPipeline::append\28SkRasterPipelineOp\2c\20void*\29 +262:SkString::SkString\28char\20const*\29 +263:FT_MulFix +264:emscripten::default_smart_ptr_trait>::share\28void*\29 +265:SkTDStorage::append\28\29 +266:SkWriter32::growToAtLeast\28unsigned\20long\29 +267:GrGpuResource::notifyARefCntIsZero\28GrIORef::LastRemovedRef\29\20const +268:fmaxf +269:std::__2::basic_string\2c\20std::__2::allocator>::size\5babi:nn180100\5d\28\29\20const +270:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:ne180100\5d\28\29\20const +271:SkString::SkString\28SkString&&\29 +272:strlen +273:SkSL::Pool::AllocMemory\28unsigned\20long\29 +274:GrColorInfo::~GrColorInfo\28\29 +275:SkIRect::intersect\28SkIRect\20const&\2c\20SkIRect\20const&\29 +276:SkMatrix::computePerspectiveTypeMask\28\29\20const +277:GrBackendFormat::~GrBackendFormat\28\29 +278:SkMatrix::computeTypeMask\28\29\20const +279:std::__2::vector>::__throw_length_error\5babi:ne180100\5d\28\29\20const +280:SkPaint::~SkPaint\28\29 +281:std::__2::basic_string\2c\20std::__2::allocator>::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +282:GrContext_Base::caps\28\29\20const +283:SkTDStorage::~SkTDStorage\28\29 +284:SkSL::RP::Generator::pushExpression\28SkSL::Expression\20const&\2c\20bool\29 +285:void\20emscripten::internal::raw_destructor\28SkContourMeasure*\29 +286:SkTDStorage::SkTDStorage\28int\29 +287:SkStrokeRec::getStyle\28\29\20const +288:SkColorInfo::SkColorInfo\28SkColorInfo\20const&\29 +289:strcmp +290:SkArenaAlloc::installFooter\28char*\20\28*\29\28char*\29\2c\20unsigned\20int\29 +291:SkArenaAlloc::allocObjectWithFooter\28unsigned\20int\2c\20unsigned\20int\29 +292:SkString::SkString\28SkString\20const&\29 +293:SkBitmap::~SkBitmap\28\29 +294:sk_malloc_throw\28unsigned\20long\2c\20unsigned\20long\29 +295:SkMatrix::mapRect\28SkRect*\2c\20SkRect\20const&\29\20const +296:hb_ot_map_builder_t::add_feature\28unsigned\20int\2c\20hb_ot_map_feature_flags_t\2c\20unsigned\20int\29 +297:SkSemaphore::osSignal\28int\29 +298:fminf +299:strncmp +300:hb_buffer_t::message\28hb_font_t*\2c\20char\20const*\2c\20...\29 +301:SkFontMgr*\20emscripten::base::convertPointer\28skia::textlayout::TypefaceFontProvider*\29 +302:SkArenaAlloc::~SkArenaAlloc\28\29 +303:SkString::operator=\28SkString&&\29 +304:std::__2::__shared_weak_count::__release_weak\28\29 +305:SkSemaphore::osWait\28\29 +306:skia_png_error +307:SkSL::Parser::nextRawToken\28\29 +308:hb_buffer_t::make_room_for\28unsigned\20int\2c\20unsigned\20int\29 +309:ft_mem_realloc +310:SkIntersections::insert\28double\2c\20double\2c\20SkDPoint\20const&\29 +311:skia_private::TArray::push_back\28SkPoint\20const&\29 +312:SkString::appendf\28char\20const*\2c\20...\29 +313:SkPath::SkPath\28SkPath\20const&\29 +314:SkImageGenerator::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +315:SkColorInfo::bytesPerPixel\28\29\20const +316:FT_DivFix +317:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +318:skia_png_free +319:std::__throw_bad_array_new_length\5babi:ne180100\5d\28\29 +320:skia_png_crc_finish +321:skia_png_chunk_benign_error +322:emscripten_builtin_malloc +323:SkMatrix::setTranslate\28float\2c\20float\29 +324:SkChecksum::Hash32\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20int\29 +325:GrVertexChunkBuilder::allocChunk\28int\29 +326:ft_mem_qrealloc +327:SkPaint::SkPaint\28SkPaint\20const&\29 +328:skia_png_warning +329:GrGLExtensions::has\28char\20const*\29\20const +330:FT_Stream_Seek +331:skia_private::TArray::push_back\28unsigned\20long\20const&\29 +332:SkPathBuilder::lineTo\28SkPoint\29 +333:SkBitmap::SkBitmap\28\29 +334:SkReadBuffer::readUInt\28\29 +335:SkMatrix::invert\28\29\20const +336:SkImageInfo::MakeUnknown\28int\2c\20int\29 +337:SkBlitter::~SkBlitter\28\29 +338:GrSurfaceProxyView::asRenderTargetProxy\28\29\20const +339:SkPaint::SkPaint\28\29 +340:SkColorInfo::SkColorInfo\28SkColorInfo&&\29 +341:hb_buffer_t::_set_glyph_flags\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +342:ft_validator_error +343:skia_private::TArray\2c\20true>::push_back\28sk_sp&&\29 +344:skgpu::Swizzle::Swizzle\28char\20const*\29 +345:hb_blob_get_data_writable +346:SkOpPtT::segment\28\29\20const +347:SkSL::Parser::expect\28SkSL::Token::Kind\2c\20char\20const*\2c\20SkSL::Token*\29 +348:sk_malloc_flags\28unsigned\20long\2c\20unsigned\20int\29 +349:GrTextureGenerator::isTextureGenerator\28\29\20const +350:strstr +351:hb_draw_funcs_t::start_path\28void*\2c\20hb_draw_state_t&\29 +352:SkSL::RP::Builder::appendInstruction\28SkSL::RP::BuilderOp\2c\20SkSL::RP::Builder::SlotList\2c\20int\2c\20int\2c\20int\2c\20int\29 +353:FT_Stream_ReadUShort +354:skia_private::TArray::push_back\28SkSL::RP::Instruction&&\29 +355:skia_png_get_uint_32 +356:skia_png_calculate_crc +357:SkPoint::Length\28float\2c\20float\29 +358:OT::VarData::get_delta\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20OT::VarRegionList\20const&\2c\20float*\29\20const +359:hb_realloc +360:hb_lazy_loader_t\2c\20hb_face_t\2c\2031u\2c\20hb_blob_t>::do_destroy\28hb_blob_t*\29 +361:hb_calloc +362:SkSL::GLSLCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +363:SkPath::SkPath\28\29 +364:std::__2::basic_string\2c\20std::__2::allocator>::resize\5babi:nn180100\5d\28unsigned\20long\29 +365:SkRect::join\28SkRect\20const&\29 +366:OT::DeltaSetIndexMap::map\28unsigned\20int\29\20const +367:GrImageInfo::GrImageInfo\28GrImageInfo\20const&\29 +368:subtag_matches\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20int\29 +369:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +370:std::__2::locale::~locale\28\29 +371:SkMatrix::mapPoints\28SkSpan\2c\20SkSpan\29\20const +372:std::__2::basic_string\2c\20std::__2::allocator>::__get_pointer\5babi:nn180100\5d\28\29 +373:skia_private::TArray::push_back\28SkString&&\29 +374:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +375:SkRect::intersect\28SkRect\20const&\29 +376:SkRasterPipeline::uncheckedAppend\28SkRasterPipelineOp\2c\20void*\29 +377:std::__2::__throw_bad_function_call\5babi:ne180100\5d\28\29 +378:skia_private::TArray>\2c\20true>::operator=\28skia_private::TArray>\2c\20true>&&\29 +379:cf2_stack_popFixed +380:SkJSONWriter::appendName\28char\20const*\29 +381:SkCachedData::internalUnref\28bool\29\20const +382:skgpu::ganesh::SurfaceContext::caps\28\29\20const +383:GrProcessor::operator\20new\28unsigned\20long\29 +384:FT_MulDiv +385:hb_blob_reference +386:std::__2::to_string\28int\29 +387:std::__2::ios_base::getloc\28\29\20const +388:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28char\29 +389:hb_blob_make_immutable +390:SkSemaphore::~SkSemaphore\28\29 +391:SkRuntimeEffect::uniformSize\28\29\20const +392:SkMatrix::mapPointPerspective\28SkPoint\29\20const +393:SkJSONWriter::beginValue\28bool\29 +394:skia_png_read_push_finish_row +395:skia::textlayout::TextStyle::~TextStyle\28\29 +396:SkString::operator=\28char\20const*\29 +397:hb_ot_map_builder_t::add_pause\28unsigned\20int\2c\20bool\20\28*\29\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29\29 +398:VP8GetValue +399:SkRegion::~SkRegion\28\29 +400:SkReadBuffer::setInvalid\28\29 +401:SkColorInfo::operator=\28SkColorInfo\20const&\29 +402:SkColorInfo::operator=\28SkColorInfo&&\29 +403:SkArenaAlloc::SkArenaAlloc\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +404:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28\29 +405:skia_private::TArray::push_back\28SkPathVerb&&\29 +406:jdiv_round_up +407:SkSL::RP::Builder::binary_op\28SkSL::RP::BuilderOp\2c\20int\29 +408:jzero_far +409:SkPathBuilder::~SkPathBuilder\28\29 +410:SkPathBuilder::detach\28SkMatrix\20const*\29 +411:SkPath::operator=\28SkPath\20const&\29 +412:SkPath::Iter::next\28\29 +413:FT_Stream_ExitFrame +414:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +415:skia_private::TArray::push_back_raw\28int\29 +416:skia_png_write_data +417:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +418:__shgetc +419:SkSL::SymbolTable::addWithoutOwnershipOrDie\28SkSL::Symbol*\29 +420:SkPoint::scale\28float\2c\20SkPoint*\29\20const +421:SkPath::getBounds\28\29\20const +422:SkDynamicMemoryWStream::write\28void\20const*\2c\20unsigned\20long\29 +423:SkBlitter::~SkBlitter\28\29_1468 +424:FT_Stream_GetUShort +425:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28wchar_t\20const*\29 +426:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28char\20const*\29 +427:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +428:SkNullBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +429:SkMatrix::setConcat\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +430:round +431:SkSL::String::printf\28char\20const*\2c\20...\29 +432:SkPoint::normalize\28\29 +433:SkPathRef::Editor::Editor\28sk_sp*\2c\20int\2c\20int\2c\20int\29 +434:SkIRect\20skif::Mapping::map\28SkIRect\20const&\2c\20SkMatrix\20const&\29 +435:OT::Layout::Common::Coverage::get_coverage\28unsigned\20int\29\20const +436:GrSurfaceProxyView::asTextureProxy\28\29\20const +437:GrOp::GenOpClassID\28\29 +438:hb_bit_set_t::page_for\28unsigned\20int\2c\20bool\29 +439:SkSurfaceProps::SkSurfaceProps\28\29 +440:SkStringPrintf\28char\20const*\2c\20...\29 +441:SkStream::readS32\28int*\29 +442:RoughlyEqualUlps\28float\2c\20float\29 +443:GrGLSLVaryingHandler::addVarying\28char\20const*\2c\20GrGLSLVarying*\2c\20GrGLSLVaryingHandler::Interpolation\29 +444:sktext::gpu::BagOfBytes::~BagOfBytes\28\29 +445:skia_png_chunk_error +446:SkTDStorage::reserve\28int\29 +447:SkPathBuilder::SkPathBuilder\28\29 +448:GrQuad::MakeFromRect\28SkRect\20const&\2c\20SkMatrix\20const&\29 +449:GrFragmentProcessor::ProgramImpl::invokeChild\28int\2c\20char\20const*\2c\20char\20const*\2c\20GrFragmentProcessor::ProgramImpl::EmitArgs&\2c\20std::__2::basic_string_view>\29 +450:hb_face_reference_table +451:SkStrikeSpec::~SkStrikeSpec\28\29 +452:SkSL::TProgramVisitor::visitStatement\28SkSL::Statement\20const&\29 +453:SkSL::RP::Builder::discard_stack\28int\2c\20int\29 +454:SkRecord::grow\28\29 +455:SkRGBA4f<\28SkAlphaType\293>::toBytes_RGBA\28\29\20const +456:GrProcessor::operator\20new\28unsigned\20long\2c\20unsigned\20long\29 +457:AutoLayerForImageFilter::~AutoLayerForImageFilter\28\29 +458:skgpu::ganesh::SurfaceDrawContext::addDrawOp\28GrClip\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::function\20const&\29 +459:skgpu::ResourceKeyHash\28unsigned\20int\20const*\2c\20unsigned\20long\29 +460:VP8LoadFinalBytes +461:SkSL::FunctionDeclaration::description\28\29\20const +462:SkPictureRecord::addDraw\28DrawType\2c\20unsigned\20long*\29::'lambda'\28\29::operator\28\29\28\29\20const +463:SkMatrix::postTranslate\28float\2c\20float\29 +464:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29 +465:SkCanvas::predrawNotify\28bool\29 +466:std::__2::__cloc\28\29 +467:sscanf +468:GrSkSLFP::GrSkSLFP\28sk_sp\2c\20char\20const*\2c\20GrSkSLFP::OptFlags\29 +469:GrBackendFormat::GrBackendFormat\28\29 +470:__multf3 +471:VP8LReadBits +472:SkTDStorage::append\28int\29 +473:SkSL::evaluate_n_way_intrinsic\28SkSL::Context\20const&\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +474:SkRect::Bounds\28SkSpan\29 +475:SkMatrix::setScale\28float\2c\20float\29 +476:GrOpsRenderPass::setScissorRect\28SkIRect\20const&\29 +477:GrOpsRenderPass::bindPipeline\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +478:GrCaps::getDefaultBackendFormat\28GrColorType\2c\20skgpu::Renderable\29\20const +479:emscripten_longjmp +480:SkRuntimeEffect::MakeForShader\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +481:GrSimpleMeshDrawOpHelper::~GrSimpleMeshDrawOpHelper\28\29 +482:GrProcessorSet::GrProcessorSet\28GrPaint&&\29 +483:GrBackendFormats::AsGLFormat\28GrBackendFormat\20const&\29 +484:FT_Stream_EnterFrame +485:std::__2::locale::id::__get\28\29 +486:std::__2::locale::facet::facet\5babi:nn180100\5d\28unsigned\20long\29 +487:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29 +488:SkPathBuilder::moveTo\28SkPoint\29 +489:SkColorSpaceXformSteps::SkColorSpaceXformSteps\28SkColorSpace\20const*\2c\20SkAlphaType\2c\20SkColorSpace\20const*\2c\20SkAlphaType\29 +490:AlmostEqualUlps\28float\2c\20float\29 +491:std::__2::locale::__imp::install\28std::__2::locale::facet*\2c\20long\29 +492:skia_png_read_data +493:cosf +494:SkSpinlock::contendedAcquire\28\29 +495:SkSL::PipelineStage::PipelineStageCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +496:SkDPoint::approximatelyEqual\28SkDPoint\20const&\29\20const +497:GrSurfaceProxy::backingStoreDimensions\28\29\20const +498:GrOpsRenderPass::bindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +499:GrGeometryProcessor::AttributeSet::initImplicit\28GrGeometryProcessor::Attribute\20const*\2c\20int\29 +500:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +501:skgpu::UniqueKey::GenerateDomain\28\29 +502:SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0::operator\28\29\28SkSL::FunctionDefinition\20const*\2c\20SkSL::FunctionDefinition\20const*\29\20const +503:SkSL::ConstructorCompound::MakeFromConstants\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20double\20const*\29 +504:SkPathRef::growForVerb\28SkPathVerb\2c\20float\29 +505:SkPaint::setStyle\28SkPaint::Style\29 +506:SkBlockAllocator::reset\28\29 +507:SkBitmap::SkBitmap\28SkBitmap\20const&\29 +508:OT::hb_ot_apply_context_t::match_properties_mark\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +509:GrMeshDrawOp::GrMeshDrawOp\28unsigned\20int\29 +510:GrContext_Base::contextID\28\29\20const +511:FT_RoundFix +512:std::__2::unique_ptr::~unique_ptr\5babi:nn180100\5d\28\29 +513:std::__2::unique_ptr::unique_ptr\5babi:nn180100\5d\28unsigned\20char*\2c\20std::__2::__dependent_type\2c\20true>::__good_rval_ref_type\29 +514:cf2_stack_pushFixed +515:__multi3 +516:SkSL::RP::Builder::push_duplicates\28int\29 +517:SkPaint::setShader\28sk_sp\29 +518:SkMatrix::Rect2Rect\28SkRect\20const&\2c\20SkRect\20const&\2c\20SkMatrix::ScaleToFit\29 +519:SkBitmapDevice::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +520:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20SkFilterMode\2c\20SkMipmapMode\29 +521:GrGLSLVaryingHandler::addPassThroughAttribute\28GrShaderVar\20const&\2c\20char\20const*\2c\20GrGLSLVaryingHandler::Interpolation\29 +522:GrFragmentProcessor::registerChild\28std::__2::unique_ptr>\2c\20SkSL::SampleUsage\29 +523:FT_Stream_ReleaseFrame +524:std::__2::istreambuf_iterator>::operator*\5babi:nn180100\5d\28\29\20const +525:skia_private::TArray::push_back_raw\28int\29 +526:skia::textlayout::TextStyle::TextStyle\28skia::textlayout::TextStyle\20const&\29 +527:hb_face_get_glyph_count +528:hb_buffer_t::merge_clusters_impl\28unsigned\20int\2c\20unsigned\20int\29 +529:decltype\28fp.sanitize\28this\29\29\20hb_sanitize_context_t::_dispatch\28OT::Layout::Common::Coverage\20const&\2c\20hb_priority<1u>\29 +530:abort +531:SkWStream::writePackedUInt\28unsigned\20long\29 +532:SkSurface_Base::aboutToDraw\28SkSurface::ContentChangeMode\29 +533:SkSL::RP::Builder::push_constant_i\28int\2c\20int\29 +534:SkSL::BreakStatement::~BreakStatement\28\29 +535:SkColorInfo::refColorSpace\28\29\20const +536:SkCanvas::concat\28SkMatrix\20const&\29 +537:SkBitmap::setImmutable\28\29 +538:GrPipeline::visitProxies\28std::__2::function\20const&\29\20const +539:302 +540:std::__2::istreambuf_iterator>::operator*\5babi:nn180100\5d\28\29\20const +541:std::__2::__throw_bad_optional_access\5babi:ne180100\5d\28\29 +542:sk_srgb_singleton\28\29 +543:hb_face_t::load_num_glyphs\28\29\20const +544:dlrealloc +545:SkSL::fold_expression\28SkSL::Position\2c\20double\2c\20SkSL::Type\20const*\29 +546:SkSL::Type::MakeAliasType\28std::__2::basic_string_view>\2c\20SkSL::Type\20const&\29 +547:SkSL::RP::Generator::binaryOp\28SkSL::Type\20const&\2c\20SkSL::RP::Generator::TypedOps\20const&\29 +548:SkNullBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +549:GrGeometryProcessor::GrGeometryProcessor\28GrProcessor::ClassID\29 +550:GrGeometryProcessor::Attribute&\20skia_private::TArray::emplace_back\28char\20const\20\28&\29\20\5b10\5d\2c\20GrVertexAttribType&&\2c\20SkSLType&&\29 +551:FT_Stream_ReadByte +552:Cr_z_crc32 +553:skia_png_push_save_buffer +554:machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>::operator=\28machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\20const&\29 +555:SkString::operator=\28SkString\20const&\29 +556:SkSL::RP::SlotManager::getVariableSlots\28SkSL::Variable\20const&\29 +557:SkSL::RP::Builder::unary_op\28SkSL::RP::BuilderOp\2c\20int\29 +558:SkRect::setBoundsCheck\28SkSpan\29 +559:SkReadBuffer::readScalar\28\29 +560:SkPaint::setBlendMode\28SkBlendMode\29 +561:SkColorInfo::shiftPerPixel\28\29\20const +562:SkCanvas::save\28\29 +563:GrProcessorSet::visitProxies\28std::__2::function\20const&\29\20const +564:GrGLTexture::target\28\29\20const +565:fmodf +566:fma +567:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression\20const&\29 +568:SkSL::Pool::FreeMemory\28void*\29 +569:SkRasterClip::~SkRasterClip\28\29 +570:SkPaint::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +571:SkPaint::canComputeFastBounds\28\29\20const +572:SkPaint::SkPaint\28SkPaint&&\29 +573:SkDPoint::ApproximatelyEqual\28SkPoint\20const&\2c\20SkPoint\20const&\29 +574:GrShape::asPath\28bool\29\20const +575:FT_Stream_ReadULong +576:std::__2::unique_ptr>*\20std::__2::vector>\2c\20std::__2::allocator>>>::__push_back_slow_path>>\28std::__2::unique_ptr>&&\29 +577:std::__2::basic_string\2c\20std::__2::allocator>::__init_copy_ctor_external\28char\20const*\2c\20unsigned\20long\29 +578:std::__2::__throw_overflow_error\5babi:nn180100\5d\28char\20const*\29 +579:skip_spaces +580:sk_realloc_throw\28void*\2c\20unsigned\20long\29 +581:emscripten::smart_ptr_trait>::get\28sk_sp\20const&\29 +582:cff1_path_procs_extents_t::curve\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +583:cff1_path_param_t::cubic_to\28CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +584:SkString::equals\28SkString\20const&\29\20const +585:SkSL::Type::toCompound\28SkSL::Context\20const&\2c\20int\2c\20int\29\20const +586:SkPixmap::reset\28SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +587:SkPath::lineTo\28float\2c\20float\29 +588:SkPath::isEmpty\28\29\20const +589:SkMatrix::mapVectors\28SkSpan\2c\20SkSpan\29\20const +590:SkImageGenerator::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +591:SkBlockAllocator::addBlock\28int\2c\20int\29 +592:SkBitmap::tryAllocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29 +593:GrThreadSafeCache::VertexData::~VertexData\28\29 +594:GrShaderVar::appendDecl\28GrShaderCaps\20const*\2c\20SkString*\29\20const +595:GrPixmapBase::~GrPixmapBase\28\29 +596:GrGLSLVaryingHandler::emitAttributes\28GrGeometryProcessor\20const&\29 +597:FT_Stream_ReadFields +598:void\20emscripten::internal::raw_destructor\28GrDirectContext*\29 +599:std::__2::unique_ptr::reset\5babi:nn180100\5d\28unsigned\20char*\29 +600:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +601:skia_private::TArray::push_back\28SkPaint\20const&\29 +602:ft_mem_qalloc +603:__wasm_setjmp +604:SkSL::SymbolTable::~SymbolTable\28\29 +605:SkPathRef::~SkPathRef\28\29 +606:SkPathBuilder::quadTo\28SkPoint\2c\20SkPoint\29 +607:SkPathBuilder::close\28\29 +608:SkOpPtT::contains\28SkOpPtT\20const*\29\20const +609:SkOpAngle::segment\28\29\20const +610:SkMasks::getRed\28unsigned\20int\29\20const +611:SkMasks::getGreen\28unsigned\20int\29\20const +612:SkMasks::getBlue\28unsigned\20int\29\20const +613:SkDynamicMemoryWStream::detachAsData\28\29 +614:SkColorSpace::MakeSRGB\28\29 +615:GrProcessorSet::~GrProcessorSet\28\29 +616:GrMeshDrawOp::createProgramInfo\28GrMeshDrawTarget*\29 +617:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +618:skhdr::Metadata::MakeEmpty\28\29 +619:sinf +620:png_icc_profile_error +621:operator==\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +622:emscripten::internal::MethodInvoker::invoke\28int\20\28SkAnimatedImage::*\20const&\29\28\29\2c\20SkAnimatedImage*\29 +623:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20SkBlendMode\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20SkBlendMode\29 +624:emscripten::default_smart_ptr_trait>::construct_null\28\29 +625:VP8GetSignedValue +626:SkSL::Type::MakeVectorType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\29 +627:SkRasterPipeline::SkRasterPipeline\28SkArenaAlloc*\29 +628:SkPoint::setLength\28float\29 +629:SkPathBuilder::conicTo\28SkPoint\2c\20SkPoint\2c\20float\29 +630:SkPath::countPoints\28\29\20const +631:SkMatrix::preConcat\28SkMatrix\20const&\29 +632:SkGlyph::rowBytes\28\29\20const +633:SkCanvas::restoreToCount\28int\29 +634:SkAAClipBlitter::~SkAAClipBlitter\28\29 +635:GrTextureProxy::mipmapped\28\29\20const +636:GrGpuResource::~GrGpuResource\28\29 +637:FT_Stream_GetULong +638:Cr_z__tr_flush_bits +639:402 +640:void\20emscripten::internal::raw_destructor>\28sk_sp*\29 +641:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +642:skgpu::UniqueKey::operator=\28skgpu::UniqueKey\20const&\29 +643:sk_double_nearly_zero\28double\29 +644:hb_font_get_glyph +645:ft_mem_alloc +646:fit_linear\28skcms_Curve\20const*\2c\20int\2c\20float\2c\20float*\2c\20float*\2c\20float*\29 +647:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29 +648:_output_with_dotted_circle\28hb_buffer_t*\29 +649:WebPSafeMalloc +650:SkString::data\28\29 +651:SkSafeMath::Mul\28unsigned\20long\2c\20unsigned\20long\29 +652:SkSL::GLSLCodeGenerator::writeIdentifier\28std::__2::basic_string_view>\29 +653:SkSL::GLSLCodeGenerator::getTypeName\28SkSL::Type\20const&\29 +654:SkRGBA4f<\28SkAlphaType\293>::FromColor\28unsigned\20int\29 +655:SkPaint::setMaskFilter\28sk_sp\29 +656:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_3::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +657:SkDrawable::getBounds\28\29 +658:SkData::MakeWithCopy\28void\20const*\2c\20unsigned\20long\29 +659:SkDCubic::ptAtT\28double\29\20const +660:SkColorInfo::SkColorInfo\28\29 +661:SkCanvas::~SkCanvas\28\29_1667 +662:SkCanvas::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +663:GrOpFlushState::drawMesh\28GrSimpleMesh\20const&\29 +664:GrImageInfo::GrImageInfo\28SkImageInfo\20const&\29 +665:DefaultGeoProc::Impl::~Impl\28\29 +666:void\20emscripten::internal::MemberAccess::setWire\28int\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\2c\20int\29 +667:uprv_malloc_skia +668:std::__2::basic_string\2c\20std::__2::allocator>::__is_long\5babi:nn180100\5d\28\29\20const +669:skia::textlayout::Cluster::run\28\29\20const +670:skgpu::ganesh::SurfaceDrawContext::drawFilledQuad\28GrClip\20const*\2c\20GrPaint&&\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\29 +671:out +672:jpeg_fill_bit_buffer +673:int\20emscripten::internal::MemberAccess::getWire\28int\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\29 +674:SkTextBlob::~SkTextBlob\28\29 +675:SkStrokeRec::SkStrokeRec\28SkStrokeRec::InitStyle\29 +676:SkShaderBase::SkShaderBase\28\29 +677:SkSL::Type::coerceExpression\28std::__2::unique_ptr>\2c\20SkSL::Context\20const&\29\20const +678:SkSL::Type::MakeGenericType\28char\20const*\2c\20SkSpan\2c\20SkSL::Type\20const*\29 +679:SkSL::ConstantFolder::GetConstantValueForVariable\28SkSL::Expression\20const&\29 +680:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29 +681:SkRegion::SkRegion\28\29 +682:SkRecords::FillBounds::adjustForSaveLayerPaints\28SkRect*\2c\20int\29\20const +683:SkPathStroker::lineTo\28SkPoint\20const&\2c\20SkPath::Iter\20const*\29 +684:SkPath::isFinite\28\29\20const +685:SkPath::Iter::Iter\28SkPath\20const&\2c\20bool\29 +686:SkPaint::setPathEffect\28sk_sp\29 +687:SkPaint::setColor\28unsigned\20int\29 +688:SkPaint::setColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\29 +689:SkMatrix::postConcat\28SkMatrix\20const&\29 +690:SkM44::setConcat\28SkM44\20const&\2c\20SkM44\20const&\29 +691:SkImageInfo::Make\28int\2c\20int\2c\20SkColorType\2c\20SkAlphaType\29 +692:SkImageFilter::getInput\28int\29\20const +693:SkDrawable::getFlattenableType\28\29\20const +694:SkData::MakeWithProc\28void\20const*\2c\20unsigned\20long\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +695:SkAutoPixmapStorage::~SkAutoPixmapStorage\28\29 +696:GrMatrixEffect::Make\28SkMatrix\20const&\2c\20std::__2::unique_ptr>\29 +697:GrContext_Base::options\28\29\20const +698:std::__2::char_traits::assign\5babi:nn180100\5d\28char&\2c\20char\20const&\29 +699:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +700:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:nn180100\5d\28\29\20const +701:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_size\5babi:nn180100\5d\28unsigned\20long\29 +702:std::__2::__check_grouping\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int&\29 +703:skia_png_malloc +704:skia_png_chunk_report +705:png_write_complete_chunk +706:pad +707:__ashlti3 +708:SkWBuffer::writeNoSizeCheck\28void\20const*\2c\20unsigned\20long\29 +709:SkTCoincident::setPerp\28SkTCurve\20const&\2c\20double\2c\20SkDPoint\20const&\2c\20SkTCurve\20const&\29 +710:SkString::printf\28char\20const*\2c\20...\29 +711:SkSL::Type::MakeMatrixType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\2c\20signed\20char\29 +712:SkSL::Operator::tightOperatorName\28\29\20const +713:SkReadBuffer::readColor4f\28SkRGBA4f<\28SkAlphaType\293>*\29 +714:SkPixmap::reset\28\29 +715:SkPictureData::requiredPaint\28SkReadBuffer*\29\20const +716:SkPathBuilder::cubicTo\28SkPoint\2c\20SkPoint\2c\20SkPoint\29 +717:SkPath::transform\28SkMatrix\20const&\2c\20SkPath*\29\20const +718:SkPaintToGrPaint\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrPaint*\29 +719:SkMatrixPriv::MapRect\28SkM44\20const&\2c\20SkRect\20const&\29 +720:SkFindUnitQuadRoots\28float\2c\20float\2c\20float\2c\20float*\29 +721:SkDeque::push_back\28\29 +722:SkData::MakeEmpty\28\29 +723:SkCanvas::internalQuickReject\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29 +724:SkBitmap::installPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29 +725:SkBinaryWriteBuffer::writeBool\28bool\29 +726:OT::hb_paint_context_t::return_t\20OT::Paint::dispatch\28OT::hb_paint_context_t*\29\20const +727:GrShape::bounds\28\29\20const +728:GrProgramInfo::GrProgramInfo\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrGeometryProcessor\20const*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +729:GrPixmapBase::GrPixmapBase\28GrImageInfo\2c\20void*\2c\20unsigned\20long\29 +730:FT_Outline_Translate +731:FT_Load_Glyph +732:FT_GlyphLoader_CheckPoints +733:FT_Get_Char_Index +734:DefaultGeoProc::~DefaultGeoProc\28\29 +735:498 +736:std::__2::ctype\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +737:skif::LayerSpace::mapRect\28skif::LayerSpace\20const&\29\20const +738:skcpu::Draw::Draw\28\29 +739:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28GrDirectContext&\2c\20unsigned\20long\29\2c\20GrDirectContext*\2c\20unsigned\20long\29 +740:bool\20OT::Layout::Common::Coverage::collect_coverage\28hb_set_digest_t*\29\20const +741:SkRasterPipeline::extend\28SkRasterPipeline\20const&\29 +742:SkJSONWriter::appendf\28char\20const*\2c\20...\29 +743:SkImageInfo::MakeA8\28int\2c\20int\29 +744:SkImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +745:SkIRect::join\28SkIRect\20const&\29 +746:SkData::MakeUninitialized\28unsigned\20long\29 +747:SkDQuad::RootsValidT\28double\2c\20double\2c\20double\2c\20double*\29 +748:SkDLine::nearPoint\28SkDPoint\20const&\2c\20bool*\29\20const +749:SkColorSpaceXformSteps::apply\28float*\29\20const +750:SkCachedData::internalRef\28bool\29\20const +751:OT::GDEF::accelerator_t::mark_set_covers\28unsigned\20int\2c\20unsigned\20int\29\20const +752:GrSurface::RefCntedReleaseProc::~RefCntedReleaseProc\28\29 +753:GrStyle::initPathEffect\28sk_sp\29 +754:GrProcessor::operator\20delete\28void*\29 +755:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::~Impl\28\29 +756:GrColorInfo::GrColorInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\29 +757:GrBufferAllocPool::~GrBufferAllocPool\28\29_8937 +758:FT_Stream_Skip +759:AutoLayerForImageFilter::AutoLayerForImageFilter\28SkCanvas*\2c\20SkPaint\20const&\2c\20SkRect\20const*\2c\20bool\29 +760:std::__2::numpunct::thousands_sep\5babi:nn180100\5d\28\29\20const +761:std::__2::numpunct::grouping\5babi:nn180100\5d\28\29\20const +762:std::__2::ctype\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +763:std::__2::basic_string\2c\20std::__2::allocator>::__set_short_size\5babi:nn180100\5d\28unsigned\20long\29 +764:skia_png_malloc_warn +765:rewind\28GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +766:cf2_stack_popInt +767:SkSL::TProgramVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +768:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29 +769:SkRegion::setRect\28SkIRect\20const&\29 +770:SkPaint::setColorFilter\28sk_sp\29 +771:SkImageGenerator::onIsValid\28SkRecorder*\29\20const +772:SkColorFilter::isAlphaUnchanged\28\29\20const +773:SkCodec::~SkCodec\28\29 +774:SkAAClip::isRect\28\29\20const +775:GrSurface::ComputeSize\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20bool\29 +776:GrSimpleMeshDrawOpHelper::GrSimpleMeshDrawOpHelper\28GrProcessorSet*\2c\20GrAAType\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +777:GrGeometryProcessor::ProgramImpl::SetTransform\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrResourceHandle\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix*\29 +778:GrBlendFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkBlendMode\2c\20bool\29 +779:FT_Stream_ExtractFrame +780:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +781:skia_png_malloc_base +782:skcpu::Draw::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkDrawCoverage\2c\20SkBlitter*\29\20const +783:skcms_TransferFunction_eval +784:pow +785:hb_lockable_set_t::fini\28hb_mutex_t&\29 +786:__addtf3 +787:SkUTF::NextUTF8\28char\20const**\2c\20char\20const*\29 +788:SkTDStorage::reset\28\29 +789:SkSize\20skif::Mapping::map\28SkSize\20const&\2c\20SkMatrix\20const&\29 +790:SkSL::RP::Builder::label\28int\29 +791:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +792:SkRuntimeEffect::MakeForColorFilter\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +793:SkReadBuffer::skip\28unsigned\20long\2c\20unsigned\20long\29 +794:SkPath::countVerbs\28\29\20const +795:SkPaint::asBlendMode\28\29\20const +796:SkMatrix::set9\28float\20const*\29 +797:SkMatrix::mapRadius\28float\29\20const +798:SkMatrix::getMaxScale\28\29\20const +799:SkImageInfo::computeByteSize\28unsigned\20long\29\20const +800:SkImageInfo::Make\28int\2c\20int\2c\20SkColorType\2c\20SkAlphaType\2c\20sk_sp\29 +801:SkFontMgr::countFamilies\28\29\20const +802:SkDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +803:SkBlockAllocator::SkBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\2c\20unsigned\20long\29 +804:SkBlender::Mode\28SkBlendMode\29 +805:SkBitmap::setInfo\28SkImageInfo\20const&\2c\20unsigned\20long\29 +806:ReadHuffmanCode +807:GrSurfaceProxy::~GrSurfaceProxy\28\29 +808:GrRenderTask::makeClosed\28GrRecordingContext*\29 +809:GrGpuBuffer::unmap\28\29 +810:GrCaps::getReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +811:GrBufferAllocPool::reset\28\29 +812:uprv_realloc_skia +813:std::__2::char_traits::assign\5babi:nn180100\5d\28wchar_t&\2c\20wchar_t\20const&\29 +814:std::__2::basic_string\2c\20std::__2::allocator>::begin\5babi:nn180100\5d\28\29 +815:std::__2::__next_prime\28unsigned\20long\29 +816:std::__2::__libcpp_snprintf_l\28char*\2c\20unsigned\20long\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +817:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29 +818:skgpu::ganesh::AsView\28GrRecordingContext*\2c\20SkImage\20const*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +819:skcms_PrimariesToXYZD50 +820:sk_sp::~sk_sp\28\29 +821:memchr +822:is_equal\28std::type_info\20const*\2c\20std::type_info\20const*\2c\20bool\29 +823:hb_ot_face_t::init0\28hb_face_t*\29 +824:hb_lazy_loader_t\2c\20hb_face_t\2c\2025u\2c\20OT::GSUB_accelerator_t>::do_destroy\28OT::GSUB_accelerator_t*\29 +825:hb_buffer_t::sync\28\29 +826:cbrtf +827:__floatsitf +828:WebPSafeCalloc +829:StreamRemainingLengthIsBelow\28SkStream*\2c\20unsigned\20long\29 +830:SkSL::RP::Builder::swizzle\28int\2c\20SkSpan\29 +831:SkSL::Parser::expression\28\29 +832:SkRuntimeEffect::Uniform::sizeInBytes\28\29\20const +833:SkPathIter::next\28\29 +834:SkImageFilter_Base::getChildOutputLayerBounds\28int\2c\20skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +835:SkImageFilter_Base::getChildInputLayerBounds\28int\2c\20skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +836:SkImageFilter_Base::SkImageFilter_Base\28sk_sp\20const*\2c\20int\2c\20std::__2::optional\29 +837:SkGlyph::path\28\29\20const +838:SkDQuad::ptAtT\28double\29\20const +839:SkDLine::exactPoint\28SkDPoint\20const&\29\20const +840:SkDConic::ptAtT\28double\29\20const +841:SkConic::chopIntoQuadsPOW2\28SkPoint*\2c\20int\29\20const +842:SkColorInfo::makeColorType\28SkColorType\29\20const +843:SkColorInfo::makeAlphaType\28SkAlphaType\29\20const +844:SkCanvas::restore\28\29 +845:SkCanvas::drawImage\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +846:SkAAClip::Builder::addRun\28int\2c\20int\2c\20unsigned\20int\2c\20int\29 +847:GrSkSLFP::addChild\28std::__2::unique_ptr>\2c\20bool\29 +848:GrResourceProvider::findResourceByUniqueKey\28skgpu::UniqueKey\20const&\29 +849:GrQuad::MakeFromSkQuad\28SkPoint\20const*\2c\20SkMatrix\20const&\29 +850:GrGLSLShaderBuilder::appendTextureLookup\28SkString*\2c\20GrResourceHandle\2c\20char\20const*\29\20const +851:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\29 +852:GrFragmentProcessor::cloneAndRegisterAllChildProcessors\28GrFragmentProcessor\20const&\29 +853:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::~SwizzleFragmentProcessor\28\29 +854:GrBackendFormat::GrBackendFormat\28GrBackendFormat\20const&\29 +855:AutoFTAccess::AutoFTAccess\28SkTypeface_FreeType\20const*\29 +856:AlmostPequalUlps\28float\2c\20float\29 +857:AAT::Lookup>::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +858:xyz_almost_equal\28skcms_Matrix3x3\20const&\2c\20skcms_Matrix3x3\20const&\29 +859:void\20AAT::Lookup::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +860:strchr +861:std::__2::pair>*\20std::__2::vector>\2c\20std::__2::allocator>>>::__emplace_back_slow_path>\28unsigned\20int\20const&\2c\20sk_sp&&\29 +862:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20char\29\20const +863:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:ne180100\5d<0>\28char\20const*\29 +864:snprintf +865:skia_png_reset_crc +866:skia_png_benign_error +867:skgpu::ganesh::SurfaceContext::drawingManager\28\29 +868:skcms_TransferFunction_invert +869:skcms_TransferFunction_getType +870:hb_buffer_t::sync_so_far\28\29 +871:hb_buffer_t::move_to\28unsigned\20int\29 +872:VP8ExitCritical +873:SkTDStorage::resize\28int\29 +874:SkStrokeRec::SkStrokeRec\28SkPaint\20const&\2c\20float\29 +875:SkStream::readPackedUInt\28unsigned\20long*\29 +876:SkSL::Type::coercionCost\28SkSL::Type\20const&\29\20const +877:SkSL::Type::clone\28SkSL::Context\20const&\2c\20SkSL::SymbolTable*\29\20const +878:SkSL::RP::Generator::writeStatement\28SkSL::Statement\20const&\29 +879:SkSL::Parser::operatorRight\28SkSL::Parser::AutoDepth&\2c\20SkSL::OperatorKind\2c\20std::__2::unique_ptr>\20\28SkSL::Parser::*\29\28\29\2c\20std::__2::unique_ptr>&\29 +880:SkRuntimeEffectBuilder::writableUniformData\28\29 +881:SkRuntimeEffect::findUniform\28std::__2::basic_string_view>\29\20const +882:SkRegion::Cliperator::next\28\29 +883:SkRegion::Cliperator::Cliperator\28SkRegion\20const&\2c\20SkIRect\20const&\29 +884:SkReadBuffer::skip\28unsigned\20long\29 +885:SkReadBuffer::readFlattenable\28SkFlattenable::Type\29 +886:SkRRect::setOval\28SkRect\20const&\29 +887:SkRRect::initializeRect\28SkRect\20const&\29 +888:SkRGBA4f<\28SkAlphaType\293>::toSkColor\28\29\20const +889:SkPaint::operator=\28SkPaint&&\29 +890:SkImageFilter_Base::getFlattenableType\28\29\20const +891:SkConic::computeQuadPOW2\28float\29\20const +892:SkCanvas::translate\28float\2c\20float\29 +893:SkCanvas::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +894:SkAAClip::quickContains\28int\2c\20int\2c\20int\2c\20int\29\20const +895:OT::hb_ot_apply_context_t::hb_ot_apply_context_t\28unsigned\20int\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +896:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\29 +897:GrOpFlushState::caps\28\29\20const +898:GrGeometryProcessor::ProgramImpl::WriteLocalCoord\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20GrShaderVar\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +899:GrGLTextureParameters::SamplerOverriddenState::SamplerOverriddenState\28\29 +900:GrGLGpu::deleteFramebuffer\28unsigned\20int\29 +901:GrDrawOpAtlas::~GrDrawOpAtlas\28\29 +902:FT_Get_Module +903:Cr_z__tr_flush_block +904:AlmostBequalUlps\28float\2c\20float\29 +905:std::__2::pair::type\2c\20std::__2::__unwrap_ref_decay::type>\20std::__2::make_pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +906:std::__2::numpunct::truename\5babi:nn180100\5d\28\29\20const +907:std::__2::moneypunct::do_grouping\28\29\20const +908:std::__2::locale::use_facet\28std::__2::locale::id&\29\20const +909:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29\20const +910:std::__2::char_traits::copy\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +911:std::__2::basic_string\2c\20std::__2::allocator>::empty\5babi:nn180100\5d\28\29\20const +912:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_cap\5babi:nn180100\5d\28unsigned\20long\29 +913:sktext::gpu::BagOfBytes::needMoreBytes\28int\2c\20int\29 +914:skia_png_save_int_32 +915:skia_png_safecat +916:skia_png_gamma_significant +917:skgpu::ganesh::SurfaceContext::readPixels\28GrDirectContext*\2c\20GrPixmap\2c\20SkIPoint\29 +918:llroundf +919:hb_font_get_nominal_glyph +920:hb_buffer_t::clear_output\28\29 +921:expf +922:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28SkPaint\20const&\29\2c\20SkCanvas*\2c\20SkPaint*\29 +923:emscripten::internal::FunctionInvoker::invoke\28unsigned\20long\20\28**\29\28GrDirectContext&\29\2c\20GrDirectContext*\29 +924:cff_parse_num +925:\28anonymous\20namespace\29::write_trc_tag\28skcms_Curve\20const&\29 +926:SkTSect::SkTSect\28SkTCurve\20const&\29 +927:SkString::set\28char\20const*\2c\20unsigned\20long\29 +928:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Context\20const&\2c\20SkSL::Symbol*\29 +929:SkSL::Swizzle::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29 +930:SkSL::String::Separator\28\29::Output::~Output\28\29 +931:SkSL::Parser::layoutInt\28\29 +932:SkSL::Parser::expectIdentifier\28SkSL::Token*\29 +933:SkSL::Expression::description\28\29\20const +934:SkResourceCache::Key::init\28void*\2c\20unsigned\20long\20long\2c\20unsigned\20long\29 +935:SkNoDestructor::SkNoDestructor\28SkSL::String::Separator\28\29::Output&&\29 +936:SkMatrix::isSimilarity\28float\29\20const +937:SkMasks::getAlpha\28unsigned\20int\29\20const +938:SkImageFilters::Crop\28SkRect\20const&\2c\20SkTileMode\2c\20sk_sp\29 +939:SkImageFilter_Base::getChildOutput\28int\2c\20skif::Context\20const&\29\20const +940:SkIDChangeListener::List::List\28\29 +941:SkData::MakeFromMalloc\28void\20const*\2c\20unsigned\20long\29 +942:SkDRect::setBounds\28SkTCurve\20const&\29 +943:SkColorSpace::MakeRGB\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +944:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +945:SafeDecodeSymbol +946:PS_Conv_ToFixed +947:GrTriangulator::Line::intersect\28GrTriangulator::Line\20const&\2c\20SkPoint*\29\20const +948:GrSimpleMeshDrawOpHelper::isCompatible\28GrSimpleMeshDrawOpHelper\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +949:GrOpsRenderPass::bindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +950:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkISize\20const&\29 +951:GrGLSLShaderBuilder::appendTextureLookup\28GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +952:GrColorInfo::GrColorInfo\28SkColorInfo\20const&\29 +953:FT_Stream_Read +954:FT_Activate_Size +955:AlmostDequalUlps\28double\2c\20double\29 +956:719 +957:720 +958:721 +959:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\29 +960:tt_face_get_name +961:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Module\20const*\29 +962:std::__2::to_string\28long\20long\29 +963:std::__2::__libcpp_locale_guard::~__libcpp_locale_guard\5babi:nn180100\5d\28\29 +964:std::__2::__libcpp_locale_guard::__libcpp_locale_guard\5babi:nn180100\5d\28__locale_struct*&\29 +965:skif::FilterResult::~FilterResult\28\29 +966:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +967:skia_png_app_error +968:skgpu::ganesh::SurfaceFillContext::getOpsTask\28\29 +969:log2f +970:llround +971:hb_ot_layout_lookup_would_substitute +972:ft_module_get_service +973:classify\28skcms_TransferFunction\20const&\2c\20TF_PQish*\2c\20TF_HLGish*\29 +974:__sindf +975:__shlim +976:__cosdf +977:SkTiff::ImageFileDirectory::getEntryValuesGeneric\28unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20int\2c\20void*\29\20const +978:SkTDStorage::removeShuffle\28int\29 +979:SkSurface::getCanvas\28\29 +980:SkSL::cast_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +981:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitType\28SkSL::Type\20const&\29 +982:SkSL::Variable::initialValue\28\29\20const +983:SkSL::SymbolTable::addArrayDimension\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20int\29 +984:SkSL::StringStream::str\28\29\20const +985:SkSL::RP::Program::appendCopy\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20std::byte*\2c\20SkSL::RP::ProgramOp\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29\20const +986:SkSL::RP::Generator::makeLValue\28SkSL::Expression\20const&\2c\20bool\29 +987:SkSL::GLSLCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +988:SkSL::Analysis::UpdateVariableRefKind\28SkSL::Expression*\2c\20SkSL::VariableRefKind\2c\20SkSL::ErrorReporter*\29 +989:SkRegion::setEmpty\28\29 +990:SkRasterPipeline::run\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +991:SkRasterPipeline::appendLoadDst\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +992:SkRRect::setRectRadii\28SkRect\20const&\2c\20SkPoint\20const*\29 +993:SkPointPriv::DistanceToLineSegmentBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +994:SkPictureRecorder::~SkPictureRecorder\28\29 +995:SkPath::isConvex\28\29\20const +996:SkPath::conicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\29 +997:SkPaint::setImageFilter\28sk_sp\29 +998:SkOpSpanBase::contains\28SkOpSegment\20const*\29\20const +999:SkOpContourBuilder::flush\28\29 +1000:SkMipmap::ComputeLevelCount\28int\2c\20int\29 +1001:SkMatrix::reset\28\29 +1002:SkMatrix::preTranslate\28float\2c\20float\29 +1003:SkMatrix::preScale\28float\2c\20float\29 +1004:SkMatrix::mapPointsToHomogeneous\28SkSpan\2c\20SkSpan\29\20const +1005:SkMask::computeImageSize\28\29\20const +1006:SkKnownRuntimeEffects::GetKnownRuntimeEffect\28SkKnownRuntimeEffects::StableKey\29 +1007:SkIDChangeListener::List::~List\28\29 +1008:SkIDChangeListener::List::changed\28\29 +1009:SkColorTypeIsAlwaysOpaque\28SkColorType\29 +1010:SkColorSpace::Equals\28SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +1011:SkColorFilter::filterColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\2c\20SkColorSpace*\29\20const +1012:SkCodec::applyColorXform\28void*\2c\20void\20const*\2c\20int\29\20const +1013:SkBitmapCache::Rec::getKey\28\29\20const +1014:SkBitmap::peekPixels\28SkPixmap*\29\20const +1015:SkAutoPixmapStorage::SkAutoPixmapStorage\28\29 +1016:RunBasedAdditiveBlitter::flush\28\29 +1017:GrSurface::onRelease\28\29 +1018:GrStyledShape::unstyledKeySize\28\29\20const +1019:GrShape::convex\28bool\29\20const +1020:GrRenderTargetProxy::arenas\28\29 +1021:GrRecordingContext::threadSafeCache\28\29 +1022:GrProxyProvider::caps\28\29\20const +1023:GrOp::GrOp\28unsigned\20int\29 +1024:GrMakeUncachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +1025:GrGpuResource::hasRef\28\29\20const +1026:GrGLSLShaderBuilder::getMangledFunctionName\28char\20const*\29 +1027:GrGLSLProgramBuilder::nameVariable\28char\2c\20char\20const*\2c\20bool\29 +1028:GrGLGpu::bindBuffer\28GrGpuBufferType\2c\20GrBuffer\20const*\29 +1029:GrGLAttribArrayState::set\28GrGLGpu*\2c\20int\2c\20GrBuffer\20const*\2c\20GrVertexAttribType\2c\20SkSLType\2c\20int\2c\20unsigned\20long\2c\20int\29 +1030:GrAAConvexTessellator::Ring::computeNormals\28GrAAConvexTessellator\20const&\29 +1031:GrAAConvexTessellator::Ring::computeBisectors\28GrAAConvexTessellator\20const&\29 +1032:Cr_z_adler32 +1033:vsnprintf +1034:top12 +1035:toSkImageInfo\28SimpleImageInfo\20const&\29 +1036:std::__2::vector>::__destroy_vector::__destroy_vector\5babi:nn180100\5d\28std::__2::vector>&\29 +1037:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +1038:std::__2::__tree\2c\20std::__2::__map_value_compare\2c\20std::__2::less\2c\20true>\2c\20std::__2::allocator>>::destroy\28std::__2::__tree_node\2c\20void*>*\29 +1039:std::__2::__num_put_base::__identify_padding\28char*\2c\20char*\2c\20std::__2::ios_base\20const&\29 +1040:std::__2::__num_get_base::__get_base\28std::__2::ios_base&\29 +1041:std::__2::__libcpp_asprintf_l\28char**\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +1042:skia_private::THashTable::Traits>::removeSlot\28int\29 +1043:skia_png_zstream_error +1044:skia::textlayout::TextLine::iterateThroughVisualRuns\28bool\2c\20std::__2::function\2c\20float*\29>\20const&\29\20const +1045:skia::textlayout::ParagraphImpl::cluster\28unsigned\20long\29 +1046:skia::textlayout::Cluster::runOrNull\28\29\20const +1047:skgpu::ganesh::SurfaceFillContext::replaceOpsTask\28\29 +1048:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1049:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1050:hb_serialize_context_t::pop_pack\28bool\29 +1051:hb_sanitize_context_t::return_t\20OT::Paint::dispatch\28hb_sanitize_context_t*\29\20const +1052:hb_buffer_reverse +1053:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1054:atan2f +1055:afm_parser_read_vals +1056:__extenddftf2 +1057:\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1058:\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1059:\28anonymous\20namespace\29::colrv1_transform\28FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\2c\20SkCanvas*\2c\20SkMatrix*\29 +1060:WebPRescalerImport +1061:SkString::Rec::Make\28char\20const*\2c\20unsigned\20long\29::$_0::operator\28\29\28\29\20const +1062:SkStrike::digestFor\28skglyph::ActionType\2c\20SkPackedGlyphID\29 +1063:SkStream::readS16\28short*\29 +1064:SkSL::compile_and_shrink\28SkSL::Compiler*\2c\20SkSL::ProgramKind\2c\20SkSL::ModuleType\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::Module\20const*\29 +1065:SkSL::VariableReference::VariableReference\28SkSL::Position\2c\20SkSL::Variable\20const*\2c\20SkSL::VariableRefKind\29 +1066:SkSL::SymbolTable::lookup\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +1067:SkSL::ProgramUsage::get\28SkSL::Variable\20const&\29\20const +1068:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29 +1069:SkSL::InlineCandidateAnalyzer::visitExpression\28std::__2::unique_ptr>*\29 +1070:SkSL::GetModuleData\28SkSL::ModuleType\2c\20char\20const*\29 +1071:SkSL::GLSLCodeGenerator::write\28std::__2::basic_string_view>\29 +1072:SkSL::GLSLCodeGenerator::getTypePrecision\28SkSL::Type\20const&\29 +1073:SkReadBuffer::readByteArray\28void*\2c\20unsigned\20long\29 +1074:SkRBuffer::read\28void*\2c\20unsigned\20long\29 +1075:SkPictureData::optionalPaint\28SkReadBuffer*\29\20const +1076:SkPath::getGenerationID\28\29\20const +1077:SkPaint::setStrokeWidth\28float\29 +1078:SkOpSegment::nextChase\28SkOpSpanBase**\2c\20int*\2c\20SkOpSpan**\2c\20SkOpSpanBase**\29\20const +1079:SkMemoryStream::Make\28sk_sp\29 +1080:SkMatrix::postScale\28float\2c\20float\29 +1081:SkIntersections::removeOne\28int\29 +1082:SkDLine::ptAtT\28double\29\20const +1083:SkBitmap::getAddr\28int\2c\20int\29\20const +1084:SkAAClip::setEmpty\28\29 +1085:PS_Conv_Strtol +1086:OT::Layout::GSUB_impl::SubstLookup*\20hb_serialize_context_t::push\28\29 +1087:OT::CmapSubtable::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +1088:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +1089:GrTriangulator::makeConnectingEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\2c\20int\29 +1090:GrTextureProxy::~GrTextureProxy\28\29 +1091:GrSimpleMeshDrawOpHelper::createProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +1092:GrResourceAllocator::addInterval\28GrSurfaceProxy*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20GrResourceAllocator::ActualUse\2c\20GrResourceAllocator::AllowRecycling\29 +1093:GrRecordingContextPriv::makeSFCWithFallback\28GrImageInfo\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1094:GrGpuResource::hasNoCommandBufferUsages\28\29\20const +1095:GrGpuBuffer::updateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +1096:GrGLTextureParameters::NonsamplerState::NonsamplerState\28\29 +1097:GrGLSLShaderBuilder::~GrGLSLShaderBuilder\28\29 +1098:GrGLGpu::prepareToDraw\28GrPrimitiveType\29 +1099:GrGLFormatFromGLEnum\28unsigned\20int\29 +1100:GrBackendTexture::getBackendFormat\28\29\20const +1101:GrBackendFormats::MakeGL\28unsigned\20int\2c\20unsigned\20int\29 +1102:GrBackendFormatToCompressionType\28GrBackendFormat\20const&\29 +1103:FilterLoop24_C +1104:AAT::Lookup::sanitize\28hb_sanitize_context_t*\29\20const +1105:uprv_free_skia +1106:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +1107:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +1108:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +1109:strcpy +1110:std::__2::vector>::size\5babi:nn180100\5d\28\29\20const +1111:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +1112:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\20const*\2c\20char\20const*\29\20const +1113:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::AddTrianglesWhenChopping\2c\20skgpu::tess::DiscardFlatCurves>::writeTriangleStack\28skgpu::tess::MiddleOutPolygonTriangulator::PoppedTriangleStack&&\29 +1114:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +1115:std::__2::char_traits::eq_int_type\5babi:nn180100\5d\28int\2c\20int\29 +1116:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20char\20const*\29 +1117:std::__2::basic_string\2c\20std::__2::allocator>::__get_long_cap\5babi:nn180100\5d\28\29\20const +1118:skia_private::THashTable::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +1119:skia_png_write_finish_row +1120:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29 +1121:skcms_GetTagBySignature +1122:sk_doubles_nearly_equal_ulps\28double\2c\20double\2c\20unsigned\20char\29 +1123:scalbn +1124:hb_buffer_get_glyph_infos +1125:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1126:get_gsubgpos_table\28hb_face_t*\2c\20unsigned\20int\29 +1127:exp2f +1128:cf2_stack_getReal +1129:cf2_hintmap_map +1130:antifilldot8\28int\2c\20int\2c\20int\2c\20int\2c\20SkBlitter*\2c\20bool\29 +1131:afm_stream_skip_spaces +1132:WebPRescalerInit +1133:WebPRescalerExportRow +1134:SkWStream::writeDecAsText\28int\29 +1135:SkTypeface::fontStyle\28\29\20const +1136:SkTextBlobBuilder::allocInternal\28SkFont\20const&\2c\20SkTextBlob::GlyphPositioning\2c\20int\2c\20int\2c\20SkPoint\2c\20SkRect\20const*\29 +1137:SkTDStorage::append\28void\20const*\2c\20int\29 +1138:SkString::SkString\28char\20const*\2c\20unsigned\20long\29 +1139:SkShaders::Color\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\29 +1140:SkShader::makeWithLocalMatrix\28SkMatrix\20const&\29\20const +1141:SkSL::Parser::assignmentExpression\28\29 +1142:SkSL::ConstructorSplat::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1143:SkSL::ConstructorScalarCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1144:SkResourceCache::Find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +1145:SkRegion::SkRegion\28SkIRect\20const&\29 +1146:SkRasterPipeline::appendTransferFunction\28skcms_TransferFunction\20const&\29 +1147:SkRasterPipeline::appendStore\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +1148:SkRRect::checkCornerContainment\28float\2c\20float\29\20const +1149:SkPictureData::getImage\28SkReadBuffer*\29\20const +1150:SkPathPriv::Raw\28SkPath\20const&\29 +1151:SkPathMeasure::getLength\28\29 +1152:SkPathBuilder::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +1153:SkPathBuilder::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +1154:SkPath::quadTo\28float\2c\20float\2c\20float\2c\20float\29 +1155:SkPaint::refPathEffect\28\29\20const +1156:SkOpContour::addLine\28SkPoint*\29 +1157:SkNextID::ImageID\28\29 +1158:SkMipmap::getLevel\28int\2c\20SkMipmap::Level*\29\20const +1159:SkMatrix::ScaleTranslate\28float\2c\20float\2c\20float\2c\20float\29 +1160:SkJSONWriter::appendCString\28char\20const*\2c\20char\20const*\29 +1161:SkIntersections::setCoincident\28int\29 +1162:SkImageFilter_Base::flatten\28SkWriteBuffer&\29\20const +1163:SkFont::setSubpixel\28bool\29 +1164:SkDescriptor::operator==\28SkDescriptor\20const&\29\20const +1165:SkDLine::NearPointV\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1166:SkDLine::NearPointH\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1167:SkDLine::ExactPointV\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1168:SkDLine::ExactPointH\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +1169:SkConvertPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +1170:SkColorSpaceXformSteps::apply\28SkRasterPipeline*\29\20const +1171:SkCanvas::imageInfo\28\29\20const +1172:SkCanvas::drawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +1173:SkCanvas::drawColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +1174:SkBulkGlyphMetrics::~SkBulkGlyphMetrics\28\29 +1175:SkBulkGlyphMetrics::SkBulkGlyphMetrics\28SkStrikeSpec\20const&\29 +1176:SkBlockAllocator::releaseBlock\28SkBlockAllocator::Block*\29 +1177:SkAAClipBlitterWrapper::init\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1178:SkAAClipBlitterWrapper::SkAAClipBlitterWrapper\28\29 +1179:SkAAClipBlitterWrapper::SkAAClipBlitterWrapper\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1180:OT::MVAR::get_var\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29\20const +1181:GrXferProcessor::GrXferProcessor\28GrProcessor::ClassID\2c\20bool\2c\20GrProcessorAnalysisCoverage\29 +1182:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20GrCaps\20const&\2c\20float\20const*\29 +1183:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\29 +1184:GrSimpleMeshDrawOpHelper::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20bool*\29 +1185:GrShape::operator=\28GrShape\20const&\29 +1186:GrRecordingContext::OwnedArenas::get\28\29 +1187:GrProxyProvider::createProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\29 +1188:GrProxyProvider::assignUniqueKeyToProxy\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\29 +1189:GrProcessorSet::finalize\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrCaps\20const&\2c\20GrClampType\2c\20SkRGBA4f<\28SkAlphaType\292>*\29 +1190:GrOp::cutChain\28\29 +1191:GrMeshDrawTarget::makeVertexWriter\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +1192:GrGpuResource::GrGpuResource\28GrGpu*\2c\20std::__2::basic_string_view>\29 +1193:GrGeometryProcessor::TextureSampler::reset\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +1194:GrGeometryProcessor::AttributeSet::Iter::operator++\28\29 +1195:GrGeometryProcessor::AttributeSet::Iter::operator*\28\29\20const +1196:GrGLTextureParameters::set\28GrGLTextureParameters::SamplerOverriddenState\20const*\2c\20GrGLTextureParameters::NonsamplerState\20const&\2c\20unsigned\20long\20long\29 +1197:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29 +1198:GrBackendTexture::~GrBackendTexture\28\29 +1199:FT_Outline_Get_CBox +1200:FT_Get_Sfnt_Table +1201:AutoLayerForImageFilter::AutoLayerForImageFilter\28AutoLayerForImageFilter&&\29 +1202:tanf +1203:std::__2::moneypunct::negative_sign\5babi:nn180100\5d\28\29\20const +1204:std::__2::moneypunct::frac_digits\5babi:nn180100\5d\28\29\20const +1205:std::__2::moneypunct::do_pos_format\28\29\20const +1206:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +1207:std::__2::char_traits::copy\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20unsigned\20long\29 +1208:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1209:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1210:std::__2::basic_string\2c\20std::__2::allocator>::__set_size\5babi:nn180100\5d\28unsigned\20long\29 +1211:std::__2::basic_string\2c\20std::__2::allocator>::__get_short_size\5babi:nn180100\5d\28\29\20const +1212:std::__2::basic_string\2c\20std::__2::allocator>::__assign_external\28char\20const*\2c\20unsigned\20long\29 +1213:std::__2::__unwrap_iter_impl\2c\20true>::__unwrap\5babi:nn180100\5d\28std::__2::__wrap_iter\29 +1214:std::__2::__itoa::__append2\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +1215:sktext::SkStrikePromise::SkStrikePromise\28sktext::SkStrikePromise&&\29 +1216:skif::LayerSpace::ceil\28\29\20const +1217:skif::FilterResult::analyzeBounds\28SkMatrix\20const&\2c\20SkIRect\20const&\2c\20skif::FilterResult::BoundsScope\29\20const +1218:skia_private::THashMap::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +1219:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +1220:skia_png_read_finish_row +1221:skia_png_handle_unknown +1222:skia_png_gamma_correct +1223:skia_png_colorspace_sync +1224:skia_png_app_warning +1225:skia::textlayout::TextStyle::operator=\28skia::textlayout::TextStyle\20const&\29 +1226:skia::textlayout::TextLine::offset\28\29\20const +1227:skia::textlayout::Run::placeholderStyle\28\29\20const +1228:skgpu::ganesh::SurfaceFillContext::fillRectWithFP\28SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +1229:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20std::__2::basic_string_view>\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1230:skgpu::ganesh::SurfaceContext::PixelTransferResult::~PixelTransferResult\28\29 +1231:skgpu::ganesh::ClipStack::SaveRecord::state\28\29\20const +1232:skcpu::Draw::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkRect\20const*\29\20const +1233:ps_parser_to_token +1234:hb_face_t::load_upem\28\29\20const +1235:hb_buffer_t::merge_out_clusters\28unsigned\20int\2c\20unsigned\20int\29 +1236:hb_buffer_t::enlarge\28unsigned\20int\29 +1237:hb_buffer_destroy +1238:emscripten_builtin_calloc +1239:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20SkCanvas::PointMode\2c\20unsigned\20long\2c\20int\2c\20SkPaint&\29\2c\20SkCanvas*\2c\20SkCanvas::PointMode\2c\20unsigned\20long\2c\20int\2c\20SkPaint*\29 +1240:cff_index_init +1241:cf2_glyphpath_curveTo +1242:bool\20std::__2::operator!=\5babi:nn180100\5d\28std::__2::__wrap_iter\20const&\2c\20std::__2::__wrap_iter\20const&\29 +1243:__isspace +1244:WebPCopyPlane +1245:SkWStream::writeScalarAsText\28float\29 +1246:SkTextBlobBuilder::TightRunBounds\28SkTextBlob::RunRecord\20const&\29 +1247:SkTMaskGamma_build_correcting_lut\28unsigned\20char*\2c\20unsigned\20int\2c\20float\2c\20SkColorSpaceLuminance\20const&\2c\20float\29 +1248:SkSurfaces::RenderTarget\28GrRecordingContext*\2c\20skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20int\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const*\2c\20bool\2c\20bool\29 +1249:SkSurface_Raster::type\28\29\20const +1250:SkSurface::makeImageSnapshot\28\29 +1251:SkString::swap\28SkString&\29 +1252:SkString::reset\28\29 +1253:SkSampler::Fill\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::ZeroInitialized\29 +1254:SkSL::Type::MakeTextureType\28char\20const*\2c\20SpvDim_\2c\20bool\2c\20bool\2c\20bool\2c\20SkSL::Type::TextureAccess\29 +1255:SkSL::Type::MakeSpecialType\28char\20const*\2c\20char\20const*\2c\20SkSL::Type::TypeKind\29 +1256:SkSL::RP::Builder::push_slots_or_immutable\28SkSL::RP::SlotRange\2c\20SkSL::RP::BuilderOp\29 +1257:SkSL::RP::Builder::push_clone_from_stack\28SkSL::RP::SlotRange\2c\20int\2c\20int\29 +1258:SkSL::Program::~Program\28\29 +1259:SkSL::PipelineStage::PipelineStageCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +1260:SkSL::Operator::isAssignment\28\29\20const +1261:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mul\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +1262:SkSL::InlineCandidateAnalyzer::visitStatement\28std::__2::unique_ptr>*\2c\20bool\29 +1263:SkSL::GLSLCodeGenerator::writeModifiers\28SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20bool\29 +1264:SkSL::ExpressionStatement::Make\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +1265:SkSL::ConstructorCompound::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +1266:SkSL::Analysis::IsSameExpressionTree\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +1267:SkSL::AliasType::resolve\28\29\20const +1268:SkResourceCache::Add\28SkResourceCache::Rec*\2c\20void*\29 +1269:SkRegion::writeToMemory\28void*\29\20const +1270:SkReadBuffer::readMatrix\28SkMatrix*\29 +1271:SkReadBuffer::readBool\28\29 +1272:SkRasterPipeline::appendConstantColor\28SkArenaAlloc*\2c\20float\20const*\29 +1273:SkRasterClip::SkRasterClip\28\29 +1274:SkRasterClip::SkRasterClip\28SkRasterClip\20const&\29 +1275:SkPathWriter::isClosed\28\29\20const +1276:SkPathMeasure::~SkPathMeasure\28\29 +1277:SkPathMeasure::SkPathMeasure\28SkPath\20const&\2c\20bool\2c\20float\29 +1278:SkPathBuilder::addRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1279:SkPath::makeFillType\28SkPathFillType\29\20const +1280:SkPath::isRect\28SkRect*\2c\20bool*\2c\20SkPathDirection*\29\20const +1281:SkPath::cubicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +1282:SkPath::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1283:SkParse::FindScalars\28char\20const*\2c\20float*\2c\20int\29 +1284:SkPaint::operator=\28SkPaint\20const&\29 +1285:SkOpSpan::computeWindSum\28\29 +1286:SkOpSegment::existing\28double\2c\20SkOpSegment\20const*\29\20const +1287:SkOpSegment::addCurveTo\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkPathWriter*\29\20const +1288:SkOpPtT::find\28SkOpSegment\20const*\29\20const +1289:SkOpCoincidence::addEndMovedSpans\28SkOpSpan\20const*\2c\20SkOpSpanBase\20const*\29 +1290:SkNoDrawCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +1291:SkMemoryStream::SkMemoryStream\28void\20const*\2c\20unsigned\20long\2c\20bool\29 +1292:SkMakeImageFromRasterBitmap\28SkBitmap\20const&\2c\20SkCopyPixelsMode\29 +1293:SkImage_Ganesh::SkImage_Ganesh\28sk_sp\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20SkColorInfo\29 +1294:SkImageInfo::makeColorSpace\28sk_sp\29\20const +1295:SkImageInfo::computeOffset\28int\2c\20int\2c\20unsigned\20long\29\20const +1296:SkGlyph::imageSize\28\29\20const +1297:SkFont::textToGlyphs\28void\20const*\2c\20unsigned\20long\2c\20SkTextEncoding\2c\20SkSpan\29\20const +1298:SkDrawTiler::SkDrawTiler\28SkBitmapDevice*\2c\20SkRect\20const*\29 +1299:SkData::MakeZeroInitialized\28unsigned\20long\29 +1300:SkColorSpaceSingletonFactory::Make\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +1301:SkColorFilter::makeComposed\28sk_sp\29\20const +1302:SkCodec::SkCodec\28SkEncodedInfo&&\2c\20skcms_PixelFormat\2c\20std::__2::unique_ptr>\2c\20SkEncodedOrigin\29 +1303:SkChopQuadAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +1304:SkCanvas::drawImageRect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +1305:SkBmpCodec::getDstRow\28int\2c\20int\29\20const +1306:SkBlockMemoryStream::getLength\28\29\20const +1307:SkBitmap::getGenerationID\28\29\20const +1308:SkAutoDescriptor::SkAutoDescriptor\28\29 +1309:OT::GSUB_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1310:OT::DeltaSetIndexMap::sanitize\28hb_sanitize_context_t*\29\20const +1311:OT::ClassDef::sanitize\28hb_sanitize_context_t*\29\20const +1312:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +1313:GrTriangulator::Comparator::sweep_lt\28SkPoint\20const&\2c\20SkPoint\20const&\29\20const +1314:GrTextureProxy::textureType\28\29\20const +1315:GrSurfaceProxy::createSurfaceImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\29\20const +1316:GrStyledShape::writeUnstyledKey\28unsigned\20int*\29\20const +1317:GrSkSLFP::setInput\28std::__2::unique_ptr>\29 +1318:GrSimpleMeshDrawOpHelperWithStencil::GrSimpleMeshDrawOpHelperWithStencil\28GrProcessorSet*\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +1319:GrResourceProvider::createPatternedIndexBuffer\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\2c\20skgpu::UniqueKey\20const*\29 +1320:GrRenderTarget::~GrRenderTarget\28\29 +1321:GrRecordingContextPriv::makeSC\28GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +1322:GrOpFlushState::detachAppliedClip\28\29 +1323:GrGpuBuffer::map\28\29 +1324:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\29 +1325:GrGLSLShaderBuilder::declAppend\28GrShaderVar\20const&\29 +1326:GrGLGpu::didDrawTo\28GrRenderTarget*\29 +1327:GrFragmentProcessors::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkColorFilter\20const*\2c\20std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +1328:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +1329:GrCaps::validateSurfaceParams\28SkISize\20const&\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20GrTextureType\29\20const +1330:GrBufferAllocPool::putBack\28unsigned\20long\29 +1331:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29::$_0::operator\28\29\28SkIRect\2c\20SkIRect\29\20const +1332:GrBackendTexture::GrBackendTexture\28\29 +1333:GrAAConvexTessellator::createInsetRing\28GrAAConvexTessellator::Ring\20const&\2c\20GrAAConvexTessellator::Ring*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +1334:FT_Stream_GetByte +1335:FT_Set_Transform +1336:FT_Add_Module +1337:AutoLayerForImageFilter::operator=\28AutoLayerForImageFilter&&\29 +1338:AlmostLessOrEqualUlps\28float\2c\20float\29 +1339:ActiveEdge::intersect\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29\20const +1340:wrapper_cmp +1341:void\20std::__2::reverse\5babi:nn180100\5d\28char*\2c\20char*\29 +1342:void\20std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__do_rehash\28unsigned\20long\29 +1343:void\20emscripten::internal::MemberAccess::setWire\28bool\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\2c\20bool\29 +1344:std::__2::vector>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29 +1345:std::__2::vector>::__alloc\5babi:nn180100\5d\28\29 +1346:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ios_base&\2c\20wchar_t\29 +1347:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ios_base&\2c\20char\29 +1348:std::__2::char_traits::to_int_type\5babi:nn180100\5d\28char\29 +1349:std::__2::basic_ios>::~basic_ios\28\29 +1350:std::__2::basic_ios>::setstate\5babi:nn180100\5d\28unsigned\20int\29 +1351:std::__2::__compressed_pair_elem::__compressed_pair_elem\5babi:nn180100\5d\28void\20\28*&&\29\28void*\29\29 +1352:sktext::StrikeMutationMonitor::~StrikeMutationMonitor\28\29 +1353:sktext::StrikeMutationMonitor::StrikeMutationMonitor\28sktext::StrikeForGPU*\29 +1354:skif::LayerSpace::contains\28skif::LayerSpace\20const&\29\20const +1355:skif::FilterResult::resolve\28skif::Context\20const&\2c\20skif::LayerSpace\2c\20bool\29\20const +1356:skif::FilterResult::AutoSurface::snap\28\29 +1357:skif::FilterResult::AutoSurface::AutoSurface\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult::PixelBoundary\2c\20bool\2c\20SkSurfaceProps\20const*\29 +1358:skif::Backend::~Backend\28\29_2363 +1359:skia_private::TArray::push_back\28skif::FilterResult::Builder::SampledFilterResult&&\29 +1360:skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>::~STArray\28\29 +1361:skia_png_chunk_unknown_handling +1362:skia::textlayout::TextStyle::TextStyle\28\29 +1363:skia::textlayout::TextLine::iterateThroughSingleRunByStyles\28skia::textlayout::TextLine::TextAdjustment\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::StyleType\2c\20std::__2::function\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\20const&\29\20const +1364:skgpu::ganesh::\28anonymous\20namespace\29::update_degenerate_test\28skgpu::ganesh::\28anonymous\20namespace\29::DegenerateTestData*\2c\20SkPoint\20const&\29 +1365:skgpu::ganesh::SurfaceFillContext::internalClear\28SkIRect\20const*\2c\20std::__2::array\2c\20bool\29 +1366:skgpu::ganesh::SurfaceDrawContext::fillRectToRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +1367:skgpu::ganesh::SurfaceDrawContext::drawRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const*\29 +1368:skgpu::SkSLToBackend\28SkSL::ShaderCaps\20const*\2c\20bool\20\28*\29\28SkSL::Program&\2c\20SkSL::ShaderCaps\20const*\2c\20SkSL::NativeShader*\29\2c\20char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::NativeShader*\2c\20SkSL::ProgramInterface*\2c\20skgpu::ShaderErrorHandler*\29 +1369:skgpu::GetApproxSize\28SkISize\29 +1370:skcms_Transform::$_2::operator\28\29\28skcms_Curve\20const*\2c\20int\29\20const +1371:skcms_Matrix3x3_invert +1372:read_curve\28unsigned\20char\20const*\2c\20unsigned\20int\2c\20skcms_Curve*\2c\20unsigned\20int*\29 +1373:powf +1374:non-virtual\20thunk\20to\20GrOpFlushState::allocator\28\29 +1375:hb_lazy_loader_t\2c\20hb_face_t\2c\2024u\2c\20OT::GDEF_accelerator_t>::do_destroy\28OT::GDEF_accelerator_t*\29 +1376:hb_buffer_set_flags +1377:hb_buffer_append +1378:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1379:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1380:hb_bit_set_t::add_range\28unsigned\20int\2c\20unsigned\20int\29 +1381:emscripten::internal::MethodInvoker\29\2c\20void\2c\20SkFont*\2c\20sk_sp>::invoke\28void\20\28SkFont::*\20const&\29\28sk_sp\29\2c\20SkFont*\2c\20sk_sp*\29 +1382:emscripten::internal::Invoker::invoke\28unsigned\20long\20\28*\29\28\29\29 +1383:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +1384:cos +1385:char*\20std::__2::__rewrap_iter\5babi:nn180100\5d>\28char*\2c\20char*\29 +1386:cf2_glyphpath_lineTo +1387:bool\20emscripten::internal::MemberAccess::getWire\28bool\20RuntimeEffectUniform::*\20const&\2c\20RuntimeEffectUniform&\29 +1388:alloc_small +1389:af_latin_hints_compute_segments +1390:_hb_glyph_info_set_unicode_props\28hb_glyph_info_t*\2c\20hb_buffer_t*\29 +1391:__lshrti3 +1392:__letf2 +1393:__cxx_global_array_dtor_5176 +1394:\28anonymous\20namespace\29::SkBlurImageFilter::~SkBlurImageFilter\28\29 +1395:WebPDemuxGetI +1396:SkUTF::ToUTF16\28int\2c\20unsigned\20short*\29 +1397:SkTextBlobBuilder::~SkTextBlobBuilder\28\29 +1398:SkTextBlobBuilder::ConservativeRunBounds\28SkTextBlob::RunRecord\20const&\29 +1399:SkSynchronizedResourceCache::SkSynchronizedResourceCache\28unsigned\20long\29 +1400:SkSwizzler::swizzle\28void*\2c\20unsigned\20char\20const*\29 +1401:SkString::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +1402:SkString::insertUnichar\28unsigned\20long\2c\20int\29 +1403:SkStrikeSpec::findOrCreateScopedStrike\28sktext::StrikeForGPUCacheInterface*\29\20const +1404:SkStrikeCache::GlobalStrikeCache\28\29 +1405:SkShader::isAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +1406:SkSL::is_constant_value\28SkSL::Expression\20const&\2c\20double\29 +1407:SkSL::evaluate_pairwise_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +1408:SkSL::\28anonymous\20namespace\29::ReturnsOnAllPathsVisitor::visitStatement\28SkSL::Statement\20const&\29 +1409:SkSL::Type::MakeScalarType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type::NumberKind\2c\20signed\20char\2c\20signed\20char\29 +1410:SkSL::RP::Generator::pushBinaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +1411:SkSL::RP::Builder::push_clone\28int\2c\20int\29 +1412:SkSL::ProgramUsage::remove\28SkSL::Statement\20const*\29 +1413:SkSL::Parser::statement\28bool\29 +1414:SkSL::Operator::determineBinaryType\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\29\20const +1415:SkSL::ModifierFlags::description\28\29\20const +1416:SkSL::Layout::paddedDescription\28\29\20const +1417:SkSL::FieldAccess::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20int\2c\20SkSL::FieldAccessOwnerKind\29 +1418:SkSL::ConstructorCompoundCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1419:SkSL::Compiler::~Compiler\28\29 +1420:SkRuntimeEffect::findChild\28std::__2::basic_string_view>\29\20const +1421:SkResourceCache::remove\28SkResourceCache::Rec*\29 +1422:SkRectPriv::Subtract\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkIRect*\29 +1423:SkRasterClip::translate\28int\2c\20int\2c\20SkRasterClip*\29\20const +1424:SkRasterClip::setRect\28SkIRect\20const&\29 +1425:SkRasterClip::op\28SkIRect\20const&\2c\20SkClipOp\29 +1426:SkRRect::transform\28SkMatrix\20const&\29\20const +1427:SkPixmap::extractSubset\28SkPixmap*\2c\20SkIRect\20const&\29\20const +1428:SkPictureRecorder::SkPictureRecorder\28\29 +1429:SkPictureData::~SkPictureData\28\29 +1430:SkPathRef::CreateEmpty\28\29 +1431:SkPathRawShapes::Oval::Oval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1432:SkPathMeasure::nextContour\28\29 +1433:SkPathMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29 +1434:SkPathBuilder::incReserve\28int\2c\20int\2c\20int\29 +1435:SkPathBuilder::addRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1436:SkPath::moveTo\28float\2c\20float\29 +1437:SkPath::getPoint\28int\29\20const +1438:SkPath::addRaw\28SkPathRaw\20const&\29 +1439:SkPath::Polygon\28SkSpan\2c\20bool\2c\20SkPathFillType\2c\20bool\29 +1440:SkPaint::setBlender\28sk_sp\29 +1441:SkPaint::setAlphaf\28float\29 +1442:SkPaint::nothingToDraw\28\29\20const +1443:SkOpSegment::addT\28double\29 +1444:SkNoPixelsDevice::ClipState&\20skia_private::TArray::emplace_back\28SkIRect&&\2c\20bool&&\2c\20bool&&\29 +1445:SkMaskFilterBase::getFlattenableType\28\29\20const +1446:SkMD5::bytesWritten\28\29\20const +1447:SkImages::RasterFromBitmap\28SkBitmap\20const&\29 +1448:SkImage_Lazy::generator\28\29\20const +1449:SkImage_Base::~SkImage_Base\28\29 +1450:SkImage_Base::SkImage_Base\28SkImageInfo\20const&\2c\20unsigned\20int\29 +1451:SkImageInfo::Make\28SkISize\2c\20SkColorType\2c\20SkAlphaType\2c\20sk_sp\29 +1452:SkImage::refColorSpace\28\29\20const +1453:SkFont::setHinting\28SkFontHinting\29 +1454:SkFont::getWidthsBounds\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkPaint\20const*\29\20const +1455:SkFont::getMetrics\28SkFontMetrics*\29\20const +1456:SkFont::SkFont\28sk_sp\2c\20float\29 +1457:SkFont::SkFont\28\29 +1458:SkEmptyFontStyleSet::createTypeface\28int\29 +1459:SkDevice::setGlobalCTM\28SkM44\20const&\29 +1460:SkDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +1461:SkDevice::accessPixels\28SkPixmap*\29 +1462:SkConic::chopAt\28float\2c\20SkConic*\29\20const +1463:SkColorTypeBytesPerPixel\28SkColorType\29 +1464:SkColorFilter::asAColorMode\28unsigned\20int*\2c\20SkBlendMode*\29\20const +1465:SkCodec::fillIncompleteImage\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::ZeroInitialized\2c\20int\2c\20int\29 +1466:SkCanvas::saveLayer\28SkRect\20const*\2c\20SkPaint\20const*\29 +1467:SkCanvas::drawPaint\28SkPaint\20const&\29 +1468:SkCanvas::aboutToDraw\28SkPaint\20const&\2c\20SkRect\20const*\2c\20SkEnumBitMask\29 +1469:SkBulkGlyphMetrics::glyphs\28SkSpan\29 +1470:SkBitmap::operator=\28SkBitmap&&\29 +1471:SkBinaryWriteBuffer::writeByteArray\28void\20const*\2c\20unsigned\20long\29 +1472:SkArenaAllocWithReset::reset\28\29 +1473:OT::hb_ot_apply_context_t::_set_glyph_class\28unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +1474:OT::cmap::find_subtable\28unsigned\20int\2c\20unsigned\20int\29\20const +1475:OT::Layout::GPOS_impl::AnchorFormat3::sanitize\28hb_sanitize_context_t*\29\20const +1476:OT::GDEF_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1477:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +1478:GrTriangulator::Edge::disconnect\28\29 +1479:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\2c\20bool\29 +1480:GrSurfaceProxyView::mipmapped\28\29\20const +1481:GrSurfaceProxy::instantiateImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::UniqueKey\20const*\29 +1482:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +1483:GrSimpleMeshDrawOpHelperWithStencil::isCompatible\28GrSimpleMeshDrawOpHelperWithStencil\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +1484:GrSimpleMeshDrawOpHelperWithStencil::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20bool*\29 +1485:GrShape::simplifyRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20unsigned\20int\29 +1486:GrQuad::projectedBounds\28\29\20const +1487:GrProcessorSet::MakeEmptySet\28\29 +1488:GrPorterDuffXPFactory::SimpleSrcOverXP\28\29 +1489:GrPixmap::Allocate\28GrImageInfo\20const&\29 +1490:GrPathTessellationShader::MakeSimpleTriangleShader\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +1491:GrImageInfo::operator=\28GrImageInfo&&\29 +1492:GrImageInfo::makeColorType\28GrColorType\29\20const +1493:GrGpuResource::setUniqueKey\28skgpu::UniqueKey\20const&\29 +1494:GrGpuResource::release\28\29 +1495:GrGeometryProcessor::textureSampler\28int\29\20const +1496:GrGeometryProcessor::AttributeSet::end\28\29\20const +1497:GrGeometryProcessor::AttributeSet::begin\28\29\20const +1498:GrGLSLShaderBuilder::addFeature\28unsigned\20int\2c\20char\20const*\29 +1499:GrGLGpu::clearErrorsAndCheckForOOM\28\29 +1500:GrGLGpu::bindSurfaceFBOForPixelOps\28GrSurface*\2c\20int\2c\20unsigned\20int\2c\20GrGLGpu::TempFBOTarget\29 +1501:GrGLCompileAndAttachShader\28GrGLContext\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkSL::NativeShader\20const&\2c\20bool\2c\20GrThreadSafePipelineBuilder::Stats*\2c\20skgpu::ShaderErrorHandler*\29 +1502:GrDirectContextPriv::flushSurfaces\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +1503:GrDefaultGeoProcFactory::Make\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +1504:GrConvertPixels\28GrPixmap\20const&\2c\20GrCPixmap\20const&\2c\20bool\29 +1505:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +1506:GrColorInfo::GrColorInfo\28\29 +1507:GrBlurUtils::convolve_gaussian_1d\28skgpu::ganesh::SurfaceFillContext*\2c\20GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\2c\20SkIRect\20const&\2c\20SkAlphaType\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\29 +1508:GrBackendFormat::operator=\28GrBackendFormat\20const&\29 +1509:FT_GlyphLoader_Rewind +1510:FT_Done_Face +1511:Cr_z_inflate +1512:wmemchr +1513:void\20std::__2::__stable_sort\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +1514:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\29 +1515:toupper +1516:top12_15931 +1517:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1518:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1519:std::__2::ctype::narrow\5babi:nn180100\5d\28char\2c\20char\29\20const +1520:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28wchar_t\20const*\29 +1521:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1522:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>&&\29 +1523:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1524:std::__2::basic_streambuf>::~basic_streambuf\28\29 +1525:std::__2::__num_get::__stage2_int_loop\28wchar_t\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20wchar_t\20const*\29 +1526:std::__2::__num_get::__stage2_int_loop\28char\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20char\20const*\29 +1527:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1528:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1529:src_p\28unsigned\20char\2c\20unsigned\20char\29 +1530:skif::RoundOut\28SkRect\29 +1531:skif::FilterResult::subset\28skif::LayerSpace\20const&\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +1532:skif::FilterResult::operator=\28skif::FilterResult&&\29 +1533:skia_private::THashMap::operator\5b\5d\28SkSL::Variable\20const*\20const&\29 +1534:skia_private::TArray::resize_back\28int\29 +1535:skia_private::TArray::push_back_raw\28int\29 +1536:skia_png_sig_cmp +1537:skia_png_set_longjmp_fn +1538:skia_png_get_valid +1539:skia_png_gamma_8bit_correct +1540:skia_png_free_data +1541:skia_png_destroy_read_struct +1542:skia_png_chunk_warning +1543:skia::textlayout::operator==\28skia::textlayout::FontArguments\20const&\2c\20skia::textlayout::FontArguments\20const&\29 +1544:skia::textlayout::TextLine::measureTextInsideOneRun\28skia::textlayout::SkRange\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20float\2c\20bool\2c\20skia::textlayout::TextLine::TextAdjustment\29\20const +1545:skia::textlayout::Run::positionX\28unsigned\20long\29\20const +1546:skia::textlayout::Run::Run\28skia::textlayout::ParagraphImpl*\2c\20SkShaper::RunHandler::RunInfo\20const&\2c\20unsigned\20long\2c\20float\2c\20bool\2c\20float\2c\20unsigned\20long\2c\20float\29 +1547:skia::textlayout::ParagraphCacheKey::operator==\28skia::textlayout::ParagraphCacheKey\20const&\29\20const +1548:skia::textlayout::FontCollection::enableFontFallback\28\29 +1549:skia::textlayout::FontArguments::FontArguments\28skia::textlayout::FontArguments\20const&\29 +1550:skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::chopAndWriteCubics\28skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20int\29 +1551:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::vertexSize\28\29\20const +1552:skgpu::ganesh::Device::readSurfaceView\28\29 +1553:skgpu::ganesh::ClipStack::clip\28skgpu::ganesh::ClipStack::RawElement&&\29 +1554:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::RawElement\20const&\29\20const +1555:skgpu::Swizzle::asString\28\29\20const +1556:skgpu::ScratchKey::GenerateResourceType\28\29 +1557:skgpu::GetBlendFormula\28bool\2c\20bool\2c\20SkBlendMode\29 +1558:skcpu::Recorder::TODO\28\29 +1559:sbrk +1560:ps_tofixedarray +1561:processPropertySeq\28UBiDi*\2c\20LevState*\2c\20unsigned\20char\2c\20int\2c\20int\29 +1562:png_format_buffer +1563:png_check_keyword +1564:nextafterf +1565:jpeg_huff_decode +1566:hb_vector_t::push\28\29 +1567:hb_unicode_funcs_destroy +1568:hb_serialize_context_t::pop_discard\28\29 +1569:hb_lazy_loader_t\2c\20hb_face_t\2c\205u\2c\20OT::hmtx_accelerator_t>::do_destroy\28OT::hmtx_accelerator_t*\29 +1570:hb_lazy_loader_t\2c\20hb_face_t\2c\2028u\2c\20AAT::morx_accelerator_t>::do_destroy\28AAT::morx_accelerator_t*\29 +1571:hb_lazy_loader_t\2c\20hb_face_t\2c\2030u\2c\20AAT::kerx_accelerator_t>::do_destroy\28AAT::kerx_accelerator_t*\29 +1572:hb_glyf_scratch_t::~hb_glyf_scratch_t\28\29 +1573:hb_font_t::get_glyph_h_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +1574:hb_font_t::changed\28\29 +1575:hb_buffer_t::next_glyph\28\29 +1576:hb_blob_create_sub_blob +1577:hairquad\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +1578:getenv +1579:fmt_u +1580:flush_pending +1581:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\29\2c\20SkPath*\29 +1582:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28SkFont&\29\2c\20SkFont*\29 +1583:do_fixed +1584:destroy_face +1585:decltype\28fp\28\28SkRecords::NoOp*\29\28nullptr\29\29\29\20SkRecord::Record::mutate\28SkRecord::Destroyer&\29 +1586:char*\20const&\20std::__2::max\5babi:nn180100\5d\28char*\20const&\2c\20char*\20const&\29 +1587:cf2_stack_pushInt +1588:cf2_interpT2CharString +1589:cf2_glyphpath_moveTo +1590:_hb_ot_metrics_get_position_common\28hb_font_t*\2c\20hb_ot_metrics_tag_t\2c\20int*\29 +1591:__wasi_syscall_ret +1592:__tandf +1593:__floatunsitf +1594:__cxa_allocate_exception +1595:\28anonymous\20namespace\29::PathGeoBuilder::createMeshAndPutBackReserve\28\29 +1596:\28anonymous\20namespace\29::MeshOp::fixedFunctionFlags\28\29\20const +1597:\28anonymous\20namespace\29::DrawAtlasOpImpl::fixedFunctionFlags\28\29\20const +1598:VP8LDoFillBitWindow +1599:VP8LClear +1600:TT_Get_MM_Var +1601:SkWStream::writeScalar\28float\29 +1602:SkUTF::UTF8ToUTF16\28unsigned\20short*\2c\20int\2c\20char\20const*\2c\20unsigned\20long\29 +1603:SkTypeface::isFixedPitch\28\29\20const +1604:SkTypeface::MakeEmpty\28\29 +1605:SkTSect::BinarySearch\28SkTSect*\2c\20SkTSect*\2c\20SkIntersections*\29 +1606:SkTConic::operator\5b\5d\28int\29\20const +1607:SkTBlockList::reset\28\29 +1608:SkTBlockList::reset\28\29 +1609:SkString::insertU32\28unsigned\20long\2c\20unsigned\20int\29 +1610:SkShaders::MatrixRec::applyForFragmentProcessor\28SkMatrix\20const&\29\20const +1611:SkShaders::MatrixRec::MatrixRec\28SkMatrix\20const&\29 +1612:SkScan::FillRect\28SkRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +1613:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +1614:SkSL::optimize_comparison\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20bool\20\28*\29\28double\2c\20double\29\29 +1615:SkSL::coalesce_n_way_vector\28SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +1616:SkSL::Type::convertArraySize\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20long\20long\29\20const +1617:SkSL::String::appendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20...\29 +1618:SkSL::RP::Generator::returnComplexity\28SkSL::FunctionDefinition\20const*\29 +1619:SkSL::RP::Builder::dot_floats\28int\29 +1620:SkSL::ProgramUsage::get\28SkSL::FunctionDeclaration\20const&\29\20const +1621:SkSL::Parser::type\28SkSL::Modifiers*\29 +1622:SkSL::Parser::modifiers\28\29 +1623:SkSL::ConstructorDiagonalMatrix::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1624:SkSL::ConstructorArrayCast::~ConstructorArrayCast\28\29 +1625:SkSL::ConstantFolder::MakeConstantValueForVariable\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +1626:SkSL::Compiler::Compiler\28\29 +1627:SkSL::Analysis::IsTrivialExpression\28SkSL::Expression\20const&\29 +1628:SkRuntimeEffectPriv::CanDraw\28SkCapabilities\20const*\2c\20SkRuntimeEffect\20const*\29 +1629:SkRuntimeEffectBuilder::makeShader\28SkMatrix\20const*\29\20const +1630:SkRegion::setPath\28SkPath\20const&\2c\20SkRegion\20const&\29 +1631:SkRegion::operator=\28SkRegion\20const&\29 +1632:SkRegion::op\28SkRegion\20const&\2c\20SkRegion\20const&\2c\20SkRegion::Op\29 +1633:SkRegion::Iterator::next\28\29 +1634:SkRect\20skif::Mapping::map\28SkRect\20const&\2c\20SkMatrix\20const&\29 +1635:SkRasterPipeline::compile\28\29\20const +1636:SkRasterPipeline::appendClampIfNormalized\28SkImageInfo\20const&\29 +1637:SkRasterClip::SkRasterClip\28SkIRect\20const&\29 +1638:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20SkBBHFactory*\29 +1639:SkPathWriter::finishContour\28\29 +1640:SkPathStroker::cubicPerpRay\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +1641:SkPathBuilder::reset\28\29 +1642:SkPathBuilder::addRaw\28SkPathRaw\20const&\29 +1643:SkPath::reset\28\29 +1644:SkPaintPriv::ComputeLuminanceColor\28SkPaint\20const&\29 +1645:SkPaint::isSrcOver\28\29\20const +1646:SkOpAngle::linesOnOriginalSide\28SkOpAngle\20const*\29 +1647:SkNotifyBitmapGenIDIsStale\28unsigned\20int\29 +1648:SkMipmap::Build\28SkPixmap\20const&\2c\20SkDiscardableMemory*\20\28*\29\28unsigned\20long\29\2c\20bool\29 +1649:SkMeshSpecification::~SkMeshSpecification\28\29 +1650:SkMatrix::setRSXform\28SkRSXform\20const&\29 +1651:SkMatrix::mapHomogeneousPoints\28SkSpan\2c\20SkSpan\29\20const +1652:SkMatrix::decomposeScale\28SkSize*\2c\20SkMatrix*\29\20const +1653:SkMaskBuilder::AllocImage\28unsigned\20long\2c\20SkMaskBuilder::AllocType\29 +1654:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29 +1655:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_2D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +1656:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_1D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +1657:SkIntersections::insertNear\28double\2c\20double\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29 +1658:SkIntersections::flip\28\29 +1659:SkImageFilters::Empty\28\29 +1660:SkImageFilter_Base::~SkImageFilter_Base\28\29 +1661:SkImage::isAlphaOnly\28\29\20const +1662:SkGlyph::drawable\28\29\20const +1663:SkFont::unicharToGlyph\28int\29\20const +1664:SkFont::setTypeface\28sk_sp\29 +1665:SkFont::setEdging\28SkFont::Edging\29 +1666:SkFindQuadMaxCurvature\28SkPoint\20const*\29 +1667:SkEvalCubicAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29 +1668:SkDCubic::FindExtrema\28double\20const*\2c\20double*\29 +1669:SkCodec::getPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const*\29 +1670:SkChopCubicAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +1671:SkCanvas::internalRestore\28\29 +1672:SkCanvas::getLocalToDevice\28\29\20const +1673:SkCanvas::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +1674:SkCanvas::ImageSetEntry::~ImageSetEntry\28\29 +1675:SkBlendMode_AsCoeff\28SkBlendMode\2c\20SkBlendModeCoeff*\2c\20SkBlendModeCoeff*\29 +1676:SkBlendMode\20SkReadBuffer::read32LE\28SkBlendMode\29 +1677:SkBitmap::operator=\28SkBitmap\20const&\29 +1678:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29 +1679:SkAutoPixmapStorage::tryAlloc\28SkImageInfo\20const&\29 +1680:SkAAClip::SkAAClip\28\29 +1681:Read255UShort +1682:OT::cff1::accelerator_templ_t>::_fini\28\29 +1683:OT::Layout::GPOS_impl::ValueFormat::sanitize_value_devices\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\29\20const +1684:OT::Layout::GPOS_impl::ValueFormat::apply_value\28OT::hb_ot_apply_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\2c\20hb_glyph_position_t&\29\20const +1685:OT::ItemVariationStore::sanitize\28hb_sanitize_context_t*\29\20const +1686:OT::HVARVVAR::sanitize\28hb_sanitize_context_t*\29\20const +1687:GrTriangulator::VertexList::insert\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\29 +1688:GrTriangulator::Poly::addEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Side\2c\20GrTriangulator*\29 +1689:GrTriangulator::EdgeList::remove\28GrTriangulator::Edge*\29 +1690:GrStyledShape::simplify\28\29 +1691:GrStyledShape::operator=\28GrStyledShape\20const&\29 +1692:GrSimpleMeshDrawOpHelperWithStencil::createProgramInfoWithStencil\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +1693:GrRenderTask::addDependency\28GrDrawingManager*\2c\20GrSurfaceProxy*\2c\20skgpu::Mipmapped\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +1694:GrRenderTask::GrRenderTask\28\29 +1695:GrRenderTarget::onRelease\28\29 +1696:GrProxyProvider::findOrCreateProxyByUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxy::UseAllocator\29 +1697:GrProcessorSet::operator==\28GrProcessorSet\20const&\29\20const +1698:GrPathUtils::generateQuadraticPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +1699:GrMeshDrawOp::QuadHelper::QuadHelper\28GrMeshDrawTarget*\2c\20unsigned\20long\2c\20int\29 +1700:GrMakeCachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\29 +1701:GrIsStrokeHairlineOrEquivalent\28GrStyle\20const&\2c\20SkMatrix\20const&\2c\20float*\29 +1702:GrImageContext::abandoned\28\29 +1703:GrGpuResource::registerWithCache\28skgpu::Budgeted\29 +1704:GrGpuBuffer::isMapped\28\29\20const +1705:GrGpu::didWriteToSurface\28GrSurface*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const*\2c\20unsigned\20int\29\20const +1706:GrGeometryProcessor::ProgramImpl::setupUniformColor\28GrGLSLFPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20GrResourceHandle*\29 +1707:GrGLGpu::flushRenderTarget\28GrGLRenderTarget*\2c\20bool\29 +1708:GrFragmentProcessor::visitTextureEffects\28std::__2::function\20const&\29\20const +1709:GrFragmentProcessor::visitProxies\28std::__2::function\20const&\29\20const +1710:GrFragmentProcessor::MakeColor\28SkRGBA4f<\28SkAlphaType\292>\29 +1711:GrBufferAllocPool::makeSpace\28unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\29 +1712:GrBackendTextures::GetGLTextureInfo\28GrBackendTexture\20const&\2c\20GrGLTextureInfo*\29 +1713:FilterLoop26_C +1714:FT_Vector_Transform +1715:FT_Vector_NormLen +1716:FT_Outline_Transform +1717:CFF::dict_opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +1718:AlmostBetweenUlps\28float\2c\20float\2c\20float\29 +1719:1482 +1720:1483 +1721:void\20hb_buffer_t::collect_codepoints\28hb_bit_set_t&\29\20const +1722:void\20extend_pts<\28SkPaint::Cap\292>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +1723:void\20extend_pts<\28SkPaint::Cap\291>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +1724:void\20AAT::Lookup>::collect_glyphs_filtered\28hb_bit_set_t&\2c\20unsigned\20int\2c\20hb_bit_page_t\20const&\29\20const +1725:ubidi_getMemory_skia +1726:transform\28unsigned\20int*\2c\20unsigned\20char\20const*\29 +1727:strcspn +1728:std::__2::vector>::__append\28unsigned\20long\29 +1729:std::__2::locale::locale\28std::__2::locale\20const&\29 +1730:std::__2::locale::classic\28\29 +1731:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char*\2c\20char*\2c\20char*&\29\20const +1732:std::__2::chrono::__libcpp_steady_clock_now\28\29 +1733:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28char\20const*\29 +1734:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20char\20const*\29 +1735:std::__2::basic_streambuf>::setg\5babi:nn180100\5d\28char*\2c\20char*\2c\20char*\29 +1736:std::__2::__wrap_iter\20std::__2::vector>::__insert_with_size\5babi:ne180100\5d\28std::__2::__wrap_iter\2c\20float\20const*\2c\20float\20const*\2c\20long\29 +1737:std::__2::__throw_bad_variant_access\5babi:ne180100\5d\28\29 +1738:std::__2::__split_buffer>::push_front\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +1739:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20wchar_t&\29 +1740:std::__2::__num_get::__do_widen\28std::__2::ios_base&\2c\20wchar_t*\29\20const +1741:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20char&\29 +1742:std::__2::__itoa::__append1\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +1743:sktext::gpu::GlyphVector::~GlyphVector\28\29 +1744:skif::LayerSpace::round\28\29\20const +1745:skif::LayerSpace::inverseMapRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29\20const +1746:skif::FilterResult::applyTransform\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkSamplingOptions\20const&\29\20const +1747:skif::FilterResult::Builder::~Builder\28\29 +1748:skif::FilterResult::Builder::Builder\28skif::Context\20const&\29 +1749:skia_private::THashTable::Traits>::resize\28int\29 +1750:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +1751:skia_private::TArray::resize_back\28int\29 +1752:skia_png_set_progressive_read_fn +1753:skia_png_set_interlace_handling +1754:skia_png_reciprocal +1755:skia_png_read_chunk_header +1756:skia_png_get_io_ptr +1757:skia_png_calloc +1758:skia::textlayout::TextLine::~TextLine\28\29 +1759:skia::textlayout::ParagraphStyle::ParagraphStyle\28skia::textlayout::ParagraphStyle\20const&\29 +1760:skia::textlayout::ParagraphCacheKey::~ParagraphCacheKey\28\29 +1761:skia::textlayout::OneLineShaper::RunBlock*\20std::__2::vector>::__emplace_back_slow_path\28skia::textlayout::OneLineShaper::RunBlock&\29 +1762:skia::textlayout::FontCollection::findTypefaces\28std::__2::vector>\20const&\2c\20SkFontStyle\2c\20std::__2::optional\20const&\29 +1763:skia::textlayout::Cluster::trimmedWidth\28unsigned\20long\29\20const +1764:skgpu::ganesh::TextureOp::BatchSizeLimiter::createOp\28GrTextureSetEntry*\2c\20int\2c\20GrAAType\29 +1765:skgpu::ganesh::SurfaceFillContext::fillWithFP\28std::__2::unique_ptr>\29 +1766:skgpu::ganesh::SurfaceDrawContext::drawShape\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\29 +1767:skgpu::ganesh::SurfaceDrawContext::drawShapeUsingPathRenderer\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\2c\20bool\29 +1768:skgpu::ganesh::SurfaceDrawContext::drawRRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20GrStyle\20const&\29 +1769:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29 +1770:skgpu::ganesh::SmallPathAtlasMgr::reset\28\29 +1771:skgpu::ganesh::QuadPerEdgeAA::CalcIndexBufferOption\28GrAAType\2c\20int\29 +1772:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29::$_0::operator\28\29\28GrSurfaceProxyView\20const&\29\20const +1773:skgpu::ganesh::Device::targetProxy\28\29 +1774:skgpu::ganesh::ClipStack::getConservativeBounds\28\29\20const +1775:skgpu::ganesh::ClipStack::RawElement::RawElement\28SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\2c\20SkClipOp\29 +1776:skgpu::TAsyncReadResult::addTransferResult\28skgpu::ganesh::SurfaceContext::PixelTransferResult\20const&\2c\20SkISize\2c\20unsigned\20long\2c\20skgpu::TClientMappedBufferManager*\29 +1777:skgpu::Swizzle::apply\28SkRasterPipeline*\29\20const +1778:skgpu::Plot::resetRects\28bool\29 +1779:ps_dimension_add_t1stem +1780:log +1781:jcopy_sample_rows +1782:hb_lazy_loader_t\2c\20hb_face_t\2c\2015u\2c\20OT::glyf_accelerator_t>::do_destroy\28OT::glyf_accelerator_t*\29 +1783:hb_font_t::has_func\28unsigned\20int\29 +1784:hb_buffer_create_similar +1785:hb_bit_set_t::intersects\28hb_bit_set_t\20const&\29\20const +1786:ft_service_list_lookup +1787:fseek +1788:fflush +1789:expm1 +1790:emscripten::internal::MethodInvoker::invoke\28void\20\28GrDirectContext::*\20const&\29\28\29\2c\20GrDirectContext*\29 +1791:emscripten::internal::Invoker>::invoke\28sk_sp\20\28*\29\28\29\29 +1792:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +1793:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkCanvas\20const&\2c\20unsigned\20long\29\2c\20SkCanvas*\2c\20unsigned\20long\29 +1794:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker\2c\20float&>\28float&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker&&\29::'lambda'\28char*\29::__invoke\28char*\29 +1795:crc32_z +1796:char*\20sktext::gpu::BagOfBytes::allocateBytesFor\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +1797:cf2_hintmap_insertHint +1798:cf2_hintmap_build +1799:cf2_glyphpath_pushPrevElem +1800:bool\20std::__2::__less::operator\28\29\5babi:nn180100\5d\28unsigned\20int\20const&\2c\20unsigned\20long\20const&\29\20const +1801:blit_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +1802:afm_stream_read_one +1803:af_shaper_get_cluster +1804:af_latin_hints_link_segments +1805:af_latin_compute_stem_width +1806:af_glyph_hints_reload +1807:acosf +1808:__syscall_ret +1809:__sin +1810:__cos +1811:\28anonymous\20namespace\29::PathGeoBuilder::allocNewBuffers\28\29 +1812:WebPDemuxDelete +1813:VP8LHuffmanTablesDeallocate +1814:SkWriter32::writeSampling\28SkSamplingOptions\20const&\29 +1815:SkVertices::Builder::detach\28\29 +1816:SkUTF::NextUTF8WithReplacement\28char\20const**\2c\20char\20const*\29 +1817:SkTypeface_FreeType::~SkTypeface_FreeType\28\29 +1818:SkTypeface_FreeType::FaceRec::~FaceRec\28\29 +1819:SkTypeface::SkTypeface\28SkFontStyle\20const&\2c\20bool\29 +1820:SkTextBlob::RunRecord::textSizePtr\28\29\20const +1821:SkTMultiMap::remove\28skgpu::ScratchKey\20const&\2c\20GrGpuResource\20const*\29 +1822:SkTMultiMap::insert\28skgpu::ScratchKey\20const&\2c\20GrGpuResource*\29 +1823:SkTDStorage::insert\28int\2c\20int\2c\20void\20const*\29 +1824:SkTDPQueue<\28anonymous\20namespace\29::RunIteratorQueue::Entry\2c\20&\28anonymous\20namespace\29::RunIteratorQueue::CompareEntry\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\2c\20\28int*\20\28*\29\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\290>::insert\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\29 +1825:SkSwizzler::Make\28SkEncodedInfo\20const&\2c\20unsigned\20int\20const*\2c\20SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20SkIRect\20const*\29 +1826:SkSurface_Base::~SkSurface_Base\28\29 +1827:SkString::resize\28unsigned\20long\29 +1828:SkStrikeSpec::SkStrikeSpec\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +1829:SkStrikeSpec::MakeMask\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +1830:SkStrikeSpec::MakeCanonicalized\28SkFont\20const&\2c\20SkPaint\20const*\29 +1831:SkStrikeCache::findOrCreateStrike\28SkStrikeSpec\20const&\29 +1832:SkStrike::unlock\28\29 +1833:SkStrike::lock\28\29 +1834:SkShaders::MatrixRec::apply\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +1835:SkShaders::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +1836:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\29 +1837:SkScalerContext_FreeType::emboldenIfNeeded\28FT_FaceRec_*\2c\20FT_GlyphSlotRec_*\2c\20unsigned\20short\29 +1838:SkSafeMath::Add\28unsigned\20long\2c\20unsigned\20long\29 +1839:SkSL::Type::displayName\28\29\20const +1840:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20double\2c\20SkSL::Position\29\20const +1841:SkSL::RP::SlotManager::addSlotDebugInfoForGroup\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20int*\2c\20bool\29 +1842:SkSL::RP::Generator::foldComparisonOp\28SkSL::Operator\2c\20int\29 +1843:SkSL::RP::Builder::branch_if_no_lanes_active\28int\29 +1844:SkSL::PrefixExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +1845:SkSL::Parser::parseArrayDimensions\28SkSL::Position\2c\20SkSL::Type\20const**\29 +1846:SkSL::Parser::arraySize\28long\20long*\29 +1847:SkSL::Operator::operatorName\28\29\20const +1848:SkSL::ModifierFlags::paddedDescription\28\29\20const +1849:SkSL::ExpressionArray::clone\28\29\20const +1850:SkSL::ConstantFolder::GetConstantValue\28SkSL::Expression\20const&\2c\20double*\29 +1851:SkSL::ConstantFolder::GetConstantInt\28SkSL::Expression\20const&\2c\20long\20long*\29 +1852:SkSL::Compiler::convertProgram\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::ProgramSettings\20const&\29 +1853:SkRegion::op\28SkRegion\20const&\2c\20SkIRect\20const&\2c\20SkRegion::Op\29 +1854:SkRegion::Iterator::Iterator\28SkRegion\20const&\29 +1855:SkRectPriv::ClosestDisjointEdge\28SkIRect\20const&\2c\20SkIRect\20const&\29 +1856:SkRecords::FillBounds::bounds\28SkRecords::DrawArc\20const&\29\20const +1857:SkReadBuffer::setMemory\28void\20const*\2c\20unsigned\20long\29 +1858:SkRRect::writeToMemory\28void*\29\20const +1859:SkRRect::setRectXY\28SkRect\20const&\2c\20float\2c\20float\29 +1860:SkPointPriv::DistanceToLineBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPointPriv::Side*\29 +1861:SkPoint::setNormalize\28float\2c\20float\29 +1862:SkPngCodecBase::~SkPngCodecBase\28\29 +1863:SkPixmapUtils::SwapWidthHeight\28SkImageInfo\20const&\29 +1864:SkPixmap::setColorSpace\28sk_sp\29 +1865:SkPictureRecorder::finishRecordingAsPicture\28\29 +1866:SkPathRawShapes::Rect::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1867:SkPathBuilder::getLastPt\28\29\20const +1868:SkPathBuilder::SkPathBuilder\28SkPathFillType\29 +1869:SkPath::isLine\28SkPoint*\29\20const +1870:SkPath::getSegmentMasks\28\29\20const +1871:SkPath::Iter::next\28SkPoint*\29 +1872:SkPaint::setStrokeCap\28SkPaint::Cap\29 +1873:SkPaint::refShader\28\29\20const +1874:SkOpSpan::setWindSum\28int\29 +1875:SkOpSegment::markDone\28SkOpSpan*\29 +1876:SkOpSegment::markAndChaseWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int\2c\20int\2c\20SkOpSpanBase**\29 +1877:SkOpContourBuilder::addCurve\28SkPath::Verb\2c\20SkPoint\20const*\2c\20float\29 +1878:SkOpAngle::starter\28\29 +1879:SkOpAngle::insert\28SkOpAngle*\29 +1880:SkNoDrawCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +1881:SkMatrixPriv::InverseMapRect\28SkMatrix\20const&\2c\20SkRect*\2c\20SkRect\20const&\29 +1882:SkMatrix::setSinCos\28float\2c\20float\29 +1883:SkMatrix::setRotate\28float\29 +1884:SkMatrix::preservesRightAngles\28float\29\20const +1885:SkMaskFilter::MakeBlur\28SkBlurStyle\2c\20float\2c\20bool\29 +1886:SkMD5::write\28void\20const*\2c\20unsigned\20long\29 +1887:SkLineClipper::IntersectLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\29 +1888:SkImage_GaneshBase::SkImage_GaneshBase\28sk_sp\2c\20SkImageInfo\2c\20unsigned\20int\29 +1889:SkImageGenerator::onRefEncodedData\28\29 +1890:SkImage::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\29\20const +1891:SkIDChangeListener::SkIDChangeListener\28\29 +1892:SkIDChangeListener::List::reset\28\29 +1893:SkGradientBaseShader::flatten\28SkWriteBuffer&\29\20const +1894:SkGlyph::setPath\28SkArenaAlloc*\2c\20SkPath\20const*\2c\20bool\2c\20bool\29 +1895:SkFontMgr::RefEmpty\28\29 +1896:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda0'\28\29::operator\28\29\28\29\20const +1897:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda'\28\29::operator\28\29\28\29\20const +1898:SkEvalQuadAt\28SkPoint\20const*\2c\20float\29 +1899:SkEncodedInfo::makeImageInfo\28\29\20const +1900:SkEdgeClipper::next\28SkPoint*\29 +1901:SkDevice::scalerContextFlags\28\29\20const +1902:SkDeque::SkDeque\28unsigned\20long\2c\20void*\2c\20unsigned\20long\2c\20int\29 +1903:SkConic::evalAt\28float\2c\20SkPoint*\2c\20SkPoint*\29\20const +1904:SkConic::TransformW\28SkPoint\20const*\2c\20float\2c\20SkMatrix\20const&\29 +1905:SkColorSpace::transferFn\28skcms_TransferFunction*\29\20const +1906:SkColorSpace::gammaIsLinear\28\29\20const +1907:SkColorInfo::SkColorInfo\28SkColorType\2c\20SkAlphaType\2c\20sk_sp\29 +1908:SkColorFilters::Blend\28unsigned\20int\2c\20SkBlendMode\29 +1909:SkCodec::skipScanlines\28int\29 +1910:SkCodec::rewindStream\28\29 +1911:SkCapabilities::RasterBackend\28\29 +1912:SkCanvas::topDevice\28\29\20const +1913:SkCanvas::saveLayer\28SkCanvas::SaveLayerRec\20const&\29 +1914:SkCanvas::init\28sk_sp\29 +1915:SkCanvas::drawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +1916:SkCanvas::drawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +1917:SkCanvas::drawClippedToSaveBehind\28SkPaint\20const&\29 +1918:SkCanvas::concat\28SkM44\20const&\29 +1919:SkCanvas::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +1920:SkCanvas::SkCanvas\28SkBitmap\20const&\29 +1921:SkBmpBaseCodec::~SkBmpBaseCodec\28\29 +1922:SkBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +1923:SkBitmap::extractSubset\28SkBitmap*\2c\20SkIRect\20const&\29\20const +1924:SkBitmap::asImage\28\29\20const +1925:SkBitmap::SkBitmap\28SkBitmap&&\29 +1926:SkBinaryWriteBuffer::SkBinaryWriteBuffer\28SkSerialProcs\20const&\29 +1927:SkAAClip::setRegion\28SkRegion\20const&\29 +1928:SaveErrorCode +1929:R +1930:OT::glyf_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +1931:OT::GDEF::get_mark_attachment_type\28unsigned\20int\29\20const +1932:OT::GDEF::get_glyph_class\28unsigned\20int\29\20const +1933:GrXPFactory::FromBlendMode\28SkBlendMode\29 +1934:GrTriangulator::setBottom\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +1935:GrTriangulator::mergeCollinearEdges\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +1936:GrThreadSafeCache::find\28skgpu::UniqueKey\20const&\29 +1937:GrThreadSafeCache::add\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +1938:GrThreadSafeCache::Entry::makeEmpty\28\29 +1939:GrSurfaceProxyView::operator==\28GrSurfaceProxyView\20const&\29\20const +1940:GrSurfaceProxyView::Copy\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\29 +1941:GrSurfaceProxyPriv::doLazyInstantiation\28GrResourceProvider*\29 +1942:GrSurfaceProxy::isFunctionallyExact\28\29\20const +1943:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20sk_sp*\29 +1944:GrSimpleMeshDrawOpHelperWithStencil::fixedFunctionFlags\28\29\20const +1945:GrSimpleMeshDrawOpHelper::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20GrProcessorAnalysisColor*\29 +1946:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrProcessorSet&&\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrPipeline::InputFlags\2c\20GrUserStencilSettings\20const*\29 +1947:GrSimpleMeshDrawOpHelper::CreatePipeline\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20skgpu::Swizzle\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrProcessorSet&&\2c\20GrPipeline::InputFlags\29 +1948:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20void\20const*\2c\20skgpu::UniqueKey\20const&\29 +1949:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20skgpu::UniqueKey\20const&\2c\20void\20\28*\29\28skgpu::VertexWriter\2c\20unsigned\20long\29\29 +1950:GrResourceCache::purgeAsNeeded\28\29 +1951:GrResourceCache::findAndRefScratchResource\28skgpu::ScratchKey\20const&\29 +1952:GrRecordingContextPriv::makeSFC\28GrImageInfo\2c\20std::__2::basic_string_view>\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1953:GrQuadUtils::TessellationHelper::Vertices::moveAlong\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1954:GrQuad::asRect\28SkRect*\29\20const +1955:GrProcessorSet::GrProcessorSet\28GrProcessorSet&&\29 +1956:GrPathUtils::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +1957:GrOpFlushState::allocator\28\29 +1958:GrGpu::submitToGpu\28GrSubmitInfo\20const&\29 +1959:GrGpu::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +1960:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +1961:GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +1962:GrGLSLShaderBuilder::appendFunctionDecl\28SkSLType\2c\20char\20const*\2c\20SkSpan\29 +1963:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +1964:GrGLSLColorSpaceXformHelper::emitCode\28GrGLSLUniformHandler*\2c\20GrColorSpaceXform\20const*\2c\20unsigned\20int\29 +1965:GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +1966:GrGLRenderTarget::bindInternal\28unsigned\20int\2c\20bool\29 +1967:GrGLGpu::getErrorAndCheckForOOM\28\29 +1968:GrGLGpu::bindTexture\28int\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20GrGLTexture*\29 +1969:GrFragmentProcessor::visitWithImpls\28std::__2::function\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\20const +1970:GrFragmentProcessor::ColorMatrix\28std::__2::unique_ptr>\2c\20float\20const*\2c\20bool\2c\20bool\2c\20bool\29 +1971:GrDrawingManager::appendTask\28sk_sp\29 +1972:GrColorInfo::GrColorInfo\28GrColorInfo\20const&\29 +1973:GrCaps::isFormatCompressed\28GrBackendFormat\20const&\29\20const +1974:GrAAConvexTessellator::lineTo\28SkPoint\20const&\2c\20GrAAConvexTessellator::CurveState\29 +1975:FT_Stream_OpenMemory +1976:FT_Select_Charmap +1977:FT_Get_Next_Char +1978:FT_Get_Module_Interface +1979:FT_Done_Size +1980:DecodeImageStream +1981:CFF::opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +1982:CFF::Charset::get_glyph\28unsigned\20int\2c\20unsigned\20int\29\20const +1983:AAT::hb_aat_apply_context_t::replace_glyph_inplace\28unsigned\20int\2c\20unsigned\20int\29 +1984:AAT::SubtableGlyphCoverage::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +1985:1748 +1986:1749 +1987:1750 +1988:1751 +1989:1752 +1990:wuffs_gif__decoder__num_decoded_frames +1991:void\20std::__2::reverse\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t*\29 +1992:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29_14597 +1993:void\20merge_sort<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +1994:void\20merge_sort<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +1995:void\20emscripten::internal::MemberAccess::setWire\28float\20StrokeOpts::*\20const&\2c\20StrokeOpts&\2c\20float\29 +1996:void\20AAT::ClassTable>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +1997:validate_offsetToRestore\28SkReadBuffer*\2c\20unsigned\20long\29 +1998:ubidi_setPara_skia +1999:ubidi_getVisualRun_skia +2000:ubidi_getRuns_skia +2001:ubidi_getClass_skia +2002:tt_set_mm_blend +2003:tt_face_get_ps_name +2004:tt_face_get_location +2005:trinkle +2006:std::__2::unique_ptr::release\5babi:nn180100\5d\28\29 +2007:std::__2::pair\2c\20void*>*>\2c\20bool>\20std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__emplace_unique_key_args\2c\20std::__2::tuple<>>\28GrTriangulator::Vertex*\20const&\2c\20std::__2::piecewise_construct_t\20const&\2c\20std::__2::tuple&&\2c\20std::__2::tuple<>&&\29 +2008:std::__2::pair::pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +2009:std::__2::moneypunct::do_decimal_point\28\29\20const +2010:std::__2::moneypunct::pos_format\5babi:nn180100\5d\28\29\20const +2011:std::__2::moneypunct::do_decimal_point\28\29\20const +2012:std::__2::istreambuf_iterator>::istreambuf_iterator\5babi:nn180100\5d\28std::__2::basic_istream>&\29 +2013:std::__2::ios_base::good\5babi:nn180100\5d\28\29\20const +2014:std::__2::hash::operator\28\29\28skia::textlayout::FontArguments\20const&\29\20const +2015:std::__2::ctype::toupper\5babi:nn180100\5d\28char\29\20const +2016:std::__2::chrono::duration>::duration\5babi:nn180100\5d\28long\20long\20const&\29 +2017:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +2018:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2019:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +2020:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +2021:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2022:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +2023:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +2024:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +2025:std::__2::basic_string\2c\20std::__2::allocator>&\20std::__2::basic_string\2c\20std::__2::allocator>::__assign_no_alias\28char\20const*\2c\20unsigned\20long\29 +2026:std::__2::basic_iostream>::~basic_iostream\28\29_16307 +2027:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::allocator&\2c\20wchar_t*\2c\20unsigned\20long\29 +2028:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::allocator&\2c\20char*\2c\20unsigned\20long\29 +2029:std::__2::__shared_count::__release_shared\5babi:nn180100\5d\28\29 +2030:std::__2::__num_put_base::__format_int\28char*\2c\20char\20const*\2c\20bool\2c\20unsigned\20int\29 +2031:std::__2::__num_put_base::__format_float\28char*\2c\20char\20const*\2c\20unsigned\20int\29 +2032:std::__2::__itoa::__append8\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2033:sktext::gpu::TextBlob::Key::operator==\28sktext::gpu::TextBlob::Key\20const&\29\20const +2034:sktext::gpu::GlyphVector::glyphs\28\29\20const +2035:sktext::SkStrikePromise::strike\28\29 +2036:skif::FilterResult::getAnalyzedShaderView\28skif::Context\20const&\2c\20SkSamplingOptions\20const&\2c\20SkEnumBitMask\29\20const +2037:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20bool\2c\20SkBlender\20const*\29\20const +2038:skif::FilterResult::applyCrop\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkTileMode\29\20const +2039:skif::FilterResult::FilterResult\28\29 +2040:skif::Context::~Context\28\29 +2041:skia_private::THashTable\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair>::resize\28int\29 +2042:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +2043:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::removeSlot\28int\29 +2044:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +2045:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot::emplace\28sk_sp&&\2c\20unsigned\20int\29 +2046:skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::~THashMap\28\29 +2047:skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::THashMap\28std::initializer_list>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>\29 +2048:skia_private::TArray::move\28void*\29 +2049:skia_private::TArray::Plane\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +2050:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +2051:skia_private::TArray::operator=\28skia_private::TArray&&\29 +2052:skia_private::TArray\2c\20true>::push_back\28SkRGBA4f<\28SkAlphaType\293>&&\29 +2053:skia_png_set_text_2 +2054:skia_png_set_palette_to_rgb +2055:skia_png_handle_IHDR +2056:skia_png_handle_IEND +2057:skia::textlayout::TextWrapper::TextStretch::extend\28skia::textlayout::Cluster*\29 +2058:skia::textlayout::FontCollection::getFontManagerOrder\28\29\20const +2059:skia::textlayout::Decorations::calculateGaps\28skia::textlayout::TextLine::ClipContext\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\29 +2060:skia::textlayout::Cluster::isSoftBreak\28\29\20const +2061:skia::textlayout::Cluster::Cluster\28skia::textlayout::ParagraphImpl*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkSpan\2c\20float\2c\20float\29 +2062:skia::textlayout::Block&\20skia_private::TArray::emplace_back\28unsigned\20long&&\2c\20unsigned\20long&&\2c\20skia::textlayout::TextStyle\20const&\29 +2063:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::fixedFunctionFlags\28\29\20const +2064:skgpu::ganesh::SurfaceFillContext::fillRectWithFP\28SkIRect\20const&\2c\20SkMatrix\20const&\2c\20std::__2::unique_ptr>\29 +2065:skgpu::ganesh::SurfaceFillContext::SurfaceFillContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +2066:skgpu::ganesh::SurfaceDrawContext::drawPaint\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\29 +2067:skgpu::ganesh::SurfaceDrawContext::MakeWithFallback\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +2068:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29 +2069:skgpu::ganesh::SurfaceContext::PixelTransferResult::operator=\28skgpu::ganesh::SurfaceContext::PixelTransferResult&&\29 +2070:skgpu::ganesh::SmallPathAtlasMgr::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +2071:skgpu::ganesh::OpsTask::~OpsTask\28\29 +2072:skgpu::ganesh::OpsTask::setColorLoadOp\28GrLoadOp\2c\20std::__2::array\29 +2073:skgpu::ganesh::OpsTask::deleteOps\28\29 +2074:skgpu::ganesh::FillRectOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +2075:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29::$_0::operator\28\29\28int\29\20const +2076:skgpu::ganesh::ClipStack::~ClipStack\28\29 +2077:skgpu::TClientMappedBufferManager::~TClientMappedBufferManager\28\29 +2078:skgpu::TAsyncReadResult::Plane&\20skia_private::TArray::Plane\2c\20false>::emplace_back\2c\20unsigned\20long&>\28sk_sp&&\2c\20unsigned\20long&\29 +2079:skgpu::Plot::addSubImage\28int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +2080:skgpu::GetLCDBlendFormula\28SkBlendMode\29 +2081:skcpu::DrawTreatAAStrokeAsHairline\28float\2c\20SkMatrix\20const&\2c\20float*\29 +2082:skcms_TransferFunction_isHLGish +2083:skcms_TransferFunction_isHLG +2084:skcms_Matrix3x3_concat +2085:sk_srgb_linear_singleton\28\29 +2086:sk_sp::reset\28SkPathRef*\29 +2087:sk_sp*\20std::__2::vector\2c\20std::__2::allocator>>::__push_back_slow_path\20const&>\28sk_sp\20const&\29 +2088:shr +2089:shl +2090:setRegionCheck\28SkRegion*\2c\20SkRegion\20const&\29 +2091:read_metadata\28std::__2::vector>\20const&\2c\20unsigned\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +2092:read_header\28SkStream*\2c\20sk_sp\20const&\2c\20SkCodec**\2c\20png_struct_def**\2c\20png_info_def**\29 +2093:read_curves\28unsigned\20char\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skcms_Curve*\29 +2094:qsort +2095:ps_dimension_set_mask_bits +2096:operator==\28SkPath\20const&\2c\20SkPath\20const&\29 +2097:morphpoints\28SkSpan\2c\20SkSpan\2c\20SkPathMeasure&\2c\20float\29 +2098:mbrtowc +2099:jround_up +2100:jpeg_make_d_derived_tbl +2101:jpeg_destroy +2102:ilogbf +2103:hb_vector_t::shrink_vector\28unsigned\20int\29 +2104:hb_ucd_get_unicode_funcs +2105:hb_syllabic_insert_dotted_circles\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +2106:hb_shape_full +2107:hb_serialize_context_t::~hb_serialize_context_t\28\29 +2108:hb_serialize_context_t::resolve_links\28\29 +2109:hb_serialize_context_t::reset\28\29 +2110:hb_paint_extents_context_t::paint\28\29 +2111:hb_lazy_loader_t\2c\20hb_face_t\2c\2016u\2c\20OT::cff1_accelerator_t>::do_destroy\28OT::cff1_accelerator_t*\29 +2112:hb_language_from_string +2113:hb_font_destroy +2114:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2115:hb_bit_set_t::resize\28unsigned\20int\2c\20bool\2c\20bool\29 +2116:hb_bit_set_t::process_\28hb_vector_size_t\20\28*\29\28hb_vector_size_t\20const&\2c\20hb_vector_size_t\20const&\29\2c\20bool\2c\20bool\2c\20hb_bit_set_t\20const&\29 +2117:hb_array_t::hash\28\29\20const +2118:get_sof +2119:ftell +2120:ft_var_readpackedpoints +2121:ft_mem_strdup +2122:ft_glyphslot_done +2123:float\20emscripten::internal::MemberAccess::getWire\28float\20StrokeOpts::*\20const&\2c\20StrokeOpts&\29 +2124:fill_window +2125:exp +2126:encodeImage\28GrDirectContext*\2c\20sk_sp\2c\20SkEncodedImageFormat\2c\20int\29 +2127:emscripten::val\20MakeTypedArray\28int\2c\20float\20const*\29 +2128:emscripten::internal::MethodInvoker::invoke\28float\20\28SkContourMeasure::*\20const&\29\28\29\20const\2c\20SkContourMeasure\20const*\29 +2129:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\29\2c\20unsigned\20long\2c\20unsigned\20long\29 +2130:dquad_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2131:do_clip_op\28SkReadBuffer*\2c\20SkCanvas*\2c\20SkRegion::Op\2c\20SkClipOp*\29 +2132:do_anti_hairline\28int\2c\20int\2c\20int\2c\20int\2c\20SkIRect\20const*\2c\20SkBlitter*\29 +2133:doWriteReverse\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +2134:doWriteForward\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +2135:dline_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2136:dispose_chunk +2137:direct_blur_y\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +2138:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29::'lambda'\28void*\29>\28SkA8_Blitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2139:decltype\28fp\28\28SkRecords::NoOp\29\28\29\29\29\20SkRecord::Record::visit\28SkRecords::Draw&\29\20const +2140:dcubic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2141:dconic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2142:crop_rect_edge\28SkRect\20const&\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float*\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +2143:char\20const*\20std::__2::__rewrap_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +2144:cff_slot_load +2145:cff_parse_real +2146:cff_index_get_sid_string +2147:cff_index_access_element +2148:cf2_doStems +2149:cf2_doFlex +2150:buffer_verify_error\28hb_buffer_t*\2c\20hb_font_t*\2c\20char\20const*\2c\20...\29 +2151:blur_y_rect\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +2152:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29::$_0::operator\28\29\28unsigned\20char*\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29\20const +2153:auto\20std::__2::__unwrap_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +2154:af_sort_and_quantize_widths +2155:af_glyph_hints_align_weak_points +2156:af_glyph_hints_align_strong_points +2157:af_face_globals_new +2158:af_cjk_compute_stem_width +2159:add_huff_table +2160:addPoint\28UBiDi*\2c\20int\2c\20int\29 +2161:__uselocale +2162:__math_xflow +2163:__cxxabiv1::__base_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +2164:\28anonymous\20namespace\29::make_vertices_spec\28bool\2c\20bool\29 +2165:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_3::operator\28\29\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20bool\29\20const +2166:\28anonymous\20namespace\29::draw_stencil_rect\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrHardClip\20const&\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +2167:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +2168:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +2169:\28anonymous\20namespace\29::PathSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +2170:\28anonymous\20namespace\29::CacheImpl::removeInternal\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +2171:WriteRingBuffer +2172:WebPRescalerExport +2173:WebPInitAlphaProcessing +2174:WebPFreeDecBuffer +2175:VP8SetError +2176:VP8LInverseTransform +2177:VP8LDelete +2178:VP8LColorCacheClear +2179:TT_Load_Context +2180:StringBuffer\20apply_format_string<1024>\28char\20const*\2c\20void*\2c\20char\20\28&\29\20\5b1024\5d\2c\20SkString*\29 +2181:SkYUVAPixmaps::operator=\28SkYUVAPixmaps\20const&\29 +2182:SkYUVAPixmapInfo::SupportedDataTypes::enableDataType\28SkYUVAPixmapInfo::DataType\2c\20int\29 +2183:SkWriter32::writeMatrix\28SkMatrix\20const&\29 +2184:SkWriter32::snapshotAsData\28\29\20const +2185:SkVertices::approximateSize\28\29\20const +2186:SkTypefaceCache::NewTypefaceID\28\29 +2187:SkTextBlobRunIterator::next\28\29 +2188:SkTextBlobRunIterator::SkTextBlobRunIterator\28SkTextBlob\20const*\29 +2189:SkTextBlobBuilder::make\28\29 +2190:SkTextBlobBuilder::SkTextBlobBuilder\28\29 +2191:SkTSpan::closestBoundedT\28SkDPoint\20const&\29\20const +2192:SkTSect::updateBounded\28SkTSpan*\2c\20SkTSpan*\2c\20SkTSpan*\29 +2193:SkTSect::trim\28SkTSpan*\2c\20SkTSect*\29 +2194:SkTDStorage::erase\28int\2c\20int\29 +2195:SkTDPQueue::percolateUpIfNecessary\28int\29 +2196:SkSurfaces::Raster\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20SkSurfaceProps\20const*\29 +2197:SkSurface_Base::createCaptureBreakpoint\28\29 +2198:SkSurface_Base::SkSurface_Base\28int\2c\20int\2c\20SkSurfaceProps\20const*\29 +2199:SkSurfaceProps::SkSurfaceProps\28unsigned\20int\2c\20SkPixelGeometry\2c\20float\2c\20float\29 +2200:SkStrokerPriv::JoinFactory\28SkPaint::Join\29 +2201:SkStrokeRec::setStrokeStyle\28float\2c\20bool\29 +2202:SkStrokeRec::setFillStyle\28\29 +2203:SkStrokeRec::applyToPath\28SkPathBuilder*\2c\20SkPath\20const&\29\20const +2204:SkString::set\28char\20const*\29 +2205:SkStrikeSpec::findOrCreateStrike\28\29\20const +2206:SkStrikeSpec::MakeWithNoDevice\28SkFont\20const&\2c\20SkPaint\20const*\29 +2207:SkStrike::glyph\28SkGlyphDigest\29 +2208:SkSpecialImages::MakeDeferredFromGpu\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +2209:SkSpecialImages::AsBitmap\28SkSpecialImage\20const*\2c\20SkBitmap*\29 +2210:SkSharedMutex::SkSharedMutex\28\29 +2211:SkShadowTessellator::MakeSpot\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkPoint3\20const&\2c\20float\2c\20bool\2c\20bool\29 +2212:SkShaders::Empty\28\29 +2213:SkShaders::Color\28unsigned\20int\29 +2214:SkShaderBase::appendRootStages\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +2215:SkScalerContext::~SkScalerContext\28\29_4128 +2216:SkSL::write_stringstream\28SkSL::StringStream\20const&\2c\20SkSL::OutputStream&\29 +2217:SkSL::evaluate_3_way_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +2218:SkSL::VarDeclaration::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\2c\20std::__2::unique_ptr>\29 +2219:SkSL::Type::priority\28\29\20const +2220:SkSL::Type::checkIfUsableInArray\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +2221:SkSL::SymbolTable::takeOwnershipOfString\28std::__2::basic_string\2c\20std::__2::allocator>\29 +2222:SkSL::SymbolTable::isBuiltinType\28std::__2::basic_string_view>\29\20const +2223:SkSL::SampleUsage::merge\28SkSL::SampleUsage\20const&\29 +2224:SkSL::RP::SlotManager::mapVariableToSlots\28SkSL::Variable\20const&\2c\20SkSL::RP::SlotRange\29 +2225:SkSL::RP::Program::appendStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkSL::RP::Callbacks*\2c\20SkSpan\29\20const +2226:SkSL::RP::Generator::pushVectorizedExpression\28SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +2227:SkSL::RP::Builder::ternary_op\28SkSL::RP::BuilderOp\2c\20int\29 +2228:SkSL::RP::Builder::simplifyPopSlotsUnmasked\28SkSL::RP::SlotRange*\29 +2229:SkSL::RP::Builder::pop_slots_unmasked\28SkSL::RP::SlotRange\29 +2230:SkSL::RP::Builder::exchange_src\28\29 +2231:SkSL::ProgramUsage::remove\28SkSL::ProgramElement\20const&\29 +2232:SkSL::ProgramUsage::isDead\28SkSL::Variable\20const&\29\20const +2233:SkSL::Pool::~Pool\28\29 +2234:SkSL::PipelineStage::PipelineStageCodeGenerator::typedVariable\28SkSL::Type\20const&\2c\20std::__2::basic_string_view>\29 +2235:SkSL::PipelineStage::PipelineStageCodeGenerator::typeName\28SkSL::Type\20const&\29 +2236:SkSL::MethodReference::~MethodReference\28\29_6483 +2237:SkSL::MethodReference::~MethodReference\28\29 +2238:SkSL::LiteralType::priority\28\29\20const +2239:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sub\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +2240:SkSL::IndexExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +2241:SkSL::GLSLCodeGenerator::writeAnyConstructor\28SkSL::AnyConstructor\20const&\2c\20SkSL::OperatorPrecedence\29 +2242:SkSL::Compiler::errorText\28bool\29 +2243:SkSL::Block::Make\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +2244:SkSL::Block::MakeBlock\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +2245:SkSL::Analysis::DetectVarDeclarationWithoutScope\28SkSL::Statement\20const&\2c\20SkSL::ErrorReporter*\29 +2246:SkRuntimeEffectPriv::TransformUniforms\28SkSpan\2c\20sk_sp\2c\20SkColorSpace\20const*\29 +2247:SkRuntimeEffect::getRPProgram\28SkSL::DebugTracePriv*\29\20const +2248:SkRegion::Spanerator::next\28int*\2c\20int*\29 +2249:SkRegion::SkRegion\28SkRegion\20const&\29 +2250:SkReduceOrder::Quad\28SkPoint\20const*\2c\20SkPoint*\29 +2251:SkReadBuffer::skipByteArray\28unsigned\20long*\29 +2252:SkReadBuffer::readSampling\28\29 +2253:SkReadBuffer::readRRect\28SkRRect*\29 +2254:SkReadBuffer::checkInt\28int\2c\20int\29 +2255:SkRasterPipeline::appendMatrix\28SkArenaAlloc*\2c\20SkMatrix\20const&\29 +2256:SkQuads::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +2257:SkPngCodecBase::applyXformRow\28void*\2c\20unsigned\20char\20const*\29 +2258:SkPngCodec::processData\28\29 +2259:SkPixmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +2260:SkPictureRecord::~SkPictureRecord\28\29 +2261:SkPicture::~SkPicture\28\29_3533 +2262:SkPathStroker::quadStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +2263:SkPathStroker::preJoinTo\28SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\2c\20bool\29 +2264:SkPathStroker::intersectRay\28SkQuadConstruct*\2c\20SkPathStroker::IntersectRayType\29\20const +2265:SkPathStroker::cubicStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +2266:SkPathStroker::conicStroke\28SkConic\20const&\2c\20SkQuadConstruct*\29 +2267:SkPathPriv::IsRectContour\28SkSpan\2c\20SkSpan\2c\20bool\29 +2268:SkPathPriv::ComputeConvexity\28SkSpan\2c\20SkSpan\2c\20SkSpan\29 +2269:SkPathMeasure::isClosed\28\29 +2270:SkPathMeasure::getPosTan\28float\2c\20SkPoint*\2c\20SkPoint*\29 +2271:SkPathEffectBase::getFlattenableType\28\29\20const +2272:SkPathEdgeIter::SkPathEdgeIter\28SkPathRaw\20const&\29 +2273:SkPathBuilder::transform\28SkMatrix\20const&\29 +2274:SkPathBuilder::addPolygon\28SkSpan\2c\20bool\29 +2275:SkPath::isLastContourClosed\28\29\20const +2276:SkPath::close\28\29 +2277:SkPath::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +2278:SkPaint::setStrokeMiter\28float\29 +2279:SkPaint::setStrokeJoin\28SkPaint::Join\29 +2280:SkOpSpanBase::mergeMatches\28SkOpSpanBase*\29 +2281:SkOpSpanBase::addOpp\28SkOpSpanBase*\29 +2282:SkOpSegment::subDivide\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkDCurve*\29\20const +2283:SkOpSegment::release\28SkOpSpan\20const*\29 +2284:SkOpSegment::operand\28\29\20const +2285:SkOpSegment::moveNearby\28\29 +2286:SkOpSegment::markAndChaseDone\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpSpanBase**\29 +2287:SkOpSegment::isClose\28double\2c\20SkOpSegment\20const*\29\20const +2288:SkOpSegment::init\28SkPoint*\2c\20float\2c\20SkOpContour*\2c\20SkPath::Verb\29 +2289:SkOpSegment::addT\28double\2c\20SkPoint\20const&\29 +2290:SkOpCoincidence::fixUp\28SkOpPtT*\2c\20SkOpPtT\20const*\29 +2291:SkOpCoincidence::add\28SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\29 +2292:SkOpCoincidence::addMissing\28bool*\29 +2293:SkOpCoincidence::addIfMissing\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20double\2c\20double\2c\20SkOpSegment*\2c\20SkOpSegment*\2c\20bool*\29 +2294:SkOpCoincidence::addExpanded\28\29 +2295:SkOpAngle::set\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +2296:SkOpAngle::lineOnOneSide\28SkDPoint\20const&\2c\20SkDVector\20const&\2c\20SkOpAngle\20const*\2c\20bool\29\20const +2297:SkNoPixelsDevice::ClipState::op\28SkClipOp\2c\20SkM44\20const&\2c\20SkRect\20const&\2c\20bool\2c\20bool\29 +2298:SkNoDestructor>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>>::SkNoDestructor\28skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>&&\29 +2299:SkMatrixPriv::DifferentialAreaScale\28SkMatrix\20const&\2c\20SkPoint\20const&\29 +2300:SkMatrix::writeToMemory\28void*\29\20const +2301:SkMatrix::setSinCos\28float\2c\20float\2c\20float\2c\20float\29 +2302:SkMakeBitmapShaderForPaint\28SkPaint\20const&\2c\20SkBitmap\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20SkCopyPixelsMode\29 +2303:SkM44::normalizePerspective\28\29 +2304:SkM44::invert\28SkM44*\29\20const +2305:SkLatticeIter::~SkLatticeIter\28\29 +2306:SkLatticeIter::next\28SkIRect*\2c\20SkRect*\2c\20bool*\2c\20unsigned\20int*\29 +2307:SkJpegCodec::ReadHeader\28SkStream*\2c\20SkCodec**\2c\20JpegDecoderMgr**\2c\20std::__2::unique_ptr>\29 +2308:SkJSONWriter::endObject\28\29 +2309:SkJSONWriter::endArray\28\29 +2310:SkImage_Lazy::Validator::Validator\28sk_sp\2c\20SkColorType\20const*\2c\20sk_sp\29 +2311:SkImageShader::MakeSubset\28sk_sp\2c\20SkRect\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +2312:SkImageFilters::MatrixTransform\28SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20sk_sp\29 +2313:SkImageFilters::Image\28sk_sp\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\29 +2314:SkImageFilters::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +2315:SkImage::width\28\29\20const +2316:SkImage::readPixels\28GrDirectContext*\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +2317:SkImage::readPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +2318:SkHalfToFloat\28unsigned\20short\29 +2319:SkGradientShader::MakeSweep\28float\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +2320:SkGradientShader::MakeRadial\28SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +2321:SkGradientBaseShader::commonAsAGradient\28SkShaderBase::GradientInfo*\29\20const +2322:SkGradientBaseShader::ValidGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\29 +2323:SkGradientBaseShader::SkGradientBaseShader\28SkGradientBaseShader::Descriptor\20const&\2c\20SkMatrix\20const&\29 +2324:SkGradientBaseShader::MakeDegenerateGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20float\20const*\2c\20int\2c\20sk_sp\2c\20SkTileMode\29 +2325:SkGradientBaseShader::Descriptor::~Descriptor\28\29 +2326:SkGradientBaseShader::Descriptor::Descriptor\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\29 +2327:SkFontMgr::matchFamilyStyleCharacter\28char\20const*\2c\20SkFontStyle\20const&\2c\20char\20const**\2c\20int\2c\20int\29\20const +2328:SkFont::setSize\28float\29 +2329:SkEvalQuadAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +2330:SkEncodedInfo::~SkEncodedInfo\28\29 +2331:SkEmptyFontMgr::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +2332:SkDrawableList::~SkDrawableList\28\29 +2333:SkDrawable::draw\28SkCanvas*\2c\20SkMatrix\20const*\29 +2334:SkDevice::SkDevice\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +2335:SkData::PrivateNewWithCopy\28void\20const*\2c\20unsigned\20long\29::$_0::operator\28\29\28\29\20const +2336:SkDashPathEffect::Make\28SkSpan\2c\20float\29 +2337:SkDQuad::monotonicInX\28\29\20const +2338:SkDCubic::dxdyAtT\28double\29\20const +2339:SkDCubic::RootsValidT\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +2340:SkConicalGradient::~SkConicalGradient\28\29 +2341:SkColorSpace::MakeSRGBLinear\28\29 +2342:SkColorFilters::Blend\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\2c\20SkBlendMode\29 +2343:SkColorFilterPriv::MakeGaussian\28\29 +2344:SkColorConverter::SkColorConverter\28unsigned\20int\20const*\2c\20int\29 +2345:SkCodec::startScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const*\29 +2346:SkCodec::handleFrameIndex\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20std::__2::function\29 +2347:SkCodec::getScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +2348:SkChopQuadAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +2349:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\20const*\2c\20int\29 +2350:SkChopCubicAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +2351:SkCharToGlyphCache::SkCharToGlyphCache\28\29 +2352:SkCanvas::setMatrix\28SkM44\20const&\29 +2353:SkCanvas::getTotalMatrix\28\29\20const +2354:SkCanvas::getLocalClipBounds\28\29\20const +2355:SkCanvas::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +2356:SkCanvas::drawAtlas\28SkImage\20const*\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +2357:SkCanvas::canAttemptBlurredRRectDraw\28SkPaint\20const&\29\20const +2358:SkCanvas::attemptBlurredRRectDraw\28SkRRect\20const&\2c\20SkBlurMaskFilterImpl\20const*\2c\20SkPaint\20const&\2c\20SkEnumBitMask\29 +2359:SkCanvas::ImageSetEntry::ImageSetEntry\28SkCanvas::ImageSetEntry\20const&\29 +2360:SkBmpCodec::ReadHeader\28SkStream*\2c\20bool\2c\20std::__2::unique_ptr>*\29 +2361:SkBlurMaskFilterImpl::computeXformedSigma\28SkMatrix\20const&\29\20const +2362:SkBlitter::blitRectRegion\28SkIRect\20const&\2c\20SkRegion\20const&\29 +2363:SkBlendMode_ShouldPreScaleCoverage\28SkBlendMode\2c\20bool\29 +2364:SkBlendMode_AppendStages\28SkBlendMode\2c\20SkRasterPipeline*\29 +2365:SkBitmap::tryAllocPixels\28SkBitmap::Allocator*\29 +2366:SkBitmap::readPixels\28SkPixmap\20const&\2c\20int\2c\20int\29\20const +2367:SkBitmap::allocPixels\28SkImageInfo\20const&\29 +2368:SkBaseShadowTessellator::handleLine\28SkPoint\20const&\29 +2369:SkAutoDescriptor::~SkAutoDescriptor\28\29 +2370:SkAnimatedImage::getFrameCount\28\29\20const +2371:SkAAClip::~SkAAClip\28\29 +2372:SkAAClip::setPath\28SkPath\20const&\2c\20SkIRect\20const&\2c\20bool\29 +2373:SkAAClip::op\28SkAAClip\20const&\2c\20SkClipOp\29 +2374:ReadHuffmanCode_15565 +2375:OT::vmtx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2376:OT::kern_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2377:OT::cff1_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2378:OT::apply_lookup\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20OT::LookupRecord\20const*\2c\20unsigned\20int\29 +2379:OT::OpenTypeFontFile::sanitize\28hb_sanitize_context_t*\29\20const +2380:OT::Layout::GPOS_impl::ValueFormat::get_device\28OT::IntType\20const*\2c\20bool*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20hb_sanitize_context_t&\29 +2381:OT::Layout::GPOS_impl::AnchorFormat3::get_anchor\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20float*\2c\20float*\29\20const +2382:OT::Layout::GPOS_impl::AnchorFormat2::get_anchor\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20float*\2c\20float*\29\20const +2383:OT::GPOS_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2384:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +2385:JpegDecoderMgr::~JpegDecoderMgr\28\29 +2386:GrTriangulator::simplify\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +2387:GrTriangulator::setTop\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2388:GrTriangulator::mergeCoincidentVertices\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29\20const +2389:GrTriangulator::Vertex*\20SkArenaAlloc::make\28SkPoint&\2c\20int&&\29 +2390:GrThreadSafeCache::remove\28skgpu::UniqueKey\20const&\29 +2391:GrThreadSafeCache::internalFind\28skgpu::UniqueKey\20const&\29 +2392:GrThreadSafeCache::internalAdd\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +2393:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29 +2394:GrTexture::markMipmapsClean\28\29 +2395:GrTessellationShader::MakePipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedClip&&\2c\20GrProcessorSet&&\29 +2396:GrSurfaceProxyView::concatSwizzle\28skgpu::Swizzle\29 +2397:GrSurfaceProxy::LazyCallbackResult::LazyCallbackResult\28sk_sp\29 +2398:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20GrSurfaceProxy::RectsMustMatch\2c\20sk_sp*\29 +2399:GrStyledShape::GrStyledShape\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20bool\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +2400:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +2401:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrPipeline\20const*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrUserStencilSettings\20const*\29 +2402:GrShape::simplifyLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\29 +2403:GrShape::reset\28\29 +2404:GrShape::conservativeContains\28SkPoint\20const&\29\20const +2405:GrSWMaskHelper::init\28SkIRect\20const&\29 +2406:GrResourceProvider::createNonAAQuadIndexBuffer\28\29 +2407:GrResourceProvider::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\2c\20GrResourceProvider::ZeroInit\29 +2408:GrRenderTask::addTarget\28GrDrawingManager*\2c\20sk_sp\29 +2409:GrRenderTarget::~GrRenderTarget\28\29_9700 +2410:GrRecordingContextPriv::createDevice\28skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\2c\20skgpu::ganesh::Device::InitContents\29 +2411:GrQuadUtils::WillUseHairline\28GrQuad\20const&\2c\20GrAAType\2c\20GrQuadAAFlags\29 +2412:GrQuadUtils::CropToRect\28SkRect\20const&\2c\20GrAA\2c\20DrawQuad*\2c\20bool\29 +2413:GrProxyProvider::processInvalidUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\2c\20GrProxyProvider::InvalidateGPUResource\29 +2414:GrPorterDuffXPFactory::Get\28SkBlendMode\29 +2415:GrPixmap::operator=\28GrPixmap&&\29 +2416:GrPathUtils::scaleToleranceToSrc\28float\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +2417:GrPathUtils::quadraticPointCount\28SkPoint\20const*\2c\20float\29 +2418:GrPathUtils::cubicPointCount\28SkPoint\20const*\2c\20float\29 +2419:GrPaint::setPorterDuffXPFactory\28SkBlendMode\29 +2420:GrPaint::GrPaint\28GrPaint\20const&\29 +2421:GrOpsRenderPass::draw\28int\2c\20int\29 +2422:GrOpsRenderPass::drawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +2423:GrMeshDrawOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +2424:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29 +2425:GrGradientShader::MakeGradientFP\28SkGradientBaseShader\20const&\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\2c\20std::__2::unique_ptr>\2c\20SkMatrix\20const*\29 +2426:GrGpuResource::isPurgeable\28\29\20const +2427:GrGpuResource::getContext\28\29 +2428:GrGpu::writePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +2429:GrGLTexture::onSetLabel\28\29 +2430:GrGLTexture::onRelease\28\29 +2431:GrGLTexture::onAbandon\28\29 +2432:GrGLTexture::backendFormat\28\29\20const +2433:GrGLSLProgramBuilder::fragmentProcessorHasCoordsParam\28GrFragmentProcessor\20const*\29\20const +2434:GrGLRenderTarget::onRelease\28\29 +2435:GrGLRenderTarget::onAbandon\28\29 +2436:GrGLGpu::resolveRenderFBOs\28GrGLRenderTarget*\2c\20SkIRect\20const&\2c\20GrGLRenderTarget::ResolveDirection\2c\20bool\29 +2437:GrGLGpu::flushBlendAndColorWrite\28skgpu::BlendInfo\20const&\2c\20skgpu::Swizzle\20const&\29 +2438:GrGLGpu::deleteSync\28__GLsync*\29 +2439:GrGLGetVersionFromString\28char\20const*\29 +2440:GrGLFinishCallbacks::callAll\28bool\29 +2441:GrGLCheckLinkStatus\28GrGLGpu\20const*\2c\20unsigned\20int\2c\20bool\2c\20skgpu::ShaderErrorHandler*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const**\2c\20SkSL::NativeShader\20const*\29 +2442:GrGLCaps::maxRenderTargetSampleCount\28GrGLFormat\29\20const +2443:GrFragmentProcessors::Make\28SkBlenderBase\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20GrFPArgs\20const&\29 +2444:GrFragmentProcessor::isEqual\28GrFragmentProcessor\20const&\29\20const +2445:GrFragmentProcessor::asTextureEffect\28\29\20const +2446:GrFragmentProcessor::Rect\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRect\29 +2447:GrFragmentProcessor::ModulateRGBA\28std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +2448:GrDrawingManager::~GrDrawingManager\28\29 +2449:GrDrawingManager::removeRenderTasks\28\29 +2450:GrDrawingManager::getPathRenderer\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\2c\20bool\2c\20skgpu::ganesh::PathRendererChain::DrawType\2c\20skgpu::ganesh::PathRenderer::StencilSupport*\29 +2451:GrDrawOpAtlas::compact\28skgpu::Token\29 +2452:GrCpuBuffer::ref\28\29\20const +2453:GrContext_Base::~GrContext_Base\28\29 +2454:GrContext_Base::defaultBackendFormat\28SkColorType\2c\20skgpu::Renderable\29\20const +2455:GrColorSpaceXform::XformKey\28GrColorSpaceXform\20const*\29 +2456:GrColorSpaceXform::Make\28SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +2457:GrColorSpaceXform::Make\28GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +2458:GrColorInfo::operator=\28GrColorInfo\20const&\29 +2459:GrCaps::supportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +2460:GrCaps::getFallbackColorTypeAndFormat\28GrColorType\2c\20int\29\20const +2461:GrCaps::areColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +2462:GrBufferAllocPool::~GrBufferAllocPool\28\29 +2463:GrBlurUtils::DrawShapeWithMaskFilter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\29 +2464:GrBaseContextPriv::getShaderErrorHandler\28\29\20const +2465:GrBackendTexture::GrBackendTexture\28GrBackendTexture\20const&\29 +2466:GrBackendRenderTarget::getBackendFormat\28\29\20const +2467:GrBackendFormat::operator==\28GrBackendFormat\20const&\29\20const +2468:GrAAConvexTessellator::createOuterRing\28GrAAConvexTessellator::Ring\20const&\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring*\29 +2469:GrAAConvexTessellator::createInsetRings\28GrAAConvexTessellator::Ring&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring**\29 +2470:FindSortableTop\28SkOpContourHead*\29 +2471:FT_Stream_Close +2472:FT_Set_Charmap +2473:FT_Select_Metrics +2474:FT_Outline_Decompose +2475:FT_Open_Face +2476:FT_New_Size +2477:FT_Load_Sfnt_Table +2478:FT_GlyphLoader_Add +2479:FT_Get_Color_Glyph_Paint +2480:FT_Get_Color_Glyph_Layer +2481:FT_Done_Library +2482:FT_CMap_New +2483:DecodeImageData\28sk_sp\29 +2484:Current_Ratio +2485:Cr_z__tr_stored_block +2486:ClipParams_unpackRegionOp\28SkReadBuffer*\2c\20unsigned\20int\29 +2487:CircleOp::Circle&\20skia_private::TArray::emplace_back\28CircleOp::Circle&&\29 +2488:AlmostEqualUlps_Pin\28float\2c\20float\29 +2489:AAT::hb_aat_apply_context_t::hb_aat_apply_context_t\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +2490:AAT::TrackTableEntry::get_value\28float\2c\20void\20const*\2c\20hb_array_t\2c\2016u>\20const>\29\20const +2491:AAT::StateTable::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +2492:2255 +2493:2256 +2494:2257 +2495:2258 +2496:2259 +2497:wuffs_lzw__decoder__workbuf_len +2498:wuffs_gif__decoder__decode_image_config +2499:wuffs_gif__decoder__decode_frame_config +2500:winding_mono_quad\28SkSpan\2c\20float\2c\20float\2c\20int*\29 +2501:winding_mono_conic\28SkConic\20const&\2c\20float\2c\20float\2c\20int*\29 +2502:week_num +2503:wcrtomb +2504:wchar_t\20const*\20std::__2::find\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const&\29 +2505:void\20std::__2::__sort4\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +2506:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +2507:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +2508:void\20std::__2::__inplace_merge\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +2509:void\20sort_r_simple\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\2c\20void*\29\2c\20void*\29 +2510:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29_14663 +2511:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29 +2512:void\20SkTIntroSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29>\28int\2c\20double*\2c\20int\2c\20void\20SkTQSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29\20const&\29 +2513:void\20SkTIntroSort\28int\2c\20SkEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkEdge\20const*\2c\20SkEdge\20const*\29\29 +2514:void\20SkTHeapSort\28SkAnalyticEdge**\2c\20unsigned\20long\2c\20bool\20\20const\28&\29\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29\29 +2515:void\20AAT::StateTable::collect_initial_glyphs>\28hb_bit_set_t&\2c\20unsigned\20int\2c\20AAT::LigatureSubtable\20const&\29\20const +2516:vfprintf +2517:valid_args\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20unsigned\20long*\29 +2518:update_offset_to_base\28char\20const*\2c\20long\29 +2519:update_box +2520:u_charMirror_skia +2521:tt_size_reset +2522:tt_sbit_decoder_load_metrics +2523:tt_face_find_bdf_prop +2524:tolower +2525:toTextStyle\28SimpleTextStyle\20const&\29 +2526:t1_cmap_unicode_done +2527:subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +2528:subdivide\28SkConic\20const&\2c\20SkPoint*\2c\20int\29 +2529:strtox_16099 +2530:strtox +2531:strtoull_l +2532:strtod +2533:std::logic_error::~logic_error\28\29_17791 +2534:std::__2::vector>::__append\28unsigned\20long\29 +2535:std::__2::vector>::push_back\5babi:ne180100\5d\28float&&\29 +2536:std::__2::vector>::__append\28unsigned\20long\29 +2537:std::__2::vector<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20std::__2::allocator<\28anonymous\20namespace\29::CacheImpl::Value*>>::__throw_length_error\5babi:ne180100\5d\28\29\20const +2538:std::__2::vector>::reserve\28unsigned\20long\29 +2539:std::__2::vector\2c\20std::__2::allocator>>::push_back\5babi:ne180100\5d\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +2540:std::__2::unique_ptr<\28anonymous\20namespace\29::SoftwarePathData\2c\20std::__2::default_delete<\28anonymous\20namespace\29::SoftwarePathData>>::reset\5babi:ne180100\5d\28\28anonymous\20namespace\29::SoftwarePathData*\29 +2541:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2542:std::__2::time_put>>::~time_put\28\29_17332 +2543:std::__2::priority_queue>\2c\20GrAATriangulator::EventComparator>::push\28GrAATriangulator::Event*\20const&\29 +2544:std::__2::pair\2c\20std::__2::allocator>>>::~pair\28\29 +2545:std::__2::locale::operator=\28std::__2::locale\20const&\29 +2546:std::__2::locale::locale\28\29 +2547:std::__2::locale::__imp::acquire\28\29 +2548:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\29 +2549:std::__2::ios_base::~ios_base\28\29 +2550:std::__2::ios_base::clear\28unsigned\20int\29 +2551:std::__2::fpos<__mbstate_t>::fpos\5babi:nn180100\5d\28long\20long\29 +2552:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:ne180100\5d\28SkAnimatedImage::Frame&\2c\20SkAnimatedImage::Frame&\29 +2553:std::__2::default_delete::operator\28\29\5babi:ne180100\5d\28sktext::gpu::TextBlobRedrawCoordinator*\29\20const +2554:std::__2::char_traits::move\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +2555:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_16383 +2556:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29 +2557:std::__2::basic_stringbuf\2c\20std::__2::allocator>::__init_buf_ptrs\5babi:ne180100\5d\28\29 +2558:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28wchar_t\29 +2559:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +2560:std::__2::basic_string\2c\20std::__2::allocator>::append\28unsigned\20long\2c\20char\29 +2561:std::__2::basic_string\2c\20std::__2::allocator>::__make_iterator\5babi:nn180100\5d\28char*\29 +2562:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +2563:std::__2::basic_string\2c\20std::__2::allocator>::__init_copy_ctor_external\28char16_t\20const*\2c\20unsigned\20long\29 +2564:std::__2::basic_ostream>::~basic_ostream\28\29_16289 +2565:std::__2::basic_istream>::~basic_istream\28\29_16248 +2566:std::__2::basic_istream>::sentry::sentry\28std::__2::basic_istream>&\2c\20bool\29 +2567:std::__2::basic_iostream>::~basic_iostream\28\29_16310 +2568:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +2569:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +2570:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +2571:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +2572:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +2573:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +2574:std::__2::__to_address_helper\2c\20void>::__call\5babi:nn180100\5d\28std::__2::__wrap_iter\20const&\29 +2575:std::__2::__throw_length_error\5babi:ne180100\5d\28char\20const*\29 +2576:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +2577:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20wchar_t*\2c\20wchar_t&\2c\20wchar_t&\29 +2578:std::__2::__num_get::__stage2_float_loop\28wchar_t\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20wchar_t*\29 +2579:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20char*\2c\20char&\2c\20char&\29 +2580:std::__2::__num_get::__stage2_float_loop\28char\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20char*\29 +2581:std::__2::__libcpp_wcrtomb_l\5babi:nn180100\5d\28char*\2c\20wchar_t\2c\20__mbstate_t*\2c\20__locale_struct*\29 +2582:std::__2::__itoa::__base_10_u32\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2583:std::__2::__itoa::__append6\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2584:std::__2::__itoa::__append4\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2585:sktext::gpu::VertexFiller::flatten\28SkWriteBuffer&\29\20const +2586:sktext::gpu::VertexFiller::deviceRectAndCheckTransform\28SkMatrix\20const&\29\20const +2587:sktext::gpu::VertexFiller::Make\28skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20SkRect\2c\20SkSpan\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::FillerType\29 +2588:sktext::gpu::SubRunContainer::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20SkRefCnt\20const*\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +2589:sktext::gpu::SubRunAllocator::SubRunAllocator\28int\29 +2590:sktext::gpu::StrikeCache::internalPurge\28unsigned\20long\29 +2591:sktext::gpu::GlyphVector::flatten\28SkWriteBuffer&\29\20const +2592:sktext::gpu::GlyphVector::Make\28sktext::SkStrikePromise&&\2c\20SkSpan\2c\20sktext::gpu::SubRunAllocator*\29 +2593:sktext::gpu::BagOfBytes::MinimumSizeWithOverhead\28int\2c\20int\2c\20int\2c\20int\29::'lambda'\28\29::operator\28\29\28\29\20const +2594:sktext::SkStrikePromise::flatten\28SkWriteBuffer&\29\20const +2595:sktext::GlyphRunBuilder::makeGlyphRunList\28sktext::GlyphRun\20const&\2c\20SkPaint\20const&\2c\20SkPoint\29 +2596:sktext::GlyphRun::GlyphRun\28SkFont\20const&\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkSpan\29 +2597:skpaint_to_grpaint_impl\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::optional>>\2c\20SkBlender*\2c\20GrPaint*\29 +2598:skip_literal_string +2599:skif::\28anonymous\20namespace\29::are_axes_nearly_integer_aligned\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29 +2600:skif::RoundIn\28SkRect\29 +2601:skif::FilterResult::applyColorFilter\28skif::Context\20const&\2c\20sk_sp\29\20const +2602:skif::FilterResult::Builder::outputBounds\28std::__2::optional>\29\20const +2603:skif::FilterResult::Builder::drawShader\28sk_sp\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +2604:skif::FilterResult::Builder::createInputShaders\28skif::LayerSpace\20const&\2c\20bool\29 +2605:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +2606:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +2607:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::set\28skia_private::THashMap>\2c\20SkGoodHash>::Pair\29 +2608:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +2609:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +2610:skia_private::THashTable::Traits>::resize\28int\29 +2611:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::resize\28int\29 +2612:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::find\28GrProgramDesc\20const&\29\20const +2613:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +2614:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrTextureProxy*&&\29 +2615:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +2616:skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::set\28SkSL::Variable\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +2617:skia_private::THashMap::set\28SkSL::SymbolTable::SymbolKey\2c\20SkSL::Symbol*\29 +2618:skia_private::THashMap::set\28SkSL::FunctionDeclaration\20const*\2c\20SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::FunctionState\29 +2619:skia_private::TArray::resize_back\28int\29 +2620:skia_private::TArray\2c\20false>::move\28void*\29 +2621:skia_private::TArray::push_back\28float\20const&\29 +2622:skia_private::TArray::operator=\28skia_private::TArray&&\29 +2623:skia_private::TArray::push_back\28SkRasterPipelineContexts::MemoryCtxInfo&&\29 +2624:skia_private::TArray::resize_back\28int\29 +2625:skia_png_write_chunk +2626:skia_png_set_sBIT +2627:skia_png_set_read_fn +2628:skia_png_set_packing +2629:skia_png_save_uint_32 +2630:skia_png_reciprocal2 +2631:skia_png_realloc_array +2632:skia_png_read_start_row +2633:skia_png_read_IDAT_data +2634:skia_png_handle_zTXt +2635:skia_png_handle_tRNS +2636:skia_png_handle_tIME +2637:skia_png_handle_tEXt +2638:skia_png_handle_sRGB +2639:skia_png_handle_sPLT +2640:skia_png_handle_sCAL +2641:skia_png_handle_sBIT +2642:skia_png_handle_pHYs +2643:skia_png_handle_pCAL +2644:skia_png_handle_oFFs +2645:skia_png_handle_iTXt +2646:skia_png_handle_iCCP +2647:skia_png_handle_hIST +2648:skia_png_handle_gAMA +2649:skia_png_handle_cHRM +2650:skia_png_handle_bKGD +2651:skia_png_handle_as_unknown +2652:skia_png_handle_PLTE +2653:skia_png_do_strip_channel +2654:skia_png_destroy_write_struct +2655:skia_png_destroy_info_struct +2656:skia_png_compress_IDAT +2657:skia_png_combine_row +2658:skia_png_colorspace_set_sRGB +2659:skia_png_check_fp_string +2660:skia_png_check_fp_number +2661:skia::textlayout::TypefaceFontStyleSet::createTypeface\28int\29 +2662:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::$_0::operator\28\29\28sk_sp\2c\20sk_sp\29\20const +2663:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const +2664:skia::textlayout::TextLine::getGlyphPositionAtCoordinate\28float\29 +2665:skia::textlayout::Run::isResolved\28\29\20const +2666:skia::textlayout::Run::copyTo\28SkTextBlobBuilder&\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +2667:skia::textlayout::ParagraphImpl::buildClusterTable\28\29 +2668:skia::textlayout::ParagraphBuilderImpl::ensureUTF16Mapping\28\29 +2669:skia::textlayout::OneLineShaper::~OneLineShaper\28\29 +2670:skia::textlayout::FontCollection::setDefaultFontManager\28sk_sp\29 +2671:skia::textlayout::FontCollection::FontCollection\28\29 +2672:skia::textlayout::FontArguments::CloneTypeface\28sk_sp\20const&\29\20const +2673:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::flush\28GrMeshDrawTarget*\2c\20skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::FlushInfo*\29\20const +2674:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::~Impl\28\29 +2675:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::programInfo\28\29 +2676:skgpu::ganesh::SurfaceFillContext::discard\28\29 +2677:skgpu::ganesh::SurfaceDrawContext::internalStencilClear\28SkIRect\20const*\2c\20bool\29 +2678:skgpu::ganesh::SurfaceDrawContext::drawPath\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrStyle\20const&\29 +2679:skgpu::ganesh::SurfaceDrawContext::attemptQuadOptimization\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20DrawQuad*\2c\20GrPaint*\29 +2680:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +2681:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29::$_0::operator\28\29\28GrSurfaceProxyView\2c\20SkIRect\29\20const +2682:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +2683:skgpu::ganesh::QuadPerEdgeAA::MinColorType\28SkRGBA4f<\28SkAlphaType\292>\29 +2684:skgpu::ganesh::PathRendererChain::PathRendererChain\28GrRecordingContext*\2c\20skgpu::ganesh::PathRendererChain::Options\20const&\29 +2685:skgpu::ganesh::PathCurveTessellator::draw\28GrOpFlushState*\29\20const +2686:skgpu::ganesh::OpsTask::recordOp\28std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const*\2c\20GrCaps\20const&\29 +2687:skgpu::ganesh::MakeFragmentProcessorFromView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +2688:skgpu::ganesh::FilterAndMipmapHaveNoEffect\28GrQuad\20const&\2c\20GrQuad\20const&\29 +2689:skgpu::ganesh::FillRectOp::MakeNonAARect\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +2690:skgpu::ganesh::FillRRectOp::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +2691:skgpu::ganesh::Device::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +2692:skgpu::ganesh::Device::drawImageQuadDirect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +2693:skgpu::ganesh::Device::Make\28std::__2::unique_ptr>\2c\20SkAlphaType\2c\20skgpu::ganesh::Device::InitContents\29 +2694:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::setup_dashed_rect\28SkRect\20const&\2c\20skgpu::VertexWriter&\2c\20SkMatrix\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashCap\29 +2695:skgpu::ganesh::ClipStack::SaveRecord::invalidateMasks\28GrProxyProvider*\2c\20SkTBlockList*\29 +2696:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::SaveRecord\20const&\29\20const +2697:skgpu::ganesh::AtlasRenderTask::addAtlasDrawOp\28std::__2::unique_ptr>\2c\20GrCaps\20const&\29 +2698:skcpu::GlyphRunListPainter::GlyphRunListPainter\28SkSurfaceProps\20const&\2c\20SkColorType\2c\20SkColorSpace*\29 +2699:skcpu::Draw::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +2700:skcpu::Draw::drawDevicePoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\2c\20SkDevice*\29\20const +2701:skcpu::Draw::drawBitmap\28SkBitmap\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29\20const +2702:skcms_Transform +2703:skcms_TransferFunction_isPQish +2704:skcms_TransferFunction_isPQ +2705:skcms_MaxRoundtripError +2706:sk_malloc_canfail\28unsigned\20long\2c\20unsigned\20long\29 +2707:sk_free_releaseproc\28void\20const*\2c\20void*\29 +2708:siprintf +2709:sift +2710:rotate\28SkDCubic\20const&\2c\20int\2c\20int\2c\20SkDCubic&\29 +2711:read_header\28SkStream*\2c\20SkISize*\29 +2712:quad_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +2713:psh_globals_set_scale +2714:ps_parser_skip_PS_token +2715:ps_builder_done +2716:png_text_compress +2717:png_inflate_read +2718:png_inflate_claim +2719:png_image_size +2720:png_default_warning +2721:png_colorspace_endpoints_match +2722:png_build_16bit_table +2723:normalize +2724:next_marker +2725:make_unpremul_effect\28std::__2::unique_ptr>\29 +2726:long\20std::__2::__libcpp_atomic_refcount_decrement\5babi:nn180100\5d\28long&\29 +2727:long\20const&\20std::__2::min\5babi:nn180100\5d\28long\20const&\2c\20long\20const&\29 +2728:log1p +2729:load_truetype_glyph +2730:line_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +2731:lang_find_or_insert\28char\20const*\29 +2732:jpeg_calc_output_dimensions +2733:jpeg_CreateDecompress +2734:inner_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +2735:inflate_table +2736:increment_simple_rowgroup_ctr +2737:hb_vector_t::push\28\29 +2738:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +2739:hb_tag_from_string +2740:hb_shape_plan_destroy +2741:hb_script_get_horizontal_direction +2742:hb_paint_extents_context_t::push_clip\28hb_extents_t\29 +2743:hb_lazy_loader_t\2c\20hb_face_t\2c\203u\2c\20OT::cmap_accelerator_t>::do_destroy\28OT::cmap_accelerator_t*\29 +2744:hb_lazy_loader_t\2c\20hb_face_t\2c\2039u\2c\20OT::SVG_accelerator_t>::do_destroy\28OT::SVG_accelerator_t*\29 +2745:hb_hashmap_t::alloc\28unsigned\20int\29 +2746:hb_font_funcs_destroy +2747:hb_face_get_upem +2748:hb_face_destroy +2749:hb_draw_cubic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +2750:hb_buffer_set_segment_properties +2751:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2752:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2753:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2754:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +2755:hb_blob_create +2756:haircubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +2757:gray_render_line +2758:get_vendor\28char\20const*\29 +2759:get_renderer\28char\20const*\2c\20GrGLExtensions\20const&\29 +2760:get_layer_mapping_and_bounds\28SkSpan>\2c\20SkM44\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\2c\20float\29 +2761:get_joining_type\28unsigned\20int\2c\20hb_unicode_general_category_t\29 +2762:generate_distance_field_from_image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\29 +2763:ft_var_readpackeddeltas +2764:ft_var_get_item_delta +2765:ft_var_done_item_variation_store +2766:ft_glyphslot_alloc_bitmap +2767:freelocale +2768:free_pool +2769:fquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2770:fp_barrierf +2771:fline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2772:fixN0c\28BracketData*\2c\20int\2c\20int\2c\20unsigned\20char\29 +2773:fiprintf +2774:fcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2775:fconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +2776:fclose +2777:exp2 +2778:emscripten::internal::MethodInvoker::invoke\28void\20\28SkFont::*\20const&\29\28float\29\2c\20SkFont*\2c\20float\29 +2779:emscripten::internal::Invoker>\2c\20SimpleParagraphStyle\2c\20sk_sp>::invoke\28std::__2::unique_ptr>\20\28*\29\28SimpleParagraphStyle\2c\20sk_sp\29\2c\20SimpleParagraphStyle*\2c\20sk_sp*\29 +2780:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28SkFontMgr&\2c\20int\29\2c\20SkFontMgr*\2c\20int\29 +2781:draw_nine\28SkMask\20const&\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\2c\20bool\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +2782:do_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +2783:do_putc +2784:deserialize_image\28sk_sp\2c\20SkDeserialProcs\2c\20std::__2::optional\29 +2785:decompose\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\2c\20unsigned\20int\29 +2786:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0>\28skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2787:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool&\2c\20GrPipeline*&\2c\20GrUserStencilSettings\20const*&&\2c\20\28anonymous\20namespace\29::DrawAtlasPathShader*&\2c\20GrPrimitiveType&&\2c\20GrXferBarrierFlags&\2c\20GrLoadOp&\29::'lambda'\28void*\29>\28GrProgramInfo&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2788:cubic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +2789:conic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +2790:compute_ULong_sum +2791:char\20const*\20std::__2::find\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char\20const&\29 +2792:cff_index_get_pointers +2793:cf2_glyphpath_computeOffset +2794:build_tree +2795:bool\20std::__2::__is_pointer_in_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char\20const*\29 +2796:bool\20OT::glyf_impl::Glyph::get_points\28hb_font_t*\2c\20OT::glyf_accelerator_t\20const&\2c\20contour_point_vector_t&\2c\20hb_glyf_scratch_t&\2c\20contour_point_vector_t*\2c\20head_maxp_info_t*\2c\20unsigned\20int*\2c\20bool\2c\20bool\2c\20bool\2c\20hb_array_t\2c\20unsigned\20int\2c\20unsigned\20int*\29\20const +2797:bool\20OT::glyf_accelerator_t::get_points\28hb_font_t*\2c\20unsigned\20int\2c\20OT::glyf_accelerator_t::points_aggregator_t\2c\20hb_array_t\2c\20hb_glyf_scratch_t&\29\20const +2798:bool\20OT::GSUBGPOSVersion1_2::sanitize\28hb_sanitize_context_t*\29\20const +2799:bool\20OT::GSUBGPOSVersion1_2::sanitize\28hb_sanitize_context_t*\29\20const +2800:bool\20OT::Condition::evaluate\28int\20const*\2c\20unsigned\20int\2c\20OT::ItemVarStoreInstancer*\29\20const +2801:blit_aaa_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +2802:atan +2803:alloc_large +2804:af_glyph_hints_done +2805:add_quad\28SkPoint\20const*\2c\20skia_private::TArray*\29 +2806:acos +2807:aaa_fill_path\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20AdditiveBlitter*\2c\20int\2c\20int\2c\20bool\2c\20bool\2c\20bool\29 +2808:_get_path\28OT::cff1::accelerator_t\20const*\2c\20hb_font_t*\2c\20unsigned\20int\2c\20hb_draw_session_t&\2c\20bool\2c\20CFF::point_t*\29 +2809:_get_bounds\28OT::cff1::accelerator_t\20const*\2c\20unsigned\20int\2c\20bounds_t&\2c\20bool\29 +2810:_embind_register_bindings +2811:__trunctfdf2 +2812:__towrite +2813:__toread +2814:__subtf3 +2815:__strchrnul +2816:__rem_pio2f +2817:__rem_pio2 +2818:__math_uflowf +2819:__math_oflowf +2820:__fwritex +2821:__cxxabiv1::__class_type_info::process_static_type_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\29\20const +2822:__cxxabiv1::__class_type_info::process_static_type_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\29\20const +2823:__cxxabiv1::__class_type_info::process_found_base_class\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +2824:__cxxabiv1::__base_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +2825:\28anonymous\20namespace\29::subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +2826:\28anonymous\20namespace\29::shape_contains_rect\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const&\2c\20bool\29 +2827:\28anonymous\20namespace\29::generateFacePathCOLRv1\28FT_FaceRec_*\2c\20unsigned\20short\2c\20SkMatrix\20const*\29 +2828:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads_with_constraint\28SkPoint\20const*\2c\20float\2c\20SkPathFirstDirection\2c\20skia_private::TArray*\2c\20int\29 +2829:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\2c\20int\2c\20bool\2c\20bool\29 +2830:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const +2831:\28anonymous\20namespace\29::bloat_quad\28SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkMatrix\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +2832:\28anonymous\20namespace\29::SkEmptyTypeface::onMakeClone\28SkFontArguments\20const&\29\20const +2833:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29_5427 +2834:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29 +2835:\28anonymous\20namespace\29::DrawAtlasOpImpl::visitProxies\28std::__2::function\20const&\29\20const +2836:\28anonymous\20namespace\29::DrawAtlasOpImpl::programInfo\28\29 +2837:\28anonymous\20namespace\29::DrawAtlasOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +2838:\28anonymous\20namespace\29::DirectMaskSubRun::~DirectMaskSubRun\28\29 +2839:\28anonymous\20namespace\29::DirectMaskSubRun::testingOnly_packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29\20const +2840:WebPRescaleNeededLines +2841:WebPInitDecBufferInternal +2842:WebPInitCustomIo +2843:WebPGetFeaturesInternal +2844:WebPDemuxGetFrame +2845:VP8LInitBitReader +2846:VP8LColorIndexInverseTransformAlpha +2847:VP8InitIoInternal +2848:VP8InitBitReader +2849:TT_Vary_Apply_Glyph_Deltas +2850:TT_Set_Var_Design +2851:SkWuffsCodec::decodeFrame\28\29 +2852:SkVertices::uniqueID\28\29\20const +2853:SkVertices::MakeCopy\28SkVertices::VertexMode\2c\20int\2c\20SkPoint\20const*\2c\20SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20short\20const*\29 +2854:SkVertices::Builder::texCoords\28\29 +2855:SkVertices::Builder::positions\28\29 +2856:SkVertices::Builder::init\28SkVertices::Desc\20const&\29 +2857:SkVertices::Builder::colors\28\29 +2858:SkVertices::Builder::Builder\28SkVertices::VertexMode\2c\20int\2c\20int\2c\20unsigned\20int\29 +2859:SkTypeface_FreeType::MakeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29 +2860:SkTypeface::getTableSize\28unsigned\20int\29\20const +2861:SkTiff::ImageFileDirectory::getEntryTag\28unsigned\20short\29\20const +2862:SkTiff::ImageFileDirectory::MakeFromOffset\28sk_sp\2c\20bool\2c\20unsigned\20int\2c\20bool\29 +2863:SkTextBlobRunIterator::positioning\28\29\20const +2864:SkTSpan::splitAt\28SkTSpan*\2c\20double\2c\20SkArenaAlloc*\29 +2865:SkTSect::computePerpendiculars\28SkTSect*\2c\20SkTSpan*\2c\20SkTSpan*\29 +2866:SkTDStorage::insert\28int\29 +2867:SkTDStorage::calculateSizeOrDie\28int\29::$_0::operator\28\29\28\29\20const +2868:SkTDPQueue::percolateDownIfNecessary\28int\29 +2869:SkTConic::hullIntersects\28SkDConic\20const&\2c\20bool*\29\20const +2870:SkStrokerPriv::CapFactory\28SkPaint::Cap\29 +2871:SkStrokeRec::getInflationRadius\28\29\20const +2872:SkString::equals\28char\20const*\29\20const +2873:SkString::SkString\28std::__2::basic_string_view>\29 +2874:SkStrikeSpec::MakeTransformMask\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +2875:SkStrikeSpec::MakePath\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\29 +2876:SkSpecialImages::MakeFromRaster\28SkIRect\20const&\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\29 +2877:SkShapers::HB::ShapeDontWrapOrReorder\28sk_sp\2c\20sk_sp\29 +2878:SkShaper::TrivialRunIterator::endOfCurrentRun\28\29\20const +2879:SkShaper::MakeFontMgrRunIterator\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20sk_sp\29 +2880:SkShadowTessellator::MakeAmbient\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20bool\29 +2881:SkScan::HairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +2882:SkScan::FillTriangle\28SkPoint\20const*\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +2883:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +2884:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +2885:SkScan::AntiHairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +2886:SkScan::AntiHairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +2887:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\2c\20bool\29 +2888:SkScalerContextRec::CachedMaskGamma\28unsigned\20char\2c\20unsigned\20char\29 +2889:SkScalerContextFTUtils::drawSVGGlyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +2890:SkScalerContext::getFontMetrics\28SkFontMetrics*\29 +2891:SkSLTypeString\28SkSLType\29 +2892:SkSL::simplify_negation\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\29 +2893:SkSL::simplify_matrix_multiplication\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +2894:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +2895:SkSL::build_argument_type_list\28SkSpan>\20const>\29 +2896:SkSL::\28anonymous\20namespace\29::SwitchCaseContainsExit::visitStatement\28SkSL::Statement\20const&\29 +2897:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::returnsInputAlpha\28SkSL::Expression\20const&\29 +2898:SkSL::\28anonymous\20namespace\29::ConstantExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +2899:SkSL::Variable::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\29 +2900:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29\20const +2901:SkSL::Type::MakeSamplerType\28char\20const*\2c\20SkSL::Type\20const&\29 +2902:SkSL::SymbolTable::moveSymbolTo\28SkSL::SymbolTable*\2c\20SkSL::Symbol*\2c\20SkSL::Context\20const&\29 +2903:SkSL::SymbolTable::isType\28std::__2::basic_string_view>\29\20const +2904:SkSL::Symbol::instantiate\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +2905:SkSL::StructType::slotCount\28\29\20const +2906:SkSL::ReturnStatement::~ReturnStatement\28\29_6056 +2907:SkSL::ReturnStatement::~ReturnStatement\28\29 +2908:SkSL::RP::UnownedLValueSlice::~UnownedLValueSlice\28\29 +2909:SkSL::RP::Generator::pushTernaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +2910:SkSL::RP::Generator::pushStructuredComparison\28SkSL::RP::LValue*\2c\20SkSL::Operator\2c\20SkSL::RP::LValue*\2c\20SkSL::Type\20const&\29 +2911:SkSL::RP::Generator::pushMatrixMultiply\28SkSL::RP::LValue*\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +2912:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29 +2913:SkSL::RP::Builder::push_uniform\28SkSL::RP::SlotRange\29 +2914:SkSL::RP::Builder::merge_condition_mask\28\29 +2915:SkSL::RP::Builder::jump\28int\29 +2916:SkSL::RP::Builder::branch_if_no_active_lanes_on_stack_top_equal\28int\2c\20int\29 +2917:SkSL::ProgramUsage::~ProgramUsage\28\29 +2918:SkSL::ProgramUsage::add\28SkSL::ProgramElement\20const&\29 +2919:SkSL::Pool::detachFromThread\28\29 +2920:SkSL::PipelineStage::ConvertProgram\28SkSL::Program\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20SkSL::PipelineStage::Callbacks*\29 +2921:SkSL::Parser::unaryExpression\28\29 +2922:SkSL::Parser::swizzle\28SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::basic_string_view>\2c\20SkSL::Position\29 +2923:SkSL::Parser::block\28bool\2c\20std::__2::unique_ptr>*\29 +2924:SkSL::Operator::getBinaryPrecedence\28\29\20const +2925:SkSL::ModuleLoader::loadGPUModule\28SkSL::Compiler*\29 +2926:SkSL::ModifierFlags::checkPermittedFlags\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\29\20const +2927:SkSL::Mangler::uniqueName\28std::__2::basic_string_view>\2c\20SkSL::SymbolTable*\29 +2928:SkSL::LiteralType::slotType\28unsigned\20long\29\20const +2929:SkSL::Layout::operator==\28SkSL::Layout\20const&\29\20const +2930:SkSL::Layout::checkPermittedLayout\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkEnumBitMask\29\20const +2931:SkSL::Inliner::analyze\28std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\29 +2932:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29 +2933:SkSL::GLSLCodeGenerator::writeLiteral\28SkSL::Literal\20const&\29 +2934:SkSL::GLSLCodeGenerator::writeFunctionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +2935:SkSL::ForStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +2936:SkSL::FieldAccess::description\28SkSL::OperatorPrecedence\29\20const +2937:SkSL::Expression::isIncomplete\28SkSL::Context\20const&\29\20const +2938:SkSL::Expression::compareConstant\28SkSL::Expression\20const&\29\20const +2939:SkSL::DebugTracePriv::~DebugTracePriv\28\29 +2940:SkSL::Context::Context\28SkSL::BuiltinTypes\20const&\2c\20SkSL::ErrorReporter&\29 +2941:SkSL::ConstructorArrayCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +2942:SkSL::ConstructorArray::~ConstructorArray\28\29 +2943:SkSL::ConstructorArray::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +2944:SkSL::Analysis::GetReturnComplexity\28SkSL::FunctionDefinition\20const&\29 +2945:SkSL::Analysis::CallsColorTransformIntrinsics\28SkSL::Program\20const&\29 +2946:SkSL::AliasType::bitWidth\28\29\20const +2947:SkRuntimeEffectPriv::VarAsUniform\28SkSL::Variable\20const&\2c\20SkSL::Context\20const&\2c\20unsigned\20long*\29 +2948:SkRuntimeEffectPriv::UniformsAsSpan\28SkSpan\2c\20sk_sp\2c\20bool\2c\20SkColorSpace\20const*\2c\20SkArenaAlloc*\29 +2949:SkRuntimeEffect::source\28\29\20const +2950:SkRuntimeEffect::makeShader\28sk_sp\2c\20SkSpan\2c\20SkMatrix\20const*\29\20const +2951:SkRuntimeEffect::MakeForBlender\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +2952:SkResourceCache::~SkResourceCache\28\29 +2953:SkResourceCache::discardableFactory\28\29\20const +2954:SkResourceCache::checkMessages\28\29 +2955:SkResourceCache::NewCachedData\28unsigned\20long\29 +2956:SkRegion::translate\28int\2c\20int\2c\20SkRegion*\29\20const +2957:SkRegion::getBoundaryPath\28\29\20const +2958:SkReduceOrder::Cubic\28SkPoint\20const*\2c\20SkPoint*\29 +2959:SkRectPriv::QuadContainsRectMask\28SkM44\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20float\29 +2960:SkRectClipBlitter::~SkRectClipBlitter\28\29 +2961:SkRecords::PreCachedPath::PreCachedPath\28SkPath\20const&\29 +2962:SkRecords::FillBounds::pushSaveBlock\28SkPaint\20const*\2c\20bool\29 +2963:SkRecordDraw\28SkRecord\20const&\2c\20SkCanvas*\2c\20SkPicture\20const*\20const*\2c\20SkDrawable*\20const*\2c\20int\2c\20SkBBoxHierarchy\20const*\2c\20SkPicture::AbortCallback*\29 +2964:SkReadBuffer::readPoint\28SkPoint*\29 +2965:SkReadBuffer::readPath\28\29 +2966:SkReadBuffer::readByteArrayAsData\28\29 +2967:SkRasterPipeline_<256ul>::SkRasterPipeline_\28\29 +2968:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29 +2969:SkRasterPipelineBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +2970:SkRasterPipelineBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +2971:SkRasterPipeline::appendLoad\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +2972:SkRasterClipStack::SkRasterClipStack\28int\2c\20int\29 +2973:SkRasterClip::op\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkClipOp\2c\20bool\29 +2974:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29 +2975:SkRBuffer::skip\28unsigned\20long\29 +2976:SkPngEncoderImpl::~SkPngEncoderImpl\28\29 +2977:SkPngEncoderBase::getTargetInfo\28SkImageInfo\20const&\29 +2978:SkPngEncoder::Make\28SkWStream*\2c\20SkPixmap\20const&\2c\20SkPngEncoder::Options\20const&\29 +2979:SkPngDecoder::IsPng\28void\20const*\2c\20unsigned\20long\29 +2980:SkPixelRef::~SkPixelRef\28\29 +2981:SkPixelRef::notifyPixelsChanged\28\29 +2982:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20sk_sp\29 +2983:SkPictureRecord::addPathToHeap\28SkPath\20const&\29 +2984:SkPictureData::getPath\28SkReadBuffer*\29\20const +2985:SkPicture::serialize\28SkWStream*\2c\20SkSerialProcs\20const*\2c\20SkRefCntSet*\2c\20bool\29\20const +2986:SkPathWriter::update\28SkOpPtT\20const*\29 +2987:SkPathStroker::strokeCloseEnough\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20SkQuadConstruct*\29\20const +2988:SkPathStroker::finishContour\28bool\2c\20bool\29 +2989:SkPathRef::isRRect\28\29\20const +2990:SkPathRef::addGenIDChangeListener\28sk_sp\29 +2991:SkPathRawShapes::RRect::RRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +2992:SkPathPriv::ComputeFirstDirection\28SkPath\20const&\29 +2993:SkPathEffectBase::onAsPoints\28SkPathEffectBase::PointData*\2c\20SkPath\20const&\2c\20SkStrokeRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\29\20const +2994:SkPathEffect::filterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +2995:SkPathBuilder::privateReversePathTo\28SkPath\20const&\29 +2996:SkPathBuilder::operator=\28SkPath\20const&\29 +2997:SkPath::writeToMemory\28void*\29\20const +2998:SkPath::getConvexityOrUnknown\28\29\20const +2999:SkPath::contains\28float\2c\20float\29\20const +3000:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29::$_0::operator\28\29\28SkPoint\20const&\29\20const +3001:SkPath::approximateBytesUsed\28\29\20const +3002:SkParsePath::ToSVGString\28SkPath\20const&\2c\20SkParsePath::PathEncoding\29::$_0::operator\28\29\28char\2c\20SkPoint\20const*\2c\20unsigned\20long\29\20const +3003:SkParse::FindScalar\28char\20const*\2c\20float*\29 +3004:SkPaintToGrPaintWithBlend\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkBlender*\2c\20GrPaint*\29 +3005:SkPaintToGrPaintReplaceShader\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::unique_ptr>\2c\20GrPaint*\29 +3006:SkPaint::refImageFilter\28\29\20const +3007:SkPaint::refBlender\28\29\20const +3008:SkPaint::getBlendMode_or\28SkBlendMode\29\20const +3009:SkPackARGB_as_RGBA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +3010:SkPackARGB_as_BGRA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +3011:SkOpSpan::setOppSum\28int\29 +3012:SkOpSegment::markAndChaseWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int\2c\20SkOpSpanBase**\29 +3013:SkOpSegment::markAllDone\28\29 +3014:SkOpSegment::activeWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +3015:SkOpPtT::contains\28SkOpSegment\20const*\29\20const +3016:SkOpEdgeBuilder::closeContour\28SkPoint\20const&\2c\20SkPoint\20const&\29 +3017:SkOpCoincidence::releaseDeleted\28\29 +3018:SkOpCoincidence::markCollapsed\28SkOpPtT*\29 +3019:SkOpCoincidence::findOverlaps\28SkOpCoincidence*\29\20const +3020:SkOpCoincidence::expand\28\29 +3021:SkOpCoincidence::apply\28\29 +3022:SkOpAngle::orderable\28SkOpAngle*\29 +3023:SkOpAngle::computeSector\28\29 +3024:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\2c\20sk_sp\29 +3025:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\29 +3026:SkMipmap::countLevels\28\29\20const +3027:SkMessageBus::BufferFinishedMessage\2c\20GrDirectContext::DirectContextID\2c\20false>::Get\28\29 +3028:SkMemoryStream::SkMemoryStream\28sk_sp\29 +3029:SkMatrix\20skif::Mapping::map\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +3030:SkMatrix::postSkew\28float\2c\20float\29 +3031:SkMatrix::getMinScale\28\29\20const +3032:SkMatrix::getMinMaxScales\28float*\29\20const +3033:SkMatrix::PolyToPoly\28SkSpan\2c\20SkSpan\29 +3034:SkMaskBuilder::PrepareDestination\28int\2c\20int\2c\20SkMask\20const&\29 +3035:SkM44::preTranslate\28float\2c\20float\2c\20float\29 +3036:SkLineClipper::ClipLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\2c\20bool\29 +3037:SkLRUCache::~SkLRUCache\28\29 +3038:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29 +3039:SkJSONWriter::separator\28bool\29 +3040:SkInvert4x4Matrix\28float\20const*\2c\20float*\29 +3041:SkIntersections::intersectRay\28SkDQuad\20const&\2c\20SkDLine\20const&\29 +3042:SkIntersections::intersectRay\28SkDLine\20const&\2c\20SkDLine\20const&\29 +3043:SkIntersections::intersectRay\28SkDCubic\20const&\2c\20SkDLine\20const&\29 +3044:SkIntersections::intersectRay\28SkDConic\20const&\2c\20SkDLine\20const&\29 +3045:SkIntersections::cleanUpParallelLines\28bool\29 +3046:SkImage_Raster::SkImage_Raster\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20int\29 +3047:SkImage_Ganesh::~SkImage_Ganesh\28\29 +3048:SkImageShader::Make\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +3049:SkImageInfo::Make\28SkISize\2c\20SkColorType\2c\20SkAlphaType\29 +3050:SkImageInfo::MakeN32Premul\28SkISize\29 +3051:SkImageGenerator::getPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\29 +3052:SkImageGenerator::SkImageGenerator\28SkImageInfo\20const&\2c\20unsigned\20int\29 +3053:SkImageFilters::Blur\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +3054:SkImageFilter_Base::getInputBounds\28skif::Mapping\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\29\20const +3055:SkImageFilter_Base::filterImage\28skif::Context\20const&\29\20const +3056:SkImageFilter_Base::affectsTransparentBlack\28\29\20const +3057:SkImage::makeRasterImage\28GrDirectContext*\2c\20SkImage::CachingHint\29\20const +3058:SkImage::height\28\29\20const +3059:SkImage::hasMipmaps\28\29\20const +3060:SkIDChangeListener::List::add\28sk_sp\29 +3061:SkGradientShader::MakeTwoPointConical\28SkPoint\20const&\2c\20float\2c\20SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +3062:SkGradientShader::MakeLinear\28SkPoint\20const*\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +3063:SkGradientBaseShader::AppendInterpolatedToDstStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20bool\2c\20SkGradientShader::Interpolation\20const&\2c\20SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +3064:SkGlyph::setPath\28SkArenaAlloc*\2c\20SkScalerContext*\29 +3065:SkGlyph::pathIsHairline\28\29\20const +3066:SkGlyph::mask\28\29\20const +3067:SkFontPriv::ApproximateTransformedTextSize\28SkFont\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\20const&\29 +3068:SkFontMgr::matchFamily\28char\20const*\29\20const +3069:SkFloatInterpFunc\28float\2c\20float\20const*\2c\20float\20const*\2c\20int\29 +3070:SkFindCubicMaxCurvature\28SkPoint\20const*\2c\20float*\29 +3071:SkExif::parse_ifd\28SkExif::Metadata&\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20bool\2c\20bool\29 +3072:SkEncoder::encodeRows\28int\29 +3073:SkEncodedInfo::ICCProfile::Make\28sk_sp\29 +3074:SkEmptyFontMgr::onMatchFamilyStyleCharacter\28char\20const*\2c\20SkFontStyle\20const&\2c\20char\20const**\2c\20int\2c\20int\29\20const +3075:SkEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkIRect\20const*\29 +3076:SkDynamicMemoryWStream::padToAlign4\28\29 +3077:SkDrawable::SkDrawable\28\29 +3078:SkDevice::simplifyGlyphRunRSXFormAndRedraw\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +3079:SkDevice::setDeviceCoordinateSystem\28SkM44\20const&\2c\20SkM44\20const&\2c\20SkM44\20const&\2c\20int\2c\20int\29 +3080:SkDataTable::at\28int\2c\20unsigned\20long*\29\20const +3081:SkData::MakeFromStream\28SkStream*\2c\20unsigned\20long\29 +3082:SkDQuad::dxdyAtT\28double\29\20const +3083:SkDQuad::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +3084:SkDQuad::FindExtrema\28double\20const*\2c\20double*\29 +3085:SkDCubic::subDivide\28double\2c\20double\29\20const +3086:SkDCubic::searchRoots\28double*\2c\20int\2c\20double\2c\20SkDCubic::SearchAxis\2c\20double*\29\20const +3087:SkDCubic::Coefficients\28double\20const*\2c\20double*\2c\20double*\2c\20double*\2c\20double*\29 +3088:SkDConic::dxdyAtT\28double\29\20const +3089:SkDConic::FindExtrema\28double\20const*\2c\20float\2c\20double*\29 +3090:SkContourMeasure_segTo\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20float\2c\20SkPathBuilder*\29 +3091:SkContourMeasureIter::next\28\29 +3092:SkContourMeasureIter::Impl::compute_quad_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +3093:SkContourMeasureIter::Impl::compute_cubic_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +3094:SkContourMeasureIter::Impl::compute_conic_segs\28SkConic\20const&\2c\20float\2c\20int\2c\20SkPoint\20const&\2c\20int\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20int\29 +3095:SkContourMeasure::getPosTan\28float\2c\20SkPoint*\2c\20SkPoint*\29\20const +3096:SkConic::evalAt\28float\29\20const +3097:SkConic::BuildUnitArc\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPathDirection\2c\20SkMatrix\20const*\2c\20SkConic*\29 +3098:SkColorSpace::toXYZD50\28skcms_Matrix3x3*\29\20const +3099:SkColorSpace::serialize\28\29\20const +3100:SkColorSpace::gamutTransformTo\28SkColorSpace\20const*\2c\20skcms_Matrix3x3*\29\20const +3101:SkColorPalette::SkColorPalette\28unsigned\20int\20const*\2c\20int\29 +3102:SkColor4fPrepForDst\28SkRGBA4f<\28SkAlphaType\293>\2c\20GrColorInfo\20const&\29 +3103:SkCodec::startIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const*\29 +3104:SkChopMonoCubicAtY\28SkPoint\20const*\2c\20float\2c\20SkPoint*\29 +3105:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\2c\20float\29 +3106:SkCanvas::scale\28float\2c\20float\29 +3107:SkCanvas::private_draw_shadow_rec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +3108:SkCanvas::onResetClip\28\29 +3109:SkCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +3110:SkCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +3111:SkCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +3112:SkCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +3113:SkCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +3114:SkCanvas::internal_private_resetClip\28\29 +3115:SkCanvas::internalSaveLayer\28SkCanvas::SaveLayerRec\20const&\2c\20SkCanvas::SaveLayerStrategy\2c\20bool\29 +3116:SkCanvas::internalDrawDeviceWithFilter\28SkDevice*\2c\20SkDevice*\2c\20SkSpan>\2c\20SkPaint\20const&\2c\20SkCanvas::DeviceCompatibleWithFilter\2c\20SkColorInfo\20const&\2c\20float\2c\20SkTileMode\2c\20bool\29 +3117:SkCanvas::experimental_DrawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +3118:SkCanvas::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +3119:SkCanvas::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +3120:SkCanvas::drawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +3121:SkCanvas::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +3122:SkCanvas::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +3123:SkCanvas::drawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +3124:SkCanvas::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +3125:SkCanvas::SkCanvas\28sk_sp\29 +3126:SkCanvas::SkCanvas\28SkIRect\20const&\29 +3127:SkCachedData::~SkCachedData\28\29 +3128:SkBmpRLECodec::setPixel\28void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20char\29 +3129:SkBmpCodec::prepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +3130:SkBlitterClipper::apply\28SkBlitter*\2c\20SkRegion\20const*\2c\20SkIRect\20const*\29 +3131:SkBlitter::blitRegion\28SkRegion\20const&\29 +3132:SkBitmapDevice::Create\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\2c\20SkRasterHandleAllocator*\29 +3133:SkBitmapCacheDesc::Make\28SkImage\20const*\29 +3134:SkBitmap::writePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +3135:SkBitmap::setPixels\28void*\29 +3136:SkBitmap::setPixelRef\28sk_sp\2c\20int\2c\20int\29 +3137:SkBitmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +3138:SkBitmap::pixelRefOrigin\28\29\20const +3139:SkBitmap::notifyPixelsChanged\28\29\20const +3140:SkBitmap::isImmutable\28\29\20const +3141:SkBitmap::installPixels\28SkPixmap\20const&\29 +3142:SkBitmap::allocPixels\28\29 +3143:SkBinaryWriteBuffer::writeScalarArray\28SkSpan\29 +3144:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29_5168 +3145:SkBaseShadowTessellator::handleQuad\28SkPoint\20const*\29 +3146:SkAutoDescriptor::SkAutoDescriptor\28SkAutoDescriptor&&\29 +3147:SkArenaAllocWithReset::SkArenaAllocWithReset\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +3148:SkAnimatedImage::decodeNextFrame\28\29 +3149:SkAnimatedImage::Frame::copyTo\28SkAnimatedImage::Frame*\29\20const +3150:SkAnalyticQuadraticEdge::updateQuadratic\28\29 +3151:SkAnalyticCubicEdge::updateCubic\28\29 +3152:SkAlphaRuns::reset\28int\29 +3153:SkAAClip::setRect\28SkIRect\20const&\29 +3154:ReconstructRow +3155:R_15880 +3156:OpAsWinding::nextEdge\28Contour&\2c\20OpAsWinding::Edge\29 +3157:OT::sbix::sanitize\28hb_sanitize_context_t*\29\20const +3158:OT::post::accelerator_t::cmp_gids\28void\20const*\2c\20void\20const*\2c\20void*\29 +3159:OT::hb_ot_layout_lookup_accelerator_t*\20OT::hb_ot_layout_lookup_accelerator_t::create\28OT::Layout::GSUB_impl::SubstLookup\20const&\29 +3160:OT::gvar_GVAR\2c\201735811442u>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +3161:OT::fvar::sanitize\28hb_sanitize_context_t*\29\20const +3162:OT::cmap_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3163:OT::cmap::sanitize\28hb_sanitize_context_t*\29\20const +3164:OT::cff2::accelerator_templ_t>::_fini\28\29 +3165:OT::avar::sanitize\28hb_sanitize_context_t*\29\20const +3166:OT::VarRegionList::evaluate\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +3167:OT::STAT::sanitize\28hb_sanitize_context_t*\29\20const +3168:OT::Rule::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +3169:OT::MVAR::sanitize\28hb_sanitize_context_t*\29\20const +3170:OT::Layout::GSUB_impl::SubstLookup::serialize_ligature\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20hb_sorted_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\29 +3171:OT::Layout::GPOS_impl::MarkArray::apply\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20OT::Layout::GPOS_impl::AnchorMatrix\20const&\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +3172:OT::GDEFVersion1_2::sanitize\28hb_sanitize_context_t*\29\20const +3173:OT::Device::get_y_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +3174:OT::Device::get_x_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +3175:OT::Condition::sanitize\28hb_sanitize_context_t*\29\20const +3176:OT::ClipList::get_extents\28unsigned\20int\2c\20hb_glyph_extents_t*\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +3177:OT::ChainRule::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +3178:OT::CPAL::sanitize\28hb_sanitize_context_t*\29\20const +3179:OT::COLR::sanitize\28hb_sanitize_context_t*\29\20const +3180:OT::COLR::paint_glyph\28hb_font_t*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20hb_colr_scratch_t&\29\20const +3181:OT::CBLC::sanitize\28hb_sanitize_context_t*\29\20const +3182:MakeRasterCopyPriv\28SkPixmap\20const&\2c\20unsigned\20int\29 +3183:LineQuadraticIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineQuadraticIntersections::PinTPoint\29 +3184:LineQuadraticIntersections::checkCoincident\28\29 +3185:LineQuadraticIntersections::addLineNearEndPoints\28\29 +3186:LineCubicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineCubicIntersections::PinTPoint\29 +3187:LineCubicIntersections::checkCoincident\28\29 +3188:LineCubicIntersections::addLineNearEndPoints\28\29 +3189:LineConicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineConicIntersections::PinTPoint\29 +3190:LineConicIntersections::checkCoincident\28\29 +3191:LineConicIntersections::addLineNearEndPoints\28\29 +3192:Ins_UNKNOWN +3193:GrXferProcessor::GrXferProcessor\28GrProcessor::ClassID\29 +3194:GrVertexChunkBuilder::~GrVertexChunkBuilder\28\29 +3195:GrTriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +3196:GrTriangulator::splitEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +3197:GrTriangulator::pathToPolys\28float\2c\20SkRect\20const&\2c\20bool*\29 +3198:GrTriangulator::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20GrTriangulator::VertexList*\2c\20int\29\20const +3199:GrTriangulator::emitTriangle\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20skgpu::VertexWriter\29\20const +3200:GrTriangulator::checkForIntersection\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +3201:GrTriangulator::applyFillType\28int\29\20const +3202:GrTriangulator::EdgeList::insert\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +3203:GrTriangulator::Edge::intersect\28GrTriangulator::Edge\20const&\2c\20SkPoint*\2c\20unsigned\20char*\29\20const +3204:GrTriangulator::Edge::insertBelow\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +3205:GrTriangulator::Edge::insertAbove\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +3206:GrToGLStencilFunc\28GrStencilTest\29 +3207:GrThreadSafeCache::~GrThreadSafeCache\28\29 +3208:GrThreadSafeCache::dropAllRefs\28\29 +3209:GrTextureRenderTargetProxy::callbackDesc\28\29\20const +3210:GrTextureProxy::clearUniqueKey\28\29 +3211:GrTexture::GrTexture\28GrGpu*\2c\20SkISize\20const&\2c\20skgpu::Protected\2c\20GrTextureType\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +3212:GrTexture::ComputeScratchKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20skgpu::ScratchKey*\29 +3213:GrSurfaceProxyView::asTextureProxyRef\28\29\20const +3214:GrSurfaceProxy::GrSurfaceProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +3215:GrSurfaceProxy::GrSurfaceProxy\28sk_sp\2c\20SkBackingFit\2c\20GrSurfaceProxy::UseAllocator\29 +3216:GrSurface::setRelease\28sk_sp\29 +3217:GrStyledShape::styledBounds\28\29\20const +3218:GrStyledShape::asLine\28SkPoint*\2c\20bool*\29\20const +3219:GrStyledShape::addGenIDChangeListener\28sk_sp\29\20const +3220:GrSimpleMeshDrawOpHelper::fixedFunctionFlags\28\29\20const +3221:GrShape::setRRect\28SkRRect\20const&\29 +3222:GrShape::segmentMask\28\29\20const +3223:GrResourceProvider::assignUniqueKeyToResource\28skgpu::UniqueKey\20const&\2c\20GrGpuResource*\29 +3224:GrResourceCache::releaseAll\28\29 +3225:GrResourceCache::refAndMakeResourceMRU\28GrGpuResource*\29 +3226:GrResourceCache::getNextTimestamp\28\29 +3227:GrRenderTask::addDependency\28GrRenderTask*\29 +3228:GrRenderTargetProxy::canUseStencil\28GrCaps\20const&\29\20const +3229:GrRecordingContextPriv::addOnFlushCallbackObject\28GrOnFlushCallbackObject*\29 +3230:GrRecordingContext::~GrRecordingContext\28\29 +3231:GrRecordingContext::abandonContext\28\29 +3232:GrQuadUtils::TessellationHelper::Vertices::moveTo\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +3233:GrQuadUtils::TessellationHelper::EdgeEquations::reset\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\29 +3234:GrQuadUtils::ResolveAAType\28GrAAType\2c\20GrQuadAAFlags\2c\20GrQuad\20const&\2c\20GrAAType*\2c\20GrQuadAAFlags*\29 +3235:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::append\28GrQuad\20const&\2c\20\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA&&\2c\20GrQuad\20const*\29 +3236:GrPixmap::GrPixmap\28GrImageInfo\2c\20void*\2c\20unsigned\20long\29 +3237:GrPipeline::GrPipeline\28GrPipeline::InitArgs\20const&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29 +3238:GrPersistentCacheUtils::UnpackCachedShaders\28SkReadBuffer*\2c\20SkSL::NativeShader*\2c\20bool\2c\20SkSL::ProgramInterface*\2c\20int\2c\20GrPersistentCacheUtils::ShaderMetadata*\29 +3239:GrPathUtils::convertCubicToQuads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\29 +3240:GrPathTessellationShader::Make\28GrShaderCaps\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::tess::PatchAttribs\29 +3241:GrOp::chainConcat\28std::__2::unique_ptr>\29 +3242:GrMeshDrawOp::PatternHelper::PatternHelper\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +3243:GrMemoryPool::Make\28unsigned\20long\2c\20unsigned\20long\29 +3244:GrMakeKeyFromImageID\28skgpu::UniqueKey*\2c\20unsigned\20int\2c\20SkIRect\20const&\29 +3245:GrImageInfo::GrImageInfo\28GrColorInfo\20const&\2c\20SkISize\20const&\29 +3246:GrGpuResource::removeScratchKey\28\29 +3247:GrGpuResource::registerWithCacheWrapped\28GrWrapCacheable\29 +3248:GrGpuResource::dumpMemoryStatisticsPriv\28SkTraceMemoryDump*\2c\20SkString\20const&\2c\20char\20const*\2c\20unsigned\20long\29\20const +3249:GrGpuBuffer::onGpuMemorySize\28\29\20const +3250:GrGpu::resolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +3251:GrGpu::executeFlushInfo\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20std::__2::optional\2c\20skgpu::MutableTextureState\20const*\29 +3252:GrGeometryProcessor::TextureSampler::TextureSampler\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +3253:GrGeometryProcessor::ProgramImpl::ComputeMatrixKeys\28GrShaderCaps\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\29 +3254:GrGLUniformHandler::getUniformVariable\28GrResourceHandle\29\20const +3255:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12475 +3256:GrGLSemaphore::GrGLSemaphore\28GrGLGpu*\2c\20bool\29 +3257:GrGLSLVaryingHandler::~GrGLSLVaryingHandler\28\29 +3258:GrGLSLUniformHandler::addInputSampler\28skgpu::Swizzle\20const&\2c\20char\20const*\29 +3259:GrGLSLShaderBuilder::emitFunction\28SkSLType\2c\20char\20const*\2c\20SkSpan\2c\20char\20const*\29 +3260:GrGLSLProgramDataManager::setSkMatrix\28GrResourceHandle\2c\20SkMatrix\20const&\29\20const +3261:GrGLSLProgramBuilder::writeFPFunction\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +3262:GrGLSLProgramBuilder::invokeFP\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +3263:GrGLSLProgramBuilder::addRTFlipUniform\28char\20const*\29 +3264:GrGLSLFragmentShaderBuilder::dstColor\28\29 +3265:GrGLSLBlend::BlendKey\28SkBlendMode\29 +3266:GrGLProgramBuilder::~GrGLProgramBuilder\28\29 +3267:GrGLProgramBuilder::computeCountsAndStrides\28unsigned\20int\2c\20GrGeometryProcessor\20const&\2c\20bool\29 +3268:GrGLGpu::flushScissor\28GrScissorState\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +3269:GrGLGpu::flushClearColor\28std::__2::array\29 +3270:GrGLGpu::createTexture\28SkISize\2c\20GrGLFormat\2c\20unsigned\20int\2c\20skgpu::Renderable\2c\20GrGLTextureParameters::SamplerOverriddenState*\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +3271:GrGLGpu::copySurfaceAsDraw\28GrSurface*\2c\20bool\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +3272:GrGLGpu::HWVertexArrayState::bindInternalVertexArray\28GrGLGpu*\2c\20GrBuffer\20const*\29 +3273:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +3274:GrGLBuffer::Make\28GrGLGpu*\2c\20unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +3275:GrGLAttribArrayState::enableVertexArrays\28GrGLGpu\20const*\2c\20int\2c\20GrPrimitiveRestart\29 +3276:GrFragmentProcessors::make_effect_fp\28sk_sp\2c\20char\20const*\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkSpan\2c\20GrFPArgs\20const&\29 +3277:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkMatrix\20const&\29 +3278:GrFragmentProcessors::MakeChildFP\28SkRuntimeEffect::ChildPtr\20const&\2c\20GrFPArgs\20const&\29 +3279:GrFragmentProcessors::IsSupported\28SkMaskFilter\20const*\29 +3280:GrFragmentProcessor::makeProgramImpl\28\29\20const +3281:GrFragmentProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +3282:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +3283:GrFragmentProcessor::MulInputByChildAlpha\28std::__2::unique_ptr>\29 +3284:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +3285:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29 +3286:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3287:GrDynamicAtlas::makeNode\28GrDynamicAtlas::Node*\2c\20int\2c\20int\2c\20int\2c\20int\29 +3288:GrDynamicAtlas::instantiate\28GrOnFlushResourceProvider*\2c\20sk_sp\29 +3289:GrDrawingManager::setLastRenderTask\28GrSurfaceProxy\20const*\2c\20GrRenderTask*\29 +3290:GrDrawingManager::flushSurfaces\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +3291:GrDrawOpAtlas::updatePlot\28GrDeferredUploadTarget*\2c\20skgpu::AtlasLocator*\2c\20skgpu::Plot*\29 +3292:GrDirectContext::resetContext\28unsigned\20int\29 +3293:GrDirectContext::getResourceCacheLimit\28\29\20const +3294:GrDefaultGeoProcFactory::MakeForDeviceSpace\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +3295:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20sk_sp\29 +3296:GrColorSpaceXform::apply\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +3297:GrColorSpaceXform::Equals\28GrColorSpaceXform\20const*\2c\20GrColorSpaceXform\20const*\29 +3298:GrBufferAllocPool::unmap\28\29 +3299:GrBlurUtils::can_filter_mask\28SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect*\29 +3300:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29 +3301:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +3302:GrBackendTextures::MakeGL\28int\2c\20int\2c\20skgpu::Mipmapped\2c\20GrGLTextureInfo\20const&\2c\20sk_sp\2c\20std::__2::basic_string_view>\29 +3303:GrBackendFormatStencilBits\28GrBackendFormat\20const&\29 +3304:GrBackendFormat::asMockCompressionType\28\29\20const +3305:GrAATriangulator::~GrAATriangulator\28\29 +3306:GrAAConvexTessellator::fanRing\28GrAAConvexTessellator::Ring\20const&\29 +3307:GrAAConvexTessellator::computePtAlongBisector\28int\2c\20SkPoint\20const&\2c\20int\2c\20float\2c\20SkPoint*\29\20const +3308:GetVariationDesignPosition\28FT_FaceRec_*\2c\20SkSpan\29 +3309:GetAxes\28FT_FaceRec_*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\29 +3310:FT_Stream_ReadAt +3311:FT_Set_Char_Size +3312:FT_Request_Metrics +3313:FT_New_Library +3314:FT_Hypot +3315:FT_Get_Var_Design_Coordinates +3316:FT_Get_Paint +3317:FT_Get_MM_Var +3318:FT_Get_Advance +3319:FT_Add_Default_Modules +3320:DecodeImageData +3321:Cr_z_inflate_table +3322:Cr_z_inflateReset +3323:Cr_z_deflateEnd +3324:Cr_z_copy_with_crc +3325:Compute_Point_Displacement +3326:BuildHuffmanTable +3327:BrotliWarmupBitReader +3328:BrotliDecoderHuffmanTreeGroupInit +3329:AAT::trak::sanitize\28hb_sanitize_context_t*\29\20const +3330:AAT::morx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3331:AAT::mortmorx::accelerator_t::~accelerator_t\28\29 +3332:AAT::mort_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +3333:AAT::ltag::sanitize\28hb_sanitize_context_t*\29\20const +3334:AAT::feat::sanitize\28hb_sanitize_context_t*\29\20const +3335:AAT::ankr::sanitize\28hb_sanitize_context_t*\29\20const +3336:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +3337:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +3338:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +3339:AAT::KerxTable::accelerator_t::~accelerator_t\28\29 +3340:3103 +3341:3104 +3342:3105 +3343:3106 +3344:3107 +3345:3108 +3346:3109 +3347:3110 +3348:3111 +3349:3112 +3350:3113 +3351:3114 +3352:3115 +3353:3116 +3354:3117 +3355:3118 +3356:3119 +3357:3120 +3358:3121 +3359:3122 +3360:3123 +3361:3124 +3362:3125 +3363:3126 +3364:3127 +3365:3128 +3366:3129 +3367:zeroinfnan +3368:wuffs_lzw__decoder__transform_io +3369:wuffs_gif__decoder__set_quirk_enabled +3370:wuffs_gif__decoder__restart_frame +3371:wuffs_gif__decoder__num_animation_loops +3372:wuffs_gif__decoder__frame_dirty_rect +3373:wuffs_gif__decoder__decode_up_to_id_part1 +3374:wuffs_gif__decoder__decode_frame +3375:write_vertex_position\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrShaderVar\20const&\2c\20SkMatrix\20const&\2c\20char\20const*\2c\20GrShaderVar*\2c\20GrResourceHandle*\29 +3376:write_passthrough_vertex_position\28GrGLSLVertexBuilder*\2c\20GrShaderVar\20const&\2c\20GrShaderVar*\29 +3377:write_buf +3378:wctomb +3379:wchar_t*\20std::__2::copy\5babi:nn180100\5d\2c\20wchar_t*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20wchar_t*\29 +3380:wchar_t*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20std::__2::__element_count\29 +3381:walk_simple_edges\28SkEdge*\2c\20SkBlitter*\2c\20int\2c\20int\29 +3382:vsscanf +3383:void\20std::__2::vector>::__assign_with_size\5babi:ne180100\5d\28unsigned\20long*\2c\20unsigned\20long*\2c\20long\29 +3384:void\20std::__2::vector>::__assign_with_size\5babi:ne180100\5d\28skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20long\29 +3385:void\20std::__2::vector>::__assign_with_size\5babi:ne180100\5d\28SkString*\2c\20SkString*\2c\20long\29 +3386:void\20std::__2::vector>::__assign_with_size\5babi:ne180100\5d\28SkFontArguments::VariationPosition::Coordinate*\2c\20SkFontArguments::VariationPosition::Coordinate*\2c\20long\29 +3387:void\20std::__2::basic_string\2c\20std::__2::allocator>::__init\28wchar_t\20const*\2c\20wchar_t\20const*\29 +3388:void\20std::__2::basic_string\2c\20std::__2::allocator>::__init\28char*\2c\20char*\29 +3389:void\20std::__2::__tree_balance_after_insert\5babi:ne180100\5d*>\28std::__2::__tree_node_base*\2c\20std::__2::__tree_node_base*\29 +3390:void\20std::__2::__stable_sort_move\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\29 +3391:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +3392:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\29 +3393:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +3394:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +3395:void\20std::__2::__sift_up\5babi:ne180100\5d*>>\28std::__2::__wrap_iter*>\2c\20std::__2::__wrap_iter*>\2c\20GrGeometryProcessor::ProgramImpl::emitTransformCode\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\29::$_1&\2c\20std::__2::iterator_traits*>>::difference_type\29 +3396:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d\20const&>\28std::__2::__optional_copy_assign_base\20const&\29 +3397:void\20std::__2::__introsort\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +3398:void\20std::__2::__introsort\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\2c\20std::__2::iterator_traits<\28anonymous\20namespace\29::Entry*>::difference_type\2c\20bool\29 +3399:void\20std::__2::__introsort\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +3400:void\20std::__2::__introsort\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +3401:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20char*&\2c\20char*&\29 +3402:void\20std::__2::__call_once_proxy\5babi:nn180100\5d>\28void*\29 +3403:void\20sorted_merge<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +3404:void\20sorted_merge<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +3405:void\20sort_r_simple<>\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29_14351 +3406:void\20skgpu::ganesh::SurfaceFillContext::clear<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3407:void\20hair_path<\28SkPaint::Cap\292>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3408:void\20hair_path<\28SkPaint::Cap\291>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3409:void\20hair_path<\28SkPaint::Cap\290>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3410:void\20emscripten::internal::raw_destructor>\28sk_sp*\29 +3411:void\20emscripten::internal::MemberAccess>::setWire\28sk_sp\20SkRuntimeEffect::TracedShader::*\20const&\2c\20SkRuntimeEffect::TracedShader&\2c\20sk_sp*\29 +3412:void\20emscripten::internal::MemberAccess::setWire\28SimpleFontStyle\20SimpleStrutStyle::*\20const&\2c\20SimpleStrutStyle&\2c\20SimpleFontStyle*\29 +3413:void\20\28anonymous\20namespace\29::copyFT2LCD16\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\29 +3414:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int*\2c\20int\29 +3415:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20unsigned\20char*\2c\20int\29 +3416:void\20SkTIntroSort\28int\2c\20int*\2c\20int\2c\20DistanceLessThan\20const&\29 +3417:void\20SkTIntroSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29>\28int\2c\20float*\2c\20int\2c\20void\20SkTQSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29\20const&\29 +3418:void\20SkTIntroSort\28int\2c\20SkString*\2c\20int\2c\20bool\20\20const\28&\29\28SkString\20const&\2c\20SkString\20const&\29\29 +3419:void\20SkTIntroSort\28int\2c\20SkOpRayHit**\2c\20int\2c\20bool\20\20const\28&\29\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29\29 +3420:void\20SkTIntroSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29>\28int\2c\20SkOpContour*\2c\20int\2c\20void\20SkTQSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29\20const&\29 +3421:void\20SkTIntroSort>\2c\20SkCodec::Result*\29::Entry\2c\20SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29::EntryLessThan>\28int\2c\20SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29::Entry*\2c\20int\2c\20SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29::EntryLessThan\20const&\29 +3422:void\20SkTIntroSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29>\28int\2c\20SkClosestRecord\20const*\2c\20int\2c\20void\20SkTQSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29\20const&\29 +3423:void\20SkTIntroSort\28int\2c\20SkAnalyticEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29\29 +3424:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\20const\28&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +3425:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\28*\20const&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +3426:void\20SkTIntroSort\28int\2c\20Edge*\2c\20int\2c\20EdgeLT\20const&\29 +3427:void\20AAT::LookupFormat2>::collect_glyphs\28hb_bit_set_t&\29\20const +3428:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +3429:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +3430:virtual\20thunk\20to\20GrGLTexture::onSetLabel\28\29 +3431:virtual\20thunk\20to\20GrGLTexture::backendFormat\28\29\20const +3432:vfiprintf +3433:validate_texel_levels\28SkISize\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20GrCaps\20const*\29 +3434:unsigned\20short\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3435:unsigned\20long\20long\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3436:unsigned\20long\20const&\20std::__2::min\5babi:nn180100\5d\28unsigned\20long\20const&\2c\20unsigned\20long\20const&\29 +3437:unsigned\20int\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3438:unsigned\20int\20const*\20std::__2::lower_bound\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20unsigned\20long\20const&\29 +3439:unsigned\20int\20const&\20std::__2::__identity::operator\28\29\5babi:nn180100\5d\28unsigned\20int\20const&\29\20const +3440:ubidi_close_skia +3441:u_terminateUChars_skia +3442:u_charType_skia +3443:tt_size_run_prep +3444:tt_size_done_bytecode +3445:tt_sbit_decoder_load_image +3446:tt_face_vary_cvt +3447:tt_face_palette_set +3448:tt_face_load_cvt +3449:tt_face_get_metrics +3450:tt_done_blend +3451:tt_delta_interpolate +3452:tt_cmap4_next +3453:tt_cmap4_char_map_linear +3454:tt_cmap4_char_map_binary +3455:tt_cmap14_get_def_chars +3456:tt_cmap13_next +3457:tt_cmap12_next +3458:tt_cmap12_init +3459:tt_cmap12_char_map_binary +3460:tt_apply_mvar +3461:toParagraphStyle\28SimpleParagraphStyle\20const&\29 +3462:toBytes\28sk_sp\29 +3463:t1_lookup_glyph_by_stdcharcode_ps +3464:t1_builder_close_contour +3465:t1_builder_check_points +3466:strtoull +3467:strtoll_l +3468:strspn +3469:strncpy +3470:stream_close +3471:store_int +3472:std::logic_error::~logic_error\28\29 +3473:std::logic_error::logic_error\28char\20const*\29 +3474:std::exception::exception\5babi:nn180100\5d\28\29 +3475:std::__2::vector>::max_size\28\29\20const +3476:std::__2::vector>::capacity\5babi:nn180100\5d\28\29\20const +3477:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +3478:std::__2::vector>::__clear\5babi:nn180100\5d\28\29 +3479:std::__2::vector>::__base_destruct_at_end\5babi:nn180100\5d\28std::__2::locale::facet**\29 +3480:std::__2::vector>::insert\28std::__2::__wrap_iter\2c\20float&&\29 +3481:std::__2::vector>::__append\28unsigned\20long\29 +3482:std::__2::unique_ptr::operator=\5babi:nn180100\5d\28std::__2::unique_ptr&&\29 +3483:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3484:std::__2::unique_ptr>::operator=\5babi:ne180100\5d\28std::nullptr_t\29 +3485:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkCanvas::Layer*\29 +3486:std::__2::unique_ptr>*\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::insert>>\28GrProgramDesc\20const&\2c\20std::__2::unique_ptr>&&\29 +3487:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda0'\28\29::operator\28\29\28\29\20const +3488:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +3489:std::__2::to_string\28unsigned\20long\29 +3490:std::__2::to_chars_result\20std::__2::__to_chars_itoa\5babi:nn180100\5d\28char*\2c\20char*\2c\20unsigned\20int\2c\20std::__2::integral_constant\29 +3491:std::__2::time_put>>::~time_put\28\29 +3492:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3493:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3494:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3495:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3496:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3497:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +3498:std::__2::reverse_iterator::operator++\5babi:nn180100\5d\28\29 +3499:std::__2::reverse_iterator::operator*\5babi:nn180100\5d\28\29\20const +3500:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t*\29\20const +3501:std::__2::pair\2c\20void*>*>\2c\20bool>\20std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__emplace_unique_key_args\2c\20std::__2::tuple<>>\28GrFragmentProcessor\20const*\20const&\2c\20std::__2::piecewise_construct_t\20const&\2c\20std::__2::tuple&&\2c\20std::__2::tuple<>&&\29 +3502:std::__2::pair*>\2c\20bool>\20std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__emplace_unique_key_args\28int\20const&\2c\20int\20const&\29 +3503:std::__2::pair\2c\20std::__2::allocator>>>::pair\5babi:ne180100\5d\28std::__2::pair\2c\20std::__2::allocator>>>&&\29 +3504:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +3505:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28wchar_t\29 +3506:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28char\29 +3507:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28SkPath\20const&\29 +3508:std::__2::numpunct::~numpunct\28\29 +3509:std::__2::numpunct::~numpunct\28\29 +3510:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +3511:std::__2::num_get>>\20const&\20std::__2::use_facet\5babi:nn180100\5d>>>\28std::__2::locale\20const&\29 +3512:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +3513:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3514:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3515:std::__2::moneypunct::do_negative_sign\28\29\20const +3516:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3517:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +3518:std::__2::moneypunct::do_negative_sign\28\29\20const +3519:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20wchar_t*&\2c\20wchar_t*\29 +3520:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20char*&\2c\20char*\29 +3521:std::__2::locale::facet**\20std::__2::__construct_at\5babi:nn180100\5d\28std::__2::locale::facet**\29 +3522:std::__2::locale::__imp::~__imp\28\29 +3523:std::__2::locale::__imp::release\28\29 +3524:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20std::__2::random_access_iterator_tag\29 +3525:std::__2::iterator_traits\2c\20std::__2::allocator>\20const*>::difference_type\20std::__2::distance\5babi:nn180100\5d\2c\20std::__2::allocator>\20const*>\28std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\29 +3526:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28char*\2c\20char*\29 +3527:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28char*\2c\20char*\2c\20std::__2::random_access_iterator_tag\29 +3528:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +3529:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +3530:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +3531:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +3532:std::__2::ios_base::width\5babi:nn180100\5d\28long\29 +3533:std::__2::ios_base::init\28void*\29 +3534:std::__2::ios_base::imbue\28std::__2::locale\20const&\29 +3535:std::__2::ios_base::__call_callbacks\28std::__2::ios_base::event\29 +3536:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::writeDeferredStrokePatch\28SkPoint\2c\20std::__2::optional\29 +3537:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:nn180100\5d\28char&\2c\20char&\29 +3538:std::__2::deque>::__add_back_capacity\28\29 +3539:std::__2::default_delete::operator\28\29\5babi:ne180100\5d\28sktext::GlyphRunBuilder*\29\20const +3540:std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>::type\20std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>\28skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot*\29\20const +3541:std::__2::default_delete\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot>::type\20std::__2::default_delete\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot>\28skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot*\29\20const +3542:std::__2::default_delete\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot>::type\20std::__2::default_delete\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot>\28skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot*\29\20const +3543:std::__2::ctype::~ctype\28\29 +3544:std::__2::codecvt::~codecvt\28\29 +3545:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +3546:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char32_t\20const*\2c\20char32_t\20const*\2c\20char32_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +3547:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +3548:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char32_t*\2c\20char32_t*\2c\20char32_t*&\29\20const +3549:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +3550:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +3551:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char16_t*\2c\20char16_t*\2c\20char16_t*&\29\20const +3552:std::__2::char_traits::not_eof\5babi:nn180100\5d\28int\29 +3553:std::__2::char_traits::assign\5babi:nn180100\5d\28char*\2c\20unsigned\20long\2c\20char\29 +3554:std::__2::basic_stringstream\2c\20std::__2::allocator>::basic_stringstream\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29 +3555:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29 +3556:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +3557:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20wchar_t\20const*\29 +3558:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20char\29 +3559:std::__2::basic_string\2c\20std::__2::allocator>::basic_string>\2c\200>\28std::__2::basic_string_view>\20const&\29 +3560:std::__2::basic_string\2c\20std::__2::allocator>::__null_terminate_at\5babi:nn180100\5d\28char*\2c\20unsigned\20long\29 +3561:std::__2::basic_string\2c\20std::__2::allocator>&\20skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::emplace_back\28char\20const*&&\29 +3562:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +3563:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +3564:std::__2::basic_streambuf>::sputc\5babi:nn180100\5d\28char\29 +3565:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +3566:std::__2::basic_streambuf>::setp\5babi:nn180100\5d\28char*\2c\20char*\29 +3567:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +3568:std::__2::basic_streambuf>::basic_streambuf\28\29 +3569:std::__2::basic_streambuf>::__pbump\5babi:nn180100\5d\28long\29 +3570:std::__2::basic_ostream>::~basic_ostream\28\29_16291 +3571:std::__2::basic_ostream>::sentry::~sentry\28\29 +3572:std::__2::basic_ostream>::sentry::sentry\28std::__2::basic_ostream>&\29 +3573:std::__2::basic_ostream>::operator<<\28float\29 +3574:std::__2::basic_ostream>::flush\28\29 +3575:std::__2::basic_istream>::~basic_istream\28\29_16250 +3576:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::__sso_allocator&\2c\20std::__2::locale::facet**\2c\20unsigned\20long\29 +3577:std::__2::allocator::deallocate\5babi:nn180100\5d\28wchar_t*\2c\20unsigned\20long\29 +3578:std::__2::allocator::allocate\5babi:nn180100\5d\28unsigned\20long\29 +3579:std::__2::__wrap_iter\20std::__2::vector>::__insert_with_size\5babi:ne180100\5d>\2c\20std::__2::reverse_iterator>>\28std::__2::__wrap_iter\2c\20std::__2::reverse_iterator>\2c\20std::__2::reverse_iterator>\2c\20long\29 +3580:std::__2::__wrap_iter\20std::__2::vector>::__insert_with_size\5babi:ne180100\5d\2c\20std::__2::__wrap_iter>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20long\29 +3581:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +3582:std::__2::__time_put::__time_put\5babi:nn180100\5d\28\29 +3583:std::__2::__time_put::__do_put\28char*\2c\20char*&\2c\20tm\20const*\2c\20char\2c\20char\29\20const +3584:std::__2::__split_buffer>::push_back\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +3585:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3586:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +3587:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +3588:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +3589:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +3590:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20wchar_t&\2c\20wchar_t&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +3591:std::__2::__money_put::__format\28wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20unsigned\20int\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +3592:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20char&\2c\20char&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +3593:std::__2::__money_put::__format\28char*\2c\20char*&\2c\20char*&\2c\20unsigned\20int\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +3594:std::__2::__libcpp_sscanf_l\28char\20const*\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +3595:std::__2::__libcpp_mbrtowc_l\5babi:nn180100\5d\28wchar_t*\2c\20char\20const*\2c\20unsigned\20long\2c\20__mbstate_t*\2c\20__locale_struct*\29 +3596:std::__2::__libcpp_mb_cur_max_l\5babi:nn180100\5d\28__locale_struct*\29 +3597:std::__2::__libcpp_deallocate\5babi:nn180100\5d\28void*\2c\20unsigned\20long\2c\20unsigned\20long\29 +3598:std::__2::__libcpp_allocate\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\29 +3599:std::__2::__is_overaligned_for_new\5babi:nn180100\5d\28unsigned\20long\29 +3600:std::__2::__function::__value_func::swap\5babi:ne180100\5d\28std::__2::__function::__value_func&\29 +3601:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +3602:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +3603:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +3604:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy_deallocate\28\29 +3605:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy\28\29 +3606:std::__2::__constexpr_wcslen\5babi:nn180100\5d\28wchar_t\20const*\29 +3607:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::__sso_allocator&\2c\20unsigned\20long\29 +3608:start_input_pass +3609:sktext::gpu::build_distance_adjust_table\28float\29 +3610:sktext::gpu::VertexFiller::isLCD\28\29\20const +3611:sktext::gpu::VertexFiller::CanUseDirect\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +3612:sktext::gpu::TextBlobRedrawCoordinator::internalRemove\28sktext::gpu::TextBlob*\29 +3613:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_2::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +3614:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_0::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +3615:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29 +3616:sktext::gpu::SubRunContainer::EstimateAllocSize\28sktext::GlyphRunList\20const&\29 +3617:sktext::gpu::SubRunAllocator::SubRunAllocator\28char*\2c\20int\2c\20int\29 +3618:sktext::gpu::StrikeCache::~StrikeCache\28\29 +3619:sktext::gpu::SlugImpl::Make\28SkMatrix\20const&\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\29 +3620:sktext::gpu::GlyphVector::packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29 +3621:sktext::gpu::BagOfBytes::BagOfBytes\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29::$_1::operator\28\29\28\29\20const +3622:sktext::glyphrun_source_bounds\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkZip\2c\20SkSpan\29 +3623:sktext::SkStrikePromise::resetStrike\28\29 +3624:sktext::GlyphRunList::makeBlob\28\29\20const +3625:sktext::GlyphRunBuilder::blobToGlyphRunList\28SkTextBlob\20const&\2c\20SkPoint\29 +3626:sktext::GlyphRun*\20std::__2::vector>::__emplace_back_slow_path&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&>\28SkFont\20const&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\29 +3627:skstd::to_string\28float\29 +3628:skpathutils::FillPathWithPaint\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkPathBuilder*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29 +3629:skjpeg_err_exit\28jpeg_common_struct*\29 +3630:skip_string +3631:skip_procedure +3632:skif::\28anonymous\20namespace\29::downscale_step_count\28float\29 +3633:skif::\28anonymous\20namespace\29::decompose_transform\28SkMatrix\20const&\2c\20SkPoint\2c\20SkMatrix*\2c\20SkMatrix*\29 +3634:skif::Mapping::adjustLayerSpace\28SkM44\20const&\29 +3635:skif::LayerSpace::relevantSubset\28skif::LayerSpace\2c\20SkTileMode\29\20const +3636:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20SkBlender\20const*\29\20const +3637:skif::FilterResult::MakeFromImage\28skif::Context\20const&\2c\20sk_sp\2c\20SkRect\2c\20skif::ParameterSpace\2c\20SkSamplingOptions\20const&\29 +3638:skif::FilterResult::FilterResult\28sk_sp\2c\20skif::LayerSpace\20const&\29 +3639:skif::Context::withNewSource\28skif::FilterResult\20const&\29\20const +3640:skia_private::THashTable::Traits>::set\28unsigned\20long\20long\29 +3641:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::set\28std::__2::basic_string_view>\29 +3642:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::resize\28int\29 +3643:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +3644:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::removeSlot\28int\29 +3645:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::resize\28int\29 +3646:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\29 +3647:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\2c\20unsigned\20int\29 +3648:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair&&\29 +3649:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +3650:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\29 +3651:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::operator=\28skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>\20const&\29 +3652:skia_private::THashTable::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::resize\28int\29 +3653:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair&&\29 +3654:skia_private::THashTable::Pair\2c\20SkSL::Analysis::SpecializedCallKey\2c\20skia_private::THashMap::Pair>::set\28skia_private::THashMap::Pair\29 +3655:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +3656:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +3657:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::resize\28int\29 +3658:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28skgpu::ganesh::SmallPathShapeData*&&\29 +3659:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +3660:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::resize\28int\29 +3661:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::resize\28int\29 +3662:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::uncheckedSet\28\28anonymous\20namespace\29::CacheImpl::Value*&&\29 +3663:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::resize\28int\29 +3664:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +3665:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +3666:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +3667:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +3668:skia_private::THashTable::resize\28int\29 +3669:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::removeIfExists\28unsigned\20int\20const&\29 +3670:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +3671:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::uncheckedSet\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*&&\29 +3672:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +3673:skia_private::THashTable::AdaptedTraits>::set\28GrThreadSafeCache::Entry*\29 +3674:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +3675:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +3676:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +3677:skia_private::THashTable::Traits>::resize\28int\29 +3678:skia_private::THashSet::add\28FT_Opaque_Paint_\29 +3679:skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +3680:skia_private::THashMap>\2c\20SkGoodHash>::remove\28SkImageFilter\20const*\20const&\29 +3681:skia_private::TArray::push_back_raw\28int\29 +3682:skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::checkRealloc\28int\2c\20double\29 +3683:skia_private::TArray::~TArray\28\29 +3684:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +3685:skia_private::TArray::operator=\28skia_private::TArray&&\29 +3686:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +3687:skia_private::TArray::BufferFinishedMessage\2c\20false>::operator=\28skia_private::TArray::BufferFinishedMessage\2c\20false>&&\29 +3688:skia_private::TArray::BufferFinishedMessage\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +3689:skia_private::TArray::operator=\28skia_private::TArray&&\29 +3690:skia_private::TArray\29::ReorderedArgument\2c\20false>::push_back\28SkSL::optimize_constructor_swizzle\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ConstructorCompound\20const&\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29::ReorderedArgument&&\29 +3691:skia_private::TArray::TArray\28skia_private::TArray&&\29 +3692:skia_private::TArray::swap\28skia_private::TArray&\29 +3693:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +3694:skia_private::TArray::push_back\28SkPath&&\29 +3695:skia_private::TArray::resize_back\28int\29 +3696:skia_private::TArray::push_back_raw\28int\29 +3697:skia_private::TArray::push_back_raw\28int\29 +3698:skia_private::TArray::push_back_raw\28int\29 +3699:skia_private::TArray::push_back_raw\28int\29 +3700:skia_private::TArray::move_back_n\28int\2c\20GrTextureProxy**\29 +3701:skia_private::TArray::operator=\28skia_private::TArray&&\29 +3702:skia_private::TArray::push_back_n\28int\2c\20EllipticalRRectOp::RRect\20const*\29 +3703:skia_png_zfree +3704:skia_png_write_zTXt +3705:skia_png_write_tIME +3706:skia_png_write_tEXt +3707:skia_png_write_iTXt +3708:skia_png_set_write_fn +3709:skia_png_set_unknown_chunks +3710:skia_png_set_swap +3711:skia_png_set_strip_16 +3712:skia_png_set_read_user_transform_fn +3713:skia_png_set_read_user_chunk_fn +3714:skia_png_set_option +3715:skia_png_set_mem_fn +3716:skia_png_set_expand_gray_1_2_4_to_8 +3717:skia_png_set_error_fn +3718:skia_png_set_compression_level +3719:skia_png_set_IHDR +3720:skia_png_read_filter_row +3721:skia_png_process_IDAT_data +3722:skia_png_icc_set_sRGB +3723:skia_png_icc_check_tag_table +3724:skia_png_icc_check_header +3725:skia_png_get_uint_31 +3726:skia_png_get_sBIT +3727:skia_png_get_rowbytes +3728:skia_png_get_error_ptr +3729:skia_png_get_bit_depth +3730:skia_png_get_IHDR +3731:skia_png_do_swap +3732:skia_png_do_read_transformations +3733:skia_png_do_read_interlace +3734:skia_png_do_packswap +3735:skia_png_do_invert +3736:skia_png_do_gray_to_rgb +3737:skia_png_do_expand +3738:skia_png_do_check_palette_indexes +3739:skia_png_do_bgr +3740:skia_png_destroy_png_struct +3741:skia_png_destroy_gamma_table +3742:skia_png_create_png_struct +3743:skia_png_create_info_struct +3744:skia_png_crc_read +3745:skia_png_colorspace_sync_info +3746:skia_png_check_IHDR +3747:skia::textlayout::TypefaceFontStyleSet::matchStyle\28SkFontStyle\20const&\29 +3748:skia::textlayout::TextStyle::matchOneAttribute\28skia::textlayout::StyleType\2c\20skia::textlayout::TextStyle\20const&\29\20const +3749:skia::textlayout::TextStyle::equals\28skia::textlayout::TextStyle\20const&\29\20const +3750:skia::textlayout::TextShadow::operator!=\28skia::textlayout::TextShadow\20const&\29\20const +3751:skia::textlayout::TextLine::paint\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\29 +3752:skia::textlayout::TextLine::iterateThroughClustersInGlyphsOrder\28bool\2c\20bool\2c\20std::__2::function\20const&\29\20const::$_0::operator\28\29\28unsigned\20long\20const&\29\20const +3753:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkRect\29::operator\28\29\28SkRect\29\20const +3754:skia::textlayout::TextLine::getMetrics\28\29\20const +3755:skia::textlayout::TextLine::ensureTextBlobCachePopulated\28\29 +3756:skia::textlayout::TextLine::buildTextBlob\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +3757:skia::textlayout::TextLine::TextLine\28skia::textlayout::ParagraphImpl*\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20skia::textlayout::InternalLineMetrics\29 +3758:skia::textlayout::TextLine&\20skia_private::TArray::emplace_back&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&>\28skia::textlayout::ParagraphImpl*&&\2c\20SkPoint&\2c\20SkPoint&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&\29 +3759:skia::textlayout::Run::shift\28skia::textlayout::Cluster\20const*\2c\20float\29 +3760:skia::textlayout::Run::newRunBuffer\28\29 +3761:skia::textlayout::Run::findLimitingGlyphClusters\28skia::textlayout::SkRange\29\20const +3762:skia::textlayout::Run::addSpacesAtTheEnd\28float\2c\20skia::textlayout::Cluster*\29 +3763:skia::textlayout::ParagraphStyle::effective_align\28\29\20const +3764:skia::textlayout::ParagraphStyle::ParagraphStyle\28\29 +3765:skia::textlayout::ParagraphPainter::DecorationStyle::DecorationStyle\28unsigned\20int\2c\20float\2c\20std::__2::optional\29 +3766:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29 +3767:skia::textlayout::ParagraphImpl::text\28skia::textlayout::SkRange\29 +3768:skia::textlayout::ParagraphImpl::resolveStrut\28\29 +3769:skia::textlayout::ParagraphImpl::getGlyphInfoAtUTF16Offset\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +3770:skia::textlayout::ParagraphImpl::getGlyphClusterAt\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +3771:skia::textlayout::ParagraphImpl::findPreviousGraphemeBoundary\28unsigned\20long\29\20const +3772:skia::textlayout::ParagraphImpl::computeEmptyMetrics\28\29 +3773:skia::textlayout::ParagraphImpl::clusters\28skia::textlayout::SkRange\29 +3774:skia::textlayout::ParagraphImpl::block\28unsigned\20long\29 +3775:skia::textlayout::ParagraphCacheValue::~ParagraphCacheValue\28\29 +3776:skia::textlayout::ParagraphCacheKey::ParagraphCacheKey\28skia::textlayout::ParagraphImpl\20const*\29 +3777:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29 +3778:skia::textlayout::ParagraphBuilderImpl::make\28skia::textlayout::ParagraphStyle\20const&\2c\20sk_sp\2c\20sk_sp\29 +3779:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\2c\20bool\29 +3780:skia::textlayout::ParagraphBuilderImpl::ParagraphBuilderImpl\28skia::textlayout::ParagraphStyle\20const&\2c\20sk_sp\2c\20sk_sp\29 +3781:skia::textlayout::Paragraph::~Paragraph\28\29 +3782:skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29 +3783:skia::textlayout::FontCollection::~FontCollection\28\29 +3784:skia::textlayout::FontCollection::matchTypeface\28SkString\20const&\2c\20SkFontStyle\29 +3785:skia::textlayout::FontCollection::defaultFallback\28int\2c\20SkFontStyle\2c\20SkString\20const&\2c\20std::__2::optional\20const&\29 +3786:skia::textlayout::FontCollection::FamilyKey::Hasher::operator\28\29\28skia::textlayout::FontCollection::FamilyKey\20const&\29\20const +3787:skhdr::Metadata::getMasteringDisplayColorVolume\28skhdr::MasteringDisplayColorVolume*\29\20const +3788:skhdr::Metadata::getContentLightLevelInformation\28skhdr::ContentLightLevelInformation*\29\20const +3789:skgpu::tess::\28anonymous\20namespace\29::write_curve_index_buffer_base_index\28skgpu::VertexWriter\2c\20unsigned\20long\2c\20unsigned\20short\29 +3790:skgpu::tess::StrokeIterator::next\28\29 +3791:skgpu::tess::StrokeIterator::finishOpenContour\28\29 +3792:skgpu::tess::PreChopPathCurves\28float\2c\20SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +3793:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29 +3794:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::SmallPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20GrUserStencilSettings\20const*\29 +3795:skgpu::ganesh::\28anonymous\20namespace\29::ChopPathIfNecessary\28SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkStrokeRec\20const&\2c\20SkPath*\29 +3796:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::recordDraw\28GrMeshDrawTarget*\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20int\2c\20unsigned\20short*\29 +3797:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::AAFlatteningConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20float\2c\20SkStrokeRec::Style\2c\20SkPaint::Join\2c\20float\2c\20GrUserStencilSettings\20const*\29 +3798:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::AAConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrUserStencilSettings\20const*\29 +3799:skgpu::ganesh::TextureOp::Make\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20SkBlendMode\2c\20GrAAType\2c\20DrawQuad*\2c\20SkRect\20const*\29 +3800:skgpu::ganesh::TessellationPathRenderer::IsSupported\28GrCaps\20const&\29 +3801:skgpu::ganesh::SurfaceFillContext::fillRectToRectWithFP\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +3802:skgpu::ganesh::SurfaceFillContext::blitTexture\28GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\29 +3803:skgpu::ganesh::SurfaceFillContext::addOp\28std::__2::unique_ptr>\29 +3804:skgpu::ganesh::SurfaceFillContext::addDrawOp\28std::__2::unique_ptr>\29 +3805:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29_10211 +3806:skgpu::ganesh::SurfaceDrawContext::drawVertices\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20sk_sp\2c\20GrPrimitiveType*\2c\20bool\29 +3807:skgpu::ganesh::SurfaceDrawContext::drawTexturedQuad\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkBlendMode\2c\20DrawQuad*\2c\20SkRect\20const*\29 +3808:skgpu::ganesh::SurfaceDrawContext::drawTexture\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkBlendMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +3809:skgpu::ganesh::SurfaceDrawContext::drawStrokedLine\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPoint\20const*\2c\20SkStrokeRec\20const&\29 +3810:skgpu::ganesh::SurfaceDrawContext::drawRegion\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrStyle\20const&\2c\20GrUserStencilSettings\20const*\29 +3811:skgpu::ganesh::SurfaceDrawContext::drawOval\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\29 +3812:skgpu::ganesh::SurfaceDrawContext::SurfaceDrawContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20sk_sp\2c\20SkSurfaceProps\20const&\29 +3813:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29 +3814:skgpu::ganesh::SurfaceContext::writePixels\28GrDirectContext*\2c\20GrCPixmap\2c\20SkIPoint\29 +3815:skgpu::ganesh::SurfaceContext::copy\28sk_sp\2c\20SkIRect\2c\20SkIPoint\29 +3816:skgpu::ganesh::SurfaceContext::copyScaled\28sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20SkFilterMode\29 +3817:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +3818:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::FinishContext::~FinishContext\28\29 +3819:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +3820:skgpu::ganesh::SurfaceContext::SurfaceContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +3821:skgpu::ganesh::StrokeTessellator::draw\28GrOpFlushState*\29\20const +3822:skgpu::ganesh::StrokeTessellateOp::prePrepareTessellator\28GrTessellationShader::ProgramArgs&&\2c\20GrAppliedClip&&\29 +3823:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::NonAAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrSimpleMeshDrawOpHelper::InputFlags\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\2c\20GrAAType\29 +3824:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::AAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::RectInfo\20const&\2c\20bool\29 +3825:skgpu::ganesh::StencilMaskHelper::drawShape\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20SkRegion::Op\2c\20GrAA\29 +3826:skgpu::ganesh::SoftwarePathRenderer::DrawAroundInvPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29 +3827:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_11708 +3828:skgpu::ganesh::SmallPathAtlasMgr::findOrCreate\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +3829:skgpu::ganesh::SmallPathAtlasMgr::deleteCacheEntry\28skgpu::ganesh::SmallPathShapeData*\29 +3830:skgpu::ganesh::ShadowRRectOp::Make\28GrRecordingContext*\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20float\2c\20float\29 +3831:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::RegionOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +3832:skgpu::ganesh::RasterAsView\28GrRecordingContext*\2c\20SkImage_Raster\20const*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +3833:skgpu::ganesh::QuadPerEdgeAA::Tessellator::append\28GrQuad*\2c\20GrQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\29 +3834:skgpu::ganesh::QuadPerEdgeAA::Tessellator::Tessellator\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29 +3835:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::initializeAttrs\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29 +3836:skgpu::ganesh::QuadPerEdgeAA::IssueDraw\28GrCaps\20const&\2c\20GrOpsRenderPass*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +3837:skgpu::ganesh::QuadPerEdgeAA::GetIndexBuffer\28GrMeshDrawTarget*\2c\20skgpu::ganesh::QuadPerEdgeAA::IndexBufferOption\29 +3838:skgpu::ganesh::PathTessellateOp::usesMSAA\28\29\20const +3839:skgpu::ganesh::PathTessellateOp::prepareTessellator\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +3840:skgpu::ganesh::PathTessellateOp::PathTessellateOp\28SkArenaAlloc*\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\2c\20SkRect\20const&\29 +3841:skgpu::ganesh::PathStencilCoverOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +3842:skgpu::ganesh::PathRenderer::getStencilSupport\28GrStyledShape\20const&\29\20const +3843:skgpu::ganesh::PathInnerTriangulateOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +3844:skgpu::ganesh::PathCurveTessellator::~PathCurveTessellator\28\29 +3845:skgpu::ganesh::PathCurveTessellator::prepareWithTriangles\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20GrTriangulator::BreadcrumbTriangleList*\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +3846:skgpu::ganesh::OpsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +3847:skgpu::ganesh::OpsTask::onExecute\28GrOpFlushState*\29 +3848:skgpu::ganesh::OpsTask::addOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +3849:skgpu::ganesh::OpsTask::addDrawOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +3850:skgpu::ganesh::OpsTask::OpsTask\28GrDrawingManager*\2c\20GrSurfaceProxyView\2c\20GrAuditTrail*\2c\20sk_sp\29 +3851:skgpu::ganesh::OpsTask::OpChain::tryConcat\28skgpu::ganesh::OpsTask::OpChain::List*\2c\20GrProcessorSet::Analysis\2c\20GrDstProxyView\20const&\2c\20GrAppliedClip\20const*\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrAuditTrail*\29 +3852:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29 +3853:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29 +3854:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::NonAALatticeOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20std::__2::unique_ptr>\2c\20SkRect\20const&\29 +3855:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::programInfo\28\29 +3856:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20GrAA\29 +3857:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::FillRRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29 +3858:skgpu::ganesh::DrawAtlasPathOp::prepareProgram\28GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +3859:skgpu::ganesh::Device::replaceBackingProxy\28SkSurface::ContentChangeMode\2c\20sk_sp\2c\20GrColorType\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +3860:skgpu::ganesh::Device::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +3861:skgpu::ganesh::Device::drawEdgeAAImage\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20SkTileMode\29 +3862:skgpu::ganesh::Device::discard\28\29 +3863:skgpu::ganesh::Device::android_utils_clipAsRgn\28SkRegion*\29\20const +3864:skgpu::ganesh::DefaultPathRenderer::internalDrawPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20bool\29 +3865:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +3866:skgpu::ganesh::CopyView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\2c\20std::__2::basic_string_view>\29 +3867:skgpu::ganesh::ClipStack::clipPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrAA\2c\20SkClipOp\29 +3868:skgpu::ganesh::ClipStack::SaveRecord::replaceWithElement\28skgpu::ganesh::ClipStack::RawElement&&\2c\20SkTBlockList*\29 +3869:skgpu::ganesh::ClipStack::SaveRecord::addElement\28skgpu::ganesh::ClipStack::RawElement&&\2c\20SkTBlockList*\29 +3870:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::Draw\20const&\29\20const +3871:skgpu::ganesh::AtlasTextOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +3872:skgpu::ganesh::AtlasTextOp::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20sktext::gpu::AtlasSubRun\20const*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp&&\29 +3873:skgpu::ganesh::AtlasRenderTask::stencilAtlasRect\28GrRecordingContext*\2c\20SkRect\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrUserStencilSettings\20const*\29 +3874:skgpu::ganesh::AtlasRenderTask::addPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIPoint\2c\20int\2c\20int\2c\20bool\2c\20SkIPoint16*\29 +3875:skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +3876:skgpu::ganesh::AtlasPathRenderer::addPathToAtlas\28GrRecordingContext*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRect\20const&\2c\20SkIRect*\2c\20SkIPoint16*\2c\20bool*\2c\20std::__2::function\20const&\29 +3877:skgpu::ganesh::AsFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkImage\20const*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +3878:skgpu::TiledTextureUtils::OptimizeSampleArea\28SkISize\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkRect*\2c\20SkRect*\2c\20SkMatrix*\29 +3879:skgpu::TClientMappedBufferManager::process\28\29 +3880:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29 +3881:skgpu::RectanizerSkyline::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +3882:skgpu::Plot::Plot\28int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20SkColorType\2c\20unsigned\20long\29 +3883:skgpu::GetReducedBlendModeInfo\28SkBlendMode\29 +3884:skgpu::CreateIntegralTable\28int\29 +3885:skgpu::BlendFuncName\28SkBlendMode\29 +3886:skcpu::clipHandlesSprite\28SkRasterClip\20const&\2c\20int\2c\20int\2c\20SkPixmap\20const&\29 +3887:skcpu::DrawToMask\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20SkMaskFilter\20const*\2c\20SkMatrix\20const*\2c\20SkMaskBuilder*\2c\20SkMaskBuilder::CreateMode\2c\20SkStrokeRec::InitStyle\29 +3888:skcpu::Draw::drawSprite\28SkBitmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29\20const +3889:skcpu::Draw::drawRRectNinePatch\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +3890:skcpu::Draw::drawPaint\28SkPaint\20const&\29\20const +3891:skcpu::Draw::drawDevMask\28SkMask\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29\20const +3892:skcms_private::baseline::exec_stages\28skcms_private::Op\20const*\2c\20void\20const**\2c\20char\20const*\2c\20char*\2c\20int\29 +3893:skcms_private::baseline::clut\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\29 +3894:skcms_ApproximatelyEqualProfiles +3895:sk_sp*\20std::__2::vector\2c\20std::__2::allocator>>::__emplace_back_slow_path>\28sk_sp&&\29 +3896:sk_sp\20sk_make_sp\2c\20SkSurfaceProps\20const*&>\28skcpu::RecorderImpl*&&\2c\20SkImageInfo\20const&\2c\20sk_sp&&\2c\20SkSurfaceProps\20const*&\29 +3897:sk_sp*\20emscripten::internal::MemberAccess>::getWire\28sk_sp\20SkRuntimeEffect::TracedShader::*\20const&\2c\20SkRuntimeEffect::TracedShader&\29 +3898:sk_fopen\28char\20const*\2c\20SkFILE_Flags\29 +3899:sk_fgetsize\28_IO_FILE*\29 +3900:sk_fclose\28_IO_FILE*\29 +3901:setup_masks_arabic_plan\28arabic_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_script_t\29 +3902:set_khr_debug_label\28GrGLGpu*\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +3903:set_as_oval\28SkPathRaw*\2c\20SkSpan\2c\20SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +3904:setThrew +3905:serialize_image\28SkImage\20const*\2c\20SkSerialProcs\29 +3906:send_tree +3907:select_curve_ops\28skcms_Curve\20const*\2c\20int\2c\20OpAndArg*\29 +3908:sect_with_vertical\28SkPoint\20const*\2c\20float\29 +3909:sect_with_horizontal\28SkPoint\20const*\2c\20float\29 +3910:scanexp +3911:scalbnl +3912:rewind_if_necessary\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +3913:resolveImplicitLevels\28UBiDi*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +3914:reset_and_decode_image_config\28wuffs_gif__decoder__struct*\2c\20wuffs_base__image_config__struct*\2c\20wuffs_base__io_buffer__struct*\2c\20SkStream*\29 +3915:renderbuffer_storage_msaa\28GrGLGpu*\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +3916:recursive_edge_intersect\28GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20SkPoint*\2c\20double*\2c\20double*\29 +3917:reclassify_vertex\28TriangulationVertex*\2c\20SkPoint\20const*\2c\20int\2c\20ReflexHash*\2c\20SkTInternalLList*\29 +3918:quad_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +3919:quad_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +3920:quad_in_line\28SkPoint\20const*\29 +3921:psh_hint_table_init +3922:psh_hint_table_find_strong_points +3923:psh_hint_table_activate_mask +3924:psh_hint_align +3925:psh_glyph_interpolate_strong_points +3926:psh_glyph_interpolate_other_points +3927:psh_glyph_interpolate_normal_points +3928:psh_blues_set_zones +3929:ps_parser_load_field +3930:ps_dimension_end +3931:ps_dimension_done +3932:ps_builder_start_point +3933:printf_core +3934:position_cluster\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\29 +3935:portable::uniform_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3936:portable::set_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3937:portable::memset64\28unsigned\20long\20long*\2c\20unsigned\20long\20long\2c\20int\29 +3938:portable::debug_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3939:portable::debug_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3940:portable::copy_from_indirect_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3941:portable::copy_2_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3942:portable::check_decal_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3943:portable::bilerp_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +3944:pop_arg +3945:pntz +3946:png_inflate +3947:png_deflate_claim +3948:png_decompress_chunk +3949:png_cache_unknown_chunk +3950:operator_new_impl\28unsigned\20long\29 +3951:operator==\28SkPaint\20const&\2c\20SkPaint\20const&\29 +3952:open_face +3953:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_2628 +3954:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +3955:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::size\28\29\20const +3956:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +3957:nearly_equal\28double\2c\20double\29 +3958:mbsrtowcs +3959:map_quad_general\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20SkMatrix\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +3960:make_tiled_gradient\28GrFPArgs\20const&\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20bool\2c\20bool\29 +3961:make_premul_effect\28std::__2::unique_ptr>\29 +3962:make_dual_interval_colorizer\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20float\29 +3963:make_clamped_gradient\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20bool\29 +3964:make_bmp_proxy\28GrProxyProvider*\2c\20SkBitmap\20const&\2c\20GrColorType\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +3965:longest_match +3966:long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3967:long\20long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +3968:long\20double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +3969:load_post_names +3970:line_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +3971:line_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +3972:legalfunc$_embind_register_bigint +3973:jpeg_open_backing_store +3974:jpeg_consume_input +3975:jpeg_alloc_huff_table +3976:jinit_upsampler +3977:is_leap +3978:init_error_limit +3979:init_block +3980:hb_vector_t\2c\20false>::resize\28int\2c\20bool\2c\20bool\29 +3981:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +3982:hb_vector_t::push\28\29 +3983:hb_vector_t\2c\20false>::resize\28int\2c\20bool\2c\20bool\29 +3984:hb_vector_size_t\20hb_bit_set_t::op_<$_14>\28hb_vector_size_t\20const&\2c\20hb_vector_size_t\20const&\29 +3985:hb_utf8_t::next\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20int*\2c\20unsigned\20int\29 +3986:hb_unicode_script +3987:hb_unicode_mirroring_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +3988:hb_unicode_funcs_t::is_default_ignorable\28unsigned\20int\29 +3989:hb_shape_plan_key_t::init\28bool\2c\20hb_face_t*\2c\20hb_segment_properties_t\20const*\2c\20hb_feature_t\20const*\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20char\20const*\20const*\29 +3990:hb_shape_plan_create2 +3991:hb_serialize_context_t::fini\28\29 +3992:hb_paint_extents_paint_linear_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +3993:hb_paint_extents_get_funcs\28\29 +3994:hb_paint_extents_context_t::clear\28\29 +3995:hb_ot_map_t::fini\28\29 +3996:hb_ot_layout_table_select_script +3997:hb_ot_layout_table_get_lookup_count +3998:hb_ot_layout_table_find_feature_variations +3999:hb_ot_layout_table_find_feature\28hb_face_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +4000:hb_ot_layout_script_select_language +4001:hb_ot_layout_language_get_required_feature +4002:hb_ot_layout_language_find_feature +4003:hb_ot_layout_has_substitution +4004:hb_ot_layout_feature_with_variations_get_lookups +4005:hb_ot_layout_collect_features_map +4006:hb_ot_font_set_funcs +4007:hb_lazy_loader_t::do_destroy\28hb_draw_funcs_t*\29 +4008:hb_lazy_loader_t\2c\20hb_face_t\2c\2038u\2c\20OT::sbix_accelerator_t>::create\28hb_face_t*\29 +4009:hb_lazy_loader_t\2c\20hb_face_t\2c\207u\2c\20OT::post_accelerator_t>::do_destroy\28OT::post_accelerator_t*\29 +4010:hb_lazy_loader_t\2c\20hb_face_t\2c\2017u\2c\20OT::cff2_accelerator_t>::do_destroy\28OT::cff2_accelerator_t*\29 +4011:hb_lazy_loader_t\2c\20hb_face_t\2c\2035u\2c\20OT::COLR_accelerator_t>::do_destroy\28OT::COLR_accelerator_t*\29 +4012:hb_lazy_loader_t\2c\20hb_face_t\2c\2037u\2c\20OT::CBDT_accelerator_t>::do_destroy\28OT::CBDT_accelerator_t*\29 +4013:hb_language_matches +4014:hb_indic_get_categories\28unsigned\20int\29 +4015:hb_hashmap_t::fetch_item\28hb_serialize_context_t::object_t\20const*\20const&\2c\20unsigned\20int\29\20const +4016:hb_hashmap_t::alloc\28unsigned\20int\29 +4017:hb_font_t::synthetic_glyph_extents\28hb_glyph_extents_t*\29 +4018:hb_font_t::get_glyph_v_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +4019:hb_font_t::get_glyph_contour_point_for_origin\28unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20int*\2c\20int*\29 +4020:hb_font_set_variations +4021:hb_font_set_funcs +4022:hb_font_get_variation_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +4023:hb_font_get_glyph_h_advance +4024:hb_font_get_glyph_extents +4025:hb_font_get_font_h_extents_nil\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +4026:hb_font_funcs_set_variation_glyph_func +4027:hb_font_funcs_set_nominal_glyphs_func +4028:hb_font_funcs_set_nominal_glyph_func +4029:hb_font_funcs_set_glyph_h_advances_func +4030:hb_font_funcs_set_glyph_extents_func +4031:hb_font_funcs_create +4032:hb_draw_move_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +4033:hb_draw_funcs_set_quadratic_to_func +4034:hb_draw_funcs_set_move_to_func +4035:hb_draw_funcs_set_line_to_func +4036:hb_draw_funcs_set_cubic_to_func +4037:hb_draw_funcs_create +4038:hb_draw_extents_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +4039:hb_buffer_t::sort\28unsigned\20int\2c\20unsigned\20int\2c\20int\20\28*\29\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29\29 +4040:hb_buffer_t::output_info\28hb_glyph_info_t\20const&\29 +4041:hb_buffer_t::message_impl\28hb_font_t*\2c\20char\20const*\2c\20void*\29 +4042:hb_buffer_t::leave\28\29 +4043:hb_buffer_t::delete_glyphs_inplace\28bool\20\28*\29\28hb_glyph_info_t\20const*\29\29 +4044:hb_buffer_t::clear_positions\28\29 +4045:hb_buffer_set_length +4046:hb_buffer_get_glyph_positions +4047:hb_buffer_diff +4048:hb_buffer_create +4049:hb_buffer_clear_contents +4050:hb_buffer_add_utf8 +4051:hb_blob_t*\20hb_sanitize_context_t::sanitize_blob\28hb_blob_t*\29 +4052:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +4053:hb_blob_t*\20hb_data_wrapper_t::call_create>\28\29\20const +4054:hb_aat_map_builder_t::compile\28hb_aat_map_t&\29 +4055:hb_aat_layout_remove_deleted_glyphs\28hb_buffer_t*\29 +4056:hb_aat_layout_compile_map\28hb_aat_map_builder_t\20const*\2c\20hb_aat_map_t*\29 +4057:hair_cubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +4058:getint +4059:get_win_string +4060:get_dst_swizzle_and_store\28GrColorType\2c\20SkRasterPipelineOp*\2c\20LumMode*\2c\20bool*\2c\20bool*\29 +4061:get_driver_and_version\28GrGLStandard\2c\20GrGLVendor\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +4062:gen_key\28skgpu::KeyBuilder*\2c\20GrProgramInfo\20const&\2c\20GrCaps\20const&\29 +4063:gen_fp_key\28GrFragmentProcessor\20const&\2c\20GrCaps\20const&\2c\20skgpu::KeyBuilder*\29 +4064:gather_uniforms_and_check_for_main\28SkSL::Program\20const&\2c\20std::__2::vector>*\2c\20std::__2::vector>*\2c\20SkRuntimeEffect::Uniform::Flags\2c\20unsigned\20long*\29 +4065:fwrite +4066:ft_var_to_normalized +4067:ft_var_load_item_variation_store +4068:ft_var_load_hvvar +4069:ft_var_load_avar +4070:ft_var_get_value_pointer +4071:ft_var_apply_tuple +4072:ft_validator_init +4073:ft_mem_strcpyn +4074:ft_hash_num_lookup +4075:ft_glyphslot_set_bitmap +4076:ft_glyphslot_preset_bitmap +4077:ft_corner_orientation +4078:ft_corner_is_flat +4079:frexp +4080:fread +4081:fp_force_eval +4082:fp_barrier_15919 +4083:fopen +4084:fold_opacity_layer_color_to_paint\28SkPaint\20const*\2c\20bool\2c\20SkPaint*\29 +4085:fmodl +4086:float\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +4087:fill_shadow_rec\28SkPath\20const&\2c\20SkPoint3\20const&\2c\20SkPoint3\20const&\2c\20float\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkDrawShadowRec*\29 +4088:fill_inverse_cmap +4089:fileno +4090:examine_app0 +4091:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29\2c\20SkCanvas*\2c\20SkPath*\2c\20SkClipOp\2c\20bool\29 +4092:emscripten::internal::MethodInvoker\20\28SkAnimatedImage::*\29\28\29\2c\20sk_sp\2c\20SkAnimatedImage*>::invoke\28sk_sp\20\28SkAnimatedImage::*\20const&\29\28\29\2c\20SkAnimatedImage*\29 +4093:emscripten::internal::Invoker\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20sk_sp\29\2c\20sk_sp*\2c\20sk_sp*\29 +4094:emscripten::internal::Invoker\2c\20SkBlendMode\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29\2c\20SkBlendMode\2c\20sk_sp*\2c\20sk_sp*\29 +4095:emscripten::internal::Invoker\2c\20SkBlendMode>::invoke\28sk_sp\20\28*\29\28SkBlendMode\29\2c\20SkBlendMode\29 +4096:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\29 +4097:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\29 +4098:emscripten::internal::FunctionInvoker\29\2c\20void\2c\20SkPaint&\2c\20unsigned\20long\2c\20sk_sp>::invoke\28void\20\28**\29\28SkPaint&\2c\20unsigned\20long\2c\20sk_sp\29\2c\20SkPaint*\2c\20unsigned\20long\2c\20sk_sp*\29 +4099:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29\2c\20SkCanvas*\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +4100:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +4101:emscripten::internal::FunctionInvoker\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +4102:emscripten::internal::FunctionInvoker\20\28*\29\28SkCanvas&\2c\20SimpleImageInfo\29\2c\20sk_sp\2c\20SkCanvas&\2c\20SimpleImageInfo>::invoke\28sk_sp\20\28**\29\28SkCanvas&\2c\20SimpleImageInfo\29\2c\20SkCanvas*\2c\20SimpleImageInfo*\29 +4103:emscripten::internal::FunctionInvoker::invoke\28int\20\28**\29\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SkFont*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +4104:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20SkPath\20const&\2c\20SkPathOp\29\2c\20SkPath*\2c\20SkPath*\2c\20SkPathOp\29 +4105:embind_init_builtin\28\29 +4106:embind_init_Skia\28\29 +4107:embind_init_Paragraph\28\29::$_0::__invoke\28SimpleParagraphStyle\2c\20sk_sp\29 +4108:embind_init_Paragraph\28\29 +4109:embind_init_ParagraphGen\28\29 +4110:edge_line_needs_recursion\28SkPoint\20const&\2c\20SkPoint\20const&\29 +4111:dquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4112:dquad_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4113:double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +4114:dline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4115:dline_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4116:deflate_stored +4117:decompose_current_character\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\29 +4118:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::Make\28SkArenaAlloc*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4119:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&\2c\20skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathCurveTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4120:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4121:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass\2c\20int&\2c\20float*&\2c\20skvx::Vec<4\2c\20float>*&>\28int&\2c\20float*&\2c\20skvx::Vec<4\2c\20float>*&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4122:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass\2c\20unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&>\28unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::A8Pass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4123:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29>\28GrThreadSafeCache::Entry&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4124:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29::'lambda'\28void*\29>\28GrResourceAllocator::Register&&\29 +4125:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrRRectShadowGeoProc::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4126:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28GrQuadEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4127:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrPipeline::InitArgs&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29::'lambda'\28void*\29>\28GrPipeline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4128:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldA8TextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20float\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4129:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28DefaultGeoProc::Make\28SkArenaAlloc*\2c\20unsigned\20int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29 +4130:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28CircleGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4131:decltype\28fp.sanitize\28this\2c\20std::forward\20const*>\28fp1\29\29\29\20hb_sanitize_context_t::_dispatch\2c\20OT::IntType\2c\20void\2c\20true>\2c\20OT::ContextFormat1_4\20const*>\28OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>\20const&\2c\20hb_priority<1u>\2c\20OT::ContextFormat1_4\20const*&&\29 +4132:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>>::__generic_construct\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__ctor\2c\20std::__2::unique_ptr>>>&\2c\20std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&>\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&\29 +4133:dcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4134:dcubic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4135:dconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4136:dconic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4137:data_destroy_arabic\28void*\29 +4138:data_create_arabic\28hb_ot_shape_plan_t\20const*\29 +4139:cycle +4140:cubic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4141:cubic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4142:create_colorindex +4143:copysignl +4144:conic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4145:conic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +4146:compute_pos_tan\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +4147:compute_intersection\28OffsetSegment\20const&\2c\20OffsetSegment\20const&\2c\20SkPoint*\2c\20float*\2c\20float*\29 +4148:compress_block +4149:compose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +4150:compare_offsets +4151:clamp\28SkPoint\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Comparator\20const&\29 +4152:checkint +4153:check_inverse_on_empty_return\28SkRegion*\2c\20SkPath\20const&\2c\20SkRegion\20const&\29 +4154:char*\20std::__2::copy_n\5babi:nn180100\5d\28char\20const*\2c\20unsigned\20long\2c\20char*\29 +4155:char*\20std::__2::copy\5babi:nn180100\5d\2c\20char*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20char*\29 +4156:char*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20std::__2::__element_count\29 +4157:cff_vstore_done +4158:cff_subfont_load +4159:cff_subfont_done +4160:cff_size_select +4161:cff_parser_run +4162:cff_make_private_dict +4163:cff_load_private_dict +4164:cff_index_get_name +4165:cff_get_kerning +4166:cff_blend_build_vector +4167:cf2_getSeacComponent +4168:cf2_computeDarkening +4169:cf2_arrstack_push +4170:cbrt +4171:build_ycc_rgb_table +4172:bracketProcessChar\28BracketData*\2c\20int\29 +4173:bool\20std::__2::operator==\5babi:nn180100\5d\28std::__2::unique_ptr\20const&\2c\20std::nullptr_t\29 +4174:bool\20std::__2::operator!=\5babi:ne180100\5d\28std::__2::variant\20const&\2c\20std::__2::variant\20const&\29 +4175:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +4176:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::Entry*\2c\20\28anonymous\20namespace\29::EntryComparator&\29 +4177:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +4178:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +4179:bool\20is_parallel\28SkDLine\20const&\2c\20SkTCurve\20const&\29 +4180:bool\20hb_hashmap_t::set_with_hash\28unsigned\20int\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool\29 +4181:bool\20hb_hashmap_t::set_with_hash\28hb_serialize_context_t::object_t*&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool\29 +4182:bool\20apply_string\28OT::hb_ot_apply_context_t*\2c\20GSUBProxy::Lookup\20const&\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\29 +4183:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4184:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4185:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4186:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4187:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4188:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4189:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4190:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4191:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4192:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4193:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4194:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4195:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4196:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4197:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +4198:bool\20OT::TupleValues::decompile\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\2c\20bool\29 +4199:bool\20OT::OffsetTo\2c\20void\2c\20true>::serialize_serialize\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&>\28hb_serialize_context_t*\2c\20hb_map_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&\29 +4200:bool\20GrTTopoSort_Visit\28GrRenderTask*\2c\20unsigned\20int*\29 +4201:bool\20AAT::hb_aat_apply_context_t::output_glyphs\28unsigned\20int\2c\20OT::HBGlyphID16\20const*\29 +4202:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +4203:bits_to_runs\28SkBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\2c\20long\2c\20unsigned\20char\29 +4204:barycentric_coords\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +4205:auto\20std::__2::__unwrap_range\5babi:nn180100\5d\2c\20std::__2::__wrap_iter>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\29 +4206:atanf +4207:apply_forward\28OT::hb_ot_apply_context_t*\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\2c\20unsigned\20int\29 +4208:apply_alpha_and_colorfilter\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20SkPaint\20const&\29 +4209:append_multitexture_lookup\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20int\2c\20GrGLSLVarying\20const&\2c\20char\20const*\2c\20char\20const*\29 +4210:append_color_output\28PorterDuffXferProcessor\20const&\2c\20GrGLSLXPFragmentBuilder*\2c\20skgpu::BlendFormula::OutputType\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +4211:af_loader_compute_darkening +4212:af_latin_metrics_scale_dim +4213:af_latin_hints_detect_features +4214:af_latin_hint_edges +4215:af_hint_normal_stem +4216:af_cjk_metrics_scale_dim +4217:af_cjk_metrics_scale +4218:af_cjk_metrics_init_widths +4219:af_cjk_hints_init +4220:af_cjk_hints_detect_features +4221:af_cjk_hints_compute_blue_edges +4222:af_cjk_hints_apply +4223:af_cjk_hint_edges +4224:af_cjk_get_standard_widths +4225:af_axis_hints_new_edge +4226:adler32 +4227:a_ctz_32 +4228:_iup_worker_interpolate +4229:_hb_preprocess_text_vowel_constraints\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +4230:_hb_ot_shape +4231:_hb_options_init\28\29 +4232:_hb_grapheme_group_func\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29 +4233:_hb_font_create\28hb_face_t*\29 +4234:_hb_fallback_shape +4235:_glyf_get_advance_with_var_unscaled\28hb_font_t*\2c\20unsigned\20int\2c\20bool\29 +4236:__vfprintf_internal +4237:__trunctfsf2 +4238:__tan +4239:__strftime_l +4240:__rem_pio2_large +4241:__overflow +4242:__nl_langinfo_l +4243:__newlocale +4244:__math_xflowf +4245:__math_invalidf +4246:__loc_is_allocated +4247:__isxdigit_l +4248:__isdigit_l +4249:__getf2 +4250:__get_locale +4251:__ftello_unlocked +4252:__fseeko_unlocked +4253:__floatscan +4254:__expo2 +4255:__divtf3 +4256:__cxxabiv1::__base_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +4257:_ZZN19GrGeometryProcessor11ProgramImpl17collectTransformsEP19GrGLSLVertexBuilderP20GrGLSLVaryingHandlerP20GrGLSLUniformHandler12GrShaderTypeRK11GrShaderVarSA_RK10GrPipelineEN3$_0clISE_EEvRT_RK19GrFragmentProcessorbPSJ_iNS0_9BaseCoordE +4258:\28anonymous\20namespace\29::write_text_tag\28char\20const*\29 +4259:\28anonymous\20namespace\29::write_mAB_or_mBA_tag\28unsigned\20int\2c\20skcms_Curve\20const*\2c\20skcms_Curve\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20skcms_Curve\20const*\2c\20skcms_Matrix3x4\20const*\29 +4260:\28anonymous\20namespace\29::set_uv_quad\28SkPoint\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +4261:\28anonymous\20namespace\29::safe_to_ignore_subset_rect\28GrAAType\2c\20SkFilterMode\2c\20DrawQuad\20const&\2c\20SkRect\20const&\29 +4262:\28anonymous\20namespace\29::morphology_pass\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20\28anonymous\20namespace\29::MorphType\2c\20\28anonymous\20namespace\29::MorphDirection\2c\20int\29 +4263:\28anonymous\20namespace\29::make_non_convex_fill_op\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20skgpu::ganesh::FillPathFlags\2c\20GrAAType\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\29 +4264:\28anonymous\20namespace\29::is_newer_better\28SkData*\2c\20SkData*\29 +4265:\28anonymous\20namespace\29::get_glyph_run_intercepts\28sktext::GlyphRun\20const&\2c\20SkPaint\20const&\2c\20float\20const*\2c\20float*\2c\20int*\29 +4266:\28anonymous\20namespace\29::get_cicp_trfn\28skcms_TransferFunction\20const&\29 +4267:\28anonymous\20namespace\29::get_cicp_primaries\28skcms_Matrix3x3\20const&\29 +4268:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_2::operator\28\29\28SkSpan\29\20const +4269:\28anonymous\20namespace\29::draw_to_sw_mask\28GrSWMaskHelper*\2c\20skgpu::ganesh::ClipStack::Element\20const&\2c\20bool\29 +4270:\28anonymous\20namespace\29::draw_tiled_image\28SkCanvas*\2c\20std::__2::function\20\28SkIRect\29>\2c\20SkISize\2c\20int\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkSamplingOptions\29 +4271:\28anonymous\20namespace\29::determine_clipped_src_rect\28SkIRect\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkRect\20const*\29 +4272:\28anonymous\20namespace\29::create_hb_face\28SkTypeface\20const&\29::$_0::__invoke\28void*\29 +4273:\28anonymous\20namespace\29::copyFTBitmap\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\29 +4274:\28anonymous\20namespace\29::colrv1_start_glyph\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20unsigned\20short\2c\20FT_Color_Root_Transform_\2c\20skia_private::THashSet*\29 +4275:\28anonymous\20namespace\29::colrv1_draw_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\29 +4276:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29 +4277:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29 +4278:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29 +4279:\28anonymous\20namespace\29::TriangulatingPathOp::TriangulatingPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +4280:\28anonymous\20namespace\29::TriangulatingPathOp::Triangulate\28GrEagerVertexAllocator*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool*\29 +4281:\28anonymous\20namespace\29::TriangulatingPathOp::CreateKey\28skgpu::UniqueKey*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\29 +4282:\28anonymous\20namespace\29::TextureOpImpl::propagateCoverageAAThroughoutChain\28\29 +4283:\28anonymous\20namespace\29::TextureOpImpl::characterize\28\28anonymous\20namespace\29::TextureOpImpl::Desc*\29\20const +4284:\28anonymous\20namespace\29::TextureOpImpl::appendQuad\28DrawQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\29 +4285:\28anonymous\20namespace\29::TextureOpImpl::Make\28GrRecordingContext*\2c\20GrTextureSetEntry*\2c\20int\2c\20int\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20GrAAType\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +4286:\28anonymous\20namespace\29::TextureOpImpl::FillInVertices\28GrCaps\20const&\2c\20\28anonymous\20namespace\29::TextureOpImpl*\2c\20\28anonymous\20namespace\29::TextureOpImpl::Desc*\2c\20char*\29 +4287:\28anonymous\20namespace\29::SpotVerticesFactory::makeVertices\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint*\29\20const +4288:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +4289:\28anonymous\20namespace\29::SkImageImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +4290:\28anonymous\20namespace\29::SkCropImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +4291:\28anonymous\20namespace\29::SDFTSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +4292:\28anonymous\20namespace\29::RunIteratorQueue::advanceRuns\28\29 +4293:\28anonymous\20namespace\29::RectsBlurKey::RectsBlurKey\28float\2c\20SkBlurStyle\2c\20SkSpan\29 +4294:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::maxSigma\28\29\20const +4295:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::'lambda'\28float\29::operator\28\29\28float\29\20const +4296:\28anonymous\20namespace\29::RPBlender::RPBlender\28SkColorType\2c\20SkColorType\2c\20SkAlphaType\2c\20bool\29 +4297:\28anonymous\20namespace\29::MipLevelHelper::allocAndInit\28SkArenaAlloc*\2c\20SkSamplingOptions\20const&\2c\20SkTileMode\2c\20SkTileMode\29 +4298:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29 +4299:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20sk_sp\2c\20GrPrimitiveType\20const*\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +4300:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMesh\20const&\2c\20skia_private::TArray>\2c\20true>\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +4301:\28anonymous\20namespace\29::MeshOp::Mesh::Mesh\28SkMesh\20const&\29 +4302:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29 +4303:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29 +4304:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineStruct\28char\20const*\29 +4305:\28anonymous\20namespace\29::FillRectOpImpl::tessellate\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29\20const +4306:\28anonymous\20namespace\29::FillRectOpImpl::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +4307:\28anonymous\20namespace\29::FillRectOpImpl::FillRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +4308:\28anonymous\20namespace\29::EllipticalRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRRect\20const&\29 +4309:\28anonymous\20namespace\29::DrawAtlasOpImpl::DrawAtlasOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrAAType\2c\20int\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\29 +4310:\28anonymous\20namespace\29::DirectMaskSubRun::glyphParams\28\29\20const +4311:\28anonymous\20namespace\29::DirectMaskSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +4312:\28anonymous\20namespace\29::DefaultPathOp::programInfo\28\29 +4313:\28anonymous\20namespace\29::DefaultPathOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +4314:\28anonymous\20namespace\29::DefaultPathOp::DefaultPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +4315:\28anonymous\20namespace\29::ClipGeometry\20\28anonymous\20namespace\29::get_clip_geometry\28skgpu::ganesh::ClipStack::SaveRecord\20const&\2c\20skgpu::ganesh::ClipStack::Draw\20const&\29 +4316:\28anonymous\20namespace\29::CircularRRectEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +4317:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29 +4318:\28anonymous\20namespace\29::CachedTessellations::CachedTessellations\28\29 +4319:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29 +4320:\28anonymous\20namespace\29::AAHairlineOp::AAHairlineOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIRect\2c\20float\2c\20GrUserStencilSettings\20const*\29 +4321:WebPResetDecParams +4322:WebPRescalerGetScaledDimensions +4323:WebPMultRows +4324:WebPMultARGBRows +4325:WebPIoInitFromOptions +4326:WebPInitUpsamplers +4327:WebPFlipBuffer +4328:WebPDemuxInternal +4329:WebPDemuxGetChunk +4330:WebPCopyDecBufferPixels +4331:WebPAllocateDecBuffer +4332:WebGLTextureImageGenerator::~WebGLTextureImageGenerator\28\29 +4333:VP8RemapBitReader +4334:VP8LHuffmanTablesAllocate +4335:VP8LDspInit +4336:VP8LConvertFromBGRA +4337:VP8LColorCacheInit +4338:VP8LColorCacheCopy +4339:VP8LBuildHuffmanTable +4340:VP8LBitReaderSetBuffer +4341:VP8InitScanline +4342:VP8GetInfo +4343:VP8BitReaderSetBuffer +4344:Update_Max +4345:TransformOne_C +4346:TT_Set_Named_Instance +4347:TT_Hint_Glyph +4348:StoreFrame +4349:SortContourList\28SkOpContourHead**\2c\20bool\2c\20bool\29 +4350:SkYUVAPixmapInfo::isSupported\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\29\20const +4351:SkWuffsCodec::seekFrame\28int\29 +4352:SkWuffsCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +4353:SkWuffsCodec::onIncrementalDecodeTwoPass\28\29 +4354:SkWuffsCodec::decodeFrameConfig\28\29 +4355:SkWriter32::writeString\28char\20const*\2c\20unsigned\20long\29 +4356:SkWebpDecoder::IsWebp\28void\20const*\2c\20unsigned\20long\29 +4357:SkWebpCodec::ensureAllData\28\29 +4358:SkWebpCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29 +4359:SkWbmpDecoder::IsWbmp\28void\20const*\2c\20unsigned\20long\29 +4360:SkWbmpCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29 +4361:SkWStream::SizeOfPackedUInt\28unsigned\20long\29 +4362:SkWBuffer::padToAlign4\28\29 +4363:SkVertices::Builder::indices\28\29 +4364:SkUnicode::convertUtf16ToUtf8\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +4365:SkUTF::UTF16ToUTF8\28char*\2c\20int\2c\20unsigned\20short\20const*\2c\20unsigned\20long\29 +4366:SkTypeface_FreeType::FaceRec::Make\28SkTypeface_FreeType\20const*\29 +4367:SkTypeface_Custom::onGetFamilyName\28SkString*\29\20const +4368:SkTypeface::textToGlyphs\28void\20const*\2c\20unsigned\20long\2c\20SkTextEncoding\2c\20SkSpan\29\20const +4369:SkTypeface::serialize\28SkWStream*\2c\20SkTypeface::SerializeBehavior\29\20const +4370:SkTypeface::openStream\28int*\29\20const +4371:SkTypeface::onGetFixedPitch\28\29\20const +4372:SkTypeface::getVariationDesignPosition\28SkSpan\29\20const +4373:SkTreatAsSprite\28SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkSamplingOptions\20const&\2c\20bool\29 +4374:SkTransformShader::update\28SkMatrix\20const&\29 +4375:SkTransformShader::SkTransformShader\28SkShaderBase\20const&\2c\20bool\29 +4376:SkTiff::ImageFileDirectory::getEntryRawData\28unsigned\20short\2c\20unsigned\20short*\2c\20unsigned\20short*\2c\20unsigned\20int*\2c\20unsigned\20char\20const**\2c\20unsigned\20long*\29\20const +4377:SkTextBlobBuilder::allocRunPos\28SkFont\20const&\2c\20int\2c\20SkRect\20const*\29 +4378:SkTextBlob::getIntercepts\28float\20const*\2c\20float*\2c\20SkPaint\20const*\29\20const +4379:SkTextBlob::RunRecord::StorageSize\28unsigned\20int\2c\20unsigned\20int\2c\20SkTextBlob::GlyphPositioning\2c\20SkSafeMath*\29 +4380:SkTextBlob::MakeFromText\28void\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20SkTextEncoding\29 +4381:SkTextBlob::MakeFromRSXform\28void\20const*\2c\20unsigned\20long\2c\20SkSpan\2c\20SkFont\20const&\2c\20SkTextEncoding\29 +4382:SkTextBlob::Iter::experimentalNext\28SkTextBlob::Iter::ExperimentalRun*\29 +4383:SkTextBlob::Iter::Iter\28SkTextBlob\20const&\29 +4384:SkTaskGroup::wait\28\29 +4385:SkTaskGroup::add\28std::__2::function\29 +4386:SkTSpan::onlyEndPointsInCommon\28SkTSpan\20const*\2c\20bool*\2c\20bool*\2c\20bool*\29 +4387:SkTSpan::linearIntersects\28SkTCurve\20const&\29\20const +4388:SkTSect::removeAllBut\28SkTSpan\20const*\2c\20SkTSpan*\2c\20SkTSect*\29 +4389:SkTSect::intersects\28SkTSpan*\2c\20SkTSect*\2c\20SkTSpan*\2c\20int*\29 +4390:SkTSect::deleteEmptySpans\28\29 +4391:SkTSect::addSplitAt\28SkTSpan*\2c\20double\29 +4392:SkTSect::addForPerp\28SkTSpan*\2c\20double\29 +4393:SkTSect::EndsEqual\28SkTSect\20const*\2c\20SkTSect\20const*\2c\20SkIntersections*\29 +4394:SkTMultiMap::~SkTMultiMap\28\29 +4395:SkTMaskGamma<3\2c\203\2c\203>::SkTMaskGamma\28float\2c\20float\29 +4396:SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::find\28SkImageFilterCacheKey\20const&\29\20const +4397:SkTDStorage::calculateSizeOrDie\28int\29::$_1::operator\28\29\28\29\20const +4398:SkTDStorage::SkTDStorage\28SkTDStorage&&\29 +4399:SkTCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +4400:SkTConic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +4401:SkTConic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +4402:SkTConic::controlsInside\28\29\20const +4403:SkTConic::collapsed\28\29\20const +4404:SkTBlockList::reset\28\29 +4405:SkTBlockList::reset\28\29 +4406:SkTBlockList::push_back\28GrGLProgramDataManager::GLUniformInfo\20const&\29 +4407:SkSwizzler::MakeSimple\28int\2c\20SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20SkIRect\20const*\29 +4408:SkSurfaces::WrapPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkSurfaceProps\20const*\29 +4409:SkSurface_Base::outstandingImageSnapshot\28\29\20const +4410:SkSurface_Base::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +4411:SkSurface_Base::onCapabilities\28\29 +4412:SkSurface::height\28\29\20const +4413:SkStrokeRec::setHairlineStyle\28\29 +4414:SkStrokeRec::SkStrokeRec\28SkPaint\20const&\2c\20SkPaint::Style\2c\20float\29 +4415:SkStrokeRec::GetInflationRadius\28SkPaint::Join\2c\20float\2c\20SkPaint::Cap\2c\20float\29 +4416:SkString::insertHex\28unsigned\20long\2c\20unsigned\20int\2c\20int\29 +4417:SkString::appendVAList\28char\20const*\2c\20void*\29 +4418:SkString::SkString\28unsigned\20long\29 +4419:SkString*\20std::__2::vector>::__emplace_back_slow_path\28char\20const*&\29 +4420:SkStrikeSpec::SkStrikeSpec\28SkStrikeSpec\20const&\29 +4421:SkStrikeSpec::ShouldDrawAsPath\28SkPaint\20const&\2c\20SkFont\20const&\2c\20SkMatrix\20const&\29 +4422:SkStrike::~SkStrike\28\29 +4423:SkStream::readS8\28signed\20char*\29 +4424:SkStrSplit\28char\20const*\2c\20char\20const*\2c\20SkStrSplitMode\2c\20skia_private::TArray*\29 +4425:SkStrAppendS32\28char*\2c\20int\29 +4426:SkSpriteBlitter_Memcpy::~SkSpriteBlitter_Memcpy\28\29 +4427:SkSpecialImages::AsView\28GrRecordingContext*\2c\20SkSpecialImage\20const*\29 +4428:SkSharedMutex::releaseShared\28\29 +4429:SkShapers::unicode::BidiRunIterator\28sk_sp\2c\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20char\29 +4430:SkShapers::HB::ScriptRunIterator\28char\20const*\2c\20unsigned\20long\29 +4431:SkShaper::MakeStdLanguageRunIterator\28char\20const*\2c\20unsigned\20long\29 +4432:SkShaders::MatrixRec::concat\28SkMatrix\20const&\29\20const +4433:SkShaders::Blend\28sk_sp\2c\20sk_sp\2c\20sk_sp\29 +4434:SkShaderUtils::VisitLineByLine\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::function\20const&\29 +4435:SkShaderUtils::PrettyPrint\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +4436:SkShaderUtils::GLSLPrettyPrint::parseUntil\28char\20const*\29 +4437:SkShaderBlurAlgorithm::renderBlur\28SkRuntimeEffectBuilder*\2c\20SkFilterMode\2c\20SkISize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +4438:SkShaderBlurAlgorithm::evalBlur1D\28float\2c\20int\2c\20SkV2\2c\20sk_sp\2c\20SkIRect\2c\20SkTileMode\2c\20SkIRect\29\20const +4439:SkShaderBlurAlgorithm::Compute2DBlurOffsets\28SkISize\2c\20std::__2::array&\29 +4440:SkShaderBlurAlgorithm::Compute2DBlurKernel\28SkSize\2c\20SkISize\2c\20std::__2::array&\29 +4441:SkShaderBlurAlgorithm::Compute1DBlurLinearKernel\28float\2c\20int\2c\20std::__2::array&\29 +4442:SkShaderBase::getFlattenableType\28\29\20const +4443:SkShaderBase::asLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +4444:SkShader::makeWithColorFilter\28sk_sp\29\20const +4445:SkScan::PathRequiresTiling\28SkIRect\20const&\29 +4446:SkScan::HairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4447:SkScan::AntiHairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4448:SkScan::AntiFrameRect\28SkRect\20const&\2c\20SkPoint\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +4449:SkScan::AntiFillXRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +4450:SkScan::AntiFillRect\28SkRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +4451:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4452:SkScan::AAAFillPath\28SkPathRaw\20const&\2c\20SkBlitter*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +4453:SkScalerContext_FreeType::updateGlyphBoundsIfSubpixel\28SkGlyph\20const&\2c\20SkRect*\2c\20bool\29 +4454:SkScalerContext_FreeType::shouldSubpixelBitmap\28SkGlyph\20const&\2c\20SkMatrix\20const&\29 +4455:SkScalerContextRec::useStrokeForFakeBold\28\29 +4456:SkScalerContextRec::getSingleMatrix\28\29\20const +4457:SkScalerContextFTUtils::drawCOLRv1Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +4458:SkScalerContextFTUtils::drawCOLRv0Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +4459:SkScalerContext::internalMakeGlyph\28SkPackedGlyphID\2c\20SkMask::Format\2c\20SkArenaAlloc*\29 +4460:SkScalerContext::internalGetPath\28SkGlyph&\2c\20SkArenaAlloc*\2c\20std::__2::optional&&\29 +4461:SkScalerContext::SkScalerContext\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +4462:SkScalerContext::PreprocessRec\28SkTypeface\20const&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const&\29 +4463:SkScalerContext::MakeRecAndEffects\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\2c\20SkScalerContextRec*\2c\20SkScalerContextEffects*\29 +4464:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +4465:SkScalerContext::GetMaskPreBlend\28SkScalerContextRec\20const&\29 +4466:SkScalerContext::GenerateImageFromPath\28SkMaskBuilder&\2c\20SkPath\20const&\2c\20SkTMaskPreBlend<3\2c\203\2c\203>\20const&\2c\20bool\2c\20bool\2c\20bool\2c\20bool\29 +4467:SkScalerContext::AutoDescriptorGivenRecAndEffects\28SkScalerContextRec\20const&\2c\20SkScalerContextEffects\20const&\2c\20SkAutoDescriptor*\29 +4468:SkSampledCodec::sampledDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +4469:SkSampledCodec::accountForNativeScaling\28int*\2c\20int*\29\20const +4470:SkSL::zero_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\29 +4471:SkSL::type_to_sksltype\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSLType*\29 +4472:SkSL::stoi\28std::__2::basic_string_view>\2c\20long\20long*\29 +4473:SkSL::splat_scalar\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +4474:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_2::operator\28\29\28int\29\20const +4475:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_1::operator\28\29\28int\29\20const +4476:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_0::operator\28\29\28int\29\20const +4477:SkSL::negate_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +4478:SkSL::make_reciprocal_expression\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29 +4479:SkSL::index_out_of_range\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20long\20long\2c\20SkSL::Expression\20const&\29 +4480:SkSL::get_struct_definitions_from_module\28SkSL::Program&\2c\20SkSL::Module\20const&\2c\20std::__2::vector>*\29 +4481:SkSL::find_existing_declaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20SkSL::IntrinsicKind\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray>\2c\20true>&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration**\29::$_0::operator\28\29\28\29\20const +4482:SkSL::extract_matrix\28SkSL::Expression\20const*\2c\20float*\29 +4483:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +4484:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_4::operator\28\29\28int\29\20const +4485:SkSL::\28anonymous\20namespace\29::check_valid_uniform_type\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Context\20const&\2c\20bool\29::$_0::operator\28\29\28\29\20const +4486:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +4487:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +4488:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +4489:SkSL::VariableReference::setRefKind\28SkSL::VariableRefKind\29 +4490:SkSL::Variable::setVarDeclaration\28SkSL::VarDeclaration*\29 +4491:SkSL::Variable::setGlobalVarDeclaration\28SkSL::GlobalVarDeclaration*\29 +4492:SkSL::Variable::globalVarDeclaration\28\29\20const +4493:SkSL::Variable::Make\28SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20std::__2::basic_string_view>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20bool\2c\20SkSL::VariableStorage\29 +4494:SkSL::Variable::MakeScratchVariable\28SkSL::Context\20const&\2c\20SkSL::Mangler&\2c\20std::__2::basic_string_view>\2c\20SkSL::Type\20const*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>\29 +4495:SkSL::VarDeclaration::Make\28SkSL::Context\20const&\2c\20SkSL::Variable*\2c\20SkSL::Type\20const*\2c\20int\2c\20std::__2::unique_ptr>\29 +4496:SkSL::VarDeclaration::ErrorCheck\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Type\20const*\2c\20SkSL::VariableStorage\29 +4497:SkSL::TypeReference::description\28SkSL::OperatorPrecedence\29\20const +4498:SkSL::TypeReference::VerifyType\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Position\29 +4499:SkSL::TypeReference::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\29 +4500:SkSL::Type::MakeStructType\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20bool\29 +4501:SkSL::Type::MakeLiteralType\28char\20const*\2c\20SkSL::Type\20const&\2c\20signed\20char\29 +4502:SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::addDeclaringElement\28SkSL::ProgramElement\20const*\29 +4503:SkSL::Transform::EliminateDeadFunctions\28SkSL::Program&\29 +4504:SkSL::ToGLSL\28SkSL::Program&\2c\20SkSL::ShaderCaps\20const*\2c\20SkSL::NativeShader*\29 +4505:SkSL::TernaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +4506:SkSL::SymbolTable::insertNewParent\28\29 +4507:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Symbol*\29 +4508:SkSL::Swizzle::MaskString\28skia_private::FixedArray<4\2c\20signed\20char>\20const&\29 +4509:SkSL::SwitchStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +4510:SkSL::SwitchCase::Make\28SkSL::Position\2c\20long\20long\2c\20std::__2::unique_ptr>\29 +4511:SkSL::SwitchCase::MakeDefault\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +4512:SkSL::StructType::StructType\28SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20int\2c\20bool\2c\20bool\29 +4513:SkSL::String::vappendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20void*\29 +4514:SkSL::SingleArgumentConstructor::argumentSpan\28\29 +4515:SkSL::RP::stack_usage\28SkSL::RP::Instruction\20const&\29 +4516:SkSL::RP::UnownedLValueSlice::isWritable\28\29\20const +4517:SkSL::RP::UnownedLValueSlice::dynamicSlotRange\28\29 +4518:SkSL::RP::Program::~Program\28\29 +4519:SkSL::RP::LValue::swizzle\28\29 +4520:SkSL::RP::Generator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\29 +4521:SkSL::RP::Generator::writeFunction\28SkSL::IRNode\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSpan>\20const>\29 +4522:SkSL::RP::Generator::storeImmutableValueToSlots\28skia_private::TArray\20const&\2c\20SkSL::RP::SlotRange\29 +4523:SkSL::RP::Generator::pushVariableReferencePartial\28SkSL::VariableReference\20const&\2c\20SkSL::RP::SlotRange\29 +4524:SkSL::RP::Generator::pushPrefixExpression\28SkSL::Operator\2c\20SkSL::Expression\20const&\29 +4525:SkSL::RP::Generator::pushIntrinsic\28SkSL::IntrinsicKind\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +4526:SkSL::RP::Generator::pushImmutableData\28SkSL::Expression\20const&\29 +4527:SkSL::RP::Generator::pushAbsFloatIntrinsic\28int\29 +4528:SkSL::RP::Generator::getImmutableValueForExpression\28SkSL::Expression\20const&\2c\20skia_private::TArray*\29 +4529:SkSL::RP::Generator::foldWithMultiOp\28SkSL::RP::BuilderOp\2c\20int\29 +4530:SkSL::RP::Generator::findPreexistingImmutableData\28skia_private::TArray\20const&\29 +4531:SkSL::RP::DynamicIndexLValue::dynamicSlotRange\28\29 +4532:SkSL::RP::Builder::push_slots_or_immutable_indirect\28SkSL::RP::SlotRange\2c\20int\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::BuilderOp\29 +4533:SkSL::RP::Builder::push_condition_mask\28\29 +4534:SkSL::RP::Builder::pad_stack\28int\29 +4535:SkSL::RP::Builder::copy_stack_to_slots\28SkSL::RP::SlotRange\2c\20int\29 +4536:SkSL::RP::Builder::branch_if_any_lanes_active\28int\29 +4537:SkSL::ProgramVisitor::visit\28SkSL::Program\20const&\29 +4538:SkSL::ProgramUsage::remove\28SkSL::Expression\20const*\29 +4539:SkSL::ProgramUsage::add\28SkSL::Statement\20const*\29 +4540:SkSL::ProgramUsage::add\28SkSL::Expression\20const*\29 +4541:SkSL::Pool::attachToThread\28\29 +4542:SkSL::PipelineStage::PipelineStageCodeGenerator::functionName\28SkSL::FunctionDeclaration\20const&\2c\20int\29 +4543:SkSL::PipelineStage::PipelineStageCodeGenerator::functionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +4544:SkSL::PipelineStage::PipelineStageCodeGenerator::forEachSpecialization\28SkSL::FunctionDeclaration\20const&\2c\20std::__2::function\20const&\29 +4545:SkSL::Parser::~Parser\28\29 +4546:SkSL::Parser::varDeclarations\28\29 +4547:SkSL::Parser::varDeclarationsOrExpressionStatement\28\29 +4548:SkSL::Parser::switchCaseBody\28SkSL::ExpressionArray*\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>*\2c\20std::__2::unique_ptr>\29 +4549:SkSL::Parser::statementOrNop\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +4550:SkSL::Parser::shiftExpression\28\29 +4551:SkSL::Parser::relationalExpression\28\29 +4552:SkSL::Parser::parameter\28std::__2::unique_ptr>*\29 +4553:SkSL::Parser::multiplicativeExpression\28\29 +4554:SkSL::Parser::logicalXorExpression\28\29 +4555:SkSL::Parser::logicalAndExpression\28\29 +4556:SkSL::Parser::localVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +4557:SkSL::Parser::intLiteral\28long\20long*\29 +4558:SkSL::Parser::globalVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +4559:SkSL::Parser::equalityExpression\28\29 +4560:SkSL::Parser::directive\28bool\29 +4561:SkSL::Parser::declarations\28\29 +4562:SkSL::Parser::checkNext\28SkSL::Token::Kind\2c\20SkSL::Token*\29 +4563:SkSL::Parser::bitwiseXorExpression\28\29 +4564:SkSL::Parser::bitwiseOrExpression\28\29 +4565:SkSL::Parser::bitwiseAndExpression\28\29 +4566:SkSL::Parser::additiveExpression\28\29 +4567:SkSL::Parser::Parser\28SkSL::Compiler*\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::ProgramKind\2c\20std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20std::__2::default_delete\2c\20std::__2::allocator>>>\29 +4568:SkSL::MultiArgumentConstructor::argumentSpan\28\29 +4569:SkSL::ModuleTypeToString\28SkSL::ModuleType\29 +4570:SkSL::ModuleLoader::~ModuleLoader\28\29 +4571:SkSL::ModuleLoader::loadVertexModule\28SkSL::Compiler*\29 +4572:SkSL::ModuleLoader::loadPublicModule\28SkSL::Compiler*\29 +4573:SkSL::ModuleLoader::loadFragmentModule\28SkSL::Compiler*\29 +4574:SkSL::ModuleLoader::Get\28\29 +4575:SkSL::MatrixType::bitWidth\28\29\20const +4576:SkSL::MakeRasterPipelineProgram\28SkSL::Program\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSL::DebugTracePriv*\2c\20bool\29 +4577:SkSL::Layout::description\28\29\20const +4578:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_length\28std::__2::array\20const&\29 +4579:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_add\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +4580:SkSL::InterfaceBlock::~InterfaceBlock\28\29 +4581:SkSL::Inliner::candidateCanBeInlined\28SkSL::InlineCandidate\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20skia_private::THashMap*\29 +4582:SkSL::IfStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +4583:SkSL::GLSLCodeGenerator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\2c\20bool\29 +4584:SkSL::GLSLCodeGenerator::writeProgramElement\28SkSL::ProgramElement\20const&\29 +4585:SkSL::GLSLCodeGenerator::writeMinAbsHack\28SkSL::Expression&\2c\20SkSL::Expression&\29 +4586:SkSL::GLSLCodeGenerator::generateCode\28\29 +4587:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::visitStatementPtr\28std::__2::unique_ptr>&\29 +4588:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::addLocalVariable\28SkSL::Variable\20const*\2c\20SkSL::Position\29 +4589:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29_6593 +4590:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29 +4591:SkSL::FunctionDeclaration::mangledName\28\29\20const +4592:SkSL::FunctionDeclaration::determineFinalTypes\28SkSL::ExpressionArray\20const&\2c\20skia_private::STArray<8\2c\20SkSL::Type\20const*\2c\20true>*\2c\20SkSL::Type\20const**\29\20const +4593:SkSL::FunctionDeclaration::FunctionDeclaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20SkSL::Type\20const*\2c\20SkSL::IntrinsicKind\29 +4594:SkSL::FunctionDebugInfo*\20std::__2::vector>::__push_back_slow_path\28SkSL::FunctionDebugInfo&&\29 +4595:SkSL::FunctionCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +4596:SkSL::FunctionCall::FindBestFunctionForCall\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const*\2c\20SkSL::ExpressionArray\20const&\29 +4597:SkSL::FunctionCall::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +4598:SkSL::ForStatement::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +4599:SkSL::FindIntrinsicKind\28std::__2::basic_string_view>\29 +4600:SkSL::FieldAccess::~FieldAccess\28\29_6480 +4601:SkSL::FieldAccess::~FieldAccess\28\29 +4602:SkSL::ExtendedVariable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +4603:SkSL::ExpressionStatement::Convert\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +4604:SkSL::DoStatement::~DoStatement\28\29_6463 +4605:SkSL::DoStatement::~DoStatement\28\29 +4606:SkSL::DebugTracePriv::setSource\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +4607:SkSL::ConstructorScalarCast::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +4608:SkSL::ConstructorMatrixResize::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +4609:SkSL::Constructor::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +4610:SkSL::ConstantFolder::Simplify\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +4611:SkSL::Compiler::writeErrorCount\28\29 +4612:SkSL::Compiler::initializeContext\28SkSL::Module\20const*\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\2c\20std::__2::basic_string_view>\2c\20SkSL::ModuleType\29 +4613:SkSL::Compiler::cleanupContext\28\29 +4614:SkSL::ChildCall::~ChildCall\28\29_6398 +4615:SkSL::ChildCall::~ChildCall\28\29 +4616:SkSL::ChildCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Variable\20const&\2c\20SkSL::ExpressionArray\29 +4617:SkSL::BinaryExpression::isAssignmentIntoVariable\28\29 +4618:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\2c\20SkSL::Type\20const*\29 +4619:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29 +4620:SkSL::Analysis::IsConstantExpression\28SkSL::Expression\20const&\29 +4621:SkSL::Analysis::IsAssignable\28SkSL::Expression&\2c\20SkSL::Analysis::AssignmentInfo*\2c\20SkSL::ErrorReporter*\29 +4622:SkSL::Analysis::GetLoopUnrollInfo\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\20const&\2c\20SkSL::Statement\20const*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Expression\20const*\2c\20SkSL::Statement\20const*\2c\20SkSL::ErrorReporter*\29 +4623:SkSL::Analysis::GetLoopControlFlowInfo\28SkSL::Statement\20const&\29 +4624:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +4625:SkSL::AliasType::numberKind\28\29\20const +4626:SkSL::AliasType::isOrContainsBool\28\29\20const +4627:SkSL::AliasType::isOrContainsAtomic\28\29\20const +4628:SkSL::AliasType::isAllowedInES2\28\29\20const +4629:SkRuntimeShader::~SkRuntimeShader\28\29 +4630:SkRuntimeEffectPriv::WriteChildEffects\28SkWriteBuffer&\2c\20SkSpan\29 +4631:SkRuntimeEffectPriv::TransformUniforms\28SkSpan\2c\20sk_sp\2c\20SkColorSpaceXformSteps\20const&\29 +4632:SkRuntimeEffect::~SkRuntimeEffect\28\29 +4633:SkRuntimeEffect::makeShader\28sk_sp\2c\20sk_sp*\2c\20unsigned\20long\2c\20SkMatrix\20const*\29\20const +4634:SkRuntimeEffect::makeColorFilter\28sk_sp\2c\20SkSpan\29\20const +4635:SkRuntimeEffect::TracedShader*\20emscripten::internal::raw_constructor\28\29 +4636:SkRuntimeEffect::MakeInternal\28std::__2::unique_ptr>\2c\20SkRuntimeEffect::Options\20const&\2c\20SkSL::ProgramKind\29 +4637:SkRuntimeEffect::ChildPtr&\20skia_private::TArray::emplace_back&>\28sk_sp&\29 +4638:SkRuntimeBlender::flatten\28SkWriteBuffer&\29\20const +4639:SkRgnBuilder::~SkRgnBuilder\28\29 +4640:SkResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +4641:SkResourceCache::setTotalByteLimit\28unsigned\20long\29 +4642:SkResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +4643:SkResourceCache::newCachedData\28unsigned\20long\29 +4644:SkResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +4645:SkResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +4646:SkResourceCache::dump\28\29\20const +4647:SkResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +4648:SkResourceCache::PostPurgeSharedID\28unsigned\20long\20long\29 +4649:SkResourceCache::GetDiscardableFactory\28\29 +4650:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +4651:SkRegion::addBoundaryPath\28SkPathBuilder*\29\20const +4652:SkRegion::Spanerator::Spanerator\28SkRegion\20const&\2c\20int\2c\20int\2c\20int\29 +4653:SkRegion::Oper\28SkRegion\20const&\2c\20SkRegion\20const&\2c\20SkRegion::Op\2c\20SkRegion*\29 +4654:SkRefCntSet::~SkRefCntSet\28\29 +4655:SkRefCntBase::internal_dispose\28\29\20const +4656:SkReduceOrder::reduce\28SkDQuad\20const&\29 +4657:SkReduceOrder::Conic\28SkConic\20const&\2c\20SkPoint*\29 +4658:SkRectClipBlitter::requestRowsPreserved\28\29\20const +4659:SkRectClipBlitter::allocBlitMemory\28unsigned\20long\29 +4660:SkRect::roundOut\28\29\20const +4661:SkRect::intersect\28SkRect\20const&\2c\20SkRect\20const&\29 +4662:SkRecords::TypedMatrix::TypedMatrix\28SkMatrix\20const&\29 +4663:SkRecordOptimize\28SkRecord*\29 +4664:SkRecordFillBounds\28SkRect\20const&\2c\20SkRecord\20const&\2c\20SkRect*\2c\20SkBBoxHierarchy::Metadata*\29 +4665:SkRecordCanvas::baseRecorder\28\29\20const +4666:SkRecord::bytesUsed\28\29\20const +4667:SkReadPixelsRec::trim\28int\2c\20int\29 +4668:SkReadBuffer::setDeserialProcs\28SkDeserialProcs\20const&\29 +4669:SkReadBuffer::readString\28unsigned\20long*\29 +4670:SkReadBuffer::readRegion\28SkRegion*\29 +4671:SkReadBuffer::readRect\28\29 +4672:SkReadBuffer::readPoint3\28SkPoint3*\29 +4673:SkReadBuffer::readPad32\28void*\2c\20unsigned\20long\29 +4674:SkReadBuffer::readArray\28void*\2c\20unsigned\20long\2c\20unsigned\20long\29 +4675:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29 +4676:SkRasterPipeline::tailPointer\28\29 +4677:SkRasterPipeline::appendSetRGB\28SkArenaAlloc*\2c\20float\20const*\29 +4678:SkRasterPipeline::addMemoryContext\28SkRasterPipelineContexts::MemoryCtx*\2c\20int\2c\20bool\2c\20bool\29 +4679:SkRTreeFactory::operator\28\29\28\29\20const +4680:SkRTree::search\28SkRTree::Node*\2c\20SkRect\20const&\2c\20std::__2::vector>*\29\20const +4681:SkRTree::bulkLoad\28std::__2::vector>*\2c\20int\29 +4682:SkRTree::allocateNodeAtLevel\28unsigned\20short\29 +4683:SkRRectPriv::AllCornersCircular\28SkRRect\20const&\2c\20float\29 +4684:SkRRect::scaleRadii\28\29 +4685:SkRRect::isValid\28\29\20const +4686:SkRRect::computeType\28\29 +4687:SkRRect::AreRectAndRadiiValid\28SkRect\20const&\2c\20SkPoint\20const*\29 +4688:SkRGBA4f<\28SkAlphaType\292>\20skgpu::Swizzle::applyTo<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\29\20const +4689:SkRBuffer::skipToAlign4\28\29 +4690:SkQuads::EvalAt\28double\2c\20double\2c\20double\2c\20double\29 +4691:SkQuadraticEdge::nextSegment\28\29 +4692:SkPtrSet::reset\28\29 +4693:SkPtrSet::copyToArray\28void**\29\20const +4694:SkPtrSet::add\28void*\29 +4695:SkPoint::Normalize\28SkPoint*\29 +4696:SkPngEncoder::Encode\28GrDirectContext*\2c\20SkImage\20const*\2c\20SkPngEncoder::Options\20const&\29 +4697:SkPngDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +4698:SkPngCodecBase::initializeXformParams\28\29 +4699:SkPngCodecBase::initializeSwizzler\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20bool\2c\20int\29 +4700:SkPngCodecBase::SkPngCodecBase\28SkEncodedInfo&&\2c\20std::__2::unique_ptr>\2c\20SkEncodedOrigin\29 +4701:SkPngCodec::initializeXforms\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +4702:SkPixmapUtils::Orient\28SkPixmap\20const&\2c\20SkPixmap\20const&\2c\20SkEncodedOrigin\29 +4703:SkPixmap::erase\28unsigned\20int\2c\20SkIRect\20const&\29\20const +4704:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const +4705:SkPixelRef::getGenerationID\28\29\20const +4706:SkPixelRef::addGenIDChangeListener\28sk_sp\29 +4707:SkPixelRef::SkPixelRef\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +4708:SkPictureShader::CachedImageInfo::makeImage\28sk_sp\2c\20SkPicture\20const*\29\20const +4709:SkPictureShader::CachedImageInfo::Make\28SkRect\20const&\2c\20SkMatrix\20const&\2c\20SkColorType\2c\20SkColorSpace*\2c\20int\2c\20SkSurfaceProps\20const&\29 +4710:SkPictureRecord::endRecording\28\29 +4711:SkPictureRecord::beginRecording\28\29 +4712:SkPicturePriv::Flatten\28sk_sp\2c\20SkWriteBuffer&\29 +4713:SkPicturePlayback::draw\28SkCanvas*\2c\20SkPicture::AbortCallback*\2c\20SkReadBuffer*\29 +4714:SkPictureData::parseBufferTag\28SkReadBuffer&\2c\20unsigned\20int\2c\20unsigned\20int\29 +4715:SkPictureData::getPicture\28SkReadBuffer*\29\20const +4716:SkPictureData::getDrawable\28SkReadBuffer*\29\20const +4717:SkPictureData::flatten\28SkWriteBuffer&\29\20const +4718:SkPictureData::flattenToBuffer\28SkWriteBuffer&\2c\20bool\29\20const +4719:SkPictureData::SkPictureData\28SkPictureRecord\20const&\2c\20SkPictInfo\20const&\29 +4720:SkPicture::backport\28\29\20const +4721:SkPicture::SkPicture\28\29 +4722:SkPicture::MakeFromStreamPriv\28SkStream*\2c\20SkDeserialProcs\20const*\2c\20SkTypefacePlayback*\2c\20int\29 +4723:SkPerlinNoiseShader::type\28\29\20const +4724:SkPerlinNoiseShader::getPaintingData\28\29\20const +4725:SkPathWriter::assemble\28\29 +4726:SkPathWriter::SkPathWriter\28SkPathFillType\29 +4727:SkPathRef::reset\28\29 +4728:SkPathRef::resetToSize\28int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +4729:SkPathRef::SkPathRef\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20unsigned\20int\2c\20SkMatrix\20const*\29 +4730:SkPathRaw::isRect\28\29\20const +4731:SkPathPriv::PerspectiveClip\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath*\29 +4732:SkPathPriv::IsNestedFillRects\28SkPathRaw\20const&\2c\20SkRect*\2c\20SkPathDirection*\29 +4733:SkPathPriv::DeduceRRectFromContour\28SkRect\20const&\2c\20SkSpan\2c\20SkSpan\29 +4734:SkPathPriv::CreateDrawArcPath\28SkArc\20const&\2c\20bool\29 +4735:SkPathPriv::ComputeFirstDirection\28SkPathRaw\20const&\29 +4736:SkPathEffectBase::PointData::~PointData\28\29 +4737:SkPathEffect::filterPath\28SkPath*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\29\20const +4738:SkPathEdgeIter::SkPathEdgeIter\28SkPath\20const&\29 +4739:SkPathBuilder::setLastPt\28float\2c\20float\29 +4740:SkPathBuilder::rQuadTo\28SkPoint\2c\20SkPoint\29 +4741:SkPathBuilder::privateReverseAddPath\28SkPath\20const&\29 +4742:SkPathBuilder::operator=\28SkPathBuilder\20const&\29 +4743:SkPathBuilder::addPath\28SkPath\20const&\2c\20float\2c\20float\2c\20SkPath::AddPathMode\29 +4744:SkPathBuilder::addOval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4745:SkPathBuilder::addCircle\28float\2c\20float\2c\20float\2c\20SkPathDirection\29 +4746:SkPath::writeToMemoryAsRRect\28void*\29\20const +4747:SkPath::offset\28float\2c\20float\2c\20SkPath*\29\20const +4748:SkPath::isRRect\28SkRRect*\29\20const +4749:SkPath::isOval\28SkRect*\29\20const +4750:SkPath::conservativelyContainsRect\28SkRect\20const&\29\20const +4751:SkPath::arcTo\28float\2c\20float\2c\20float\2c\20SkPath::ArcSize\2c\20SkPathDirection\2c\20float\2c\20float\29 +4752:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +4753:SkPath::addRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4754:SkPath::ReadFromMemory\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long*\29 +4755:SkPath::RRect\28SkRRect\20const&\2c\20SkPathDirection\29 +4756:SkParseEncodedOrigin\28void\20const*\2c\20unsigned\20long\2c\20SkEncodedOrigin*\29 +4757:SkPairPathEffect::flatten\28SkWriteBuffer&\29\20const +4758:SkPaintPriv::ShouldDither\28SkPaint\20const&\2c\20SkColorType\29 +4759:SkPaintPriv::Overwrites\28SkPaint\20const*\2c\20SkPaintPriv::ShaderOverrideOpacity\29 +4760:SkPaint::setStroke\28bool\29 +4761:SkPaint::reset\28\29 +4762:SkPaint::refColorFilter\28\29\20const +4763:SkOpSpanBase::merge\28SkOpSpan*\29 +4764:SkOpSpanBase::globalState\28\29\20const +4765:SkOpSpan::sortableTop\28SkOpContour*\29 +4766:SkOpSpan::release\28SkOpPtT\20const*\29 +4767:SkOpSpan::insertCoincidence\28SkOpSegment\20const*\2c\20bool\2c\20bool\29 +4768:SkOpSpan::init\28SkOpSegment*\2c\20SkOpSpan*\2c\20double\2c\20SkPoint\20const&\29 +4769:SkOpSegment::updateWindingReverse\28SkOpAngle\20const*\29 +4770:SkOpSegment::oppXor\28\29\20const +4771:SkOpSegment::moveMultiples\28\29 +4772:SkOpSegment::isXor\28\29\20const +4773:SkOpSegment::computeSum\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpAngle::IncludeType\29 +4774:SkOpSegment::collapsed\28double\2c\20double\29\20const +4775:SkOpSegment::addExpanded\28double\2c\20SkOpSpanBase\20const*\2c\20bool*\29 +4776:SkOpSegment::activeAngle\28SkOpSpanBase*\2c\20SkOpSpanBase**\2c\20SkOpSpanBase**\2c\20bool*\29 +4777:SkOpSegment::UseInnerWinding\28int\2c\20int\29 +4778:SkOpPtT::ptAlreadySeen\28SkOpPtT\20const*\29\20const +4779:SkOpPtT::contains\28SkOpSegment\20const*\2c\20double\29\20const +4780:SkOpGlobalState::SkOpGlobalState\28SkOpContourHead*\2c\20SkArenaAlloc*\29 +4781:SkOpEdgeBuilder::preFetch\28\29 +4782:SkOpEdgeBuilder::init\28\29 +4783:SkOpEdgeBuilder::finish\28\29 +4784:SkOpContourBuilder::addConic\28SkPoint*\2c\20float\29 +4785:SkOpContour::addQuad\28SkPoint*\29 +4786:SkOpContour::addCubic\28SkPoint*\29 +4787:SkOpContour::addConic\28SkPoint*\2c\20float\29 +4788:SkOpCoincidence::release\28SkOpSegment\20const*\29 +4789:SkOpCoincidence::mark\28\29 +4790:SkOpCoincidence::markCollapsed\28SkCoincidentSpans*\2c\20SkOpPtT*\29 +4791:SkOpCoincidence::fixUp\28SkCoincidentSpans*\2c\20SkOpPtT*\2c\20SkOpPtT\20const*\29 +4792:SkOpCoincidence::contains\28SkCoincidentSpans\20const*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\29\20const +4793:SkOpCoincidence::checkOverlap\28SkCoincidentSpans*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20SkTDArray*\29\20const +4794:SkOpCoincidence::addOrOverlap\28SkOpSegment*\2c\20SkOpSegment*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20bool*\29 +4795:SkOpAngle::tangentsDiverge\28SkOpAngle\20const*\2c\20double\29 +4796:SkOpAngle::setSpans\28\29 +4797:SkOpAngle::setSector\28\29 +4798:SkOpAngle::previous\28\29\20const +4799:SkOpAngle::midToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +4800:SkOpAngle::loopCount\28\29\20const +4801:SkOpAngle::loopContains\28SkOpAngle\20const*\29\20const +4802:SkOpAngle::lastMarked\28\29\20const +4803:SkOpAngle::endToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +4804:SkOpAngle::alignmentSameSide\28SkOpAngle\20const*\2c\20int*\29\20const +4805:SkOpAngle::after\28SkOpAngle*\29 +4806:SkOffsetSimplePolygon\28SkPoint\20const*\2c\20int\2c\20SkRect\20const&\2c\20float\2c\20SkTDArray*\2c\20SkTDArray*\29 +4807:SkNoDrawCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +4808:SkNoDrawCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +4809:SkModifyPaintAndDstForDrawImageRect\28SkImage\20const*\2c\20SkSamplingOptions\20const&\2c\20SkRect\2c\20SkRect\2c\20bool\2c\20SkPaint*\29 +4810:SkMipmapBuilder::level\28int\29\20const +4811:SkMessageBus::Inbox::~Inbox\28\29 +4812:SkMeshSpecification::Varying*\20std::__2::vector>::__push_back_slow_path\28SkMeshSpecification::Varying&&\29 +4813:SkMeshSpecification::Attribute*\20std::__2::vector>::__push_back_slow_path\28SkMeshSpecification::Attribute&&\29 +4814:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_2622 +4815:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +4816:SkMeshPriv::CpuBuffer::size\28\29\20const +4817:SkMeshPriv::CpuBuffer::peek\28\29\20const +4818:SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +4819:SkMatrixPriv::MapPointsWithStride\28SkMatrix\20const&\2c\20SkPoint*\2c\20unsigned\20long\2c\20int\29 +4820:SkMatrix::setRotate\28float\2c\20float\2c\20float\29 +4821:SkMatrix::preRotate\28float\29 +4822:SkMatrix::mapPoint\28SkPoint\29\20const +4823:SkMatrix::isFinite\28\29\20const +4824:SkMaskSwizzler::swizzle\28void*\2c\20unsigned\20char\20const*\29 +4825:SkMask::computeTotalImageSize\28\29\20const +4826:SkMakeResourceCacheSharedIDForBitmap\28unsigned\20int\29 +4827:SkMD5::finish\28\29 +4828:SkMD5::SkMD5\28\29 +4829:SkMD5::Digest::toHexString\28\29\20const +4830:SkM44::preScale\28float\2c\20float\29 +4831:SkM44::postTranslate\28float\2c\20float\2c\20float\29 +4832:SkM44::RectToRect\28SkRect\20const&\2c\20SkRect\20const&\29 +4833:SkLinearColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +4834:SkLineParameters::cubicEndPoints\28SkDCubic\20const&\29 +4835:SkLatticeIter::SkLatticeIter\28SkCanvas::Lattice\20const&\2c\20SkRect\20const&\29 +4836:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::~SkLRUCache\28\29 +4837:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::reset\28\29 +4838:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29::$_0::operator\28\29\28int\2c\20SkRuntimeEffect::Options\20const&\29\20const +4839:SkKnownRuntimeEffects::IsSkiaKnownRuntimeEffect\28int\29 +4840:SkJpegMetadataDecoderImpl::SkJpegMetadataDecoderImpl\28std::__2::vector>\29 +4841:SkJpegDecoder::IsJpeg\28void\20const*\2c\20unsigned\20long\29 +4842:SkJpegCodec::readRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20SkCodec::Options\20const&\2c\20int*\29 +4843:SkJpegCodec::initializeSwizzler\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20bool\29 +4844:SkJSONWriter::appendString\28char\20const*\2c\20unsigned\20long\29 +4845:SkIsSimplePolygon\28SkPoint\20const*\2c\20int\29 +4846:SkInvert3x3Matrix\28float\20const*\2c\20float*\29 +4847:SkInvert2x2Matrix\28float\20const*\2c\20float*\29 +4848:SkIntersections::vertical\28SkDQuad\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4849:SkIntersections::vertical\28SkDLine\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4850:SkIntersections::vertical\28SkDCubic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4851:SkIntersections::vertical\28SkDConic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4852:SkIntersections::mostOutside\28double\2c\20double\2c\20SkDPoint\20const&\29\20const +4853:SkIntersections::intersect\28SkDQuad\20const&\2c\20SkDLine\20const&\29 +4854:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDQuad\20const&\29 +4855:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDLine\20const&\29 +4856:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDConic\20const&\29 +4857:SkIntersections::intersect\28SkDConic\20const&\2c\20SkDQuad\20const&\29 +4858:SkIntersections::intersect\28SkDConic\20const&\2c\20SkDLine\20const&\29 +4859:SkIntersections::insertCoincident\28double\2c\20double\2c\20SkDPoint\20const&\29 +4860:SkIntersections::horizontal\28SkDQuad\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4861:SkIntersections::horizontal\28SkDLine\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4862:SkIntersections::horizontal\28SkDCubic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4863:SkIntersections::horizontal\28SkDConic\20const&\2c\20double\2c\20double\2c\20double\2c\20bool\29 +4864:SkImages::RasterFromPixmap\28SkPixmap\20const&\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +4865:SkImages::RasterFromData\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\29 +4866:SkImages::DeferredFromGenerator\28std::__2::unique_ptr>\29 +4867:SkImage_Raster::onPeekBitmap\28\29\20const +4868:SkImage_Lazy::~SkImage_Lazy\28\29_4764 +4869:SkImage_Lazy::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +4870:SkImage_Base::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +4871:SkImage_Base::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +4872:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_1::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +4873:SkImageInfo::validRowBytes\28unsigned\20long\29\20const +4874:SkImageInfo::MakeN32Premul\28int\2c\20int\29 +4875:SkImageGenerator::~SkImageGenerator\28\29_903 +4876:SkImageFilters::ColorFilter\28sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +4877:SkImageFilter_Base::getCTMCapability\28\29\20const +4878:SkImageFilterCache::Get\28SkImageFilterCache::CreateIfNecessary\29 +4879:SkImageFilter::isColorFilterNode\28SkColorFilter**\29\20const +4880:SkImageFilter::computeFastBounds\28SkRect\20const&\29\20const +4881:SkImage::withMipmaps\28sk_sp\29\20const +4882:SkIcoDecoder::IsIco\28void\20const*\2c\20unsigned\20long\29 +4883:SkIcoCodec::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::Result*\29 +4884:SkGradientBaseShader::~SkGradientBaseShader\28\29 +4885:SkGradientBaseShader::AppendGradientFillStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const*\2c\20float\20const*\2c\20int\29 +4886:SkGlyph::setImage\28SkArenaAlloc*\2c\20SkScalerContext*\29 +4887:SkGlyph::setDrawable\28SkArenaAlloc*\2c\20SkScalerContext*\29 +4888:SkGlyph::mask\28SkPoint\29\20const +4889:SkGifDecoder::MakeFromStream\28std::__2::unique_ptr>\2c\20SkCodec::SelectionPolicy\2c\20SkCodec::Result*\29 +4890:SkGifDecoder::IsGif\28void\20const*\2c\20unsigned\20long\29 +4891:SkGenerateDistanceFieldFromA8Image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20unsigned\20long\29 +4892:SkGaussFilter::SkGaussFilter\28double\29 +4893:SkFrameHolder::setAlphaAndRequiredFrame\28SkFrame*\29 +4894:SkFrame::fillIn\28SkCodec::FrameInfo*\2c\20bool\29\20const +4895:SkFontStyleSet_Custom::appendTypeface\28sk_sp\29 +4896:SkFontStyleSet_Custom::SkFontStyleSet_Custom\28SkString\29 +4897:SkFontScanner_FreeType::scanInstance\28SkStreamAsset*\2c\20int\2c\20int\2c\20SkString*\2c\20SkFontStyle*\2c\20bool*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\2c\20skia_private::STArray<4\2c\20SkFontArguments::VariationPosition::Coordinate\2c\20true>*\29\20const +4898:SkFontScanner_FreeType::computeAxisValues\28skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>\20const&\2c\20SkFontArguments::VariationPosition\2c\20SkFontArguments::VariationPosition\2c\20int*\2c\20SkString\20const&\2c\20SkFontStyle*\29 +4899:SkFontPriv::GetFontBounds\28SkFont\20const&\29 +4900:SkFontMgr_Custom::onMakeFromStreamArgs\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29\20const +4901:SkFontMgr::matchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +4902:SkFontMgr::makeFromStream\28std::__2::unique_ptr>\2c\20int\29\20const +4903:SkFontMgr::makeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29\20const +4904:SkFontMgr::legacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +4905:SkFontDescriptor::SkFontStyleWidthForWidthAxisValue\28float\29 +4906:SkFontDescriptor::SkFontDescriptor\28\29 +4907:SkFont::setupForAsPaths\28SkPaint*\29 +4908:SkFont::setSkewX\28float\29 +4909:SkFont::setLinearMetrics\28bool\29 +4910:SkFont::setEmbolden\28bool\29 +4911:SkFont::operator==\28SkFont\20const&\29\20const +4912:SkFont::getPaths\28SkSpan\2c\20void\20\28*\29\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29\2c\20void*\29\20const +4913:SkFlattenable::RegisterFlattenablesIfNeeded\28\29 +4914:SkFlattenable::PrivateInitializer::InitEffects\28\29 +4915:SkFlattenable::NameToFactory\28char\20const*\29 +4916:SkFlattenable::FactoryToName\28sk_sp\20\28*\29\28SkReadBuffer&\29\29 +4917:SkFindQuadExtrema\28float\2c\20float\2c\20float\2c\20float*\29 +4918:SkFindCubicExtrema\28float\2c\20float\2c\20float\2c\20float\2c\20float*\29 +4919:SkFactorySet::~SkFactorySet\28\29 +4920:SkEdgeClipper::clipQuad\28SkPoint\20const*\2c\20SkRect\20const&\29 +4921:SkEdgeClipper::ClipPath\28SkPathRaw\20const&\2c\20SkRect\20const&\2c\20bool\2c\20void\20\28*\29\28SkEdgeClipper*\2c\20bool\2c\20void*\29\2c\20void*\29 +4922:SkEdgeBuilder::buildEdges\28SkPathRaw\20const&\2c\20SkIRect\20const*\29 +4923:SkDynamicMemoryWStream::bytesWritten\28\29\20const +4924:SkDrawableList::newDrawableSnapshot\28\29 +4925:SkDrawShadowMetrics::GetSpotShadowTransform\28SkPoint3\20const&\2c\20float\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkRect\20const&\2c\20bool\2c\20SkMatrix*\2c\20float*\29 +4926:SkDrawShadowMetrics::GetLocalBounds\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect*\29 +4927:SkDiscretePathEffectImpl::flatten\28SkWriteBuffer&\29\20const +4928:SkDiscretePathEffect::Make\28float\2c\20float\2c\20unsigned\20int\29 +4929:SkDevice::getRelativeTransform\28SkDevice\20const&\29\20const +4930:SkDevice::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +4931:SkDevice::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +4932:SkDevice::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +4933:SkDevice::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +4934:SkDescriptor::addEntry\28unsigned\20int\2c\20unsigned\20long\2c\20void\20const*\29 +4935:SkDeque::Iter::next\28\29 +4936:SkDeque::Iter::Iter\28SkDeque\20const&\2c\20SkDeque::Iter::IterStart\29 +4937:SkData::shareSubset\28unsigned\20long\2c\20unsigned\20long\29 +4938:SkDashPath::InternalFilter\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkSpan\2c\20float\2c\20int\2c\20float\2c\20float\2c\20SkDashPath::StrokeRecApplication\29 +4939:SkDashPath::CalcDashParameters\28float\2c\20SkSpan\2c\20float*\2c\20unsigned\20long*\2c\20float*\2c\20float*\29 +4940:SkDRect::setBounds\28SkDQuad\20const&\2c\20SkDQuad\20const&\2c\20double\2c\20double\29 +4941:SkDRect::setBounds\28SkDCubic\20const&\2c\20SkDCubic\20const&\2c\20double\2c\20double\29 +4942:SkDRect::setBounds\28SkDConic\20const&\2c\20SkDConic\20const&\2c\20double\2c\20double\29 +4943:SkDQuad::subDivide\28double\2c\20double\29\20const +4944:SkDQuad::monotonicInY\28\29\20const +4945:SkDQuad::isLinear\28int\2c\20int\29\20const +4946:SkDQuad::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +4947:SkDPoint::approximatelyDEqual\28SkDPoint\20const&\29\20const +4948:SkDCurveSweep::setCurveHullSweep\28SkPath::Verb\29 +4949:SkDCurve::nearPoint\28SkPath::Verb\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29\20const +4950:SkDCubic::monotonicInX\28\29\20const +4951:SkDCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +4952:SkDCubic::hullIntersects\28SkDPoint\20const*\2c\20int\2c\20bool*\29\20const +4953:SkDConic::subDivide\28double\2c\20double\29\20const +4954:SkCubics::RootsReal\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +4955:SkCubicEdge::nextSegment\28\29 +4956:SkCubicClipper::ChopMonoAtY\28SkPoint\20const*\2c\20float\2c\20float*\29 +4957:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20SkArenaAlloc*\2c\20sk_sp\29 +4958:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkArenaAlloc*\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +4959:SkCopyStreamToData\28SkStream*\29 +4960:SkContourMeasureIter::~SkContourMeasureIter\28\29 +4961:SkContourMeasureIter::SkContourMeasureIter\28SkPath\20const&\2c\20bool\2c\20float\29 +4962:SkContourMeasure::length\28\29\20const +4963:SkContourMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29\20const +4964:SkComputeRadialSteps\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float*\2c\20float*\2c\20int*\29 +4965:SkCompressedDataSize\28SkTextureCompressionType\2c\20SkISize\2c\20skia_private::TArray*\2c\20bool\29 +4966:SkColorTypeValidateAlphaType\28SkColorType\2c\20SkAlphaType\2c\20SkAlphaType*\29 +4967:SkColorToPMColor4f\28unsigned\20int\2c\20GrColorInfo\20const&\29 +4968:SkColorSpaceLuminance::Fetch\28float\29 +4969:SkColorSpace::toProfile\28skcms_ICCProfile*\29\20const +4970:SkColorSpace::makeLinearGamma\28\29\20const +4971:SkColorSpace::isSRGB\28\29\20const +4972:SkColorSpace::Make\28skcms_ICCProfile\20const&\29 +4973:SkColorMatrix_RGB2YUV\28SkYUVColorSpace\2c\20float*\29 +4974:SkColorInfo::makeColorSpace\28sk_sp\29\20const +4975:SkColorFilterShader::Make\28sk_sp\2c\20float\2c\20sk_sp\29 +4976:SkColor4fXformer::SkColor4fXformer\28SkGradientBaseShader\20const*\2c\20SkColorSpace*\2c\20bool\29 +4977:SkCoincidentSpans::extend\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\29 +4978:SkCodec::outputScanline\28int\29\20const +4979:SkCodec::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +4980:SkCodec::initializeColorXform\28SkImageInfo\20const&\2c\20SkEncodedInfo::Alpha\2c\20bool\29 +4981:SkChopQuadAtMaxCurvature\28SkPoint\20const*\2c\20SkPoint*\29 +4982:SkChopQuadAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +4983:SkChopMonoCubicAtX\28SkPoint\20const*\2c\20float\2c\20SkPoint*\29 +4984:SkChopCubicAtInflections\28SkPoint\20const*\2c\20SkPoint*\29 +4985:SkCharToGlyphCache::findGlyphIndex\28int\29\20const +4986:SkCanvasPriv::WriteLattice\28void*\2c\20SkCanvas::Lattice\20const&\29 +4987:SkCanvasPriv::ReadLattice\28SkReadBuffer&\2c\20SkCanvas::Lattice*\29 +4988:SkCanvasPriv::GetDstClipAndMatrixCounts\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20int*\2c\20int*\29 +4989:SkCanvas::~SkCanvas\28\29 +4990:SkCanvas::skew\28float\2c\20float\29 +4991:SkCanvas::setMatrix\28SkMatrix\20const&\29 +4992:SkCanvas::only_axis_aligned_saveBehind\28SkRect\20const*\29 +4993:SkCanvas::getDeviceClipBounds\28\29\20const +4994:SkCanvas::experimental_DrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +4995:SkCanvas::drawVertices\28sk_sp\20const&\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +4996:SkCanvas::drawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +4997:SkCanvas::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +4998:SkCanvas::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +4999:SkCanvas::drawImageNine\28SkImage\20const*\2c\20SkIRect\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +5000:SkCanvas::drawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +5001:SkCanvas::didTranslate\28float\2c\20float\29 +5002:SkCanvas::clipShader\28sk_sp\2c\20SkClipOp\29 +5003:SkCanvas::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +5004:SkCanvas::ImageSetEntry::ImageSetEntry\28\29 +5005:SkCachedData::SkCachedData\28void*\2c\20unsigned\20long\29 +5006:SkCachedData::SkCachedData\28unsigned\20long\2c\20SkDiscardableMemory*\29 +5007:SkCTMShader::~SkCTMShader\28\29_4942 +5008:SkCTMShader::~SkCTMShader\28\29 +5009:SkCTMShader::isOpaque\28\29\20const +5010:SkBulkGlyphMetricsAndPaths::glyphs\28SkSpan\29 +5011:SkBmpStandardCodec::decodeIcoMask\28SkStream*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\29 +5012:SkBmpMaskCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +5013:SkBmpDecoder::IsBmp\28void\20const*\2c\20unsigned\20long\29 +5014:SkBmpCodec::SkBmpCodec\28SkEncodedInfo&&\2c\20std::__2::unique_ptr>\2c\20unsigned\20short\2c\20SkCodec::SkScanlineOrder\29 +5015:SkBmpBaseCodec::SkBmpBaseCodec\28SkEncodedInfo&&\2c\20std::__2::unique_ptr>\2c\20unsigned\20short\2c\20SkCodec::SkScanlineOrder\29 +5016:SkBlurMask::ConvertRadiusToSigma\28float\29 +5017:SkBlurMask::ComputeBlurredScanline\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20unsigned\20int\2c\20float\29 +5018:SkBlurMask::BlurRect\28float\2c\20SkMaskBuilder*\2c\20SkRect\20const&\2c\20SkBlurStyle\2c\20SkIPoint*\2c\20SkMaskBuilder::CreateMode\29 +5019:SkBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +5020:SkBlitter::Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +5021:SkBlitter::ChooseSprite\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkArenaAlloc*\2c\20sk_sp\29 +5022:SkBlenderBase::asBlendMode\28\29\20const +5023:SkBlenderBase::affectsTransparentBlack\28\29\20const +5024:SkBitmapImageGetPixelRef\28SkImage\20const*\29 +5025:SkBitmapDevice::getRasterHandle\28\29\20const +5026:SkBitmapDevice::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +5027:SkBitmapDevice::BDDraw::~BDDraw\28\29 +5028:SkBitmapCache::Rec::install\28SkBitmap*\29 +5029:SkBitmapCache::Rec::diagnostic_only_getDiscardable\28\29\20const +5030:SkBitmapCache::Find\28SkBitmapCacheDesc\20const&\2c\20SkBitmap*\29 +5031:SkBitmapCache::Alloc\28SkBitmapCacheDesc\20const&\2c\20SkImageInfo\20const&\2c\20SkPixmap*\29 +5032:SkBitmapCache::Add\28std::__2::unique_ptr\2c\20SkBitmap*\29 +5033:SkBitmap::setAlphaType\28SkAlphaType\29 +5034:SkBitmap::reset\28\29 +5035:SkBitmap::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\29\20const +5036:SkBitmap::eraseColor\28unsigned\20int\29\20const +5037:SkBitmap::allocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29::$_0::operator\28\29\28\29\20const +5038:SkBitmap::HeapAllocator::allocPixelRef\28SkBitmap*\29 +5039:SkBinaryWriteBuffer::writeFlattenable\28SkFlattenable\20const*\29 +5040:SkBinaryWriteBuffer::writeColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +5041:SkBigPicture::SkBigPicture\28SkRect\20const&\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20sk_sp\2c\20unsigned\20long\29 +5042:SkBezierQuad::IntersectWithHorizontalLine\28SkSpan\2c\20float\2c\20float*\29 +5043:SkBezierCubic::IntersectWithHorizontalLine\28SkSpan\2c\20float\2c\20float*\29 +5044:SkBasicEdgeBuilder::~SkBasicEdgeBuilder\28\29 +5045:SkBasicEdgeBuilder::recoverClip\28SkIRect\20const&\29\20const +5046:SkBaseShadowTessellator::handleCubic\28SkMatrix\20const&\2c\20SkPoint*\29 +5047:SkBaseShadowTessellator::handleConic\28SkMatrix\20const&\2c\20SkPoint*\2c\20float\29 +5048:SkBaseShadowTessellator::finishPathPolygon\28\29 +5049:SkBaseShadowTessellator::computeConvexShadow\28float\2c\20float\2c\20bool\29 +5050:SkBaseShadowTessellator::computeConcaveShadow\28float\2c\20float\29 +5051:SkBaseShadowTessellator::clipUmbraPoint\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint*\29 +5052:SkBaseShadowTessellator::addInnerPoint\28SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20int*\29 +5053:SkBaseShadowTessellator::addEdge\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20bool\2c\20bool\29 +5054:SkBaseShadowTessellator::addArc\28SkPoint\20const&\2c\20float\2c\20bool\29 +5055:SkAutoCanvasMatrixPaint::~SkAutoCanvasMatrixPaint\28\29 +5056:SkAutoCanvasMatrixPaint::SkAutoCanvasMatrixPaint\28SkCanvas*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\2c\20SkRect\20const&\29 +5057:SkAndroidCodecAdapter::~SkAndroidCodecAdapter\28\29 +5058:SkAndroidCodec::~SkAndroidCodec\28\29 +5059:SkAndroidCodec::getAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const*\29 +5060:SkAndroidCodec::SkAndroidCodec\28SkCodec*\29 +5061:SkAnalyticEdge::update\28int\29 +5062:SkAnalyticEdge::updateLine\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +5063:SkAnalyticEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\29 +5064:SkAAClip::operator=\28SkAAClip\20const&\29 +5065:SkAAClip::op\28SkIRect\20const&\2c\20SkClipOp\29 +5066:SkAAClip::Builder::flushRow\28bool\29 +5067:SkAAClip::Builder::finish\28SkAAClip*\29 +5068:SkAAClip::Builder::Blitter::~Blitter\28\29 +5069:SkAAClip::Builder::Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +5070:Sk2DPathEffect::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +5071:Simplify\28SkPath\20const&\29 +5072:SimpleImageInfo*\20emscripten::internal::raw_constructor\28\29 +5073:SimpleFontStyle*\20emscripten::internal::MemberAccess::getWire\28SimpleFontStyle\20SimpleStrutStyle::*\20const&\2c\20SimpleStrutStyle&\29 +5074:Shift +5075:SharedGenerator::isTextureGenerator\28\29 +5076:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29_4165 +5077:RgnOper::addSpan\28int\2c\20int\20const*\2c\20int\20const*\29 +5078:ReadBase128 +5079:PorterDuffXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +5080:PathSegment::init\28\29 +5081:PathAddVerbsPointsWeights\28SkPath&\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +5082:ParseSingleImage +5083:ParseHeadersInternal +5084:PS_Conv_ASCIIHexDecode +5085:Op\28SkPath\20const&\2c\20SkPath\20const&\2c\20SkPathOp\29 +5086:OpAsWinding::markReverse\28Contour*\2c\20Contour*\29 +5087:OpAsWinding::getDirection\28Contour&\29 +5088:OpAsWinding::checkContainerChildren\28Contour*\2c\20Contour*\29 +5089:OffsetEdge::computeCrossingDistance\28OffsetEdge\20const*\29 +5090:OT::sbix::accelerator_t::get_png_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +5091:OT::sbix::accelerator_t::choose_strike\28hb_font_t*\29\20const +5092:OT::post_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5093:OT::hmtxvmtx::accelerator_t::get_advance_with_var_unscaled\28unsigned\20int\2c\20hb_font_t*\2c\20float*\29\20const +5094:OT::hmtx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5095:OT::hb_ot_layout_lookup_accelerator_t*\20OT::hb_ot_layout_lookup_accelerator_t::create\28OT::Layout::GPOS_impl::PosLookup\20const&\29 +5096:OT::hb_ot_apply_context_t::replace_glyph\28unsigned\20int\29 +5097:OT::hb_kern_machine_t::kern\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20bool\29\20const +5098:OT::hb_accelerate_subtables_context_t::return_t\20OT::Context::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +5099:OT::hb_accelerate_subtables_context_t::return_t\20OT::ChainContext::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +5100:OT::glyf_accelerator_t::get_extents_at\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20hb_array_t\29\20const +5101:OT::glyf_accelerator_t::get_advance_with_var_unscaled\28hb_font_t*\2c\20unsigned\20int\2c\20bool\29\20const +5102:OT::cmap::accelerator_t::get_variation_glyph\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_cache_t<21u\2c\2016u\2c\208u\2c\20true>*\29\20const +5103:OT::cff2_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5104:OT::cff2::accelerator_templ_t>::~accelerator_templ_t\28\29 +5105:OT::cff1::lookup_expert_subset_charset_for_sid\28unsigned\20int\29 +5106:OT::cff1::lookup_expert_charset_for_sid\28unsigned\20int\29 +5107:OT::cff1::accelerator_templ_t>::~accelerator_templ_t\28\29 +5108:OT::TupleVariationData>::decompile_points\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\29 +5109:OT::SBIXStrike::get_glyph_blob\28unsigned\20int\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20unsigned\20int\2c\20unsigned\20int*\29\20const +5110:OT::RuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +5111:OT::RecordListOf::sanitize\28hb_sanitize_context_t*\29\20const +5112:OT::RecordListOf::sanitize\28hb_sanitize_context_t*\29\20const +5113:OT::PaintTranslate::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5114:OT::PaintSkewAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5115:OT::PaintSkew::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5116:OT::PaintScaleUniformAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5117:OT::PaintScaleUniform::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5118:OT::PaintScaleAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5119:OT::PaintScale::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5120:OT::PaintRotateAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5121:OT::PaintLinearGradient::sanitize\28hb_sanitize_context_t*\29\20const +5122:OT::PaintLinearGradient::sanitize\28hb_sanitize_context_t*\29\20const +5123:OT::OpenTypeFontFile::get_face\28unsigned\20int\2c\20unsigned\20int*\29\20const +5124:OT::Lookup::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +5125:OT::Layout::propagate_attachment_offsets\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +5126:OT::Layout::GSUB_impl::MultipleSubstFormat1_2::sanitize\28hb_sanitize_context_t*\29\20const +5127:OT::Layout::GSUB_impl::LigatureSet::apply\28OT::hb_ot_apply_context_t*\29\20const +5128:OT::Layout::GSUB_impl::Ligature::apply\28OT::hb_ot_apply_context_t*\29\20const +5129:OT::Layout::GSUB::get_lookup\28unsigned\20int\29\20const +5130:OT::Layout::GPOS_impl::reverse_cursive_minor_offset\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +5131:OT::Layout::GPOS_impl::PairPosFormat2_4::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5132:OT::Layout::GPOS_impl::PairPosFormat1_3::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5133:OT::Layout::GPOS_impl::MarkRecord::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +5134:OT::Layout::GPOS_impl::MarkBasePosFormat1_2::sanitize\28hb_sanitize_context_t*\29\20const +5135:OT::Layout::GPOS_impl::AnchorMatrix::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +5136:OT::IndexSubtableRecord::get_image_data\28unsigned\20int\2c\20void\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +5137:OT::GSUBGPOS::accelerator_t::get_accel\28unsigned\20int\29\20const +5138:OT::FeatureVariations::sanitize\28hb_sanitize_context_t*\29\20const +5139:OT::FeatureParams::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +5140:OT::Feature::sanitize\28hb_sanitize_context_t*\2c\20OT::Record_sanitize_closure_t\20const*\29\20const +5141:OT::ContextFormat3::sanitize\28hb_sanitize_context_t*\29\20const +5142:OT::ContextFormat2_5::sanitize\28hb_sanitize_context_t*\29\20const +5143:OT::ContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5144:OT::ContextFormat1_4::sanitize\28hb_sanitize_context_t*\29\20const +5145:OT::ConditionAnd::sanitize\28hb_sanitize_context_t*\29\20const +5146:OT::ColorLine::static_get_extend\28hb_color_line_t*\2c\20void*\2c\20void*\29 +5147:OT::CmapSubtableFormat4::accelerator_t::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +5148:OT::ClassDef::get_class\28unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +5149:OT::ChainRuleSet::sanitize\28hb_sanitize_context_t*\29\20const +5150:OT::ChainRuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +5151:OT::ChainContextFormat3::sanitize\28hb_sanitize_context_t*\29\20const +5152:OT::ChainContextFormat2_5::sanitize\28hb_sanitize_context_t*\29\20const +5153:OT::ChainContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +5154:OT::ChainContextFormat1_4::sanitize\28hb_sanitize_context_t*\29\20const +5155:OT::COLR_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5156:OT::COLR::accelerator_t::~accelerator_t\28\29 +5157:OT::CBDT_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5158:OT::CBDT::accelerator_t::get_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +5159:OT::Affine2x3::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +5160:MakeOnScreenGLSurface\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int\29 +5161:Load_SBit_Png +5162:LineCubicIntersections::intersectRay\28double*\29 +5163:LineCubicIntersections::VerticalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +5164:LineCubicIntersections::HorizontalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +5165:Launch +5166:JpegDecoderMgr::returnFailure\28char\20const*\2c\20SkCodec::Result\29 +5167:JpegDecoderMgr::getEncodedColor\28SkEncodedInfo::Color*\29 +5168:JSObjectFromLineMetrics\28skia::textlayout::LineMetrics&\29 +5169:JSObjectFromGlyphInfo\28skia::textlayout::Paragraph::GlyphInfo&\29 +5170:Ins_DELTAP +5171:HandleCoincidence\28SkOpContourHead*\2c\20SkOpCoincidence*\29 +5172:GrWritePixelsTask::~GrWritePixelsTask\28\29 +5173:GrWaitRenderTask::~GrWaitRenderTask\28\29 +5174:GrVertexBufferAllocPool::makeSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +5175:GrVertexBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +5176:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20SkPathFillType\2c\20skgpu::VertexWriter\29\20const +5177:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20GrEagerVertexAllocator*\29\20const +5178:GrTriangulator::mergeEdgesBelow\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +5179:GrTriangulator::mergeEdgesAbove\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +5180:GrTriangulator::makeSortedVertex\28SkPoint\20const&\2c\20unsigned\20char\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29\20const +5181:GrTriangulator::makeEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\29 +5182:GrTriangulator::computeBisector\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\29\20const +5183:GrTriangulator::appendQuadraticToContour\28SkPoint\20const*\2c\20float\2c\20GrTriangulator::VertexList*\29\20const +5184:GrTriangulator::SortMesh\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +5185:GrTriangulator::FindEnclosingEdges\28GrTriangulator::Vertex\20const&\2c\20GrTriangulator::EdgeList\20const&\2c\20GrTriangulator::Edge**\2c\20GrTriangulator::Edge**\29 +5186:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29 +5187:GrThreadSafeCache::findVertsWithData\28skgpu::UniqueKey\20const&\29 +5188:GrThreadSafeCache::addVertsWithData\28skgpu::UniqueKey\20const&\2c\20sk_sp\2c\20bool\20\28*\29\28SkData*\2c\20SkData*\29\29 +5189:GrThreadSafeCache::Entry::set\28skgpu::UniqueKey\20const&\2c\20sk_sp\29 +5190:GrThreadSafeCache::CreateLazyView\28GrDirectContext*\2c\20GrColorType\2c\20SkISize\2c\20GrSurfaceOrigin\2c\20SkBackingFit\29 +5191:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29 +5192:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29 +5193:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28GrCaps\20const&\2c\20std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\2c\20std::__2::basic_string_view>\29 +5194:GrTextureProxyPriv::setDeferredUploader\28std::__2::unique_ptr>\29 +5195:GrTextureProxy::setUniqueKey\28GrProxyProvider*\2c\20skgpu::UniqueKey\20const&\29 +5196:GrTextureProxy::ProxiesAreCompatibleAsDynamicState\28GrSurfaceProxy\20const*\2c\20GrSurfaceProxy\20const*\29 +5197:GrTextureProxy::GrTextureProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29_9963 +5198:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::$_1::operator\28\29\28int\2c\20GrSamplerState::WrapMode\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20float\29\20const +5199:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_2::operator\28\29\28GrTextureEffect::ShaderMode\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +5200:GrTexture::markMipmapsDirty\28\29 +5201:GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +5202:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29 +5203:GrSurfaceProxyPriv::exactify\28\29 +5204:GrSurfaceProxy::GrSurfaceProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +5205:GrStyledShape::setInheritedKey\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +5206:GrStyledShape::asRRect\28SkRRect*\2c\20bool*\29\20const +5207:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20SkPaint\20const&\2c\20GrStyledShape::DoSimplify\29 +5208:GrStyle::~GrStyle\28\29 +5209:GrStyle::applyToPath\28SkPath*\2c\20SkStrokeRec::InitStyle*\2c\20SkPath\20const&\2c\20float\29\20const +5210:GrStyle::applyPathEffect\28SkPath*\2c\20SkStrokeRec*\2c\20SkPath\20const&\29\20const +5211:GrStencilSettings::SetClipBitSettings\28bool\29 +5212:GrStagingBufferManager::detachBuffers\28\29 +5213:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineStruct\28char\20const*\29 +5214:GrShape::simplify\28unsigned\20int\29 +5215:GrShape::setRect\28SkRect\20const&\29 +5216:GrShape::conservativeContains\28SkRect\20const&\29\20const +5217:GrShape::closed\28\29\20const +5218:GrSWMaskHelper::toTextureView\28GrRecordingContext*\2c\20SkBackingFit\29 +5219:GrSWMaskHelper::drawShape\28GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +5220:GrSWMaskHelper::drawShape\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +5221:GrResourceProvider::writePixels\28sk_sp\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\29\20const +5222:GrResourceProvider::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +5223:GrResourceProvider::prepareLevels\28GrBackendFormat\20const&\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\2c\20skia_private::AutoSTArray<14\2c\20GrMipLevel>*\2c\20skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>*\29\20const +5224:GrResourceProvider::getExactScratch\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5225:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5226:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20GrColorType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMipLevel\20const*\2c\20std::__2::basic_string_view>\29 +5227:GrResourceProvider::createApproxTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5228:GrResourceCache::~GrResourceCache\28\29 +5229:GrResourceCache::removeResource\28GrGpuResource*\29 +5230:GrResourceCache::processFreedGpuResources\28\29 +5231:GrResourceCache::insertResource\28GrGpuResource*\29 +5232:GrResourceCache::didChangeBudgetStatus\28GrGpuResource*\29 +5233:GrResourceAllocator::~GrResourceAllocator\28\29 +5234:GrResourceAllocator::planAssignment\28\29 +5235:GrResourceAllocator::expire\28unsigned\20int\29 +5236:GrRenderTask::makeSkippable\28\29 +5237:GrRenderTask::isInstantiated\28\29\20const +5238:GrRenderTarget::GrRenderTarget\28GrGpu*\2c\20SkISize\20const&\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20sk_sp\29 +5239:GrRecordingContext::init\28\29 +5240:GrRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRRect\20const&\2c\20GrShaderCaps\20const&\29 +5241:GrQuadUtils::TessellationHelper::reset\28GrQuad\20const&\2c\20GrQuad\20const*\29 +5242:GrQuadUtils::TessellationHelper::outset\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuad*\2c\20GrQuad*\29 +5243:GrQuadUtils::TessellationHelper::adjustDegenerateVertices\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuadUtils::TessellationHelper::Vertices*\29 +5244:GrQuadUtils::TessellationHelper::OutsetRequest::reset\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\2c\20GrQuad::Type\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5245:GrQuadUtils::TessellationHelper::EdgeVectors::reset\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20GrQuad::Type\29 +5246:GrQuadUtils::ClipToW0\28DrawQuad*\2c\20DrawQuad*\29 +5247:GrQuad::bounds\28\29\20const +5248:GrProxyProvider::~GrProxyProvider\28\29 +5249:GrProxyProvider::wrapBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\2c\20GrIOType\2c\20sk_sp\29 +5250:GrProxyProvider::removeUniqueKeyFromProxy\28GrTextureProxy*\29 +5251:GrProxyProvider::createLazyProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20GrInternalSurfaceFlags\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +5252:GrProxyProvider::contextID\28\29\20const +5253:GrProxyProvider::adoptUniqueKeyFromSurface\28GrTextureProxy*\2c\20GrSurface\20const*\29 +5254:GrPixmapBase::clip\28SkISize\2c\20SkIPoint*\29 +5255:GrPixmap::GrPixmap\28GrImageInfo\2c\20sk_sp\2c\20unsigned\20long\29 +5256:GrPipeline::GrPipeline\28GrPipeline::InitArgs\20const&\2c\20sk_sp\2c\20GrAppliedHardClip\20const&\29 +5257:GrPersistentCacheUtils::GetType\28SkReadBuffer*\29 +5258:GrPathUtils::QuadUVMatrix::set\28SkPoint\20const*\29 +5259:GrPathTessellationShader::MakeStencilOnlyPipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedHardClip\20const&\2c\20GrPipeline::InputFlags\29 +5260:GrPaint::setCoverageSetOpXPFactory\28SkRegion::Op\2c\20bool\29 +5261:GrOvalOpFactory::MakeOvalOp\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\2c\20GrShaderCaps\20const*\29 +5262:GrOpsRenderPass::drawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +5263:GrOpsRenderPass::drawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +5264:GrOpsRenderPass::drawIndexPattern\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +5265:GrOpFlushState::reset\28\29 +5266:GrOpFlushState::executeDrawsAndUploadsForMeshDrawOp\28GrOp\20const*\2c\20SkRect\20const&\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +5267:GrOpFlushState::addASAPUpload\28std::__2::function&\29>&&\29 +5268:GrOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +5269:GrOp::combineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +5270:GrOnFlushResourceProvider::instantiateProxy\28GrSurfaceProxy*\29 +5271:GrMeshDrawTarget::allocMesh\28\29 +5272:GrMeshDrawOp::PatternHelper::init\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +5273:GrMeshDrawOp::CombinedQuadCountWillOverflow\28GrAAType\2c\20bool\2c\20int\29 +5274:GrMemoryPool::allocate\28unsigned\20long\29 +5275:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::changed\28\29 +5276:GrIndexBufferAllocPool::makeSpace\28int\2c\20sk_sp*\2c\20int*\29 +5277:GrIndexBufferAllocPool::makeSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +5278:GrImageInfo::refColorSpace\28\29\20const +5279:GrImageInfo::minRowBytes\28\29\20const +5280:GrImageInfo::makeDimensions\28SkISize\29\20const +5281:GrImageInfo::bpp\28\29\20const +5282:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20int\2c\20int\29 +5283:GrImageContext::abandonContext\28\29 +5284:GrGpuResource::removeUniqueKey\28\29 +5285:GrGpuResource::makeBudgeted\28\29 +5286:GrGpuResource::getResourceName\28\29\20const +5287:GrGpuResource::abandon\28\29 +5288:GrGpuResource::CreateUniqueID\28\29 +5289:GrGpu::~GrGpu\28\29 +5290:GrGpu::regenerateMipMapLevels\28GrTexture*\29 +5291:GrGpu::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5292:GrGpu::createTextureCommon\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +5293:GrGeometryProcessor::AttributeSet::addToKey\28skgpu::KeyBuilder*\29\20const +5294:GrGLVertexArray::invalidateCachedState\28\29 +5295:GrGLTextureParameters::invalidate\28\29 +5296:GrGLTexture::MakeWrapped\28GrGLGpu*\2c\20GrMipmapStatus\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrWrapCacheable\2c\20GrIOType\2c\20std::__2::basic_string_view>\29 +5297:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20skgpu::Budgeted\2c\20GrGLTexture::Desc\20const&\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +5298:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +5299:GrGLSLVaryingHandler::getFragDecls\28SkString*\2c\20SkString*\29\20const +5300:GrGLSLVaryingHandler::addAttribute\28GrShaderVar\20const&\29 +5301:GrGLSLUniformHandler::liftUniformToVertexShader\28GrProcessor\20const&\2c\20SkString\29 +5302:GrGLSLShaderBuilder::finalize\28unsigned\20int\29 +5303:GrGLSLShaderBuilder::emitFunction\28char\20const*\2c\20char\20const*\29 +5304:GrGLSLShaderBuilder::emitFunctionPrototype\28char\20const*\29 +5305:GrGLSLShaderBuilder::appendTextureLookupAndBlend\28char\20const*\2c\20SkBlendMode\2c\20GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +5306:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_1::operator\28\29\28char\20const*\2c\20GrResourceHandle\29\20const +5307:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_0::operator\28\29\28char\20const*\2c\20GrResourceHandle\2c\20skcms_TFType\29\20const +5308:GrGLSLShaderBuilder::addLayoutQualifier\28char\20const*\2c\20GrGLSLShaderBuilder::InterfaceQualifier\29 +5309:GrGLSLShaderBuilder::GrGLSLShaderBuilder\28GrGLSLProgramBuilder*\29 +5310:GrGLSLProgramDataManager::setRuntimeEffectUniforms\28SkSpan\2c\20SkSpan\20const>\2c\20SkSpan\2c\20void\20const*\29\20const +5311:GrGLSLProgramBuilder::~GrGLSLProgramBuilder\28\29 +5312:GrGLSLBlend::SetBlendModeUniformData\28GrGLSLProgramDataManager\20const&\2c\20GrResourceHandle\2c\20SkBlendMode\29 +5313:GrGLSLBlend::BlendExpression\28GrProcessor\20const*\2c\20GrGLSLUniformHandler*\2c\20GrResourceHandle*\2c\20char\20const*\2c\20char\20const*\2c\20SkBlendMode\29 +5314:GrGLRenderTarget::GrGLRenderTarget\28GrGLGpu*\2c\20SkISize\20const&\2c\20GrGLFormat\2c\20int\2c\20GrGLRenderTarget::IDs\20const&\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +5315:GrGLProgramDataManager::set4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +5316:GrGLProgramDataManager::set2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +5317:GrGLProgramBuilder::uniformHandler\28\29 +5318:GrGLProgramBuilder::PrecompileProgram\28GrDirectContext*\2c\20GrGLPrecompiledProgram*\2c\20SkData\20const&\29::$_0::operator\28\29\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29\20const +5319:GrGLProgramBuilder::CreateProgram\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrGLPrecompiledProgram\20const*\29 +5320:GrGLProgram::~GrGLProgram\28\29 +5321:GrGLMakeAssembledWebGLInterface\28void*\2c\20void\20\28*\20\28*\29\28void*\2c\20char\20const*\29\29\28\29\29 +5322:GrGLGpu::~GrGLGpu\28\29 +5323:GrGLGpu::uploadTexData\28SkISize\2c\20unsigned\20int\2c\20SkIRect\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20long\2c\20GrMipLevel\20const*\2c\20int\29 +5324:GrGLGpu::uploadCompressedTexData\28SkTextureCompressionType\2c\20GrGLFormat\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20unsigned\20int\2c\20void\20const*\2c\20unsigned\20long\29 +5325:GrGLGpu::uploadColorToTex\28GrGLFormat\2c\20SkISize\2c\20unsigned\20int\2c\20std::__2::array\2c\20unsigned\20int\29 +5326:GrGLGpu::readOrTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20int\29 +5327:GrGLGpu::getTimerQueryResult\28unsigned\20int\29 +5328:GrGLGpu::getCompatibleStencilIndex\28GrGLFormat\29 +5329:GrGLGpu::createRenderTargetObjects\28GrGLTexture::Desc\20const&\2c\20int\2c\20GrGLRenderTarget::IDs*\29 +5330:GrGLGpu::createCompressedTexture2D\28SkISize\2c\20SkTextureCompressionType\2c\20GrGLFormat\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrGLTextureParameters::SamplerOverriddenState*\29 +5331:GrGLGpu::bindFramebuffer\28unsigned\20int\2c\20unsigned\20int\29 +5332:GrGLGpu::ProgramCache::reset\28\29 +5333:GrGLGpu::ProgramCache::findOrCreateProgramImpl\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrThreadSafePipelineBuilder::Stats::ProgramCacheResult*\29 +5334:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29 +5335:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\29 +5336:GrGLFormatIsCompressed\28GrGLFormat\29 +5337:GrGLFinishCallbacks::check\28\29 +5338:GrGLContext::~GrGLContext\28\29_12174 +5339:GrGLContext::~GrGLContext\28\29 +5340:GrGLCaps::~GrGLCaps\28\29 +5341:GrGLCaps::getTexSubImageExternalFormatAndType\28GrGLFormat\2c\20GrColorType\2c\20GrColorType\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +5342:GrGLCaps::getTexSubImageDefaultFormatTypeAndColorType\28GrGLFormat\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20GrColorType*\29\20const +5343:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrGLFormat\29\20const +5344:GrGLCaps::formatSupportsTexStorage\28GrGLFormat\29\20const +5345:GrGLCaps::canCopyAsDraw\28GrGLFormat\2c\20bool\2c\20bool\29\20const +5346:GrGLCaps::canCopyAsBlit\28GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20SkRect\20const&\2c\20bool\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29\20const +5347:GrFragmentProcessor::~GrFragmentProcessor\28\29 +5348:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +5349:GrFragmentProcessor::ProgramImpl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +5350:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::Make\28std::__2::unique_ptr>\29 +5351:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +5352:GrFragmentProcessor::ClampOutput\28std::__2::unique_ptr>\29 +5353:GrFixedClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +5354:GrFixedClip::getConservativeBounds\28\29\20const +5355:GrFixedClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +5356:GrExternalTextureGenerator::GrExternalTextureGenerator\28SkImageInfo\20const&\29 +5357:GrEagerDynamicVertexAllocator::unlock\28int\29 +5358:GrDynamicAtlas::readView\28GrCaps\20const&\29\20const +5359:GrDrawingManager::getLastRenderTask\28GrSurfaceProxy\20const*\29\20const +5360:GrDrawOpAtlasConfig::atlasDimensions\28skgpu::MaskFormat\29\20const +5361:GrDrawOpAtlasConfig::GrDrawOpAtlasConfig\28int\2c\20unsigned\20long\29 +5362:GrDrawOpAtlas::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +5363:GrDrawOpAtlas::Make\28GrProxyProvider*\2c\20GrBackendFormat\20const&\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20int\2c\20int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20GrDrawOpAtlas::AllowMultitexturing\2c\20skgpu::PlotEvictionCallback*\2c\20std::__2::basic_string_view>\29 +5364:GrDistanceFieldA8TextGeoProc::onTextureSampler\28int\29\20const +5365:GrDistanceFieldA8TextGeoProc::addNewViews\28GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\29 +5366:GrDisableColorXPFactory::MakeXferProcessor\28\29 +5367:GrDirectContextPriv::validPMUPMConversionExists\28\29 +5368:GrDirectContext::~GrDirectContext\28\29 +5369:GrDirectContext::onGetSmallPathAtlasMgr\28\29 +5370:GrDirectContext::getResourceCacheLimits\28int*\2c\20unsigned\20long*\29\20const +5371:GrCopyRenderTask::~GrCopyRenderTask\28\29 +5372:GrCopyRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +5373:GrCopyBaseMipMapToView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Budgeted\29 +5374:GrContext_Base::threadSafeProxy\28\29 +5375:GrContext_Base::maxSurfaceSampleCountForColorType\28SkColorType\29\20const +5376:GrContext_Base::backend\28\29\20const +5377:GrColorInfo::makeColorType\28GrColorType\29\20const +5378:GrColorInfo::isLinearlyBlended\28\29\20const +5379:GrColorFragmentProcessorAnalysis::GrColorFragmentProcessorAnalysis\28GrProcessorAnalysisColor\20const&\2c\20std::__2::unique_ptr>\20const*\2c\20int\29 +5380:GrClip::IsPixelAligned\28SkRect\20const&\29 +5381:GrCaps::surfaceSupportsWritePixels\28GrSurface\20const*\29\20const +5382:GrCaps::getDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\2c\20bool\29\20const +5383:GrCPixmap::GrCPixmap\28GrPixmap\20const&\29 +5384:GrBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\2c\20unsigned\20long*\29 +5385:GrBufferAllocPool::createBlock\28unsigned\20long\29 +5386:GrBufferAllocPool::CpuBufferCache::makeBuffer\28unsigned\20long\2c\20bool\29 +5387:GrBlurUtils::draw_shape_with_mask_filter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\29 +5388:GrBlurUtils::draw_mask\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrPaint&&\2c\20GrSurfaceProxyView\29 +5389:GrBlurUtils::convolve_gaussian\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20SkIRect\2c\20SkIRect\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkBackingFit\29 +5390:GrBlurUtils::\28anonymous\20namespace\29::make_texture_effect\28GrCaps\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20GrSamplerState\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkISize\20const&\29 +5391:GrBlurUtils::MakeRectBlur\28GrRecordingContext*\2c\20GrShaderCaps\20const&\2c\20SkRect\20const&\2c\20std::__2::optional\20const&\2c\20SkMatrix\20const&\2c\20float\29 +5392:GrBlurUtils::MakeRRectBlur\28GrRecordingContext*\2c\20float\2c\20float\2c\20SkRRect\20const&\2c\20SkRRect\20const&\29 +5393:GrBlurUtils::MakeCircleBlur\28GrRecordingContext*\2c\20SkRect\20const&\2c\20float\29 +5394:GrBitmapTextGeoProc::addNewViews\28GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\29 +5395:GrBitmapTextGeoProc::GrBitmapTextGeoProc\28GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29 +5396:GrBicubicEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +5397:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +5398:GrBackendTextures::MakeGL\28int\2c\20int\2c\20skgpu::Mipmapped\2c\20GrGLTextureInfo\20const&\2c\20std::__2::basic_string_view>\29 +5399:GrBackendTexture::operator=\28GrBackendTexture\20const&\29 +5400:GrBackendRenderTargets::MakeGL\28int\2c\20int\2c\20int\2c\20int\2c\20GrGLFramebufferInfo\20const&\29 +5401:GrBackendRenderTargets::GetGLFramebufferInfo\28GrBackendRenderTarget\20const&\2c\20GrGLFramebufferInfo*\29 +5402:GrBackendRenderTarget::~GrBackendRenderTarget\28\29 +5403:GrBackendRenderTarget::isProtected\28\29\20const +5404:GrBackendFormatBytesPerBlock\28GrBackendFormat\20const&\29 +5405:GrBackendFormat::makeTexture2D\28\29\20const +5406:GrBackendFormat::isMockStencilFormat\28\29\20const +5407:GrBackendFormat::MakeMock\28GrColorType\2c\20SkTextureCompressionType\2c\20bool\29 +5408:GrAuditTrail::opsCombined\28GrOp\20const*\2c\20GrOp\20const*\29 +5409:GrAttachment::ComputeSharedAttachmentUniqueKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\2c\20skgpu::UniqueKey*\29 +5410:GrAtlasManager::~GrAtlasManager\28\29 +5411:GrAtlasManager::getViews\28skgpu::MaskFormat\2c\20unsigned\20int*\29 +5412:GrAtlasManager::freeAll\28\29 +5413:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::EventList*\2c\20GrTriangulator::Comparator\20const&\29\20const +5414:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrAATriangulator::EventList*\29\20const +5415:GrAATriangulator::collapseOverlapRegions\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\2c\20GrAATriangulator::EventComparator\29 +5416:GrAAConvexTessellator::quadTo\28SkPoint\20const*\29 +5417:GetShapedLines\28skia::textlayout::Paragraph&\29 +5418:GetLargeValue +5419:FontMgrRunIterator::endOfCurrentRun\28\29\20const +5420:FontMgrRunIterator::atEnd\28\29\20const +5421:FinishRow +5422:FindUndone\28SkOpContourHead*\29 +5423:FT_Stream_Free +5424:FT_Sfnt_Table_Info +5425:FT_Select_Size +5426:FT_Render_Glyph_Internal +5427:FT_Remove_Module +5428:FT_Outline_Get_Orientation +5429:FT_Outline_EmboldenXY +5430:FT_New_GlyphSlot +5431:FT_Match_Size +5432:FT_List_Iterate +5433:FT_List_Find +5434:FT_List_Finalize +5435:FT_GlyphLoader_CheckSubGlyphs +5436:FT_Get_Postscript_Name +5437:FT_Get_Paint_Layers +5438:FT_Get_PS_Font_Info +5439:FT_Get_Glyph_Name +5440:FT_Get_FSType_Flags +5441:FT_Get_Colorline_Stops +5442:FT_Get_Color_Glyph_ClipBox +5443:FT_Bitmap_Convert +5444:EllipticalRRectOp::~EllipticalRRectOp\28\29_11405 +5445:EllipticalRRectOp::~EllipticalRRectOp\28\29 +5446:EllipticalRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +5447:EllipticalRRectOp::RRect&\20skia_private::TArray::emplace_back\28EllipticalRRectOp::RRect&&\29 +5448:EllipticalRRectOp::EllipticalRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20SkPoint\2c\20bool\29 +5449:EllipseOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\29 +5450:EllipseOp::EllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20EllipseOp::DeviceSpaceParams\20const&\2c\20SkStrokeRec\20const&\29 +5451:EllipseGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +5452:DecodeVarLenUint8 +5453:DecodeContextMap +5454:DIEllipseOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\29 +5455:DIEllipseOp::DIEllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20DIEllipseOp::DeviceSpaceParams\20const&\2c\20SkMatrix\20const&\29 +5456:CustomXP::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +5457:CustomXP::makeProgramImpl\28\29\20const::Impl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +5458:Cr_z_zcfree +5459:Cr_z_deflateReset +5460:Cr_z_deflate +5461:Cr_z_crc32_z +5462:CoverageSetOpXP::onIsEqual\28GrXferProcessor\20const&\29\20const +5463:Contour*\20std::__2::vector>::__emplace_back_slow_path\28SkRect&\2c\20int&\2c\20int&\29 +5464:CircularRRectOp::~CircularRRectOp\28\29_11382 +5465:CircularRRectOp::~CircularRRectOp\28\29 +5466:CircularRRectOp::CircularRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +5467:CircleOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +5468:CircleOp::CircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +5469:CircleGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +5470:CheckDecBuffer +5471:CFF::path_procs_t::vvcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5472:CFF::path_procs_t::vlineto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5473:CFF::path_procs_t::vhcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5474:CFF::path_procs_t::rrcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5475:CFF::path_procs_t::rlineto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5476:CFF::path_procs_t::rlinecurve\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5477:CFF::path_procs_t::rcurveline\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5478:CFF::path_procs_t::hvcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5479:CFF::path_procs_t::hlineto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5480:CFF::path_procs_t::hhcurveto\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5481:CFF::path_procs_t::hflex\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5482:CFF::path_procs_t::hflex1\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5483:CFF::path_procs_t::flex\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5484:CFF::path_procs_t::flex1\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +5485:CFF::cff2_cs_opset_t::process_blend\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\29 +5486:CFF::cff1_private_dict_opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\2c\20CFF::cff1_private_dict_values_base_t&\29 +5487:CFF::FDSelect3_4\2c\20OT::IntType>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +5488:CFF::Charset::get_sid\28unsigned\20int\2c\20unsigned\20int\2c\20CFF::code_pair_t*\29\20const +5489:CFF::CFF2FDSelect::get_fd\28unsigned\20int\29\20const +5490:ButtCapDashedCircleOp::ButtCapDashedCircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +5491:BrotliTransformDictionaryWord +5492:BrotliEnsureRingBuffer +5493:AutoLayerForImageFilter::addMaskFilterLayer\28SkRect\20const*\29 +5494:AngleWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\2c\20bool*\29 +5495:AddIntersectTs\28SkOpContour*\2c\20SkOpContour*\2c\20SkOpCoincidence*\29 +5496:ActiveEdgeList::replace\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +5497:ActiveEdgeList::remove\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +5498:ActiveEdgeList::insert\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +5499:AAT::kerx_accelerator_t*\20hb_data_wrapper_t::call_create>\28\29\20const +5500:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +5501:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +5502:AAT::hb_aat_apply_context_t::replace_glyph\28unsigned\20int\29 +5503:AAT::ankr::get_anchor\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +5504:AAT::TrackData::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +5505:AAT::TrackData::get_tracking\28void\20const*\2c\20float\2c\20float\29\20const +5506:AAT::StateTable::EntryData>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +5507:AAT::StateTable::EntryData>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +5508:AAT::StateTable::EntryData>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +5509:AAT::RearrangementSubtable::driver_context_t::transition\28hb_buffer_t*\2c\20AAT::StateTableDriver::Flags>*\2c\20AAT::Entry\20const&\29 +5510:AAT::NoncontextualSubtable::apply\28AAT::hb_aat_apply_context_t*\29\20const +5511:AAT::Lookup>::sanitize\28hb_sanitize_context_t*\29\20const +5512:AAT::Lookup>::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +5513:AAT::InsertionSubtable::driver_context_t::transition\28hb_buffer_t*\2c\20AAT::StateTableDriver::EntryData\2c\20AAT::InsertionSubtable::Flags>*\2c\20AAT::Entry::EntryData>\20const&\29 +5514:AAT::Chain::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +5515:AAT::Chain::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +5516:5279 +5517:5280 +5518:5281 +5519:5282 +5520:5283 +5521:5284 +5522:5285 +5523:5286 +5524:5287 +5525:5288 +5526:5289 +5527:5290 +5528:5291 +5529:5292 +5530:5293 +5531:5294 +5532:5295 +5533:5296 +5534:5297 +5535:5298 +5536:5299 +5537:5300 +5538:5301 +5539:5302 +5540:5303 +5541:5304 +5542:5305 +5543:5306 +5544:5307 +5545:5308 +5546:5309 +5547:5310 +5548:5311 +5549:5312 +5550:5313 +5551:5314 +5552:5315 +5553:5316 +5554:5317 +5555:5318 +5556:5319 +5557:5320 +5558:5321 +5559:5322 +5560:5323 +5561:5324 +5562:5325 +5563:5326 +5564:5327 +5565:5328 +5566:5329 +5567:5330 +5568:5331 +5569:5332 +5570:5333 +5571:5334 +5572:5335 +5573:5336 +5574:5337 +5575:5338 +5576:5339 +5577:5340 +5578:5341 +5579:5342 +5580:5343 +5581:5344 +5582:5345 +5583:5346 +5584:5347 +5585:5348 +5586:5349 +5587:5350 +5588:5351 +5589:5352 +5590:5353 +5591:5354 +5592:ycck_cmyk_convert +5593:ycc_rgb_convert +5594:ycc_rgb565_convert +5595:ycc_rgb565D_convert +5596:xyzd50_to_lab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +5597:xyzd50_to_hcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +5598:wuffs_gif__decoder__tell_me_more +5599:wuffs_gif__decoder__set_report_metadata +5600:wuffs_gif__decoder__num_decoded_frame_configs +5601:wuffs_base__pixel_swizzler__xxxxxxxx__index_binary_alpha__src_over +5602:wuffs_base__pixel_swizzler__xxxxxxxx__index__src +5603:wuffs_base__pixel_swizzler__xxxx__index_binary_alpha__src_over +5604:wuffs_base__pixel_swizzler__xxxx__index__src +5605:wuffs_base__pixel_swizzler__xxx__index_binary_alpha__src_over +5606:wuffs_base__pixel_swizzler__xxx__index__src +5607:wuffs_base__pixel_swizzler__transparent_black_src_over +5608:wuffs_base__pixel_swizzler__transparent_black_src +5609:wuffs_base__pixel_swizzler__copy_1_1 +5610:wuffs_base__pixel_swizzler__bgr_565__index_binary_alpha__src_over +5611:wuffs_base__pixel_swizzler__bgr_565__index__src +5612:webgl_get_gl_proc\28void*\2c\20char\20const*\29 +5613:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +5614:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +5615:void\20emscripten::internal::raw_destructor>\28sk_sp*\29 +5616:void\20emscripten::internal::raw_destructor\28SkVertices::Builder*\29 +5617:void\20emscripten::internal::raw_destructor\28SkRuntimeEffect::TracedShader*\29 +5618:void\20emscripten::internal::raw_destructor\28SkPictureRecorder*\29 +5619:void\20emscripten::internal::raw_destructor\28SkPath*\29 +5620:void\20emscripten::internal::raw_destructor\28SkPaint*\29 +5621:void\20emscripten::internal::raw_destructor\28SkContourMeasureIter*\29 +5622:void\20emscripten::internal::raw_destructor\28SimpleImageInfo*\29 +5623:void\20emscripten::internal::MemberAccess::setWire\28SimpleTextStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\2c\20SimpleTextStyle*\29 +5624:void\20emscripten::internal::MemberAccess::setWire\28SimpleStrutStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\2c\20SimpleStrutStyle*\29 +5625:void\20emscripten::internal::MemberAccess>::setWire\28sk_sp\20SimpleImageInfo::*\20const&\2c\20SimpleImageInfo&\2c\20sk_sp*\29 +5626:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::TypefaceFontProvider*\29 +5627:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::ParagraphBuilderImpl*\29 +5628:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::Paragraph*\29 +5629:void\20const*\20emscripten::internal::getActualType\28skia::textlayout::FontCollection*\29 +5630:void\20const*\20emscripten::internal::getActualType\28SkVertices*\29 +5631:void\20const*\20emscripten::internal::getActualType\28SkVertices::Builder*\29 +5632:void\20const*\20emscripten::internal::getActualType\28SkTypeface*\29 +5633:void\20const*\20emscripten::internal::getActualType\28SkTextBlob*\29 +5634:void\20const*\20emscripten::internal::getActualType\28SkSurface*\29 +5635:void\20const*\20emscripten::internal::getActualType\28SkShader*\29 +5636:void\20const*\20emscripten::internal::getActualType\28SkSL::DebugTrace*\29 +5637:void\20const*\20emscripten::internal::getActualType\28SkRuntimeEffect*\29 +5638:void\20const*\20emscripten::internal::getActualType\28SkPictureRecorder*\29 +5639:void\20const*\20emscripten::internal::getActualType\28SkPicture*\29 +5640:void\20const*\20emscripten::internal::getActualType\28SkPathEffect*\29 +5641:void\20const*\20emscripten::internal::getActualType\28SkPath*\29 +5642:void\20const*\20emscripten::internal::getActualType\28SkPaint*\29 +5643:void\20const*\20emscripten::internal::getActualType\28SkMaskFilter*\29 +5644:void\20const*\20emscripten::internal::getActualType\28SkImageFilter*\29 +5645:void\20const*\20emscripten::internal::getActualType\28SkImage*\29 +5646:void\20const*\20emscripten::internal::getActualType\28SkFontMgr*\29 +5647:void\20const*\20emscripten::internal::getActualType\28SkFont*\29 +5648:void\20const*\20emscripten::internal::getActualType\28SkContourMeasureIter*\29 +5649:void\20const*\20emscripten::internal::getActualType\28SkContourMeasure*\29 +5650:void\20const*\20emscripten::internal::getActualType\28SkColorSpace*\29 +5651:void\20const*\20emscripten::internal::getActualType\28SkColorFilter*\29 +5652:void\20const*\20emscripten::internal::getActualType\28SkCanvas*\29 +5653:void\20const*\20emscripten::internal::getActualType\28SkBlender*\29 +5654:void\20const*\20emscripten::internal::getActualType\28SkAnimatedImage*\29 +5655:void\20const*\20emscripten::internal::getActualType\28GrDirectContext*\29 +5656:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5657:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5658:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5659:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5660:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5661:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5662:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5663:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5664:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5665:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5666:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5667:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5668:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5669:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5670:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5671:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5672:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5673:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5674:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5675:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5676:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5677:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5678:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5679:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5680:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5681:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5682:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5683:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5684:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5685:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5686:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5687:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5688:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5689:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5690:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5691:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5692:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5693:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5694:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5695:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5696:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5697:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5698:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5699:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5700:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5701:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5702:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5703:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5704:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5705:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5706:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5707:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5708:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5709:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5710:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5711:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5712:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5713:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5714:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5715:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5716:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5717:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5718:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5719:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5720:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5721:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5722:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5723:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5724:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5725:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5726:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5727:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5728:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5729:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5730:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5731:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5732:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5733:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5734:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5735:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5736:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5737:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5738:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5739:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5740:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5741:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5742:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5743:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5744:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5745:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5746:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5747:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5748:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5749:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5750:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5751:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +5752:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5753:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5754:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&fast_swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5755:void\20SkSwizzler::SkipLeadingGrayAlphaZerosThen<&fast_swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5756:void\20SkSwizzler::SkipLeading8888ZerosThen<&swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5757:void\20SkSwizzler::SkipLeading8888ZerosThen<&swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5758:void\20SkSwizzler::SkipLeading8888ZerosThen<&swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5759:void\20SkSwizzler::SkipLeading8888ZerosThen<&sample4\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5760:void\20SkSwizzler::SkipLeading8888ZerosThen<&fast_swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5761:void\20SkSwizzler::SkipLeading8888ZerosThen<&fast_swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5762:void\20SkSwizzler::SkipLeading8888ZerosThen<&fast_swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5763:void\20SkSwizzler::SkipLeading8888ZerosThen<©\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29>\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5764:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +5765:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_16387 +5766:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +5767:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29_16292 +5768:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29 +5769:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29_16251 +5770:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29 +5771:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_16312 +5772:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +5773:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10017 +5774:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +5775:virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +5776:virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +5777:virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +5778:virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +5779:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29_9968 +5780:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29 +5781:virtual\20thunk\20to\20GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +5782:virtual\20thunk\20to\20GrTextureProxy::instantiate\28GrResourceProvider*\29 +5783:virtual\20thunk\20to\20GrTextureProxy::getUniqueKey\28\29\20const +5784:virtual\20thunk\20to\20GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +5785:virtual\20thunk\20to\20GrTextureProxy::callbackDesc\28\29\20const +5786:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29\20const +5787:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29 +5788:virtual\20thunk\20to\20GrTexture::onGpuMemorySize\28\29\20const +5789:virtual\20thunk\20to\20GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +5790:virtual\20thunk\20to\20GrTexture::asTexture\28\29\20const +5791:virtual\20thunk\20to\20GrTexture::asTexture\28\29 +5792:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29_9737 +5793:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +5794:virtual\20thunk\20to\20GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +5795:virtual\20thunk\20to\20GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +5796:virtual\20thunk\20to\20GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +5797:virtual\20thunk\20to\20GrRenderTargetProxy::callbackDesc\28\29\20const +5798:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29\20const +5799:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29 +5800:virtual\20thunk\20to\20GrRenderTarget::onRelease\28\29 +5801:virtual\20thunk\20to\20GrRenderTarget::onAbandon\28\29 +5802:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29\20const +5803:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29 +5804:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12485 +5805:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +5806:virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +5807:virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +5808:virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +5809:virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +5810:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29_12452 +5811:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29 +5812:virtual\20thunk\20to\20GrGLTexture::onRelease\28\29 +5813:virtual\20thunk\20to\20GrGLTexture::onAbandon\28\29 +5814:virtual\20thunk\20to\20GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +5815:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_10762 +5816:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +5817:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::onFinalize\28\29 +5818:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29_12424 +5819:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29 +5820:virtual\20thunk\20to\20GrGLRenderTarget::onRelease\28\29 +5821:virtual\20thunk\20to\20GrGLRenderTarget::onGpuMemorySize\28\29\20const +5822:virtual\20thunk\20to\20GrGLRenderTarget::onAbandon\28\29 +5823:virtual\20thunk\20to\20GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +5824:virtual\20thunk\20to\20GrGLRenderTarget::backendFormat\28\29\20const +5825:tt_vadvance_adjust +5826:tt_slot_init +5827:tt_size_select +5828:tt_size_reset_iterator +5829:tt_size_request +5830:tt_size_init +5831:tt_size_done +5832:tt_sbit_decoder_load_png +5833:tt_sbit_decoder_load_compound +5834:tt_sbit_decoder_load_byte_aligned +5835:tt_sbit_decoder_load_bit_aligned +5836:tt_property_set +5837:tt_property_get +5838:tt_name_ascii_from_utf16 +5839:tt_name_ascii_from_other +5840:tt_hadvance_adjust +5841:tt_glyph_load +5842:tt_get_var_blend +5843:tt_get_interface +5844:tt_get_glyph_name +5845:tt_get_cmap_info +5846:tt_get_advances +5847:tt_face_set_sbit_strike +5848:tt_face_load_strike_metrics +5849:tt_face_load_sbit_image +5850:tt_face_load_sbit +5851:tt_face_load_post +5852:tt_face_load_pclt +5853:tt_face_load_os2 +5854:tt_face_load_name +5855:tt_face_load_maxp +5856:tt_face_load_kern +5857:tt_face_load_hmtx +5858:tt_face_load_hhea +5859:tt_face_load_head +5860:tt_face_load_gasp +5861:tt_face_load_font_dir +5862:tt_face_load_cpal +5863:tt_face_load_colr +5864:tt_face_load_cmap +5865:tt_face_load_bhed +5866:tt_face_load_any +5867:tt_face_init +5868:tt_face_goto_table +5869:tt_face_get_paint_layers +5870:tt_face_get_paint +5871:tt_face_get_kerning +5872:tt_face_get_colr_layer +5873:tt_face_get_colr_glyph_paint +5874:tt_face_get_colorline_stops +5875:tt_face_get_color_glyph_clipbox +5876:tt_face_free_sbit +5877:tt_face_free_ps_names +5878:tt_face_free_name +5879:tt_face_free_cpal +5880:tt_face_free_colr +5881:tt_face_done +5882:tt_face_colr_blend_layer +5883:tt_driver_init +5884:tt_cvt_ready_iterator +5885:tt_cmap_unicode_init +5886:tt_cmap_unicode_char_next +5887:tt_cmap_unicode_char_index +5888:tt_cmap_init +5889:tt_cmap8_validate +5890:tt_cmap8_get_info +5891:tt_cmap8_char_next +5892:tt_cmap8_char_index +5893:tt_cmap6_validate +5894:tt_cmap6_get_info +5895:tt_cmap6_char_next +5896:tt_cmap6_char_index +5897:tt_cmap4_validate +5898:tt_cmap4_init +5899:tt_cmap4_get_info +5900:tt_cmap4_char_next +5901:tt_cmap4_char_index +5902:tt_cmap2_validate +5903:tt_cmap2_get_info +5904:tt_cmap2_char_next +5905:tt_cmap2_char_index +5906:tt_cmap14_variants +5907:tt_cmap14_variant_chars +5908:tt_cmap14_validate +5909:tt_cmap14_init +5910:tt_cmap14_get_info +5911:tt_cmap14_done +5912:tt_cmap14_char_variants +5913:tt_cmap14_char_var_isdefault +5914:tt_cmap14_char_var_index +5915:tt_cmap14_char_next +5916:tt_cmap13_validate +5917:tt_cmap13_get_info +5918:tt_cmap13_char_next +5919:tt_cmap13_char_index +5920:tt_cmap12_validate +5921:tt_cmap12_get_info +5922:tt_cmap12_char_next +5923:tt_cmap12_char_index +5924:tt_cmap10_validate +5925:tt_cmap10_get_info +5926:tt_cmap10_char_next +5927:tt_cmap10_char_index +5928:tt_cmap0_validate +5929:tt_cmap0_get_info +5930:tt_cmap0_char_next +5931:tt_cmap0_char_index +5932:t2_hints_stems +5933:t2_hints_open +5934:t1_make_subfont +5935:t1_hints_stem +5936:t1_hints_open +5937:t1_decrypt +5938:t1_decoder_parse_metrics +5939:t1_decoder_init +5940:t1_decoder_done +5941:t1_cmap_unicode_init +5942:t1_cmap_unicode_char_next +5943:t1_cmap_unicode_char_index +5944:t1_cmap_std_done +5945:t1_cmap_std_char_next +5946:t1_cmap_std_char_index +5947:t1_cmap_standard_init +5948:t1_cmap_expert_init +5949:t1_cmap_custom_init +5950:t1_cmap_custom_done +5951:t1_cmap_custom_char_next +5952:t1_cmap_custom_char_index +5953:t1_builder_start_point +5954:t1_builder_init +5955:t1_builder_add_point1 +5956:t1_builder_add_point +5957:t1_builder_add_contour +5958:swizzle_small_index_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5959:swizzle_small_index_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5960:swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5961:swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5962:swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5963:swizzle_rgba16_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5964:swizzle_rgba16_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5965:swizzle_rgba16_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5966:swizzle_rgba16_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5967:swizzle_rgb_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5968:swizzle_rgb_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5969:swizzle_rgb_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5970:swizzle_rgb16_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5971:swizzle_rgb16_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5972:swizzle_rgb16_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5973:swizzle_mask32_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5974:swizzle_mask32_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5975:swizzle_mask32_to_rgba_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5976:swizzle_mask32_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5977:swizzle_mask32_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5978:swizzle_mask32_to_bgra_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5979:swizzle_mask32_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5980:swizzle_mask24_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5981:swizzle_mask24_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5982:swizzle_mask24_to_rgba_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5983:swizzle_mask24_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5984:swizzle_mask24_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5985:swizzle_mask24_to_bgra_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5986:swizzle_mask24_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5987:swizzle_mask16_to_rgba_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5988:swizzle_mask16_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5989:swizzle_mask16_to_rgba_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5990:swizzle_mask16_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5991:swizzle_mask16_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5992:swizzle_mask16_to_bgra_opaque\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5993:swizzle_mask16_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20SkMasks*\2c\20unsigned\20int\2c\20unsigned\20int\29 +5994:swizzle_index_to_n32_skipZ\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5995:swizzle_index_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5996:swizzle_index_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5997:swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5998:swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +5999:swizzle_grayalpha_to_a8\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6000:swizzle_gray_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6001:swizzle_gray_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6002:swizzle_cmyk_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6003:swizzle_cmyk_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6004:swizzle_cmyk_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6005:swizzle_bit_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6006:swizzle_bit_to_grayscale\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6007:swizzle_bit_to_f16\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6008:swizzle_bit_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6009:swizzle_bgr_to_565\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6010:string_read +6011:std::exception::what\28\29\20const +6012:std::bad_variant_access::what\28\29\20const +6013:std::bad_optional_access::what\28\29\20const +6014:std::bad_array_new_length::what\28\29\20const +6015:std::bad_alloc::what\28\29\20const +6016:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +6017:std::__2::unique_ptr>::operator=\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +6018:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20tm\20const*\2c\20char\2c\20char\29\20const +6019:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20tm\20const*\2c\20char\2c\20char\29\20const +6020:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6021:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6022:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6023:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6024:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6025:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +6026:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6027:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6028:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6029:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6030:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +6031:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +6032:std::__2::numpunct::~numpunct\28\29_17268 +6033:std::__2::numpunct::do_truename\28\29\20const +6034:std::__2::numpunct::do_grouping\28\29\20const +6035:std::__2::numpunct::do_falsename\28\29\20const +6036:std::__2::numpunct::~numpunct\28\29_17266 +6037:std::__2::numpunct::do_truename\28\29\20const +6038:std::__2::numpunct::do_thousands_sep\28\29\20const +6039:std::__2::numpunct::do_grouping\28\29\20const +6040:std::__2::numpunct::do_falsename\28\29\20const +6041:std::__2::numpunct::do_decimal_point\28\29\20const +6042:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20void\20const*\29\20const +6043:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\29\20const +6044:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\20long\29\20const +6045:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\29\20const +6046:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20long\29\20const +6047:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +6048:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20double\29\20const +6049:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20bool\29\20const +6050:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20void\20const*\29\20const +6051:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\29\20const +6052:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\20long\29\20const +6053:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\29\20const +6054:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20long\29\20const +6055:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +6056:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20double\29\20const +6057:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20bool\29\20const +6058:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +6059:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +6060:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +6061:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +6062:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6063:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +6064:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +6065:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +6066:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +6067:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +6068:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +6069:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +6070:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +6071:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6072:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +6073:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +6074:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +6075:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +6076:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6077:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +6078:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6079:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +6080:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +6081:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6082:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +6083:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +6084:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6085:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +6086:std::__2::locale::__imp::~__imp\28\29_17146 +6087:std::__2::ios_base::~ios_base\28\29_16509 +6088:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +6089:std::__2::ctype::do_toupper\28wchar_t\29\20const +6090:std::__2::ctype::do_toupper\28wchar_t*\2c\20wchar_t\20const*\29\20const +6091:std::__2::ctype::do_tolower\28wchar_t\29\20const +6092:std::__2::ctype::do_tolower\28wchar_t*\2c\20wchar_t\20const*\29\20const +6093:std::__2::ctype::do_scan_not\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6094:std::__2::ctype::do_scan_is\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6095:std::__2::ctype::do_narrow\28wchar_t\2c\20char\29\20const +6096:std::__2::ctype::do_narrow\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20char\2c\20char*\29\20const +6097:std::__2::ctype::do_is\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20unsigned\20long*\29\20const +6098:std::__2::ctype::do_is\28unsigned\20long\2c\20wchar_t\29\20const +6099:std::__2::ctype::~ctype\28\29_17194 +6100:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +6101:std::__2::ctype::do_toupper\28char\29\20const +6102:std::__2::ctype::do_toupper\28char*\2c\20char\20const*\29\20const +6103:std::__2::ctype::do_tolower\28char\29\20const +6104:std::__2::ctype::do_tolower\28char*\2c\20char\20const*\29\20const +6105:std::__2::ctype::do_narrow\28char\2c\20char\29\20const +6106:std::__2::ctype::do_narrow\28char\20const*\2c\20char\20const*\2c\20char\2c\20char*\29\20const +6107:std::__2::collate::do_transform\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6108:std::__2::collate::do_hash\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6109:std::__2::collate::do_compare\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +6110:std::__2::collate::do_transform\28char\20const*\2c\20char\20const*\29\20const +6111:std::__2::collate::do_hash\28char\20const*\2c\20char\20const*\29\20const +6112:std::__2::collate::do_compare\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +6113:std::__2::codecvt::~codecvt\28\29_17212 +6114:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char*\2c\20char*\2c\20char*&\29\20const +6115:std::__2::codecvt::do_out\28__mbstate_t&\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +6116:std::__2::codecvt::do_max_length\28\29\20const +6117:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +6118:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20wchar_t*\2c\20wchar_t*\2c\20wchar_t*&\29\20const +6119:std::__2::codecvt::do_encoding\28\29\20const +6120:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +6121:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29_16379 +6122:std::__2::basic_stringbuf\2c\20std::__2::allocator>::underflow\28\29 +6123:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +6124:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +6125:std::__2::basic_stringbuf\2c\20std::__2::allocator>::pbackfail\28int\29 +6126:std::__2::basic_stringbuf\2c\20std::__2::allocator>::overflow\28int\29 +6127:std::__2::basic_streambuf>::~basic_streambuf\28\29_16224 +6128:std::__2::basic_streambuf>::xsputn\28char\20const*\2c\20long\29 +6129:std::__2::basic_streambuf>::xsgetn\28char*\2c\20long\29 +6130:std::__2::basic_streambuf>::uflow\28\29 +6131:std::__2::basic_streambuf>::setbuf\28char*\2c\20long\29 +6132:std::__2::basic_streambuf>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +6133:std::__2::basic_streambuf>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +6134:std::__2::bad_function_call::what\28\29\20const +6135:std::__2::__time_get_c_storage::__x\28\29\20const +6136:std::__2::__time_get_c_storage::__weeks\28\29\20const +6137:std::__2::__time_get_c_storage::__r\28\29\20const +6138:std::__2::__time_get_c_storage::__months\28\29\20const +6139:std::__2::__time_get_c_storage::__c\28\29\20const +6140:std::__2::__time_get_c_storage::__am_pm\28\29\20const +6141:std::__2::__time_get_c_storage::__X\28\29\20const +6142:std::__2::__time_get_c_storage::__x\28\29\20const +6143:std::__2::__time_get_c_storage::__weeks\28\29\20const +6144:std::__2::__time_get_c_storage::__r\28\29\20const +6145:std::__2::__time_get_c_storage::__months\28\29\20const +6146:std::__2::__time_get_c_storage::__c\28\29\20const +6147:std::__2::__time_get_c_storage::__am_pm\28\29\20const +6148:std::__2::__time_get_c_storage::__X\28\29\20const +6149:std::__2::__shared_ptr_pointer<_IO_FILE*\2c\20void\20\28*\29\28_IO_FILE*\29\2c\20std::__2::allocator<_IO_FILE>>::__on_zero_shared\28\29 +6150:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_7688 +6151:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +6152:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +6153:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_7980 +6154:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +6155:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +6156:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_8224 +6157:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +6158:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +6159:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_5867 +6160:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +6161:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6162:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6163:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6164:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6165:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6166:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6167:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6168:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6169:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6170:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6171:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6172:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6173:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6174:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6175:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6176:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6177:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6178:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6179:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +6180:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6181:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +6182:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +6183:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6184:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +6185:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6186:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6187:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6188:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6189:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6190:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6191:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6192:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6193:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6194:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6195:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6196:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6197:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6198:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6199:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6200:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6201:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6202:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6203:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6204:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6205:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6206:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6207:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6208:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6209:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6210:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6211:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6212:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6213:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6214:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6215:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6216:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6217:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6218:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +6219:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +6220:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +6221:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6222:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +6223:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +6224:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20float&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20SkPoint&&\2c\20SkPoint&&\2c\20skia::textlayout::InternalLineMetrics&&\2c\20bool&&\29 +6225:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>*\29\20const +6226:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28\29\20const +6227:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::operator\28\29\28skia::textlayout::Cluster*&&\29 +6228:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28std::__2::__function::__base*\29\20const +6229:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28\29\20const +6230:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6231:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28\29\20const +6232:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20SkSpan&&\2c\20float&\2c\20unsigned\20long&&\2c\20unsigned\20char&&\29 +6233:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28std::__2::__function::__base\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>*\29\20const +6234:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28\29\20const +6235:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::operator\28\29\28skia::textlayout::Block&&\2c\20skia_private::TArray&&\29 +6236:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28std::__2::__function::__base\29>*\29\20const +6237:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28\29\20const +6238:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::operator\28\29\28sk_sp&&\29 +6239:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28std::__2::__function::__base\29>*\29\20const +6240:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28\29\20const +6241:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::operator\28\29\28skia::textlayout::SkRange&&\29 +6242:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28std::__2::__function::__base\29>*\29\20const +6243:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28\29\20const +6244:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +6245:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +6246:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +6247:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29_10199 +6248:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29 +6249:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::operator\28\29\28void*&&\2c\20void\20const*&&\29 +6250:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy_deallocate\28\29 +6251:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy\28\29 +6252:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6253:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28\29\20const +6254:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6255:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6256:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6257:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6258:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6259:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6260:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +6261:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6262:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6263:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +6264:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6265:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6266:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +6267:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6268:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6269:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +6270:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +6271:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +6272:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::operator\28\29\28sktext::gpu::GlyphVector*&&\2c\20int&&\2c\20int&&\2c\20skgpu::MaskFormat&&\2c\20int&&\29 +6273:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28std::__2::__function::__base\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>*\29\20const +6274:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28\29\20const +6275:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::operator\28\29\28GrSurfaceProxy\20const*&&\29 +6276:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6277:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28\29\20const +6278:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +6279:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +6280:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +6281:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +6282:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +6283:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +6284:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +6285:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6286:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +6287:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6288:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6289:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +6290:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +6291:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +6292:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6293:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6294:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::operator\28\29\28\29 +6295:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6296:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28\29\20const +6297:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6298:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6299:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6300:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6301:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6302:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6303:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6304:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6305:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6306:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6307:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6308:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6309:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6310:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +6311:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +6312:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +6313:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +6314:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +6315:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +6316:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29_4515 +6317:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29 +6318:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +6319:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy_deallocate\28\29 +6320:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy\28\29 +6321:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6322:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +6323:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +6324:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6325:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +6326:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6327:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6328:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6329:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6330:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6331:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6332:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::operator\28\29\28SkSL::Variable\20const&\29 +6333:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6334:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28\29\20const +6335:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::operator\28\29\28int&&\2c\20SkSL::Variable\20const*&&\2c\20SkSL::Expression\20const*&&\29 +6336:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6337:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28\29\20const +6338:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::operator\28\29\28unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\29 +6339:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +6340:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +6341:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +6342:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +6343:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::operator\28\29\28SkVertices\20const*&&\2c\20SkBlendMode&&\2c\20SkPaint\20const&\2c\20float&&\2c\20float&&\2c\20bool&&\29 +6344:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +6345:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28\29\20const +6346:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::operator\28\29\28SkIRect\20const&\29 +6347:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6348:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28\29\20const +6349:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::operator\28\29\28SkImageInfo\20const&\2c\20void*&&\2c\20unsigned\20long&&\2c\20SkCodec::Options\20const&\2c\20int&&\29 +6350:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +6351:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::__clone\28\29\20const +6352:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10061 +6353:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +6354:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +6355:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +6356:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +6357:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6358:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +6359:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_9654 +6360:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +6361:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +6362:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +6363:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +6364:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6365:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +6366:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_9661 +6367:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +6368:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +6369:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +6370:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +6371:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6372:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +6373:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::operator\28\29\28GrTextureProxy*&&\2c\20SkIRect&&\2c\20GrColorType&&\2c\20void\20const*&&\2c\20unsigned\20long&&\29 +6374:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +6375:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28\29\20const +6376:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::operator\28\29\28GrBackendTexture&&\29 +6377:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28std::__2::__function::__base*\29\20const +6378:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28\29\20const +6379:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +6380:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +6381:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +6382:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +6383:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +6384:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +6385:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6386:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6387:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6388:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +6389:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +6390:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +6391:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +6392:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6393:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +6394:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +6395:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +6396:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +6397:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9155 +6398:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +6399:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +6400:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +6401:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9162 +6402:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +6403:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +6404:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +6405:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +6406:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +6407:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +6408:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::operator\28\29\28int&&\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*&&\29 +6409:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +6410:std::__2::__function::__func\2c\20void\20\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29>::__clone\28\29\20const +6411:start_pass_upsample +6412:start_pass_phuff_decoder +6413:start_pass_merged_upsample +6414:start_pass_main +6415:start_pass_huff_decoder +6416:start_pass_dpost +6417:start_pass_2_quant +6418:start_pass_1_quant +6419:start_pass +6420:start_output_pass +6421:start_input_pass_15652 +6422:srgb_to_hwb\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +6423:srgb_to_hsl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +6424:srcover_p\28unsigned\20char\2c\20unsigned\20char\29 +6425:sn_write +6426:sktext::gpu::post_purge_blob_message\28unsigned\20int\2c\20unsigned\20int\29 +6427:sktext::gpu::TextBlob::~TextBlob\28\29_12761 +6428:sktext::gpu::TextBlob::~TextBlob\28\29 +6429:sktext::gpu::SubRun::~SubRun\28\29 +6430:sktext::gpu::SlugImpl::~SlugImpl\28\29_12645 +6431:sktext::gpu::SlugImpl::~SlugImpl\28\29 +6432:sktext::gpu::SlugImpl::sourceBounds\28\29\20const +6433:sktext::gpu::SlugImpl::sourceBoundsWithOrigin\28\29\20const +6434:sktext::gpu::SlugImpl::doFlatten\28SkWriteBuffer&\29\20const +6435:sktext::gpu::SDFMaskFilterImpl::getTypeName\28\29\20const +6436:sktext::gpu::SDFMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +6437:sktext::gpu::SDFMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +6438:sktext::gpu::AtlasSubRun::~AtlasSubRun\28\29_12719 +6439:skip_variable +6440:skif::\28anonymous\20namespace\29::RasterBackend::~RasterBackend\28\29 +6441:skif::\28anonymous\20namespace\29::RasterBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +6442:skif::\28anonymous\20namespace\29::RasterBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +6443:skif::\28anonymous\20namespace\29::RasterBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +6444:skif::\28anonymous\20namespace\29::RasterBackend::getBlurEngine\28\29\20const +6445:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10858 +6446:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +6447:skif::\28anonymous\20namespace\29::GaneshBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +6448:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +6449:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +6450:skif::\28anonymous\20namespace\29::GaneshBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +6451:skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +6452:skia_png_zalloc +6453:skia_png_write_rows +6454:skia_png_write_info +6455:skia_png_write_end +6456:skia_png_user_version_check +6457:skia_png_set_text +6458:skia_png_set_sRGB +6459:skia_png_set_keep_unknown_chunks +6460:skia_png_set_iCCP +6461:skia_png_set_gray_to_rgb +6462:skia_png_set_filter +6463:skia_png_set_filler +6464:skia_png_read_update_info +6465:skia_png_read_info +6466:skia_png_read_image +6467:skia_png_read_end +6468:skia_png_push_fill_buffer +6469:skia_png_process_data +6470:skia_png_default_write_data +6471:skia_png_default_read_data +6472:skia_png_default_flush +6473:skia_png_create_read_struct +6474:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29_8165 +6475:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29 +6476:skia::textlayout::TypefaceFontStyleSet::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +6477:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29_8158 +6478:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29 +6479:skia::textlayout::TypefaceFontProvider::onMatchFamily\28char\20const*\29\20const +6480:skia::textlayout::TypefaceFontProvider::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +6481:skia::textlayout::TypefaceFontProvider::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +6482:skia::textlayout::TypefaceFontProvider::onGetFamilyName\28int\2c\20SkString*\29\20const +6483:skia::textlayout::TypefaceFontProvider::onCreateStyleSet\28int\29\20const +6484:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29_8009 +6485:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29 +6486:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +6487:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +6488:skia::textlayout::PositionWithAffinity*\20emscripten::internal::raw_constructor\28\29 +6489:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29_7822 +6490:skia::textlayout::ParagraphImpl::visit\28std::__2::function\20const&\29 +6491:skia::textlayout::ParagraphImpl::updateTextAlign\28skia::textlayout::TextAlign\29 +6492:skia::textlayout::ParagraphImpl::updateForegroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +6493:skia::textlayout::ParagraphImpl::updateFontSize\28unsigned\20long\2c\20unsigned\20long\2c\20float\29 +6494:skia::textlayout::ParagraphImpl::updateBackgroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +6495:skia::textlayout::ParagraphImpl::unresolvedGlyphs\28\29 +6496:skia::textlayout::ParagraphImpl::unresolvedCodepoints\28\29 +6497:skia::textlayout::ParagraphImpl::paint\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\29 +6498:skia::textlayout::ParagraphImpl::paint\28SkCanvas*\2c\20float\2c\20float\29 +6499:skia::textlayout::ParagraphImpl::markDirty\28\29 +6500:skia::textlayout::ParagraphImpl::lineNumber\28\29 +6501:skia::textlayout::ParagraphImpl::layout\28float\29 +6502:skia::textlayout::ParagraphImpl::getWordBoundary\28unsigned\20int\29 +6503:skia::textlayout::ParagraphImpl::getRectsForRange\28unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +6504:skia::textlayout::ParagraphImpl::getRectsForPlaceholders\28\29 +6505:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +6506:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29 +6507:skia::textlayout::ParagraphImpl::getLineNumberAt\28unsigned\20long\29\20const +6508:skia::textlayout::ParagraphImpl::getLineNumberAtUTF16Offset\28unsigned\20long\29 +6509:skia::textlayout::ParagraphImpl::getLineMetrics\28std::__2::vector>&\29 +6510:skia::textlayout::ParagraphImpl::getLineMetricsAt\28int\2c\20skia::textlayout::LineMetrics*\29\20const +6511:skia::textlayout::ParagraphImpl::getGlyphPositionAtCoordinate\28float\2c\20float\29 +6512:skia::textlayout::ParagraphImpl::getFonts\28\29\20const +6513:skia::textlayout::ParagraphImpl::getFontAt\28unsigned\20long\29\20const +6514:skia::textlayout::ParagraphImpl::getFontAtUTF16Offset\28unsigned\20long\29 +6515:skia::textlayout::ParagraphImpl::getClosestUTF16GlyphInfoAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +6516:skia::textlayout::ParagraphImpl::getClosestGlyphClusterAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +6517:skia::textlayout::ParagraphImpl::getActualTextRange\28int\2c\20bool\29\20const +6518:skia::textlayout::ParagraphImpl::extendedVisit\28std::__2::function\20const&\29 +6519:skia::textlayout::ParagraphImpl::containsEmoji\28SkTextBlob*\29 +6520:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29::$_0::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +6521:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29 +6522:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29_7752 +6523:skia::textlayout::ParagraphBuilderImpl::setWordsUtf8\28std::__2::vector>\29 +6524:skia::textlayout::ParagraphBuilderImpl::setWordsUtf16\28std::__2::vector>\29 +6525:skia::textlayout::ParagraphBuilderImpl::setLineBreaksUtf8\28std::__2::vector>\29 +6526:skia::textlayout::ParagraphBuilderImpl::setLineBreaksUtf16\28std::__2::vector>\29 +6527:skia::textlayout::ParagraphBuilderImpl::setGraphemeBreaksUtf8\28std::__2::vector>\29 +6528:skia::textlayout::ParagraphBuilderImpl::setGraphemeBreaksUtf16\28std::__2::vector>\29 +6529:skia::textlayout::ParagraphBuilderImpl::pushStyle\28skia::textlayout::TextStyle\20const&\29 +6530:skia::textlayout::ParagraphBuilderImpl::pop\28\29 +6531:skia::textlayout::ParagraphBuilderImpl::peekStyle\28\29 +6532:skia::textlayout::ParagraphBuilderImpl::getText\28\29 +6533:skia::textlayout::ParagraphBuilderImpl::getParagraphStyle\28\29\20const +6534:skia::textlayout::ParagraphBuilderImpl::getClientICUData\28\29\20const +6535:skia::textlayout::ParagraphBuilderImpl::addText\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +6536:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\2c\20unsigned\20long\29 +6537:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\29 +6538:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\29 +6539:skia::textlayout::ParagraphBuilderImpl::SetUnicode\28sk_sp\29 +6540:skia::textlayout::ParagraphBuilderImpl::Reset\28\29 +6541:skia::textlayout::ParagraphBuilderImpl::RequiresClientICU\28\29 +6542:skia::textlayout::ParagraphBuilderImpl::Build\28\29 +6543:skia::textlayout::Paragraph::getMinIntrinsicWidth\28\29 +6544:skia::textlayout::Paragraph::getMaxWidth\28\29 +6545:skia::textlayout::Paragraph::getMaxIntrinsicWidth\28\29 +6546:skia::textlayout::Paragraph::getLongestLine\28\29 +6547:skia::textlayout::Paragraph::getIdeographicBaseline\28\29 +6548:skia::textlayout::Paragraph::getHeight\28\29 +6549:skia::textlayout::Paragraph::getAlphabeticBaseline\28\29 +6550:skia::textlayout::Paragraph::didExceedMaxLines\28\29 +6551:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29_7895 +6552:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29 +6553:skia::textlayout::OneLineShaper::~OneLineShaper\28\29_7676 +6554:skia::textlayout::OneLineShaper::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +6555:skia::textlayout::OneLineShaper::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +6556:skia::textlayout::LangIterator::~LangIterator\28\29_7733 +6557:skia::textlayout::LangIterator::~LangIterator\28\29 +6558:skia::textlayout::LangIterator::endOfCurrentRun\28\29\20const +6559:skia::textlayout::LangIterator::currentLanguage\28\29\20const +6560:skia::textlayout::LangIterator::consume\28\29 +6561:skia::textlayout::LangIterator::atEnd\28\29\20const +6562:skia::textlayout::FontCollection::~FontCollection\28\29_7644 +6563:skia::textlayout::CanvasParagraphPainter::translate\28float\2c\20float\29 +6564:skia::textlayout::CanvasParagraphPainter::save\28\29 +6565:skia::textlayout::CanvasParagraphPainter::restore\28\29 +6566:skia::textlayout::CanvasParagraphPainter::drawTextShadow\28sk_sp\20const&\2c\20float\2c\20float\2c\20unsigned\20int\2c\20float\29 +6567:skia::textlayout::CanvasParagraphPainter::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20std::__2::variant\20const&\29 +6568:skia::textlayout::CanvasParagraphPainter::drawRect\28SkRect\20const&\2c\20std::__2::variant\20const&\29 +6569:skia::textlayout::CanvasParagraphPainter::drawPath\28SkPath\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +6570:skia::textlayout::CanvasParagraphPainter::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +6571:skia::textlayout::CanvasParagraphPainter::drawFilledRect\28SkRect\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +6572:skia::textlayout::CanvasParagraphPainter::clipRect\28SkRect\20const&\29 +6573:skhdr::MasteringDisplayColorVolume::serialize\28\29\20const +6574:skhdr::ContentLightLevelInformation::serializePngChunk\28\29\20const +6575:skgpu::tess::FixedCountWedges::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +6576:skgpu::tess::FixedCountWedges::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +6577:skgpu::tess::FixedCountStrokes::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +6578:skgpu::tess::FixedCountCurves::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +6579:skgpu::tess::FixedCountCurves::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +6580:skgpu::ganesh::texture_proxy_view_from_planes\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20skgpu::Budgeted\29::$_0::__invoke\28void*\2c\20void*\29 +6581:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29_11734 +6582:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::visitProxies\28std::__2::function\20const&\29\20const +6583:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +6584:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6585:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6586:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::name\28\29\20const +6587:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::fixedFunctionFlags\28\29\20const +6588:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6589:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::name\28\29\20const +6590:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +6591:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +6592:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +6593:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +6594:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29_11610 +6595:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29 +6596:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::name\28\29\20const +6597:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +6598:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +6599:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29_11005 +6600:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29 +6601:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +6602:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +6603:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6604:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6605:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6606:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::name\28\29\20const +6607:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::fixedFunctionFlags\28\29\20const +6608:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6609:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29_10945 +6610:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29 +6611:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +6612:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +6613:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6614:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6615:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6616:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::name\28\29\20const +6617:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6618:skgpu::ganesh::TriangulatingPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6619:skgpu::ganesh::TriangulatingPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6620:skgpu::ganesh::TriangulatingPathRenderer::name\28\29\20const +6621:skgpu::ganesh::TessellationPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +6622:skgpu::ganesh::TessellationPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +6623:skgpu::ganesh::TessellationPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6624:skgpu::ganesh::TessellationPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6625:skgpu::ganesh::TessellationPathRenderer::name\28\29\20const +6626:skgpu::ganesh::SurfaceDrawContext::willReplaceOpsTask\28skgpu::ganesh::OpsTask*\2c\20skgpu::ganesh::OpsTask*\29 +6627:skgpu::ganesh::SurfaceDrawContext::canDiscardPreviousOpsOnFullClear\28\29\20const +6628:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29_9126 +6629:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +6630:skgpu::ganesh::SurfaceContext::asyncReadPixels\28GrDirectContext*\2c\20SkIRect\20const&\2c\20SkColorType\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +6631:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29_11805 +6632:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29 +6633:skgpu::ganesh::StrokeTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +6634:skgpu::ganesh::StrokeTessellateOp::usesStencil\28\29\20const +6635:skgpu::ganesh::StrokeTessellateOp::onPrepare\28GrOpFlushState*\29 +6636:skgpu::ganesh::StrokeTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6637:skgpu::ganesh::StrokeTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6638:skgpu::ganesh::StrokeTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6639:skgpu::ganesh::StrokeTessellateOp::name\28\29\20const +6640:skgpu::ganesh::StrokeTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6641:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29_11783 +6642:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29 +6643:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +6644:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::programInfo\28\29 +6645:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +6646:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6647:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6648:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::name\28\29\20const +6649:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6650:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29_11772 +6651:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29 +6652:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +6653:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::programInfo\28\29 +6654:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +6655:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6656:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6657:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6658:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::name\28\29\20const +6659:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6660:skgpu::ganesh::StencilClip::~StencilClip\28\29_10149 +6661:skgpu::ganesh::StencilClip::~StencilClip\28\29 +6662:skgpu::ganesh::StencilClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +6663:skgpu::ganesh::StencilClip::getConservativeBounds\28\29\20const +6664:skgpu::ganesh::StencilClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +6665:skgpu::ganesh::SoftwarePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6666:skgpu::ganesh::SoftwarePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6667:skgpu::ganesh::SoftwarePathRenderer::name\28\29\20const +6668:skgpu::ganesh::SmallPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6669:skgpu::ganesh::SmallPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6670:skgpu::ganesh::SmallPathRenderer::name\28\29\20const +6671:skgpu::ganesh::SmallPathAtlasMgr::preFlush\28GrOnFlushResourceProvider*\29 +6672:skgpu::ganesh::SmallPathAtlasMgr::postFlush\28skgpu::Token\29 +6673:skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +6674:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29_11681 +6675:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29 +6676:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::visitProxies\28std::__2::function\20const&\29\20const +6677:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::programInfo\28\29 +6678:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +6679:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6680:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6681:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6682:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::name\28\29\20const +6683:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6684:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_quad_generic\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6685:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6686:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6687:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6688:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6689:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6690:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6691:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +6692:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29_11670 +6693:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29 +6694:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::onTextureSampler\28int\29\20const +6695:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::name\28\29\20const +6696:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +6697:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +6698:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +6699:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +6700:skgpu::ganesh::PathWedgeTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +6701:skgpu::ganesh::PathTessellator::~PathTessellator\28\29 +6702:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29_11645 +6703:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29 +6704:skgpu::ganesh::PathTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +6705:skgpu::ganesh::PathTessellateOp::usesStencil\28\29\20const +6706:skgpu::ganesh::PathTessellateOp::onPrepare\28GrOpFlushState*\29 +6707:skgpu::ganesh::PathTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6708:skgpu::ganesh::PathTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6709:skgpu::ganesh::PathTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6710:skgpu::ganesh::PathTessellateOp::name\28\29\20const +6711:skgpu::ganesh::PathTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6712:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29_11628 +6713:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29 +6714:skgpu::ganesh::PathStencilCoverOp::visitProxies\28std::__2::function\20const&\29\20const +6715:skgpu::ganesh::PathStencilCoverOp::onPrepare\28GrOpFlushState*\29 +6716:skgpu::ganesh::PathStencilCoverOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6717:skgpu::ganesh::PathStencilCoverOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6718:skgpu::ganesh::PathStencilCoverOp::name\28\29\20const +6719:skgpu::ganesh::PathStencilCoverOp::fixedFunctionFlags\28\29\20const +6720:skgpu::ganesh::PathStencilCoverOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6721:skgpu::ganesh::PathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +6722:skgpu::ganesh::PathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +6723:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29_11604 +6724:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29 +6725:skgpu::ganesh::PathInnerTriangulateOp::visitProxies\28std::__2::function\20const&\29\20const +6726:skgpu::ganesh::PathInnerTriangulateOp::onPrepare\28GrOpFlushState*\29 +6727:skgpu::ganesh::PathInnerTriangulateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6728:skgpu::ganesh::PathInnerTriangulateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6729:skgpu::ganesh::PathInnerTriangulateOp::name\28\29\20const +6730:skgpu::ganesh::PathInnerTriangulateOp::fixedFunctionFlags\28\29\20const +6731:skgpu::ganesh::PathInnerTriangulateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6732:skgpu::ganesh::PathCurveTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +6733:skgpu::ganesh::OpsTask::~OpsTask\28\29_11543 +6734:skgpu::ganesh::OpsTask::onPrepare\28GrOpFlushState*\29 +6735:skgpu::ganesh::OpsTask::onPrePrepare\28GrRecordingContext*\29 +6736:skgpu::ganesh::OpsTask::onMakeSkippable\28\29 +6737:skgpu::ganesh::OpsTask::onIsUsed\28GrSurfaceProxy*\29\20const +6738:skgpu::ganesh::OpsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +6739:skgpu::ganesh::OpsTask::endFlush\28GrDrawingManager*\29 +6740:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29_11515 +6741:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::visitProxies\28std::__2::function\20const&\29\20const +6742:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onPrepareDraws\28GrMeshDrawTarget*\29 +6743:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6744:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6745:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6746:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::name\28\29\20const +6747:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6748:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29_11527 +6749:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29 +6750:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::onTextureSampler\28int\29\20const +6751:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::name\28\29\20const +6752:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +6753:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +6754:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +6755:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +6756:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29_11303 +6757:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29 +6758:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +6759:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +6760:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6761:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6762:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6763:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::name\28\29\20const +6764:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6765:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::clipToShape\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkClipOp\2c\20SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\29 +6766:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29_11320 +6767:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29 +6768:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::name\28\29\20const +6769:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +6770:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +6771:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +6772:skgpu::ganesh::DrawableOp::~DrawableOp\28\29_11293 +6773:skgpu::ganesh::DrawableOp::~DrawableOp\28\29 +6774:skgpu::ganesh::DrawableOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6775:skgpu::ganesh::DrawableOp::name\28\29\20const +6776:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29_11196 +6777:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29 +6778:skgpu::ganesh::DrawAtlasPathOp::visitProxies\28std::__2::function\20const&\29\20const +6779:skgpu::ganesh::DrawAtlasPathOp::onPrepare\28GrOpFlushState*\29 +6780:skgpu::ganesh::DrawAtlasPathOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6781:skgpu::ganesh::DrawAtlasPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6782:skgpu::ganesh::DrawAtlasPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6783:skgpu::ganesh::DrawAtlasPathOp::name\28\29\20const +6784:skgpu::ganesh::DrawAtlasPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6785:skgpu::ganesh::Device::~Device\28\29_8748 +6786:skgpu::ganesh::Device::~Device\28\29 +6787:skgpu::ganesh::Device::strikeDeviceInfo\28\29\20const +6788:skgpu::ganesh::Device::snapSpecial\28SkIRect\20const&\2c\20bool\29 +6789:skgpu::ganesh::Device::snapSpecialScaled\28SkIRect\20const&\2c\20SkISize\20const&\29 +6790:skgpu::ganesh::Device::replaceClip\28SkIRect\20const&\29 +6791:skgpu::ganesh::Device::pushClipStack\28\29 +6792:skgpu::ganesh::Device::popClipStack\28\29 +6793:skgpu::ganesh::Device::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +6794:skgpu::ganesh::Device::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +6795:skgpu::ganesh::Device::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +6796:skgpu::ganesh::Device::onClipShader\28sk_sp\29 +6797:skgpu::ganesh::Device::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +6798:skgpu::ganesh::Device::isClipWideOpen\28\29\20const +6799:skgpu::ganesh::Device::isClipRect\28\29\20const +6800:skgpu::ganesh::Device::isClipEmpty\28\29\20const +6801:skgpu::ganesh::Device::isClipAntiAliased\28\29\20const +6802:skgpu::ganesh::Device::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +6803:skgpu::ganesh::Device::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +6804:skgpu::ganesh::Device::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +6805:skgpu::ganesh::Device::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +6806:skgpu::ganesh::Device::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +6807:skgpu::ganesh::Device::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +6808:skgpu::ganesh::Device::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +6809:skgpu::ganesh::Device::drawPaint\28SkPaint\20const&\29 +6810:skgpu::ganesh::Device::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +6811:skgpu::ganesh::Device::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +6812:skgpu::ganesh::Device::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +6813:skgpu::ganesh::Device::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +6814:skgpu::ganesh::Device::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +6815:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +6816:skgpu::ganesh::Device::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +6817:skgpu::ganesh::Device::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +6818:skgpu::ganesh::Device::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +6819:skgpu::ganesh::Device::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +6820:skgpu::ganesh::Device::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +6821:skgpu::ganesh::Device::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +6822:skgpu::ganesh::Device::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +6823:skgpu::ganesh::Device::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +6824:skgpu::ganesh::Device::devClipBounds\28\29\20const +6825:skgpu::ganesh::Device::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +6826:skgpu::ganesh::Device::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +6827:skgpu::ganesh::Device::convertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +6828:skgpu::ganesh::Device::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +6829:skgpu::ganesh::Device::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +6830:skgpu::ganesh::Device::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +6831:skgpu::ganesh::Device::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +6832:skgpu::ganesh::Device::baseRecorder\28\29\20const +6833:skgpu::ganesh::Device::android_utils_clipWithStencil\28\29 +6834:skgpu::ganesh::DefaultPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +6835:skgpu::ganesh::DefaultPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +6836:skgpu::ganesh::DefaultPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6837:skgpu::ganesh::DefaultPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6838:skgpu::ganesh::DefaultPathRenderer::name\28\29\20const +6839:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::name\28\29\20const +6840:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +6841:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +6842:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +6843:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::name\28\29\20const +6844:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +6845:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +6846:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +6847:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29_11119 +6848:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29 +6849:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::visitProxies\28std::__2::function\20const&\29\20const +6850:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::programInfo\28\29 +6851:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +6852:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6853:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6854:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6855:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::name\28\29\20const +6856:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::fixedFunctionFlags\28\29\20const +6857:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6858:skgpu::ganesh::DashLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6859:skgpu::ganesh::DashLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6860:skgpu::ganesh::DashLinePathRenderer::name\28\29\20const +6861:skgpu::ganesh::ClipStack::~ClipStack\28\29_8709 +6862:skgpu::ganesh::ClipStack::preApply\28SkRect\20const&\2c\20GrAA\29\20const +6863:skgpu::ganesh::ClipStack::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +6864:skgpu::ganesh::ClearOp::~ClearOp\28\29 +6865:skgpu::ganesh::ClearOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6866:skgpu::ganesh::ClearOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6867:skgpu::ganesh::ClearOp::name\28\29\20const +6868:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29_11091 +6869:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29 +6870:skgpu::ganesh::AtlasTextOp::visitProxies\28std::__2::function\20const&\29\20const +6871:skgpu::ganesh::AtlasTextOp::onPrepareDraws\28GrMeshDrawTarget*\29 +6872:skgpu::ganesh::AtlasTextOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +6873:skgpu::ganesh::AtlasTextOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +6874:skgpu::ganesh::AtlasTextOp::name\28\29\20const +6875:skgpu::ganesh::AtlasTextOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +6876:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29_11071 +6877:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29 +6878:skgpu::ganesh::AtlasRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +6879:skgpu::ganesh::AtlasRenderTask::onExecute\28GrOpFlushState*\29 +6880:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11035 +6881:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +6882:skgpu::ganesh::AtlasPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6883:skgpu::ganesh::AtlasPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6884:skgpu::ganesh::AtlasPathRenderer::name\28\29\20const +6885:skgpu::ganesh::AALinearizingConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6886:skgpu::ganesh::AALinearizingConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6887:skgpu::ganesh::AALinearizingConvexPathRenderer::name\28\29\20const +6888:skgpu::ganesh::AAHairLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6889:skgpu::ganesh::AAHairLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6890:skgpu::ganesh::AAHairLinePathRenderer::name\28\29\20const +6891:skgpu::ganesh::AAConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +6892:skgpu::ganesh::AAConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +6893:skgpu::ganesh::AAConvexPathRenderer::name\28\29\20const +6894:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29_10193 +6895:skgpu::TAsyncReadResult::rowBytes\28int\29\20const +6896:skgpu::TAsyncReadResult::data\28int\29\20const +6897:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29_9621 +6898:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29 +6899:skgpu::StringKeyBuilder::appendComment\28char\20const*\29 +6900:skgpu::StringKeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +6901:skgpu::ShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\2c\20bool\29 +6902:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29_12571 +6903:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29 +6904:skgpu::RectanizerSkyline::reset\28\29 +6905:skgpu::RectanizerSkyline::percentFull\28\29\20const +6906:skgpu::RectanizerPow2::reset\28\29 +6907:skgpu::RectanizerPow2::percentFull\28\29\20const +6908:skgpu::RectanizerPow2::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +6909:skgpu::Plot::~Plot\28\29_12546 +6910:skgpu::Plot::~Plot\28\29 +6911:skgpu::KeyBuilder::~KeyBuilder\28\29 +6912:skgpu::KeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +6913:skgpu::DefaultShaderErrorHandler\28\29::DefaultShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\29 +6914:skcpu::bw_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +6915:skcpu::bw_pt_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +6916:skcpu::bw_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +6917:skcpu::bw_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +6918:skcpu::aa_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +6919:skcpu::aa_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +6920:skcpu::aa_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +6921:skcpu::Draw::~Draw\28\29 +6922:skcpu::Draw::paintMasks\28SkZip\2c\20SkPaint\20const&\29\20const +6923:sk_write_fn\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20long\29 +6924:sk_sp*\20emscripten::internal::MemberAccess>::getWire\28sk_sp\20SimpleImageInfo::*\20const&\2c\20SimpleImageInfo&\29 +6925:sk_read_user_chunk\28png_struct_def*\2c\20png_unknown_chunk_t*\29 +6926:sk_mmap_releaseproc\28void\20const*\2c\20void*\29 +6927:sk_ft_stream_io\28FT_StreamRec_*\2c\20unsigned\20long\2c\20unsigned\20char*\2c\20unsigned\20long\29 +6928:sk_ft_realloc\28FT_MemoryRec_*\2c\20long\2c\20long\2c\20void*\29 +6929:sk_ft_free\28FT_MemoryRec_*\2c\20void*\29 +6930:sk_ft_alloc\28FT_MemoryRec_*\2c\20long\29 +6931:sk_error_fn\28png_struct_def*\2c\20char\20const*\29_13057 +6932:sk_error_fn\28png_struct_def*\2c\20char\20const*\29 +6933:sfnt_table_info +6934:sfnt_load_face +6935:sfnt_is_postscript +6936:sfnt_is_alphanumeric +6937:sfnt_init_face +6938:sfnt_get_ps_name +6939:sfnt_get_name_index +6940:sfnt_get_name_id +6941:sfnt_get_interface +6942:sfnt_get_glyph_name +6943:sfnt_get_charset_id +6944:sfnt_done_face +6945:setup_syllables_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6946:setup_syllables_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6947:setup_syllables_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6948:setup_syllables_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6949:setup_masks_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +6950:setup_masks_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +6951:setup_masks_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +6952:setup_masks_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +6953:setup_masks_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +6954:setup_masks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +6955:sep_upsample +6956:self_destruct +6957:save_marker +6958:sample8\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6959:sample6\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6960:sample4\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6961:sample2\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6962:sample1\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +6963:rgb_rgb_convert +6964:rgb_rgb565_convert +6965:rgb_rgb565D_convert +6966:rgb_gray_convert +6967:reverse_hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +6968:reverse_hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +6969:reset_marker_reader +6970:reset_input_controller +6971:reset_error_mgr +6972:request_virt_sarray +6973:request_virt_barray +6974:reorder_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6975:reorder_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6976:reorder_marks_hebrew\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6977:reorder_marks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +6978:reorder_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6979:release_data\28void*\2c\20void*\29 +6980:record_stch\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6981:record_rphf_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6982:record_pref_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +6983:realize_virt_arrays +6984:read_restart_marker +6985:read_markers +6986:read_data_from_FT_Stream +6987:quantize_ord_dither +6988:quantize_fs_dither +6989:quantize3_ord_dither +6990:psnames_get_service +6991:pshinter_get_t2_funcs +6992:pshinter_get_t1_funcs +6993:pshinter_get_globals_funcs +6994:psh_globals_new +6995:psh_globals_destroy +6996:psaux_get_glyph_name +6997:ps_table_release +6998:ps_table_new +6999:ps_table_done +7000:ps_table_add +7001:ps_property_set +7002:ps_property_get +7003:ps_parser_to_token_array +7004:ps_parser_to_int +7005:ps_parser_to_fixed_array +7006:ps_parser_to_fixed +7007:ps_parser_to_coord_array +7008:ps_parser_to_bytes +7009:ps_parser_skip_spaces +7010:ps_parser_load_field_table +7011:ps_parser_init +7012:ps_hints_t2mask +7013:ps_hints_t2counter +7014:ps_hints_t1stem3 +7015:ps_hints_t1reset +7016:ps_hints_close +7017:ps_hints_apply +7018:ps_hinter_init +7019:ps_hinter_done +7020:ps_get_standard_strings +7021:ps_get_macintosh_name +7022:ps_decoder_init +7023:ps_builder_init +7024:progress_monitor\28jpeg_common_struct*\29 +7025:process_data_simple_main +7026:process_data_crank_post +7027:process_data_context_main +7028:prescan_quantize +7029:preprocess_text_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7030:preprocess_text_thai\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7031:preprocess_text_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7032:preprocess_text_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7033:prepare_for_output_pass +7034:premultiply_data +7035:premul_rgb\28SkRGBA4f<\28SkAlphaType\292>\29 +7036:premul_polar\28SkRGBA4f<\28SkAlphaType\292>\29 +7037:postprocess_glyphs_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7038:post_process_prepass +7039:post_process_2pass +7040:post_process_1pass +7041:portable::xy_to_unit_angle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7042:portable::xy_to_radius\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7043:portable::xy_to_2pt_conical_well_behaved\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7044:portable::xy_to_2pt_conical_strip\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7045:portable::xy_to_2pt_conical_smaller\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7046:portable::xy_to_2pt_conical_greater\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7047:portable::xy_to_2pt_conical_focal_on_circle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7048:portable::xor_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7049:portable::white_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7050:portable::unpremul_polar\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7051:portable::unpremul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7052:portable::uniform_color_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7053:portable::trace_var\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7054:portable::trace_scope\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7055:portable::trace_line\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7056:portable::trace_exit\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7057:portable::trace_enter\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7058:portable::tan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7059:portable::swizzle_copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7060:portable::swizzle_copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7061:portable::swizzle_copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7062:portable::swizzle_copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7063:portable::swizzle_copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7064:portable::swizzle_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7065:portable::swizzle_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7066:portable::swizzle_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7067:portable::swizzle_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7068:portable::swizzle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7069:portable::swap_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7070:portable::swap_rb_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7071:portable::swap_rb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7072:portable::sub_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7073:portable::sub_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7074:portable::sub_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7075:portable::sub_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7076:portable::sub_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7077:portable::sub_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7078:portable::sub_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7079:portable::sub_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7080:portable::sub_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7081:portable::sub_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7082:portable::store_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7083:portable::store_src_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7084:portable::store_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7085:portable::store_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7086:portable::store_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7087:portable::store_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7088:portable::store_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7089:portable::store_r8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7090:portable::store_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7091:portable::store_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7092:portable::store_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7093:portable::store_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7094:portable::store_device_xy01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7095:portable::store_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7096:portable::store_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7097:portable::store_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7098:portable::store_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7099:portable::store_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7100:portable::store_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7101:portable::store_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7102:portable::store_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7103:portable::store_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7104:portable::store_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7105:portable::store_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7106:portable::store_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7107:portable::start_pipeline\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkRasterPipelineStage*\2c\20SkSpan\2c\20unsigned\20char*\29 +7108:portable::stack_rewind\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7109:portable::stack_checkpoint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7110:portable::srcover_rgba_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7111:portable::srcover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7112:portable::srcout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7113:portable::srcin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7114:portable::srcatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7115:portable::sqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7116:portable::splat_4_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7117:portable::splat_3_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7118:portable::splat_2_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7119:portable::softlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7120:portable::smoothstep_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7121:portable::sin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7122:portable::shuffle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7123:portable::set_base_pointer\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7124:portable::seed_shader\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7125:portable::screen\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7126:portable::scale_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7127:portable::scale_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7128:portable::scale_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7129:portable::scale_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7130:portable::saturation\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7131:portable::rgb_to_hsl\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7132:portable::repeat_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7133:portable::repeat_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7134:portable::repeat_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7135:portable::refract_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7136:portable::reenable_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7137:portable::rect_memset64\28unsigned\20long\20long*\2c\20unsigned\20long\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +7138:portable::rect_memset32\28unsigned\20int*\2c\20unsigned\20int\2c\20int\2c\20unsigned\20long\2c\20int\29 +7139:portable::rect_memset16\28unsigned\20short*\2c\20unsigned\20short\2c\20int\2c\20unsigned\20long\2c\20int\29 +7140:portable::premul_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7141:portable::premul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7142:portable::pow_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7143:portable::plus_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7144:portable::perlin_noise\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7145:portable::parametric\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7146:portable::overlay\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7147:portable::ootf\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7148:portable::negate_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7149:portable::multiply\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7150:portable::mul_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7151:portable::mul_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7152:portable::mul_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7153:portable::mul_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7154:portable::mul_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7155:portable::mul_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7156:portable::mul_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7157:portable::mul_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7158:portable::mul_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7159:portable::mul_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7160:portable::mul_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7161:portable::mul_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7162:portable::move_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7163:portable::move_dst_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7164:portable::modulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7165:portable::mod_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7166:portable::mod_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7167:portable::mod_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7168:portable::mod_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7169:portable::mod_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7170:portable::mix_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7171:portable::mix_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7172:portable::mix_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7173:portable::mix_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7174:portable::mix_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7175:portable::mix_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7176:portable::mix_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7177:portable::mix_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7178:portable::mix_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7179:portable::mix_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7180:portable::mirror_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7181:portable::mirror_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7182:portable::mirror_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7183:portable::mipmap_linear_update\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7184:portable::mipmap_linear_init\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7185:portable::mipmap_linear_finish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7186:portable::min_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7187:portable::min_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7188:portable::min_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7189:portable::min_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7190:portable::min_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7191:portable::min_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7192:portable::min_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7193:portable::min_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7194:portable::min_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7195:portable::min_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7196:portable::min_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7197:portable::min_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7198:portable::min_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7199:portable::min_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7200:portable::min_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7201:portable::min_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7202:portable::merge_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7203:portable::merge_inv_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7204:portable::merge_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7205:portable::memset32\28unsigned\20int*\2c\20unsigned\20int\2c\20int\29 +7206:portable::memset16\28unsigned\20short*\2c\20unsigned\20short\2c\20int\29 +7207:portable::max_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7208:portable::max_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7209:portable::max_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7210:portable::max_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7211:portable::max_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7212:portable::max_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7213:portable::max_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7214:portable::max_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7215:portable::max_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7216:portable::max_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7217:portable::max_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7218:portable::max_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7219:portable::max_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7220:portable::max_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7221:portable::max_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7222:portable::max_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7223:portable::matrix_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7224:portable::matrix_scale_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7225:portable::matrix_perspective\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7226:portable::matrix_multiply_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7227:portable::matrix_multiply_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7228:portable::matrix_multiply_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7229:portable::matrix_4x5\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7230:portable::matrix_4x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7231:portable::matrix_3x4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7232:portable::matrix_3x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7233:portable::matrix_2x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7234:portable::mask_off_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7235:portable::mask_off_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7236:portable::mask_2pt_conical_nan\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7237:portable::mask_2pt_conical_degenerates\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7238:portable::luminosity\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7239:portable::log_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7240:portable::log2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7241:portable::load_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7242:portable::load_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7243:portable::load_rgf16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7244:portable::load_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7245:portable::load_rg88_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7246:portable::load_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7247:portable::load_rg1616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7248:portable::load_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7249:portable::load_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7250:portable::load_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7251:portable::load_f32_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7252:portable::load_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7253:portable::load_f16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7254:portable::load_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7255:portable::load_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7256:portable::load_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7257:portable::load_af16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7258:portable::load_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7259:portable::load_a8_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7260:portable::load_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7261:portable::load_a16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7262:portable::load_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7263:portable::load_8888_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7264:portable::load_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7265:portable::load_565_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7266:portable::load_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7267:portable::load_4444_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7268:portable::load_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7269:portable::load_16161616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7270:portable::load_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7271:portable::load_10x6_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7272:portable::load_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7273:portable::load_1010102_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7274:portable::load_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7275:portable::load_1010102_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7276:portable::load_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7277:portable::load_10101010_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7278:portable::load_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7279:portable::lighten\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7280:portable::lerp_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7281:portable::lerp_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7282:portable::lerp_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7283:portable::lerp_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7284:portable::just_return\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7285:portable::jump\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7286:portable::invsqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7287:portable::invsqrt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7288:portable::invsqrt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7289:portable::invsqrt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7290:portable::inverted_CMYK_to_RGB1\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +7291:portable::inverted_CMYK_to_BGR1\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +7292:portable::inverse_mat4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7293:portable::inverse_mat3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7294:portable::inverse_mat2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7295:portable::init_lane_masks\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7296:portable::hue\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7297:portable::hsl_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7298:portable::hardlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7299:portable::gray_to_RGB1\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7300:portable::grayA_to_rgbA\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7301:portable::grayA_to_RGBA\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7302:portable::gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7303:portable::gauss_a_to_rgba\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7304:portable::gather_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7305:portable::gather_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7306:portable::gather_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7307:portable::gather_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7308:portable::gather_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7309:portable::gather_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7310:portable::gather_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7311:portable::gather_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7312:portable::gather_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7313:portable::gather_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7314:portable::gather_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7315:portable::gather_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7316:portable::gather_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7317:portable::gather_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7318:portable::gather_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7319:portable::gather_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7320:portable::gamma_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7321:portable::force_opaque_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7322:portable::force_opaque\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7323:portable::floor_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7324:portable::floor_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7325:portable::floor_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7326:portable::floor_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7327:portable::exp_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7328:portable::exp2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7329:portable::exclusion\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7330:portable::exchange_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7331:portable::evenly_spaced_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7332:portable::evenly_spaced_2_stop_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7333:portable::emboss\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7334:portable::dstover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7335:portable::dstout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7336:portable::dstin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7337:portable::dstatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7338:portable::dot_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7339:portable::dot_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7340:portable::dot_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7341:portable::div_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7342:portable::div_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7343:portable::div_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7344:portable::div_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7345:portable::div_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7346:portable::div_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7347:portable::div_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7348:portable::div_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7349:portable::div_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7350:portable::div_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7351:portable::div_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7352:portable::div_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7353:portable::div_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7354:portable::div_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7355:portable::div_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7356:portable::dither\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7357:portable::difference\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7358:portable::decal_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7359:portable::decal_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7360:portable::decal_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7361:portable::debug_r_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7362:portable::debug_g_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7363:portable::debug_b_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7364:portable::debug_b\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7365:portable::debug_a_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7366:portable::debug_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7367:portable::darken\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7368:portable::css_oklab_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7369:portable::css_oklab_gamut_map_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7370:portable::css_lab_to_xyz\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7371:portable::css_hwb_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7372:portable::css_hsl_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7373:portable::css_hcl_to_lab\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7374:portable::cos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7375:portable::copy_uniform\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7376:portable::copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7377:portable::copy_slot_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7378:portable::copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7379:portable::copy_immutable_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7380:portable::copy_constant\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7381:portable::copy_4_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7382:portable::copy_4_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7383:portable::copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7384:portable::copy_4_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7385:portable::copy_3_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7386:portable::copy_3_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7387:portable::copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7388:portable::copy_3_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7389:portable::copy_2_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7390:portable::copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7391:portable::continue_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7392:portable::colordodge\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7393:portable::colorburn\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7394:portable::color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7395:portable::cmpne_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7396:portable::cmpne_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7397:portable::cmpne_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7398:portable::cmpne_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7399:portable::cmpne_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7400:portable::cmpne_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7401:portable::cmpne_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7402:portable::cmpne_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7403:portable::cmpne_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7404:portable::cmpne_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7405:portable::cmpne_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7406:portable::cmpne_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7407:portable::cmplt_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7408:portable::cmplt_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7409:portable::cmplt_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7410:portable::cmplt_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7411:portable::cmplt_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7412:portable::cmplt_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7413:portable::cmplt_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7414:portable::cmplt_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7415:portable::cmplt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7416:portable::cmplt_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7417:portable::cmplt_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7418:portable::cmplt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7419:portable::cmplt_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7420:portable::cmplt_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7421:portable::cmplt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7422:portable::cmplt_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7423:portable::cmplt_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7424:portable::cmplt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7425:portable::cmple_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7426:portable::cmple_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7427:portable::cmple_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7428:portable::cmple_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7429:portable::cmple_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7430:portable::cmple_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7431:portable::cmple_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7432:portable::cmple_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7433:portable::cmple_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7434:portable::cmple_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7435:portable::cmple_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7436:portable::cmple_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7437:portable::cmple_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7438:portable::cmple_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7439:portable::cmple_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7440:portable::cmple_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7441:portable::cmple_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7442:portable::cmple_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7443:portable::cmpeq_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7444:portable::cmpeq_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7445:portable::cmpeq_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7446:portable::cmpeq_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7447:portable::cmpeq_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7448:portable::cmpeq_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7449:portable::cmpeq_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7450:portable::cmpeq_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7451:portable::cmpeq_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7452:portable::cmpeq_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7453:portable::cmpeq_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7454:portable::cmpeq_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7455:portable::clear\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7456:portable::clamp_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7457:portable::clamp_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7458:portable::clamp_gamut\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7459:portable::clamp_a_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7460:portable::clamp_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7461:portable::ceil_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7462:portable::ceil_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7463:portable::ceil_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7464:portable::ceil_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7465:portable::cast_to_uint_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7466:portable::cast_to_uint_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7467:portable::cast_to_uint_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7468:portable::cast_to_uint_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7469:portable::cast_to_int_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7470:portable::cast_to_int_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7471:portable::cast_to_int_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7472:portable::cast_to_int_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7473:portable::cast_to_float_from_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7474:portable::cast_to_float_from_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7475:portable::cast_to_float_from_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7476:portable::cast_to_float_from_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7477:portable::cast_to_float_from_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7478:portable::cast_to_float_from_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7479:portable::cast_to_float_from_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7480:portable::cast_to_float_from_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7481:portable::case_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7482:portable::callback\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7483:portable::byte_tables\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7484:portable::bt709_luminance_or_luma_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7485:portable::bt709_luminance_or_luma_to_alpha\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7486:portable::branch_if_no_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7487:portable::branch_if_no_active_lanes_eq\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7488:portable::branch_if_any_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7489:portable::branch_if_all_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7490:portable::blit_row_s32a_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +7491:portable::black_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7492:portable::bitwise_xor_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7493:portable::bitwise_xor_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7494:portable::bitwise_xor_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7495:portable::bitwise_xor_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7496:portable::bitwise_xor_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7497:portable::bitwise_xor_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7498:portable::bitwise_or_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7499:portable::bitwise_or_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7500:portable::bitwise_or_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7501:portable::bitwise_or_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7502:portable::bitwise_or_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7503:portable::bitwise_and_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7504:portable::bitwise_and_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7505:portable::bitwise_and_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7506:portable::bitwise_and_imm_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7507:portable::bitwise_and_imm_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7508:portable::bitwise_and_imm_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7509:portable::bitwise_and_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7510:portable::bitwise_and_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7511:portable::bitwise_and_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7512:portable::bilinear_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7513:portable::bilinear_py\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7514:portable::bilinear_px\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7515:portable::bilinear_ny\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7516:portable::bilinear_nx\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7517:portable::bicubic_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7518:portable::bicubic_p3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7519:portable::bicubic_p3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7520:portable::bicubic_p1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7521:portable::bicubic_p1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7522:portable::bicubic_n3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7523:portable::bicubic_n3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7524:portable::bicubic_n1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7525:portable::bicubic_n1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7526:portable::bicubic_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7527:portable::atan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7528:portable::atan2_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7529:portable::asin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7530:portable::alter_2pt_conical_unswap\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7531:portable::alter_2pt_conical_compensate_focal\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7532:portable::alpha_to_red_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7533:portable::alpha_to_red\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7534:portable::alpha_to_gray_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7535:portable::alpha_to_gray\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7536:portable::add_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7537:portable::add_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7538:portable::add_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7539:portable::add_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7540:portable::add_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7541:portable::add_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7542:portable::add_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7543:portable::add_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7544:portable::add_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7545:portable::add_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7546:portable::add_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7547:portable::add_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7548:portable::acos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7549:portable::accumulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7550:portable::abs_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7551:portable::abs_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7552:portable::abs_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7553:portable::abs_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7554:portable::RGB_to_RGB1\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7555:portable::RGB_to_BGR1\28unsigned\20int*\2c\20unsigned\20char\20const*\2c\20int\29 +7556:portable::RGBA_to_rgbA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +7557:portable::RGBA_to_bgrA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +7558:portable::RGBA_to_BGRA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +7559:portable::PQish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7560:portable::HLGish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7561:portable::HLGinvish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +7562:pop_arg_long_double +7563:png_read_filter_row_up +7564:png_read_filter_row_sub +7565:png_read_filter_row_paeth_multibyte_pixel +7566:png_read_filter_row_paeth_1byte_pixel +7567:png_read_filter_row_avg +7568:pass2_no_dither +7569:pass2_fs_dither +7570:override_features_khmer\28hb_ot_shape_planner_t*\29 +7571:override_features_indic\28hb_ot_shape_planner_t*\29 +7572:override_features_hangul\28hb_ot_shape_planner_t*\29 +7573:output_message +7574:operator\20delete\28void*\2c\20unsigned\20long\29 +7575:null_convert +7576:noop_upsample +7577:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_16385 +7578:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +7579:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_16311 +7580:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +7581:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10870 +7582:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10869 +7583:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_10867 +7584:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +7585:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +7586:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +7587:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_11709 +7588:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +7589:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +7590:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11039 +7591:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +7592:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +7593:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10015 +7594:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +7595:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +7596:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +7597:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +7598:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +7599:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29_9540 +7600:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29 +7601:non-virtual\20thunk\20to\20GrOpFlushState::writeView\28\29\20const +7602:non-virtual\20thunk\20to\20GrOpFlushState::usesMSAASurface\28\29\20const +7603:non-virtual\20thunk\20to\20GrOpFlushState::threadSafeCache\28\29\20const +7604:non-virtual\20thunk\20to\20GrOpFlushState::strikeCache\28\29\20const +7605:non-virtual\20thunk\20to\20GrOpFlushState::smallPathAtlasManager\28\29\20const +7606:non-virtual\20thunk\20to\20GrOpFlushState::sampledProxyArray\28\29 +7607:non-virtual\20thunk\20to\20GrOpFlushState::rtProxy\28\29\20const +7608:non-virtual\20thunk\20to\20GrOpFlushState::resourceProvider\28\29\20const +7609:non-virtual\20thunk\20to\20GrOpFlushState::renderPassBarriers\28\29\20const +7610:non-virtual\20thunk\20to\20GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +7611:non-virtual\20thunk\20to\20GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +7612:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndirectDraws\28int\29 +7613:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndices\28int\29 +7614:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +7615:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +7616:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +7617:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +7618:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +7619:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +7620:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +7621:non-virtual\20thunk\20to\20GrOpFlushState::dstProxyView\28\29\20const +7622:non-virtual\20thunk\20to\20GrOpFlushState::detachAppliedClip\28\29 +7623:non-virtual\20thunk\20to\20GrOpFlushState::deferredUploadTarget\28\29 +7624:non-virtual\20thunk\20to\20GrOpFlushState::colorLoadOp\28\29\20const +7625:non-virtual\20thunk\20to\20GrOpFlushState::caps\28\29\20const +7626:non-virtual\20thunk\20to\20GrOpFlushState::atlasManager\28\29\20const +7627:non-virtual\20thunk\20to\20GrOpFlushState::appliedClip\28\29\20const +7628:non-virtual\20thunk\20to\20GrGpuBuffer::~GrGpuBuffer\28\29 +7629:non-virtual\20thunk\20to\20GrGpuBuffer::unref\28\29\20const +7630:non-virtual\20thunk\20to\20GrGpuBuffer::ref\28\29\20const +7631:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12480 +7632:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +7633:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onSetLabel\28\29 +7634:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +7635:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +7636:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +7637:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +7638:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::backendFormat\28\29\20const +7639:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_10760 +7640:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +7641:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +7642:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +7643:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::dstColor\28\29 +7644:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29_12120 +7645:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29 +7646:new_color_map_2_quant +7647:new_color_map_1_quant +7648:merged_2v_upsample +7649:merged_1v_upsample +7650:lin_srgb_to_oklab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +7651:lin_srgb_to_okhcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +7652:legalstub$dynCall_vijiii +7653:legalstub$dynCall_viji +7654:legalstub$dynCall_vij +7655:legalstub$dynCall_viijii +7656:legalstub$dynCall_viiiiij +7657:legalstub$dynCall_jiji +7658:legalstub$dynCall_jiiiiji +7659:legalstub$dynCall_jiiiiii +7660:legalstub$dynCall_jii +7661:legalstub$dynCall_ji +7662:legalstub$dynCall_iijj +7663:legalstub$dynCall_iiiiijj +7664:legalstub$dynCall_iiiiij +7665:legalstub$dynCall_iiiiiijj +7666:lcd_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +7667:jpeg_start_output +7668:jpeg_start_decompress +7669:jpeg_skip_scanlines +7670:jpeg_save_markers +7671:jpeg_resync_to_restart +7672:jpeg_read_scanlines +7673:jpeg_read_raw_data +7674:jpeg_read_header +7675:jpeg_input_complete +7676:jpeg_idct_islow +7677:jpeg_idct_ifast +7678:jpeg_idct_float +7679:jpeg_idct_9x9 +7680:jpeg_idct_7x7 +7681:jpeg_idct_6x6 +7682:jpeg_idct_5x5 +7683:jpeg_idct_4x4 +7684:jpeg_idct_3x3 +7685:jpeg_idct_2x2 +7686:jpeg_idct_1x1 +7687:jpeg_idct_16x16 +7688:jpeg_idct_15x15 +7689:jpeg_idct_14x14 +7690:jpeg_idct_13x13 +7691:jpeg_idct_12x12 +7692:jpeg_idct_11x11 +7693:jpeg_idct_10x10 +7694:jpeg_finish_output +7695:jpeg_destroy_decompress +7696:jpeg_crop_scanline +7697:is_deleted_glyph\28hb_glyph_info_t\20const*\29 +7698:internal_memalign +7699:int_upsample +7700:initial_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7701:hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +7702:hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +7703:hb_unicode_script_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +7704:hb_unicode_general_category_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +7705:hb_ucd_script\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +7706:hb_ucd_mirroring\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +7707:hb_ucd_general_category\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +7708:hb_ucd_decompose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +7709:hb_ucd_compose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +7710:hb_ucd_combining_class\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +7711:hb_syllabic_clear_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7712:hb_paint_sweep_gradient_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7713:hb_paint_push_transform_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7714:hb_paint_push_clip_rectangle_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7715:hb_paint_image_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +7716:hb_paint_extents_push_transform\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7717:hb_paint_extents_push_group\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +7718:hb_paint_extents_push_clip_rectangle\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7719:hb_paint_extents_push_clip_glyph\28hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_font_t*\2c\20void*\29 +7720:hb_paint_extents_pop_transform\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +7721:hb_paint_extents_pop_group\28hb_paint_funcs_t*\2c\20void*\2c\20hb_paint_composite_mode_t\2c\20void*\29 +7722:hb_paint_extents_pop_clip\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +7723:hb_paint_extents_paint_sweep_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7724:hb_paint_extents_paint_image\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +7725:hb_paint_extents_paint_color\28hb_paint_funcs_t*\2c\20void*\2c\20int\2c\20unsigned\20int\2c\20void*\29 +7726:hb_outline_recording_pen_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7727:hb_outline_recording_pen_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +7728:hb_outline_recording_pen_line_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +7729:hb_outline_recording_pen_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7730:hb_outline_recording_pen_close_path\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +7731:hb_ot_shape_normalize_context_t::decompose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +7732:hb_ot_shape_normalize_context_t::compose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +7733:hb_ot_paint_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +7734:hb_ot_map_t::lookup_map_t::cmp\28void\20const*\2c\20void\20const*\29 +7735:hb_ot_map_t::feature_map_t::cmp\28void\20const*\2c\20void\20const*\29 +7736:hb_ot_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +7737:hb_ot_get_variation_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +7738:hb_ot_get_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +7739:hb_ot_get_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +7740:hb_ot_get_glyph_v_origin\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +7741:hb_ot_get_glyph_v_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +7742:hb_ot_get_glyph_name\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +7743:hb_ot_get_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +7744:hb_ot_get_glyph_from_name\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +7745:hb_ot_get_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +7746:hb_ot_get_font_v_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +7747:hb_ot_get_font_h_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +7748:hb_ot_draw_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +7749:hb_font_paint_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +7750:hb_font_get_variation_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +7751:hb_font_get_nominal_glyphs_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +7752:hb_font_get_nominal_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +7753:hb_font_get_nominal_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +7754:hb_font_get_glyph_v_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +7755:hb_font_get_glyph_v_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +7756:hb_font_get_glyph_v_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +7757:hb_font_get_glyph_v_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +7758:hb_font_get_glyph_v_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +7759:hb_font_get_glyph_v_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +7760:hb_font_get_glyph_name_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +7761:hb_font_get_glyph_name_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +7762:hb_font_get_glyph_h_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +7763:hb_font_get_glyph_h_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +7764:hb_font_get_glyph_h_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +7765:hb_font_get_glyph_h_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +7766:hb_font_get_glyph_h_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +7767:hb_font_get_glyph_h_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +7768:hb_font_get_glyph_from_name_default\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +7769:hb_font_get_glyph_extents_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +7770:hb_font_get_glyph_extents_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +7771:hb_font_get_glyph_contour_point_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +7772:hb_font_get_glyph_contour_point_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +7773:hb_font_get_font_v_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +7774:hb_font_get_font_h_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +7775:hb_font_draw_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +7776:hb_draw_quadratic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7777:hb_draw_quadratic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7778:hb_draw_move_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +7779:hb_draw_line_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +7780:hb_draw_extents_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7781:hb_draw_extents_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7782:hb_draw_cubic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +7783:hb_draw_close_path_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +7784:hb_blob_t*\20hb_sanitize_context_t::sanitize_blob\28hb_blob_t*\29 +7785:hb_aat_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +7786:hb_aat_map_builder_t::feature_event_t::cmp\28void\20const*\2c\20void\20const*\29 +7787:h2v2_upsample +7788:h2v2_merged_upsample_565D +7789:h2v2_merged_upsample_565 +7790:h2v2_merged_upsample +7791:h2v2_fancy_upsample +7792:h2v1_upsample +7793:h2v1_merged_upsample_565D +7794:h2v1_merged_upsample_565 +7795:h2v1_merged_upsample +7796:h2v1_fancy_upsample +7797:grayscale_convert +7798:gray_rgb_convert +7799:gray_rgb565_convert +7800:gray_rgb565D_convert +7801:gray_raster_render +7802:gray_raster_new +7803:gray_raster_done +7804:gray_move_to +7805:gray_line_to +7806:gray_cubic_to +7807:gray_conic_to +7808:get_sk_marker_list\28jpeg_decompress_struct*\29 +7809:get_sfnt_table +7810:get_interesting_appn +7811:fullsize_upsample +7812:ft_smooth_transform +7813:ft_smooth_set_mode +7814:ft_smooth_render +7815:ft_smooth_overlap_spans +7816:ft_smooth_lcd_spans +7817:ft_smooth_init +7818:ft_smooth_get_cbox +7819:ft_gzip_free +7820:ft_gzip_alloc +7821:ft_ansi_stream_io +7822:ft_ansi_stream_close +7823:fquad_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +7824:format_message +7825:fmt_fp +7826:fline_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +7827:first_axis_intersection\28double\20const*\2c\20bool\2c\20double\2c\20double*\29 +7828:finish_pass1 +7829:finish_output_pass +7830:finish_input_pass +7831:final_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +7832:fcubic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +7833:fconic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +7834:fast_swizzle_rgba_to_rgba_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7835:fast_swizzle_rgba_to_bgra_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7836:fast_swizzle_rgba_to_bgra_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7837:fast_swizzle_rgb_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7838:fast_swizzle_rgb_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7839:fast_swizzle_grayalpha_to_n32_unpremul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7840:fast_swizzle_grayalpha_to_n32_premul\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7841:fast_swizzle_gray_to_n32\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7842:fast_swizzle_cmyk_to_rgba\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7843:fast_swizzle_cmyk_to_bgra\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +7844:error_exit +7845:error_callback +7846:emscripten_stack_get_current +7847:emscripten::internal::MethodInvoker\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20void\2c\20SkCanvas*\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&>::invoke\28void\20\28SkCanvas::*\20const&\29\28sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20SkPaint*\29 +7848:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint*\29 +7849:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\2c\20SkPaint*\29 +7850:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\2c\20float\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\29 +7851:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28float\2c\20float\29\2c\20SkCanvas*\2c\20float\2c\20float\29 +7852:emscripten::internal::MethodInvoker::invoke\28void\20\28SkCanvas::*\20const&\29\28SkPath\20const&\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20SkPath*\2c\20SkPaint*\29 +7853:emscripten::internal::MethodInvoker\20\28skia::textlayout::Paragraph::*\29\28unsigned\20int\29\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::Paragraph*\2c\20unsigned\20int>::invoke\28skia::textlayout::SkRange\20\28skia::textlayout::Paragraph::*\20const&\29\28unsigned\20int\29\2c\20skia::textlayout::Paragraph*\2c\20unsigned\20int\29 +7854:emscripten::internal::MethodInvoker::invoke\28skia::textlayout::PositionWithAffinity\20\28skia::textlayout::Paragraph::*\20const&\29\28float\2c\20float\29\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +7855:emscripten::internal::MethodInvoker\20\28SkVertices::Builder::*\29\28\29\2c\20sk_sp\2c\20SkVertices::Builder*>::invoke\28sk_sp\20\28SkVertices::Builder::*\20const&\29\28\29\2c\20SkVertices::Builder*\29 +7856:emscripten::internal::MethodInvoker::invoke\28int\20\28skia::textlayout::Paragraph::*\20const&\29\28unsigned\20long\29\20const\2c\20skia::textlayout::Paragraph\20const*\2c\20unsigned\20long\29 +7857:emscripten::internal::MethodInvoker::invoke\28bool\20\28SkPath::*\20const&\29\28float\2c\20float\29\20const\2c\20SkPath\20const*\2c\20float\2c\20float\29 +7858:emscripten::internal::MethodInvoker::invoke\28SkPath&\20\28SkPath::*\20const&\29\28bool\29\2c\20SkPath*\2c\20bool\29 +7859:emscripten::internal::Invoker::invoke\28SkVertices::Builder*\20\28*\29\28SkVertices::VertexMode&&\2c\20int&&\2c\20int&&\2c\20unsigned\20int&&\29\2c\20SkVertices::VertexMode\2c\20int\2c\20int\2c\20unsigned\20int\29 +7860:emscripten::internal::Invoker&&\2c\20float&&\2c\20float&&\2c\20float&&>::invoke\28SkFont*\20\28*\29\28sk_sp&&\2c\20float&&\2c\20float&&\2c\20float&&\29\2c\20sk_sp*\2c\20float\2c\20float\2c\20float\29 +7861:emscripten::internal::Invoker&&\2c\20float&&>::invoke\28SkFont*\20\28*\29\28sk_sp&&\2c\20float&&\29\2c\20sk_sp*\2c\20float\29 +7862:emscripten::internal::Invoker&&>::invoke\28SkFont*\20\28*\29\28sk_sp&&\29\2c\20sk_sp*\29 +7863:emscripten::internal::Invoker::invoke\28SkContourMeasureIter*\20\28*\29\28SkPath\20const&\2c\20bool&&\2c\20float&&\29\2c\20SkPath*\2c\20bool\2c\20float\29 +7864:emscripten::internal::Invoker::invoke\28SkCanvas*\20\28*\29\28float&&\2c\20float&&\29\2c\20float\2c\20float\29 +7865:emscripten::internal::Invoker::invoke\28void\20\28*\29\28unsigned\20long\2c\20unsigned\20long\29\2c\20unsigned\20long\2c\20unsigned\20long\29 +7866:emscripten::internal::Invoker::invoke\28void\20\28*\29\28emscripten::val\29\2c\20emscripten::_EM_VAL*\29 +7867:emscripten::internal::Invoker::invoke\28unsigned\20long\20\28*\29\28unsigned\20long\29\2c\20unsigned\20long\29 +7868:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont*\29 +7869:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont*\29 +7870:emscripten::internal::Invoker\2c\20sk_sp\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20int\2c\20int\2c\20sk_sp*\2c\20int\2c\20int\29 +7871:emscripten::internal::Invoker\2c\20sk_sp\2c\20int\2c\20int\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\29\2c\20sk_sp*\2c\20int\2c\20int\2c\20sk_sp*\29 +7872:emscripten::internal::Invoker\2c\20sk_sp\2c\20int\2c\20int>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20int\2c\20int\29 +7873:emscripten::internal::Invoker\2c\20sk_sp\2c\20SimpleImageInfo>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20SimpleImageInfo\29\2c\20sk_sp*\2c\20SimpleImageInfo*\29 +7874:emscripten::internal::Invoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\29 +7875:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +7876:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20sk_sp\29\2c\20unsigned\20long\2c\20sk_sp*\29 +7877:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +7878:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +7879:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29\2c\20float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29 +7880:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp*\29 +7881:emscripten::internal::Invoker\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val>::invoke\28sk_sp\20\28*\29\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\2c\20emscripten::_EM_VAL*\29 +7882:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20int\2c\20float>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20int\2c\20float\29\2c\20unsigned\20long\2c\20int\2c\20float\29 +7883:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20SkPath>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20SkPath\29\2c\20unsigned\20long\2c\20SkPath*\29 +7884:emscripten::internal::Invoker\2c\20float\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28float\2c\20unsigned\20long\29\2c\20float\2c\20unsigned\20long\29 +7885:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20unsigned\20int>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20unsigned\20int\29\2c\20float\2c\20float\2c\20unsigned\20int\29 +7886:emscripten::internal::Invoker\2c\20float>::invoke\28sk_sp\20\28*\29\28float\29\2c\20float\29 +7887:emscripten::internal::Invoker\2c\20SkPath\20const&\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style>::invoke\28sk_sp\20\28*\29\28SkPath\20const&\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style\29\2c\20SkPath*\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style\29 +7888:emscripten::internal::Invoker\2c\20SkBlurStyle\2c\20float\2c\20bool>::invoke\28sk_sp\20\28*\29\28SkBlurStyle\2c\20float\2c\20bool\29\2c\20SkBlurStyle\2c\20float\2c\20bool\29 +7889:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20float\2c\20float\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20float\2c\20float\2c\20sk_sp\29\2c\20unsigned\20long\2c\20float\2c\20float\2c\20sk_sp*\29 +7890:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp\29\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp*\29 +7891:emscripten::internal::Invoker\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\29\2c\20sk_sp*\29 +7892:emscripten::internal::Invoker\2c\20sk_sp\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\29 +7893:emscripten::internal::Invoker\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +7894:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20sk_sp\29\2c\20float\2c\20float\2c\20sk_sp*\29 +7895:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp\29\2c\20float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp*\29 +7896:emscripten::internal::Invoker\2c\20float\2c\20float\2c\20SkTileMode\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\29\2c\20float\2c\20float\2c\20SkTileMode\2c\20sk_sp*\29 +7897:emscripten::internal::Invoker\2c\20SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp\2c\20sk_sp\29\2c\20SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp*\2c\20sk_sp*\29 +7898:emscripten::internal::Invoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long>::invoke\28sk_sp\20\28*\29\28SimpleImageInfo\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\29\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\29 +7899:emscripten::internal::Invoker\2c\20SimpleImageInfo\2c\20emscripten::val>::invoke\28sk_sp\20\28*\29\28SimpleImageInfo\2c\20emscripten::val\29\2c\20SimpleImageInfo*\2c\20emscripten::_EM_VAL*\29 +7900:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20unsigned\20long\2c\20int\29\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\29 +7901:emscripten::internal::Invoker>::invoke\28sk_sp\20\28*\29\28\29\29 +7902:emscripten::internal::Invoker\2c\20unsigned\20long\2c\20SkBlendMode\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28unsigned\20long\2c\20SkBlendMode\2c\20sk_sp\29\2c\20unsigned\20long\2c\20SkBlendMode\2c\20sk_sp*\29 +7903:emscripten::internal::Invoker\2c\20sk_sp\20const&\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28sk_sp\20const&\2c\20sk_sp\29\2c\20sk_sp*\2c\20sk_sp*\29 +7904:emscripten::internal::Invoker\2c\20float\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28*\29\28float\2c\20sk_sp\2c\20sk_sp\29\2c\20float\2c\20sk_sp*\2c\20sk_sp*\29 +7905:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28unsigned\20long\2c\20int\29\2c\20unsigned\20long\2c\20int\29 +7906:emscripten::internal::Invoker\2c\20std::__2::allocator>>::invoke\28emscripten::val\20\28*\29\28std::__2::basic_string\2c\20std::__2::allocator>\29\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\29 +7907:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28emscripten::val\2c\20emscripten::val\2c\20float\29\2c\20emscripten::_EM_VAL*\2c\20emscripten::_EM_VAL*\2c\20float\29 +7908:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28SkPath\20const&\2c\20SkPath\20const&\2c\20float\29\2c\20SkPath*\2c\20SkPath*\2c\20float\29 +7909:emscripten::internal::Invoker::invoke\28emscripten::val\20\28*\29\28SkPath\20const&\2c\20SkPath\20const&\2c\20SkPathOp\29\2c\20SkPath*\2c\20SkPath*\2c\20SkPathOp\29 +7910:emscripten::internal::Invoker::invoke\28bool\20\28*\29\28unsigned\20long\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\29\2c\20unsigned\20long\2c\20SkPath*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\29 +7911:emscripten::internal::Invoker\2c\20sk_sp>::invoke\28bool\20\28*\29\28sk_sp\2c\20sk_sp\29\2c\20sk_sp*\2c\20sk_sp*\29 +7912:emscripten::internal::Invoker::invoke\28bool\20\28*\29\28SkPath\20const&\2c\20SkPath\20const&\29\2c\20SkPath*\2c\20SkPath*\29 +7913:emscripten::internal::Invoker\2c\20int\2c\20int>::invoke\28SkRuntimeEffect::TracedShader\20\28*\29\28sk_sp\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20int\2c\20int\29 +7914:emscripten::internal::Invoker::invoke\28SkPath\20\28*\29\28unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +7915:emscripten::internal::FunctionInvoker\2c\20unsigned\20long\29\2c\20void\2c\20skia::textlayout::TypefaceFontProvider&\2c\20sk_sp\2c\20unsigned\20long>::invoke\28void\20\28**\29\28skia::textlayout::TypefaceFontProvider&\2c\20sk_sp\2c\20unsigned\20long\29\2c\20skia::textlayout::TypefaceFontProvider*\2c\20sk_sp*\2c\20unsigned\20long\29 +7916:emscripten::internal::FunctionInvoker\2c\20std::__2::allocator>\29\2c\20void\2c\20skia::textlayout::ParagraphBuilderImpl&\2c\20std::__2::basic_string\2c\20std::__2::allocator>>::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\29 +7917:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20float\2c\20float\2c\20skia::textlayout::PlaceholderAlignment\2c\20skia::textlayout::TextBaseline\2c\20float\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20float\2c\20float\2c\20skia::textlayout::PlaceholderAlignment\2c\20skia::textlayout::TextBaseline\2c\20float\29 +7918:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\2c\20SkPaint\2c\20SkPaint\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20SimpleTextStyle*\2c\20SkPaint*\2c\20SkPaint*\29 +7919:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\29\2c\20skia::textlayout::ParagraphBuilderImpl*\2c\20SimpleTextStyle*\29 +7920:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +7921:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +7922:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +7923:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29 +7924:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7925:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkPath&\2c\20SkPath\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29\2c\20SkPath*\2c\20SkPath*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7926:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkContourMeasure&\2c\20float\2c\20unsigned\20long\29\2c\20SkContourMeasure*\2c\20float\2c\20unsigned\20long\29 +7927:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont*\2c\20SkPaint*\29 +7928:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\2c\20SkPaint*\29 +7929:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +7930:emscripten::internal::FunctionInvoker\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +7931:emscripten::internal::FunctionInvoker\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +7932:emscripten::internal::FunctionInvoker\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20void\2c\20SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*>::invoke\28void\20\28**\29\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29\2c\20SkCanvas*\2c\20sk_sp*\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +7933:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont*\2c\20SkPaint*\29 +7934:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29\2c\20SkCanvas*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint*\29 +7935:emscripten::internal::FunctionInvoker::invoke\28void\20\28**\29\28SkCanvas&\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20int\29\2c\20SkCanvas*\2c\20SkPath*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20int\29 +7936:emscripten::internal::FunctionInvoker\2c\20std::__2::allocator>\20\28*\29\28SkSL::DebugTrace\20const*\29\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::DebugTrace\20const*>::invoke\28std::__2::basic_string\2c\20std::__2::allocator>\20\28**\29\28SkSL::DebugTrace\20const*\29\2c\20SkSL::DebugTrace\20const*\29 +7937:emscripten::internal::FunctionInvoker\20\28*\29\28SkFontMgr&\2c\20unsigned\20long\2c\20int\29\2c\20sk_sp\2c\20SkFontMgr&\2c\20unsigned\20long\2c\20int>::invoke\28sk_sp\20\28**\29\28SkFontMgr&\2c\20unsigned\20long\2c\20int\29\2c\20SkFontMgr*\2c\20unsigned\20long\2c\20int\29 +7938:emscripten::internal::FunctionInvoker\20\28*\29\28SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29\2c\20sk_sp\2c\20SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val>::invoke\28sk_sp\20\28**\29\28SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29\2c\20SkFontMgr*\2c\20emscripten::internal::BindingType\2c\20std::__2::allocator>\2c\20void>::'unnamed'*\2c\20emscripten::_EM_VAL*\29 +7939:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29\2c\20sk_sp\2c\20sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29 +7940:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29\2c\20sk_sp\2c\20sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29\2c\20sk_sp*\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29 +7941:emscripten::internal::FunctionInvoker\20\28*\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SkRuntimeEffect*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +7942:emscripten::internal::FunctionInvoker\20\28*\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29\2c\20SkRuntimeEffect*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29 +7943:emscripten::internal::FunctionInvoker\20\28*\29\28SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29\2c\20SkPicture*\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +7944:emscripten::internal::FunctionInvoker\20\28*\29\28SkPictureRecorder&\29\2c\20sk_sp\2c\20SkPictureRecorder&>::invoke\28sk_sp\20\28**\29\28SkPictureRecorder&\29\2c\20SkPictureRecorder*\29 +7945:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\29\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28**\29\28sk_sp\29\2c\20sk_sp*\29 +7946:emscripten::internal::FunctionInvoker\20\28*\29\28SkSurface&\2c\20unsigned\20long\29\2c\20sk_sp\2c\20SkSurface&\2c\20unsigned\20long>::invoke\28sk_sp\20\28**\29\28SkSurface&\2c\20unsigned\20long\29\2c\20SkSurface*\2c\20unsigned\20long\29 +7947:emscripten::internal::FunctionInvoker\20\28*\29\28SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo\29\2c\20sk_sp\2c\20SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo>::invoke\28sk_sp\20\28**\29\28SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo\29\2c\20SkSurface*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo*\29 +7948:emscripten::internal::FunctionInvoker\20\28*\29\28sk_sp\29\2c\20sk_sp\2c\20sk_sp>::invoke\28sk_sp\20\28**\29\28sk_sp\29\2c\20sk_sp*\29 +7949:emscripten::internal::FunctionInvoker\20\28*\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29\2c\20sk_sp\2c\20SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool>::invoke\28sk_sp\20\28**\29\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29\2c\20SkRuntimeEffect*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +7950:emscripten::internal::FunctionInvoker::invoke\28int\20\28**\29\28SkCanvas&\2c\20SkPaint\29\2c\20SkCanvas*\2c\20SkPaint*\29 +7951:emscripten::internal::FunctionInvoker::invoke\28int\20\28**\29\28SkCanvas&\2c\20SkPaint\20const*\2c\20unsigned\20long\2c\20SkImageFilter\20const*\2c\20unsigned\20int\2c\20SkTileMode\29\2c\20SkCanvas*\2c\20SkPaint\20const*\2c\20unsigned\20long\2c\20SkImageFilter\20const*\2c\20unsigned\20int\2c\20SkTileMode\29 +7952:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28skia::textlayout::Paragraph&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29\2c\20skia::textlayout::Paragraph*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +7953:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28skia::textlayout::Paragraph&\2c\20float\2c\20float\29\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +7954:emscripten::internal::FunctionInvoker\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29\2c\20emscripten::val\2c\20sk_sp\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*>::invoke\28emscripten::val\20\28**\29\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29\2c\20sk_sp*\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29 +7955:emscripten::internal::FunctionInvoker\2c\20SkEncodedImageFormat\2c\20int\29\2c\20emscripten::val\2c\20sk_sp\2c\20SkEncodedImageFormat\2c\20int>::invoke\28emscripten::val\20\28**\29\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\29\2c\20sk_sp*\2c\20SkEncodedImageFormat\2c\20int\29 +7956:emscripten::internal::FunctionInvoker\29\2c\20emscripten::val\2c\20sk_sp>::invoke\28emscripten::val\20\28**\29\28sk_sp\29\2c\20sk_sp*\29 +7957:emscripten::internal::FunctionInvoker::invoke\28emscripten::val\20\28**\29\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20float\2c\20float\29\2c\20SkFont*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20float\2c\20float\29 +7958:emscripten::internal::FunctionInvoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29\2c\20bool\2c\20sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*>::invoke\28bool\20\28**\29\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29\2c\20sk_sp*\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29 +7959:emscripten::internal::FunctionInvoker\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29\2c\20bool\2c\20sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int>::invoke\28bool\20\28**\29\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29\2c\20sk_sp*\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +7960:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20float\29\2c\20SkPath*\2c\20float\2c\20float\2c\20float\29 +7961:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20float\2c\20float\2c\20bool\29\2c\20SkPath*\2c\20float\2c\20float\2c\20bool\29 +7962:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkPath&\2c\20StrokeOpts\29\2c\20SkPath*\2c\20StrokeOpts*\29 +7963:emscripten::internal::FunctionInvoker::invoke\28bool\20\28**\29\28SkCanvas&\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29\2c\20SkCanvas*\2c\20SimpleImageInfo*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +7964:emscripten::internal::FunctionInvoker::invoke\28SkPath\20\28**\29\28SkPath\20const&\29\2c\20SkPath*\29 +7965:emscripten::internal::FunctionInvoker::invoke\28SkPath\20\28**\29\28SkContourMeasure&\2c\20float\2c\20float\2c\20bool\29\2c\20SkContourMeasure*\2c\20float\2c\20float\2c\20bool\29 +7966:emscripten::internal::FunctionInvoker::invoke\28SkPaint\20\28**\29\28SkPaint\20const&\29\2c\20SkPaint*\29 +7967:emscripten::internal::FunctionInvoker::invoke\28SimpleImageInfo\20\28**\29\28SkSurface&\29\2c\20SkSurface*\29 +7968:emscripten::internal::FunctionInvoker::invoke\28RuntimeEffectUniform\20\28**\29\28SkRuntimeEffect&\2c\20int\29\2c\20SkRuntimeEffect*\2c\20int\29 +7969:emit_message +7970:embind_init_Skia\28\29::$_9::__invoke\28SkAnimatedImage&\29 +7971:embind_init_Skia\28\29::$_99::__invoke\28SkPath&\2c\20unsigned\20long\2c\20int\2c\20bool\29 +7972:embind_init_Skia\28\29::$_98::__invoke\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7973:embind_init_Skia\28\29::$_97::__invoke\28SkPath&\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20int\29 +7974:embind_init_Skia\28\29::$_96::__invoke\28SkPath&\2c\20unsigned\20long\2c\20float\2c\20float\29 +7975:embind_init_Skia\28\29::$_95::__invoke\28unsigned\20long\2c\20SkPath\29 +7976:embind_init_Skia\28\29::$_94::__invoke\28float\2c\20unsigned\20long\29 +7977:embind_init_Skia\28\29::$_93::__invoke\28unsigned\20long\2c\20int\2c\20float\29 +7978:embind_init_Skia\28\29::$_92::__invoke\28\29 +7979:embind_init_Skia\28\29::$_91::__invoke\28\29 +7980:embind_init_Skia\28\29::$_90::__invoke\28sk_sp\2c\20sk_sp\29 +7981:embind_init_Skia\28\29::$_8::__invoke\28emscripten::val\29 +7982:embind_init_Skia\28\29::$_89::__invoke\28SkPaint&\2c\20unsigned\20int\2c\20sk_sp\29 +7983:embind_init_Skia\28\29::$_88::__invoke\28SkPaint&\2c\20unsigned\20int\29 +7984:embind_init_Skia\28\29::$_87::__invoke\28SkPaint&\2c\20unsigned\20long\2c\20sk_sp\29 +7985:embind_init_Skia\28\29::$_86::__invoke\28SkPaint&\2c\20unsigned\20long\29 +7986:embind_init_Skia\28\29::$_85::__invoke\28SkPaint\20const&\29 +7987:embind_init_Skia\28\29::$_84::__invoke\28SkBlurStyle\2c\20float\2c\20bool\29 +7988:embind_init_Skia\28\29::$_83::__invoke\28float\2c\20float\2c\20sk_sp\29 +7989:embind_init_Skia\28\29::$_82::__invoke\28unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20sk_sp\29 +7990:embind_init_Skia\28\29::$_81::__invoke\28unsigned\20long\2c\20float\2c\20float\2c\20sk_sp\29 +7991:embind_init_Skia\28\29::$_80::__invoke\28sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +7992:embind_init_Skia\28\29::$_7::__invoke\28GrDirectContext&\2c\20unsigned\20long\29 +7993:embind_init_Skia\28\29::$_79::__invoke\28sk_sp\2c\20float\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\29 +7994:embind_init_Skia\28\29::$_78::__invoke\28float\2c\20float\2c\20sk_sp\29 +7995:embind_init_Skia\28\29::$_77::__invoke\28float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp\29 +7996:embind_init_Skia\28\29::$_76::__invoke\28float\2c\20float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20sk_sp\29 +7997:embind_init_Skia\28\29::$_75::__invoke\28sk_sp\29 +7998:embind_init_Skia\28\29::$_74::__invoke\28SkColorChannel\2c\20SkColorChannel\2c\20float\2c\20sk_sp\2c\20sk_sp\29 +7999:embind_init_Skia\28\29::$_73::__invoke\28float\2c\20float\2c\20sk_sp\29 +8000:embind_init_Skia\28\29::$_72::__invoke\28sk_sp\2c\20sk_sp\29 +8001:embind_init_Skia\28\29::$_71::__invoke\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\29 +8002:embind_init_Skia\28\29::$_70::__invoke\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +8003:embind_init_Skia\28\29::$_6::__invoke\28GrDirectContext&\29 +8004:embind_init_Skia\28\29::$_69::__invoke\28SkImageFilter\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +8005:embind_init_Skia\28\29::$_68::__invoke\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +8006:embind_init_Skia\28\29::$_67::__invoke\28sk_sp\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\2c\20GrDirectContext*\29 +8007:embind_init_Skia\28\29::$_66::__invoke\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20unsigned\20long\29 +8008:embind_init_Skia\28\29::$_65::__invoke\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20long\29 +8009:embind_init_Skia\28\29::$_64::__invoke\28sk_sp\29 +8010:embind_init_Skia\28\29::$_63::__invoke\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\2c\20GrDirectContext*\29 +8011:embind_init_Skia\28\29::$_62::__invoke\28sk_sp\2c\20SkEncodedImageFormat\2c\20int\29 +8012:embind_init_Skia\28\29::$_61::__invoke\28sk_sp\29 +8013:embind_init_Skia\28\29::$_60::__invoke\28sk_sp\29 +8014:embind_init_Skia\28\29::$_5::__invoke\28GrDirectContext&\29 +8015:embind_init_Skia\28\29::$_59::__invoke\28SkFontMgr&\2c\20unsigned\20long\2c\20int\29 +8016:embind_init_Skia\28\29::$_58::__invoke\28SkFontMgr&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29 +8017:embind_init_Skia\28\29::$_57::__invoke\28SkFontMgr&\2c\20int\29 +8018:embind_init_Skia\28\29::$_56::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20int\29 +8019:embind_init_Skia\28\29::$_55::__invoke\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20float\2c\20float\29 +8020:embind_init_Skia\28\29::$_54::__invoke\28SkFont&\29 +8021:embind_init_Skia\28\29::$_53::__invoke\28SkFont&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +8022:embind_init_Skia\28\29::$_52::__invoke\28SkFont&\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPaint*\29 +8023:embind_init_Skia\28\29::$_51::__invoke\28SkContourMeasure&\2c\20float\2c\20float\2c\20bool\29 +8024:embind_init_Skia\28\29::$_50::__invoke\28SkContourMeasure&\2c\20float\2c\20unsigned\20long\29 +8025:embind_init_Skia\28\29::$_4::__invoke\28unsigned\20long\2c\20unsigned\20long\29 +8026:embind_init_Skia\28\29::$_49::__invoke\28unsigned\20long\29 +8027:embind_init_Skia\28\29::$_48::__invoke\28unsigned\20long\2c\20SkBlendMode\2c\20sk_sp\29 +8028:embind_init_Skia\28\29::$_47::__invoke\28SkCanvas&\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +8029:embind_init_Skia\28\29::$_46::__invoke\28SkCanvas&\2c\20SkPaint\29 +8030:embind_init_Skia\28\29::$_45::__invoke\28SkCanvas&\2c\20SkPaint\20const*\2c\20unsigned\20long\2c\20SkImageFilter\20const*\2c\20unsigned\20int\2c\20SkTileMode\29 +8031:embind_init_Skia\28\29::$_44::__invoke\28SkCanvas&\2c\20SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20int\29 +8032:embind_init_Skia\28\29::$_43::__invoke\28SkCanvas&\2c\20SimpleImageInfo\29 +8033:embind_init_Skia\28\29::$_42::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +8034:embind_init_Skia\28\29::$_41::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +8035:embind_init_Skia\28\29::$_40::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +8036:embind_init_Skia\28\29::$_3::__invoke\28unsigned\20long\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\29 +8037:embind_init_Skia\28\29::$_39::__invoke\28SkCanvas\20const&\2c\20unsigned\20long\29 +8038:embind_init_Skia\28\29::$_38::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29 +8039:embind_init_Skia\28\29::$_37::__invoke\28SkCanvas&\2c\20SkPath\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20int\29 +8040:embind_init_Skia\28\29::$_36::__invoke\28SkCanvas&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +8041:embind_init_Skia\28\29::$_35::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +8042:embind_init_Skia\28\29::$_34::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +8043:embind_init_Skia\28\29::$_33::__invoke\28SkCanvas&\2c\20SkCanvas::PointMode\2c\20unsigned\20long\2c\20int\2c\20SkPaint&\29 +8044:embind_init_Skia\28\29::$_32::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +8045:embind_init_Skia\28\29::$_31::__invoke\28SkCanvas&\2c\20skia::textlayout::Paragraph*\2c\20float\2c\20float\29 +8046:embind_init_Skia\28\29::$_30::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +8047:embind_init_Skia\28\29::$_2::__invoke\28SimpleImageInfo\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\29 +8048:embind_init_Skia\28\29::$_29::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +8049:embind_init_Skia\28\29::$_28::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +8050:embind_init_Skia\28\29::$_27::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\20const*\2c\20bool\29 +8051:embind_init_Skia\28\29::$_26::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +8052:embind_init_Skia\28\29::$_25::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +8053:embind_init_Skia\28\29::$_24::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +8054:embind_init_Skia\28\29::$_23::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +8055:embind_init_Skia\28\29::$_22::__invoke\28SkCanvas&\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\2c\20SkFont\20const&\2c\20SkPaint\20const&\29 +8056:embind_init_Skia\28\29::$_21::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\20const&\29 +8057:embind_init_Skia\28\29::$_20::__invoke\28SkCanvas&\2c\20unsigned\20int\2c\20SkBlendMode\29 +8058:embind_init_Skia\28\29::$_1::__invoke\28unsigned\20long\2c\20unsigned\20long\29 +8059:embind_init_Skia\28\29::$_19::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkBlendMode\29 +8060:embind_init_Skia\28\29::$_18::__invoke\28SkCanvas&\2c\20unsigned\20long\29 +8061:embind_init_Skia\28\29::$_17::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20float\2c\20float\2c\20SkPaint\20const*\29 +8062:embind_init_Skia\28\29::$_16::__invoke\28SkCanvas&\2c\20sk_sp\20const&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\2c\20SkBlendMode\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkPaint\20const*\29 +8063:embind_init_Skia\28\29::$_15::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +8064:embind_init_Skia\28\29::$_150::__invoke\28SkVertices::Builder&\29 +8065:embind_init_Skia\28\29::$_14::__invoke\28SkCanvas&\2c\20unsigned\20long\29 +8066:embind_init_Skia\28\29::$_149::__invoke\28SkVertices::Builder&\29 +8067:embind_init_Skia\28\29::$_148::__invoke\28SkVertices::Builder&\29 +8068:embind_init_Skia\28\29::$_147::__invoke\28SkVertices::Builder&\29 +8069:embind_init_Skia\28\29::$_146::__invoke\28SkVertices&\2c\20unsigned\20long\29 +8070:embind_init_Skia\28\29::$_145::__invoke\28SkTypeface&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +8071:embind_init_Skia\28\29::$_144::__invoke\28SkTypeface&\29 +8072:embind_init_Skia\28\29::$_143::__invoke\28unsigned\20long\2c\20int\29 +8073:embind_init_Skia\28\29::$_142::__invoke\28\29 +8074:embind_init_Skia\28\29::$_141::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +8075:embind_init_Skia\28\29::$_140::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +8076:embind_init_Skia\28\29::$_13::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29 +8077:embind_init_Skia\28\29::$_139::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +8078:embind_init_Skia\28\29::$_138::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkFont\20const&\29 +8079:embind_init_Skia\28\29::$_137::__invoke\28SkSurface&\29 +8080:embind_init_Skia\28\29::$_136::__invoke\28SkSurface&\29 +8081:embind_init_Skia\28\29::$_135::__invoke\28SkSurface&\29 +8082:embind_init_Skia\28\29::$_134::__invoke\28SkSurface&\2c\20SimpleImageInfo\29 +8083:embind_init_Skia\28\29::$_133::__invoke\28SkSurface&\2c\20unsigned\20long\29 +8084:embind_init_Skia\28\29::$_132::__invoke\28SkSurface&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SimpleImageInfo\29 +8085:embind_init_Skia\28\29::$_131::__invoke\28SkSurface&\29 +8086:embind_init_Skia\28\29::$_130::__invoke\28SkSurface&\29 +8087:embind_init_Skia\28\29::$_12::__invoke\28SkCanvas&\2c\20unsigned\20long\2c\20SkClipOp\2c\20bool\29 +8088:embind_init_Skia\28\29::$_129::__invoke\28SimpleImageInfo\2c\20unsigned\20long\2c\20unsigned\20long\29 +8089:embind_init_Skia\28\29::$_128::__invoke\28SkRuntimeEffect&\2c\20int\29 +8090:embind_init_Skia\28\29::$_127::__invoke\28SkRuntimeEffect&\2c\20int\29 +8091:embind_init_Skia\28\29::$_126::__invoke\28SkRuntimeEffect&\29 +8092:embind_init_Skia\28\29::$_125::__invoke\28SkRuntimeEffect&\29 +8093:embind_init_Skia\28\29::$_124::__invoke\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +8094:embind_init_Skia\28\29::$_123::__invoke\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +8095:embind_init_Skia\28\29::$_122::__invoke\28SkRuntimeEffect&\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\2c\20unsigned\20long\29 +8096:embind_init_Skia\28\29::$_121::__invoke\28sk_sp\2c\20int\2c\20int\29 +8097:embind_init_Skia\28\29::$_120::__invoke\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29 +8098:embind_init_Skia\28\29::$_11::__invoke\28SkCanvas&\2c\20unsigned\20long\29 +8099:embind_init_Skia\28\29::$_119::__invoke\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20emscripten::val\29 +8100:embind_init_Skia\28\29::$_118::__invoke\28SkSL::DebugTrace\20const*\29 +8101:embind_init_Skia\28\29::$_117::__invoke\28unsigned\20long\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +8102:embind_init_Skia\28\29::$_116::__invoke\28float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29 +8103:embind_init_Skia\28\29::$_115::__invoke\28float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +8104:embind_init_Skia\28\29::$_114::__invoke\28float\2c\20float\2c\20float\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +8105:embind_init_Skia\28\29::$_113::__invoke\28unsigned\20long\2c\20unsigned\20long\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20SkTileMode\2c\20unsigned\20int\2c\20unsigned\20long\2c\20sk_sp\29 +8106:embind_init_Skia\28\29::$_112::__invoke\28float\2c\20float\2c\20int\2c\20float\2c\20int\2c\20int\29 +8107:embind_init_Skia\28\29::$_111::__invoke\28unsigned\20long\2c\20sk_sp\29 +8108:embind_init_Skia\28\29::$_110::operator\28\29\28SkPicture&\29\20const::'lambda'\28SkImage*\2c\20void*\29::__invoke\28SkImage*\2c\20void*\29 +8109:embind_init_Skia\28\29::$_110::__invoke\28SkPicture&\29 +8110:embind_init_Skia\28\29::$_10::__invoke\28SkAnimatedImage&\29 +8111:embind_init_Skia\28\29::$_109::__invoke\28SkPicture&\2c\20unsigned\20long\29 +8112:embind_init_Skia\28\29::$_108::__invoke\28SkPicture&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkFilterMode\2c\20unsigned\20long\2c\20unsigned\20long\29 +8113:embind_init_Skia\28\29::$_107::__invoke\28SkPictureRecorder&\29 +8114:embind_init_Skia\28\29::$_106::__invoke\28SkPictureRecorder&\2c\20unsigned\20long\2c\20bool\29 +8115:embind_init_Skia\28\29::$_105::__invoke\28SkPath&\2c\20unsigned\20long\29 +8116:embind_init_Skia\28\29::$_104::__invoke\28SkPath&\2c\20unsigned\20long\29 +8117:embind_init_Skia\28\29::$_103::__invoke\28SkPath&\2c\20int\2c\20unsigned\20long\29 +8118:embind_init_Skia\28\29::$_102::__invoke\28SkPath&\2c\20unsigned\20long\2c\20float\2c\20float\2c\20bool\29 +8119:embind_init_Skia\28\29::$_101::__invoke\28SkPath&\2c\20unsigned\20long\2c\20bool\29 +8120:embind_init_Skia\28\29::$_100::__invoke\28SkPath&\2c\20unsigned\20long\2c\20bool\29 +8121:embind_init_Skia\28\29::$_0::__invoke\28unsigned\20long\2c\20unsigned\20long\29 +8122:embind_init_Paragraph\28\29::$_9::__invoke\28skia::textlayout::ParagraphBuilderImpl&\29 +8123:embind_init_Paragraph\28\29::$_8::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20float\2c\20float\2c\20skia::textlayout::PlaceholderAlignment\2c\20skia::textlayout::TextBaseline\2c\20float\29 +8124:embind_init_Paragraph\28\29::$_7::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\2c\20SkPaint\2c\20SkPaint\29 +8125:embind_init_Paragraph\28\29::$_6::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20SimpleTextStyle\29 +8126:embind_init_Paragraph\28\29::$_5::__invoke\28skia::textlayout::ParagraphBuilderImpl&\29 +8127:embind_init_Paragraph\28\29::$_4::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +8128:embind_init_Paragraph\28\29::$_3::__invoke\28emscripten::val\2c\20emscripten::val\2c\20float\29 +8129:embind_init_Paragraph\28\29::$_2::__invoke\28SimpleParagraphStyle\2c\20sk_sp\29 +8130:embind_init_Paragraph\28\29::$_19::__invoke\28skia::textlayout::FontCollection&\2c\20sk_sp\20const&\29 +8131:embind_init_Paragraph\28\29::$_18::__invoke\28\29 +8132:embind_init_Paragraph\28\29::$_17::__invoke\28skia::textlayout::TypefaceFontProvider&\2c\20sk_sp\2c\20unsigned\20long\29 +8133:embind_init_Paragraph\28\29::$_16::__invoke\28\29 +8134:embind_init_Paragraph\28\29::$_15::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20unsigned\20long\2c\20unsigned\20long\29 +8135:embind_init_Paragraph\28\29::$_14::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20unsigned\20long\2c\20unsigned\20long\29 +8136:embind_init_Paragraph\28\29::$_13::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20unsigned\20long\2c\20unsigned\20long\29 +8137:embind_init_Paragraph\28\29::$_12::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20unsigned\20long\2c\20unsigned\20long\29 +8138:embind_init_Paragraph\28\29::$_11::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20unsigned\20long\2c\20unsigned\20long\29 +8139:embind_init_Paragraph\28\29::$_10::__invoke\28skia::textlayout::ParagraphBuilderImpl&\2c\20unsigned\20long\2c\20unsigned\20long\29 +8140:dispose_external_texture\28void*\29 +8141:deleteJSTexture\28void*\29 +8142:deflate_slow +8143:deflate_fast +8144:decompress_smooth_data +8145:decompress_onepass +8146:decompress_data +8147:decompose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +8148:decompose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +8149:decode_mcu_DC_refine +8150:decode_mcu_DC_first +8151:decode_mcu_AC_refine +8152:decode_mcu_AC_first +8153:decode_mcu +8154:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::Make\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20bool\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8155:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\2c\20GrShaderCaps\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::\28anonymous\20namespace\29::HullShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8156:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8157:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8158:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&>\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathTessellator::PathDrawList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8159:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29>\28skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20sk_sp\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8160:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Make\28SkArenaAlloc*\2c\20GrAAType\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8161:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerSkyline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8162:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerPow2&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8163:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make*\20SkArenaAlloc::make>\28\29::'lambda'\28void*\29>\28sk_sp&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8164:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::ThreeBoxApproxPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8165:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc>\28\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TextureOpImpl::Desc&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8166:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TentPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8167:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::SimpleTriangleShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8168:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader\2c\20bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*\2c\20GrShaderCaps\20const&>\28bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*&&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::DrawAtlasPathShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8169:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&>\28SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::BoundingBoxShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8170:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20unsigned\20char&&\29::'lambda'\28void*\29>\28Sprite_D32_S32&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8171:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&&\2c\20bool\20const&\29::'lambda'\28void*\29>\28SkTriColorShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8172:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTCubic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8173:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTConic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8174:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\29::'lambda'\28void*\29>\28SkSpriteBlitter_Memcpy&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8175:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&>\28SkPixmap\20const&\2c\20SkArenaAlloc*&\2c\20sk_sp&\29::'lambda'\28void*\29>\28SkRasterPipelineSpriteBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8176:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*&\29::'lambda'\28void*\29>\28SkRasterPipelineBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8177:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkNullBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8178:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkImage_Base\20const*&&\2c\20SkMatrix\20const&\2c\20SkMipmapMode&\29::'lambda'\28void*\29>\28SkMipmapAccessor&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8179:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::PathData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8180:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::DrawableData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8181:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8182:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkCubicEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8183:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\29>>::Node*\20SkArenaAlloc::make&\29>>::Node\2c\20std::__2::function&\29>>\28std::__2::function&\29>&&\29::'lambda'\28void*\29>\28SkArenaAllocList&\29>>::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8184:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node\2c\20std::__2::function&\29>\2c\20skgpu::Token>\28std::__2::function&\29>&&\2c\20skgpu::Token&&\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8185:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node>\28\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8186:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29::'lambda'\28void*\29>\28SkA8_Coverage_Blitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8187:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28GrSimpleMesh&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8188:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29::'lambda'\28void*\29>\28GrResourceAllocator::Register&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8189:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPath\20const&\2c\20SkArenaAlloc*\20const&\29::'lambda'\28void*\29>\28GrInnerFanTriangulator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8190:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldLCDTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20GrDistanceFieldLCDTextGeoProc::DistanceAdjust\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8191:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29>\28GrBitmapTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8192:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrAppliedClip&&\29::'lambda'\28void*\29>\28GrAppliedClip&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8193:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28EllipseGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8194:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28DefaultGeoProc::Make\28SkArenaAlloc*\2c\20unsigned\20int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +8195:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8196:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&\29 +8197:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8198:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8199:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8200:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +8201:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8202:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&\29 +8203:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8204:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8205:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +8206:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +8207:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +8208:deallocate_buffer_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +8209:ddquad_xy_at_t\28SkDCurve\20const&\2c\20double\29 +8210:ddquad_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +8211:ddline_xy_at_t\28SkDCurve\20const&\2c\20double\29 +8212:ddline_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +8213:ddcubic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +8214:ddcubic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +8215:ddconic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +8216:ddconic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +8217:data_destroy_use\28void*\29 +8218:data_create_use\28hb_ot_shape_plan_t\20const*\29 +8219:data_create_khmer\28hb_ot_shape_plan_t\20const*\29 +8220:data_create_indic\28hb_ot_shape_plan_t\20const*\29 +8221:data_create_hangul\28hb_ot_shape_plan_t\20const*\29 +8222:copy\28void*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\29 +8223:convert_bytes_to_data +8224:consume_markers +8225:consume_data +8226:computeTonalColors\28unsigned\20long\2c\20unsigned\20long\29 +8227:compose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8228:compose_hebrew\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8229:compare_ppem +8230:compare_myanmar_order\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +8231:compare_edges\28SkEdge\20const*\2c\20SkEdge\20const*\29 +8232:compare_edges\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29 +8233:compare_combining_class\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +8234:color_quantize3 +8235:color_quantize +8236:collect_features_use\28hb_ot_shape_planner_t*\29 +8237:collect_features_myanmar\28hb_ot_shape_planner_t*\29 +8238:collect_features_khmer\28hb_ot_shape_planner_t*\29 +8239:collect_features_indic\28hb_ot_shape_planner_t*\29 +8240:collect_features_hangul\28hb_ot_shape_planner_t*\29 +8241:collect_features_arabic\28hb_ot_shape_planner_t*\29 +8242:clip\28SkPath\20const&\2c\20SkHalfPlane\20const&\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +8243:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitStatement\28SkSL::Statement\20const&\29 +8244:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +8245:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitExpression\28SkSL::Expression\20const&\29 +8246:cff_slot_init +8247:cff_slot_done +8248:cff_size_request +8249:cff_size_init +8250:cff_size_done +8251:cff_sid_to_glyph_name +8252:cff_set_var_design +8253:cff_set_mm_weightvector +8254:cff_set_mm_blend +8255:cff_set_instance +8256:cff_random +8257:cff_ps_has_glyph_names +8258:cff_ps_get_font_info +8259:cff_ps_get_font_extra +8260:cff_parse_vsindex +8261:cff_parse_private_dict +8262:cff_parse_multiple_master +8263:cff_parse_maxstack +8264:cff_parse_font_matrix +8265:cff_parse_font_bbox +8266:cff_parse_cid_ros +8267:cff_parse_blend +8268:cff_metrics_adjust +8269:cff_hadvance_adjust +8270:cff_glyph_load +8271:cff_get_var_design +8272:cff_get_var_blend +8273:cff_get_standard_encoding +8274:cff_get_ros +8275:cff_get_ps_name +8276:cff_get_name_index +8277:cff_get_mm_weightvector +8278:cff_get_mm_var +8279:cff_get_mm_blend +8280:cff_get_is_cid +8281:cff_get_interface +8282:cff_get_glyph_name +8283:cff_get_glyph_data +8284:cff_get_cmap_info +8285:cff_get_cid_from_glyph_index +8286:cff_get_advances +8287:cff_free_glyph_data +8288:cff_fd_select_get +8289:cff_face_init +8290:cff_face_done +8291:cff_driver_init +8292:cff_done_blend +8293:cff_decoder_prepare +8294:cff_decoder_init +8295:cff_cmap_unicode_init +8296:cff_cmap_unicode_char_next +8297:cff_cmap_unicode_char_index +8298:cff_cmap_encoding_init +8299:cff_cmap_encoding_done +8300:cff_cmap_encoding_char_next +8301:cff_cmap_encoding_char_index +8302:cff_builder_start_point +8303:cff_builder_init +8304:cff_builder_add_point1 +8305:cff_builder_add_point +8306:cff_builder_add_contour +8307:cff_blend_check_vector +8308:cf2_free_instance +8309:cf2_decoder_parse_charstrings +8310:cf2_builder_moveTo +8311:cf2_builder_lineTo +8312:cf2_builder_cubeTo +8313:bw_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +8314:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::SpotVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +8315:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::AmbientVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +8316:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8317:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8318:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8319:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8320:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8321:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8322:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8323:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8324:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8325:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +8326:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8327:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8328:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8329:bool\20OT::cmap::accelerator_t::get_glyph_from_macroman\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8330:bool\20OT::cmap::accelerator_t::get_glyph_from_ascii\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8331:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8332:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +8333:blur_y_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8334:blur_y_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8335:blur_y_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8336:blur_y_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8337:blur_x_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8338:blur_x_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8339:blur_x_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8340:blur_x_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +8341:blit_row_s32a_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +8342:blit_row_s32_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +8343:blit_row_s32_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +8344:argb32_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +8345:arabic_fallback_shape\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +8346:alwaysSaveTypefaceBytes\28SkTypeface*\2c\20void*\29 +8347:alloc_sarray +8348:alloc_barray +8349:afm_parser_parse +8350:afm_parser_init +8351:afm_parser_done +8352:afm_compare_kern_pairs +8353:af_property_set +8354:af_property_get +8355:af_latin_metrics_scale +8356:af_latin_metrics_init +8357:af_latin_hints_init +8358:af_latin_hints_apply +8359:af_latin_get_standard_widths +8360:af_indic_metrics_init +8361:af_indic_hints_apply +8362:af_get_interface +8363:af_face_globals_free +8364:af_dummy_hints_init +8365:af_dummy_hints_apply +8366:af_cjk_metrics_init +8367:af_autofitter_load_glyph +8368:af_autofitter_init +8369:access_virt_sarray +8370:access_virt_barray +8371:_hb_ot_font_destroy\28void*\29 +8372:_hb_glyph_info_is_default_ignorable\28hb_glyph_info_t\20const*\29 +8373:_hb_face_for_data_reference_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +8374:_hb_face_for_data_get_table_tags\28hb_face_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +8375:_hb_face_for_data_closure_destroy\28void*\29 +8376:_hb_clear_substitution_flags\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +8377:_emscripten_stack_restore +8378:__wasm_call_ctors +8379:__stdio_write +8380:__stdio_seek +8381:__stdio_read +8382:__stdio_close +8383:__getTypeName +8384:__cxxabiv1::__vmi_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +8385:__cxxabiv1::__vmi_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +8386:__cxxabiv1::__vmi_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +8387:__cxxabiv1::__si_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +8388:__cxxabiv1::__si_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +8389:__cxxabiv1::__si_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +8390:__cxxabiv1::__class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +8391:__cxxabiv1::__class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +8392:__cxxabiv1::__class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +8393:__cxxabiv1::__class_type_info::can_catch\28__cxxabiv1::__shim_type_info\20const*\2c\20void*&\29\20const +8394:__cxx_global_array_dtor_9743 +8395:__cxx_global_array_dtor_8716 +8396:__cxx_global_array_dtor_8325 +8397:__cxx_global_array_dtor_4100 +8398:__cxx_global_array_dtor_13485 +8399:__cxx_global_array_dtor_10838 +8400:__cxx_global_array_dtor_10131 +8401:__cxx_global_array_dtor.88 +8402:__cxx_global_array_dtor.73 +8403:__cxx_global_array_dtor.58 +8404:__cxx_global_array_dtor.45 +8405:__cxx_global_array_dtor.43 +8406:__cxx_global_array_dtor.41 +8407:__cxx_global_array_dtor.39 +8408:__cxx_global_array_dtor.37 +8409:__cxx_global_array_dtor.35 +8410:__cxx_global_array_dtor.34 +8411:__cxx_global_array_dtor.32 +8412:__cxx_global_array_dtor.139 +8413:__cxx_global_array_dtor.136 +8414:__cxx_global_array_dtor.112 +8415:__cxx_global_array_dtor.1 +8416:__cxx_global_array_dtor +8417:\28anonymous\20namespace\29::skhb_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +8418:\28anonymous\20namespace\29::skhb_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8419:\28anonymous\20namespace\29::skhb_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +8420:\28anonymous\20namespace\29::skhb_glyph_h_advance\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +8421:\28anonymous\20namespace\29::skhb_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +8422:\28anonymous\20namespace\29::skhb_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +8423:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29::$_0::__invoke\28void*\29 +8424:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +8425:\28anonymous\20namespace\29::make_morphology\28\28anonymous\20namespace\29::MorphType\2c\20SkSize\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +8426:\28anonymous\20namespace\29::make_drop_shadow_graph\28SkPoint\2c\20SkSize\2c\20SkRGBA4f<\28SkAlphaType\293>\2c\20sk_sp\2c\20bool\2c\20sk_sp\2c\20std::__2::optional\20const&\29 +8427:\28anonymous\20namespace\29::extension_compare\28SkString\20const&\2c\20SkString\20const&\29 +8428:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29_4700 +8429:\28anonymous\20namespace\29::YUVPlanesRec::getCategory\28\29\20const +8430:\28anonymous\20namespace\29::YUVPlanesRec::diagnostic_only_getDiscardable\28\29\20const +8431:\28anonymous\20namespace\29::YUVPlanesRec::bytesUsed\28\29\20const +8432:\28anonymous\20namespace\29::YUVPlanesRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +8433:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29_11870 +8434:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29 +8435:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29_11854 +8436:\28anonymous\20namespace\29::TriangulatingPathOp::visitProxies\28std::__2::function\20const&\29\20const +8437:\28anonymous\20namespace\29::TriangulatingPathOp::programInfo\28\29 +8438:\28anonymous\20namespace\29::TriangulatingPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +8439:\28anonymous\20namespace\29::TriangulatingPathOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8440:\28anonymous\20namespace\29::TriangulatingPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +8441:\28anonymous\20namespace\29::TriangulatingPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8442:\28anonymous\20namespace\29::TriangulatingPathOp::name\28\29\20const +8443:\28anonymous\20namespace\29::TriangulatingPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8444:\28anonymous\20namespace\29::TransformedMaskSubRun::unflattenSize\28\29\20const +8445:\28anonymous\20namespace\29::TransformedMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +8446:\28anonymous\20namespace\29::TransformedMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +8447:\28anonymous\20namespace\29::TransformedMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +8448:\28anonymous\20namespace\29::ThreeBoxApproxPass::startBlur\28\29 +8449:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +8450:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +8451:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +8452:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29_11830 +8453:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29 +8454:\28anonymous\20namespace\29::TextureOpImpl::visitProxies\28std::__2::function\20const&\29\20const +8455:\28anonymous\20namespace\29::TextureOpImpl::programInfo\28\29 +8456:\28anonymous\20namespace\29::TextureOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +8457:\28anonymous\20namespace\29::TextureOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8458:\28anonymous\20namespace\29::TextureOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +8459:\28anonymous\20namespace\29::TextureOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8460:\28anonymous\20namespace\29::TextureOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8461:\28anonymous\20namespace\29::TextureOpImpl::name\28\29\20const +8462:\28anonymous\20namespace\29::TextureOpImpl::fixedFunctionFlags\28\29\20const +8463:\28anonymous\20namespace\29::TextureOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8464:\28anonymous\20namespace\29::TentPass::startBlur\28\29 +8465:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +8466:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +8467:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +8468:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29_11875 +8469:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29 +8470:\28anonymous\20namespace\29::StaticVertexAllocator::unlock\28int\29 +8471:\28anonymous\20namespace\29::StaticVertexAllocator::lock\28unsigned\20long\2c\20int\29 +8472:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::currentScript\28\29\20const +8473:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::consume\28\29 +8474:\28anonymous\20namespace\29::SkShaderImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8475:\28anonymous\20namespace\29::SkShaderImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8476:\28anonymous\20namespace\29::SkShaderImageFilter::getTypeName\28\29\20const +8477:\28anonymous\20namespace\29::SkShaderImageFilter::flatten\28SkWriteBuffer&\29\20const +8478:\28anonymous\20namespace\29::SkShaderImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8479:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8480:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8481:\28anonymous\20namespace\29::SkMorphologyImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8482:\28anonymous\20namespace\29::SkMorphologyImageFilter::getTypeName\28\29\20const +8483:\28anonymous\20namespace\29::SkMorphologyImageFilter::flatten\28SkWriteBuffer&\29\20const +8484:\28anonymous\20namespace\29::SkMorphologyImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8485:\28anonymous\20namespace\29::SkMergeImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8486:\28anonymous\20namespace\29::SkMergeImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8487:\28anonymous\20namespace\29::SkMergeImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8488:\28anonymous\20namespace\29::SkMergeImageFilter::getTypeName\28\29\20const +8489:\28anonymous\20namespace\29::SkMergeImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8490:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8491:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8492:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8493:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::getTypeName\28\29\20const +8494:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::flatten\28SkWriteBuffer&\29\20const +8495:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8496:\28anonymous\20namespace\29::SkImageImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8497:\28anonymous\20namespace\29::SkImageImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8498:\28anonymous\20namespace\29::SkImageImageFilter::getTypeName\28\29\20const +8499:\28anonymous\20namespace\29::SkImageImageFilter::flatten\28SkWriteBuffer&\29\20const +8500:\28anonymous\20namespace\29::SkImageImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8501:\28anonymous\20namespace\29::SkFTGeometrySink::Quad\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +8502:\28anonymous\20namespace\29::SkFTGeometrySink::Move\28FT_Vector_\20const*\2c\20void*\29 +8503:\28anonymous\20namespace\29::SkFTGeometrySink::Line\28FT_Vector_\20const*\2c\20void*\29 +8504:\28anonymous\20namespace\29::SkFTGeometrySink::Cubic\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +8505:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +8506:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFamilyName\28SkString*\29\20const +8507:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +8508:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateFamilyNameIterator\28\29\20const +8509:\28anonymous\20namespace\29::SkEmptyTypeface::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +8510:\28anonymous\20namespace\29::SkEmptyTypeface::MakeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29 +8511:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8512:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8513:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8514:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::getTypeName\28\29\20const +8515:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::flatten\28SkWriteBuffer&\29\20const +8516:\28anonymous\20namespace\29::SkDisplacementMapImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8517:\28anonymous\20namespace\29::SkCropImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8518:\28anonymous\20namespace\29::SkCropImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8519:\28anonymous\20namespace\29::SkCropImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8520:\28anonymous\20namespace\29::SkCropImageFilter::onAffectsTransparentBlack\28\29\20const +8521:\28anonymous\20namespace\29::SkCropImageFilter::getTypeName\28\29\20const +8522:\28anonymous\20namespace\29::SkCropImageFilter::flatten\28SkWriteBuffer&\29\20const +8523:\28anonymous\20namespace\29::SkCropImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8524:\28anonymous\20namespace\29::SkComposeImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8525:\28anonymous\20namespace\29::SkComposeImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8526:\28anonymous\20namespace\29::SkComposeImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8527:\28anonymous\20namespace\29::SkComposeImageFilter::getTypeName\28\29\20const +8528:\28anonymous\20namespace\29::SkComposeImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8529:\28anonymous\20namespace\29::SkColorFilterImageFilter::onIsColorFilterNode\28SkColorFilter**\29\20const +8530:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8531:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8532:\28anonymous\20namespace\29::SkColorFilterImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8533:\28anonymous\20namespace\29::SkColorFilterImageFilter::onAffectsTransparentBlack\28\29\20const +8534:\28anonymous\20namespace\29::SkColorFilterImageFilter::getTypeName\28\29\20const +8535:\28anonymous\20namespace\29::SkColorFilterImageFilter::flatten\28SkWriteBuffer&\29\20const +8536:\28anonymous\20namespace\29::SkColorFilterImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8537:\28anonymous\20namespace\29::SkBlurImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8538:\28anonymous\20namespace\29::SkBlurImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8539:\28anonymous\20namespace\29::SkBlurImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8540:\28anonymous\20namespace\29::SkBlurImageFilter::getTypeName\28\29\20const +8541:\28anonymous\20namespace\29::SkBlurImageFilter::flatten\28SkWriteBuffer&\29\20const +8542:\28anonymous\20namespace\29::SkBlurImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8543:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29_5405 +8544:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29 +8545:\28anonymous\20namespace\29::SkBlendImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +8546:\28anonymous\20namespace\29::SkBlendImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +8547:\28anonymous\20namespace\29::SkBlendImageFilter::onFilterImage\28skif::Context\20const&\29\20const +8548:\28anonymous\20namespace\29::SkBlendImageFilter::onAffectsTransparentBlack\28\29\20const +8549:\28anonymous\20namespace\29::SkBlendImageFilter::getTypeName\28\29\20const +8550:\28anonymous\20namespace\29::SkBlendImageFilter::flatten\28SkWriteBuffer&\29\20const +8551:\28anonymous\20namespace\29::SkBlendImageFilter::computeFastBounds\28SkRect\20const&\29\20const +8552:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29_8185 +8553:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29 +8554:\28anonymous\20namespace\29::SkBidiIterator_icu::getLevelAt\28int\29 +8555:\28anonymous\20namespace\29::SkBidiIterator_icu::getLength\28\29 +8556:\28anonymous\20namespace\29::SimpleTriangleShader::name\28\29\20const +8557:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +8558:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +8559:\28anonymous\20namespace\29::ShaperHarfBuzz::~ShaperHarfBuzz\28\29_13515 +8560:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20float\2c\20SkShaper::RunHandler*\29\20const +8561:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +8562:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20bool\2c\20float\2c\20SkShaper::RunHandler*\29\20const +8563:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::~ShapeDontWrapOrReorder\28\29 +8564:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::wrap\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::BiDiRunIterator\20const&\2c\20SkShaper::LanguageRunIterator\20const&\2c\20SkShaper::ScriptRunIterator\20const&\2c\20SkShaper::FontRunIterator\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +8565:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29_5191 +8566:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29 +8567:\28anonymous\20namespace\29::ShadowInvalidator::changed\28\29 +8568:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29_11693 +8569:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29 +8570:\28anonymous\20namespace\29::ShadowCircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +8571:\28anonymous\20namespace\29::ShadowCircularRRectOp::programInfo\28\29 +8572:\28anonymous\20namespace\29::ShadowCircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +8573:\28anonymous\20namespace\29::ShadowCircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +8574:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8575:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8576:\28anonymous\20namespace\29::ShadowCircularRRectOp::name\28\29\20const +8577:\28anonymous\20namespace\29::ShadowCircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8578:\28anonymous\20namespace\29::SDFTSubRun::unflattenSize\28\29\20const +8579:\28anonymous\20namespace\29::SDFTSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +8580:\28anonymous\20namespace\29::SDFTSubRun::glyphParams\28\29\20const +8581:\28anonymous\20namespace\29::SDFTSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +8582:\28anonymous\20namespace\29::SDFTSubRun::doFlatten\28SkWriteBuffer&\29\20const +8583:\28anonymous\20namespace\29::SDFTSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +8584:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29_2494 +8585:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29 +8586:\28anonymous\20namespace\29::RectsBlurRec::getCategory\28\29\20const +8587:\28anonymous\20namespace\29::RectsBlurRec::diagnostic_only_getDiscardable\28\29\20const +8588:\28anonymous\20namespace\29::RectsBlurRec::bytesUsed\28\29\20const +8589:\28anonymous\20namespace\29::RectsBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +8590:\28anonymous\20namespace\29::RasterShaderBlurAlgorithm::makeDevice\28SkImageInfo\20const&\29\20const +8591:\28anonymous\20namespace\29::RasterBlurEngine::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +8592:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +8593:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +8594:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29_2488 +8595:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29 +8596:\28anonymous\20namespace\29::RRectBlurRec::getCategory\28\29\20const +8597:\28anonymous\20namespace\29::RRectBlurRec::diagnostic_only_getDiscardable\28\29\20const +8598:\28anonymous\20namespace\29::RRectBlurRec::bytesUsed\28\29\20const +8599:\28anonymous\20namespace\29::RRectBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +8600:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29_12733 +8601:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29 +8602:\28anonymous\20namespace\29::PathSubRun::unflattenSize\28\29\20const +8603:\28anonymous\20namespace\29::PathSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +8604:\28anonymous\20namespace\29::PathSubRun::doFlatten\28SkWriteBuffer&\29\20const +8605:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29_1334 +8606:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29 +8607:\28anonymous\20namespace\29::MipMapRec::getCategory\28\29\20const +8608:\28anonymous\20namespace\29::MipMapRec::diagnostic_only_getDiscardable\28\29\20const +8609:\28anonymous\20namespace\29::MipMapRec::bytesUsed\28\29\20const +8610:\28anonymous\20namespace\29::MipMapRec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +8611:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29_11916 +8612:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29 +8613:\28anonymous\20namespace\29::MiddleOutShader::name\28\29\20const +8614:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +8615:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +8616:\28anonymous\20namespace\29::MiddleOutShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +8617:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29_11216 +8618:\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const +8619:\28anonymous\20namespace\29::MeshOp::programInfo\28\29 +8620:\28anonymous\20namespace\29::MeshOp::onPrepareDraws\28GrMeshDrawTarget*\29 +8621:\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +8622:\28anonymous\20namespace\29::MeshOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8623:\28anonymous\20namespace\29::MeshOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8624:\28anonymous\20namespace\29::MeshOp::name\28\29\20const +8625:\28anonymous\20namespace\29::MeshOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8626:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29_11243 +8627:\28anonymous\20namespace\29::MeshGP::onTextureSampler\28int\29\20const +8628:\28anonymous\20namespace\29::MeshGP::name\28\29\20const +8629:\28anonymous\20namespace\29::MeshGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +8630:\28anonymous\20namespace\29::MeshGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +8631:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29_11256 +8632:\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +8633:\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +8634:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +8635:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +8636:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +8637:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +8638:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMangledName\28char\20const*\29 +8639:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMainName\28\29 +8640:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +8641:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +8642:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +8643:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareFunction\28char\20const*\29 +8644:\28anonymous\20namespace\29::ImageFromPictureRec::~ImageFromPictureRec\28\29_4975 +8645:\28anonymous\20namespace\29::ImageFromPictureRec::~ImageFromPictureRec\28\29 +8646:\28anonymous\20namespace\29::ImageFromPictureRec::getCategory\28\29\20const +8647:\28anonymous\20namespace\29::ImageFromPictureRec::bytesUsed\28\29\20const +8648:\28anonymous\20namespace\29::ImageFromPictureRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +8649:\28anonymous\20namespace\29::HQDownSampler::buildLevel\28SkPixmap\20const&\2c\20SkPixmap\20const&\29 +8650:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +8651:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +8652:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +8653:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +8654:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +8655:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +8656:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +8657:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +8658:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29_11333 +8659:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29 +8660:\28anonymous\20namespace\29::FillRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +8661:\28anonymous\20namespace\29::FillRectOpImpl::programInfo\28\29 +8662:\28anonymous\20namespace\29::FillRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +8663:\28anonymous\20namespace\29::FillRectOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8664:\28anonymous\20namespace\29::FillRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +8665:\28anonymous\20namespace\29::FillRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8666:\28anonymous\20namespace\29::FillRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8667:\28anonymous\20namespace\29::FillRectOpImpl::name\28\29\20const +8668:\28anonymous\20namespace\29::FillRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8669:\28anonymous\20namespace\29::EllipticalRRectEffect::onMakeProgramImpl\28\29\20const +8670:\28anonymous\20namespace\29::EllipticalRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +8671:\28anonymous\20namespace\29::EllipticalRRectEffect::name\28\29\20const +8672:\28anonymous\20namespace\29::EllipticalRRectEffect::clone\28\29\20const +8673:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +8674:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +8675:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29_12741 +8676:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29 +8677:\28anonymous\20namespace\29::DrawableSubRun::unflattenSize\28\29\20const +8678:\28anonymous\20namespace\29::DrawableSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +8679:\28anonymous\20namespace\29::DrawableSubRun::doFlatten\28SkWriteBuffer&\29\20const +8680:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29_11201 +8681:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29 +8682:\28anonymous\20namespace\29::DrawAtlasPathShader::onTextureSampler\28int\29\20const +8683:\28anonymous\20namespace\29::DrawAtlasPathShader::name\28\29\20const +8684:\28anonymous\20namespace\29::DrawAtlasPathShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +8685:\28anonymous\20namespace\29::DrawAtlasPathShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +8686:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +8687:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +8688:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29_11173 +8689:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29 +8690:\28anonymous\20namespace\29::DrawAtlasOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +8691:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8692:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8693:\28anonymous\20namespace\29::DrawAtlasOpImpl::name\28\29\20const +8694:\28anonymous\20namespace\29::DrawAtlasOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8695:\28anonymous\20namespace\29::DirectMaskSubRun::unflattenSize\28\29\20const +8696:\28anonymous\20namespace\29::DirectMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +8697:\28anonymous\20namespace\29::DirectMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +8698:\28anonymous\20namespace\29::DirectMaskSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +8699:\28anonymous\20namespace\29::DirectMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +8700:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29_11158 +8701:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29 +8702:\28anonymous\20namespace\29::DefaultPathOp::visitProxies\28std::__2::function\20const&\29\20const +8703:\28anonymous\20namespace\29::DefaultPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +8704:\28anonymous\20namespace\29::DefaultPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +8705:\28anonymous\20namespace\29::DefaultPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8706:\28anonymous\20namespace\29::DefaultPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8707:\28anonymous\20namespace\29::DefaultPathOp::name\28\29\20const +8708:\28anonymous\20namespace\29::DefaultPathOp::fixedFunctionFlags\28\29\20const +8709:\28anonymous\20namespace\29::DefaultPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8710:\28anonymous\20namespace\29::CircularRRectEffect::onMakeProgramImpl\28\29\20const +8711:\28anonymous\20namespace\29::CircularRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +8712:\28anonymous\20namespace\29::CircularRRectEffect::name\28\29\20const +8713:\28anonymous\20namespace\29::CircularRRectEffect::clone\28\29\20const +8714:\28anonymous\20namespace\29::CircularRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +8715:\28anonymous\20namespace\29::CircularRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +8716:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29_5185 +8717:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29 +8718:\28anonymous\20namespace\29::CachedTessellationsRec::getCategory\28\29\20const +8719:\28anonymous\20namespace\29::CachedTessellationsRec::bytesUsed\28\29\20const +8720:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29_5183 +8721:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29_2298 +8722:\28anonymous\20namespace\29::CacheImpl::set\28SkImageFilterCacheKey\20const&\2c\20SkImageFilter\20const*\2c\20skif::FilterResult\20const&\29 +8723:\28anonymous\20namespace\29::CacheImpl::purge\28\29 +8724:\28anonymous\20namespace\29::CacheImpl::purgeByImageFilter\28SkImageFilter\20const*\29 +8725:\28anonymous\20namespace\29::CacheImpl::get\28SkImageFilterCacheKey\20const&\2c\20skif::FilterResult*\29\20const +8726:\28anonymous\20namespace\29::BoundingBoxShader::name\28\29\20const +8727:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +8728:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +8729:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +8730:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29_10979 +8731:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29 +8732:\28anonymous\20namespace\29::AAHairlineOp::visitProxies\28std::__2::function\20const&\29\20const +8733:\28anonymous\20namespace\29::AAHairlineOp::onPrepareDraws\28GrMeshDrawTarget*\29 +8734:\28anonymous\20namespace\29::AAHairlineOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8735:\28anonymous\20namespace\29::AAHairlineOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +8736:\28anonymous\20namespace\29::AAHairlineOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8737:\28anonymous\20namespace\29::AAHairlineOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8738:\28anonymous\20namespace\29::AAHairlineOp::name\28\29\20const +8739:\28anonymous\20namespace\29::AAHairlineOp::fixedFunctionFlags\28\29\20const +8740:\28anonymous\20namespace\29::AAHairlineOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +8741:\28anonymous\20namespace\29::A8Pass::startBlur\28\29 +8742:\28anonymous\20namespace\29::A8Pass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +8743:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +8744:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +8745:YuvToRgbaRow +8746:YuvToRgba4444Row +8747:YuvToRgbRow +8748:YuvToRgb565Row +8749:YuvToBgraRow +8750:YuvToBgrRow +8751:YuvToArgbRow +8752:Write_CVT_Stretched +8753:Write_CVT +8754:WebPYuv444ToRgba_C +8755:WebPYuv444ToRgba4444_C +8756:WebPYuv444ToRgb_C +8757:WebPYuv444ToRgb565_C +8758:WebPYuv444ToBgra_C +8759:WebPYuv444ToBgr_C +8760:WebPYuv444ToArgb_C +8761:WebPRescalerImportRowShrink_C +8762:WebPRescalerImportRowExpand_C +8763:WebPRescalerExportRowShrink_C +8764:WebPRescalerExportRowExpand_C +8765:WebPMultRow_C +8766:WebPMultARGBRow_C +8767:WebPConvertRGBA32ToUV_C +8768:WebPConvertARGBToUV_C +8769:WebGLTextureImageGenerator::~WebGLTextureImageGenerator\28\29_892 +8770:WebGLTextureImageGenerator::generateExternalTexture\28GrRecordingContext*\2c\20skgpu::Mipmapped\29 +8771:Vertish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +8772:Vertish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +8773:VerticalUnfilter_C +8774:VerticalFilter_C +8775:VertState::Triangles\28VertState*\29 +8776:VertState::TrianglesX\28VertState*\29 +8777:VertState::TriangleStrip\28VertState*\29 +8778:VertState::TriangleStripX\28VertState*\29 +8779:VertState::TriangleFan\28VertState*\29 +8780:VertState::TriangleFanX\28VertState*\29 +8781:VR4_C +8782:VP8LTransformColorInverse_C +8783:VP8LPredictor9_C +8784:VP8LPredictor8_C +8785:VP8LPredictor7_C +8786:VP8LPredictor6_C +8787:VP8LPredictor5_C +8788:VP8LPredictor4_C +8789:VP8LPredictor3_C +8790:VP8LPredictor2_C +8791:VP8LPredictor1_C +8792:VP8LPredictor13_C +8793:VP8LPredictor12_C +8794:VP8LPredictor11_C +8795:VP8LPredictor10_C +8796:VP8LPredictor0_C +8797:VP8LConvertBGRAToRGB_C +8798:VP8LConvertBGRAToRGBA_C +8799:VP8LConvertBGRAToRGBA4444_C +8800:VP8LConvertBGRAToRGB565_C +8801:VP8LConvertBGRAToBGR_C +8802:VP8LAddGreenToBlueAndRed_C +8803:VLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +8804:VLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +8805:VL4_C +8806:VFilter8i_C +8807:VFilter8_C +8808:VFilter16i_C +8809:VFilter16_C +8810:VE8uv_C +8811:VE4_C +8812:VE16_C +8813:UpsampleRgbaLinePair_C +8814:UpsampleRgba4444LinePair_C +8815:UpsampleRgbLinePair_C +8816:UpsampleRgb565LinePair_C +8817:UpsampleBgraLinePair_C +8818:UpsampleBgrLinePair_C +8819:UpsampleArgbLinePair_C +8820:UnresolvedCodepoints\28skia::textlayout::Paragraph&\29 +8821:TransformWHT_C +8822:TransformUV_C +8823:TransformTwo_C +8824:TransformDC_C +8825:TransformDCUV_C +8826:TransformAC3_C +8827:ToSVGString\28SkPath\20const&\29 +8828:ToCmds\28SkPath\20const&\29 +8829:TT_Set_MM_Blend +8830:TT_RunIns +8831:TT_Load_Simple_Glyph +8832:TT_Load_Glyph_Header +8833:TT_Load_Composite_Glyph +8834:TT_Get_Var_Design +8835:TT_Get_MM_Blend +8836:TT_Forget_Glyph_Frame +8837:TT_Access_Glyph_Frame +8838:TM8uv_C +8839:TM4_C +8840:TM16_C +8841:Sync +8842:SquareCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +8843:Sprite_D32_S32::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +8844:SkWuffsFrameHolder::onGetFrame\28int\29\20const +8845:SkWuffsCodec::~SkWuffsCodec\28\29_13427 +8846:SkWuffsCodec::~SkWuffsCodec\28\29 +8847:SkWuffsCodec::onIsAnimated\28\29 +8848:SkWuffsCodec::onIncrementalDecode\28int*\29 +8849:SkWuffsCodec::onGetRepetitionCount\28\29 +8850:SkWuffsCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +8851:SkWuffsCodec::onGetFrameInfo\28int\2c\20SkCodec::FrameInfo*\29\20const +8852:SkWuffsCodec::onGetFrameCount\28\29 +8853:SkWuffsCodec::getFrameHolder\28\29\20const +8854:SkWuffsCodec::getEncodedData\28\29\20const +8855:SkWriteICCProfile\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +8856:SkWebpDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +8857:SkWebpCodec::~SkWebpCodec\28\29_13106 +8858:SkWebpCodec::~SkWebpCodec\28\29 +8859:SkWebpCodec::onIsAnimated\28\29 +8860:SkWebpCodec::onGetValidSubset\28SkIRect*\29\20const +8861:SkWebpCodec::onGetRepetitionCount\28\29 +8862:SkWebpCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +8863:SkWebpCodec::onGetFrameInfo\28int\2c\20SkCodec::FrameInfo*\29\20const +8864:SkWebpCodec::onGetFrameCount\28\29 +8865:SkWebpCodec::getFrameHolder\28\29\20const +8866:SkWebpCodec::FrameHolder::~FrameHolder\28\29_13104 +8867:SkWebpCodec::FrameHolder::~FrameHolder\28\29 +8868:SkWebpCodec::FrameHolder::onGetFrame\28int\29\20const +8869:SkWeakRefCnt::internal_dispose\28\29\20const +8870:SkWbmpDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +8871:SkWbmpCodec::~SkWbmpCodec\28\29_5787 +8872:SkWbmpCodec::~SkWbmpCodec\28\29 +8873:SkWbmpCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +8874:SkWbmpCodec::onSkipScanlines\28int\29 +8875:SkWbmpCodec::onRewind\28\29 +8876:SkWbmpCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +8877:SkWbmpCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +8878:SkWbmpCodec::getSampler\28bool\29 +8879:SkWbmpCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +8880:SkVertices::Builder*\20emscripten::internal::operator_new\28SkVertices::VertexMode&&\2c\20int&&\2c\20int&&\2c\20unsigned\20int&&\29 +8881:SkUserTypeface::~SkUserTypeface\28\29_5072 +8882:SkUserTypeface::~SkUserTypeface\28\29 +8883:SkUserTypeface::onOpenStream\28int*\29\20const +8884:SkUserTypeface::onGetUPEM\28\29\20const +8885:SkUserTypeface::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +8886:SkUserTypeface::onGetFamilyName\28SkString*\29\20const +8887:SkUserTypeface::onFilterRec\28SkScalerContextRec*\29\20const +8888:SkUserTypeface::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +8889:SkUserTypeface::onCountGlyphs\28\29\20const +8890:SkUserTypeface::onComputeBounds\28SkRect*\29\20const +8891:SkUserTypeface::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +8892:SkUserTypeface::getGlyphToUnicodeMap\28SkSpan\29\20const +8893:SkUserScalerContext::~SkUserScalerContext\28\29 +8894:SkUserScalerContext::generatePath\28SkGlyph\20const&\29 +8895:SkUserScalerContext::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +8896:SkUserScalerContext::generateImage\28SkGlyph\20const&\2c\20void*\29 +8897:SkUserScalerContext::generateFontMetrics\28SkFontMetrics*\29 +8898:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29::DrawableMatrixWrapper::onGetBounds\28\29 +8899:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29::DrawableMatrixWrapper::onDraw\28SkCanvas*\29 +8900:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29::DrawableMatrixWrapper::onApproximateBytesUsed\28\29 +8901:SkUserScalerContext::generateDrawable\28SkGlyph\20const&\29 +8902:SkUnicode_client::~SkUnicode_client\28\29_8203 +8903:SkUnicode_client::~SkUnicode_client\28\29 +8904:SkUnicode_client::toUpper\28SkString\20const&\2c\20char\20const*\29 +8905:SkUnicode_client::toUpper\28SkString\20const&\29 +8906:SkUnicode_client::reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29 +8907:SkUnicode_client::makeBreakIterator\28char\20const*\2c\20SkUnicode::BreakType\29 +8908:SkUnicode_client::makeBreakIterator\28SkUnicode::BreakType\29 +8909:SkUnicode_client::makeBidiIterator\28unsigned\20short\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +8910:SkUnicode_client::makeBidiIterator\28char\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +8911:SkUnicode_client::getWords\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +8912:SkUnicode_client::getBidiRegions\28char\20const*\2c\20int\2c\20SkUnicode::TextDirection\2c\20std::__2::vector>*\29 +8913:SkUnicode_client::computeCodeUnitFlags\28char16_t*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +8914:SkUnicode_client::computeCodeUnitFlags\28char*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +8915:SkUnicodeHardCodedCharProperties::isWhitespace\28int\29 +8916:SkUnicodeHardCodedCharProperties::isTabulation\28int\29 +8917:SkUnicodeHardCodedCharProperties::isSpace\28int\29 +8918:SkUnicodeHardCodedCharProperties::isIdeographic\28int\29 +8919:SkUnicodeHardCodedCharProperties::isHardBreak\28int\29 +8920:SkUnicodeHardCodedCharProperties::isControl\28int\29 +8921:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29_13479 +8922:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29 +8923:SkUnicodeBidiRunIterator::endOfCurrentRun\28\29\20const +8924:SkUnicodeBidiRunIterator::currentLevel\28\29\20const +8925:SkUnicodeBidiRunIterator::consume\28\29 +8926:SkUnicodeBidiRunIterator::atEnd\28\29\20const +8927:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29_8316 +8928:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29 +8929:SkTypeface_FreeTypeStream::onOpenStream\28int*\29\20const +8930:SkTypeface_FreeTypeStream::onMakeFontData\28\29\20const +8931:SkTypeface_FreeTypeStream::onMakeClone\28SkFontArguments\20const&\29\20const +8932:SkTypeface_FreeTypeStream::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +8933:SkTypeface_FreeType::onGlyphMaskNeedsCurrentColor\28\29\20const +8934:SkTypeface_FreeType::onGetVariationDesignPosition\28SkSpan\29\20const +8935:SkTypeface_FreeType::onGetVariationDesignParameters\28SkSpan\29\20const +8936:SkTypeface_FreeType::onGetUPEM\28\29\20const +8937:SkTypeface_FreeType::onGetTableTags\28SkSpan\29\20const +8938:SkTypeface_FreeType::onGetTableData\28unsigned\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20void*\29\20const +8939:SkTypeface_FreeType::onGetPostScriptName\28SkString*\29\20const +8940:SkTypeface_FreeType::onGetKerningPairAdjustments\28SkSpan\2c\20SkSpan\29\20const +8941:SkTypeface_FreeType::onGetAdvancedMetrics\28\29\20const +8942:SkTypeface_FreeType::onFilterRec\28SkScalerContextRec*\29\20const +8943:SkTypeface_FreeType::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +8944:SkTypeface_FreeType::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +8945:SkTypeface_FreeType::onCreateFamilyNameIterator\28\29\20const +8946:SkTypeface_FreeType::onCountGlyphs\28\29\20const +8947:SkTypeface_FreeType::onCopyTableData\28unsigned\20int\29\20const +8948:SkTypeface_FreeType::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +8949:SkTypeface_FreeType::getPostScriptGlyphNames\28SkString*\29\20const +8950:SkTypeface_FreeType::getGlyphToUnicodeMap\28SkSpan\29\20const +8951:SkTypeface_Empty::~SkTypeface_Empty\28\29 +8952:SkTypeface_Custom::~SkTypeface_Custom\28\29_8259 +8953:SkTypeface_Custom::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +8954:SkTypeface::onOpenExistingStream\28int*\29\20const +8955:SkTypeface::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +8956:SkTypeface::onCopyTableData\28unsigned\20int\29\20const +8957:SkTypeface::onComputeBounds\28SkRect*\29\20const +8958:SkTrimPE::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +8959:SkTrimPE::getTypeName\28\29\20const +8960:SkTriColorShader::type\28\29\20const +8961:SkTriColorShader::isOpaque\28\29\20const +8962:SkTriColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +8963:SkTransformShader::type\28\29\20const +8964:SkTransformShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +8965:SkTQuad::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +8966:SkTQuad::setBounds\28SkDRect*\29\20const +8967:SkTQuad::ptAtT\28double\29\20const +8968:SkTQuad::make\28SkArenaAlloc&\29\20const +8969:SkTQuad::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +8970:SkTQuad::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +8971:SkTQuad::dxdyAtT\28double\29\20const +8972:SkTQuad::debugInit\28\29 +8973:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29_4127 +8974:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29 +8975:SkTCubic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +8976:SkTCubic::setBounds\28SkDRect*\29\20const +8977:SkTCubic::ptAtT\28double\29\20const +8978:SkTCubic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +8979:SkTCubic::make\28SkArenaAlloc&\29\20const +8980:SkTCubic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +8981:SkTCubic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +8982:SkTCubic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +8983:SkTCubic::dxdyAtT\28double\29\20const +8984:SkTCubic::debugInit\28\29 +8985:SkTCubic::controlsInside\28\29\20const +8986:SkTCubic::collapsed\28\29\20const +8987:SkTConic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +8988:SkTConic::setBounds\28SkDRect*\29\20const +8989:SkTConic::ptAtT\28double\29\20const +8990:SkTConic::make\28SkArenaAlloc&\29\20const +8991:SkTConic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +8992:SkTConic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +8993:SkTConic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +8994:SkTConic::dxdyAtT\28double\29\20const +8995:SkTConic::debugInit\28\29 +8996:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29_4496 +8997:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29 +8998:SkSynchronizedResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +8999:SkSynchronizedResourceCache::setTotalByteLimit\28unsigned\20long\29 +9000:SkSynchronizedResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +9001:SkSynchronizedResourceCache::purgeAll\28\29 +9002:SkSynchronizedResourceCache::newCachedData\28unsigned\20long\29 +9003:SkSynchronizedResourceCache::getTotalBytesUsed\28\29\20const +9004:SkSynchronizedResourceCache::getTotalByteLimit\28\29\20const +9005:SkSynchronizedResourceCache::getSingleAllocationByteLimit\28\29\20const +9006:SkSynchronizedResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +9007:SkSynchronizedResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +9008:SkSynchronizedResourceCache::dump\28\29\20const +9009:SkSynchronizedResourceCache::discardableFactory\28\29\20const +9010:SkSynchronizedResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +9011:SkSwizzler::onSetSampleX\28int\29 +9012:SkSwizzler::fillWidth\28\29\20const +9013:SkSweepGradient::getTypeName\28\29\20const +9014:SkSweepGradient::flatten\28SkWriteBuffer&\29\20const +9015:SkSweepGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +9016:SkSweepGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +9017:SkSurface_Raster::~SkSurface_Raster\28\29_4860 +9018:SkSurface_Raster::~SkSurface_Raster\28\29 +9019:SkSurface_Raster::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +9020:SkSurface_Raster::onRestoreBackingMutability\28\29 +9021:SkSurface_Raster::onNewSurface\28SkImageInfo\20const&\29 +9022:SkSurface_Raster::onNewImageSnapshot\28SkIRect\20const*\29 +9023:SkSurface_Raster::onNewCanvas\28\29 +9024:SkSurface_Raster::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +9025:SkSurface_Raster::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +9026:SkSurface_Raster::imageInfo\28\29\20const +9027:SkSurface_Ganesh::~SkSurface_Ganesh\28\29_11877 +9028:SkSurface_Ganesh::~SkSurface_Ganesh\28\29 +9029:SkSurface_Ganesh::replaceBackendTexture\28GrBackendTexture\20const&\2c\20GrSurfaceOrigin\2c\20SkSurface::ContentChangeMode\2c\20void\20\28*\29\28void*\29\2c\20void*\29 +9030:SkSurface_Ganesh::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +9031:SkSurface_Ganesh::onWait\28int\2c\20GrBackendSemaphore\20const*\2c\20bool\29 +9032:SkSurface_Ganesh::onNewSurface\28SkImageInfo\20const&\29 +9033:SkSurface_Ganesh::onNewImageSnapshot\28SkIRect\20const*\29 +9034:SkSurface_Ganesh::onNewCanvas\28\29 +9035:SkSurface_Ganesh::onIsCompatible\28GrSurfaceCharacterization\20const&\29\20const +9036:SkSurface_Ganesh::onGetRecordingContext\28\29\20const +9037:SkSurface_Ganesh::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +9038:SkSurface_Ganesh::onDiscard\28\29 +9039:SkSurface_Ganesh::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +9040:SkSurface_Ganesh::onCharacterize\28GrSurfaceCharacterization*\29\20const +9041:SkSurface_Ganesh::onCapabilities\28\29 +9042:SkSurface_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +9043:SkSurface_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +9044:SkSurface_Ganesh::imageInfo\28\29\20const +9045:SkSurface_Base::onMakeTemporaryImage\28\29 +9046:SkSurface_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +9047:SkSurface::imageInfo\28\29\20const +9048:SkString*\20std::__2::vector>::__emplace_back_slow_path\28char\20const*&\2c\20int&&\29 +9049:SkStrikeCache::~SkStrikeCache\28\29_4374 +9050:SkStrikeCache::~SkStrikeCache\28\29 +9051:SkStrikeCache::findOrCreateScopedStrike\28SkStrikeSpec\20const&\29 +9052:SkStrike::~SkStrike\28\29_4361 +9053:SkStrike::strikePromise\28\29 +9054:SkStrike::roundingSpec\28\29\20const +9055:SkStrike::prepareForPath\28SkGlyph*\29 +9056:SkStrike::prepareForImage\28SkGlyph*\29 +9057:SkStrike::prepareForDrawable\28SkGlyph*\29 +9058:SkStrike::getDescriptor\28\29\20const +9059:SkSpriteBlitter_Memcpy::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +9060:SkSpriteBlitter::~SkSpriteBlitter\28\29_1511 +9061:SkSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +9062:SkSpriteBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +9063:SkSpriteBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +9064:SkSpriteBlitter::blitH\28int\2c\20int\2c\20int\29 +9065:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29_4252 +9066:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29 +9067:SkSpecialImage_Raster::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +9068:SkSpecialImage_Raster::getSize\28\29\20const +9069:SkSpecialImage_Raster::backingStoreDimensions\28\29\20const +9070:SkSpecialImage_Raster::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +9071:SkSpecialImage_Raster::asImage\28\29\20const +9072:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29_10921 +9073:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29 +9074:SkSpecialImage_Gpu::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +9075:SkSpecialImage_Gpu::getSize\28\29\20const +9076:SkSpecialImage_Gpu::backingStoreDimensions\28\29\20const +9077:SkSpecialImage_Gpu::asImage\28\29\20const +9078:SkSpecialImage::~SkSpecialImage\28\29 +9079:SkSpecialImage::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +9080:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29_13472 +9081:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29 +9082:SkShaper::TrivialLanguageRunIterator::currentLanguage\28\29\20const +9083:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29_7728 +9084:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29 +9085:SkShaper::TrivialBiDiRunIterator::currentLevel\28\29\20const +9086:SkShaderBlurAlgorithm::maxSigma\28\29\20const +9087:SkShaderBlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +9088:SkScan::HairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +9089:SkScan::HairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +9090:SkScan::HairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +9091:SkScan::AntiHairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +9092:SkScan::AntiHairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +9093:SkScalingCodec::onGetScaledDimensions\28float\29\20const +9094:SkScalingCodec::onDimensionsSupported\28SkISize\20const&\29 +9095:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29_8291 +9096:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29 +9097:SkScalerContext_FreeType::generatePath\28SkGlyph\20const&\29 +9098:SkScalerContext_FreeType::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +9099:SkScalerContext_FreeType::generateImage\28SkGlyph\20const&\2c\20void*\29 +9100:SkScalerContext_FreeType::generateFontMetrics\28SkFontMetrics*\29 +9101:SkScalerContext_FreeType::generateDrawable\28SkGlyph\20const&\29 +9102:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::~SkScalerContext_Empty\28\29 +9103:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generatePath\28SkGlyph\20const&\29 +9104:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +9105:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateFontMetrics\28SkFontMetrics*\29 +9106:SkSampledCodec::onGetSampledDimensions\28int\29\20const +9107:SkSampledCodec::onGetAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +9108:SkSRGBColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +9109:SkSRGBColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +9110:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_3::__invoke\28double\2c\20double\29 +9111:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_2::__invoke\28double\2c\20double\29 +9112:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_1::__invoke\28double\2c\20double\29 +9113:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_0::__invoke\28double\2c\20double\29 +9114:SkSL::remove_break_statements\28std::__2::unique_ptr>&\29::RemoveBreaksWriter::visitStatementPtr\28std::__2::unique_ptr>&\29 +9115:SkSL::hoist_vardecl_symbols_into_outer_scope\28SkSL::Context\20const&\2c\20SkSL::Block\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::SymbolTable*\29::SymbolHoister::visitStatement\28SkSL::Statement\20const&\29 +9116:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29_6996 +9117:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29 +9118:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29_6989 +9119:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29 +9120:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +9121:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitExpressionPtr\28std::__2::unique_ptr>&\29 +9122:SkSL::count_returns_at_end_of_control_flow\28SkSL::FunctionDefinition\20const&\29::CountReturnsAtEndOfControlFlow::visitStatement\28SkSL::Statement\20const&\29 +9123:SkSL::\28anonymous\20namespace\29::VariableWriteVisitor::visitExpression\28SkSL::Expression\20const&\29 +9124:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +9125:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitExpression\28SkSL::Expression\20const&\29 +9126:SkSL::\28anonymous\20namespace\29::ReturnsNonOpaqueColorVisitor::visitStatement\28SkSL::Statement\20const&\29 +9127:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitStatement\28SkSL::Statement\20const&\29 +9128:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +9129:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitStatement\28SkSL::Statement\20const&\29 +9130:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitStatement\28SkSL::Statement\20const&\29 +9131:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +9132:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitExpression\28SkSL::Expression\20const&\29 +9133:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +9134:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +9135:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29_6100 +9136:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29 +9137:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitExpression\28SkSL::Expression\20const&\29 +9138:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29_6125 +9139:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29 +9140:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitStatement\28SkSL::Statement\20const&\29 +9141:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitExpression\28SkSL::Expression\20const&\29 +9142:SkSL::VectorType::isOrContainsBool\28\29\20const +9143:SkSL::VectorType::isAllowedInUniform\28SkSL::Position*\29\20const +9144:SkSL::VectorType::isAllowedInES2\28\29\20const +9145:SkSL::VariableReference::clone\28SkSL::Position\29\20const +9146:SkSL::Variable::~Variable\28\29_6939 +9147:SkSL::Variable::~Variable\28\29 +9148:SkSL::Variable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +9149:SkSL::Variable::mangledName\28\29\20const +9150:SkSL::Variable::layout\28\29\20const +9151:SkSL::Variable::description\28\29\20const +9152:SkSL::VarDeclaration::~VarDeclaration\28\29_6937 +9153:SkSL::VarDeclaration::~VarDeclaration\28\29 +9154:SkSL::VarDeclaration::description\28\29\20const +9155:SkSL::TypeReference::clone\28SkSL::Position\29\20const +9156:SkSL::Type::minimumValue\28\29\20const +9157:SkSL::Type::maximumValue\28\29\20const +9158:SkSL::Type::matches\28SkSL::Type\20const&\29\20const +9159:SkSL::Type::isAllowedInUniform\28SkSL::Position*\29\20const +9160:SkSL::Type::fields\28\29\20const +9161:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29_7022 +9162:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29 +9163:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::visitStatementPtr\28std::__2::unique_ptr>&\29 +9164:SkSL::Tracer::var\28int\2c\20int\29 +9165:SkSL::Tracer::scope\28int\29 +9166:SkSL::Tracer::line\28int\29 +9167:SkSL::Tracer::exit\28int\29 +9168:SkSL::Tracer::enter\28int\29 +9169:SkSL::TextureType::textureAccess\28\29\20const +9170:SkSL::TextureType::isMultisampled\28\29\20const +9171:SkSL::TextureType::isDepth\28\29\20const +9172:SkSL::TernaryExpression::~TernaryExpression\28\29_6722 +9173:SkSL::TernaryExpression::~TernaryExpression\28\29 +9174:SkSL::TernaryExpression::description\28SkSL::OperatorPrecedence\29\20const +9175:SkSL::TernaryExpression::clone\28SkSL::Position\29\20const +9176:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression&\29 +9177:SkSL::Swizzle::description\28SkSL::OperatorPrecedence\29\20const +9178:SkSL::Swizzle::clone\28SkSL::Position\29\20const +9179:SkSL::SwitchStatement::description\28\29\20const +9180:SkSL::SwitchCase::description\28\29\20const +9181:SkSL::StructType::slotType\28unsigned\20long\29\20const +9182:SkSL::StructType::isOrContainsUnsizedArray\28\29\20const +9183:SkSL::StructType::isOrContainsBool\28\29\20const +9184:SkSL::StructType::isOrContainsAtomic\28\29\20const +9185:SkSL::StructType::isOrContainsArray\28\29\20const +9186:SkSL::StructType::isInterfaceBlock\28\29\20const +9187:SkSL::StructType::isBuiltin\28\29\20const +9188:SkSL::StructType::isAllowedInUniform\28SkSL::Position*\29\20const +9189:SkSL::StructType::isAllowedInES2\28\29\20const +9190:SkSL::StructType::fields\28\29\20const +9191:SkSL::StructDefinition::description\28\29\20const +9192:SkSL::StringStream::~StringStream\28\29_12836 +9193:SkSL::StringStream::~StringStream\28\29 +9194:SkSL::StringStream::write\28void\20const*\2c\20unsigned\20long\29 +9195:SkSL::StringStream::writeText\28char\20const*\29 +9196:SkSL::StringStream::write8\28unsigned\20char\29 +9197:SkSL::SingleArgumentConstructor::~SingleArgumentConstructor\28\29 +9198:SkSL::Setting::description\28SkSL::OperatorPrecedence\29\20const +9199:SkSL::Setting::clone\28SkSL::Position\29\20const +9200:SkSL::ScalarType::priority\28\29\20const +9201:SkSL::ScalarType::numberKind\28\29\20const +9202:SkSL::ScalarType::minimumValue\28\29\20const +9203:SkSL::ScalarType::maximumValue\28\29\20const +9204:SkSL::ScalarType::isOrContainsBool\28\29\20const +9205:SkSL::ScalarType::isAllowedInUniform\28SkSL::Position*\29\20const +9206:SkSL::ScalarType::isAllowedInES2\28\29\20const +9207:SkSL::ScalarType::bitWidth\28\29\20const +9208:SkSL::SamplerType::textureAccess\28\29\20const +9209:SkSL::SamplerType::isMultisampled\28\29\20const +9210:SkSL::SamplerType::isDepth\28\29\20const +9211:SkSL::SamplerType::isArrayedTexture\28\29\20const +9212:SkSL::SamplerType::dimensions\28\29\20const +9213:SkSL::ReturnStatement::description\28\29\20const +9214:SkSL::RP::VariableLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9215:SkSL::RP::VariableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9216:SkSL::RP::VariableLValue::isWritable\28\29\20const +9217:SkSL::RP::VariableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +9218:SkSL::RP::UnownedLValueSlice::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9219:SkSL::RP::UnownedLValueSlice::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9220:SkSL::RP::UnownedLValueSlice::fixedSlotRange\28SkSL::RP::Generator*\29 +9221:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29_6353 +9222:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29 +9223:SkSL::RP::SwizzleLValue::swizzle\28\29 +9224:SkSL::RP::SwizzleLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9225:SkSL::RP::SwizzleLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9226:SkSL::RP::SwizzleLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +9227:SkSL::RP::ScratchLValue::~ScratchLValue\28\29_6367 +9228:SkSL::RP::ScratchLValue::~ScratchLValue\28\29 +9229:SkSL::RP::ScratchLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9230:SkSL::RP::ScratchLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +9231:SkSL::RP::LValueSlice::~LValueSlice\28\29_6351 +9232:SkSL::RP::LValueSlice::~LValueSlice\28\29 +9233:SkSL::RP::LValue::~LValue\28\29_6343 +9234:SkSL::RP::ImmutableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9235:SkSL::RP::ImmutableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +9236:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29_6360 +9237:SkSL::RP::DynamicIndexLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9238:SkSL::RP::DynamicIndexLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +9239:SkSL::RP::DynamicIndexLValue::isWritable\28\29\20const +9240:SkSL::RP::DynamicIndexLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +9241:SkSL::ProgramVisitor::visitStatementPtr\28std::__2::unique_ptr>\20const&\29 +9242:SkSL::ProgramVisitor::visitExpressionPtr\28std::__2::unique_ptr>\20const&\29 +9243:SkSL::PrefixExpression::~PrefixExpression\28\29_6652 +9244:SkSL::PrefixExpression::~PrefixExpression\28\29 +9245:SkSL::PrefixExpression::description\28SkSL::OperatorPrecedence\29\20const +9246:SkSL::PrefixExpression::clone\28SkSL::Position\29\20const +9247:SkSL::PostfixExpression::description\28SkSL::OperatorPrecedence\29\20const +9248:SkSL::PostfixExpression::clone\28SkSL::Position\29\20const +9249:SkSL::Poison::description\28SkSL::OperatorPrecedence\29\20const +9250:SkSL::Poison::clone\28SkSL::Position\29\20const +9251:SkSL::PipelineStage::Callbacks::getMainName\28\29 +9252:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29_6052 +9253:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29 +9254:SkSL::Parser::Checkpoint::ForwardingErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +9255:SkSL::Nop::description\28\29\20const +9256:SkSL::MultiArgumentConstructor::~MultiArgumentConstructor\28\29 +9257:SkSL::ModifiersDeclaration::description\28\29\20const +9258:SkSL::MethodReference::description\28SkSL::OperatorPrecedence\29\20const +9259:SkSL::MethodReference::clone\28SkSL::Position\29\20const +9260:SkSL::MatrixType::slotCount\28\29\20const +9261:SkSL::MatrixType::rows\28\29\20const +9262:SkSL::MatrixType::isAllowedInES2\28\29\20const +9263:SkSL::LiteralType::minimumValue\28\29\20const +9264:SkSL::LiteralType::maximumValue\28\29\20const +9265:SkSL::LiteralType::isOrContainsBool\28\29\20const +9266:SkSL::Literal::getConstantValue\28int\29\20const +9267:SkSL::Literal::description\28SkSL::OperatorPrecedence\29\20const +9268:SkSL::Literal::compareConstant\28SkSL::Expression\20const&\29\20const +9269:SkSL::Literal::clone\28SkSL::Position\29\20const +9270:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_uintBitsToFloat\28double\2c\20double\2c\20double\29 +9271:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_trunc\28double\2c\20double\2c\20double\29 +9272:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tanh\28double\2c\20double\2c\20double\29 +9273:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tan\28double\2c\20double\2c\20double\29 +9274:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_step\28double\2c\20double\2c\20double\29 +9275:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sqrt\28double\2c\20double\2c\20double\29 +9276:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_smoothstep\28double\2c\20double\2c\20double\29 +9277:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sinh\28double\2c\20double\2c\20double\29 +9278:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sin\28double\2c\20double\2c\20double\29 +9279:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_saturate\28double\2c\20double\2c\20double\29 +9280:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_radians\28double\2c\20double\2c\20double\29 +9281:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_pow\28double\2c\20double\2c\20double\29 +9282:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mod\28double\2c\20double\2c\20double\29 +9283:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mix\28double\2c\20double\2c\20double\29 +9284:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_min\28double\2c\20double\2c\20double\29 +9285:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_max\28double\2c\20double\2c\20double\29 +9286:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_matrixCompMult\28double\2c\20double\2c\20double\29 +9287:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log\28double\2c\20double\2c\20double\29 +9288:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log2\28double\2c\20double\2c\20double\29 +9289:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_inversesqrt\28double\2c\20double\2c\20double\29 +9290:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_intBitsToFloat\28double\2c\20double\2c\20double\29 +9291:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fract\28double\2c\20double\2c\20double\29 +9292:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fma\28double\2c\20double\2c\20double\29 +9293:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floor\28double\2c\20double\2c\20double\29 +9294:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToUint\28double\2c\20double\2c\20double\29 +9295:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToInt\28double\2c\20double\2c\20double\29 +9296:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp\28double\2c\20double\2c\20double\29 +9297:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp2\28double\2c\20double\2c\20double\29 +9298:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_degrees\28double\2c\20double\2c\20double\29 +9299:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cosh\28double\2c\20double\2c\20double\29 +9300:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cos\28double\2c\20double\2c\20double\29 +9301:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_clamp\28double\2c\20double\2c\20double\29 +9302:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_ceil\28double\2c\20double\2c\20double\29 +9303:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atanh\28double\2c\20double\2c\20double\29 +9304:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan\28double\2c\20double\2c\20double\29 +9305:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan2\28double\2c\20double\2c\20double\29 +9306:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asinh\28double\2c\20double\2c\20double\29 +9307:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asin\28double\2c\20double\2c\20double\29 +9308:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acosh\28double\2c\20double\2c\20double\29 +9309:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acos\28double\2c\20double\2c\20double\29 +9310:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_abs\28double\2c\20double\2c\20double\29 +9311:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_notEqual\28double\2c\20double\29 +9312:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThan\28double\2c\20double\29 +9313:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThanEqual\28double\2c\20double\29 +9314:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThan\28double\2c\20double\29 +9315:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThanEqual\28double\2c\20double\29 +9316:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_equal\28double\2c\20double\29 +9317:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_dot\28double\2c\20double\2c\20double\29 +9318:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_any\28double\2c\20double\2c\20double\29 +9319:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_all\28double\2c\20double\2c\20double\29 +9320:SkSL::InterfaceBlock::~InterfaceBlock\28\29_6619 +9321:SkSL::InterfaceBlock::description\28\29\20const +9322:SkSL::IndexExpression::~IndexExpression\28\29_6616 +9323:SkSL::IndexExpression::~IndexExpression\28\29 +9324:SkSL::IndexExpression::description\28SkSL::OperatorPrecedence\29\20const +9325:SkSL::IndexExpression::clone\28SkSL::Position\29\20const +9326:SkSL::IfStatement::~IfStatement\28\29_6609 +9327:SkSL::IfStatement::~IfStatement\28\29 +9328:SkSL::IfStatement::description\28\29\20const +9329:SkSL::GlobalVarDeclaration::description\28\29\20const +9330:SkSL::GenericType::slotType\28unsigned\20long\29\20const +9331:SkSL::GenericType::coercibleTypes\28\29\20const +9332:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29_12911 +9333:SkSL::FunctionReference::description\28SkSL::OperatorPrecedence\29\20const +9334:SkSL::FunctionReference::clone\28SkSL::Position\29\20const +9335:SkSL::FunctionPrototype::description\28\29\20const +9336:SkSL::FunctionDefinition::description\28\29\20const +9337:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29_6600 +9338:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29 +9339:SkSL::FunctionCall::description\28SkSL::OperatorPrecedence\29\20const +9340:SkSL::FunctionCall::clone\28SkSL::Position\29\20const +9341:SkSL::ForStatement::~ForStatement\28\29_6491 +9342:SkSL::ForStatement::~ForStatement\28\29 +9343:SkSL::ForStatement::description\28\29\20const +9344:SkSL::FieldSymbol::description\28\29\20const +9345:SkSL::FieldAccess::clone\28SkSL::Position\29\20const +9346:SkSL::Extension::description\28\29\20const +9347:SkSL::ExtendedVariable::~ExtendedVariable\28\29_6941 +9348:SkSL::ExtendedVariable::~ExtendedVariable\28\29 +9349:SkSL::ExtendedVariable::mangledName\28\29\20const +9350:SkSL::ExtendedVariable::layout\28\29\20const +9351:SkSL::ExtendedVariable::interfaceBlock\28\29\20const +9352:SkSL::ExtendedVariable::detachDeadInterfaceBlock\28\29 +9353:SkSL::ExpressionStatement::description\28\29\20const +9354:SkSL::Expression::getConstantValue\28int\29\20const +9355:SkSL::EmptyExpression::description\28SkSL::OperatorPrecedence\29\20const +9356:SkSL::EmptyExpression::clone\28SkSL::Position\29\20const +9357:SkSL::DoStatement::description\28\29\20const +9358:SkSL::DiscardStatement::description\28\29\20const +9359:SkSL::DebugTracePriv::~DebugTracePriv\28\29_6972 +9360:SkSL::DebugTracePriv::dump\28SkWStream*\29\20const +9361:SkSL::CountReturnsWithLimit::visitStatement\28SkSL::Statement\20const&\29 +9362:SkSL::ContinueStatement::description\28\29\20const +9363:SkSL::ConstructorStruct::clone\28SkSL::Position\29\20const +9364:SkSL::ConstructorSplat::getConstantValue\28int\29\20const +9365:SkSL::ConstructorSplat::clone\28SkSL::Position\29\20const +9366:SkSL::ConstructorScalarCast::clone\28SkSL::Position\29\20const +9367:SkSL::ConstructorMatrixResize::getConstantValue\28int\29\20const +9368:SkSL::ConstructorMatrixResize::clone\28SkSL::Position\29\20const +9369:SkSL::ConstructorDiagonalMatrix::getConstantValue\28int\29\20const +9370:SkSL::ConstructorDiagonalMatrix::clone\28SkSL::Position\29\20const +9371:SkSL::ConstructorCompoundCast::clone\28SkSL::Position\29\20const +9372:SkSL::ConstructorCompound::clone\28SkSL::Position\29\20const +9373:SkSL::ConstructorArrayCast::clone\28SkSL::Position\29\20const +9374:SkSL::ConstructorArray::clone\28SkSL::Position\29\20const +9375:SkSL::Compiler::CompilerErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +9376:SkSL::CodeGenerator::~CodeGenerator\28\29 +9377:SkSL::ChildCall::description\28SkSL::OperatorPrecedence\29\20const +9378:SkSL::ChildCall::clone\28SkSL::Position\29\20const +9379:SkSL::BreakStatement::description\28\29\20const +9380:SkSL::Block::~Block\28\29_6393 +9381:SkSL::Block::~Block\28\29 +9382:SkSL::Block::isEmpty\28\29\20const +9383:SkSL::Block::description\28\29\20const +9384:SkSL::BinaryExpression::~BinaryExpression\28\29_6386 +9385:SkSL::BinaryExpression::~BinaryExpression\28\29 +9386:SkSL::BinaryExpression::description\28SkSL::OperatorPrecedence\29\20const +9387:SkSL::BinaryExpression::clone\28SkSL::Position\29\20const +9388:SkSL::ArrayType::slotType\28unsigned\20long\29\20const +9389:SkSL::ArrayType::slotCount\28\29\20const +9390:SkSL::ArrayType::matches\28SkSL::Type\20const&\29\20const +9391:SkSL::ArrayType::isUnsizedArray\28\29\20const +9392:SkSL::ArrayType::isOrContainsUnsizedArray\28\29\20const +9393:SkSL::ArrayType::isBuiltin\28\29\20const +9394:SkSL::ArrayType::isAllowedInUniform\28SkSL::Position*\29\20const +9395:SkSL::AnyConstructor::getConstantValue\28int\29\20const +9396:SkSL::AnyConstructor::description\28SkSL::OperatorPrecedence\29\20const +9397:SkSL::AnyConstructor::compareConstant\28SkSL::Expression\20const&\29\20const +9398:SkSL::Analysis::\28anonymous\20namespace\29::LoopControlFlowVisitor::visitStatement\28SkSL::Statement\20const&\29 +9399:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29::IsDynamicallyUniformExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +9400:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29::IsCompileTimeConstantVisitor::visitExpression\28SkSL::Expression\20const&\29 +9401:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29::HasSideEffectsVisitor::visitExpression\28SkSL::Expression\20const&\29 +9402:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29_6168 +9403:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29 +9404:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::visitExpression\28SkSL::Expression\20const&\29 +9405:SkSL::Analysis::ContainsVariable\28SkSL::Expression\20const&\2c\20SkSL::Variable\20const&\29::ContainsVariableVisitor::visitExpression\28SkSL::Expression\20const&\29 +9406:SkSL::Analysis::ContainsRTAdjust\28SkSL::Expression\20const&\29::ContainsRTAdjustVisitor::visitExpression\28SkSL::Expression\20const&\29 +9407:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29_6094 +9408:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29 +9409:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitExpression\28SkSL::Expression\20const&\29 +9410:SkSL::AliasType::textureAccess\28\29\20const +9411:SkSL::AliasType::slotType\28unsigned\20long\29\20const +9412:SkSL::AliasType::slotCount\28\29\20const +9413:SkSL::AliasType::rows\28\29\20const +9414:SkSL::AliasType::priority\28\29\20const +9415:SkSL::AliasType::isVector\28\29\20const +9416:SkSL::AliasType::isUnsizedArray\28\29\20const +9417:SkSL::AliasType::isStruct\28\29\20const +9418:SkSL::AliasType::isScalar\28\29\20const +9419:SkSL::AliasType::isMultisampled\28\29\20const +9420:SkSL::AliasType::isMatrix\28\29\20const +9421:SkSL::AliasType::isLiteral\28\29\20const +9422:SkSL::AliasType::isInterfaceBlock\28\29\20const +9423:SkSL::AliasType::isDepth\28\29\20const +9424:SkSL::AliasType::isArrayedTexture\28\29\20const +9425:SkSL::AliasType::isArray\28\29\20const +9426:SkSL::AliasType::dimensions\28\29\20const +9427:SkSL::AliasType::componentType\28\29\20const +9428:SkSL::AliasType::columns\28\29\20const +9429:SkSL::AliasType::coercibleTypes\28\29\20const +9430:SkRuntimeShader::~SkRuntimeShader\28\29_4986 +9431:SkRuntimeShader::type\28\29\20const +9432:SkRuntimeShader::isOpaque\28\29\20const +9433:SkRuntimeShader::getTypeName\28\29\20const +9434:SkRuntimeShader::flatten\28SkWriteBuffer&\29\20const +9435:SkRuntimeShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9436:SkRuntimeEffect::~SkRuntimeEffect\28\29_4075 +9437:SkRuntimeEffect::MakeFromSource\28SkString\2c\20SkRuntimeEffect::Options\20const&\2c\20SkSL::ProgramKind\29 +9438:SkRuntimeColorFilter::~SkRuntimeColorFilter\28\29_5397 +9439:SkRuntimeColorFilter::~SkRuntimeColorFilter\28\29 +9440:SkRuntimeColorFilter::onIsAlphaUnchanged\28\29\20const +9441:SkRuntimeColorFilter::getTypeName\28\29\20const +9442:SkRuntimeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +9443:SkRuntimeBlender::~SkRuntimeBlender\28\29_4041 +9444:SkRuntimeBlender::~SkRuntimeBlender\28\29 +9445:SkRuntimeBlender::onAppendStages\28SkStageRec\20const&\29\20const +9446:SkRuntimeBlender::getTypeName\28\29\20const +9447:SkRgnClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +9448:SkRgnClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +9449:SkRgnClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +9450:SkRgnClipBlitter::blitH\28int\2c\20int\2c\20int\29 +9451:SkRgnClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +9452:SkRgnClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +9453:SkRgnBuilder::~SkRgnBuilder\28\29_3988 +9454:SkRgnBuilder::blitH\28int\2c\20int\2c\20int\29 +9455:SkResourceCache::~SkResourceCache\28\29_4007 +9456:SkResourceCache::purgeSharedID\28unsigned\20long\20long\29 +9457:SkResourceCache::purgeAll\28\29 +9458:SkResourceCache::SetTotalByteLimit\28unsigned\20long\29 +9459:SkResourceCache::GetTotalBytesUsed\28\29 +9460:SkResourceCache::GetTotalByteLimit\28\29 +9461:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29_4801 +9462:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29 +9463:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::rowBytes\28int\29\20const +9464:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::data\28int\29\20const +9465:SkRefCntSet::~SkRefCntSet\28\29_2111 +9466:SkRefCntSet::incPtr\28void*\29 +9467:SkRefCntSet::decPtr\28void*\29 +9468:SkRectClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +9469:SkRectClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +9470:SkRectClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +9471:SkRectClipBlitter::blitH\28int\2c\20int\2c\20int\29 +9472:SkRectClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +9473:SkRectClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +9474:SkRecordedDrawable::~SkRecordedDrawable\28\29_3935 +9475:SkRecordedDrawable::~SkRecordedDrawable\28\29 +9476:SkRecordedDrawable::onMakePictureSnapshot\28\29 +9477:SkRecordedDrawable::onGetBounds\28\29 +9478:SkRecordedDrawable::onDraw\28SkCanvas*\29 +9479:SkRecordedDrawable::onApproximateBytesUsed\28\29 +9480:SkRecordedDrawable::getTypeName\28\29\20const +9481:SkRecordedDrawable::flatten\28SkWriteBuffer&\29\20const +9482:SkRecordCanvas::~SkRecordCanvas\28\29_3890 +9483:SkRecordCanvas::~SkRecordCanvas\28\29 +9484:SkRecordCanvas::willSave\28\29 +9485:SkRecordCanvas::onResetClip\28\29 +9486:SkRecordCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +9487:SkRecordCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +9488:SkRecordCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +9489:SkRecordCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +9490:SkRecordCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +9491:SkRecordCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +9492:SkRecordCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +9493:SkRecordCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +9494:SkRecordCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +9495:SkRecordCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +9496:SkRecordCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +9497:SkRecordCanvas::onDrawPaint\28SkPaint\20const&\29 +9498:SkRecordCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +9499:SkRecordCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +9500:SkRecordCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +9501:SkRecordCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +9502:SkRecordCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +9503:SkRecordCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +9504:SkRecordCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +9505:SkRecordCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +9506:SkRecordCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +9507:SkRecordCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +9508:SkRecordCanvas::onDrawBehind\28SkPaint\20const&\29 +9509:SkRecordCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +9510:SkRecordCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +9511:SkRecordCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +9512:SkRecordCanvas::onDoSaveBehind\28SkRect\20const*\29 +9513:SkRecordCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +9514:SkRecordCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +9515:SkRecordCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +9516:SkRecordCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +9517:SkRecordCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +9518:SkRecordCanvas::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +9519:SkRecordCanvas::didTranslate\28float\2c\20float\29 +9520:SkRecordCanvas::didSetM44\28SkM44\20const&\29 +9521:SkRecordCanvas::didScale\28float\2c\20float\29 +9522:SkRecordCanvas::didRestore\28\29 +9523:SkRecordCanvas::didConcat44\28SkM44\20const&\29 +9524:SkRecord::~SkRecord\28\29_3837 +9525:SkRecord::~SkRecord\28\29 +9526:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29_1516 +9527:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29 +9528:SkRasterPipelineSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +9529:SkRasterPipelineSpriteBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +9530:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29_3792 +9531:SkRasterPipelineBlitter::canDirectBlit\28\29 +9532:SkRasterPipelineBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +9533:SkRasterPipelineBlitter::blitH\28int\2c\20int\2c\20int\29 +9534:SkRasterPipelineBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +9535:SkRasterPipelineBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +9536:SkRasterPipelineBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +9537:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_3::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +9538:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_2::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +9539:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_1::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +9540:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_0::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +9541:SkRadialGradient::getTypeName\28\29\20const +9542:SkRadialGradient::flatten\28SkWriteBuffer&\29\20const +9543:SkRadialGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +9544:SkRadialGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +9545:SkRTree::~SkRTree\28\29_3725 +9546:SkRTree::~SkRTree\28\29 +9547:SkRTree::search\28SkRect\20const&\2c\20std::__2::vector>*\29\20const +9548:SkRTree::insert\28SkRect\20const*\2c\20int\29 +9549:SkRTree::bytesUsed\28\29\20const +9550:SkPtrSet::~SkPtrSet\28\29 +9551:SkPngNormalDecoder::~SkPngNormalDecoder\28\29 +9552:SkPngNormalDecoder::setRange\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +9553:SkPngNormalDecoder::decode\28int*\29 +9554:SkPngNormalDecoder::decodeAllRows\28void*\2c\20unsigned\20long\2c\20int*\29 +9555:SkPngNormalDecoder::RowCallback\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20int\2c\20int\29 +9556:SkPngNormalDecoder::AllRowsCallback\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20int\2c\20int\29 +9557:SkPngInterlacedDecoder::~SkPngInterlacedDecoder\28\29_13075 +9558:SkPngInterlacedDecoder::~SkPngInterlacedDecoder\28\29 +9559:SkPngInterlacedDecoder::setRange\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +9560:SkPngInterlacedDecoder::decode\28int*\29 +9561:SkPngInterlacedDecoder::decodeAllRows\28void*\2c\20unsigned\20long\2c\20int*\29 +9562:SkPngInterlacedDecoder::InterlacedRowCallback\28png_struct_def*\2c\20unsigned\20char*\2c\20unsigned\20int\2c\20int\29 +9563:SkPngEncoderImpl::~SkPngEncoderImpl\28\29_12933 +9564:SkPngEncoderImpl::onFinishEncoding\28\29 +9565:SkPngEncoderImpl::onEncodeRow\28SkSpan\29 +9566:SkPngEncoderBase::~SkPngEncoderBase\28\29 +9567:SkPngEncoderBase::onEncodeRows\28int\29 +9568:SkPngCompositeChunkReader::~SkPngCompositeChunkReader\28\29_13083 +9569:SkPngCompositeChunkReader::~SkPngCompositeChunkReader\28\29 +9570:SkPngCompositeChunkReader::readChunk\28char\20const*\2c\20void\20const*\2c\20unsigned\20long\29 +9571:SkPngCodecBase::initializeXforms\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\2c\20int\29 +9572:SkPngCodecBase::getSampler\28bool\29 +9573:SkPngCodec::~SkPngCodec\28\29_13067 +9574:SkPngCodec::onTryGetTrnsChunk\28\29 +9575:SkPngCodec::onTryGetPlteChunk\28\29 +9576:SkPngCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +9577:SkPngCodec::onRewind\28\29 +9578:SkPngCodec::onIncrementalDecode\28int*\29 +9579:SkPngCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +9580:SkPngCodec::onGetGainmapInfo\28SkGainmapInfo*\29 +9581:SkPngCodec::onGetGainmapCodec\28SkGainmapInfo*\2c\20std::__2::unique_ptr>*\29 +9582:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_2::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +9583:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_1::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +9584:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_0::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +9585:SkPixelRef::~SkPixelRef\28\29_3656 +9586:SkPictureShader::~SkPictureShader\28\29_4970 +9587:SkPictureShader::~SkPictureShader\28\29 +9588:SkPictureShader::type\28\29\20const +9589:SkPictureShader::getTypeName\28\29\20const +9590:SkPictureShader::flatten\28SkWriteBuffer&\29\20const +9591:SkPictureShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9592:SkPictureRecorder*\20emscripten::internal::operator_new\28\29 +9593:SkPictureRecord::~SkPictureRecord\28\29_3640 +9594:SkPictureRecord::willSave\28\29 +9595:SkPictureRecord::willRestore\28\29 +9596:SkPictureRecord::onResetClip\28\29 +9597:SkPictureRecord::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +9598:SkPictureRecord::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +9599:SkPictureRecord::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +9600:SkPictureRecord::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +9601:SkPictureRecord::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +9602:SkPictureRecord::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +9603:SkPictureRecord::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +9604:SkPictureRecord::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +9605:SkPictureRecord::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +9606:SkPictureRecord::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +9607:SkPictureRecord::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +9608:SkPictureRecord::onDrawPaint\28SkPaint\20const&\29 +9609:SkPictureRecord::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +9610:SkPictureRecord::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +9611:SkPictureRecord::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +9612:SkPictureRecord::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +9613:SkPictureRecord::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +9614:SkPictureRecord::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +9615:SkPictureRecord::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +9616:SkPictureRecord::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +9617:SkPictureRecord::onDrawBehind\28SkPaint\20const&\29 +9618:SkPictureRecord::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +9619:SkPictureRecord::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +9620:SkPictureRecord::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +9621:SkPictureRecord::onDoSaveBehind\28SkRect\20const*\29 +9622:SkPictureRecord::onClipShader\28sk_sp\2c\20SkClipOp\29 +9623:SkPictureRecord::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +9624:SkPictureRecord::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +9625:SkPictureRecord::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +9626:SkPictureRecord::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +9627:SkPictureRecord::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +9628:SkPictureRecord::didTranslate\28float\2c\20float\29 +9629:SkPictureRecord::didSetM44\28SkM44\20const&\29 +9630:SkPictureRecord::didScale\28float\2c\20float\29 +9631:SkPictureRecord::didConcat44\28SkM44\20const&\29 +9632:SkPictureData::serialize\28SkWStream*\2c\20SkSerialProcs\20const&\2c\20SkRefCntSet*\2c\20bool\29\20const::DevNull::write\28void\20const*\2c\20unsigned\20long\29 +9633:SkPerlinNoiseShader::~SkPerlinNoiseShader\28\29_4954 +9634:SkPerlinNoiseShader::~SkPerlinNoiseShader\28\29 +9635:SkPerlinNoiseShader::getTypeName\28\29\20const +9636:SkPerlinNoiseShader::flatten\28SkWriteBuffer&\29\20const +9637:SkPerlinNoiseShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9638:SkPathEffectBase::asADash\28\29\20const +9639:SkPath::setIsVolatile\28bool\29 +9640:SkPath::setFillType\28SkPathFillType\29 +9641:SkPath::isVolatile\28\29\20const +9642:SkPath::getFillType\28\29\20const +9643:SkPath2DPathEffectImpl::~SkPath2DPathEffectImpl\28\29_5231 +9644:SkPath2DPathEffectImpl::~SkPath2DPathEffectImpl\28\29 +9645:SkPath2DPathEffectImpl::next\28SkPoint\20const&\2c\20int\2c\20int\2c\20SkPathBuilder*\29\20const +9646:SkPath2DPathEffectImpl::getTypeName\28\29\20const +9647:SkPath2DPathEffectImpl::getFactory\28\29\20const +9648:SkPath2DPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +9649:SkPath2DPathEffectImpl::CreateProc\28SkReadBuffer&\29 +9650:SkPath1DPathEffectImpl::~SkPath1DPathEffectImpl\28\29_5205 +9651:SkPath1DPathEffectImpl::~SkPath1DPathEffectImpl\28\29 +9652:SkPath1DPathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +9653:SkPath1DPathEffectImpl::next\28SkPathBuilder*\2c\20float\2c\20SkPathMeasure&\29\20const +9654:SkPath1DPathEffectImpl::getTypeName\28\29\20const +9655:SkPath1DPathEffectImpl::getFactory\28\29\20const +9656:SkPath1DPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +9657:SkPath1DPathEffectImpl::begin\28float\29\20const +9658:SkPath1DPathEffectImpl::CreateProc\28SkReadBuffer&\29 +9659:SkPath1DPathEffect::Make\28SkPath\20const&\2c\20float\2c\20float\2c\20SkPath1DPathEffect::Style\29 +9660:SkPath*\20emscripten::internal::operator_new\28\29 +9661:SkPairPathEffect::~SkPairPathEffect\28\29_3469 +9662:SkPaint::setDither\28bool\29 +9663:SkPaint::setAntiAlias\28bool\29 +9664:SkPaint::getStrokeMiter\28\29\20const +9665:SkPaint::getStrokeJoin\28\29\20const +9666:SkPaint::getStrokeCap\28\29\20const +9667:SkPaint*\20emscripten::internal::operator_new\28\29 +9668:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29_8335 +9669:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29 +9670:SkOTUtils::LocalizedStrings_SingleName::next\28SkTypeface::LocalizedString*\29 +9671:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29_7608 +9672:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29 +9673:SkOTUtils::LocalizedStrings_NameTable::next\28SkTypeface::LocalizedString*\29 +9674:SkNoPixelsDevice::~SkNoPixelsDevice\28\29_1990 +9675:SkNoPixelsDevice::~SkNoPixelsDevice\28\29 +9676:SkNoPixelsDevice::replaceClip\28SkIRect\20const&\29 +9677:SkNoPixelsDevice::pushClipStack\28\29 +9678:SkNoPixelsDevice::popClipStack\28\29 +9679:SkNoPixelsDevice::onClipShader\28sk_sp\29 +9680:SkNoPixelsDevice::isClipWideOpen\28\29\20const +9681:SkNoPixelsDevice::isClipRect\28\29\20const +9682:SkNoPixelsDevice::isClipEmpty\28\29\20const +9683:SkNoPixelsDevice::isClipAntiAliased\28\29\20const +9684:SkNoPixelsDevice::devClipBounds\28\29\20const +9685:SkNoPixelsDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +9686:SkNoPixelsDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +9687:SkNoPixelsDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +9688:SkNoPixelsDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +9689:SkNoPixelsDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +9690:SkNoDrawCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +9691:SkNoDrawCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +9692:SkMipmap::~SkMipmap\28\29_2641 +9693:SkMipmap::~SkMipmap\28\29 +9694:SkMipmap::onDataChange\28void*\2c\20void*\29 +9695:SkMemoryStream::~SkMemoryStream\28\29_4322 +9696:SkMemoryStream::~SkMemoryStream\28\29 +9697:SkMemoryStream::setMemory\28void\20const*\2c\20unsigned\20long\2c\20bool\29 +9698:SkMemoryStream::seek\28unsigned\20long\29 +9699:SkMemoryStream::rewind\28\29 +9700:SkMemoryStream::read\28void*\2c\20unsigned\20long\29 +9701:SkMemoryStream::peek\28void*\2c\20unsigned\20long\29\20const +9702:SkMemoryStream::onFork\28\29\20const +9703:SkMemoryStream::onDuplicate\28\29\20const +9704:SkMemoryStream::move\28long\29 +9705:SkMemoryStream::isAtEnd\28\29\20const +9706:SkMemoryStream::getMemoryBase\28\29 +9707:SkMemoryStream::getLength\28\29\20const +9708:SkMemoryStream::getData\28\29\20const +9709:SkMatrixColorFilter::onIsAlphaUnchanged\28\29\20const +9710:SkMatrixColorFilter::onAsAColorMatrix\28float*\29\20const +9711:SkMatrixColorFilter::getTypeName\28\29\20const +9712:SkMatrixColorFilter::flatten\28SkWriteBuffer&\29\20const +9713:SkMatrixColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +9714:SkMatrix::Trans_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +9715:SkMatrix::Scale_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +9716:SkMatrix::Poly4Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +9717:SkMatrix::Poly3Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +9718:SkMatrix::Poly2Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +9719:SkMatrix::Persp_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +9720:SkMatrix::Identity_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +9721:SkMatrix::Affine_vpts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +9722:SkMaskSwizzler::onSetSampleX\28int\29 +9723:SkMaskFilterBase::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +9724:SkMaskFilterBase::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +9725:SkMaskFilterBase::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +9726:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29_2454 +9727:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29 +9728:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29_3666 +9729:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29 +9730:SkLumaColorFilter::Make\28\29 +9731:SkLocalMatrixShader::~SkLocalMatrixShader\28\29_4935 +9732:SkLocalMatrixShader::~SkLocalMatrixShader\28\29 +9733:SkLocalMatrixShader::type\28\29\20const +9734:SkLocalMatrixShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +9735:SkLocalMatrixShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +9736:SkLocalMatrixShader::makeAsALocalMatrixShader\28SkMatrix*\29\20const +9737:SkLocalMatrixShader::isOpaque\28\29\20const +9738:SkLocalMatrixShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +9739:SkLocalMatrixShader::getTypeName\28\29\20const +9740:SkLocalMatrixShader::flatten\28SkWriteBuffer&\29\20const +9741:SkLocalMatrixShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +9742:SkLocalMatrixShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9743:SkLinearGradient::getTypeName\28\29\20const +9744:SkLinearGradient::flatten\28SkWriteBuffer&\29\20const +9745:SkLinearGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +9746:SkLine2DPathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +9747:SkLine2DPathEffectImpl::nextSpan\28int\2c\20int\2c\20int\2c\20SkPathBuilder*\29\20const +9748:SkLine2DPathEffectImpl::getTypeName\28\29\20const +9749:SkLine2DPathEffectImpl::getFactory\28\29\20const +9750:SkLine2DPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +9751:SkLine2DPathEffectImpl::CreateProc\28SkReadBuffer&\29 +9752:SkJpegMetadataDecoderImpl::~SkJpegMetadataDecoderImpl\28\29_12991 +9753:SkJpegMetadataDecoderImpl::~SkJpegMetadataDecoderImpl\28\29 +9754:SkJpegMetadataDecoderImpl::getJUMBFMetadata\28bool\29\20const +9755:SkJpegMetadataDecoderImpl::getISOGainmapMetadata\28bool\29\20const +9756:SkJpegMetadataDecoderImpl::getICCProfileData\28bool\29\20const +9757:SkJpegMetadataDecoderImpl::getExifMetadata\28bool\29\20const +9758:SkJpegMemorySourceMgr::skipInputBytes\28unsigned\20long\2c\20unsigned\20char\20const*&\2c\20unsigned\20long&\29 +9759:SkJpegMemorySourceMgr::initSource\28unsigned\20char\20const*&\2c\20unsigned\20long&\29 +9760:SkJpegDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +9761:SkJpegCodec::~SkJpegCodec\28\29_12946 +9762:SkJpegCodec::~SkJpegCodec\28\29 +9763:SkJpegCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +9764:SkJpegCodec::onSkipScanlines\28int\29 +9765:SkJpegCodec::onRewind\28\29 +9766:SkJpegCodec::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +9767:SkJpegCodec::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +9768:SkJpegCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +9769:SkJpegCodec::onGetScaledDimensions\28float\29\20const +9770:SkJpegCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +9771:SkJpegCodec::onGetGainmapCodec\28SkGainmapInfo*\2c\20std::__2::unique_ptr>*\29 +9772:SkJpegCodec::onDimensionsSupported\28SkISize\20const&\29 +9773:SkJpegCodec::getSampler\28bool\29 +9774:SkJpegCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +9775:SkJpegBufferedSourceMgr::~SkJpegBufferedSourceMgr\28\29_13000 +9776:SkJpegBufferedSourceMgr::~SkJpegBufferedSourceMgr\28\29 +9777:SkJpegBufferedSourceMgr::skipInputBytes\28unsigned\20long\2c\20unsigned\20char\20const*&\2c\20unsigned\20long&\29 +9778:SkJpegBufferedSourceMgr::initSource\28unsigned\20char\20const*&\2c\20unsigned\20long&\29 +9779:SkJpegBufferedSourceMgr::fillInputBuffer\28unsigned\20char\20const*&\2c\20unsigned\20long&\29 +9780:SkImage_Raster::~SkImage_Raster\28\29_4773 +9781:SkImage_Raster::~SkImage_Raster\28\29 +9782:SkImage_Raster::onReinterpretColorSpace\28sk_sp\29\20const +9783:SkImage_Raster::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +9784:SkImage_Raster::onPeekPixels\28SkPixmap*\29\20const +9785:SkImage_Raster::onPeekMips\28\29\20const +9786:SkImage_Raster::onMakeWithMipmaps\28sk_sp\29\20const +9787:SkImage_Raster::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +9788:SkImage_Raster::onHasMipmaps\28\29\20const +9789:SkImage_Raster::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +9790:SkImage_Raster::notifyAddedToRasterCache\28\29\20const +9791:SkImage_Raster::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +9792:SkImage_Raster::isValid\28SkRecorder*\29\20const +9793:SkImage_Raster::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +9794:SkImage_LazyTexture::readPixelsProxy\28GrDirectContext*\2c\20SkPixmap\20const&\29\20const +9795:SkImage_LazyTexture::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +9796:SkImage_Lazy::~SkImage_Lazy\28\29 +9797:SkImage_Lazy::onReinterpretColorSpace\28sk_sp\29\20const +9798:SkImage_Lazy::onRefEncoded\28\29\20const +9799:SkImage_Lazy::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +9800:SkImage_Lazy::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +9801:SkImage_Lazy::onIsProtected\28\29\20const +9802:SkImage_Lazy::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +9803:SkImage_Lazy::isValid\28SkRecorder*\29\20const +9804:SkImage_Lazy::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +9805:SkImage_GaneshBase::~SkImage_GaneshBase\28\29 +9806:SkImage_GaneshBase::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +9807:SkImage_GaneshBase::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +9808:SkImage_GaneshBase::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +9809:SkImage_GaneshBase::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +9810:SkImage_GaneshBase::isValid\28SkRecorder*\29\20const +9811:SkImage_GaneshBase::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +9812:SkImage_GaneshBase::directContext\28\29\20const +9813:SkImage_Ganesh::~SkImage_Ganesh\28\29_10881 +9814:SkImage_Ganesh::textureSize\28\29\20const +9815:SkImage_Ganesh::onReinterpretColorSpace\28sk_sp\29\20const +9816:SkImage_Ganesh::onMakeColorTypeAndColorSpace\28GrDirectContext*\2c\20SkColorType\2c\20sk_sp\29\20const +9817:SkImage_Ganesh::onIsProtected\28\29\20const +9818:SkImage_Ganesh::onHasMipmaps\28\29\20const +9819:SkImage_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +9820:SkImage_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +9821:SkImage_Ganesh::generatingSurfaceIsDeleted\28\29 +9822:SkImage_Ganesh::flush\28GrDirectContext*\2c\20GrFlushInfo\20const&\29\20const +9823:SkImage_Ganesh::asView\28GrRecordingContext*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29\20const +9824:SkImage_Ganesh::asFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29\20const +9825:SkImage_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +9826:SkImage_Base::notifyAddedToRasterCache\28\29\20const +9827:SkImage_Base::makeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +9828:SkImage_Base::makeColorSpace\28SkRecorder*\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +9829:SkImage_Base::isTextureBacked\28\29\20const +9830:SkImage_Base::isLazyGenerated\28\29\20const +9831:SkImageShader::~SkImageShader\28\29_4920 +9832:SkImageShader::~SkImageShader\28\29 +9833:SkImageShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +9834:SkImageShader::isOpaque\28\29\20const +9835:SkImageShader::getTypeName\28\29\20const +9836:SkImageShader::flatten\28SkWriteBuffer&\29\20const +9837:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9838:SkImageGenerator::~SkImageGenerator\28\29 +9839:SkImageFilters::Compose\28sk_sp\2c\20sk_sp\29 +9840:SkImage::~SkImage\28\29 +9841:SkIcoDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +9842:SkIcoCodec::~SkIcoCodec\28\29_13022 +9843:SkIcoCodec::~SkIcoCodec\28\29 +9844:SkIcoCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +9845:SkIcoCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +9846:SkIcoCodec::onSkipScanlines\28int\29 +9847:SkIcoCodec::onIncrementalDecode\28int*\29 +9848:SkIcoCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +9849:SkIcoCodec::onGetScanlineOrder\28\29\20const +9850:SkIcoCodec::onGetScaledDimensions\28float\29\20const +9851:SkIcoCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +9852:SkIcoCodec::onDimensionsSupported\28SkISize\20const&\29 +9853:SkIcoCodec::getSampler\28bool\29 +9854:SkIcoCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +9855:SkGradientBaseShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +9856:SkGradientBaseShader::isOpaque\28\29\20const +9857:SkGradientBaseShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9858:SkGifDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +9859:SkGaussianColorFilter::getTypeName\28\29\20const +9860:SkGaussianColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +9861:SkGammaColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +9862:SkGammaColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +9863:SkGainmapInfo::serialize\28\29\20const +9864:SkGainmapInfo::SerializeVersion\28\29 +9865:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29_8262 +9866:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29 +9867:SkFontStyleSet_Custom::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +9868:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29_8328 +9869:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29 +9870:SkFontScanner_FreeType::scanFile\28SkStreamAsset*\2c\20int*\29\20const +9871:SkFontScanner_FreeType::scanFace\28SkStreamAsset*\2c\20int\2c\20int*\29\20const +9872:SkFontScanner_FreeType::getFactoryId\28\29\20const +9873:SkFontMgr_Custom::~SkFontMgr_Custom\28\29_8264 +9874:SkFontMgr_Custom::~SkFontMgr_Custom\28\29 +9875:SkFontMgr_Custom::onMatchFamily\28char\20const*\29\20const +9876:SkFontMgr_Custom::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +9877:SkFontMgr_Custom::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +9878:SkFontMgr_Custom::onMakeFromFile\28char\20const*\2c\20int\29\20const +9879:SkFontMgr_Custom::onMakeFromData\28sk_sp\2c\20int\29\20const +9880:SkFontMgr_Custom::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +9881:SkFontMgr_Custom::onGetFamilyName\28int\2c\20SkString*\29\20const +9882:SkFont::setScaleX\28float\29 +9883:SkFont::setEmbeddedBitmaps\28bool\29 +9884:SkFont::isEmbolden\28\29\20const +9885:SkFont::getSkewX\28\29\20const +9886:SkFont::getSize\28\29\20const +9887:SkFont::getScaleX\28\29\20const +9888:SkFont*\20emscripten::internal::operator_new\2c\20float\2c\20float\2c\20float>\28sk_sp&&\2c\20float&&\2c\20float&&\2c\20float&&\29 +9889:SkFont*\20emscripten::internal::operator_new\2c\20float>\28sk_sp&&\2c\20float&&\29 +9890:SkFont*\20emscripten::internal::operator_new>\28sk_sp&&\29 +9891:SkFont*\20emscripten::internal::operator_new\28\29 +9892:SkFILEStream::~SkFILEStream\28\29_4275 +9893:SkFILEStream::~SkFILEStream\28\29 +9894:SkFILEStream::seek\28unsigned\20long\29 +9895:SkFILEStream::rewind\28\29 +9896:SkFILEStream::read\28void*\2c\20unsigned\20long\29 +9897:SkFILEStream::onFork\28\29\20const +9898:SkFILEStream::onDuplicate\28\29\20const +9899:SkFILEStream::move\28long\29 +9900:SkFILEStream::isAtEnd\28\29\20const +9901:SkFILEStream::getPosition\28\29\20const +9902:SkFILEStream::getLength\28\29\20const +9903:SkEncoder::~SkEncoder\28\29 +9904:SkEmptyShader::getTypeName\28\29\20const +9905:SkEmptyPicture::~SkEmptyPicture\28\29 +9906:SkEmptyPicture::cullRect\28\29\20const +9907:SkEmptyPicture::approximateBytesUsed\28\29\20const +9908:SkEmptyFontMgr::onMatchFamily\28char\20const*\29\20const +9909:SkEdgeBuilder::~SkEdgeBuilder\28\29 +9910:SkEdgeBuilder::build\28SkPathRaw\20const&\2c\20SkIRect\20const*\2c\20bool\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +9911:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29_4305 +9912:SkDrawable::onMakePictureSnapshot\28\29 +9913:SkDiscretePathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +9914:SkDiscretePathEffectImpl::getTypeName\28\29\20const +9915:SkDiscretePathEffectImpl::getFactory\28\29\20const +9916:SkDiscretePathEffectImpl::computeFastBounds\28SkRect*\29\20const +9917:SkDiscretePathEffectImpl::CreateProc\28SkReadBuffer&\29 +9918:SkDevice::~SkDevice\28\29 +9919:SkDevice::strikeDeviceInfo\28\29\20const +9920:SkDevice::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +9921:SkDevice::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +9922:SkDevice::drawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20sk_sp\2c\20SkPaint\20const&\29 +9923:SkDevice::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +9924:SkDevice::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +9925:SkDevice::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +9926:SkDevice::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +9927:SkDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +9928:SkDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +9929:SkDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +9930:SkDevice::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +9931:SkDevice::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +9932:SkData::shareSubset\28unsigned\20long\2c\20unsigned\20long\29::$_0::__invoke\28void\20const*\2c\20void*\29 +9933:SkDashImpl::~SkDashImpl\28\29_5252 +9934:SkDashImpl::~SkDashImpl\28\29 +9935:SkDashImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +9936:SkDashImpl::onAsPoints\28SkPathEffectBase::PointData*\2c\20SkPath\20const&\2c\20SkStrokeRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\29\20const +9937:SkDashImpl::getTypeName\28\29\20const +9938:SkDashImpl::flatten\28SkWriteBuffer&\29\20const +9939:SkDashImpl::asADash\28\29\20const +9940:SkCustomTypefaceBuilder::MakeFromStream\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29 +9941:SkCornerPathEffectImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +9942:SkCornerPathEffectImpl::getTypeName\28\29\20const +9943:SkCornerPathEffectImpl::getFactory\28\29\20const +9944:SkCornerPathEffectImpl::flatten\28SkWriteBuffer&\29\20const +9945:SkCornerPathEffectImpl::CreateProc\28SkReadBuffer&\29 +9946:SkCornerPathEffect::Make\28float\29 +9947:SkContourMeasureIter*\20emscripten::internal::operator_new\28SkPath\20const&\2c\20bool&&\2c\20float&&\29 +9948:SkContourMeasure::~SkContourMeasure\28\29_1915 +9949:SkContourMeasure::~SkContourMeasure\28\29 +9950:SkContourMeasure::isClosed\28\29\20const +9951:SkConicalGradient::getTypeName\28\29\20const +9952:SkConicalGradient::flatten\28SkWriteBuffer&\29\20const +9953:SkConicalGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +9954:SkConicalGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +9955:SkComposePathEffect::~SkComposePathEffect\28\29 +9956:SkComposePathEffect::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +9957:SkComposePathEffect::getTypeName\28\29\20const +9958:SkComposePathEffect::computeFastBounds\28SkRect*\29\20const +9959:SkComposeColorFilter::~SkComposeColorFilter\28\29_5368 +9960:SkComposeColorFilter::~SkComposeColorFilter\28\29 +9961:SkComposeColorFilter::onIsAlphaUnchanged\28\29\20const +9962:SkComposeColorFilter::getTypeName\28\29\20const +9963:SkComposeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +9964:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29_5359 +9965:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29 +9966:SkColorSpaceXformColorFilter::getTypeName\28\29\20const +9967:SkColorSpaceXformColorFilter::flatten\28SkWriteBuffer&\29\20const +9968:SkColorSpaceXformColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +9969:SkColorShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +9970:SkColorShader::isOpaque\28\29\20const +9971:SkColorShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +9972:SkColorShader::getTypeName\28\29\20const +9973:SkColorShader::flatten\28SkWriteBuffer&\29\20const +9974:SkColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9975:SkColorPalette::~SkColorPalette\28\29_5592 +9976:SkColorPalette::~SkColorPalette\28\29 +9977:SkColorFilters::SRGBToLinearGamma\28\29 +9978:SkColorFilters::LinearToSRGBGamma\28\29 +9979:SkColorFilters::Lerp\28float\2c\20sk_sp\2c\20sk_sp\29 +9980:SkColorFilters::Compose\28sk_sp\20const&\2c\20sk_sp\29 +9981:SkColorFilterShader::~SkColorFilterShader\28\29_4884 +9982:SkColorFilterShader::~SkColorFilterShader\28\29 +9983:SkColorFilterShader::isOpaque\28\29\20const +9984:SkColorFilterShader::getTypeName\28\29\20const +9985:SkColorFilterShader::flatten\28SkWriteBuffer&\29\20const +9986:SkColorFilterShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +9987:SkColorFilterBase::onFilterColor4f\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkColorSpace*\29\20const +9988:SkCodecPriv::PremultiplyARGBasRGBA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +9989:SkCodecPriv::PremultiplyARGBasBGRA\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +9990:SkCodecImageGenerator::~SkCodecImageGenerator\28\29_5589 +9991:SkCodecImageGenerator::~SkCodecImageGenerator\28\29 +9992:SkCodecImageGenerator::onRefEncodedData\28\29 +9993:SkCodecImageGenerator::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +9994:SkCodecImageGenerator::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +9995:SkCodecImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +9996:SkCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +9997:SkCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +9998:SkCodec::onOutputScanline\28int\29\20const +9999:SkCodec::onGetScaledDimensions\28float\29\20const +10000:SkCodec::getEncodedData\28\29\20const +10001:SkCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +10002:SkCanvas::rotate\28float\2c\20float\2c\20float\29 +10003:SkCanvas::recordingContext\28\29\20const +10004:SkCanvas::recorder\28\29\20const +10005:SkCanvas::onPeekPixels\28SkPixmap*\29 +10006:SkCanvas::onNewSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +10007:SkCanvas::onImageInfo\28\29\20const +10008:SkCanvas::onGetProps\28SkSurfaceProps*\2c\20bool\29\20const +10009:SkCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +10010:SkCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +10011:SkCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +10012:SkCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +10013:SkCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +10014:SkCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +10015:SkCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +10016:SkCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +10017:SkCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +10018:SkCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +10019:SkCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +10020:SkCanvas::onDrawPaint\28SkPaint\20const&\29 +10021:SkCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +10022:SkCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +10023:SkCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +10024:SkCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +10025:SkCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +10026:SkCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +10027:SkCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +10028:SkCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +10029:SkCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +10030:SkCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +10031:SkCanvas::onDrawBehind\28SkPaint\20const&\29 +10032:SkCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +10033:SkCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +10034:SkCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +10035:SkCanvas::onDiscard\28\29 +10036:SkCanvas::onConvertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +10037:SkCanvas::onAccessTopLayerPixels\28SkPixmap*\29 +10038:SkCanvas::isClipRect\28\29\20const +10039:SkCanvas::isClipEmpty\28\29\20const +10040:SkCanvas::getSaveCount\28\29\20const +10041:SkCanvas::getBaseLayerSize\28\29\20const +10042:SkCanvas::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +10043:SkCanvas::drawPicture\28sk_sp\20const&\29 +10044:SkCanvas::drawCircle\28float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +10045:SkCanvas::baseRecorder\28\29\20const +10046:SkCanvas*\20emscripten::internal::operator_new\28float&&\2c\20float&&\29 +10047:SkCanvas*\20emscripten::internal::operator_new\28\29 +10048:SkCachedData::~SkCachedData\28\29_1643 +10049:SkCTMShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +10050:SkCTMShader::getTypeName\28\29\20const +10051:SkCTMShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +10052:SkCTMShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10053:SkBreakIterator_client::~SkBreakIterator_client\28\29_8215 +10054:SkBreakIterator_client::~SkBreakIterator_client\28\29 +10055:SkBreakIterator_client::status\28\29 +10056:SkBreakIterator_client::setText\28char\20const*\2c\20int\29 +10057:SkBreakIterator_client::setText\28char16_t\20const*\2c\20int\29 +10058:SkBreakIterator_client::next\28\29 +10059:SkBreakIterator_client::isDone\28\29 +10060:SkBreakIterator_client::first\28\29 +10061:SkBreakIterator_client::current\28\29 +10062:SkBmpStandardCodec::~SkBmpStandardCodec\28\29_5771 +10063:SkBmpStandardCodec::~SkBmpStandardCodec\28\29 +10064:SkBmpStandardCodec::onPrepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +10065:SkBmpStandardCodec::onInIco\28\29\20const +10066:SkBmpStandardCodec::getSampler\28bool\29 +10067:SkBmpStandardCodec::decodeRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +10068:SkBmpRLESampler::onSetSampleX\28int\29 +10069:SkBmpRLESampler::fillWidth\28\29\20const +10070:SkBmpRLECodec::~SkBmpRLECodec\28\29_5755 +10071:SkBmpRLECodec::~SkBmpRLECodec\28\29 +10072:SkBmpRLECodec::skipRows\28int\29 +10073:SkBmpRLECodec::onPrepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +10074:SkBmpRLECodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +10075:SkBmpRLECodec::getSampler\28bool\29 +10076:SkBmpRLECodec::decodeRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +10077:SkBmpMaskCodec::~SkBmpMaskCodec\28\29_5740 +10078:SkBmpMaskCodec::~SkBmpMaskCodec\28\29 +10079:SkBmpMaskCodec::onPrepareToDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +10080:SkBmpMaskCodec::getSampler\28bool\29 +10081:SkBmpMaskCodec::decodeRows\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +10082:SkBmpDecoder::Decode\28std::__2::unique_ptr>\2c\20SkCodec::Result*\2c\20void*\29 +10083:SkBmpCodec::~SkBmpCodec\28\29 +10084:SkBmpCodec::skipRows\28int\29 +10085:SkBmpCodec::onSkipScanlines\28int\29 +10086:SkBmpCodec::onRewind\28\29 +10087:SkBmpCodec::onGetScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +10088:SkBmpCodec::onGetScanlineOrder\28\29\20const +10089:SkBlurMaskFilterImpl::getTypeName\28\29\20const +10090:SkBlurMaskFilterImpl::flatten\28SkWriteBuffer&\29\20const +10091:SkBlurMaskFilterImpl::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +10092:SkBlurMaskFilterImpl::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +10093:SkBlurMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +10094:SkBlurMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +10095:SkBlurMaskFilterImpl::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +10096:SkBlurMaskFilterImpl::asABlur\28SkMaskFilterBase::BlurRec*\29\20const +10097:SkBlockMemoryStream::~SkBlockMemoryStream\28\29_4331 +10098:SkBlockMemoryStream::~SkBlockMemoryStream\28\29 +10099:SkBlockMemoryStream::seek\28unsigned\20long\29 +10100:SkBlockMemoryStream::rewind\28\29 +10101:SkBlockMemoryStream::read\28void*\2c\20unsigned\20long\29 +10102:SkBlockMemoryStream::peek\28void*\2c\20unsigned\20long\29\20const +10103:SkBlockMemoryStream::onFork\28\29\20const +10104:SkBlockMemoryStream::onDuplicate\28\29\20const +10105:SkBlockMemoryStream::move\28long\29 +10106:SkBlockMemoryStream::isAtEnd\28\29\20const +10107:SkBlockMemoryStream::getMemoryBase\28\29 +10108:SkBlockMemoryRefCnt::~SkBlockMemoryRefCnt\28\29_4329 +10109:SkBlockMemoryRefCnt::~SkBlockMemoryRefCnt\28\29 +10110:SkBlitter::canDirectBlit\28\29 +10111:SkBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10112:SkBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +10113:SkBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +10114:SkBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +10115:SkBlitter::allocBlitMemory\28unsigned\20long\29 +10116:SkBlendShader::~SkBlendShader\28\29_4868 +10117:SkBlendShader::~SkBlendShader\28\29 +10118:SkBlendShader::getTypeName\28\29\20const +10119:SkBlendShader::flatten\28SkWriteBuffer&\29\20const +10120:SkBlendShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +10121:SkBlendModeColorFilter::onIsAlphaUnchanged\28\29\20const +10122:SkBlendModeColorFilter::onAsAColorMode\28unsigned\20int*\2c\20SkBlendMode*\29\20const +10123:SkBlendModeColorFilter::getTypeName\28\29\20const +10124:SkBlendModeColorFilter::flatten\28SkWriteBuffer&\29\20const +10125:SkBlendModeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +10126:SkBlendModeBlender::onAppendStages\28SkStageRec\20const&\29\20const +10127:SkBlendModeBlender::getTypeName\28\29\20const +10128:SkBlendModeBlender::flatten\28SkWriteBuffer&\29\20const +10129:SkBlendModeBlender::asBlendMode\28\29\20const +10130:SkBitmapDevice::~SkBitmapDevice\28\29_1391 +10131:SkBitmapDevice::~SkBitmapDevice\28\29 +10132:SkBitmapDevice::snapSpecial\28SkIRect\20const&\2c\20bool\29 +10133:SkBitmapDevice::setImmutable\28\29 +10134:SkBitmapDevice::replaceClip\28SkIRect\20const&\29 +10135:SkBitmapDevice::pushClipStack\28\29 +10136:SkBitmapDevice::popClipStack\28\29 +10137:SkBitmapDevice::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +10138:SkBitmapDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +10139:SkBitmapDevice::onPeekPixels\28SkPixmap*\29 +10140:SkBitmapDevice::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +10141:SkBitmapDevice::onClipShader\28sk_sp\29 +10142:SkBitmapDevice::onAccessPixels\28SkPixmap*\29 +10143:SkBitmapDevice::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +10144:SkBitmapDevice::isClipWideOpen\28\29\20const +10145:SkBitmapDevice::isClipRect\28\29\20const +10146:SkBitmapDevice::isClipEmpty\28\29\20const +10147:SkBitmapDevice::isClipAntiAliased\28\29\20const +10148:SkBitmapDevice::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +10149:SkBitmapDevice::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10150:SkBitmapDevice::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +10151:SkBitmapDevice::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +10152:SkBitmapDevice::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +10153:SkBitmapDevice::drawPaint\28SkPaint\20const&\29 +10154:SkBitmapDevice::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +10155:SkBitmapDevice::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10156:SkBitmapDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +10157:SkBitmapDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +10158:SkBitmapDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +10159:SkBitmapDevice::devClipBounds\28\29\20const +10160:SkBitmapDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +10161:SkBitmapDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +10162:SkBitmapDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +10163:SkBitmapDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +10164:SkBitmapDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +10165:SkBitmapDevice::baseRecorder\28\29\20const +10166:SkBitmapDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +10167:SkBitmapDevice::SkBitmapDevice\28SkBitmap\20const&\2c\20SkSurfaceProps\20const&\2c\20void*\29 +10168:SkBitmapCache::Rec::~Rec\28\29_1323 +10169:SkBitmapCache::Rec::~Rec\28\29 +10170:SkBitmapCache::Rec::postAddInstall\28void*\29 +10171:SkBitmapCache::Rec::getCategory\28\29\20const +10172:SkBitmapCache::Rec::canBePurged\28\29 +10173:SkBitmapCache::Rec::bytesUsed\28\29\20const +10174:SkBitmapCache::Rec::ReleaseProc\28void*\2c\20void*\29 +10175:SkBitmapCache::Rec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +10176:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29_4636 +10177:SkBinaryWriteBuffer::write\28SkM44\20const&\29 +10178:SkBinaryWriteBuffer::writeTypeface\28SkTypeface*\29 +10179:SkBinaryWriteBuffer::writeString\28std::__2::basic_string_view>\29 +10180:SkBinaryWriteBuffer::writeStream\28SkStream*\2c\20unsigned\20long\29 +10181:SkBinaryWriteBuffer::writeScalar\28float\29 +10182:SkBinaryWriteBuffer::writeSampling\28SkSamplingOptions\20const&\29 +10183:SkBinaryWriteBuffer::writeRegion\28SkRegion\20const&\29 +10184:SkBinaryWriteBuffer::writeRect\28SkRect\20const&\29 +10185:SkBinaryWriteBuffer::writePoint\28SkPoint\20const&\29 +10186:SkBinaryWriteBuffer::writePointArray\28SkSpan\29 +10187:SkBinaryWriteBuffer::writePoint3\28SkPoint3\20const&\29 +10188:SkBinaryWriteBuffer::writePath\28SkPath\20const&\29 +10189:SkBinaryWriteBuffer::writePaint\28SkPaint\20const&\29 +10190:SkBinaryWriteBuffer::writePad32\28void\20const*\2c\20unsigned\20long\29 +10191:SkBinaryWriteBuffer::writeMatrix\28SkMatrix\20const&\29 +10192:SkBinaryWriteBuffer::writeImage\28SkImage\20const*\29 +10193:SkBinaryWriteBuffer::writeColor4fArray\28SkSpan\20const>\29 +10194:SkBigPicture::~SkBigPicture\28\29_1268 +10195:SkBigPicture::~SkBigPicture\28\29 +10196:SkBigPicture::playback\28SkCanvas*\2c\20SkPicture::AbortCallback*\29\20const +10197:SkBigPicture::cullRect\28\29\20const +10198:SkBigPicture::approximateOpCount\28bool\29\20const +10199:SkBigPicture::approximateBytesUsed\28\29\20const +10200:SkBidiSubsetFactory::errorName\28UErrorCode\29\20const +10201:SkBidiSubsetFactory::bidi_setPara\28UBiDi*\2c\20char16_t\20const*\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20UErrorCode*\29\20const +10202:SkBidiSubsetFactory::bidi_reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29\20const +10203:SkBidiSubsetFactory::bidi_openSized\28int\2c\20int\2c\20UErrorCode*\29\20const +10204:SkBidiSubsetFactory::bidi_getLevelAt\28UBiDi\20const*\2c\20int\29\20const +10205:SkBidiSubsetFactory::bidi_getLength\28UBiDi\20const*\29\20const +10206:SkBidiSubsetFactory::bidi_getDirection\28UBiDi\20const*\29\20const +10207:SkBidiSubsetFactory::bidi_close_callback\28\29\20const +10208:SkBezierCubic::Subdivide\28double\20const*\2c\20double\2c\20double*\29 +10209:SkBasicEdgeBuilder::addQuad\28SkPoint\20const*\29 +10210:SkBasicEdgeBuilder::addLine\28SkPoint\20const*\29 +10211:SkBasicEdgeBuilder::addCubic\28SkPoint\20const*\29 +10212:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29 +10213:SkBBoxHierarchy::insert\28SkRect\20const*\2c\20SkBBoxHierarchy::Metadata\20const*\2c\20int\29 +10214:SkArenaAlloc::SkipPod\28char*\29 +10215:SkArenaAlloc::NextBlock\28char*\29 +10216:SkAnimatedImage::~SkAnimatedImage\28\29_7566 +10217:SkAnimatedImage::~SkAnimatedImage\28\29 +10218:SkAnimatedImage::reset\28\29 +10219:SkAnimatedImage::onGetBounds\28\29 +10220:SkAnimatedImage::onDraw\28SkCanvas*\29 +10221:SkAnimatedImage::getRepetitionCount\28\29\20const +10222:SkAnimatedImage::getCurrentFrame\28\29 +10223:SkAnimatedImage::currentFrameDuration\28\29 +10224:SkAndroidCodecAdapter::onGetSupportedSubset\28SkIRect*\29\20const +10225:SkAndroidCodecAdapter::onGetSampledDimensions\28int\29\20const +10226:SkAndroidCodecAdapter::onGetAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +10227:SkAnalyticEdgeBuilder::allocEdges\28unsigned\20long\2c\20unsigned\20long*\29 +10228:SkAnalyticEdgeBuilder::addQuad\28SkPoint\20const*\29 +10229:SkAnalyticEdgeBuilder::addPolyLine\28SkPoint\20const*\2c\20char*\2c\20char**\29 +10230:SkAnalyticEdgeBuilder::addLine\28SkPoint\20const*\29 +10231:SkAnalyticEdgeBuilder::addCubic\28SkPoint\20const*\29 +10232:SkAAClipBlitter::~SkAAClipBlitter\28\29_1222 +10233:SkAAClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10234:SkAAClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10235:SkAAClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +10236:SkAAClipBlitter::blitH\28int\2c\20int\2c\20int\29 +10237:SkAAClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +10238:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_1::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +10239:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_0::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +10240:SkAAClip::Builder::Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10241:SkAAClip::Builder::Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10242:SkAAClip::Builder::Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +10243:SkAAClip::Builder::Blitter::blitH\28int\2c\20int\2c\20int\29 +10244:SkAAClip::Builder::Blitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +10245:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29_1492 +10246:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29 +10247:SkA8_Coverage_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10248:SkA8_Coverage_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10249:SkA8_Coverage_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +10250:SkA8_Coverage_Blitter::blitH\28int\2c\20int\2c\20int\29 +10251:SkA8_Coverage_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +10252:SkA8_Blitter::~SkA8_Blitter\28\29_1494 +10253:SkA8_Blitter::~SkA8_Blitter\28\29 +10254:SkA8_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10255:SkA8_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10256:SkA8_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +10257:SkA8_Blitter::blitH\28int\2c\20int\2c\20int\29 +10258:SkA8_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +10259:SkA8Blitter_Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +10260:Sk2DPathEffect::nextSpan\28int\2c\20int\2c\20int\2c\20SkPathBuilder*\29\20const +10261:Sk2DPathEffect::flatten\28SkWriteBuffer&\29\20const +10262:SimpleVFilter16i_C +10263:SimpleVFilter16_C +10264:SimpleTextStyle*\20emscripten::internal::raw_constructor\28\29 +10265:SimpleTextStyle*\20emscripten::internal::MemberAccess::getWire\28SimpleTextStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\29 +10266:SimpleStrutStyle*\20emscripten::internal::raw_constructor\28\29 +10267:SimpleStrutStyle*\20emscripten::internal::MemberAccess::getWire\28SimpleStrutStyle\20SimpleParagraphStyle::*\20const&\2c\20SimpleParagraphStyle&\29 +10268:SimpleParagraphStyle*\20emscripten::internal::raw_constructor\28\29 +10269:SimpleHFilter16i_C +10270:SimpleHFilter16_C +10271:SimpleFontStyle*\20emscripten::internal::raw_constructor\28\29 +10272:ShaderPDXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10273:ShaderPDXferProcessor::name\28\29\20const +10274:ShaderPDXferProcessor::makeProgramImpl\28\29\20const +10275:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +10276:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +10277:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10278:RuntimeEffectUniform*\20emscripten::internal::raw_constructor\28\29 +10279:RuntimeEffectRPCallbacks::toLinearSrgb\28void\20const*\29 +10280:RuntimeEffectRPCallbacks::fromLinearSrgb\28void\20const*\29 +10281:RuntimeEffectRPCallbacks::appendShader\28int\29 +10282:RuntimeEffectRPCallbacks::appendColorFilter\28int\29 +10283:RuntimeEffectRPCallbacks::appendBlender\28int\29 +10284:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29 +10285:RunBasedAdditiveBlitter::getRealBlitter\28bool\29 +10286:RunBasedAdditiveBlitter::flush_if_y_changed\28int\2c\20int\29 +10287:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +10288:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +10289:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10290:Round_Up_To_Grid +10291:Round_To_Half_Grid +10292:Round_To_Grid +10293:Round_To_Double_Grid +10294:Round_Super_45 +10295:Round_Super +10296:Round_None +10297:Round_Down_To_Grid +10298:RoundJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +10299:RoundCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +10300:Reset +10301:Read_CVT_Stretched +10302:Read_CVT +10303:RD4_C +10304:Project +10305:ProcessRows +10306:PredictorAdd9_C +10307:PredictorAdd8_C +10308:PredictorAdd7_C +10309:PredictorAdd6_C +10310:PredictorAdd5_C +10311:PredictorAdd4_C +10312:PredictorAdd3_C +10313:PredictorAdd2_C +10314:PredictorAdd1_C +10315:PredictorAdd13_C +10316:PredictorAdd12_C +10317:PredictorAdd11_C +10318:PredictorAdd10_C +10319:PredictorAdd0_C +10320:PrePostInverseBlitterProc\28SkBlitter*\2c\20int\2c\20bool\29 +10321:PorterDuffXferProcessor::onHasSecondaryOutput\28\29\20const +10322:PorterDuffXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +10323:PorterDuffXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10324:PorterDuffXferProcessor::name\28\29\20const +10325:PorterDuffXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +10326:PorterDuffXferProcessor::makeProgramImpl\28\29\20const +10327:ParseVP8X +10328:PackRGB_C +10329:PDLCDXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +10330:PDLCDXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +10331:PDLCDXferProcessor::name\28\29\20const +10332:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +10333:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +10334:PDLCDXferProcessor::makeProgramImpl\28\29\20const +10335:OT::match_glyph\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +10336:OT::match_coverage\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +10337:OT::match_class_cached\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +10338:OT::match_class_cached2\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +10339:OT::match_class_cached1\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +10340:OT::match_class\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +10341:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GSUB_impl::SubstLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +10342:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GPOS_impl::PosLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +10343:OT::cff1::accelerator_t::gname_t::cmp\28void\20const*\2c\20void\20const*\29 +10344:OT::Layout::Common::RangeRecord::cmp_range\28void\20const*\2c\20void\20const*\29 +10345:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +10346:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +10347:OT::CmapSubtableFormat4::accelerator_t::get_glyph_func\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10348:Move_CVT_Stretched +10349:Move_CVT +10350:MiterJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +10351:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29_4159 +10352:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29 +10353:MaskAdditiveBlitter::getWidth\28\29 +10354:MaskAdditiveBlitter::getRealBlitter\28bool\29 +10355:MaskAdditiveBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10356:MaskAdditiveBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +10357:MaskAdditiveBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +10358:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +10359:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +10360:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +10361:MapAlpha_C +10362:MapARGB_C +10363:MakeRenderTarget\28sk_sp\2c\20int\2c\20int\29 +10364:MakeRenderTarget\28sk_sp\2c\20SimpleImageInfo\29 +10365:MakePathFromVerbsPointsWeights\28unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\2c\20unsigned\20long\2c\20int\29 +10366:MakePathFromSVGString\28std::__2::basic_string\2c\20std::__2::allocator>\29 +10367:MakePathFromOp\28SkPath\20const&\2c\20SkPath\20const&\2c\20SkPathOp\29 +10368:MakePathFromInterpolation\28SkPath\20const&\2c\20SkPath\20const&\2c\20float\29 +10369:MakePathFromCmds\28unsigned\20long\2c\20int\29 +10370:MakeOnScreenGLSurface\28sk_sp\2c\20int\2c\20int\2c\20sk_sp\29 +10371:MakeImageFromGenerator\28SimpleImageInfo\2c\20emscripten::val\29 +10372:MakeGrContext\28\29 +10373:MakeAsWinding\28SkPath\20const&\29 +10374:LD4_C +10375:JpegDecoderMgr::init\28\29 +10376:JpegDecoderMgr::SourceMgr::SkipInputData\28jpeg_decompress_struct*\2c\20long\29 +10377:JpegDecoderMgr::SourceMgr::InitSource\28jpeg_decompress_struct*\29 +10378:JpegDecoderMgr::SourceMgr::FillInputBuffer\28jpeg_decompress_struct*\29 +10379:JpegDecoderMgr::JpegDecoderMgr\28SkStream*\29 +10380:IsValidSimpleFormat +10381:IsValidExtendedFormat +10382:InverseBlitter::blitH\28int\2c\20int\2c\20int\29 +10383:Init +10384:HorizontalUnfilter_C +10385:HorizontalFilter_C +10386:Horish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +10387:Horish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +10388:HasAlpha8b_C +10389:HasAlpha32b_C +10390:HU4_C +10391:HLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +10392:HLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +10393:HFilter8i_C +10394:HFilter8_C +10395:HFilter16i_C +10396:HFilter16_C +10397:HE8uv_C +10398:HE4_C +10399:HE16_C +10400:HD4_C +10401:GradientUnfilter_C +10402:GradientFilter_C +10403:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10404:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10405:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const +10406:GrYUVtoRGBEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10407:GrYUVtoRGBEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10408:GrYUVtoRGBEffect::name\28\29\20const +10409:GrYUVtoRGBEffect::clone\28\29\20const +10410:GrXferProcessor::ProgramImpl::emitWriteSwizzle\28GrGLSLXPFragmentBuilder*\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20char\20const*\29\20const +10411:GrXferProcessor::ProgramImpl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +10412:GrXferProcessor::ProgramImpl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +10413:GrWritePixelsTask::~GrWritePixelsTask\28\29_10090 +10414:GrWritePixelsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +10415:GrWritePixelsTask::onExecute\28GrOpFlushState*\29 +10416:GrWritePixelsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +10417:GrWaitRenderTask::~GrWaitRenderTask\28\29_10080 +10418:GrWaitRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +10419:GrWaitRenderTask::onExecute\28GrOpFlushState*\29 +10420:GrWaitRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +10421:GrTriangulator::~GrTriangulator\28\29 +10422:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29_10070 +10423:GrTransferFromRenderTask::onExecute\28GrOpFlushState*\29 +10424:GrTransferFromRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +10425:GrThreadSafeCache::Trampoline::~Trampoline\28\29_10056 +10426:GrThreadSafeCache::Trampoline::~Trampoline\28\29 +10427:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29_10023 +10428:GrTextureResolveRenderTask::onExecute\28GrOpFlushState*\29 +10429:GrTextureResolveRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +10430:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10013 +10431:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +10432:GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +10433:GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +10434:GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +10435:GrTextureProxy::~GrTextureProxy\28\29_9967 +10436:GrTextureProxy::~GrTextureProxy\28\29_9965 +10437:GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +10438:GrTextureProxy::instantiate\28GrResourceProvider*\29 +10439:GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +10440:GrTextureProxy::callbackDesc\28\29\20const +10441:GrTextureEffect::~GrTextureEffect\28\29_10572 +10442:GrTextureEffect::~GrTextureEffect\28\29 +10443:GrTextureEffect::onMakeProgramImpl\28\29\20const +10444:GrTextureEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10445:GrTextureEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10446:GrTextureEffect::name\28\29\20const +10447:GrTextureEffect::clone\28\29\20const +10448:GrTextureEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10449:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10450:GrTexture::onGpuMemorySize\28\29\20const +10451:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29_8731 +10452:GrTDeferredProxyUploader>::freeData\28\29 +10453:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29_11759 +10454:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29 +10455:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::freeData\28\29 +10456:GrSurfaceProxy::getUniqueKey\28\29\20const +10457:GrSurface::~GrSurface\28\29 +10458:GrSurface::getResourceType\28\29\20const +10459:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29_11939 +10460:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29 +10461:GrStrokeTessellationShader::name\28\29\20const +10462:GrStrokeTessellationShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10463:GrStrokeTessellationShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10464:GrStrokeTessellationShader::Impl::~Impl\28\29_11942 +10465:GrStrokeTessellationShader::Impl::~Impl\28\29 +10466:GrStrokeTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10467:GrStrokeTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10468:GrSkSLFP::~GrSkSLFP\28\29_10528 +10469:GrSkSLFP::~GrSkSLFP\28\29 +10470:GrSkSLFP::onMakeProgramImpl\28\29\20const +10471:GrSkSLFP::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10472:GrSkSLFP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10473:GrSkSLFP::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +10474:GrSkSLFP::clone\28\29\20const +10475:GrSkSLFP::Impl::~Impl\28\29_10537 +10476:GrSkSLFP::Impl::~Impl\28\29 +10477:GrSkSLFP::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10478:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +10479:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +10480:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +10481:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +10482:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::getMangledName\28char\20const*\29 +10483:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +10484:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +10485:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +10486:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareFunction\28char\20const*\29 +10487:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10488:GrSimpleMesh*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29::'lambda'\28char*\29::__invoke\28char*\29 +10489:GrRingBuffer::FinishSubmit\28void*\29 +10490:GrResourceCache::CompareTimestamp\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29 +10491:GrRenderTask::~GrRenderTask\28\29 +10492:GrRenderTask::disown\28GrDrawingManager*\29 +10493:GrRenderTargetProxy::~GrRenderTargetProxy\28\29_9735 +10494:GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +10495:GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +10496:GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +10497:GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +10498:GrRenderTargetProxy::callbackDesc\28\29\20const +10499:GrRecordingContext::~GrRecordingContext\28\29_9671 +10500:GrRecordingContext::abandoned\28\29 +10501:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29_10511 +10502:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29 +10503:GrRRectShadowGeoProc::onTextureSampler\28int\29\20const +10504:GrRRectShadowGeoProc::name\28\29\20const +10505:GrRRectShadowGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10506:GrRRectShadowGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10507:GrQuadEffect::name\28\29\20const +10508:GrQuadEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10509:GrQuadEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10510:GrQuadEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10511:GrQuadEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10512:GrPorterDuffXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +10513:GrPorterDuffXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +10514:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29_10448 +10515:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29 +10516:GrPerlinNoise2Effect::onMakeProgramImpl\28\29\20const +10517:GrPerlinNoise2Effect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10518:GrPerlinNoise2Effect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10519:GrPerlinNoise2Effect::name\28\29\20const +10520:GrPerlinNoise2Effect::clone\28\29\20const +10521:GrPerlinNoise2Effect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10522:GrPerlinNoise2Effect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10523:GrPathTessellationShader::Impl::~Impl\28\29 +10524:GrPathTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10525:GrPathTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10526:GrOpsRenderPass::~GrOpsRenderPass\28\29 +10527:GrOpsRenderPass::onExecuteDrawable\28std::__2::unique_ptr>\29 +10528:GrOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +10529:GrOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +10530:GrOpFlushState::~GrOpFlushState\28\29_9526 +10531:GrOpFlushState::~GrOpFlushState\28\29 +10532:GrOpFlushState::writeView\28\29\20const +10533:GrOpFlushState::usesMSAASurface\28\29\20const +10534:GrOpFlushState::tokenTracker\28\29 +10535:GrOpFlushState::threadSafeCache\28\29\20const +10536:GrOpFlushState::strikeCache\28\29\20const +10537:GrOpFlushState::smallPathAtlasManager\28\29\20const +10538:GrOpFlushState::sampledProxyArray\28\29 +10539:GrOpFlushState::rtProxy\28\29\20const +10540:GrOpFlushState::resourceProvider\28\29\20const +10541:GrOpFlushState::renderPassBarriers\28\29\20const +10542:GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +10543:GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +10544:GrOpFlushState::putBackIndirectDraws\28int\29 +10545:GrOpFlushState::putBackIndices\28int\29 +10546:GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +10547:GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +10548:GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +10549:GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +10550:GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +10551:GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +10552:GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +10553:GrOpFlushState::dstProxyView\28\29\20const +10554:GrOpFlushState::colorLoadOp\28\29\20const +10555:GrOpFlushState::atlasManager\28\29\20const +10556:GrOpFlushState::appliedClip\28\29\20const +10557:GrOpFlushState::addInlineUpload\28std::__2::function&\29>&&\29 +10558:GrOp::~GrOp\28\29 +10559:GrOnFlushCallbackObject::postFlush\28skgpu::Token\29 +10560:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10561:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10562:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const +10563:GrModulateAtlasCoverageEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10564:GrModulateAtlasCoverageEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10565:GrModulateAtlasCoverageEffect::name\28\29\20const +10566:GrModulateAtlasCoverageEffect::clone\28\29\20const +10567:GrMeshDrawOp::onPrepare\28GrOpFlushState*\29 +10568:GrMeshDrawOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10569:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10570:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10571:GrMatrixEffect::onMakeProgramImpl\28\29\20const +10572:GrMatrixEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10573:GrMatrixEffect::name\28\29\20const +10574:GrMatrixEffect::clone\28\29\20const +10575:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29_10135 +10576:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29 +10577:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::$_0::__invoke\28void\20const*\2c\20void*\29 +10578:GrImageContext::~GrImageContext\28\29_9460 +10579:GrImageContext::~GrImageContext\28\29 +10580:GrHardClip::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +10581:GrGpuResource::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +10582:GrGpuBuffer::~GrGpuBuffer\28\29 +10583:GrGpuBuffer::unref\28\29\20const +10584:GrGpuBuffer::getResourceType\28\29\20const +10585:GrGpuBuffer::computeScratchKey\28skgpu::ScratchKey*\29\20const +10586:GrGpu::endTimerQuery\28GrTimerQuery\20const&\29 +10587:GrGeometryProcessor::onTextureSampler\28int\29\20const +10588:GrGeometryProcessor::ProgramImpl::~ProgramImpl\28\29 +10589:GrGLVaryingHandler::~GrGLVaryingHandler\28\29 +10590:GrGLUniformHandler::~GrGLUniformHandler\28\29_12501 +10591:GrGLUniformHandler::~GrGLUniformHandler\28\29 +10592:GrGLUniformHandler::samplerVariable\28GrResourceHandle\29\20const +10593:GrGLUniformHandler::samplerSwizzle\28GrResourceHandle\29\20const +10594:GrGLUniformHandler::internalAddUniformArray\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20bool\2c\20int\2c\20char\20const**\29 +10595:GrGLUniformHandler::getUniformCStr\28GrResourceHandle\29\20const +10596:GrGLUniformHandler::appendUniformDecls\28GrShaderFlags\2c\20SkString*\29\20const +10597:GrGLUniformHandler::addSampler\28GrBackendFormat\20const&\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20GrShaderCaps\20const*\29 +10598:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +10599:GrGLTextureRenderTarget::onSetLabel\28\29 +10600:GrGLTextureRenderTarget::onRelease\28\29 +10601:GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +10602:GrGLTextureRenderTarget::onAbandon\28\29 +10603:GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +10604:GrGLTextureRenderTarget::backendFormat\28\29\20const +10605:GrGLTexture::~GrGLTexture\28\29_12450 +10606:GrGLTexture::~GrGLTexture\28\29 +10607:GrGLTexture::textureParamsModified\28\29 +10608:GrGLTexture::onStealBackendTexture\28GrBackendTexture*\2c\20std::__2::function*\29 +10609:GrGLTexture::getBackendTexture\28\29\20const +10610:GrGLSemaphore::~GrGLSemaphore\28\29_12427 +10611:GrGLSemaphore::~GrGLSemaphore\28\29 +10612:GrGLSemaphore::setIsOwned\28\29 +10613:GrGLSemaphore::backendSemaphore\28\29\20const +10614:GrGLSLVertexBuilder::~GrGLSLVertexBuilder\28\29 +10615:GrGLSLVertexBuilder::onFinalize\28\29 +10616:GrGLSLUniformHandler::inputSamplerSwizzle\28GrResourceHandle\29\20const +10617:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_10756 +10618:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +10619:GrGLSLFragmentShaderBuilder::primaryColorOutputIsInOut\28\29\20const +10620:GrGLSLFragmentShaderBuilder::onFinalize\28\29 +10621:GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +10622:GrGLSLFragmentShaderBuilder::forceHighPrecision\28\29 +10623:GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +10624:GrGLRenderTarget::~GrGLRenderTarget\28\29_12422 +10625:GrGLRenderTarget::~GrGLRenderTarget\28\29 +10626:GrGLRenderTarget::onGpuMemorySize\28\29\20const +10627:GrGLRenderTarget::getBackendRenderTarget\28\29\20const +10628:GrGLRenderTarget::completeStencilAttachment\28GrAttachment*\2c\20bool\29 +10629:GrGLRenderTarget::canAttemptStencilAttachment\28bool\29\20const +10630:GrGLRenderTarget::backendFormat\28\29\20const +10631:GrGLRenderTarget::alwaysClearStencil\28\29\20const +10632:GrGLProgramDataManager::~GrGLProgramDataManager\28\29_12398 +10633:GrGLProgramDataManager::~GrGLProgramDataManager\28\29 +10634:GrGLProgramDataManager::setMatrix4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +10635:GrGLProgramDataManager::setMatrix4f\28GrResourceHandle\2c\20float\20const*\29\20const +10636:GrGLProgramDataManager::setMatrix3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +10637:GrGLProgramDataManager::setMatrix3f\28GrResourceHandle\2c\20float\20const*\29\20const +10638:GrGLProgramDataManager::setMatrix2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +10639:GrGLProgramDataManager::setMatrix2f\28GrResourceHandle\2c\20float\20const*\29\20const +10640:GrGLProgramDataManager::set4iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +10641:GrGLProgramDataManager::set4i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\2c\20int\29\20const +10642:GrGLProgramDataManager::set4f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\2c\20float\29\20const +10643:GrGLProgramDataManager::set3iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +10644:GrGLProgramDataManager::set3i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\29\20const +10645:GrGLProgramDataManager::set3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +10646:GrGLProgramDataManager::set3f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\29\20const +10647:GrGLProgramDataManager::set2iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +10648:GrGLProgramDataManager::set2i\28GrResourceHandle\2c\20int\2c\20int\29\20const +10649:GrGLProgramDataManager::set2f\28GrResourceHandle\2c\20float\2c\20float\29\20const +10650:GrGLProgramDataManager::set1iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +10651:GrGLProgramDataManager::set1i\28GrResourceHandle\2c\20int\29\20const +10652:GrGLProgramDataManager::set1fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +10653:GrGLProgramDataManager::set1f\28GrResourceHandle\2c\20float\29\20const +10654:GrGLProgramBuilder::~GrGLProgramBuilder\28\29_12536 +10655:GrGLProgramBuilder::varyingHandler\28\29 +10656:GrGLProgramBuilder::caps\28\29\20const +10657:GrGLProgram::~GrGLProgram\28\29_12356 +10658:GrGLOpsRenderPass::~GrGLOpsRenderPass\28\29 +10659:GrGLOpsRenderPass::onSetScissorRect\28SkIRect\20const&\29 +10660:GrGLOpsRenderPass::onEnd\28\29 +10661:GrGLOpsRenderPass::onDraw\28int\2c\20int\29 +10662:GrGLOpsRenderPass::onDrawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +10663:GrGLOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +10664:GrGLOpsRenderPass::onDrawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +10665:GrGLOpsRenderPass::onDrawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +10666:GrGLOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +10667:GrGLOpsRenderPass::onClear\28GrScissorState\20const&\2c\20std::__2::array\29 +10668:GrGLOpsRenderPass::onClearStencilClip\28GrScissorState\20const&\2c\20bool\29 +10669:GrGLOpsRenderPass::onBindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +10670:GrGLOpsRenderPass::onBindPipeline\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +10671:GrGLOpsRenderPass::onBindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +10672:GrGLOpsRenderPass::onBegin\28\29 +10673:GrGLOpsRenderPass::inlineUpload\28GrOpFlushState*\2c\20std::__2::function&\29>&\29 +10674:GrGLInterface::~GrGLInterface\28\29_12333 +10675:GrGLInterface::~GrGLInterface\28\29 +10676:GrGLGpu::~GrGLGpu\28\29_12201 +10677:GrGLGpu::xferBarrier\28GrRenderTarget*\2c\20GrXferBarrierType\29 +10678:GrGLGpu::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +10679:GrGLGpu::willExecute\28\29 +10680:GrGLGpu::waitSemaphore\28GrSemaphore*\29 +10681:GrGLGpu::submit\28GrOpsRenderPass*\29 +10682:GrGLGpu::startTimerQuery\28\29 +10683:GrGLGpu::stagingBufferManager\28\29 +10684:GrGLGpu::refPipelineBuilder\28\29 +10685:GrGLGpu::prepareTextureForCrossContextUsage\28GrTexture*\29 +10686:GrGLGpu::prepareSurfacesForBackendAccessAndStateUpdates\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20skgpu::MutableTextureState\20const*\29 +10687:GrGLGpu::precompileShader\28SkData\20const&\2c\20SkData\20const&\29 +10688:GrGLGpu::onWritePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +10689:GrGLGpu::onWrapRenderableBackendTexture\28GrBackendTexture\20const&\2c\20int\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +10690:GrGLGpu::onWrapCompressedBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +10691:GrGLGpu::onWrapBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\2c\20GrIOType\29 +10692:GrGLGpu::onWrapBackendRenderTarget\28GrBackendRenderTarget\20const&\29 +10693:GrGLGpu::onUpdateCompressedBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20void\20const*\2c\20unsigned\20long\29 +10694:GrGLGpu::onTransferPixelsTo\28GrTexture*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +10695:GrGLGpu::onTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\29 +10696:GrGLGpu::onTransferFromBufferToBuffer\28sk_sp\2c\20unsigned\20long\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +10697:GrGLGpu::onSubmitToGpu\28GrSubmitInfo\20const&\29 +10698:GrGLGpu::onResolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +10699:GrGLGpu::onResetTextureBindings\28\29 +10700:GrGLGpu::onResetContext\28unsigned\20int\29 +10701:GrGLGpu::onRegenerateMipMapLevels\28GrTexture*\29 +10702:GrGLGpu::onReadPixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20unsigned\20long\29 +10703:GrGLGpu::onGetOpsRenderPass\28GrRenderTarget*\2c\20bool\2c\20GrAttachment*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const&\2c\20GrOpsRenderPass::LoadAndStoreInfo\20const&\2c\20GrOpsRenderPass::StencilLoadAndStoreInfo\20const&\2c\20skia_private::TArray\20const&\2c\20GrXferBarrierFlags\29 +10704:GrGLGpu::onDumpJSON\28SkJSONWriter*\29\20const +10705:GrGLGpu::onCreateTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +10706:GrGLGpu::onCreateCompressedTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20void\20const*\2c\20unsigned\20long\29 +10707:GrGLGpu::onCreateCompressedBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\29 +10708:GrGLGpu::onCreateBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +10709:GrGLGpu::onCreateBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +10710:GrGLGpu::onCopySurface\28GrSurface*\2c\20SkIRect\20const&\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +10711:GrGLGpu::onClearBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20std::__2::array\29 +10712:GrGLGpu::makeStencilAttachment\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\29 +10713:GrGLGpu::makeSemaphore\28bool\29 +10714:GrGLGpu::makeMSAAAttachment\28SkISize\2c\20GrBackendFormat\20const&\2c\20int\2c\20skgpu::Protected\2c\20GrMemoryless\29 +10715:GrGLGpu::insertSemaphore\28GrSemaphore*\29 +10716:GrGLGpu::getPreferredStencilFormat\28GrBackendFormat\20const&\29 +10717:GrGLGpu::finishOutstandingGpuWork\28\29 +10718:GrGLGpu::endTimerQuery\28GrTimerQuery\20const&\29 +10719:GrGLGpu::disconnect\28GrGpu::DisconnectType\29 +10720:GrGLGpu::deleteBackendTexture\28GrBackendTexture\20const&\29 +10721:GrGLGpu::compile\28GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\29 +10722:GrGLGpu::checkFinishedCallbacks\28\29 +10723:GrGLGpu::addFinishedCallback\28skgpu::AutoCallback\2c\20std::__2::optional\29 +10724:GrGLGpu::ProgramCache::~ProgramCache\28\29_12313 +10725:GrGLGpu::ProgramCache::~ProgramCache\28\29 +10726:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20unsigned\20int\2c\20float\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29 +10727:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29 +10728:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10729:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\29\29::'lambda'\28void\20const*\2c\20float\29::__invoke\28void\20const*\2c\20float\29 +10730:GrGLFunction::GrGLFunction\28void\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +10731:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28__GLsync*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29 +10732:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +10733:GrGLCaps::~GrGLCaps\28\29_12168 +10734:GrGLCaps::surfaceSupportsReadPixels\28GrSurface\20const*\29\20const +10735:GrGLCaps::supportedWritePixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +10736:GrGLCaps::onSurfaceSupportsWritePixels\28GrSurface\20const*\29\20const +10737:GrGLCaps::onSupportsDynamicMSAA\28GrRenderTargetProxy\20const*\29\20const +10738:GrGLCaps::onSupportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +10739:GrGLCaps::onIsWindowRectanglesSupportedForRT\28GrBackendRenderTarget\20const&\29\20const +10740:GrGLCaps::onGetReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +10741:GrGLCaps::onGetDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\29\20const +10742:GrGLCaps::onGetDefaultBackendFormat\28GrColorType\29\20const +10743:GrGLCaps::onDumpJSON\28SkJSONWriter*\29\20const +10744:GrGLCaps::onCanCopySurface\28GrSurfaceProxy\20const*\2c\20SkIRect\20const&\2c\20GrSurfaceProxy\20const*\2c\20SkIRect\20const&\29\20const +10745:GrGLCaps::onAreColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +10746:GrGLCaps::onApplyOptionsOverrides\28GrContextOptions\20const&\29 +10747:GrGLCaps::maxRenderTargetSampleCount\28GrBackendFormat\20const&\29\20const +10748:GrGLCaps::makeDesc\28GrRenderTarget*\2c\20GrProgramInfo\20const&\2c\20GrCaps::ProgramDescOverrideFlags\29\20const +10749:GrGLCaps::isFormatTexturable\28GrBackendFormat\20const&\2c\20GrTextureType\29\20const +10750:GrGLCaps::isFormatSRGB\28GrBackendFormat\20const&\29\20const +10751:GrGLCaps::isFormatRenderable\28GrBackendFormat\20const&\2c\20int\29\20const +10752:GrGLCaps::isFormatCopyable\28GrBackendFormat\20const&\29\20const +10753:GrGLCaps::isFormatAsColorTypeRenderable\28GrColorType\2c\20GrBackendFormat\20const&\2c\20int\29\20const +10754:GrGLCaps::getWriteSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +10755:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrBackendFormat\20const&\29\20const +10756:GrGLCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +10757:GrGLCaps::getBackendFormatFromCompressionType\28SkTextureCompressionType\29\20const +10758:GrGLCaps::computeFormatKey\28GrBackendFormat\20const&\29\20const +10759:GrGLBuffer::~GrGLBuffer\28\29_12118 +10760:GrGLBuffer::~GrGLBuffer\28\29 +10761:GrGLBuffer::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +10762:GrGLBuffer::onUpdateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +10763:GrGLBuffer::onUnmap\28GrGpuBuffer::MapType\29 +10764:GrGLBuffer::onSetLabel\28\29 +10765:GrGLBuffer::onRelease\28\29 +10766:GrGLBuffer::onMap\28GrGpuBuffer::MapType\29 +10767:GrGLBuffer::onClearToZero\28\29 +10768:GrGLBuffer::onAbandon\28\29 +10769:GrGLBackendTextureData::~GrGLBackendTextureData\28\29_12092 +10770:GrGLBackendTextureData::~GrGLBackendTextureData\28\29 +10771:GrGLBackendTextureData::isSameTexture\28GrBackendTextureData\20const*\29\20const +10772:GrGLBackendTextureData::isProtected\28\29\20const +10773:GrGLBackendTextureData::getBackendFormat\28\29\20const +10774:GrGLBackendTextureData::equal\28GrBackendTextureData\20const*\29\20const +10775:GrGLBackendTextureData::copyTo\28SkAnySubclass&\29\20const +10776:GrGLBackendRenderTargetData::getBackendFormat\28\29\20const +10777:GrGLBackendRenderTargetData::equal\28GrBackendRenderTargetData\20const*\29\20const +10778:GrGLBackendRenderTargetData::copyTo\28SkAnySubclass&\29\20const +10779:GrGLBackendFormatData::toString\28\29\20const +10780:GrGLBackendFormatData::stencilBits\28\29\20const +10781:GrGLBackendFormatData::equal\28GrBackendFormatData\20const*\29\20const +10782:GrGLBackendFormatData::desc\28\29\20const +10783:GrGLBackendFormatData::copyTo\28SkAnySubclass&\29\20const +10784:GrGLBackendFormatData::compressionType\28\29\20const +10785:GrGLBackendFormatData::channelMask\28\29\20const +10786:GrGLBackendFormatData::bytesPerBlock\28\29\20const +10787:GrGLAttachment::~GrGLAttachment\28\29 +10788:GrGLAttachment::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +10789:GrGLAttachment::onSetLabel\28\29 +10790:GrGLAttachment::onRelease\28\29 +10791:GrGLAttachment::onAbandon\28\29 +10792:GrGLAttachment::backendFormat\28\29\20const +10793:GrFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +10794:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10795:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const +10796:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10797:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10798:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::name\28\29\20const +10799:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +10800:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::clone\28\29\20const +10801:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10802:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const +10803:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::name\28\29\20const +10804:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::clone\28\29\20const +10805:GrFragmentProcessor::ProgramImpl::~ProgramImpl\28\29 +10806:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10807:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const +10808:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::name\28\29\20const +10809:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::clone\28\29\20const +10810:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10811:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const +10812:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::name\28\29\20const +10813:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +10814:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::clone\28\29\20const +10815:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10816:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const +10817:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::name\28\29\20const +10818:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +10819:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::clone\28\29\20const +10820:GrFixedClip::~GrFixedClip\28\29_9233 +10821:GrFixedClip::~GrFixedClip\28\29 +10822:GrExternalTextureGenerator::onGenerateTexture\28GrRecordingContext*\2c\20SkImageInfo\20const&\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +10823:GrEagerDynamicVertexAllocator::lock\28unsigned\20long\2c\20int\29 +10824:GrDynamicAtlas::~GrDynamicAtlas\28\29_9204 +10825:GrDynamicAtlas::~GrDynamicAtlas\28\29 +10826:GrDrawingManager::flush\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +10827:GrDrawOp::usesStencil\28\29\20const +10828:GrDrawOp::usesMSAA\28\29\20const +10829:GrDrawOp::fixedFunctionFlags\28\29\20const +10830:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29_10404 +10831:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29 +10832:GrDistanceFieldPathGeoProc::onTextureSampler\28int\29\20const +10833:GrDistanceFieldPathGeoProc::name\28\29\20const +10834:GrDistanceFieldPathGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10835:GrDistanceFieldPathGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10836:GrDistanceFieldPathGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10837:GrDistanceFieldPathGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10838:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29_10408 +10839:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29 +10840:GrDistanceFieldLCDTextGeoProc::name\28\29\20const +10841:GrDistanceFieldLCDTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10842:GrDistanceFieldLCDTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10843:GrDistanceFieldLCDTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10844:GrDistanceFieldLCDTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10845:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29_10400 +10846:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29 +10847:GrDistanceFieldA8TextGeoProc::name\28\29\20const +10848:GrDistanceFieldA8TextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10849:GrDistanceFieldA8TextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10850:GrDistanceFieldA8TextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10851:GrDistanceFieldA8TextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10852:GrDisableColorXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +10853:GrDisableColorXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +10854:GrDirectContext::~GrDirectContext\28\29_9106 +10855:GrDirectContext::releaseResourcesAndAbandonContext\28\29 +10856:GrDirectContext::init\28\29 +10857:GrDirectContext::abandoned\28\29 +10858:GrDirectContext::abandonContext\28\29 +10859:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29_8734 +10860:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29 +10861:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29_9228 +10862:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29 +10863:GrCpuVertexAllocator::unlock\28int\29 +10864:GrCpuVertexAllocator::lock\28unsigned\20long\2c\20int\29 +10865:GrCpuBuffer::unref\28\29\20const +10866:GrCoverageSetOpXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +10867:GrCoverageSetOpXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +10868:GrCopyRenderTask::~GrCopyRenderTask\28\29_9066 +10869:GrCopyRenderTask::onMakeSkippable\28\29 +10870:GrCopyRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +10871:GrCopyRenderTask::onExecute\28GrOpFlushState*\29 +10872:GrCopyRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +10873:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10874:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10875:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const +10876:GrConvexPolyEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10877:GrConvexPolyEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10878:GrConvexPolyEffect::name\28\29\20const +10879:GrConvexPolyEffect::clone\28\29\20const +10880:GrContext_Base::~GrContext_Base\28\29_9046 +10881:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29_9034 +10882:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29 +10883:GrContextThreadSafeProxy::isValidCharacterizationForVulkan\28sk_sp\2c\20bool\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20bool\2c\20bool\29 +10884:GrConicEffect::name\28\29\20const +10885:GrConicEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10886:GrConicEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10887:GrConicEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10888:GrConicEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10889:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29_9018 +10890:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29 +10891:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10892:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10893:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const +10894:GrColorSpaceXformEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10895:GrColorSpaceXformEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10896:GrColorSpaceXformEffect::name\28\29\20const +10897:GrColorSpaceXformEffect::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +10898:GrColorSpaceXformEffect::clone\28\29\20const +10899:GrCaps::~GrCaps\28\29 +10900:GrCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +10901:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29_10313 +10902:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29 +10903:GrBitmapTextGeoProc::onTextureSampler\28int\29\20const +10904:GrBitmapTextGeoProc::name\28\29\20const +10905:GrBitmapTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10906:GrBitmapTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10907:GrBitmapTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10908:GrBitmapTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10909:GrBicubicEffect::onMakeProgramImpl\28\29\20const +10910:GrBicubicEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +10911:GrBicubicEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10912:GrBicubicEffect::name\28\29\20const +10913:GrBicubicEffect::clone\28\29\20const +10914:GrBicubicEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +10915:GrBicubicEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +10916:GrAttachment::onGpuMemorySize\28\29\20const +10917:GrAttachment::getResourceType\28\29\20const +10918:GrAttachment::computeScratchKey\28skgpu::ScratchKey*\29\20const +10919:GrAtlasManager::~GrAtlasManager\28\29_11973 +10920:GrAtlasManager::preFlush\28GrOnFlushResourceProvider*\29 +10921:GrAtlasManager::postFlush\28skgpu::Token\29 +10922:GrAATriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +10923:GetRectsForRange\28skia::textlayout::Paragraph&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +10924:GetRectsForPlaceholders\28skia::textlayout::Paragraph&\29 +10925:GetLineMetrics\28skia::textlayout::Paragraph&\29 +10926:GetLineMetricsAt\28skia::textlayout::Paragraph&\2c\20unsigned\20long\29 +10927:GetGlyphInfoAt\28skia::textlayout::Paragraph&\2c\20unsigned\20long\29 +10928:GetCoeffsFast +10929:GetCoeffsAlt +10930:GetClosestGlyphInfoAtCoordinate\28skia::textlayout::Paragraph&\2c\20float\2c\20float\29 +10931:FontMgrRunIterator::~FontMgrRunIterator\28\29_13466 +10932:FontMgrRunIterator::~FontMgrRunIterator\28\29 +10933:FontMgrRunIterator::currentFont\28\29\20const +10934:FontMgrRunIterator::consume\28\29 +10935:ExtractGreen_C +10936:ExtractAlpha_C +10937:ExtractAlphaRows +10938:ExternalWebGLTexture::~ExternalWebGLTexture\28\29_906 +10939:ExternalWebGLTexture::~ExternalWebGLTexture\28\29 +10940:ExternalWebGLTexture::getBackendTexture\28\29 +10941:ExternalWebGLTexture::dispose\28\29 +10942:ExportAlphaRGBA4444 +10943:ExportAlpha +10944:Equals\28SkPath\20const&\2c\20SkPath\20const&\29 +10945:End +10946:EmitYUV +10947:EmitSampledRGB +10948:EmitRescaledYUV +10949:EmitRescaledRGB +10950:EmitRescaledAlphaYUV +10951:EmitRescaledAlphaRGB +10952:EmitFancyRGB +10953:EmitAlphaYUV +10954:EmitAlphaRGBA4444 +10955:EmitAlphaRGB +10956:EllipticalRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10957:EllipticalRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10958:EllipticalRRectOp::name\28\29\20const +10959:EllipticalRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10960:EllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10961:EllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10962:EllipseOp::name\28\29\20const +10963:EllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10964:EllipseGeometryProcessor::name\28\29\20const +10965:EllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10966:EllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10967:EllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10968:Dual_Project +10969:DitherCombine8x8_C +10970:DispatchAlpha_C +10971:DispatchAlphaToGreen_C +10972:DisableColorXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +10973:DisableColorXP::name\28\29\20const +10974:DisableColorXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +10975:DisableColorXP::makeProgramImpl\28\29\20const +10976:Direct_Move_Y +10977:Direct_Move_X +10978:Direct_Move_Orig_Y +10979:Direct_Move_Orig_X +10980:Direct_Move_Orig +10981:Direct_Move +10982:DefaultGeoProc::name\28\29\20const +10983:DefaultGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10984:DefaultGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10985:DefaultGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10986:DefaultGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10987:DataFontLoader::loadSystemFonts\28SkFontScanner\20const*\2c\20skia_private::TArray\2c\20true>*\29\20const +10988:DIEllipseOp::~DIEllipseOp\28\29_11474 +10989:DIEllipseOp::~DIEllipseOp\28\29 +10990:DIEllipseOp::visitProxies\28std::__2::function\20const&\29\20const +10991:DIEllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10992:DIEllipseOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10993:DIEllipseOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10994:DIEllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10995:DIEllipseOp::name\28\29\20const +10996:DIEllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10997:DIEllipseGeometryProcessor::name\28\29\20const +10998:DIEllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10999:DIEllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11000:DIEllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11001:DC8uv_C +11002:DC8uvNoTop_C +11003:DC8uvNoTopLeft_C +11004:DC8uvNoLeft_C +11005:DC4_C +11006:DC16_C +11007:DC16NoTop_C +11008:DC16NoTopLeft_C +11009:DC16NoLeft_C +11010:CustomXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11011:CustomXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +11012:CustomXP::xferBarrierType\28GrCaps\20const&\29\20const +11013:CustomXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +11014:CustomXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11015:CustomXP::name\28\29\20const +11016:CustomXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +11017:CustomXP::makeProgramImpl\28\29\20const +11018:CustomTeardown +11019:CustomSetup +11020:CustomPut +11021:Current_Ppem_Stretched +11022:Current_Ppem +11023:Cr_z_zcalloc +11024:CoverageSetOpXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +11025:CoverageSetOpXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11026:CoverageSetOpXP::name\28\29\20const +11027:CoverageSetOpXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +11028:CoverageSetOpXP::makeProgramImpl\28\29\20const +11029:CopyPath\28SkPath\20const&\29 +11030:ConvertRGB24ToY_C +11031:ConvertBGR24ToY_C +11032:ConvertARGBToY_C +11033:ColorTableEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11034:ColorTableEffect::onMakeProgramImpl\28\29\20const +11035:ColorTableEffect::name\28\29\20const +11036:ColorTableEffect::clone\28\29\20const +11037:CircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +11038:CircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11039:CircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +11040:CircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11041:CircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11042:CircularRRectOp::name\28\29\20const +11043:CircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11044:CircleOp::~CircleOp\28\29_11448 +11045:CircleOp::~CircleOp\28\29 +11046:CircleOp::visitProxies\28std::__2::function\20const&\29\20const +11047:CircleOp::programInfo\28\29 +11048:CircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11049:CircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +11050:CircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11051:CircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11052:CircleOp::name\28\29\20const +11053:CircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11054:CircleGeometryProcessor::name\28\29\20const +11055:CircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11056:CircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11057:CircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11058:CanInterpolate\28SkPath\20const&\2c\20SkPath\20const&\29 +11059:ButtCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +11060:ButtCapDashedCircleOp::visitProxies\28std::__2::function\20const&\29\20const +11061:ButtCapDashedCircleOp::programInfo\28\29 +11062:ButtCapDashedCircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11063:ButtCapDashedCircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +11064:ButtCapDashedCircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11065:ButtCapDashedCircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11066:ButtCapDashedCircleOp::name\28\29\20const +11067:ButtCapDashedCircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11068:ButtCapDashedCircleGeometryProcessor::name\28\29\20const +11069:ButtCapDashedCircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11070:ButtCapDashedCircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11071:ButtCapDashedCircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11072:BrotliDefaultAllocFunc +11073:BluntJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +11074:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11075:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11076:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const +11077:BlendFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +11078:BlendFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11079:BlendFragmentProcessor::name\28\29\20const +11080:BlendFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +11081:BlendFragmentProcessor::clone\28\29\20const +11082:AutoCleanPng::infoCallback\28unsigned\20long\29 +11083:AutoCleanPng::decodeBounds\28\29 +11084:ApplyTrim\28SkPath&\2c\20float\2c\20float\2c\20bool\29 +11085:ApplyTransform\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11086:ApplyStroke\28SkPath&\2c\20StrokeOpts\29 +11087:ApplySimplify\28SkPath&\29 +11088:ApplyRewind\28SkPath&\29 +11089:ApplyReset\28SkPath&\29 +11090:ApplyRQuadTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\29 +11091:ApplyRMoveTo\28SkPath&\2c\20float\2c\20float\29 +11092:ApplyRLineTo\28SkPath&\2c\20float\2c\20float\29 +11093:ApplyRCubicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11094:ApplyRConicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11095:ApplyRArcToArcSize\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29 +11096:ApplyQuadTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\29 +11097:ApplyPathOp\28SkPath&\2c\20SkPath\20const&\2c\20SkPathOp\29 +11098:ApplyMoveTo\28SkPath&\2c\20float\2c\20float\29 +11099:ApplyLineTo\28SkPath&\2c\20float\2c\20float\29 +11100:ApplyDash\28SkPath&\2c\20float\2c\20float\2c\20float\29 +11101:ApplyCubicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11102:ApplyConicTo\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11103:ApplyClose\28SkPath&\29 +11104:ApplyArcToTangent\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11105:ApplyArcToArcSize\28SkPath&\2c\20float\2c\20float\2c\20float\2c\20bool\2c\20bool\2c\20float\2c\20float\29 +11106:ApplyAlphaMultiply_C +11107:ApplyAlphaMultiply_16b_C +11108:ApplyAddPath\28SkPath&\2c\20SkPath\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +11109:AlphaReplace_C +11110:$_3::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +11111:$_2::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 +11112:$_1::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +11113:$_0::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 diff --git a/build/web/canvaskit/chromium/canvaskit.wasm b/build/web/canvaskit/chromium/canvaskit.wasm new file mode 100755 index 0000000..8563aed Binary files /dev/null and b/build/web/canvaskit/chromium/canvaskit.wasm differ diff --git a/build/web/canvaskit/skwasm.js b/build/web/canvaskit/skwasm.js new file mode 100644 index 0000000..6843fdd --- /dev/null +++ b/build/web/canvaskit/skwasm.js @@ -0,0 +1,141 @@ + +var skwasm = (() => { + var _scriptName = typeof document != 'undefined' ? document.currentScript?.src : undefined; + + return ( +function(moduleArg = {}) { + var moduleRtn; + +function d(){g.buffer!=k.buffer&&n();return k}function q(){g.buffer!=k.buffer&&n();return aa}function r(){g.buffer!=k.buffer&&n();return ba}function t(){g.buffer!=k.buffer&&n();return ca}function u(){g.buffer!=k.buffer&&n();return da}var w=moduleArg,ea,fa,ha=new Promise((a,b)=>{ea=a;fa=b}),ia="object"==typeof window,ja="function"==typeof importScripts,ka=w.$ww,la=Object.assign({},w),x="";function ma(a){return w.locateFile?w.locateFile(a,x):x+a}var na,oa; +if(ia||ja)ja?x=self.location.href:"undefined"!=typeof document&&document.currentScript&&(x=document.currentScript.src),_scriptName&&(x=_scriptName),x.startsWith("blob:")?x="":x=x.substr(0,x.replace(/[?#].*/,"").lastIndexOf("/")+1),ja&&(oa=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),na=a=>fetch(a,{credentials:"same-origin"}).then(b=>b.ok?b.arrayBuffer():Promise.reject(Error(b.status+" : "+b.url))); +var pa=console.log.bind(console),y=console.error.bind(console);Object.assign(w,la);la=null;var g,qa,ra=!1,sa,k,aa,ta,ua,ba,ca,da;function n(){var a=g.buffer;k=new Int8Array(a);ta=new Int16Array(a);aa=new Uint8Array(a);ua=new Uint16Array(a);ba=new Int32Array(a);ca=new Uint32Array(a);da=new Float32Array(a);new Float64Array(a)}w.wasmMemory?g=w.wasmMemory:g=new WebAssembly.Memory({initial:256,maximum:32768,shared:!0});n();var va=[],wa=[],xa=[]; +function ya(){ka?(za=1,Aa(w.sb,w.sz),removeEventListener("message",Ba),Ca=Ca.forEach(Da),addEventListener("message",Da)):Ea(wa)}var z=0,Fa=null,A=null;function Ga(a){a="Aborted("+a+")";y(a);ra=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");fa(a);throw a;}var Ha=a=>a.startsWith("data:application/octet-stream;base64,"),Ia; +function Ja(a){return na(a).then(b=>new Uint8Array(b),()=>{if(oa)var b=oa(a);else throw"both async and sync fetching of the wasm failed";return b})}function Ka(a,b,c){return Ja(a).then(e=>WebAssembly.instantiate(e,b)).then(c,e=>{y(`failed to asynchronously prepare wasm: ${e}`);Ga(e)})} +function La(a,b){var c=Ia;return"function"!=typeof WebAssembly.instantiateStreaming||Ha(c)||"function"!=typeof fetch?Ka(c,a,b):fetch(c,{credentials:"same-origin"}).then(e=>WebAssembly.instantiateStreaming(e,a).then(b,function(f){y(`wasm streaming compile failed: ${f}`);y("falling back to ArrayBuffer instantiation");return Ka(c,a,b)}))}function Ma(a){this.name="ExitStatus";this.message=`Program terminated with exit(${a})`;this.status=a} +var Ca=[],Na=a=>{if(!(a instanceof Ma||"unwind"==a))throw a;},Oa=0,Pa=a=>{sa=a;za||0{if(!ra)try{if(a(),!(za||0{let b=a.data,c=b._wsc;c&&Qa(()=>B.get(c)(...b.x))},Ba=a=>{Ca.push(a)},Ea=a=>{a.forEach(b=>b(w))},za=w.noExitRuntime||!0;class Ra{constructor(a){this.s=a-24}} +var Sa=0,Ta=0,Ua="undefined"!=typeof TextDecoder?new TextDecoder:void 0,Va=(a,b=0,c=NaN)=>{var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}, +C=(a,b)=>a?Va(q(),a,b):"",D={},Wa=1,Xa={},E=(a,b,c)=>{var e=q();if(0=l){var m=a.charCodeAt(++h);l=65536+((l&1023)<<10)|m&1023}if(127>=l){if(b>=c)break;e[b++]=l}else{if(2047>=l){if(b+1>=c)break;e[b++]=192|l>>6}else{if(65535>=l){if(b+2>=c)break;e[b++]=224|l>>12}else{if(b+3>=c)break;e[b++]=240|l>>18;e[b++]=128|l>>12&63}e[b++]=128|l>>6&63}e[b++]=128|l&63}}e[b]=0;a=b-f}else a=0;return a},F,Ya=a=>{var b=a.getExtension("ANGLE_instanced_arrays"); +b&&(a.vertexAttribDivisor=(c,e)=>b.vertexAttribDivisorANGLE(c,e),a.drawArraysInstanced=(c,e,f,h)=>b.drawArraysInstancedANGLE(c,e,f,h),a.drawElementsInstanced=(c,e,f,h,l)=>b.drawElementsInstancedANGLE(c,e,f,h,l))},Za=a=>{var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=()=>b.createVertexArrayOES(),a.deleteVertexArray=c=>b.deleteVertexArrayOES(c),a.bindVertexArray=c=>b.bindVertexArrayOES(c),a.isVertexArray=c=>b.isVertexArrayOES(c))},$a=a=>{var b=a.getExtension("WEBGL_draw_buffers"); +b&&(a.drawBuffers=(c,e)=>b.drawBuffersWEBGL(c,e))},ab=a=>{a.H=a.getExtension("WEBGL_draw_instanced_base_vertex_base_instance")},bb=a=>{a.K=a.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance")},cb=a=>{var b="ANGLE_instanced_arrays EXT_blend_minmax EXT_disjoint_timer_query EXT_frag_depth EXT_shader_texture_lod EXT_sRGB OES_element_index_uint OES_fbo_render_mipmap OES_standard_derivatives OES_texture_float OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_depth_texture WEBGL_draw_buffers EXT_color_buffer_float EXT_conservative_depth EXT_disjoint_timer_query_webgl2 EXT_texture_norm16 NV_shader_noperspective_interpolation WEBGL_clip_cull_distance EXT_clip_control EXT_color_buffer_half_float EXT_depth_clamp EXT_float_blend EXT_polygon_offset_clamp EXT_texture_compression_bptc EXT_texture_compression_rgtc EXT_texture_filter_anisotropic KHR_parallel_shader_compile OES_texture_float_linear WEBGL_blend_func_extended WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_etc1 WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context WEBGL_multi_draw WEBGL_polygon_mode".split(" "); +return(a.getSupportedExtensions()||[]).filter(c=>b.includes(c))},db=1,eb=[],G=[],fb=[],gb=[],H=[],I=[],hb=[],ib=[],J=[],K=[],L=[],jb={},kb={},lb=4,mb=0,M=a=>{for(var b=db++,c=a.length;c{for(var f=0;f>2]=l}},ob=a=>{var b={J:2,alpha:!0,depth:!0,stencil:!0,antialias:!1,premultipliedAlpha:!0,preserveDrawingBuffer:!1,powerPreference:"default",failIfMajorPerformanceCaveat:!1,I:!0};a.s||(a.s=a.getContext, +a.getContext=function(e,f){f=a.s(e,f);return"webgl"==e==f instanceof WebGLRenderingContext?f:null});var c=1{var c=M(ib),e={handle:c,attributes:b,version:b.J,v:a};a.canvas&&(a.canvas.Z=e);ib[c]=e;("undefined"==typeof b.I||b.I)&&pb(e);return c},pb=a=>{a||=P;if(!a.S){a.S=!0;var b=a.v;b.T=b.getExtension("WEBGL_multi_draw");b.P=b.getExtension("EXT_polygon_offset_clamp");b.O=b.getExtension("EXT_clip_control");b.Y=b.getExtension("WEBGL_polygon_mode"); +Ya(b);Za(b);$a(b);ab(b);bb(b);2<=a.version&&(b.g=b.getExtension("EXT_disjoint_timer_query_webgl2"));if(2>a.version||!b.g)b.g=b.getExtension("EXT_disjoint_timer_query");cb(b).forEach(c=>{c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}},N,P,qb=a=>{F.bindVertexArray(hb[a])},rb=(a,b)=>{for(var c=0;c>2],f=H[e];f&&(F.deleteTexture(f),f.name=0,H[e]=null)}},sb=(a,b)=>{for(var c=0;c>2];F.deleteVertexArray(hb[e]);hb[e]=null}},tb=[],ub=(a, +b)=>{O(a,b,"createVertexArray",hb)},vb=(a,b)=>{t()[a>>2]=b;var c=t()[a>>2];t()[a+4>>2]=(b-c)/4294967296};function wb(){var a=cb(F);return a=a.concat(a.map(b=>"GL_"+b))} +var xb=(a,b,c)=>{if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&(N||=1280);return;case 34814:case 36345:e=0;break;case 34466:var f=F.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>P.version){N||=1282;return}e=wb().length;break;case 33307:case 33308:if(2>P.version){N||=1280;return}e=33307==a?3:0}if(void 0===e)switch(f=F.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":N||=1280;return;case "object":if(null===f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e= +0;break;default:N||=1280;return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:u()[b+4*a>>2]=f[a];break;case 4:d()[b+a]=f[a]?1:0}return}try{e=f.name|0}catch(h){N||=1280;y(`GL_INVALID_ENUM in glGet${c}v: Unknown object returned from WebGL getParameter(${a})! (error: ${h})`);return}}break;default:N||=1280;y(`GL_INVALID_ENUM in glGet${c}v: Native code calling glGet${c}v(${a}) and it returns ${f} of type ${typeof f}!`); +return}switch(c){case 1:vb(b,e);break;case 0:r()[b>>2]=e;break;case 2:u()[b>>2]=e;break;case 4:d()[b]=e?1:0}}else N||=1281},yb=(a,b)=>xb(a,b,0),zb=(a,b,c)=>{if(c){a=J[a];b=2>P.version?F.g.getQueryObjectEXT(a,b):F.getQueryParameter(a,b);var e;"boolean"==typeof b?e=b?1:0:e=b;vb(c,e)}else N||=1281},Bb=a=>{for(var b=0,c=0;c=e?b++:2047>=e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}b+=1;(c=Ab(b))&&E(a,c,b);return c},Cb=a=>{var b=jb[a];if(!b){switch(a){case 7939:b=Bb(wb().join(" ")); +break;case 7936:case 7937:case 37445:case 37446:(b=F.getParameter(a))||(N||=1280);b=b?Bb(b):0;break;case 7938:b=F.getParameter(7938);var c=`OpenGL ES 2.0 (${b})`;2<=P.version&&(c=`OpenGL ES 3.0 (${b})`);b=Bb(c);break;case 35724:b=F.getParameter(35724);c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!==c&&(3==c[1].length&&(c[1]+="0"),b=`OpenGL ES GLSL ES ${c[1]} (${b})`);b=Bb(b);break;default:N||=1280}jb[a]=b}return b},Db=(a,b)=>{if(2>P.version)return N||=1282,0;var c=kb[a];if(c)return 0> +b||b>=c.length?(N||=1281,0):c[b];switch(a){case 7939:return c=wb().map(Bb),c=kb[a]=c,0>b||b>=c.length?(N||=1281,0):c[b];default:return N||=1280,0}},Eb=a=>"]"==a.slice(-1)&&a.lastIndexOf("["),Fb=a=>{a-=5120;0==a?a=d():1==a?a=q():2==a?(g.buffer!=k.buffer&&n(),a=ta):4==a?a=r():6==a?a=u():5==a||28922==a||28520==a||30779==a||30782==a?a=t():(g.buffer!=k.buffer&&n(),a=ua);return a},Gb=(a,b,c,e,f)=>{a=Fb(a);b=e*((mb||c)*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*a.BYTES_PER_ELEMENT+ +lb-1&-lb);return a.subarray(f>>>31-Math.clz32(a.BYTES_PER_ELEMENT),f+b>>>31-Math.clz32(a.BYTES_PER_ELEMENT))},Q=a=>{var b=F.N;if(b){var c=b.u[a];"number"==typeof c&&(b.u[a]=c=F.getUniformLocation(b,b.L[a]+(0{if(!Jb){var a={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:("object"==typeof navigator&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",_:"./this.program"},b;for(b in Ib)void 0=== +Ib[b]?delete a[b]:a[b]=Ib[b];var c=[];for(b in a)c.push(`${b}=${a[b]}`);Jb=c}return Jb},Jb,Lb=[null,[],[]];function Mb(){}function Nb(){}function Ob(){}function Pb(){}function Qb(){}function Rb(){}function Sb(){}function Tb(){}function Ub(){}function Vb(){}function Wb(){}function Xb(){}function Yb(){}function Zb(){}function $b(){}function S(){}function ac(){}var U,bc=[],dc=a=>cc(a);w.stackAlloc=dc;ka&&(D[0]=this,addEventListener("message",Ba));for(var V=0;32>V;++V)tb.push(Array(V));var ec=new Float32Array(288); +for(V=0;288>=V;++V)R[V]=ec.subarray(0,V);var fc=new Int32Array(288);for(V=0;288>=V;++V)Hb[V]=fc.subarray(0,V); +(function(){if(w.skwasmSingleThreaded){Xb=function(){return!0};let c;Nb=function(e,f){c=f};Ob=function(){return performance.now()};S=function(e){queueMicrotask(()=>c(e))}}else{Xb=function(){return!1};let c=0;Nb=function(e,f){function h({data:l}){const m=l.h;m&&("syncTimeOrigin"==m?c=performance.timeOrigin-l.timeOrigin:f(l))}e?(D[e].addEventListener("message",h),D[e].postMessage({h:"syncTimeOrigin",timeOrigin:performance.timeOrigin})):addEventListener("message",h)};Ob=function(){return performance.now()+ +c};S=function(e,f,h){h?D[h].postMessage(e,{transfer:f}):postMessage(e,{transfer:f})}}const a=new Map,b=new Map;ac=function(c,e,f){S({h:"setAssociatedObject",F:e,object:f},[f],c)};Wb=function(c){return b.get(c)};Pb=function(c){Nb(c,function(e){var f=e.h;if(f)switch(f){case "renderPictures":gc(e.l,e.V,e.width,e.height,e.U,e.m,Ob());break;case "onRenderComplete":hc(e.l,e.m,{imageBitmaps:e.R,rasterStartMilliseconds:e.X,rasterEndMilliseconds:e.W});break;case "setAssociatedObject":b.set(e.F,e.object);break; +case "disposeAssociatedObject":e=e.F;f=b.get(e);f.close&&f.close();b.delete(e);break;case "disposeSurface":ic(e.l);break;case "rasterizeImage":jc(e.l,e.image,e.format,e.m);break;case "onRasterizeComplete":kc(e.l,e.data,e.m);break;default:console.warn(`unrecognized skwasm message: ${f}`)}})};Ub=function(c,e,f,h,l,m,p){S({h:"renderPictures",l:e,V:f,width:h,height:l,U:m,m:p},[],c)};Rb=function(c,e){c=new OffscreenCanvas(c,e);e=ob(c);a.set(e,c);return e};Zb=function(c,e,f){c=a.get(c);c.width=e;c.height= +f};Mb=function(c,e){e||=[];c=a.get(c);e.push(c.transferToImageBitmap());return e};$b=async function(c,e,f,h){e||=[];S({h:"onRenderComplete",l:c,m:h,R:e,X:f,W:Ob()},[...e])};Qb=function(c,e,f){const h=P.v,l=h.createTexture();h.bindTexture(h.TEXTURE_2D,l);h.pixelStorei(h.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);h.texImage2D(h.TEXTURE_2D,0,h.RGBA,e,f,0,h.RGBA,h.UNSIGNED_BYTE,c);h.pixelStorei(h.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);h.bindTexture(h.TEXTURE_2D,null);c=M(H);H[c]=l;return c};Vb=function(c,e){S({h:"disposeAssociatedObject", +F:e},[],c)};Sb=function(c,e){S({h:"disposeSurface",l:e},[],c)};Tb=function(c,e,f,h,l){S({h:"rasterizeImage",l:e,image:f,format:h,m:l},[],c)};Yb=function(c,e,f){S({h:"onRasterizeComplete",l:c,data:e,m:f})}})(); +var wc={__cxa_throw:(a,b,c)=>{var e=new Ra(a);t()[e.s+16>>2]=0;t()[e.s+4>>2]=b;t()[e.s+8>>2]=c;Sa=a;Ta++;throw Sa;},__syscall_fcntl64:function(){return 0},__syscall_fstat64:()=>{},__syscall_ioctl:function(){return 0},__syscall_openat:function(){},_abort_js:()=>{Ga("")},_emscripten_create_wasm_worker:(a,b)=>{let c=D[Wa]=new Worker(ma("skwasm.ww.js"));c.postMessage({$ww:Wa,wasm:qa,js:w.mainScriptUrlOrBlob||_scriptName,wasmMemory:g,sb:a,sz:b});c.onmessage=Da;return Wa++},_emscripten_get_now_is_monotonic:()=> +1,_emscripten_runtime_keepalive_clear:()=>{za=!1;Oa=0},_emscripten_throw_longjmp:()=>{throw Infinity;},_mmap_js:function(){return-52},_munmap_js:function(){},_setitimer_js:(a,b)=>{Xa[a]&&(clearTimeout(Xa[a].id),delete Xa[a]);if(!b)return 0;var c=setTimeout(()=>{delete Xa[a];Qa(()=>lc(a,performance.now()))},b);Xa[a]={id:c,aa:b};return 0},_tzset_js:(a,b,c,e)=>{var f=(new Date).getFullYear(),h=(new Date(f,0,1)).getTimezoneOffset();f=(new Date(f,6,1)).getTimezoneOffset();var l=Math.max(h,f);t()[a>>2]= +60*l;r()[b>>2]=Number(h!=f);b=m=>{var p=Math.abs(m);return`UTC${0<=m?"-":"+"}${String(Math.floor(p/60)).padStart(2,"0")}${String(p%60).padStart(2,"0")}`};a=b(h);b=b(f);f{console.warn(C(a))},emscripten_get_now:()=>performance.now(),emscripten_glActiveTexture:a=>F.activeTexture(a),emscripten_glAttachShader:(a,b)=>{F.attachShader(G[a],I[b])},emscripten_glBeginQuery:(a,b)=>{F.beginQuery(a,J[b])},emscripten_glBeginQueryEXT:(a,b)=> +{F.g.beginQueryEXT(a,J[b])},emscripten_glBindAttribLocation:(a,b,c)=>{F.bindAttribLocation(G[a],b,C(c))},emscripten_glBindBuffer:(a,b)=>{35051==a?F.D=b:35052==a&&(F.o=b);F.bindBuffer(a,eb[b])},emscripten_glBindFramebuffer:(a,b)=>{F.bindFramebuffer(a,fb[b])},emscripten_glBindRenderbuffer:(a,b)=>{F.bindRenderbuffer(a,gb[b])},emscripten_glBindSampler:(a,b)=>{F.bindSampler(a,K[b])},emscripten_glBindTexture:(a,b)=>{F.bindTexture(a,H[b])},emscripten_glBindVertexArray:qb,emscripten_glBindVertexArrayOES:qb, +emscripten_glBlendColor:(a,b,c,e)=>F.blendColor(a,b,c,e),emscripten_glBlendEquation:a=>F.blendEquation(a),emscripten_glBlendFunc:(a,b)=>F.blendFunc(a,b),emscripten_glBlitFramebuffer:(a,b,c,e,f,h,l,m,p,v)=>F.blitFramebuffer(a,b,c,e,f,h,l,m,p,v),emscripten_glBufferData:(a,b,c,e)=>{2<=P.version?c&&b?F.bufferData(a,q(),e,c,b):F.bufferData(a,b,e):F.bufferData(a,c?q().subarray(c,c+b):b,e)},emscripten_glBufferSubData:(a,b,c,e)=>{2<=P.version?c&&F.bufferSubData(a,b,q(),e,c):F.bufferSubData(a,b,q().subarray(e, +e+c))},emscripten_glCheckFramebufferStatus:a=>F.checkFramebufferStatus(a),emscripten_glClear:a=>F.clear(a),emscripten_glClearColor:(a,b,c,e)=>F.clearColor(a,b,c,e),emscripten_glClearStencil:a=>F.clearStencil(a),emscripten_glClientWaitSync:(a,b,c,e)=>F.clientWaitSync(L[a],b,(c>>>0)+4294967296*e),emscripten_glColorMask:(a,b,c,e)=>{F.colorMask(!!a,!!b,!!c,!!e)},emscripten_glCompileShader:a=>{F.compileShader(I[a])},emscripten_glCompressedTexImage2D:(a,b,c,e,f,h,l,m)=>{2<=P.version?F.o||!l?F.compressedTexImage2D(a, +b,c,e,f,h,l,m):F.compressedTexImage2D(a,b,c,e,f,h,q(),m,l):F.compressedTexImage2D(a,b,c,e,f,h,q().subarray(m,m+l))},emscripten_glCompressedTexSubImage2D:(a,b,c,e,f,h,l,m,p)=>{2<=P.version?F.o||!m?F.compressedTexSubImage2D(a,b,c,e,f,h,l,m,p):F.compressedTexSubImage2D(a,b,c,e,f,h,l,q(),p,m):F.compressedTexSubImage2D(a,b,c,e,f,h,l,q().subarray(p,p+m))},emscripten_glCopyBufferSubData:(a,b,c,e,f)=>F.copyBufferSubData(a,b,c,e,f),emscripten_glCopyTexSubImage2D:(a,b,c,e,f,h,l,m)=>F.copyTexSubImage2D(a,b, +c,e,f,h,l,m),emscripten_glCreateProgram:()=>{var a=M(G),b=F.createProgram();b.name=a;b.C=b.A=b.B=0;b.G=1;G[a]=b;return a},emscripten_glCreateShader:a=>{var b=M(I);I[b]=F.createShader(a);return b},emscripten_glCullFace:a=>F.cullFace(a),emscripten_glDeleteBuffers:(a,b)=>{for(var c=0;c>2],f=eb[e];f&&(F.deleteBuffer(f),f.name=0,eb[e]=null,e==F.D&&(F.D=0),e==F.o&&(F.o=0))}},emscripten_glDeleteFramebuffers:(a,b)=>{for(var c=0;c>2],f=fb[e];f&&(F.deleteFramebuffer(f), +f.name=0,fb[e]=null)}},emscripten_glDeleteProgram:a=>{if(a){var b=G[a];b?(F.deleteProgram(b),b.name=0,G[a]=null):N||=1281}},emscripten_glDeleteQueries:(a,b)=>{for(var c=0;c>2],f=J[e];f&&(F.deleteQuery(f),J[e]=null)}},emscripten_glDeleteQueriesEXT:(a,b)=>{for(var c=0;c>2],f=J[e];f&&(F.g.deleteQueryEXT(f),J[e]=null)}},emscripten_glDeleteRenderbuffers:(a,b)=>{for(var c=0;c>2],f=gb[e];f&&(F.deleteRenderbuffer(f),f.name=0,gb[e]=null)}}, +emscripten_glDeleteSamplers:(a,b)=>{for(var c=0;c>2],f=K[e];f&&(F.deleteSampler(f),f.name=0,K[e]=null)}},emscripten_glDeleteShader:a=>{if(a){var b=I[a];b?(F.deleteShader(b),I[a]=null):N||=1281}},emscripten_glDeleteSync:a=>{if(a){var b=L[a];b?(F.deleteSync(b),b.name=0,L[a]=null):N||=1281}},emscripten_glDeleteTextures:rb,emscripten_glDeleteVertexArrays:sb,emscripten_glDeleteVertexArraysOES:sb,emscripten_glDepthMask:a=>{F.depthMask(!!a)},emscripten_glDisable:a=>F.disable(a),emscripten_glDisableVertexAttribArray:a=> +{F.disableVertexAttribArray(a)},emscripten_glDrawArrays:(a,b,c)=>{F.drawArrays(a,b,c)},emscripten_glDrawArraysInstanced:(a,b,c,e)=>{F.drawArraysInstanced(a,b,c,e)},emscripten_glDrawArraysInstancedBaseInstanceWEBGL:(a,b,c,e,f)=>{F.H.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},emscripten_glDrawBuffers:(a,b)=>{for(var c=tb[a],e=0;e>2];F.drawBuffers(c)},emscripten_glDrawElements:(a,b,c,e)=>{F.drawElements(a,b,c,e)},emscripten_glDrawElementsInstanced:(a,b,c,e,f)=>{F.drawElementsInstanced(a, +b,c,e,f)},emscripten_glDrawElementsInstancedBaseVertexBaseInstanceWEBGL:(a,b,c,e,f,h,l)=>{F.H.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,h,l)},emscripten_glDrawRangeElements:(a,b,c,e,f,h)=>{F.drawElements(a,e,f,h)},emscripten_glEnable:a=>F.enable(a),emscripten_glEnableVertexAttribArray:a=>{F.enableVertexAttribArray(a)},emscripten_glEndQuery:a=>F.endQuery(a),emscripten_glEndQueryEXT:a=>{F.g.endQueryEXT(a)},emscripten_glFenceSync:(a,b)=>(a=F.fenceSync(a,b))?(b=M(L),a.name=b,L[b]=a,b): +0,emscripten_glFinish:()=>F.finish(),emscripten_glFlush:()=>F.flush(),emscripten_glFramebufferRenderbuffer:(a,b,c,e)=>{F.framebufferRenderbuffer(a,b,c,gb[e])},emscripten_glFramebufferTexture2D:(a,b,c,e,f)=>{F.framebufferTexture2D(a,b,c,H[e],f)},emscripten_glFrontFace:a=>F.frontFace(a),emscripten_glGenBuffers:(a,b)=>{O(a,b,"createBuffer",eb)},emscripten_glGenFramebuffers:(a,b)=>{O(a,b,"createFramebuffer",fb)},emscripten_glGenQueries:(a,b)=>{O(a,b,"createQuery",J)},emscripten_glGenQueriesEXT:(a,b)=> +{for(var c=0;c>2]=0;break}var f=M(J);e.name=f;J[f]=e;r()[b+4*c>>2]=f}},emscripten_glGenRenderbuffers:(a,b)=>{O(a,b,"createRenderbuffer",gb)},emscripten_glGenSamplers:(a,b)=>{O(a,b,"createSampler",K)},emscripten_glGenTextures:(a,b)=>{O(a,b,"createTexture",H)},emscripten_glGenVertexArrays:ub,emscripten_glGenVertexArraysOES:ub,emscripten_glGenerateMipmap:a=>F.generateMipmap(a),emscripten_glGetBufferParameteriv:(a,b,c)=>{c?r()[c>> +2]=F.getBufferParameter(a,b):N||=1281},emscripten_glGetError:()=>{var a=F.getError()||N;N=0;return a},emscripten_glGetFloatv:(a,b)=>xb(a,b,2),emscripten_glGetFramebufferAttachmentParameteriv:(a,b,c,e)=>{a=F.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;r()[e>>2]=a},emscripten_glGetIntegerv:yb,emscripten_glGetProgramInfoLog:(a,b,c,e)=>{a=F.getProgramInfoLog(G[a]);null===a&&(a="(unknown error)");b=0>2]=b)}, +emscripten_glGetProgramiv:(a,b,c)=>{if(c)if(a>=db)N||=1281;else if(a=G[a],35716==b)a=F.getProgramInfoLog(a),null===a&&(a="(unknown error)"),r()[c>>2]=a.length+1;else if(35719==b){if(!a.C){var e=F.getProgramParameter(a,35718);for(b=0;b>2]=a.C}else if(35722==b){if(!a.A)for(e=F.getProgramParameter(a,35721),b=0;b>2]=a.A}else if(35381==b){if(!a.B)for(e=F.getProgramParameter(a, +35382),b=0;b>2]=a.B}else r()[c>>2]=F.getProgramParameter(a,b);else N||=1281},emscripten_glGetQueryObjecti64vEXT:zb,emscripten_glGetQueryObjectui64vEXT:zb,emscripten_glGetQueryObjectuiv:(a,b,c)=>{if(c){a=F.getQueryParameter(J[a],b);var e;"boolean"==typeof a?e=a?1:0:e=a;r()[c>>2]=e}else N||=1281},emscripten_glGetQueryObjectuivEXT:(a,b,c)=>{if(c){a=F.g.getQueryObjectEXT(J[a],b);var e;"boolean"==typeof a?e=a?1:0:e=a;r()[c>>2]=e}else N||= +1281},emscripten_glGetQueryiv:(a,b,c)=>{c?r()[c>>2]=F.getQuery(a,b):N||=1281},emscripten_glGetQueryivEXT:(a,b,c)=>{c?r()[c>>2]=F.g.getQueryEXT(a,b):N||=1281},emscripten_glGetRenderbufferParameteriv:(a,b,c)=>{c?r()[c>>2]=F.getRenderbufferParameter(a,b):N||=1281},emscripten_glGetShaderInfoLog:(a,b,c,e)=>{a=F.getShaderInfoLog(I[a]);null===a&&(a="(unknown error)");b=0>2]=b)},emscripten_glGetShaderPrecisionFormat:(a,b,c,e)=>{a=F.getShaderPrecisionFormat(a,b);r()[c>>2]=a.rangeMin; +r()[c+4>>2]=a.rangeMax;r()[e>>2]=a.precision},emscripten_glGetShaderiv:(a,b,c)=>{c?35716==b?(a=F.getShaderInfoLog(I[a]),null===a&&(a="(unknown error)"),a=a?a.length+1:0,r()[c>>2]=a):35720==b?(a=(a=F.getShaderSource(I[a]))?a.length+1:0,r()[c>>2]=a):r()[c>>2]=F.getShaderParameter(I[a],b):N||=1281},emscripten_glGetString:Cb,emscripten_glGetStringi:Db,emscripten_glGetUniformLocation:(a,b)=>{b=C(b);if(a=G[a]){var c=a,e=c.u,f=c.M,h;if(!e){c.u=e={};c.L={};var l=F.getProgramParameter(c,35718);for(h=0;h>>0,f=b.slice(0,h));if((f=a.M[f])&&e{for(var e=tb[b],f=0;f>2];F.invalidateFramebuffer(a,e)},emscripten_glInvalidateSubFramebuffer:(a,b,c,e,f,h,l)=>{for(var m= +tb[b],p=0;p>2];F.invalidateSubFramebuffer(a,m,e,f,h,l)},emscripten_glIsSync:a=>F.isSync(L[a]),emscripten_glIsTexture:a=>(a=H[a])?F.isTexture(a):0,emscripten_glLineWidth:a=>F.lineWidth(a),emscripten_glLinkProgram:a=>{a=G[a];F.linkProgram(a);a.u=0;a.M={}},emscripten_glMultiDrawArraysInstancedBaseInstanceWEBGL:(a,b,c,e,f,h)=>{F.K.multiDrawArraysInstancedBaseInstanceWEBGL(a,r(),b>>2,r(),c>>2,r(),e>>2,t(),f>>2,h)},emscripten_glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL:(a, +b,c,e,f,h,l,m)=>{F.K.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,r(),b>>2,c,r(),e>>2,r(),f>>2,r(),h>>2,t(),l>>2,m)},emscripten_glPixelStorei:(a,b)=>{3317==a?lb=b:3314==a&&(mb=b);F.pixelStorei(a,b)},emscripten_glQueryCounterEXT:(a,b)=>{F.g.queryCounterEXT(J[a],b)},emscripten_glReadBuffer:a=>F.readBuffer(a),emscripten_glReadPixels:(a,b,c,e,f,h,l)=>{if(2<=P.version)if(F.D)F.readPixels(a,b,c,e,f,h,l);else{var m=Fb(h);l>>>=31-Math.clz32(m.BYTES_PER_ELEMENT);F.readPixels(a,b,c,e,f,h,m,l)}else(m= +Gb(h,f,c,e,l))?F.readPixels(a,b,c,e,f,h,m):N||=1280},emscripten_glRenderbufferStorage:(a,b,c,e)=>F.renderbufferStorage(a,b,c,e),emscripten_glRenderbufferStorageMultisample:(a,b,c,e,f)=>F.renderbufferStorageMultisample(a,b,c,e,f),emscripten_glSamplerParameterf:(a,b,c)=>{F.samplerParameterf(K[a],b,c)},emscripten_glSamplerParameteri:(a,b,c)=>{F.samplerParameteri(K[a],b,c)},emscripten_glSamplerParameteriv:(a,b,c)=>{c=r()[c>>2];F.samplerParameteri(K[a],b,c)},emscripten_glScissor:(a,b,c,e)=>F.scissor(a, +b,c,e),emscripten_glShaderSource:(a,b,c,e)=>{for(var f="",h=0;h>2]:void 0;f+=C(t()[c+4*h>>2],l)}F.shaderSource(I[a],f)},emscripten_glStencilFunc:(a,b,c)=>F.stencilFunc(a,b,c),emscripten_glStencilFuncSeparate:(a,b,c,e)=>F.stencilFuncSeparate(a,b,c,e),emscripten_glStencilMask:a=>F.stencilMask(a),emscripten_glStencilMaskSeparate:(a,b)=>F.stencilMaskSeparate(a,b),emscripten_glStencilOp:(a,b,c)=>F.stencilOp(a,b,c),emscripten_glStencilOpSeparate:(a,b,c,e)=>F.stencilOpSeparate(a, +b,c,e),emscripten_glTexImage2D:(a,b,c,e,f,h,l,m,p)=>{if(2<=P.version){if(F.o){F.texImage2D(a,b,c,e,f,h,l,m,p);return}if(p){var v=Fb(m);p>>>=31-Math.clz32(v.BYTES_PER_ELEMENT);F.texImage2D(a,b,c,e,f,h,l,m,v,p);return}}v=p?Gb(m,l,e,f,p):null;F.texImage2D(a,b,c,e,f,h,l,m,v)},emscripten_glTexParameterf:(a,b,c)=>F.texParameterf(a,b,c),emscripten_glTexParameterfv:(a,b,c)=>{c=u()[c>>2];F.texParameterf(a,b,c)},emscripten_glTexParameteri:(a,b,c)=>F.texParameteri(a,b,c),emscripten_glTexParameteriv:(a,b,c)=> +{c=r()[c>>2];F.texParameteri(a,b,c)},emscripten_glTexStorage2D:(a,b,c,e,f)=>F.texStorage2D(a,b,c,e,f),emscripten_glTexSubImage2D:(a,b,c,e,f,h,l,m,p)=>{if(2<=P.version){if(F.o){F.texSubImage2D(a,b,c,e,f,h,l,m,p);return}if(p){var v=Fb(m);F.texSubImage2D(a,b,c,e,f,h,l,m,v,p>>>31-Math.clz32(v.BYTES_PER_ELEMENT));return}}p=p?Gb(m,l,f,h,p):null;F.texSubImage2D(a,b,c,e,f,h,l,m,p)},emscripten_glUniform1f:(a,b)=>{F.uniform1f(Q(a),b)},emscripten_glUniform1fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform1fv(Q(a),u(), +c>>2,b);else{if(288>=b)for(var e=R[b],f=0;f>2];else e=u().subarray(c>>2,c+4*b>>2);F.uniform1fv(Q(a),e)}},emscripten_glUniform1i:(a,b)=>{F.uniform1i(Q(a),b)},emscripten_glUniform1iv:(a,b,c)=>{if(2<=P.version)b&&F.uniform1iv(Q(a),r(),c>>2,b);else{if(288>=b)for(var e=Hb[b],f=0;f>2];else e=r().subarray(c>>2,c+4*b>>2);F.uniform1iv(Q(a),e)}},emscripten_glUniform2f:(a,b,c)=>{F.uniform2f(Q(a),b,c)},emscripten_glUniform2fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform2fv(Q(a), +u(),c>>2,2*b);else{if(144>=b){b*=2;for(var e=R[b],f=0;f>2],e[f+1]=u()[c+(4*f+4)>>2]}else e=u().subarray(c>>2,c+8*b>>2);F.uniform2fv(Q(a),e)}},emscripten_glUniform2i:(a,b,c)=>{F.uniform2i(Q(a),b,c)},emscripten_glUniform2iv:(a,b,c)=>{if(2<=P.version)b&&F.uniform2iv(Q(a),r(),c>>2,2*b);else{if(144>=b){b*=2;for(var e=Hb[b],f=0;f>2],e[f+1]=r()[c+(4*f+4)>>2]}else e=r().subarray(c>>2,c+8*b>>2);F.uniform2iv(Q(a),e)}},emscripten_glUniform3f:(a,b,c,e)=>{F.uniform3f(Q(a), +b,c,e)},emscripten_glUniform3fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform3fv(Q(a),u(),c>>2,3*b);else{if(96>=b){b*=3;for(var e=R[b],f=0;f>2],e[f+1]=u()[c+(4*f+4)>>2],e[f+2]=u()[c+(4*f+8)>>2]}else e=u().subarray(c>>2,c+12*b>>2);F.uniform3fv(Q(a),e)}},emscripten_glUniform3i:(a,b,c,e)=>{F.uniform3i(Q(a),b,c,e)},emscripten_glUniform3iv:(a,b,c)=>{if(2<=P.version)b&&F.uniform3iv(Q(a),r(),c>>2,3*b);else{if(96>=b){b*=3;for(var e=Hb[b],f=0;f>2],e[f+1]=r()[c+(4*f+4)>> +2],e[f+2]=r()[c+(4*f+8)>>2]}else e=r().subarray(c>>2,c+12*b>>2);F.uniform3iv(Q(a),e)}},emscripten_glUniform4f:(a,b,c,e,f)=>{F.uniform4f(Q(a),b,c,e,f)},emscripten_glUniform4fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform4fv(Q(a),u(),c>>2,4*b);else{if(72>=b){var e=R[4*b],f=u();c>>=2;b*=4;for(var h=0;h>2,c+16*b>>2);F.uniform4fv(Q(a),e)}},emscripten_glUniform4i:(a,b,c,e,f)=>{F.uniform4i(Q(a),b,c,e,f)},emscripten_glUniform4iv:(a, +b,c)=>{if(2<=P.version)b&&F.uniform4iv(Q(a),r(),c>>2,4*b);else{if(72>=b){b*=4;for(var e=Hb[b],f=0;f>2],e[f+1]=r()[c+(4*f+4)>>2],e[f+2]=r()[c+(4*f+8)>>2],e[f+3]=r()[c+(4*f+12)>>2]}else e=r().subarray(c>>2,c+16*b>>2);F.uniform4iv(Q(a),e)}},emscripten_glUniformMatrix2fv:(a,b,c,e)=>{if(2<=P.version)b&&F.uniformMatrix2fv(Q(a),!!c,u(),e>>2,4*b);else{if(72>=b){b*=4;for(var f=R[b],h=0;h>2],f[h+1]=u()[e+(4*h+4)>>2],f[h+2]=u()[e+(4*h+8)>>2],f[h+3]=u()[e+(4*h+12)>> +2]}else f=u().subarray(e>>2,e+16*b>>2);F.uniformMatrix2fv(Q(a),!!c,f)}},emscripten_glUniformMatrix3fv:(a,b,c,e)=>{if(2<=P.version)b&&F.uniformMatrix3fv(Q(a),!!c,u(),e>>2,9*b);else{if(32>=b){b*=9;for(var f=R[b],h=0;h>2],f[h+1]=u()[e+(4*h+4)>>2],f[h+2]=u()[e+(4*h+8)>>2],f[h+3]=u()[e+(4*h+12)>>2],f[h+4]=u()[e+(4*h+16)>>2],f[h+5]=u()[e+(4*h+20)>>2],f[h+6]=u()[e+(4*h+24)>>2],f[h+7]=u()[e+(4*h+28)>>2],f[h+8]=u()[e+(4*h+32)>>2]}else f=u().subarray(e>>2,e+36*b>>2);F.uniformMatrix3fv(Q(a), +!!c,f)}},emscripten_glUniformMatrix4fv:(a,b,c,e)=>{if(2<=P.version)b&&F.uniformMatrix4fv(Q(a),!!c,u(),e>>2,16*b);else{if(18>=b){var f=R[16*b],h=u();e>>=2;b*=16;for(var l=0;l>2,e+64*b>>2);F.uniformMatrix4fv(Q(a),!!c,f)}},emscripten_glUseProgram:a=> +{a=G[a];F.useProgram(a);F.N=a},emscripten_glVertexAttrib1f:(a,b)=>F.vertexAttrib1f(a,b),emscripten_glVertexAttrib2fv:(a,b)=>{F.vertexAttrib2f(a,u()[b>>2],u()[b+4>>2])},emscripten_glVertexAttrib3fv:(a,b)=>{F.vertexAttrib3f(a,u()[b>>2],u()[b+4>>2],u()[b+8>>2])},emscripten_glVertexAttrib4fv:(a,b)=>{F.vertexAttrib4f(a,u()[b>>2],u()[b+4>>2],u()[b+8>>2],u()[b+12>>2])},emscripten_glVertexAttribDivisor:(a,b)=>{F.vertexAttribDivisor(a,b)},emscripten_glVertexAttribIPointer:(a,b,c,e,f)=>{F.vertexAttribIPointer(a, +b,c,e,f)},emscripten_glVertexAttribPointer:(a,b,c,e,f,h)=>{F.vertexAttribPointer(a,b,c,!!e,f,h)},emscripten_glViewport:(a,b,c,e)=>F.viewport(a,b,c,e),emscripten_glWaitSync:(a,b,c,e)=>{F.waitSync(L[a],b,(c>>>0)+4294967296*e)},emscripten_resize_heap:a=>{var b=q().length;a>>>=0;if(a<=b||2147483648=c;c*=2){var e=b*(1+.2/c);e=Math.min(e,a+100663296);a:{e=(Math.min(2147483648,65536*Math.ceil(Math.max(a,e)/65536))-g.buffer.byteLength+65535)/65536|0;try{g.grow(e);n();var f=1;break a}catch(h){}f= +void 0}if(f)return!0}return!1},emscripten_wasm_worker_post_function_v:(a,b)=>{D[a].postMessage({_wsc:b,x:[]})},emscripten_webgl_enable_extension:function(a,b){a=ib[a];b=C(b);b.startsWith("GL_")&&(b=b.substr(3));"ANGLE_instanced_arrays"==b&&Ya(F);"OES_vertex_array_object"==b&&Za(F);"WEBGL_draw_buffers"==b&&$a(F);"WEBGL_draw_instanced_base_vertex_base_instance"==b&&ab(F);"WEBGL_multi_draw_instanced_base_vertex_base_instance"==b&&bb(F);"WEBGL_multi_draw"==b&&(F.T=F.getExtension("WEBGL_multi_draw")); +"EXT_polygon_offset_clamp"==b&&(F.P=F.getExtension("EXT_polygon_offset_clamp"));"EXT_clip_control"==b&&(F.O=F.getExtension("EXT_clip_control"));"WEBGL_polygon_mode"==b&&(F.Y=F.getExtension("WEBGL_polygon_mode"));return!!a.v.getExtension(b)},emscripten_webgl_get_current_context:()=>P?P.handle:0,emscripten_webgl_make_context_current:a=>{P=ib[a];w.$=F=P?.v;return!a||F?0:-5},environ_get:(a,b)=>{var c=0;Kb().forEach((e,f)=>{var h=b+c;f=t()[a+4*f>>2]=h;for(h=0;h{var c=Kb();t()[a>>2]=c.length;var e=0;c.forEach(f=>e+=f.length+1);t()[b>>2]=e;return 0},fd_close:()=>52,fd_pread:function(){return 52},fd_read:()=>52,fd_seek:function(){return 70},fd_write:(a,b,c,e)=>{for(var f=0,h=0;h>2],m=t()[b+4>>2];b+=8;for(var p=0;p>2]=f;return 0},glDeleteTextures:rb,glGetIntegerv:yb,glGetString:Cb,glGetStringi:Db, +invoke_ii:mc,invoke_iii:nc,invoke_iiii:oc,invoke_iiiii:pc,invoke_iiiiiii:qc,invoke_vi:rc,invoke_vii:sc,invoke_viii:tc,invoke_viiii:uc,invoke_viiiiiii:vc,memory:g,proc_exit:Pa,skwasm_captureImageBitmap:Mb,skwasm_connectThread:Pb,skwasm_createGlTextureFromTextureSource:Qb,skwasm_createOffscreenCanvas:Rb,skwasm_dispatchDisposeSurface:Sb,skwasm_dispatchRasterizeImage:Tb,skwasm_dispatchRenderPictures:Ub,skwasm_disposeAssociatedObjectOnThread:Vb,skwasm_getAssociatedObject:Wb,skwasm_isSingleThreaded:Xb, +skwasm_postRasterizeResult:Yb,skwasm_resizeCanvas:Zb,skwasm_resolveAndPostImages:$b,skwasm_setAssociatedObjectOnThread:ac},W=function(){function a(c,e){W=c.exports;w.wasmExports=W;B=W.__indirect_function_table;wa.unshift(W.__wasm_call_ctors);qa=e;z--;0==z&&(null!==Fa&&(clearInterval(Fa),Fa=null),A&&(c=A,A=null,c()));return W}var b={env:wc,wasi_snapshot_preview1:wc};z++;if(w.instantiateWasm)try{return w.instantiateWasm(b,a)}catch(c){y(`Module.instantiateWasm callback failed with error: ${c}`),fa(c)}Ia??= +Ha("skwasm.wasm")?"skwasm.wasm":ma("skwasm.wasm");La(b,function(c){a(c.instance,c.module)}).catch(fa);return{}}();w._canvas_saveLayer=(a,b,c,e)=>(w._canvas_saveLayer=W.canvas_saveLayer)(a,b,c,e);w._canvas_save=a=>(w._canvas_save=W.canvas_save)(a);w._canvas_restore=a=>(w._canvas_restore=W.canvas_restore)(a);w._canvas_restoreToCount=(a,b)=>(w._canvas_restoreToCount=W.canvas_restoreToCount)(a,b);w._canvas_getSaveCount=a=>(w._canvas_getSaveCount=W.canvas_getSaveCount)(a); +w._canvas_translate=(a,b,c)=>(w._canvas_translate=W.canvas_translate)(a,b,c);w._canvas_scale=(a,b,c)=>(w._canvas_scale=W.canvas_scale)(a,b,c);w._canvas_rotate=(a,b)=>(w._canvas_rotate=W.canvas_rotate)(a,b);w._canvas_skew=(a,b,c)=>(w._canvas_skew=W.canvas_skew)(a,b,c);w._canvas_transform=(a,b)=>(w._canvas_transform=W.canvas_transform)(a,b);w._canvas_clear=(a,b)=>(w._canvas_clear=W.canvas_clear)(a,b);w._canvas_clipRect=(a,b,c,e)=>(w._canvas_clipRect=W.canvas_clipRect)(a,b,c,e); +w._canvas_clipRRect=(a,b,c)=>(w._canvas_clipRRect=W.canvas_clipRRect)(a,b,c);w._canvas_clipPath=(a,b,c)=>(w._canvas_clipPath=W.canvas_clipPath)(a,b,c);w._canvas_drawColor=(a,b,c)=>(w._canvas_drawColor=W.canvas_drawColor)(a,b,c);w._canvas_drawLine=(a,b,c,e,f,h)=>(w._canvas_drawLine=W.canvas_drawLine)(a,b,c,e,f,h);w._canvas_drawPaint=(a,b)=>(w._canvas_drawPaint=W.canvas_drawPaint)(a,b);w._canvas_drawRect=(a,b,c)=>(w._canvas_drawRect=W.canvas_drawRect)(a,b,c); +w._canvas_drawRRect=(a,b,c)=>(w._canvas_drawRRect=W.canvas_drawRRect)(a,b,c);w._canvas_drawDRRect=(a,b,c,e)=>(w._canvas_drawDRRect=W.canvas_drawDRRect)(a,b,c,e);w._canvas_drawOval=(a,b,c)=>(w._canvas_drawOval=W.canvas_drawOval)(a,b,c);w._canvas_drawCircle=(a,b,c,e,f)=>(w._canvas_drawCircle=W.canvas_drawCircle)(a,b,c,e,f);w._canvas_drawArc=(a,b,c,e,f,h)=>(w._canvas_drawArc=W.canvas_drawArc)(a,b,c,e,f,h);w._canvas_drawPath=(a,b,c)=>(w._canvas_drawPath=W.canvas_drawPath)(a,b,c); +w._canvas_drawShadow=(a,b,c,e,f,h)=>(w._canvas_drawShadow=W.canvas_drawShadow)(a,b,c,e,f,h);w._canvas_drawParagraph=(a,b,c,e)=>(w._canvas_drawParagraph=W.canvas_drawParagraph)(a,b,c,e);w._canvas_drawPicture=(a,b)=>(w._canvas_drawPicture=W.canvas_drawPicture)(a,b);w._canvas_drawImage=(a,b,c,e,f,h)=>(w._canvas_drawImage=W.canvas_drawImage)(a,b,c,e,f,h);w._canvas_drawImageRect=(a,b,c,e,f,h)=>(w._canvas_drawImageRect=W.canvas_drawImageRect)(a,b,c,e,f,h); +w._canvas_drawImageNine=(a,b,c,e,f,h)=>(w._canvas_drawImageNine=W.canvas_drawImageNine)(a,b,c,e,f,h);w._canvas_drawVertices=(a,b,c,e)=>(w._canvas_drawVertices=W.canvas_drawVertices)(a,b,c,e);w._canvas_drawPoints=(a,b,c,e,f)=>(w._canvas_drawPoints=W.canvas_drawPoints)(a,b,c,e,f);w._canvas_drawAtlas=(a,b,c,e,f,h,l,m,p)=>(w._canvas_drawAtlas=W.canvas_drawAtlas)(a,b,c,e,f,h,l,m,p);w._canvas_getTransform=(a,b)=>(w._canvas_getTransform=W.canvas_getTransform)(a,b); +w._canvas_getLocalClipBounds=(a,b)=>(w._canvas_getLocalClipBounds=W.canvas_getLocalClipBounds)(a,b);w._canvas_getDeviceClipBounds=(a,b)=>(w._canvas_getDeviceClipBounds=W.canvas_getDeviceClipBounds)(a,b);w._canvas_quickReject=(a,b)=>(w._canvas_quickReject=W.canvas_quickReject)(a,b);w._contourMeasureIter_create=(a,b,c)=>(w._contourMeasureIter_create=W.contourMeasureIter_create)(a,b,c);w._contourMeasureIter_next=a=>(w._contourMeasureIter_next=W.contourMeasureIter_next)(a); +w._contourMeasureIter_dispose=a=>(w._contourMeasureIter_dispose=W.contourMeasureIter_dispose)(a);w._contourMeasure_dispose=a=>(w._contourMeasure_dispose=W.contourMeasure_dispose)(a);w._contourMeasure_length=a=>(w._contourMeasure_length=W.contourMeasure_length)(a);w._contourMeasure_isClosed=a=>(w._contourMeasure_isClosed=W.contourMeasure_isClosed)(a);w._contourMeasure_getPosTan=(a,b,c,e)=>(w._contourMeasure_getPosTan=W.contourMeasure_getPosTan)(a,b,c,e); +w._contourMeasure_getSegment=(a,b,c,e)=>(w._contourMeasure_getSegment=W.contourMeasure_getSegment)(a,b,c,e);w._skData_create=a=>(w._skData_create=W.skData_create)(a);w._skData_getPointer=a=>(w._skData_getPointer=W.skData_getPointer)(a);w._skData_getConstPointer=a=>(w._skData_getConstPointer=W.skData_getConstPointer)(a);w._skData_getSize=a=>(w._skData_getSize=W.skData_getSize)(a);w._skData_dispose=a=>(w._skData_dispose=W.skData_dispose)(a); +w._imageFilter_createBlur=(a,b,c)=>(w._imageFilter_createBlur=W.imageFilter_createBlur)(a,b,c);w._imageFilter_createDilate=(a,b)=>(w._imageFilter_createDilate=W.imageFilter_createDilate)(a,b);w._imageFilter_createErode=(a,b)=>(w._imageFilter_createErode=W.imageFilter_createErode)(a,b);w._imageFilter_createMatrix=(a,b)=>(w._imageFilter_createMatrix=W.imageFilter_createMatrix)(a,b);w._imageFilter_createFromColorFilter=a=>(w._imageFilter_createFromColorFilter=W.imageFilter_createFromColorFilter)(a); +w._imageFilter_compose=(a,b)=>(w._imageFilter_compose=W.imageFilter_compose)(a,b);w._imageFilter_dispose=a=>(w._imageFilter_dispose=W.imageFilter_dispose)(a);w._imageFilter_getFilterBounds=(a,b)=>(w._imageFilter_getFilterBounds=W.imageFilter_getFilterBounds)(a,b);w._colorFilter_createMode=(a,b)=>(w._colorFilter_createMode=W.colorFilter_createMode)(a,b);w._colorFilter_createMatrix=a=>(w._colorFilter_createMatrix=W.colorFilter_createMatrix)(a); +w._colorFilter_createSRGBToLinearGamma=()=>(w._colorFilter_createSRGBToLinearGamma=W.colorFilter_createSRGBToLinearGamma)();w._colorFilter_createLinearToSRGBGamma=()=>(w._colorFilter_createLinearToSRGBGamma=W.colorFilter_createLinearToSRGBGamma)();w._colorFilter_dispose=a=>(w._colorFilter_dispose=W.colorFilter_dispose)(a);w._maskFilter_createBlur=(a,b)=>(w._maskFilter_createBlur=W.maskFilter_createBlur)(a,b);w._maskFilter_dispose=a=>(w._maskFilter_dispose=W.maskFilter_dispose)(a); +w._fontCollection_create=()=>(w._fontCollection_create=W.fontCollection_create)();w._fontCollection_dispose=a=>(w._fontCollection_dispose=W.fontCollection_dispose)(a);w._typeface_create=a=>(w._typeface_create=W.typeface_create)(a);w._typeface_dispose=a=>(w._typeface_dispose=W.typeface_dispose)(a);w._typefaces_filterCoveredCodePoints=(a,b,c,e)=>(w._typefaces_filterCoveredCodePoints=W.typefaces_filterCoveredCodePoints)(a,b,c,e); +w._fontCollection_registerTypeface=(a,b,c)=>(w._fontCollection_registerTypeface=W.fontCollection_registerTypeface)(a,b,c);w._fontCollection_clearCaches=a=>(w._fontCollection_clearCaches=W.fontCollection_clearCaches)(a);w._image_createFromPicture=(a,b,c)=>(w._image_createFromPicture=W.image_createFromPicture)(a,b,c);w._image_createFromPixels=(a,b,c,e,f)=>(w._image_createFromPixels=W.image_createFromPixels)(a,b,c,e,f); +w._image_createFromTextureSource=(a,b,c,e)=>(w._image_createFromTextureSource=W.image_createFromTextureSource)(a,b,c,e);w._image_ref=a=>(w._image_ref=W.image_ref)(a);w._image_dispose=a=>(w._image_dispose=W.image_dispose)(a);w._image_getWidth=a=>(w._image_getWidth=W.image_getWidth)(a);w._image_getHeight=a=>(w._image_getHeight=W.image_getHeight)(a);w._skwasm_getLiveObjectCounts=a=>(w._skwasm_getLiveObjectCounts=W.skwasm_getLiveObjectCounts)(a); +w._paint_create=(a,b,c,e,f,h,l,m,p)=>(w._paint_create=W.paint_create)(a,b,c,e,f,h,l,m,p);w._paint_dispose=a=>(w._paint_dispose=W.paint_dispose)(a);w._paint_setShader=(a,b)=>(w._paint_setShader=W.paint_setShader)(a,b);w._paint_setImageFilter=(a,b)=>(w._paint_setImageFilter=W.paint_setImageFilter)(a,b);w._paint_setColorFilter=(a,b)=>(w._paint_setColorFilter=W.paint_setColorFilter)(a,b);w._paint_setMaskFilter=(a,b)=>(w._paint_setMaskFilter=W.paint_setMaskFilter)(a,b); +w._path_create=()=>(w._path_create=W.path_create)();w._path_dispose=a=>(w._path_dispose=W.path_dispose)(a);w._path_copy=a=>(w._path_copy=W.path_copy)(a);w._path_setFillType=(a,b)=>(w._path_setFillType=W.path_setFillType)(a,b);w._path_getFillType=a=>(w._path_getFillType=W.path_getFillType)(a);w._path_moveTo=(a,b,c)=>(w._path_moveTo=W.path_moveTo)(a,b,c);w._path_relativeMoveTo=(a,b,c)=>(w._path_relativeMoveTo=W.path_relativeMoveTo)(a,b,c);w._path_lineTo=(a,b,c)=>(w._path_lineTo=W.path_lineTo)(a,b,c); +w._path_relativeLineTo=(a,b,c)=>(w._path_relativeLineTo=W.path_relativeLineTo)(a,b,c);w._path_quadraticBezierTo=(a,b,c,e,f)=>(w._path_quadraticBezierTo=W.path_quadraticBezierTo)(a,b,c,e,f);w._path_relativeQuadraticBezierTo=(a,b,c,e,f)=>(w._path_relativeQuadraticBezierTo=W.path_relativeQuadraticBezierTo)(a,b,c,e,f);w._path_cubicTo=(a,b,c,e,f,h,l)=>(w._path_cubicTo=W.path_cubicTo)(a,b,c,e,f,h,l);w._path_relativeCubicTo=(a,b,c,e,f,h,l)=>(w._path_relativeCubicTo=W.path_relativeCubicTo)(a,b,c,e,f,h,l); +w._path_conicTo=(a,b,c,e,f,h)=>(w._path_conicTo=W.path_conicTo)(a,b,c,e,f,h);w._path_relativeConicTo=(a,b,c,e,f,h)=>(w._path_relativeConicTo=W.path_relativeConicTo)(a,b,c,e,f,h);w._path_arcToOval=(a,b,c,e,f)=>(w._path_arcToOval=W.path_arcToOval)(a,b,c,e,f);w._path_arcToRotated=(a,b,c,e,f,h,l,m)=>(w._path_arcToRotated=W.path_arcToRotated)(a,b,c,e,f,h,l,m);w._path_relativeArcToRotated=(a,b,c,e,f,h,l,m)=>(w._path_relativeArcToRotated=W.path_relativeArcToRotated)(a,b,c,e,f,h,l,m); +w._path_addRect=(a,b)=>(w._path_addRect=W.path_addRect)(a,b);w._path_addOval=(a,b)=>(w._path_addOval=W.path_addOval)(a,b);w._path_addArc=(a,b,c,e)=>(w._path_addArc=W.path_addArc)(a,b,c,e);w._path_addPolygon=(a,b,c,e)=>(w._path_addPolygon=W.path_addPolygon)(a,b,c,e);w._path_addRRect=(a,b)=>(w._path_addRRect=W.path_addRRect)(a,b);w._path_addPath=(a,b,c,e)=>(w._path_addPath=W.path_addPath)(a,b,c,e);w._path_close=a=>(w._path_close=W.path_close)(a);w._path_reset=a=>(w._path_reset=W.path_reset)(a); +w._path_contains=(a,b,c)=>(w._path_contains=W.path_contains)(a,b,c);w._path_transform=(a,b)=>(w._path_transform=W.path_transform)(a,b);w._path_getBounds=(a,b)=>(w._path_getBounds=W.path_getBounds)(a,b);w._path_combine=(a,b,c)=>(w._path_combine=W.path_combine)(a,b,c);w._path_getSvgString=a=>(w._path_getSvgString=W.path_getSvgString)(a);w._pictureRecorder_create=()=>(w._pictureRecorder_create=W.pictureRecorder_create)();w._pictureRecorder_dispose=a=>(w._pictureRecorder_dispose=W.pictureRecorder_dispose)(a); +w._pictureRecorder_beginRecording=(a,b)=>(w._pictureRecorder_beginRecording=W.pictureRecorder_beginRecording)(a,b);w._pictureRecorder_endRecording=a=>(w._pictureRecorder_endRecording=W.pictureRecorder_endRecording)(a);w._picture_getCullRect=(a,b)=>(w._picture_getCullRect=W.picture_getCullRect)(a,b);w._picture_dispose=a=>(w._picture_dispose=W.picture_dispose)(a);w._picture_approximateBytesUsed=a=>(w._picture_approximateBytesUsed=W.picture_approximateBytesUsed)(a); +w._shader_createLinearGradient=(a,b,c,e,f,h)=>(w._shader_createLinearGradient=W.shader_createLinearGradient)(a,b,c,e,f,h);w._shader_createRadialGradient=(a,b,c,e,f,h,l,m)=>(w._shader_createRadialGradient=W.shader_createRadialGradient)(a,b,c,e,f,h,l,m);w._shader_createConicalGradient=(a,b,c,e,f,h,l,m)=>(w._shader_createConicalGradient=W.shader_createConicalGradient)(a,b,c,e,f,h,l,m); +w._shader_createSweepGradient=(a,b,c,e,f,h,l,m,p)=>(w._shader_createSweepGradient=W.shader_createSweepGradient)(a,b,c,e,f,h,l,m,p);w._shader_dispose=a=>(w._shader_dispose=W.shader_dispose)(a);w._runtimeEffect_create=a=>(w._runtimeEffect_create=W.runtimeEffect_create)(a);w._runtimeEffect_dispose=a=>(w._runtimeEffect_dispose=W.runtimeEffect_dispose)(a);w._runtimeEffect_getUniformSize=a=>(w._runtimeEffect_getUniformSize=W.runtimeEffect_getUniformSize)(a); +w._shader_createRuntimeEffectShader=(a,b,c,e)=>(w._shader_createRuntimeEffectShader=W.shader_createRuntimeEffectShader)(a,b,c,e);w._shader_createFromImage=(a,b,c,e,f)=>(w._shader_createFromImage=W.shader_createFromImage)(a,b,c,e,f);w._uniformData_create=a=>(w._uniformData_create=W.uniformData_create)(a);w._uniformData_dispose=a=>(w._uniformData_dispose=W.uniformData_dispose)(a);w._uniformData_getPointer=a=>(w._uniformData_getPointer=W.uniformData_getPointer)(a); +w._skString_allocate=a=>(w._skString_allocate=W.skString_allocate)(a);w._skString_getData=a=>(w._skString_getData=W.skString_getData)(a);w._skString_getLength=a=>(w._skString_getLength=W.skString_getLength)(a);w._skString_free=a=>(w._skString_free=W.skString_free)(a);w._skString16_allocate=a=>(w._skString16_allocate=W.skString16_allocate)(a);w._skString16_getData=a=>(w._skString16_getData=W.skString16_getData)(a);w._skString16_free=a=>(w._skString16_free=W.skString16_free)(a); +w._surface_create=()=>(w._surface_create=W.surface_create)();w._surface_getThreadId=a=>(w._surface_getThreadId=W.surface_getThreadId)(a);w._surface_setCallbackHandler=(a,b)=>(w._surface_setCallbackHandler=W.surface_setCallbackHandler)(a,b);w._surface_destroy=a=>(w._surface_destroy=W.surface_destroy)(a);var ic=w._surface_dispose=a=>(ic=w._surface_dispose=W.surface_dispose)(a); +w._surface_setResourceCacheLimitBytes=(a,b)=>(w._surface_setResourceCacheLimitBytes=W.surface_setResourceCacheLimitBytes)(a,b);w._surface_renderPictures=(a,b,c,e,f)=>(w._surface_renderPictures=W.surface_renderPictures)(a,b,c,e,f);var gc=w._surface_renderPicturesOnWorker=(a,b,c,e,f,h,l)=>(gc=w._surface_renderPicturesOnWorker=W.surface_renderPicturesOnWorker)(a,b,c,e,f,h,l);w._surface_rasterizeImage=(a,b,c)=>(w._surface_rasterizeImage=W.surface_rasterizeImage)(a,b,c); +var jc=w._surface_rasterizeImageOnWorker=(a,b,c,e)=>(jc=w._surface_rasterizeImageOnWorker=W.surface_rasterizeImageOnWorker)(a,b,c,e),hc=w._surface_onRenderComplete=(a,b,c)=>(hc=w._surface_onRenderComplete=W.surface_onRenderComplete)(a,b,c),kc=w._surface_onRasterizeComplete=(a,b,c)=>(kc=w._surface_onRasterizeComplete=W.surface_onRasterizeComplete)(a,b,c);w._skwasm_isMultiThreaded=()=>(w._skwasm_isMultiThreaded=W.skwasm_isMultiThreaded)(); +w._lineMetrics_create=(a,b,c,e,f,h,l,m,p)=>(w._lineMetrics_create=W.lineMetrics_create)(a,b,c,e,f,h,l,m,p);w._lineMetrics_dispose=a=>(w._lineMetrics_dispose=W.lineMetrics_dispose)(a);w._lineMetrics_getHardBreak=a=>(w._lineMetrics_getHardBreak=W.lineMetrics_getHardBreak)(a);w._lineMetrics_getAscent=a=>(w._lineMetrics_getAscent=W.lineMetrics_getAscent)(a);w._lineMetrics_getDescent=a=>(w._lineMetrics_getDescent=W.lineMetrics_getDescent)(a); +w._lineMetrics_getUnscaledAscent=a=>(w._lineMetrics_getUnscaledAscent=W.lineMetrics_getUnscaledAscent)(a);w._lineMetrics_getHeight=a=>(w._lineMetrics_getHeight=W.lineMetrics_getHeight)(a);w._lineMetrics_getWidth=a=>(w._lineMetrics_getWidth=W.lineMetrics_getWidth)(a);w._lineMetrics_getLeft=a=>(w._lineMetrics_getLeft=W.lineMetrics_getLeft)(a);w._lineMetrics_getBaseline=a=>(w._lineMetrics_getBaseline=W.lineMetrics_getBaseline)(a);w._lineMetrics_getLineNumber=a=>(w._lineMetrics_getLineNumber=W.lineMetrics_getLineNumber)(a); +w._lineMetrics_getStartIndex=a=>(w._lineMetrics_getStartIndex=W.lineMetrics_getStartIndex)(a);w._lineMetrics_getEndIndex=a=>(w._lineMetrics_getEndIndex=W.lineMetrics_getEndIndex)(a);w._paragraph_dispose=a=>(w._paragraph_dispose=W.paragraph_dispose)(a);w._paragraph_getWidth=a=>(w._paragraph_getWidth=W.paragraph_getWidth)(a);w._paragraph_getHeight=a=>(w._paragraph_getHeight=W.paragraph_getHeight)(a);w._paragraph_getLongestLine=a=>(w._paragraph_getLongestLine=W.paragraph_getLongestLine)(a); +w._paragraph_getMinIntrinsicWidth=a=>(w._paragraph_getMinIntrinsicWidth=W.paragraph_getMinIntrinsicWidth)(a);w._paragraph_getMaxIntrinsicWidth=a=>(w._paragraph_getMaxIntrinsicWidth=W.paragraph_getMaxIntrinsicWidth)(a);w._paragraph_getAlphabeticBaseline=a=>(w._paragraph_getAlphabeticBaseline=W.paragraph_getAlphabeticBaseline)(a);w._paragraph_getIdeographicBaseline=a=>(w._paragraph_getIdeographicBaseline=W.paragraph_getIdeographicBaseline)(a); +w._paragraph_getDidExceedMaxLines=a=>(w._paragraph_getDidExceedMaxLines=W.paragraph_getDidExceedMaxLines)(a);w._paragraph_layout=(a,b)=>(w._paragraph_layout=W.paragraph_layout)(a,b);w._paragraph_getPositionForOffset=(a,b,c,e)=>(w._paragraph_getPositionForOffset=W.paragraph_getPositionForOffset)(a,b,c,e);w._paragraph_getClosestGlyphInfoAtCoordinate=(a,b,c,e,f,h)=>(w._paragraph_getClosestGlyphInfoAtCoordinate=W.paragraph_getClosestGlyphInfoAtCoordinate)(a,b,c,e,f,h); +w._paragraph_getGlyphInfoAt=(a,b,c,e,f)=>(w._paragraph_getGlyphInfoAt=W.paragraph_getGlyphInfoAt)(a,b,c,e,f);w._paragraph_getWordBoundary=(a,b,c)=>(w._paragraph_getWordBoundary=W.paragraph_getWordBoundary)(a,b,c);w._paragraph_getLineCount=a=>(w._paragraph_getLineCount=W.paragraph_getLineCount)(a);w._paragraph_getLineNumberAt=(a,b)=>(w._paragraph_getLineNumberAt=W.paragraph_getLineNumberAt)(a,b); +w._paragraph_getLineMetricsAtIndex=(a,b)=>(w._paragraph_getLineMetricsAtIndex=W.paragraph_getLineMetricsAtIndex)(a,b);w._textBoxList_dispose=a=>(w._textBoxList_dispose=W.textBoxList_dispose)(a);w._textBoxList_getLength=a=>(w._textBoxList_getLength=W.textBoxList_getLength)(a);w._textBoxList_getBoxAtIndex=(a,b,c)=>(w._textBoxList_getBoxAtIndex=W.textBoxList_getBoxAtIndex)(a,b,c);w._paragraph_getBoxesForRange=(a,b,c,e,f)=>(w._paragraph_getBoxesForRange=W.paragraph_getBoxesForRange)(a,b,c,e,f); +w._paragraph_getBoxesForPlaceholders=a=>(w._paragraph_getBoxesForPlaceholders=W.paragraph_getBoxesForPlaceholders)(a);w._paragraph_getUnresolvedCodePoints=(a,b,c)=>(w._paragraph_getUnresolvedCodePoints=W.paragraph_getUnresolvedCodePoints)(a,b,c);w._paragraphBuilder_dispose=a=>(w._paragraphBuilder_dispose=W.paragraphBuilder_dispose)(a);w._paragraphBuilder_addPlaceholder=(a,b,c,e,f,h)=>(w._paragraphBuilder_addPlaceholder=W.paragraphBuilder_addPlaceholder)(a,b,c,e,f,h); +w._paragraphBuilder_addText=(a,b)=>(w._paragraphBuilder_addText=W.paragraphBuilder_addText)(a,b);w._paragraphBuilder_getUtf8Text=(a,b)=>(w._paragraphBuilder_getUtf8Text=W.paragraphBuilder_getUtf8Text)(a,b);w._paragraphBuilder_pushStyle=(a,b)=>(w._paragraphBuilder_pushStyle=W.paragraphBuilder_pushStyle)(a,b);w._paragraphBuilder_pop=a=>(w._paragraphBuilder_pop=W.paragraphBuilder_pop)(a);w._unicodePositionBuffer_create=a=>(w._unicodePositionBuffer_create=W.unicodePositionBuffer_create)(a); +w._unicodePositionBuffer_getDataPointer=a=>(w._unicodePositionBuffer_getDataPointer=W.unicodePositionBuffer_getDataPointer)(a);w._unicodePositionBuffer_free=a=>(w._unicodePositionBuffer_free=W.unicodePositionBuffer_free)(a);w._lineBreakBuffer_create=a=>(w._lineBreakBuffer_create=W.lineBreakBuffer_create)(a);w._lineBreakBuffer_getDataPointer=a=>(w._lineBreakBuffer_getDataPointer=W.lineBreakBuffer_getDataPointer)(a);w._lineBreakBuffer_free=a=>(w._lineBreakBuffer_free=W.lineBreakBuffer_free)(a); +w._paragraphStyle_create=()=>(w._paragraphStyle_create=W.paragraphStyle_create)();w._paragraphStyle_dispose=a=>(w._paragraphStyle_dispose=W.paragraphStyle_dispose)(a);w._paragraphStyle_setTextAlign=(a,b)=>(w._paragraphStyle_setTextAlign=W.paragraphStyle_setTextAlign)(a,b);w._paragraphStyle_setTextDirection=(a,b)=>(w._paragraphStyle_setTextDirection=W.paragraphStyle_setTextDirection)(a,b);w._paragraphStyle_setMaxLines=(a,b)=>(w._paragraphStyle_setMaxLines=W.paragraphStyle_setMaxLines)(a,b); +w._paragraphStyle_setHeight=(a,b)=>(w._paragraphStyle_setHeight=W.paragraphStyle_setHeight)(a,b);w._paragraphStyle_setTextHeightBehavior=(a,b,c)=>(w._paragraphStyle_setTextHeightBehavior=W.paragraphStyle_setTextHeightBehavior)(a,b,c);w._paragraphStyle_setEllipsis=(a,b)=>(w._paragraphStyle_setEllipsis=W.paragraphStyle_setEllipsis)(a,b);w._paragraphStyle_setStrutStyle=(a,b)=>(w._paragraphStyle_setStrutStyle=W.paragraphStyle_setStrutStyle)(a,b); +w._paragraphStyle_setTextStyle=(a,b)=>(w._paragraphStyle_setTextStyle=W.paragraphStyle_setTextStyle)(a,b);w._paragraphStyle_setApplyRoundingHack=(a,b)=>(w._paragraphStyle_setApplyRoundingHack=W.paragraphStyle_setApplyRoundingHack)(a,b);w._strutStyle_create=()=>(w._strutStyle_create=W.strutStyle_create)();w._strutStyle_dispose=a=>(w._strutStyle_dispose=W.strutStyle_dispose)(a);w._strutStyle_setFontFamilies=(a,b,c)=>(w._strutStyle_setFontFamilies=W.strutStyle_setFontFamilies)(a,b,c); +w._strutStyle_setFontSize=(a,b)=>(w._strutStyle_setFontSize=W.strutStyle_setFontSize)(a,b);w._strutStyle_setHeight=(a,b)=>(w._strutStyle_setHeight=W.strutStyle_setHeight)(a,b);w._strutStyle_setHalfLeading=(a,b)=>(w._strutStyle_setHalfLeading=W.strutStyle_setHalfLeading)(a,b);w._strutStyle_setLeading=(a,b)=>(w._strutStyle_setLeading=W.strutStyle_setLeading)(a,b);w._strutStyle_setFontStyle=(a,b,c)=>(w._strutStyle_setFontStyle=W.strutStyle_setFontStyle)(a,b,c); +w._strutStyle_setForceStrutHeight=(a,b)=>(w._strutStyle_setForceStrutHeight=W.strutStyle_setForceStrutHeight)(a,b);w._textStyle_create=()=>(w._textStyle_create=W.textStyle_create)();w._textStyle_copy=a=>(w._textStyle_copy=W.textStyle_copy)(a);w._textStyle_dispose=a=>(w._textStyle_dispose=W.textStyle_dispose)(a);w._textStyle_setColor=(a,b)=>(w._textStyle_setColor=W.textStyle_setColor)(a,b);w._textStyle_setDecoration=(a,b)=>(w._textStyle_setDecoration=W.textStyle_setDecoration)(a,b); +w._textStyle_setDecorationColor=(a,b)=>(w._textStyle_setDecorationColor=W.textStyle_setDecorationColor)(a,b);w._textStyle_setDecorationStyle=(a,b)=>(w._textStyle_setDecorationStyle=W.textStyle_setDecorationStyle)(a,b);w._textStyle_setDecorationThickness=(a,b)=>(w._textStyle_setDecorationThickness=W.textStyle_setDecorationThickness)(a,b);w._textStyle_setFontStyle=(a,b,c)=>(w._textStyle_setFontStyle=W.textStyle_setFontStyle)(a,b,c); +w._textStyle_setTextBaseline=(a,b)=>(w._textStyle_setTextBaseline=W.textStyle_setTextBaseline)(a,b);w._textStyle_clearFontFamilies=a=>(w._textStyle_clearFontFamilies=W.textStyle_clearFontFamilies)(a);w._textStyle_addFontFamilies=(a,b,c)=>(w._textStyle_addFontFamilies=W.textStyle_addFontFamilies)(a,b,c);w._textStyle_setFontSize=(a,b)=>(w._textStyle_setFontSize=W.textStyle_setFontSize)(a,b);w._textStyle_setLetterSpacing=(a,b)=>(w._textStyle_setLetterSpacing=W.textStyle_setLetterSpacing)(a,b); +w._textStyle_setWordSpacing=(a,b)=>(w._textStyle_setWordSpacing=W.textStyle_setWordSpacing)(a,b);w._textStyle_setHeight=(a,b)=>(w._textStyle_setHeight=W.textStyle_setHeight)(a,b);w._textStyle_setHalfLeading=(a,b)=>(w._textStyle_setHalfLeading=W.textStyle_setHalfLeading)(a,b);w._textStyle_setLocale=(a,b)=>(w._textStyle_setLocale=W.textStyle_setLocale)(a,b);w._textStyle_setBackground=(a,b)=>(w._textStyle_setBackground=W.textStyle_setBackground)(a,b); +w._textStyle_setForeground=(a,b)=>(w._textStyle_setForeground=W.textStyle_setForeground)(a,b);w._textStyle_addShadow=(a,b,c,e,f)=>(w._textStyle_addShadow=W.textStyle_addShadow)(a,b,c,e,f);w._textStyle_addFontFeature=(a,b,c)=>(w._textStyle_addFontFeature=W.textStyle_addFontFeature)(a,b,c);w._textStyle_setFontVariations=(a,b,c,e)=>(w._textStyle_setFontVariations=W.textStyle_setFontVariations)(a,b,c,e);w._vertices_create=(a,b,c,e,f,h,l)=>(w._vertices_create=W.vertices_create)(a,b,c,e,f,h,l); +w._vertices_dispose=a=>(w._vertices_dispose=W.vertices_dispose)(a);w._animatedImage_create=(a,b,c)=>(w._animatedImage_create=W.animatedImage_create)(a,b,c);w._animatedImage_dispose=a=>(w._animatedImage_dispose=W.animatedImage_dispose)(a);w._animatedImage_getFrameCount=a=>(w._animatedImage_getFrameCount=W.animatedImage_getFrameCount)(a);w._animatedImage_getRepetitionCount=a=>(w._animatedImage_getRepetitionCount=W.animatedImage_getRepetitionCount)(a); +w._animatedImage_getCurrentFrameDurationMilliseconds=a=>(w._animatedImage_getCurrentFrameDurationMilliseconds=W.animatedImage_getCurrentFrameDurationMilliseconds)(a);w._animatedImage_decodeNextFrame=a=>(w._animatedImage_decodeNextFrame=W.animatedImage_decodeNextFrame)(a);w._animatedImage_getCurrentFrame=a=>(w._animatedImage_getCurrentFrame=W.animatedImage_getCurrentFrame)(a);w._skwasm_isHeavy=()=>(w._skwasm_isHeavy=W.skwasm_isHeavy)(); +w._paragraphBuilder_create=(a,b)=>(w._paragraphBuilder_create=W.paragraphBuilder_create)(a,b);w._paragraphBuilder_build=a=>(w._paragraphBuilder_build=W.paragraphBuilder_build)(a);w._paragraphBuilder_setGraphemeBreaksUtf16=(a,b)=>(w._paragraphBuilder_setGraphemeBreaksUtf16=W.paragraphBuilder_setGraphemeBreaksUtf16)(a,b);w._paragraphBuilder_setWordBreaksUtf16=(a,b)=>(w._paragraphBuilder_setWordBreaksUtf16=W.paragraphBuilder_setWordBreaksUtf16)(a,b); +w._paragraphBuilder_setLineBreaksUtf16=(a,b)=>(w._paragraphBuilder_setLineBreaksUtf16=W.paragraphBuilder_setLineBreaksUtf16)(a,b);var Ab=a=>(Ab=W.malloc)(a),lc=(a,b)=>(lc=W._emscripten_timeout)(a,b),X=(a,b)=>(X=W.setThrew)(a,b),Y=a=>(Y=W._emscripten_stack_restore)(a),cc=a=>(cc=W._emscripten_stack_alloc)(a),Z=()=>(Z=W.emscripten_stack_get_current)(),Aa=(a,b)=>(Aa=W._emscripten_wasm_worker_initialize)(a,b); +function nc(a,b,c){var e=Z();try{return B.get(a)(b,c)}catch(f){Y(e);if(f!==f+0)throw f;X(1,0)}}function sc(a,b,c){var e=Z();try{B.get(a)(b,c)}catch(f){Y(e);if(f!==f+0)throw f;X(1,0)}}function mc(a,b){var c=Z();try{return B.get(a)(b)}catch(e){Y(c);if(e!==e+0)throw e;X(1,0)}}function tc(a,b,c,e){var f=Z();try{B.get(a)(b,c,e)}catch(h){Y(f);if(h!==h+0)throw h;X(1,0)}}function oc(a,b,c,e){var f=Z();try{return B.get(a)(b,c,e)}catch(h){Y(f);if(h!==h+0)throw h;X(1,0)}} +function uc(a,b,c,e,f){var h=Z();try{B.get(a)(b,c,e,f)}catch(l){Y(h);if(l!==l+0)throw l;X(1,0)}}function vc(a,b,c,e,f,h,l,m){var p=Z();try{B.get(a)(b,c,e,f,h,l,m)}catch(v){Y(p);if(v!==v+0)throw v;X(1,0)}}function rc(a,b){var c=Z();try{B.get(a)(b)}catch(e){Y(c);if(e!==e+0)throw e;X(1,0)}}function qc(a,b,c,e,f,h,l){var m=Z();try{return B.get(a)(b,c,e,f,h,l)}catch(p){Y(m);if(p!==p+0)throw p;X(1,0)}} +function pc(a,b,c,e,f){var h=Z();try{return B.get(a)(b,c,e,f)}catch(l){Y(h);if(l!==l+0)throw l;X(1,0)}}w.wasmMemory=g;w.wasmExports=W;w.stackAlloc=dc; +w.addFunction=(a,b)=>{if(!U){U=new WeakMap;var c=B.length;if(U)for(var e=0;e<0+c;e++){var f=B.get(e);f&&U.set(f,e)}}if(c=U.get(a)||0)return c;if(bc.length)c=bc.pop();else{try{B.grow(1)}catch(m){if(!(m instanceof RangeError))throw m;throw"Unable to grow wasm table. Set ALLOW_TABLE_GROWTH.";}c=B.length-1}try{B.set(c,a)}catch(m){if(!(m instanceof TypeError))throw m;if("function"==typeof WebAssembly.Function){e=WebAssembly.Function;f={i:"i32",j:"i64",f:"f32",d:"f64",e:"externref",p:"i32"};for(var h={parameters:[], +results:"v"==b[0]?[]:[f[b[0]]]},l=1;ll?e.push(l):e.push(l%128|128,l>>7);for(l=0;lf?b.push(f):b.push(f%128|128,f>>7);b.push(...e);b.push(2,7,1,1,101,1,102,0,0,7,5,1,1,102,0,0);b=new WebAssembly.Module(new Uint8Array(b));b=(new WebAssembly.Instance(b, +{e:{f:a}})).exports.f}B.set(c,b)}U.set(a,c);return c};var xc,yc;A=function zc(){xc||Ac();xc||(A=zc)};function Ac(){if(!(0\2c\20std::__2::allocator>::~basic_string\28\29 +215:operator\20new\28unsigned\20long\29 +216:sk_sp::~sk_sp\28\29 +217:void\20SkSafeUnref\28SkTypeface*\29\20\28.4199\29 +218:GrGLSLShaderBuilder::codeAppendf\28char\20const*\2c\20...\29 +219:sk_sp::~sk_sp\28\29 +220:void\20SkSafeUnref\28GrContextThreadSafeProxy*\29 +221:operator\20delete\28void*\2c\20unsigned\20long\29 +222:SkRasterPipeline::uncheckedAppend\28SkRasterPipelineOp\2c\20void*\29 +223:void\20SkSafeUnref\28SkString::Rec*\29 +224:GrGLSLShaderBuilder::codeAppend\28char\20const*\29 +225:__cxa_guard_acquire +226:SkSL::GLSLCodeGenerator::write\28std::__2::basic_string_view>\29 +227:__cxa_guard_release +228:SkSL::ErrorReporter::error\28SkSL::Position\2c\20std::__2::basic_string_view>\29 +229:hb_blob_destroy +230:flutter::DlBlurMaskFilter::type\28\29\20const +231:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20char\20const*\29 +232:SkDebugf\28char\20const*\2c\20...\29 +233:fmaxf +234:skia_private::TArray\2c\20true>::~TArray\28\29 +235:void\20SkSafeUnref\28SkPathRef*\29 +236:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>&&\29 +237:std::__2::shared_ptr::~shared_ptr\5babi:ne180100\5d\28\29 +238:std::__2::basic_string\2c\20std::__2::allocator>::size\5babi:nn180100\5d\28\29\20const +239:std::__2::__function::__value_func::~__value_func\5babi:ne180100\5d\28\29 +240:__unlockfile +241:hb_sanitize_context_t::check_range\28void\20const*\2c\20unsigned\20int\29\20const +242:std::exception::~exception\28\29 +243:GrShaderVar::~GrShaderVar\28\29 +244:hb_buffer_t::message\28hb_font_t*\2c\20char\20const*\2c\20...\29 +245:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&&\29 +246:SkPaint::~SkPaint\28\29 +247:__wasm_setjmp_test +248:GrColorInfo::~GrColorInfo\28\29 +249:std::__2::basic_string\2c\20std::__2::allocator>::basic_string>\2c\200>\28std::__2::basic_string_view>\20const&\29 +250:fminf +251:SkMutex::release\28\29 +252:SkArenaAlloc::allocObject\28unsigned\20int\2c\20unsigned\20int\29 +253:FT_DivFix +254:sk_sp::reset\28SkFontStyleSet*\29 +255:strlen +256:skvx::Vec<4\2c\20float>\20skvx::naive_if_then_else<4\2c\20float>\28skvx::Vec<4\2c\20skvx::Mask::type>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.6321\29 +257:SkSemaphore::wait\28\29 +258:skia_private::TArray>\2c\20true>::~TArray\28\29 +259:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:ne180100\5d<0>\28char\20const*\29 +260:skia_png_crc_finish +261:skia_png_chunk_benign_error +262:ft_mem_realloc +263:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +264:SkSL::RP::Generator::pushExpression\28SkSL::Expression\20const&\2c\20bool\29 +265:fml::LogMessage::~LogMessage\28\29 +266:fml::LogMessage::LogMessage\28int\2c\20char\20const*\2c\20int\2c\20char\20const*\29 +267:SkMatrix::hasPerspective\28\29\20const +268:SkBitmap::~SkBitmap\28\29 +269:SkSL::RP::Builder::appendInstruction\28SkSL::RP::BuilderOp\2c\20SkSL::RP::Builder::SlotList\2c\20int\2c\20int\2c\20int\2c\20int\29 +270:SkSL::Pool::AllocMemory\28unsigned\20long\29 +271:sk_report_container_overflow_and_die\28\29 +272:SkString::appendf\28char\20const*\2c\20...\29 +273:SkArenaAlloc::allocObjectWithFooter\28unsigned\20int\2c\20unsigned\20int\29 +274:lang_matches\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20int\29 +275:SkImageGenerator::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +276:skgpu::ganesh::VertexChunkPatchAllocator::append\28skgpu::tess::LinearTolerances\20const&\29 +277:SkContainerAllocator::allocate\28int\2c\20double\29 +278:skgpu::VertexWriter&\20skgpu::tess::operator<<<\28skgpu::tess::PatchAttribs\298\2c\20skgpu::VertexColor\2c\20false\2c\20true>\28skgpu::VertexWriter&\2c\20skgpu::tess::AttribValue<\28skgpu::tess::PatchAttribs\298\2c\20skgpu::VertexColor\2c\20false\2c\20true>\20const&\29 +279:hb_buffer_t::next_glyph\28\29 +280:FT_Stream_Seek +281:SkWriter32::write32\28int\29 +282:\28anonymous\20namespace\29::ColorTypeFilter_F16F16::Expand\28unsigned\20int\29 +283:FT_MulDiv +284:std::__2::basic_string\2c\20std::__2::allocator>::append\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +285:__lockfile +286:SkString::append\28char\20const*\29 +287:SkIRect::intersect\28SkIRect\20const&\29 +288:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +289:emscripten_builtin_calloc +290:subtag_matches\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20int\29 +291:std::__2::vector>::__throw_length_error\5babi:ne180100\5d\28\29\20const +292:emscripten_builtin_malloc +293:skia_png_free +294:ft_mem_qrealloc +295:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +296:std::__2::basic_string\2c\20std::__2::allocator>::append\28char\20const*\29 +297:SkSL::Parser::expect\28SkSL::Token::Kind\2c\20char\20const*\2c\20SkSL::Token*\29 +298:std::__2::vector>::push_back\5babi:ne180100\5d\28unsigned\20long\20const&\29 +299:flutter::DisplayListStorage::allocate\28unsigned\20long\29 +300:SkIntersections::insert\28double\2c\20double\2c\20SkDPoint\20const&\29 +301:sk_sp::~sk_sp\28\29 +302:FT_Stream_ReadUShort +303:skia_private::TArray::push_back\28SkSL::RP::Program::Stage&&\29 +304:SkBitmap::SkBitmap\28\29 +305:strcmp +306:std::__2::basic_string\2c\20std::__2::allocator>::resize\5babi:nn180100\5d\28unsigned\20long\29 +307:sk_sp::~sk_sp\28\29 +308:cf2_stack_popFixed +309:void\20SkSafeUnref\28SkColorSpace*\29\20\28.2117\29 +310:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +311:cf2_stack_getReal +312:SkSL::GLSLCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +313:SkIRect::isEmpty\28\29\20const +314:std::__2::locale::~locale\28\29 +315:SkSL::Type::displayName\28\29\20const +316:SkPaint::SkPaint\28SkPaint\20const&\29 +317:GrAuditTrail::pushFrame\28char\20const*\29 +318:hb_face_t::get_num_glyphs\28\29\20const +319:flutter::DlMatrixColorSourceBase::~DlMatrixColorSourceBase\28\29 +320:OT::ItemVarStoreInstancer::operator\28\29\28unsigned\20int\2c\20unsigned\20short\29\20const +321:skif::FilterResult::~FilterResult\28\29 +322:sk_sp::~sk_sp\28\29 +323:SkString::SkString\28SkString&&\29 +324:GrGeometryProcessor::Attribute::asShaderVar\28\29\20const +325:std::__2::ios_base::getloc\28\29\20const +326:hb_vector_t::fini\28\29 +327:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skcpu::ContextImpl\20const*\29 +328:std::__2::to_string\28int\29 +329:SkTDStorage::~SkTDStorage\28\29 +330:SkSL::Parser::peek\28\29 +331:GrGLSLUniformHandler::addUniform\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20char\20const**\29 +332:memcmp +333:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +334:SkWStream::writeText\28char\20const*\29 +335:void\20SkSafeUnref\28SkData\20const*\29\20\28.1564\29 +336:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +337:skgpu::Swizzle::Swizzle\28char\20const*\29 +338:SkString::~SkString\28\29 +339:GrProcessor::operator\20new\28unsigned\20long\29 +340:GrPixmapBase::~GrPixmapBase\28\29 +341:GrGLContextInfo::hasExtension\28char\20const*\29\20const +342:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28\29 +343:hb_ot_map_builder_t::add_feature\28unsigned\20int\2c\20hb_ot_map_feature_flags_t\2c\20unsigned\20int\29 +344:SkArenaAlloc::RunDtorsOnBlock\28char*\29 +345:GrSurfaceProxyView::operator=\28GrSurfaceProxyView&&\29 +346:GrPaint::~GrPaint\28\29 +347:std::__2::unique_ptr>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +348:std::__2::basic_string\2c\20std::__2::allocator>::__get_pointer\5babi:nn180100\5d\28\29 +349:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +350:skvx::Vec<8\2c\20unsigned\20short>&\20skvx::operator+=<8\2c\20unsigned\20short>\28skvx::Vec<8\2c\20unsigned\20short>&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +351:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +352:SkPathRef::getBounds\28\29\20const +353:skia_png_warning +354:hb_sanitize_context_t::start_processing\28\29 +355:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +356:SkString::SkString\28char\20const*\29 +357:SkIRect::contains\28SkIRect\20const&\29\20const +358:hb_sanitize_context_t::~hb_sanitize_context_t\28\29 +359:__shgetc +360:SkMakeRuntimeEffect\28SkRuntimeEffect::Result\20\28*\29\28SkString\2c\20SkRuntimeEffect::Options\20const&\29\2c\20char\20const*\2c\20SkRuntimeEffect::Options\29 +361:FT_Stream_GetUShort +362:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28wchar_t\20const*\29 +363:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28char\20const*\29 +364:skia_private::TArray>\2c\20true>::push_back\28std::__2::unique_ptr>&&\29 +365:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +366:SkPath::SkPath\28SkPath\20const&\29 +367:SkMatrix::invert\28\29\20const +368:std::__throw_bad_array_new_length\5babi:ne180100\5d\28\29 +369:skia_private::AutoSTMalloc<17ul\2c\20SkPoint\2c\20void>::~AutoSTMalloc\28\29 +370:FT_Stream_ExitFrame +371:skia::textlayout::ParagraphImpl::getUTF16Index\28unsigned\20long\29\20const +372:sk_sp::reset\28SkTypeface*\29 +373:SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29::operator\28\29\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29\20const +374:SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0::operator\28\29\28SkSL::FunctionDefinition\20const*\2c\20SkSL::FunctionDefinition\20const*\29\20const +375:SkSL::Expression::clone\28\29\20const +376:SkMatrix::mapPoint\28SkPoint\29\20const +377:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +378:skif::FilterResult::FilterResult\28\29 +379:hb_face_reference_table +380:SkPixmap::SkPixmap\28\29 +381:SkPathBuilder::~SkPathBuilder\28\29 +382:SkMatrix::mapRect\28SkRect*\2c\20SkRect\20const&\29\20const +383:SkDQuad::set\28SkPoint\20const*\29 +384:std::__2::unique_ptr::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +385:skvx::Vec<4\2c\20int>\20skvx::operator&<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +386:skia_png_error +387:hb_buffer_t::unsafe_to_break\28unsigned\20int\2c\20unsigned\20int\29 +388:SkRect::outset\28float\2c\20float\29 +389:SkPathBuilder::detach\28SkMatrix\20const*\29 +390:SkPath::operator=\28SkPath\20const&\29 +391:SkMatrix::mapRect\28SkRect\20const&\29\20const +392:skgpu::ganesh::SurfaceDrawContext::addDrawOp\28GrClip\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::function\20const&\29 +393:\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16::Expand\28unsigned\20long\20long\29 +394:\28anonymous\20namespace\29::ColorTypeFilter_8888::Expand\28unsigned\20int\29 +395:\28anonymous\20namespace\29::ColorTypeFilter_16161616::Expand\28unsigned\20long\20long\29 +396:\28anonymous\20namespace\29::ColorTypeFilter_1010102::Expand\28unsigned\20long\20long\29 +397:SkStringPrintf\28char\20const*\2c\20...\29 +398:SkRecord::grow\28\29 +399:SkPictureRecord::addDraw\28DrawType\2c\20unsigned\20long*\29 +400:strstr +401:std::__2::__cloc\28\29 +402:sscanf +403:skvx::Vec<4\2c\20int>\20skvx::operator!<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\29 +404:hb_blob_get_data_writable +405:SkRect::intersect\28SkRect\20const&\29 +406:SkPath::SkPath\28\29 +407:std::__2::unique_ptr::~unique_ptr\5babi:ne180100\5d\28\29 +408:std::__2::basic_string_view>::compare\28std::__2::basic_string_view>\29\20const +409:skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>::STArray\28skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&&\29 +410:skia_png_chunk_error +411:sk_malloc_throw\28unsigned\20long\2c\20unsigned\20long\29 +412:ft_mem_alloc +413:__multf3 +414:SkSL::GLSLCodeGenerator::writeLine\28std::__2::basic_string_view>\29 +415:SkRect::roundOut\28\29\20const +416:OT::Layout::Common::Coverage::get_coverage\28unsigned\20int\29\20const +417:FT_Stream_EnterFrame +418:std::__2::unique_ptr>\20SkSL::evaluate_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +419:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20char\20const*\29 +420:skia_private::THashTable>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair\2c\20std::__2::unique_ptr>*\2c\20skia_private::THashMap>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair>::Hash\28std::__2::unique_ptr>*\20const&\29 +421:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +422:sk_sp::~sk_sp\28\29 +423:fml::KillProcess\28\29 +424:SkSL::String::printf\28char\20const*\2c\20...\29 +425:SkPoint::length\28\29\20const +426:SkPathBuilder::SkPathBuilder\28\29 +427:SkNullBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +428:SkMatrix::getMapPtsProc\28\29\20const +429:SkIRect::Intersects\28SkIRect\20const&\2c\20SkIRect\20const&\29 +430:GrGLSLVaryingHandler::addVarying\28char\20const*\2c\20GrGLSLVarying*\2c\20GrGLSLVaryingHandler::Interpolation\29 +431:GrBackendFormats::AsGLFormat\28GrBackendFormat\20const&\29 +432:std::__2::locale::id::__get\28\29 +433:std::__2::locale::facet::facet\5babi:nn180100\5d\28unsigned\20long\29 +434:skgpu::UniqueKey::~UniqueKey\28\29 +435:hb_lazy_loader_t\2c\20hb_face_t\2c\2033u\2c\20hb_blob_t>::do_destroy\28hb_blob_t*\29 +436:bool\20hb_sanitize_context_t::check_range>\28OT::IntType\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +437:SkString::operator=\28char\20const*\29 +438:SkMatrix::getType\28\29\20const +439:SkMatrix::SkMatrix\28\29 +440:SkDPoint::approximatelyEqual\28SkDPoint\20const&\29\20const +441:SkChecksum::Hash32\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20int\29 +442:GrStyledShape::~GrStyledShape\28\29 +443:GrProcessorSet::GrProcessorSet\28GrPaint&&\29 +444:GrOpFlushState::bindPipelineAndScissorClip\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +445:GrGLExtensions::has\28char\20const*\29\20const +446:strncmp +447:std::__2::locale::__imp::install\28std::__2::locale::facet*\2c\20long\29 +448:skia_png_muldiv +449:f_t_mutex\28\29 +450:dlrealloc +451:SkTDStorage::reserve\28int\29 +452:SkSL::RP::Builder::discard_stack\28int\29 +453:SkSL::Pool::FreeMemory\28void*\29 +454:SkArenaAlloc::makeBytesAlignedTo\28unsigned\20long\2c\20unsigned\20long\29 +455:GrOp::~GrOp\28\29 +456:GrGeometryProcessor::AttributeSet::initImplicit\28GrGeometryProcessor::Attribute\20const*\2c\20int\29 +457:void\20SkSafeUnref\28GrSurface*\29 +458:surface_setCallbackHandler +459:sk_sp::~sk_sp\28\29 +460:hb_buffer_t::unsafe_to_concat\28unsigned\20int\2c\20unsigned\20int\29 +461:hb_bit_set_t::add\28unsigned\20int\29 +462:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +463:SkSL::PipelineStage::PipelineStageCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +464:SkRegion::freeRuns\28\29 +465:SkMatrix::isIdentity\28\29\20const +466:GrShaderVar::GrShaderVar\28char\20const*\2c\20SkSLType\2c\20int\29 +467:std::__2::unique_ptr::~unique_ptr\5babi:nn180100\5d\28\29 +468:std::__2::enable_if::value\20&&\20sizeof\20\28unsigned\20int\29\20==\204\2c\20unsigned\20int>::type\20SkGoodHash::operator\28\29\28unsigned\20int\20const&\29\20const +469:skvx::Vec<8\2c\20unsigned\20short>\20skvx::mulhi<8>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +470:hb_ot_map_builder_t::add_gsub_pause\28bool\20\28*\29\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29\29 +471:flutter::DlPaint::~DlPaint\28\29 +472:cf2_stack_pushFixed +473:SkSL::RP::Builder::binary_op\28SkSL::RP::BuilderOp\2c\20int\29 +474:SkPathBuilder::lineTo\28SkPoint\29 +475:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20SkFilterMode\2c\20SkMipmapMode\29 +476:GrProcessor::operator\20new\28unsigned\20long\2c\20unsigned\20long\29 +477:GrOp::GenID\28std::__2::atomic*\29 +478:GrImageInfo::GrImageInfo\28GrImageInfo&&\29 +479:GrGLSLVaryingHandler::addPassThroughAttribute\28GrShaderVar\20const&\2c\20char\20const*\2c\20GrGLSLVaryingHandler::Interpolation\29 +480:GrFragmentProcessor::registerChild\28std::__2::unique_ptr>\2c\20SkSL::SampleUsage\29 +481:std::__2::istreambuf_iterator>::operator*\5babi:nn180100\5d\28\29\20const +482:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +483:std::__2::__split_buffer&>::~__split_buffer\28\29 +484:skia_private::TArray::push_back_raw\28int\29 +485:SkSL::SymbolTable::addWithoutOwnershipOrDie\28SkSL::Symbol*\29 +486:SkSL::Nop::~Nop\28\29 +487:SkRect::contains\28SkRect\20const&\29\20const +488:SkRecords::FillBounds::updateSaveBounds\28SkRect\20const&\29 +489:SkPoint::normalize\28\29 +490:SkMatrix::rectStaysRect\28\29\20const +491:SkMatrix::postTranslate\28float\2c\20float\29 +492:SkJSONWriter::write\28char\20const*\2c\20unsigned\20long\29 +493:SkJSONWriter::appendBool\28char\20const*\2c\20bool\29 +494:GrSkSLFP::UniformPayloadSize\28SkRuntimeEffect\20const*\29 +495:GrSkSLFP::GrSkSLFP\28sk_sp\2c\20char\20const*\2c\20GrSkSLFP::OptFlags\29 +496:283 +497:std::__2::unique_ptr::unique_ptr\5babi:nn180100\5d\28char*\2c\20std::__2::__dependent_type\2c\20true>::__good_rval_ref_type\29 +498:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +499:std::__2::__throw_bad_function_call\5babi:ne180100\5d\28\29 +500:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +501:skgpu::UniqueKey::UniqueKey\28\29 +502:sk_sp::reset\28GrSurface*\29 +503:sk_sp::~sk_sp\28\29 +504:hb_buffer_t::merge_clusters\28unsigned\20int\2c\20unsigned\20int\29 +505:__multi3 +506:SkTDArray::push_back\28SkPoint\20const&\29 +507:SkStrokeRec::getStyle\28\29\20const +508:SkSL::fold_expression\28SkSL::Position\2c\20double\2c\20SkSL::Type\20const*\29 +509:SkSL::Type::MakeAliasType\28std::__2::basic_string_view>\2c\20SkSL::Type\20const&\29 +510:GrTriangulator::Comparator::sweep_lt\28SkPoint\20const&\2c\20SkPoint\20const&\29\20const +511:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +512:skia_png_crc_read +513:machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>::operator=\28machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\20const&\29 +514:flutter::ToSkMatrix\28impeller::Matrix\20const&\29 +515:SkSpinlock::acquire\28\29 +516:SkSL::Parser::rangeFrom\28SkSL::Position\29 +517:SkSL::Parser::checkNext\28SkSL::Token::Kind\2c\20SkSL::Token*\29 +518:SkMatrix::mapRect\28SkRect*\29\20const +519:SkMatrix::invert\28SkMatrix*\29\20const +520:GrOpFlushState::bindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +521:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28char\29 +522:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +523:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +524:hb_paint_funcs_t::pop_transform\28void*\29 +525:fma +526:cosf +527:abort +528:SkTDStorage::append\28\29 +529:SkTDArray::append\28\29 +530:SkSL::RP::Builder::lastInstruction\28int\29 +531:SkMatrix::isScaleTranslate\28\29\20const +532:SkMatrix::Translate\28float\2c\20float\29 +533:SkMatrix::Concat\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +534:OT::ArrayOf\2c\20OT::IntType>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +535:sk_malloc_flags\28unsigned\20long\2c\20unsigned\20int\29 +536:hb_buffer_t::reverse\28\29 +537:SkString::operator=\28SkString\20const&\29 +538:SkStrikeSpec::~SkStrikeSpec\28\29 +539:SkSL::Type::toCompound\28SkSL::Context\20const&\2c\20int\2c\20int\29\20const +540:SkSL::RP::Generator::binaryOp\28SkSL::Type\20const&\2c\20SkSL::RP::Generator::TypedOps\20const&\29 +541:SkRecords::FillBounds::adjustAndMap\28SkRect\2c\20SkPaint\20const*\29\20const +542:SkColorSpaceXformSteps::SkColorSpaceXformSteps\28SkColorSpace\20const*\2c\20SkAlphaType\2c\20SkColorSpace\20const*\2c\20SkAlphaType\29 +543:OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::operator\28\29\28void\20const*\29\20const +544:GrStyle::isSimpleFill\28\29\20const +545:GrGLSLVaryingHandler::emitAttributes\28GrGeometryProcessor\20const&\29 +546:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::setIndices\28\29 +547:std::__2::unique_ptr::reset\5babi:nn180100\5d\28unsigned\20char*\29 +548:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +549:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +550:std::__2::__unique_if::__unique_array_unknown_bound\20std::__2::make_unique\5babi:ne180100\5d\28unsigned\20long\29 +551:skvx::Vec<8\2c\20unsigned\20short>\20skvx::operator+<8\2c\20unsigned\20short>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +552:skgpu::VertexColor::set\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\29 +553:skgpu::ResourceKey::Builder::finish\28\29 +554:sk_sp::~sk_sp\28\29 +555:hb_draw_funcs_t::emit_line_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\29 +556:ft_validator_error +557:SkSL::Parser::error\28SkSL::Token\2c\20std::__2::basic_string_view>\29 +558:SkSL::ConstantFolder::GetConstantValueForVariable\28SkSL::Expression\20const&\29 +559:SkPictureRecord::addPaintPtr\28SkPaint\20const*\29 +560:SkMatrix::preConcat\28SkMatrix\20const&\29 +561:SkGlyph::rowBytes\28\29\20const +562:SkDCubic::set\28SkPoint\20const*\29 +563:SkBitmap::SkBitmap\28SkBitmap\20const&\29 +564:GrSurfaceProxy::backingStoreDimensions\28\29\20const +565:GrProgramInfo::visitFPProxies\28std::__2::function\20const&\29\20const +566:GrMeshDrawOp::createProgramInfo\28GrMeshDrawTarget*\29 +567:GrGpu::handleDirtyContext\28\29 +568:FT_Stream_ReadFields +569:FT_Stream_ReadByte +570:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +571:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_size\5babi:nn180100\5d\28unsigned\20long\29 +572:skvx::Vec<4\2c\20float>\20\28anonymous\20namespace\29::add_121>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +573:skif::FilterResult::operator=\28skif::FilterResult&&\29 +574:skif::Context::~Context\28\29 +575:skia_private::TArray::Allocate\28int\2c\20double\29 +576:skia_private::TArray\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +577:hb_draw_funcs_t::start_path\28void*\2c\20hb_draw_state_t&\29 +578:SkWriter32::reserve\28unsigned\20long\29 +579:SkTSect::pointLast\28\29\20const +580:SkStrokeRec::isHairlineStyle\28\29\20const +581:SkSL::Type::MakeVectorType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\29 +582:SkRect::join\28SkRect\20const&\29 +583:SkPathBuilder::moveTo\28SkPoint\29 +584:SkColorSpace::MakeSRGB\28\29 +585:OT::VarSizedBinSearchArrayOf>::get_length\28\29\20const +586:FT_Stream_GetULong +587:target_from_texture_type\28GrTextureType\29 +588:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +589:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator+<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +590:skvx::Vec<4\2c\20unsigned\20int>\20skvx::operator+<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +591:skia::textlayout::TextStyle::TextStyle\28skia::textlayout::TextStyle\20const&\29 +592:skia::textlayout::OneLineShaper::RunBlock::operator=\28skia::textlayout::OneLineShaper::RunBlock&&\29 +593:sk_srgb_singleton\28\29 +594:png_icc_profile_error +595:impeller::Matrix::operator*\28impeller::TPoint\20const&\29\20const +596:hb_font_t::get_nominal_glyph\28unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\29 +597:flutter::DlSrgbToLinearGammaColorFilter::type\28\29\20const +598:flutter::DlPaint::DlPaint\28\29 +599:flutter::DisplayListBuilder::SetAttributesFromPaint\28flutter::DlPaint\20const&\2c\20flutter::DisplayListAttributeFlags\29 +600:flutter::DisplayListBuilder::PaintResult\28flutter::DlPaint\20const&\2c\20flutter::DisplayListAttributeFlags\29 +601:_hb_next_syllable\28hb_buffer_t*\2c\20unsigned\20int\29 +602:SkSL::TProgramVisitor::visitStatement\28SkSL::Statement\20const&\29 +603:SkSL::RP::Program::makeStages\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSpan\2c\20SkSL::RP::Program::SlotData\20const&\29\20const::$_2::operator\28\29\28\29\20const +604:SkSL::ConstructorCompound::MakeFromConstants\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20double\20const*\29 +605:SkPaint::setBlendMode\28SkBlendMode\29 +606:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_2::operator\28\29\28SkRasterPipelineOp\2c\20SkRasterPipelineOp\2c\20\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +607:SkImageInfo::minRowBytes\28\29\20const +608:GrFragmentProcessor::ProgramImpl::invokeChild\28int\2c\20GrFragmentProcessor::ProgramImpl::EmitArgs&\2c\20std::__2::basic_string_view>\29 +609:GrCaps::getDefaultBackendFormat\28GrColorType\2c\20skgpu::Renderable\29\20const +610:FT_Stream_ReleaseFrame +611:DefaultGeoProc::Impl::~Impl\28\29 +612:399 +613:void\20std::__2::unique_ptr>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot*\2c\200>\28skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot*\29 +614:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +615:std::__2::ctype\20const&\20std::__2::use_facet\5babi:ne180100\5d>\28std::__2::locale\20const&\29 +616:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:nn180100\5d\28\29\20const +617:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +618:skia::textlayout::TextStyle::~TextStyle\28\29 +619:out +620:flutter::DisplayListBuilder::UpdateLayerResult\28flutter::DisplayListBuilder::OpResult\2c\20bool\29 +621:cf2_stack_popInt +622:Skwasm::sp_wrapper::sp_wrapper\28std::__2::shared_ptr\29 +623:SkSemaphore::~SkSemaphore\28\29 +624:SkSL::Type::coerceExpression\28std::__2::unique_ptr>\2c\20SkSL::Context\20const&\29\20const +625:SkSL::Type::MakeGenericType\28char\20const*\2c\20SkSpan\2c\20SkSL::Type\20const*\29 +626:SkSL::RP::SlotManager::getVariableSlots\28SkSL::Variable\20const&\29 +627:SkRGBA4f<\28SkAlphaType\292>::operator!=\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +628:SkPathStroker::lineTo\28SkPoint\20const&\2c\20SkPath::Iter\20const*\29 +629:SkPath::Iter::next\28\29 +630:SkMatrix::Scale\28float\2c\20float\29 +631:SkDCubic::ptAtT\28double\29\20const +632:SkBlitter::~SkBlitter\28\29 +633:GrShaderVar::operator=\28GrShaderVar&&\29 +634:GrProcessor::operator\20delete\28void*\29 +635:GrImageInfo::GrImageInfo\28SkImageInfo\20const&\29 +636:FT_Outline_Translate +637:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +638:std::__2::char_traits::assign\5babi:nn180100\5d\28char&\2c\20char\20const&\29 +639:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +640:std::__2::basic_ostream>&\20std::__2::operator<<\5babi:ne180100\5d>\28std::__2::basic_ostream>&\2c\20char\20const*\29 +641:std::__2::__check_grouping\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int&\29 +642:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +643:skvx::Vec<4\2c\20int>\20skvx::operator|<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +644:skia_private::THashMap::find\28SkSL::FunctionDeclaration\20const*\20const&\29\20const +645:skcpu::Draw::~Draw\28\29 +646:pad +647:hb_buffer_t::unsafe_to_break_from_outbuffer\28unsigned\20int\2c\20unsigned\20int\29 +648:ft_mem_qalloc +649:flutter::DlPaint::DlPaint\28flutter::DlPaint\20const&\29 +650:__ashlti3 +651:SkTCoincident::setPerp\28SkTCurve\20const&\2c\20double\2c\20SkDPoint\20const&\2c\20SkTCurve\20const&\29 +652:SkString::data\28\29 +653:SkSL::Type::MakeMatrixType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\2c\20signed\20char\29 +654:SkSL::TProgramVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +655:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression\20const&\29 +656:SkSL::Parser::nextToken\28\29 +657:SkSL::Operator::tightOperatorName\28\29\20const +658:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29::$_0::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +659:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29 +660:SkPaint::setColor\28unsigned\20int\29 +661:SkDVector::crossCheck\28SkDVector\20const&\29\20const +662:SkCanvas::internalQuickReject\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29 +663:SkBitmapDevice::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +664:SkAAClipBlitterWrapper::~SkAAClipBlitterWrapper\28\29 +665:OT::hb_ot_apply_context_t::init_iters\28\29 +666:GrStyledShape::asPath\28\29\20const +667:GrStyle::~GrStyle\28\29 +668:GrSimpleMeshDrawOpHelper::~GrSimpleMeshDrawOpHelper\28\29 +669:GrSimpleMeshDrawOpHelper::visitProxies\28std::__2::function\20const&\29\20const +670:GrShape::reset\28\29 +671:GrShape::bounds\28\29\20const +672:GrShaderVar::appendDecl\28GrShaderCaps\20const*\2c\20SkString*\29\20const +673:GrQuad::MakeFromRect\28SkRect\20const&\2c\20SkMatrix\20const&\29 +674:GrOpFlushState::drawMesh\28GrSimpleMesh\20const&\29 +675:GrColorInfo::GrColorInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\29 +676:GrAAConvexTessellator::Ring::index\28int\29\20const +677:DefaultGeoProc::~DefaultGeoProc\28\29 +678:465 +679:std::__2::vector\2c\20std::__2::allocator>>::~vector\5babi:ne180100\5d\28\29 +680:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +681:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock&\2c\20skia::textlayout::OneLineShaper::RunBlock&\29 +682:std::__2::basic_string\2c\20std::__2::allocator>::__set_short_size\5babi:nn180100\5d\28unsigned\20long\29 +683:std::__2::__compressed_pair_elem::__compressed_pair_elem\5babi:nn180100\5d\28void\20\28*&&\29\28void*\29\29 +684:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29\20\28.7463\29 +685:skif::Context::Context\28skif::Context\20const&\29 +686:skia_png_chunk_report +687:skgpu::ResourceKey::operator==\28skgpu::ResourceKey\20const&\29\20const +688:cff2_path_procs_extents_t::curve\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +689:cff2_path_param_t::cubic_to\28CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +690:cff1_path_procs_extents_t::curve\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +691:cff1_path_param_t::cubic_to\28CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +692:_hb_glyph_info_get_modified_combining_class\28hb_glyph_info_t\20const*\29 +693:SkTDArray::push_back\28unsigned\20int\20const&\29 +694:SkSL::FunctionDeclaration::description\28\29\20const +695:SkRasterPipeline::extend\28SkRasterPipeline\20const&\29 +696:SkPixmap::operator=\28SkPixmap\20const&\29 +697:SkPathBuilder::lineTo\28float\2c\20float\29 +698:SkPathBuilder::conicTo\28SkPoint\2c\20SkPoint\2c\20float\29 +699:SkPaintToGrPaint\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrPaint*\29 +700:SkOpPtT::contains\28SkOpPtT\20const*\29\20const +701:SkMatrixPriv::CheapEqual\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +702:SkMatrix::postConcat\28SkMatrix\20const&\29 +703:SkImageInfo::MakeA8\28int\2c\20int\29 +704:SkIRect::intersect\28SkIRect\20const&\2c\20SkIRect\20const&\29 +705:SkColorSpaceXformSteps::apply\28float*\29\20const +706:OT::hb_paint_context_t::recurse\28OT::Paint\20const&\29 +707:GrTextureProxy::mipmapped\28\29\20const +708:GrShaderVar::GrShaderVar\28char\20const*\2c\20SkSLType\2c\20GrShaderVar::TypeModifier\29 +709:GrMatrixEffect::Make\28SkMatrix\20const&\2c\20std::__2::unique_ptr>\29 +710:GrGLGpu::setTextureUnit\28int\29 +711:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::~Impl\28\29 +712:GrCPixmap::GrCPixmap\28GrImageInfo\2c\20void\20const*\2c\20unsigned\20long\29 +713:GrAppliedClip::~GrAppliedClip\28\29 +714:FT_Stream_ReadULong +715:FT_Load_Glyph +716:CFF::cff_stack_t::pop\28\29 +717:void\20SkOnce::operator\28\29*\29\2c\20SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*>\28void\20\28&\29\28SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*\29\2c\20SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*&&\29 +718:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +719:std::__2::numpunct::thousands_sep\5babi:nn180100\5d\28\29\20const +720:std::__2::numpunct::grouping\5babi:nn180100\5d\28\29\20const +721:std::__2::ctype\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +722:std::__2::basic_string\2c\20std::__2::allocator>::__move_assign\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::integral_constant\29 +723:skia_private::TArray::push_back\28int\20const&\29 +724:skgpu::ResourceKey::Builder::Builder\28skgpu::ResourceKey*\2c\20unsigned\20int\2c\20int\29 +725:sk_sp::~sk_sp\28\29 +726:sinf +727:rewind\28GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +728:hb_buffer_t::move_to\28unsigned\20int\29 +729:fmodf +730:_output_with_dotted_circle\28hb_buffer_t*\29 +731:__memcpy +732:SkTSpan::pointLast\28\29\20const +733:SkTDStorage::resize\28int\29 +734:SkSafeMath::addInt\28int\2c\20int\29 +735:SkSL::Parser::rangeFrom\28SkSL::Token\29 +736:SkSL::Parser::error\28SkSL::Position\2c\20std::__2::basic_string_view>\29 +737:SkRect::BoundsOrEmpty\28SkSpan\29 +738:SkPath::Iter::setPath\28SkPath\20const&\2c\20bool\29 +739:SkNullBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +740:SkMatrix::mapPoints\28SkSpan\29\20const +741:SkImageGenerator::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +742:SkImageGenerator::onIsValid\28SkRecorder*\29\20const +743:SkImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +744:SkDPoint::ApproximatelyEqual\28SkPoint\20const&\2c\20SkPoint\20const&\29 +745:SkBlockAllocator::reset\28\29 +746:GrSimpleMeshDrawOpHelperWithStencil::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20bool*\29 +747:GrGeometryProcessor::ProgramImpl::SetTransform\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrResourceHandle\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix*\29 +748:GrGLSLVertexGeoBuilder::insertFunction\28char\20const*\29 +749:FT_Stream_Skip +750:FT_Stream_ExtractFrame +751:Cr_z_crc32 +752:AAT::StateTable::get_entry\28int\2c\20unsigned\20int\29\20const +753:void\20std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrGLCaps::ColorTypeInfo*\29 +754:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +755:std::__2::__unique_if::__unique_array_unknown_bound\20std::__2::make_unique\5babi:ne180100\5d\28unsigned\20long\29 +756:std::__2::__throw_bad_optional_access\5babi:ne180100\5d\28\29 +757:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +758:skif::LayerSpace::outset\28skif::LayerSpace\20const&\29 +759:skia_private::TArray::checkRealloc\28int\2c\20double\29 +760:skgpu::tess::StrokeIterator::enqueue\28skgpu::tess::StrokeIterator::Verb\2c\20SkPoint\20const*\2c\20float\20const*\29 +761:skgpu::ganesh::SurfaceFillContext::getOpsTask\28\29 +762:powf +763:hb_draw_funcs_t::emit_close_path\28void*\2c\20hb_draw_state_t&\29 +764:hb_buffer_t::unsafe_to_concat_from_outbuffer\28unsigned\20int\2c\20unsigned\20int\29 +765:hb_bit_set_t::get\28unsigned\20int\29\20const +766:hb_bit_page_t::add\28unsigned\20int\29 +767:flutter::DlMatrixColorSourceBase::matrix_ptr\28\29\20const +768:flutter::DlLinearToSrgbGammaColorFilter::size\28\29\20const +769:__addtf3 +770:SkSL::RP::Builder::push_constant_i\28int\2c\20int\29 +771:SkSL::RP::Builder::label\28int\29 +772:SkPixmap::SkPixmap\28SkPixmap\20const&\29 +773:SkPathBuilder::quadTo\28SkPoint\2c\20SkPoint\29 +774:SkPathBuilder::close\28\29 +775:SkPaint::setColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\29 +776:SkPaint::asBlendMode\28\29\20const +777:SkImageInfo::operator=\28SkImageInfo\20const&\29 +778:SkCanvas::save\28\29 +779:SkCanvas::aboutToDraw\28SkPaint\20const&\2c\20SkRect\20const*\29 +780:SkBitmap::tryAllocPixels\28SkImageInfo\20const&\29 +781:OT::hb_ot_apply_context_t::skipping_iterator_t::next\28unsigned\20int*\29 +782:GrSkSLFP::addChild\28std::__2::unique_ptr>\2c\20bool\29 +783:GrProcessorSet::~GrProcessorSet\28\29 +784:GrGeometryProcessor::Attribute&\20skia_private::TArray::emplace_back\28char\20const\20\28&\29\20\5b10\5d\2c\20GrVertexAttribType&&\2c\20SkSLType&&\29 +785:GrGLGpu::clearErrorsAndCheckForOOM\28\29 +786:GrGLGpu::bindBuffer\28GrGpuBufferType\2c\20GrBuffer\20const*\29 +787:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +788:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20float\20const*\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20float\20const*\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20float\20const*\29 +789:GrFragmentProcessor::ProgramImpl::invokeChild\28int\2c\20char\20const*\2c\20char\20const*\2c\20GrFragmentProcessor::ProgramImpl::EmitArgs&\2c\20std::__2::basic_string_view>\29 +790:CFF::arg_stack_t::pop_int\28\29 +791:void\20SkSafeUnref\28SharedGenerator*\29 +792:ubidi_getParaLevelAtIndex_skia +793:std::__2::char_traits::copy\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +794:std::__2::basic_string\2c\20std::__2::allocator>::begin\5babi:nn180100\5d\28\29 +795:std::__2::basic_string\2c\20std::__2::allocator>::__is_long\5babi:nn180100\5d\28\29\20const +796:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +797:std::__2::__libcpp_snprintf_l\28char*\2c\20unsigned\20long\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +798:std::__2::__function::__value_func::__value_func\5babi:ne180100\5d\28std::__2::__function::__value_func&&\29 +799:skia_private::THashTable>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair\2c\20std::__2::unique_ptr>*\2c\20skia_private::THashMap>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair&&\29 +800:skia::textlayout::Cluster::run\28\29\20const +801:skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::AddTrianglesWhenChopping\2c\20skgpu::tess::DiscardFlatCurves>::accountForCurve\28float\29 +802:skgpu::ganesh::SurfaceContext::PixelTransferResult::~PixelTransferResult\28\29 +803:skgpu::ganesh::AsView\28GrRecordingContext*\2c\20SkImage\20const*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +804:is_equal\28std::type_info\20const*\2c\20std::type_info\20const*\2c\20bool\29 +805:hb_ot_map_t::get_1_mask\28unsigned\20int\29\20const +806:hb_font_get_glyph +807:hb_bit_page_t::init0\28\29 +808:flutter::DlColor::DlColor\28unsigned\20int\29 +809:cff_index_get_sid_string +810:_hb_font_funcs_set_middle\28hb_font_funcs_t*\2c\20void*\2c\20void\20\28*\29\28void*\29\29 +811:__floatsitf +812:SkWriter32::writeScalar\28float\29 +813:SkTDArray<\28anonymous\20namespace\29::YOffset>::append\28\29 +814:SkSL::RP::Generator::pushVectorizedExpression\28SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +815:SkSL::RP::Builder::swizzle\28int\2c\20SkSpan\29 +816:SkRegion::setRect\28SkIRect\20const&\29 +817:SkPath::makeTransform\28SkMatrix\20const&\29\20const +818:SkMatrix::getMaxScale\28\29\20const +819:SkM44::setConcat\28SkM44\20const&\2c\20SkM44\20const&\29 +820:SkJSONWriter::appendHexU32\28char\20const*\2c\20unsigned\20int\29 +821:SkIRect::makeOutset\28int\2c\20int\29\20const +822:SkDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +823:SkCanvas::concat\28SkMatrix\20const&\29 +824:SkBlender::Mode\28SkBlendMode\29 +825:SkBitmap::setInfo\28SkImageInfo\20const&\2c\20unsigned\20long\29 +826:SkArenaAlloc::SkArenaAlloc\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +827:OT::hb_ot_apply_context_t::skipping_iterator_t::reset\28unsigned\20int\29 +828:GrMeshDrawTarget::allocMesh\28\29 +829:GrGLGpu::bindTextureToScratchUnit\28unsigned\20int\2c\20int\29 +830:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::~SwizzleFragmentProcessor\28\29 +831:GrCaps::getReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +832:GrBackendFormat::GrBackendFormat\28GrBackendFormat\20const&\29 +833:CFF::cff1_cs_opset_t::check_width\28unsigned\20int\2c\20CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +834:CFF::arg_stack_t::pop_uint\28\29 +835:AutoFTAccess::AutoFTAccess\28SkTypeface_FreeType\20const*\29 +836:strchr +837:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +838:std::__2::unique_ptr::reset\5babi:ne180100\5d\28unsigned\20char*\29 +839:std::__2::pair::type\2c\20std::__2::__unwrap_ref_decay::type>\20std::__2::make_pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +840:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20char\29\20const +841:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_cap\5babi:nn180100\5d\28unsigned\20long\29 +842:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +843:skia_private::TArray>\2c\20true>::reserve_exact\28int\29 +844:skia_private::TArray::push_back\28bool&&\29 +845:skia_png_get_uint_32 +846:skia::textlayout::OneLineShaper::clusterIndex\28unsigned\20long\29 +847:skgpu::ganesh::SurfaceDrawContext::chooseAAType\28GrAA\29 +848:skgpu::UniqueKey::GenerateDomain\28\29 +849:impeller::Matrix::Multiply\28impeller::Matrix\20const&\29\20const +850:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\2c\20hb_pair_t>>::operator+\28unsigned\20int\29\20const +851:hb_buffer_t::sync_so_far\28\29 +852:hb_buffer_t::sync\28\29 +853:hb_bit_set_t::add_range\28unsigned\20int\2c\20unsigned\20int\29 +854:flutter::DisplayListBuilder::AccumulateOpBounds\28impeller::TRect\20const&\2c\20flutter::DisplayListAttributeFlags\29 +855:compute_side\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +856:cff_parse_num +857:bool\20OT::Layout::Common::Coverage::collect_coverage\28hb_set_digest_t*\29\20const +858:SkWriter32::writeRect\28SkRect\20const&\29 +859:SkSL::Type::clone\28SkSL::Context\20const&\2c\20SkSL::SymbolTable*\29\20const +860:SkSL::SymbolTable::find\28std::__2::basic_string_view>\29\20const +861:SkSL::RP::Generator::writeStatement\28SkSL::Statement\20const&\29 +862:SkSL::RP::Builder::unary_op\28SkSL::RP::BuilderOp\2c\20int\29 +863:SkSL::Parser::operatorRight\28SkSL::Parser::AutoDepth&\2c\20SkSL::OperatorKind\2c\20std::__2::unique_ptr>\20\28SkSL::Parser::*\29\28\29\2c\20std::__2::unique_ptr>&\29 +864:SkSL::Parser::expression\28\29 +865:SkSL::Nop::Make\28\29 +866:SkRegion::Cliperator::next\28\29 +867:SkRegion::Cliperator::Cliperator\28SkRegion\20const&\2c\20SkIRect\20const&\29 +868:SkRect::roundOut\28SkIRect*\29\20const +869:SkRecords::FillBounds::pushControl\28\29 +870:SkRasterClip::~SkRasterClip\28\29 +871:SkPathPriv::Iterate::Iterate\28SkPath\20const&\29 +872:SkPathBuilder::cubicTo\28SkPoint\2c\20SkPoint\2c\20SkPoint\29 +873:SkPath::RangeIter::operator++\28\29 +874:SkMatrix::MakeAll\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +875:SkAutoConicToQuads::computeQuads\28SkPoint\20const*\2c\20float\2c\20float\29 +876:SkArenaAlloc::~SkArenaAlloc\28\29 +877:SkAAClip::setEmpty\28\29 +878:OT::hb_ot_apply_context_t::~hb_ot_apply_context_t\28\29 +879:OT::hb_ot_apply_context_t::hb_ot_apply_context_t\28unsigned\20int\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +880:GrTriangulator::Line::intersect\28GrTriangulator::Line\20const&\2c\20SkPoint*\29\20const +881:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkISize\20const&\29 +882:GrGpuBuffer::unmap\28\29 +883:GrGeometryProcessor::ProgramImpl::WriteLocalCoord\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20GrShaderVar\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +884:GrGeometryProcessor::ProgramImpl::ComputeMatrixKey\28GrShaderCaps\20const&\2c\20SkMatrix\20const&\29 +885:GrFragmentProcessor::GrFragmentProcessor\28GrFragmentProcessor\20const&\29 +886:673 +887:void\20SkSafeUnref\28SkMipmap*\29 +888:ubidi_getMemory_skia +889:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +890:std::__2::vector>::erase\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\29 +891:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +892:std::__2::numpunct::truename\5babi:nn180100\5d\28\29\20const +893:std::__2::numpunct::falsename\5babi:nn180100\5d\28\29\20const +894:std::__2::numpunct::decimal_point\5babi:nn180100\5d\28\29\20const +895:std::__2::moneypunct::do_grouping\28\29\20const +896:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29\20const +897:std::__2::basic_string\2c\20std::__2::allocator>::empty\5babi:nn180100\5d\28\29\20const +898:std::__2::basic_string\2c\20std::__2::allocator>::__init\28char\20const*\2c\20unsigned\20long\29 +899:std::__2::__variant_detail::__dtor\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29 +900:snprintf +901:skvx::Vec<4\2c\20float>\20skvx::operator-<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +902:skia_private::TArray::checkRealloc\28int\2c\20double\29 +903:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +904:skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>::STArray\28skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&&\29 +905:skia_png_reciprocal +906:skia_png_malloc_warn +907:skia::textlayout::\28anonymous\20namespace\29::relax\28float\29 +908:skgpu::ganesh::SurfaceContext::readPixels\28GrDirectContext*\2c\20GrPixmap\2c\20SkIPoint\29 +909:skgpu::Swizzle::RGBA\28\29 +910:sk_sp::~sk_sp\28\29 +911:hb_user_data_array_t::fini\28\29 +912:hb_sanitize_context_t::end_processing\28\29 +913:hb_draw_funcs_t::emit_quadratic_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\2c\20float\2c\20float\29 +914:flutter::DlPath::~DlPath\28\29 +915:flutter::DisplayListBuilder::checkForDeferredSave\28\29 +916:crc32_z +917:SkTSect::SkTSect\28SkTCurve\20const&\29 +918:SkSL::String::Separator\28\29 +919:SkSL::RP::Generator::pushIntrinsic\28SkSL::RP::BuilderOp\2c\20SkSL::Expression\20const&\29 +920:SkSL::ProgramConfig::strictES2Mode\28\29\20const +921:SkSL::Parser::layoutInt\28\29 +922:SkRegion::setEmpty\28\29 +923:SkRRect::MakeOval\28SkRect\20const&\29 +924:SkRGBA4f<\28SkAlphaType\293>::FromColor\28unsigned\20int\29 +925:SkPathRef::Editor::Editor\28sk_sp*\2c\20int\2c\20int\2c\20int\29 +926:SkMipmap::ComputeLevelCount\28int\2c\20int\29 +927:SkMatrix::isSimilarity\28float\29\20const +928:SkImageInfo::Make\28int\2c\20int\2c\20SkColorType\2c\20SkAlphaType\29 +929:SkIRect::makeOffset\28int\2c\20int\29\20const +930:SkDQuad::ptAtT\28double\29\20const +931:SkDLine::nearPoint\28SkDPoint\20const&\2c\20bool*\29\20const +932:SkDConic::ptAtT\28double\29\20const +933:SkChopQuadAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +934:SkBaseShadowTessellator::appendTriangle\28unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +935:SafeDecodeSymbol +936:OT::cmap::find_subtable\28unsigned\20int\2c\20unsigned\20int\29\20const +937:GrTriangulator::EdgeList::remove\28GrTriangulator::Edge*\29 +938:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_4::operator\28\29\28char\20const*\29\20const +939:GrSimpleMeshDrawOpHelper::isCompatible\28GrSimpleMeshDrawOpHelper\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +940:GrShaderVar::GrShaderVar\28GrShaderVar\20const&\29 +941:GrQuad::writeVertex\28int\2c\20skgpu::VertexWriter&\29\20const +942:GrOpFlushState::bindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +943:GrGLSLShaderBuilder::getMangledFunctionName\28char\20const*\29 +944:GrGLSLShaderBuilder::appendTextureLookup\28GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +945:GrGLGpu::getErrorAndCheckForOOM\28\29 +946:GrColorInfo::GrColorInfo\28SkColorInfo\20const&\29 +947:GrAAConvexTessellator::addTri\28int\2c\20int\2c\20int\29 +948:FT_Get_Module +949:AlmostBequalUlps\28double\2c\20double\29 +950:AAT::StateTable::EntryData>::get_entry\28int\2c\20unsigned\20int\29\20const +951:tt_face_get_name +952:std::__2::vector>::push_back\5babi:ne180100\5d\28unsigned\20int\20const&\29 +953:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +954:std::__2::shared_ptr::operator=\5babi:ne180100\5d\28std::__2::shared_ptr&&\29 +955:std::__2::__variant_detail::__dtor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29 +956:std::__2::__libcpp_locale_guard::~__libcpp_locale_guard\5babi:nn180100\5d\28\29 +957:std::__2::__libcpp_locale_guard::__libcpp_locale_guard\5babi:nn180100\5d\28__locale_struct*&\29 +958:skvx::Vec<4\2c\20float>&\20skvx::operator+=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.6338\29 +959:skvx::Vec<2\2c\20float>\20skvx::max<2\2c\20float>\28skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +960:skif::FilterResult::FilterResult\28skif::FilterResult\20const&\29 +961:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Hash\28SkImageFilter\20const*\20const&\29 +962:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +963:skcpu::Draw::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29\20const +964:skcpu::Draw::Draw\28\29 +965:sk_sp&\20skia_private::TArray\2c\20true>::emplace_back>\28sk_sp&&\29 +966:round +967:qsort +968:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +969:hb_indic_would_substitute_feature_t::would_substitute\28unsigned\20int\20const*\2c\20unsigned\20int\2c\20hb_face_t*\29\20const +970:hb_font_t::get_glyph_h_advance\28unsigned\20int\29 +971:hb_cache_t<15u\2c\208u\2c\207u\2c\20true>::set\28unsigned\20int\2c\20unsigned\20int\29 +972:ft_module_get_service +973:flutter::DlLinearToSrgbGammaColorFilter::type\28\29\20const +974:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\29\20const +975:__sindf +976:__shlim +977:__cosdf +978:SkTDStorage::removeShuffle\28int\29 +979:SkSurface_Base::getCachedCanvas\28\29 +980:SkString::equals\28SkString\20const&\29\20const +981:SkShaderBase::SkShaderBase\28\29 +982:SkSL::evaluate_pairwise_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +983:SkSL::StringStream::str\28\29\20const +984:SkSL::RP::Generator::makeLValue\28SkSL::Expression\20const&\2c\20bool\29 +985:SkSL::Parser::expressionOrPoison\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +986:SkSL::GLSLCodeGenerator::writeIdentifier\28std::__2::basic_string_view>\29 +987:SkSL::GLSLCodeGenerator::getTypeName\28SkSL::Type\20const&\29 +988:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +989:SkRect::round\28\29\20const +990:SkPath::moveTo\28float\2c\20float\29 +991:SkPath::isConvex\28\29\20const +992:SkPaint::getAlpha\28\29\20const +993:SkMatrix::setScaleTranslate\28float\2c\20float\2c\20float\2c\20float\29 +994:SkMatrix::preScale\28float\2c\20float\29 +995:SkMatrix::mapVector\28float\2c\20float\29\20const +996:SkImageInfo::operator=\28SkImageInfo&&\29 +997:SkImageFilter_Base::getChildInputLayerBounds\28int\2c\20skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +998:SkIRect::join\28SkIRect\20const&\29 +999:SkData::MakeUninitialized\28unsigned\20long\29 +1000:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +1001:SkCanvas::checkForDeferredSave\28\29 +1002:SkBitmap::peekPixels\28SkPixmap*\29\20const +1003:SkAutoCanvasRestore::~SkAutoCanvasRestore\28\29 +1004:SkAAClip::Builder::addRun\28int\2c\20int\2c\20unsigned\20int\2c\20int\29 +1005:OT::hb_ot_apply_context_t::set_lookup_mask\28unsigned\20int\2c\20bool\29 +1006:OT::ClassDef::get_class\28unsigned\20int\29\20const +1007:GrTriangulator::Line::Line\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1008:GrTriangulator::Edge::isRightOf\28GrTriangulator::Vertex\20const&\29\20const +1009:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\29 +1010:GrStyle::SimpleFill\28\29 +1011:GrShape::setType\28GrShape::Type\29 +1012:GrPixmapBase::GrPixmapBase\28GrPixmapBase\20const&\29 +1013:GrMakeUncachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +1014:GrIORef::unref\28\29\20const +1015:GrGeometryProcessor::TextureSampler::reset\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +1016:GrGLGpu::deleteFramebuffer\28unsigned\20int\29 +1017:GrBackendFormats::MakeGL\28unsigned\20int\2c\20unsigned\20int\29 +1018:805 +1019:806 +1020:807 +1021:vsnprintf +1022:void\20AAT::Lookup>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +1023:top12 +1024:std::__2::unique_ptr>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +1025:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Module\20const*\29 +1026:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1027:std::__2::to_string\28long\20long\29 +1028:std::__2::locale::use_facet\28std::__2::locale::id&\29\20const +1029:std::__2::enable_if\2c\20bool>::type\20impeller::TRect::IsFinite\28\29\20const +1030:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +1031:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\2c\20std::__2::allocator>\28char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +1032:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +1033:std::__2::__optional_destruct_base::__optional_destruct_base\5babi:ne180100\5d\28std::__2::in_place_t\2c\20SkPath&&\29 +1034:std::__2::__num_put_base::__identify_padding\28char*\2c\20char*\2c\20std::__2::ios_base\20const&\29 +1035:std::__2::__num_get_base::__get_base\28std::__2::ios_base&\29 +1036:std::__2::__libcpp_asprintf_l\28char**\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +1037:skvx::Vec<4\2c\20float>\20skvx::naive_if_then_else<4\2c\20float>\28skvx::Vec<4\2c\20skvx::Mask::type>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1038:skvx::Vec<4\2c\20float>\20skvx::abs<4>\28skvx::Vec<4\2c\20float>\20const&\29 +1039:skvx::Vec<2\2c\20float>\20skvx::min<2\2c\20float>\28skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +1040:sktext::gpu::BagOfBytes::allocateBytes\28int\2c\20int\29 +1041:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +1042:skia_private::TArray::~TArray\28\29 +1043:skia_private::TArray::checkRealloc\28int\2c\20double\29 +1044:skia_png_malloc_base +1045:skia::textlayout::TextLine::iterateThroughVisualRuns\28bool\2c\20std::__2::function\2c\20float*\29>\20const&\29\20const +1046:skgpu::ganesh::SurfaceFillContext::arenaAlloc\28\29 +1047:skgpu::ganesh::SurfaceDrawContext::numSamples\28\29\20const +1048:skgpu::AutoCallback::~AutoCallback\28\29 +1049:sk_sp::reset\28SkData*\29 +1050:sk_sp::operator=\28sk_sp\20const&\29 +1051:sk_sp::~sk_sp\28\29 +1052:skData_getConstPointer +1053:powf_ +1054:operator==\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +1055:operator==\28SkIRect\20const&\2c\20SkIRect\20const&\29 +1056:is_one_of\28hb_glyph_info_t\20const&\2c\20unsigned\20int\29 +1057:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1058:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1059:inflateStateCheck +1060:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +1061:hb_lazy_loader_t\2c\20hb_face_t\2c\206u\2c\20hb_blob_t>::get\28\29\20const +1062:hb_font_t::has_glyph\28unsigned\20int\29 +1063:hb_cache_t<15u\2c\208u\2c\207u\2c\20true>::clear\28\29 +1064:bool\20hb_sanitize_context_t::check_array\28OT::HBGlyphID16\20const*\2c\20unsigned\20int\29\20const +1065:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1066:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1067:addPoint\28UBiDi*\2c\20int\2c\20int\29 +1068:__extenddftf2 +1069:\28anonymous\20namespace\29::extension_compare\28SkString\20const&\2c\20SkString\20const&\29 +1070:\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1071:\28anonymous\20namespace\29::colrv1_transform\28FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\2c\20SkCanvas*\2c\20SkMatrix*\29 +1072:SkUTF::NextUTF8\28char\20const**\2c\20char\20const*\29 +1073:SkUTF::NextUTF8WithReplacement\28char\20const**\2c\20char\20const*\29 +1074:SkTInternalLList::addToHead\28sktext::gpu::TextBlob*\29 +1075:SkString::reset\28\29 +1076:SkStrike::unlock\28\29 +1077:SkStrike::lock\28\29 +1078:SkSL::cast_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +1079:SkSL::StringStream::~StringStream\28\29 +1080:SkSL::RP::LValue::~LValue\28\29 +1081:SkSL::RP::Generator::pushIntrinsic\28SkSL::RP::Generator::TypedOps\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +1082:SkSL::InlineCandidateAnalyzer::visitExpression\28std::__2::unique_ptr>*\29 +1083:SkSL::GLSLCodeGenerator::writeType\28SkSL::Type\20const&\29 +1084:SkSL::Expression::isBoolLiteral\28\29\20const +1085:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29 +1086:SkRuntimeEffect::findUniform\28std::__2::basic_string_view>\29\20const +1087:SkRasterPipelineBlitter::appendLoadDst\28SkRasterPipeline*\29\20const +1088:SkRRect::MakeRect\28SkRect\20const&\29 +1089:SkPoint::Distance\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1090:SkPath::injectMoveToIfNeeded\28\29 +1091:SkMatrix::preTranslate\28float\2c\20float\29 +1092:SkMatrix::postScale\28float\2c\20float\29 +1093:SkMatrix::mapVectors\28SkSpan\29\20const +1094:SkMatrix::RectToRectOrIdentity\28SkRect\20const&\2c\20SkRect\20const&\2c\20SkMatrix::ScaleToFit\29 +1095:SkIntersections::removeOne\28int\29 +1096:SkImage_Ganesh::SkImage_Ganesh\28sk_sp\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20SkColorInfo\29 +1097:SkImageFilter_Base::getChildOutput\28int\2c\20skif::Context\20const&\29\20const +1098:SkGlyph::iRect\28\29\20const +1099:SkFindUnitQuadRoots\28float\2c\20float\2c\20float\2c\20float*\29 +1100:SkData::PrivateNewWithCopy\28void\20const*\2c\20unsigned\20long\29 +1101:SkColorSpaceXformSteps::Flags::mask\28\29\20const +1102:SkCanvas::translate\28float\2c\20float\29 +1103:SkCanvas::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +1104:SkBlurEngine::SigmaToRadius\28float\29 +1105:SkBlockAllocator::BlockIter::Item::operator++\28\29 +1106:SkBitmapCache::Rec::getKey\28\29\20const +1107:SkAAClipBlitterWrapper::init\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1108:SkAAClip::freeRuns\28\29 +1109:OT::VarSizedBinSearchArrayOf>::get_length\28\29\20const +1110:OT::Offset\2c\20true>::is_null\28\29\20const +1111:GrWindowRectangles::~GrWindowRectangles\28\29 +1112:GrTriangulator::Edge::isLeftOf\28GrTriangulator::Vertex\20const&\29\20const +1113:GrSimpleMeshDrawOpHelper::createProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +1114:GrResourceAllocator::addInterval\28GrSurfaceProxy*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20GrResourceAllocator::ActualUse\2c\20GrResourceAllocator::AllowRecycling\29 +1115:GrRenderTask::makeClosed\28GrRecordingContext*\29 +1116:GrGLGpu::prepareToDraw\28GrPrimitiveType\29 +1117:GrBackendFormatToCompressionType\28GrBackendFormat\20const&\29 +1118:FT_Stream_Read +1119:FT_Outline_Get_CBox +1120:Cr_z_adler32 +1121:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::end\28\29\20const +1122:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::begin\28\29\20const +1123:AlmostDequalUlps\28double\2c\20double\29 +1124:write_tag_size\28SkWriteBuffer&\2c\20unsigned\20int\2c\20unsigned\20long\29 +1125:void\20std::__2::unique_ptr::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot*\2c\200>\28skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot*\29 +1126:void\20skgpu::VertexWriter::writeQuad\2c\20skgpu::VertexColor\2c\20skgpu::VertexWriter::Conditional>\28skgpu::VertexWriter::TriFan\20const&\2c\20skgpu::VertexColor\20const&\2c\20skgpu::VertexWriter::Conditional\20const&\29 +1127:uprv_free_skia +1128:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +1129:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +1130:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +1131:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +1132:strcpy +1133:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1134:std::__2::unique_ptr>::operator=\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +1135:std::__2::unique_ptr>\20GrSkSLFP::Make<>\28SkRuntimeEffect\20const*\2c\20char\20const*\2c\20std::__2::unique_ptr>\2c\20GrSkSLFP::OptFlags\29 +1136:std::__2::unique_ptr>\20GrBlendFragmentProcessor::Make<\28SkBlendMode\2913>\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +1137:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +1138:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\20const*\2c\20char\20const*\29\20const +1139:std::__2::shared_ptr::operator=\5babi:ne180100\5d\28std::__2::shared_ptr\20const&\29 +1140:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::AddTrianglesWhenChopping\2c\20skgpu::tess::DiscardFlatCurves>::writeTriangleStack\28skgpu::tess::MiddleOutPolygonTriangulator::PoppedTriangleStack&&\29 +1141:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +1142:std::__2::basic_ios>::setstate\5babi:nn180100\5d\28unsigned\20int\29 +1143:std::__2::__tuple_impl\2c\20GrSurfaceProxyView\2c\20sk_sp>::~__tuple_impl\28\29 +1144:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator>=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29\20\28.6325\29 +1145:skif::RoundOut\28SkRect\29 +1146:skia_private::TArray::push_back\28SkSL::SwitchCase\20const*\20const&\29 +1147:skia_private::TArray::push_back_n\28int\2c\20SkPoint\20const*\29 +1148:skia::textlayout::Run::placeholderStyle\28\29\20const +1149:skgpu::skgpu_init_static_unique_key_once\28SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*\29 +1150:skgpu::ganesh::\28anonymous\20namespace\29::update_degenerate_test\28skgpu::ganesh::\28anonymous\20namespace\29::DegenerateTestData*\2c\20SkPoint\20const&\29 +1151:skgpu::VertexWriter&\20skgpu::operator<<\28skgpu::VertexWriter&\2c\20skgpu::VertexColor\20const&\29 +1152:skgpu::ResourceKey::ResourceKey\28\29 +1153:skcms_TransferFunction_getType +1154:sk_sp::~sk_sp\28\29 +1155:sk_sp::reset\28GrThreadSafeCache::VertexData*\29 +1156:scalbn +1157:rowcol3\28float\20const*\2c\20float\20const*\29 +1158:ps_parser_skip_spaces +1159:is_joiner\28hb_glyph_info_t\20const&\29 +1160:impeller::Matrix::IsInvertible\28\29\20const +1161:hb_paint_funcs_t::push_translate\28void*\2c\20float\2c\20float\29 +1162:hb_lazy_loader_t\2c\20hb_face_t\2c\2022u\2c\20hb_blob_t>::get\28\29\20const +1163:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\2c\20hb_pair_t>>::operator--\28int\29 +1164:hb_aat_map_t::range_flags_t*\20hb_vector_t::push\28hb_aat_map_t::range_flags_t&&\29 +1165:get_gsubgpos_table\28hb_face_t*\2c\20unsigned\20int\29 +1166:flutter::DisplayListMatrixClipState::adjustCullRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1167:flutter::DisplayListBuilder::ClipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1168:emscripten_longjmp +1169:cff2_path_procs_extents_t::line\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\2c\20CFF::point_t\20const&\29 +1170:cff2_path_param_t::line_to\28CFF::point_t\20const&\29 +1171:cff1_path_procs_extents_t::line\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\29 +1172:cff1_path_param_t::line_to\28CFF::point_t\20const&\29 +1173:cf2_stack_pushInt +1174:cf2_buf_readByte +1175:bool\20hb_bsearch_impl\28unsigned\20int*\2c\20unsigned\20int\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29 +1176:_hb_draw_funcs_set_preamble\28hb_draw_funcs_t*\2c\20bool\2c\20void**\2c\20void\20\28**\29\28void*\29\29 +1177:\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1178:SkWriter32::write\28void\20const*\2c\20unsigned\20long\29 +1179:SkWStream::writeDecAsText\28int\29 +1180:SkTDStorage::append\28void\20const*\2c\20int\29 +1181:SkSurface_Base::refCachedImage\28\29 +1182:SkStrikeSpec::SkStrikeSpec\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +1183:SkSL::compile_and_shrink\28SkSL::Compiler*\2c\20SkSL::ProgramKind\2c\20SkSL::ModuleType\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::Module\20const*\29 +1184:SkSL::RP::Builder::lastInstructionOnAnyStack\28int\29 +1185:SkSL::ProgramUsage::get\28SkSL::Variable\20const&\29\20const +1186:SkSL::Parser::expectIdentifier\28SkSL::Token*\29 +1187:SkSL::Parser::AutoDepth::increase\28\29 +1188:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29::$_3::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +1189:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29::$_2::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +1190:SkSL::GLSLCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +1191:SkSL::GLSLCodeGenerator::finishLine\28\29 +1192:SkSL::ConstructorSplat::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1193:SkSL::ConstructorScalarCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1194:SkRuntimeEffect::Uniform::sizeInBytes\28\29\20const +1195:SkRegion::setRegion\28SkRegion\20const&\29 +1196:SkRegion::SkRegion\28SkIRect\20const&\29 +1197:SkRect::Bounds\28SkSpan\29 +1198:SkRasterPipeline::run\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +1199:SkRasterPipeline::appendTransferFunction\28skcms_TransferFunction\20const&\29 +1200:SkRRect::checkCornerContainment\28float\2c\20float\29\20const +1201:SkPointPriv::DistanceToLineSegmentBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +1202:SkPoint::setLength\28float\29 +1203:SkPathRef::isFinite\28\29\20const +1204:SkPathPriv::Raw\28SkPath\20const&\29 +1205:SkPathPriv::AllPointsEq\28SkSpan\29 +1206:SkPath::lineTo\28float\2c\20float\29 +1207:SkPath::isRect\28SkRect*\2c\20bool*\2c\20SkPathDirection*\29\20const +1208:SkPath::getLastPt\28\29\20const +1209:SkOpCoincidence::release\28SkCoincidentSpans*\2c\20SkCoincidentSpans*\29 +1210:SkJSONWriter::appendCString\28char\20const*\2c\20char\20const*\29 +1211:SkIntersections::hasT\28double\29\20const +1212:SkImages::RasterFromBitmap\28SkBitmap\20const&\29 +1213:SkImageInfo::computeByteSize\28unsigned\20long\29\20const +1214:SkImageFilter_Base::SkImageFilter_Base\28sk_sp\20const*\2c\20int\2c\20std::__2::optional\29 +1215:SkIRect::offset\28int\2c\20int\29 +1216:SkDLine::ptAtT\28double\29\20const +1217:SkColorSpace::Equals\28SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +1218:SkCanvas::~SkCanvas\28\29 +1219:SkCanvas::restoreToCount\28int\29 +1220:SkCachedData::unref\28\29\20const +1221:SkAutoSMalloc<1024ul>::~SkAutoSMalloc\28\29 +1222:SkArenaAlloc::SkArenaAlloc\28unsigned\20long\29 +1223:SkAAClipBlitterWrapper::SkAAClipBlitterWrapper\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1224:OT::MVAR::get_var\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29\20const +1225:OT::CmapSubtable::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +1226:MaskAdditiveBlitter::getRow\28int\29 +1227:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20GrCaps\20const&\2c\20float\20const*\29 +1228:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\29 +1229:GrTessellationShader::MakeProgram\28GrTessellationShader::ProgramArgs\20const&\2c\20GrTessellationShader\20const*\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +1230:GrScissorState::enabled\28\29\20const +1231:GrRecordingContextPriv::recordTimeAllocator\28\29 +1232:GrQuad::bounds\28\29\20const +1233:GrProxyProvider::createProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\29 +1234:GrPixmapBase::operator=\28GrPixmapBase&&\29 +1235:GrOpFlushState::detachAppliedClip\28\29 +1236:GrGLGpu::disableWindowRectangles\28\29 +1237:GrGLGpu::bindFramebuffer\28unsigned\20int\2c\20unsigned\20int\29 +1238:GrGLFormatFromGLEnum\28unsigned\20int\29 +1239:GrFragmentProcessor::~GrFragmentProcessor\28\29 +1240:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29 +1241:GrBackendTexture::getBackendFormat\28\29\20const +1242:CFF::interp_env_t::fetch_op\28\29 +1243:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::setIndices\28\29 +1244:AlmostEqualUlps\28double\2c\20double\29 +1245:void\20sktext::gpu::fill3D\28SkZip\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28float\2c\20float\29::operator\28\29\28float\2c\20float\29\20const +1246:tt_face_lookup_table +1247:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1248:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1249:std::__2::moneypunct::negative_sign\5babi:nn180100\5d\28\29\20const +1250:std::__2::moneypunct::neg_format\5babi:nn180100\5d\28\29\20const +1251:std::__2::moneypunct::frac_digits\5babi:nn180100\5d\28\29\20const +1252:std::__2::moneypunct::do_pos_format\28\29\20const +1253:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20std::__2::random_access_iterator_tag\29 +1254:std::__2::function::operator\28\29\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\20const +1255:std::__2::enable_if\2c\20impeller::TRect>::type\20impeller::TRect::RoundOut\28impeller::TRect\20const&\29 +1256:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +1257:std::__2::char_traits::copy\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20unsigned\20long\29 +1258:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1259:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1260:std::__2::basic_string\2c\20std::__2::allocator>::__set_size\5babi:nn180100\5d\28unsigned\20long\29 +1261:std::__2::allocator>::allocate\5babi:ne180100\5d\28unsigned\20long\29 +1262:std::__2::__split_buffer&>::~__split_buffer\28\29 +1263:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +1264:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +1265:std::__2::__itoa::__append2\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +1266:std::__2::__exception_guard_exceptions>::__destroy_vector>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +1267:skvx::Vec<4\2c\20unsigned\20int>\20\28anonymous\20namespace\29::shift_right>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20int\29 +1268:sktext::gpu::BagOfBytes::~BagOfBytes\28\29 +1269:skif::\28anonymous\20namespace\29::is_nearly_integer_translation\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29 +1270:skif::FilterResult::FilterResult\28sk_sp\2c\20skif::LayerSpace\20const&\29 +1271:skia_private::TArray\2c\20true>::destroyAll\28\29 +1272:skia_private::TArray::push_back\28float\20const&\29 +1273:skia_private::TArray::push_back\28SkSL::Variable*&&\29 +1274:skia_png_gamma_correct +1275:skia_png_gamma_8bit_correct +1276:skia::textlayout::TextStyle::operator=\28skia::textlayout::TextStyle\20const&\29 +1277:skia::textlayout::Run::positionX\28unsigned\20long\29\20const +1278:skia::textlayout::ParagraphImpl::codeUnitHasProperty\28unsigned\20long\2c\20SkUnicode::CodeUnitFlags\29\20const +1279:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20std::__2::basic_string_view>\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1280:skgpu::UniqueKey::UniqueKey\28skgpu::UniqueKey\20const&\29 +1281:sk_sp::~sk_sp\28\29 +1282:sk_sp::operator=\28sk_sp&&\29 +1283:sk_sp::reset\28GrSurfaceProxy*\29 +1284:sk_sp::operator=\28sk_sp&&\29 +1285:sk_realloc_throw\28void*\2c\20unsigned\20long\29 +1286:scalar_to_alpha\28float\29 +1287:png_read_buffer +1288:path_lineTo +1289:interp_cubic_coords\28double\20const*\2c\20double\29 +1290:int\20_hb_cmp_method>\28void\20const*\2c\20void\20const*\29 +1291:impeller::TRect::TransformAndClipBounds\28impeller::Matrix\20const&\29\20const +1292:impeller::RoundRect::IsRect\28\29\20const +1293:impeller::RoundRect::IsOval\28\29\20const +1294:hb_paint_funcs_t::push_transform\28void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +1295:hb_lazy_loader_t\2c\20hb_face_t\2c\2025u\2c\20OT::GSUB_accelerator_t>::get_stored\28\29\20const +1296:hb_font_t::scale_glyph_extents\28hb_glyph_extents_t*\29 +1297:hb_font_t::parent_scale_y_distance\28int\29 +1298:hb_font_t::parent_scale_x_distance\28int\29 +1299:hb_face_t::get_upem\28\29\20const +1300:flutter::DlRuntimeEffectColorSource::type\28\29\20const +1301:flutter::DlGradientColorSourceBase::store_color_stops\28void*\2c\20flutter::DlColor\20const*\2c\20float\20const*\29 +1302:double_to_clamped_scalar\28double\29 +1303:conic_eval_numerator\28double\20const*\2c\20float\2c\20double\29 +1304:cff_index_init +1305:bool\20std::__2::operator!=\5babi:nn180100\5d\28std::__2::__wrap_iter\20const&\2c\20std::__2::__wrap_iter\20const&\29 +1306:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\29\20const +1307:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1308:_emscripten_yield +1309:__isspace +1310:\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16::Compact\28skvx::Vec<4\2c\20float>\20const&\29 +1311:\28anonymous\20namespace\29::ColorTypeFilter_F16F16::Compact\28skvx::Vec<4\2c\20float>\20const&\29 +1312:\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16::Compact\28skvx::Vec<4\2c\20float>\20const&\29 +1313:\28anonymous\20namespace\29::ColorTypeFilter_8888::Compact\28skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +1314:\28anonymous\20namespace\29::ColorTypeFilter_16161616::Compact\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +1315:\28anonymous\20namespace\29::ColorTypeFilter_1010102::Compact\28unsigned\20long\20long\29 +1316:TT_MulFix14 +1317:SkWriter32::writeBool\28bool\29 +1318:SkTDStorage::append\28int\29 +1319:SkTDPQueue::setIndex\28int\29 +1320:SkTDArray::push_back\28void*\20const&\29 +1321:SkTCopyOnFirstWrite::writable\28\29 +1322:SkSpotShadowTessellator::addToClip\28SkPoint\20const&\29 +1323:SkShaderUtils::GLSLPrettyPrint::newline\28\29 +1324:SkShaderUtils::GLSLPrettyPrint::hasToken\28char\20const*\29 +1325:SkSL::Type::MakeTextureType\28char\20const*\2c\20SpvDim_\2c\20bool\2c\20bool\2c\20bool\2c\20SkSL::Type::TextureAccess\29 +1326:SkSL::Type::MakeSpecialType\28char\20const*\2c\20char\20const*\2c\20SkSL::Type::TypeKind\29 +1327:SkSL::Swizzle::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29 +1328:SkSL::RP::Builder::push_slots_or_immutable\28SkSL::RP::SlotRange\2c\20SkSL::RP::BuilderOp\29 +1329:SkSL::RP::Builder::push_duplicates\28int\29 +1330:SkSL::RP::Builder::push_constant_f\28float\29 +1331:SkSL::RP::Builder::push_clone\28int\2c\20int\29 +1332:SkSL::Parser::statementOrNop\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +1333:SkSL::Literal::Make\28SkSL::Position\2c\20double\2c\20SkSL::Type\20const*\29 +1334:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mul\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +1335:SkSL::InlineCandidateAnalyzer::visitStatement\28std::__2::unique_ptr>*\2c\20bool\29 +1336:SkSL::GLSLCodeGenerator::writeModifiers\28SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20bool\29 +1337:SkSL::Expression::isIntLiteral\28\29\20const +1338:SkSL::ConstructorCompound::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +1339:SkSL::ConstantFolder::IsConstantSplat\28SkSL::Expression\20const&\2c\20double\29 +1340:SkSL::Analysis::IsSameExpressionTree\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +1341:SkSL::AliasType::resolve\28\29\20const +1342:SkResourceCache::Find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +1343:SkResourceCache::Add\28SkResourceCache::Rec*\2c\20void*\29 +1344:SkRectPriv::HalfWidth\28SkRect\20const&\29 +1345:SkRect::round\28SkIRect*\29\20const +1346:SkRasterPipeline_<256ul>::SkRasterPipeline_\28\29 +1347:SkRasterPipeline::appendConstantColor\28SkArenaAlloc*\2c\20float\20const*\29 +1348:SkRasterClip::quickContains\28SkIRect\20const&\29\20const +1349:SkRRect::setRect\28SkRect\20const&\29 +1350:SkPathWriter::isClosed\28\29\20const +1351:SkPathStroker::addDegenerateLine\28SkQuadConstruct\20const*\29 +1352:SkPathRef::growForVerb\28SkPathVerb\2c\20float\29 +1353:SkPathBuilder::moveTo\28float\2c\20float\29 +1354:SkPathBuilder::ensureMove\28\29 +1355:SkPath::getGenerationID\28\29\20const +1356:SkOpSegment::existing\28double\2c\20SkOpSegment\20const*\29\20const +1357:SkOpSegment::addT\28double\29 +1358:SkOpSegment::addCurveTo\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkPathWriter*\29\20const +1359:SkOpPtT::find\28SkOpSegment\20const*\29\20const +1360:SkOpContourBuilder::flush\28\29 +1361:SkNVRefCnt::unref\28\29\20const +1362:SkNVRefCnt::unref\28\29\20const +1363:SkMipmap::getLevel\28int\2c\20SkMipmap::Level*\29\20const +1364:SkImageInfoIsValid\28SkImageInfo\20const&\29 +1365:SkImageInfo::SkImageInfo\28SkImageInfo\20const&\29 +1366:SkImageFilter_Base::flatten\28SkWriteBuffer&\29\20const +1367:SkGlyph::imageSize\28\29\20const +1368:SkDrawTiler::~SkDrawTiler\28\29 +1369:SkDrawTiler::next\28\29 +1370:SkDrawTiler::SkDrawTiler\28SkBitmapDevice*\2c\20SkRect\20const*\29 +1371:SkConvertPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +1372:SkColorSpaceXformSteps::apply\28SkRasterPipeline*\29\20const +1373:SkColorSpace::MakeRGB\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +1374:SkColorFilterBase::affectsTransparentBlack\28\29\20const +1375:SkCanvas::saveLayer\28SkRect\20const*\2c\20SkPaint\20const*\29 +1376:SkCanvas::predrawNotify\28bool\29 +1377:SkCanvas::getTotalMatrix\28\29\20const +1378:SkCanvas::drawImage\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +1379:SkCanvas::aboutToDraw\28SkPaint\20const&\2c\20SkRect\20const*\2c\20SkEnumBitMask\29 +1380:SkBlurMaskFilterImpl::computeXformedSigma\28SkMatrix\20const&\29\20const +1381:SkBlockAllocator::SkBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\2c\20unsigned\20long\29 +1382:SkBlockAllocator::BlockIter::begin\28\29\20const +1383:SkBitmap::reset\28\29 +1384:SkBitmap::installPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29 +1385:SkBitmap::installPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\29 +1386:OT::VarSizedBinSearchArrayOf>::operator\5b\5d\28int\29\20const +1387:OT::Layout::GSUB_impl::SubstLookupSubTable\20const&\20OT::Lookup::get_subtable\28unsigned\20int\29\20const +1388:OT::Layout::GSUB_impl::SubstLookupSubTable*\20hb_serialize_context_t::push\28\29 +1389:OT::ArrayOf\2c\20true>\2c\20OT::IntType>*\20hb_serialize_context_t::extend_size\2c\20true>\2c\20OT::IntType>>\28OT::ArrayOf\2c\20true>\2c\20OT::IntType>*\2c\20unsigned\20long\2c\20bool\29 +1390:GrTriangulator::makeConnectingEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\2c\20int\29 +1391:GrTriangulator::appendPointToContour\28SkPoint\20const&\2c\20GrTriangulator::VertexList*\29\20const +1392:GrSurface::ComputeSize\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20bool\29 +1393:GrStyledShape::writeUnstyledKey\28unsigned\20int*\29\20const +1394:GrStyledShape::unstyledKeySize\28\29\20const +1395:GrStyle::operator=\28GrStyle\20const&\29 +1396:GrStyle::GrStyle\28SkStrokeRec\20const&\2c\20sk_sp\29 +1397:GrStyle::GrStyle\28SkPaint\20const&\29 +1398:GrSimpleMesh::setIndexed\28sk_sp\2c\20int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20GrPrimitiveRestart\2c\20sk_sp\2c\20int\29 +1399:GrRecordingContextPriv::makeSFCWithFallback\28GrImageInfo\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1400:GrRecordingContextPriv::makeSC\28GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +1401:GrQuad::MakeFromSkQuad\28SkPoint\20const*\2c\20SkMatrix\20const&\29 +1402:GrProcessorSet::visitProxies\28std::__2::function\20const&\29\20const +1403:GrProcessorSet::finalize\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrCaps\20const&\2c\20GrClampType\2c\20SkRGBA4f<\28SkAlphaType\292>*\29 +1404:GrGpuResource::gpuMemorySize\28\29\20const +1405:GrGpuBuffer::updateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +1406:GrGetColorTypeDesc\28GrColorType\29 +1407:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\29 +1408:GrGLSLShaderBuilder::~GrGLSLShaderBuilder\28\29 +1409:GrGLSLShaderBuilder::declAppend\28GrShaderVar\20const&\29 +1410:GrGLGpu::flushScissorTest\28GrScissorTest\29 +1411:GrGLGpu::didDrawTo\28GrRenderTarget*\29 +1412:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int*\29 +1413:GrGLCaps::maxRenderTargetSampleCount\28GrGLFormat\29\20const +1414:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\29 +1415:GrDefaultGeoProcFactory::Make\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +1416:GrCaps::validateSurfaceParams\28SkISize\20const&\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20GrTextureType\29\20const +1417:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29::$_0::operator\28\29\28SkIRect\2c\20SkIRect\29\20const +1418:GrBackendTexture::~GrBackendTexture\28\29 +1419:GrAppliedClip::GrAppliedClip\28GrAppliedClip&&\29 +1420:GrAAConvexTessellator::Ring::origEdgeID\28int\29\20const +1421:FT_GlyphLoader_CheckPoints +1422:FT_Get_Sfnt_Table +1423:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::end\28\29\20const +1424:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::Item::operator++\28\29 +1425:AAT::StateTable::EntryData>::get_entry\28int\2c\20unsigned\20int\29\20const +1426:AAT::StateTable::EntryData>::get_entry\28int\2c\20unsigned\20int\29\20const +1427:AAT::Lookup>::get_class\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +1428:AAT::InsertionSubtable::is_actionable\28AAT::Entry::EntryData>\20const&\29\20const +1429:void\20std::__2::reverse\5babi:nn180100\5d\28char*\2c\20char*\29 +1430:void\20std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__rehash\28unsigned\20long\29 +1431:void\20SkSafeUnref\28GrThreadSafeCache::VertexData*\29 +1432:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +1433:std::__2::vector>\2c\20std::__2::allocator>>>::push_back\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +1434:std::__2::vector\2c\20std::__2::allocator>>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +1435:std::__2::vector\2c\20std::__2::allocator>>::push_back\5babi:ne180100\5d\28impeller::TRect\20const&\29 +1436:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +1437:std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20std::__2::default_delete\2c\20std::__2::allocator>>>::~unique_ptr\5babi:ne180100\5d\28\29 +1438:std::__2::unique_ptr\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +1439:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1440:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::SymbolTable*\29 +1441:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1442:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1443:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ios_base&\2c\20wchar_t\29 +1444:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ios_base&\2c\20char\29 +1445:std::__2::hash::operator\28\29\5babi:ne180100\5d\28GrFragmentProcessor\20const*\29\20const +1446:std::__2::char_traits::to_int_type\5babi:nn180100\5d\28char\29 +1447:std::__2::char_traits::eq_int_type\5babi:nn180100\5d\28int\2c\20int\29 +1448:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +1449:std::__2::basic_string\2c\20std::__2::allocator>::append\28char\20const*\2c\20unsigned\20long\29 +1450:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1451:std::__2::basic_string\2c\20std::__2::allocator>::__get_long_cap\5babi:nn180100\5d\28\29\20const +1452:std::__2::__split_buffer\2c\20std::__2::allocator>&>::~__split_buffer\28\29 +1453:std::__2::__split_buffer\2c\20std::__2::allocator>&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator>&\29 +1454:skvx::Vec<4\2c\20unsigned\20short>\20\28anonymous\20namespace\29::add_121>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +1455:skvx::Vec<4\2c\20unsigned\20int>\20\28anonymous\20namespace\29::add_121>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +1456:skvx::Vec<4\2c\20float>\20unchecked_mix<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1457:skvx::Vec<4\2c\20float>\20skvx::operator/<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1458:skvx::Vec<4\2c\20float>\20skvx::min<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1459:skvx::Vec<4\2c\20float>&\20skvx::operator*=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1460:skvx::Vec<2\2c\20float>\20skvx::naive_if_then_else<2\2c\20float>\28skvx::Vec<2\2c\20skvx::Mask::type>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +1461:skip_spaces +1462:skif::FilterResult::resolve\28skif::Context\20const&\2c\20skif::LayerSpace\2c\20bool\29\20const +1463:skia_private::THashMap::find\28SkSL::Variable\20const*\20const&\29\20const +1464:skia_private::TArray::TArray\28skia_private::TArray&&\29 +1465:skia_private::TArray::TArray\28skia_private::TArray&&\29 +1466:skia_private::TArray\2c\20true>::preallocateNewData\28int\2c\20double\29 +1467:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +1468:skia_private::TArray::checkRealloc\28int\2c\20double\29 +1469:skia_private::TArray::push_back\28SkPathVerb&&\29 +1470:skia_private::FixedArray<4\2c\20signed\20char>::FixedArray\28std::initializer_list\29 +1471:skia_private::AutoTMalloc::AutoTMalloc\28unsigned\20long\29 +1472:skia_private::AutoSTMalloc<4ul\2c\20int\2c\20void>::AutoSTMalloc\28unsigned\20long\29 +1473:skia_png_safecat +1474:skia_png_malloc +1475:skia_png_colorspace_sync +1476:skia_png_chunk_warning +1477:skia::textlayout::TextWrapper::TextStretch::extend\28skia::textlayout::TextWrapper::TextStretch&\29 +1478:skia::textlayout::TextLine::iterateThroughSingleRunByStyles\28skia::textlayout::TextLine::TextAdjustment\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::StyleType\2c\20std::__2::function\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\20const&\29\20const +1479:skia::textlayout::ParagraphStyle::~ParagraphStyle\28\29 +1480:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29 +1481:skgpu::ganesh::SurfaceFillContext::fillWithFP\28std::__2::unique_ptr>\29 +1482:skgpu::ganesh::SurfaceDrawContext::drawRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const*\29 +1483:skgpu::ganesh::OpsTask::OpChain::List::popHead\28\29 +1484:skgpu::SkSLToGLSL\28SkSL::ShaderCaps\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::NativeShader*\2c\20SkSL::ProgramInterface*\2c\20skgpu::ShaderErrorHandler*\29 +1485:skgpu::ResourceKey::reset\28\29 +1486:skcms_TransferFunction_eval +1487:sk_sp::reset\28SkString::Rec*\29 +1488:sk_doubles_nearly_equal_ulps\28double\2c\20double\2c\20unsigned\20char\29 +1489:path_conicTo +1490:operator!=\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +1491:operator!=\28SkIRect\20const&\2c\20SkIRect\20const&\29 +1492:non-virtual\20thunk\20to\20GrOpFlushState::allocator\28\29 +1493:is_halant\28hb_glyph_info_t\20const&\29 +1494:impeller::\28anonymous\20namespace\29::RoundSuperellipseBuilder::AddQuadrant\28impeller::RoundSuperellipseParam::Quadrant\20const&\2c\20bool\2c\20impeller::TPoint\29 +1495:impeller::Matrix::Invert\28\29\20const +1496:hb_zip_iter_t\2c\20hb_array_t>::__next__\28\29 +1497:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +1498:hb_serialize_context_t::pop_pack\28bool\29 +1499:hb_lazy_loader_t\2c\20hb_face_t\2c\2011u\2c\20hb_blob_t>::get\28\29\20const +1500:hb_lazy_loader_t\2c\20hb_face_t\2c\204u\2c\20hb_blob_t>::get\28\29\20const +1501:hb_lazy_loader_t\2c\20hb_face_t\2c\2024u\2c\20OT::GDEF_accelerator_t>::get_stored\28\29\20const +1502:hb_glyf_scratch_t::~hb_glyf_scratch_t\28\29 +1503:hb_extents_t::add_point\28float\2c\20float\29 +1504:hb_buffer_t::reverse_range\28unsigned\20int\2c\20unsigned\20int\29 +1505:hb_buffer_t::merge_out_clusters\28unsigned\20int\2c\20unsigned\20int\29 +1506:hb_buffer_destroy +1507:hb_buffer_append +1508:hb_bit_page_t::get\28unsigned\20int\29\20const +1509:flutter::DlColor::argb\28\29\20const +1510:flutter::DisplayListBuilder::Restore\28\29 +1511:flutter::DisplayListBuilder::ClipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1512:flutter::DisplayListBuilder::AccumulateOpBounds\28impeller::TRect&\2c\20flutter::DisplayListAttributeFlags\29 +1513:cos +1514:compare_edges\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29 +1515:cleanup_program\28GrGLGpu*\2c\20unsigned\20int\2c\20SkTDArray\20const&\29 +1516:cff_index_done +1517:cf2_glyphpath_curveTo +1518:bool\20hb_buffer_t::replace_glyphs\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\20const*\29 +1519:auto\20std::__2::__unwrap_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +1520:atan2f +1521:afm_parser_read_vals +1522:afm_parser_next_key +1523:__memset +1524:__lshrti3 +1525:__letf2 +1526:\28anonymous\20namespace\29::skhb_position\28float\29 +1527:SkWriter32::reservePad\28unsigned\20long\29 +1528:SkTSpan::removeBounded\28SkTSpan\20const*\29 +1529:SkTSpan::initBounds\28SkTCurve\20const&\29 +1530:SkTSpan::addBounded\28SkTSpan*\2c\20SkArenaAlloc*\29 +1531:SkTSect::tail\28\29 +1532:SkTDStorage::reset\28\29 +1533:SkString::printf\28char\20const*\2c\20...\29 +1534:SkString::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +1535:SkShaders::Color\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\29 +1536:SkShader::makeWithLocalMatrix\28SkMatrix\20const&\29\20const +1537:SkSamplingOptions::operator==\28SkSamplingOptions\20const&\29\20const +1538:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_5::operator\28\29\28int\2c\20int\29\20const +1539:SkSL::is_constant_value\28SkSL::Expression\20const&\2c\20double\29 +1540:SkSL::\28anonymous\20namespace\29::ReturnsOnAllPathsVisitor::visitStatement\28SkSL::Statement\20const&\29 +1541:SkSL::Type::MakeScalarType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type::NumberKind\2c\20signed\20char\2c\20signed\20char\29 +1542:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Context\20const&\2c\20SkSL::Symbol*\29 +1543:SkSL::RP::Generator::push\28SkSL::RP::LValue&\29 +1544:SkSL::PipelineStage::PipelineStageCodeGenerator::writeLine\28std::__2::basic_string_view>\29 +1545:SkSL::Parser::statement\28bool\29 +1546:SkSL::ModifierFlags::description\28\29\20const +1547:SkSL::Layout::paddedDescription\28\29\20const +1548:SkSL::ConstructorCompoundCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1549:SkSL::Analysis::UpdateVariableRefKind\28SkSL::Expression*\2c\20SkSL::VariableRefKind\2c\20SkSL::ErrorReporter*\29 +1550:SkRegion::Iterator::next\28\29 +1551:SkRect::makeSorted\28\29\20const +1552:SkRect::intersects\28SkRect\20const&\29\20const +1553:SkRect::center\28\29\20const +1554:SkReadBuffer::readInt\28\29 +1555:SkReadBuffer::readBool\28\29 +1556:SkRasterPipeline_<256ul>::~SkRasterPipeline_\28\29 +1557:SkRasterClip::updateCacheAndReturnNonEmpty\28bool\29 +1558:SkRasterClip::setRect\28SkIRect\20const&\29 +1559:SkRasterClip::quickReject\28SkIRect\20const&\29\20const +1560:SkRRect::transform\28SkMatrix\20const&\29\20const +1561:SkPixmap::addr\28int\2c\20int\29\20const +1562:SkPathIter::next\28\29 +1563:SkPathBuilder::reset\28\29 +1564:SkPath::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1565:SkPath::Polygon\28SkSpan\2c\20bool\2c\20SkPathFillType\2c\20bool\29 +1566:SkPaint*\20SkRecordCanvas::copy\28SkPaint\20const*\29 +1567:SkOpSegment::ptAtT\28double\29\20const +1568:SkOpSegment::dPtAtT\28double\29\20const +1569:SkNoPixelsDevice::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +1570:SkMatrixPriv::MapRect\28SkM44\20const&\2c\20SkRect\20const&\29 +1571:SkMatrix::mapRadius\28float\29\20const +1572:SkMask::getAddr8\28int\2c\20int\29\20const +1573:SkIntersectionHelper::segmentType\28\29\20const +1574:SkIRect::outset\28int\2c\20int\29 +1575:SkGoodHash::operator\28\29\28SkString\20const&\29\20const +1576:SkGlyph::rect\28\29\20const +1577:SkFont::SkFont\28sk_sp\2c\20float\29 +1578:SkEmptyFontStyleSet::createTypeface\28int\29 +1579:SkDynamicMemoryWStream::write\28void\20const*\2c\20unsigned\20long\29 +1580:SkDescriptor::operator==\28SkDescriptor\20const&\29\20const +1581:SkDQuad::RootsValidT\28double\2c\20double\2c\20double\2c\20double*\29 +1582:SkColorFilter::makeComposed\28sk_sp\29\20const +1583:SkCanvas::restore\28\29 +1584:SkCanvas::drawImageRect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +1585:SkCanvas::AutoUpdateQRBounds::~AutoUpdateQRBounds\28\29 +1586:SkCachedData::ref\28\29\20const +1587:SkBulkGlyphMetrics::~SkBulkGlyphMetrics\28\29 +1588:SkBulkGlyphMetrics::SkBulkGlyphMetrics\28SkStrikeSpec\20const&\29 +1589:SkBitmap::setPixelRef\28sk_sp\2c\20int\2c\20int\29 +1590:SkAutoPixmapStorage::~SkAutoPixmapStorage\28\29 +1591:SkAlphaRuns::Break\28short*\2c\20unsigned\20char*\2c\20int\2c\20int\29 +1592:OT::ItemVariationStore::get_delta\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +1593:OT::GSUBGPOS::get_lookup\28unsigned\20int\29\20const +1594:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +1595:GrTriangulator::EdgeList::insert\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +1596:GrSurfaceProxyView::mipmapped\28\29\20const +1597:GrSurfaceProxy::backingStoreBoundsRect\28\29\20const +1598:GrStyledShape::knownToBeConvex\28\29\20const +1599:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +1600:GrSimpleMeshDrawOpHelperWithStencil::isCompatible\28GrSimpleMeshDrawOpHelperWithStencil\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +1601:GrShape::asPath\28bool\29\20const +1602:GrScissorState::set\28SkIRect\20const&\29 +1603:GrRenderTask::~GrRenderTask\28\29 +1604:GrPixmap::Allocate\28GrImageInfo\20const&\29 +1605:GrImageInfo::makeColorType\28GrColorType\29\20const +1606:GrGpuResource::CacheAccess::release\28\29 +1607:GrGpuBuffer::map\28\29 +1608:GrGpu::didWriteToSurface\28GrSurface*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const*\2c\20unsigned\20int\29\20const +1609:GrGeometryProcessor::TextureSampler::TextureSampler\28\29 +1610:GrGeometryProcessor::AttributeSet::begin\28\29\20const +1611:GrGeometryProcessor::AttributeSet::Iter::operator++\28\29 +1612:GrGLSLShaderBuilder::emitFunction\28SkSLType\2c\20char\20const*\2c\20SkSpan\2c\20char\20const*\29 +1613:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20int\2c\20int\2c\20int\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +1614:GrConvertPixels\28GrPixmap\20const&\2c\20GrCPixmap\20const&\2c\20bool\29 +1615:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +1616:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +1617:GrAtlasManager::getAtlas\28skgpu::MaskFormat\29\20const +1618:FT_Get_Char_Index +1619:1406 +1620:write_buf +1621:wrapper_cmp +1622:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d\2c\20std::__2::tuple\2c\20GrFragmentProcessor\20const*\2c\20GrGeometryProcessor::ProgramImpl::TransformInfo\2c\200ul\2c\201ul>\28std::__2::tuple&\2c\20std::__2::tuple&&\2c\20std::__2::__tuple_types\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +1623:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\29 +1624:void\20AAT::Lookup>::collect_glyphs_filtered\28hb_bit_set_t&\2c\20unsigned\20int\2c\20hb_bit_page_t\20const&\29\20const +1625:void\20AAT::ClassTable>::collect_glyphs_filtered\28hb_bit_set_t&\2c\20unsigned\20int\2c\20hb_bit_page_t\20const&\29\20const +1626:void\20AAT::ClassTable>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +1627:toupper +1628:tanf +1629:store\28unsigned\20char*\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20int\29 +1630:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +1631:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +1632:std::__2::unique_ptr::~unique_ptr\5babi:ne180100\5d\28\29 +1633:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skia::textlayout::Run*\29 +1634:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1635:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1636:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1637:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28SkPath\20const&\29 +1638:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1639:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1640:std::__2::istreambuf_iterator>::istreambuf_iterator\5babi:nn180100\5d\28std::__2::basic_istream>&\29 +1641:std::__2::istreambuf_iterator>::istreambuf_iterator\5babi:nn180100\5d\28\29 +1642:std::__2::enable_if::value\2c\20sk_sp>::type\20GrResourceProvider::findByUniqueKey\28skgpu::UniqueKey\20const&\29 +1643:std::__2::deque>::end\5babi:ne180100\5d\28\29 +1644:std::__2::ctype::narrow\5babi:nn180100\5d\28wchar_t\2c\20char\29\20const +1645:std::__2::ctype::narrow\5babi:nn180100\5d\28char\2c\20char\29\20const +1646:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1647:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20char\29 +1648:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +1649:std::__2::basic_streambuf>::sputn\5babi:nn180100\5d\28char\20const*\2c\20long\29 +1650:std::__2::basic_streambuf>::setg\5babi:nn180100\5d\28char*\2c\20char*\2c\20char*\29 +1651:std::__2::basic_ostream>::sentry::operator\20bool\5babi:nn180100\5d\28\29\20const +1652:std::__2::__tree\2c\20std::__2::__map_value_compare\2c\20std::__2::less\2c\20true>\2c\20std::__2::allocator>>::destroy\28std::__2::__tree_node\2c\20void*>*\29 +1653:std::__2::__shared_ptr_pointer>::__on_zero_shared\28\29 +1654:std::__2::__num_get::__stage2_int_loop\28wchar_t\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20wchar_t\20const*\29 +1655:std::__2::__num_get::__stage2_int_loop\28char\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20char\20const*\29 +1656:std::__2::__next_prime\28unsigned\20long\29 +1657:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1658:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1659:src_p\28unsigned\20char\2c\20unsigned\20char\29 +1660:sort_r_swap\28char*\2c\20char*\2c\20unsigned\20long\29 +1661:skvx::Vec<4\2c\20float>\20skvx::operator+<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +1662:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20int\2c\20void>\28int\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.7623\29 +1663:sktext::SkStrikePromise::SkStrikePromise\28sktext::SkStrikePromise&&\29 +1664:skif::LayerSpace::mapRect\28skif::LayerSpace\20const&\29\20const +1665:skif::LayerSpace::relevantSubset\28skif::LayerSpace\2c\20SkTileMode\29\20const +1666:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::resize\28int\29 +1667:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Hash\28std::__2::basic_string_view>\20const&\29 +1668:skia_private::THashTable::AdaptedTraits>::Hash\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +1669:skia_private::THashSet::contains\28SkSL::Variable\20const*\20const&\29\20const +1670:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +1671:skia_private::TArray\2c\20true>::~TArray\28\29 +1672:skia_private::TArray::push_back_raw\28int\29 +1673:skia_private::TArray::copy\28float\20const*\29 +1674:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +1675:skia_private::TArray::resize_back\28int\29 +1676:skia_private::AutoSTArray<4\2c\20float>::reset\28int\29 +1677:skia_png_free_data +1678:skia::textlayout::Run::Run\28skia::textlayout::ParagraphImpl*\2c\20SkShaper::RunHandler::RunInfo\20const&\2c\20unsigned\20long\2c\20float\2c\20bool\2c\20float\2c\20unsigned\20long\2c\20float\29 +1679:skia::textlayout::InternalLineMetrics::delta\28\29\20const +1680:skia::textlayout::Cluster::Cluster\28skia::textlayout::ParagraphImpl*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkSpan\2c\20float\2c\20float\29 +1681:skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::chopAndWriteCubics\28skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20int\29 +1682:skgpu::ganesh::SurfaceDrawContext::fillRectToRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +1683:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::RawElement\20const&\29\20const +1684:skgpu::VertexWriter&\20skgpu::operator<<<4\2c\20SkPoint>\28skgpu::VertexWriter&\2c\20skgpu::VertexWriter::RepeatDesc<4\2c\20SkPoint>\20const&\29 +1685:skgpu::TAsyncReadResult::addCpuPlane\28sk_sp\2c\20unsigned\20long\29 +1686:skgpu::Swizzle::RGB1\28\29 +1687:skcpu::Draw::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29\20const +1688:sk_sp::reset\28SkMeshPriv::VB\20const*\29 +1689:sk_malloc_throw\28unsigned\20long\29 +1690:sbrk +1691:quick_div\28int\2c\20int\29 +1692:processPropertySeq\28UBiDi*\2c\20LevState*\2c\20unsigned\20char\2c\20int\2c\20int\29 +1693:memchr +1694:left\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1695:inversion\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::Comparator\20const&\29 +1696:interp_quad_coords\28double\20const*\2c\20double\29 +1697:impeller::Vector4::operator==\28impeller::Vector4\20const&\29\20const +1698:impeller::TRect::GetPositive\28\29\20const +1699:hb_serialize_context_t::object_t::fini\28\29 +1700:hb_sanitize_context_t::init\28hb_blob_t*\29 +1701:hb_ot_map_builder_t::add_feature\28hb_ot_map_feature_t\20const&\29 +1702:hb_buffer_t::ensure\28unsigned\20int\29 +1703:hb_blob_ptr_t::destroy\28\29 +1704:hb_bit_set_t::page_for\28unsigned\20int\2c\20bool\29 +1705:hairquad\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +1706:getenv +1707:fmt_u +1708:flutter::DlImage::Make\28SkImage\20const*\29 +1709:flutter::DlColor::toC\28float\29 +1710:flutter::DisplayListMatrixClipState::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1711:flutter::DisplayListBuilder::Translate\28float\2c\20float\29 +1712:flutter::DisplayListBuilder::Save\28\29 +1713:flutter::DisplayListBuilder::GetEffectiveColor\28flutter::DlPaint\20const&\2c\20flutter::DisplayListAttributeFlags\29 +1714:flutter::DisplayListBuilder::ClipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1715:flutter::AccumulationRect::accumulate\28impeller::TRect\29 +1716:float*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29 +1717:duplicate_pt\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1718:compute_quad_level\28SkPoint\20const*\29 +1719:compute_ULong_sum +1720:char*\20const&\20std::__2::max\5babi:nn180100\5d\28char*\20const&\2c\20char*\20const&\29 +1721:cff2_extents_param_t::update_bounds\28CFF::point_t\20const&\29 +1722:cf2_glyphpath_hintPoint +1723:cf2_arrstack_getPointer +1724:cbrtf +1725:can_add_curve\28SkPath::Verb\2c\20SkPoint*\29 +1726:call_hline_blitter\28SkBlitter*\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\29 +1727:bounds_t::update\28CFF::point_t\20const&\29 +1728:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\29\20const +1729:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1730:bool\20OT::OffsetTo\2c\20OT::Layout::GPOS_impl::CursivePosFormat1\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::CursivePosFormat1\20const*\29\20const +1731:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1732:af_shaper_get_cluster +1733:_hb_ot_metrics_get_position_common\28hb_font_t*\2c\20hb_ot_metrics_tag_t\2c\20int*\29 +1734:__tandf +1735:__floatunsitf +1736:__cxa_allocate_exception +1737:_ZZNK6sktext3gpu12VertexFiller14fillVertexDataEii6SkSpanIPKNS0_5GlyphEERK8SkRGBA4fIL11SkAlphaType2EERK8SkMatrix7SkIRectPvENK3$_0clIPA4_NS0_12Mask2DVertexEEEDaT_ +1738:\28anonymous\20namespace\29::subtract\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +1739:\28anonymous\20namespace\29::MeshOp::fixedFunctionFlags\28\29\20const +1740:\28anonymous\20namespace\29::DrawAtlasOpImpl::fixedFunctionFlags\28\29\20const +1741:Update_Max +1742:TT_Get_MM_Var +1743:Skwasm::createDlMatrixFrom3x3\28float\20const*\29 +1744:SkWriteBuffer::writeDataAsByteArray\28SkData\20const*\29 +1745:SkUTF::UTF8ToUTF16\28unsigned\20short*\2c\20int\2c\20char\20const*\2c\20unsigned\20long\29 +1746:SkTextBlob::RunRecord::textSize\28\29\20const +1747:SkTSpan::resetBounds\28SkTCurve\20const&\29 +1748:SkTSect::removeSpan\28SkTSpan*\29 +1749:SkTSect::BinarySearch\28SkTSect*\2c\20SkTSect*\2c\20SkIntersections*\29 +1750:SkTInternalLList::remove\28skgpu::Plot*\29 +1751:SkTInternalLList>\2c\20SkGoodHash\2c\20SkNoOpPurge>::Entry>::remove\28SkLRUCache>\2c\20SkGoodHash\2c\20SkNoOpPurge>::Entry*\29 +1752:SkTDArray::append\28\29 +1753:SkTConic::operator\5b\5d\28int\29\20const +1754:SkTBlockList::~SkTBlockList\28\29 +1755:SkStrokeRec::needToApply\28\29\20const +1756:SkStrokeRec::SkStrokeRec\28SkPaint\20const&\2c\20float\29 +1757:SkString::set\28char\20const*\2c\20unsigned\20long\29 +1758:SkString::SkString\28std::__2::basic_string_view>\29 +1759:SkStrikeSpec::findOrCreateStrike\28\29\20const +1760:SkStrike::digestFor\28skglyph::ActionType\2c\20SkPackedGlyphID\29 +1761:SkShaders::MatrixRec::applyForFragmentProcessor\28SkMatrix\20const&\29\20const +1762:SkScan::FillRect\28SkRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +1763:SkScalerContext_FreeType::setupSize\28\29 +1764:SkSL::type_is_valid_for_color\28SkSL::Type\20const&\29 +1765:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_4::operator\28\29\28int\29\20const +1766:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_3::operator\28\29\28int\29\20const +1767:SkSL::optimize_comparison\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20bool\20\28*\29\28double\2c\20double\29\29 +1768:SkSL::VariableReference::Make\28SkSL::Position\2c\20SkSL::Variable\20const*\2c\20SkSL::VariableRefKind\29 +1769:SkSL::Variable*\20SkSL::SymbolTable::add\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +1770:SkSL::Type::coercionCost\28SkSL::Type\20const&\29\20const +1771:SkSL::SymbolTable::addArrayDimension\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20int\29 +1772:SkSL::String::appendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20...\29 +1773:SkSL::RP::VariableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +1774:SkSL::RP::Program::appendCopySlotsUnmasked\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +1775:SkSL::RP::Generator::pushBinaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +1776:SkSL::RP::Generator::emitTraceLine\28SkSL::Position\29 +1777:SkSL::RP::AutoStack::enter\28\29 +1778:SkSL::PipelineStage::PipelineStageCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +1779:SkSL::Operator::determineBinaryType\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\29\20const +1780:SkSL::NativeShader::~NativeShader\28\29 +1781:SkSL::GLSLCodeGenerator::getTypePrecision\28SkSL::Type\20const&\29 +1782:SkSL::ExpressionStatement::Make\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +1783:SkSL::ConstructorDiagonalMatrix::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1784:SkSL::ConstructorArrayCast::~ConstructorArrayCast\28\29 +1785:SkSL::ConstantFolder::MakeConstantValueForVariable\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +1786:SkSBlockAllocator<64ul>::SkSBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\29 +1787:SkRuntimeEffectBuilder::writableUniformData\28\29 +1788:SkRuntimeEffect::uniformSize\28\29\20const +1789:SkResourceCache::Key::init\28void*\2c\20unsigned\20long\20long\2c\20unsigned\20long\29 +1790:SkRegion::op\28SkRegion\20const&\2c\20SkRegion::Op\29 +1791:SkRect::toQuad\28SkPathDirection\29\20const +1792:SkRect::isFinite\28\29\20const +1793:SkRasterPipelineBlitter::appendStore\28SkRasterPipeline*\29\20const +1794:SkRasterPipeline::compile\28\29\20const +1795:SkRasterPipeline::appendClampIfNormalized\28SkImageInfo\20const&\29 +1796:SkRasterClipStack::writable_rc\28\29 +1797:SkRRect::setRectRadii\28SkRect\20const&\2c\20SkPoint\20const*\29 +1798:SkPointPriv::EqualsWithinTolerance\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1799:SkPoint::Length\28float\2c\20float\29 +1800:SkPixmap::operator=\28SkPixmap&&\29 +1801:SkPathWriter::matchedLast\28SkOpPtT\20const*\29\20const +1802:SkPathWriter::finishContour\28\29 +1803:SkPathEdgeIter::next\28\29 +1804:SkPathBuilder::addRect\28SkRect\20const&\2c\20SkPathDirection\29 +1805:SkPathBuilder::addRRect\28SkRRect\20const&\2c\20SkPathDirection\29 +1806:SkPath::getPoint\28int\29\20const +1807:SkPath::close\28\29 +1808:SkPaint::operator=\28SkPaint\20const&\29 +1809:SkPaint::nothingToDraw\28\29\20const +1810:SkPaint::isSrcOver\28\29\20const +1811:SkOpSpanBase::contains\28SkOpSegment\20const*\29\20const +1812:SkOpSegment::updateWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +1813:SkOpAngle::linesOnOriginalSide\28SkOpAngle\20const*\29 +1814:SkNoPixelsDevice::writableClip\28\29 +1815:SkNextID::ImageID\28\29 +1816:SkMatrix::setConcat\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +1817:SkMatrix::isFinite\28\29\20const +1818:SkMatrix::decomposeScale\28SkSize*\2c\20SkMatrix*\29\20const +1819:SkMaskBuilder::AllocImage\28unsigned\20long\2c\20SkMaskBuilder::AllocType\29 +1820:SkMask::computeImageSize\28\29\20const +1821:SkMask::AlphaIter<\28SkMask::Format\294>::operator*\28\29\20const +1822:SkMakeImageFromRasterBitmap\28SkBitmap\20const&\2c\20SkCopyPixelsMode\29 +1823:SkM44::SkM44\28SkMatrix\20const&\29 +1824:SkLocalMatrixImageFilter::~SkLocalMatrixImageFilter\28\29 +1825:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_2D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +1826:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_1D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +1827:SkKnownRuntimeEffects::GetKnownRuntimeEffect\28SkKnownRuntimeEffects::StableKey\29 +1828:SkJSONWriter::endObject\28\29 +1829:SkJSONWriter::beginObject\28char\20const*\2c\20bool\29 +1830:SkJSONWriter::appendName\28char\20const*\29 +1831:SkIntersections::flip\28\29 +1832:SkImageInfo::makeColorType\28SkColorType\29\20const +1833:SkImageFilter::getInput\28int\29\20const +1834:SkFont::unicharToGlyph\28int\29\20const +1835:SkDevice::setLocalToDevice\28SkM44\20const&\29 +1836:SkData::MakeEmpty\28\29 +1837:SkDRect::add\28SkDPoint\20const&\29 +1838:SkConic::chopAt\28float\2c\20SkConic*\29\20const +1839:SkColorSpace::gammaIsLinear\28\29\20const +1840:SkChopCubicAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +1841:SkCanvas::concat\28SkM44\20const&\29 +1842:SkCanvas::computeDeviceClipBounds\28bool\29\20const +1843:SkBlockAllocator::ByteRange\20SkBlockAllocator::allocate<4ul\2c\200ul>\28unsigned\20long\29 +1844:SkBitmap::operator=\28SkBitmap\20const&\29 +1845:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29 +1846:SkAutoSMalloc<1024ul>::SkAutoSMalloc\28unsigned\20long\29 +1847:RunBasedAdditiveBlitter::checkY\28int\29 +1848:RoughlyEqualUlps\28double\2c\20double\29 +1849:Read255UShort +1850:PS_Conv_ToFixed +1851:OT::post::accelerator_t::cmp_gids\28void\20const*\2c\20void\20const*\2c\20void*\29 +1852:OT::hmtxvmtx::accelerator_t::get_advance_without_var_unscaled\28unsigned\20int\29\20const +1853:OT::Layout::GPOS_impl::ValueFormat::apply_value\28OT::hb_ot_apply_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\2c\20hb_glyph_position_t&\29\20const +1854:GrTriangulator::VertexList::remove\28GrTriangulator::Vertex*\29 +1855:GrTriangulator::Vertex*\20SkArenaAlloc::make\28SkPoint&\2c\20int&&\29 +1856:GrTriangulator::Poly::addEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Side\2c\20GrTriangulator*\29 +1857:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\2c\20bool\29 +1858:GrSurface::invokeReleaseProc\28\29 +1859:GrSurface::GrSurface\28GrGpu*\2c\20SkISize\20const&\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +1860:GrStyledShape::operator=\28GrStyledShape\20const&\29 +1861:GrSimpleMeshDrawOpHelperWithStencil::createProgramInfoWithStencil\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +1862:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrProcessorSet&&\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrPipeline::InputFlags\2c\20GrUserStencilSettings\20const*\29 +1863:GrShape::setRRect\28SkRRect\20const&\29 +1864:GrShape::reset\28GrShape::Type\29 +1865:GrResourceProvider::findOrCreatePatternedIndexBuffer\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\2c\20skgpu::UniqueKey\20const&\29 +1866:GrResourceProvider::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\2c\20GrResourceProvider::ZeroInit\29 +1867:GrResourceProvider::assignUniqueKeyToResource\28skgpu::UniqueKey\20const&\2c\20GrGpuResource*\29 +1868:GrRenderTask::addDependency\28GrRenderTask*\29 +1869:GrRenderTask::GrRenderTask\28\29 +1870:GrRenderTarget::onRelease\28\29 +1871:GrQuadUtils::TessellationHelper::Vertices::asGrQuads\28GrQuad*\2c\20GrQuad::Type\2c\20GrQuad*\2c\20GrQuad::Type\29\20const +1872:GrProxyProvider::findOrCreateProxyByUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxy::UseAllocator\29 +1873:GrProxyProvider::assignUniqueKeyToProxy\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\29 +1874:GrPaint::setCoverageFragmentProcessor\28std::__2::unique_ptr>\29 +1875:GrMeshDrawOp::QuadHelper::QuadHelper\28GrMeshDrawTarget*\2c\20unsigned\20long\2c\20int\29 +1876:GrMakeCachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\29 +1877:GrIsStrokeHairlineOrEquivalent\28GrStyle\20const&\2c\20SkMatrix\20const&\2c\20float*\29 +1878:GrImageInfo::minRowBytes\28\29\20const +1879:GrGpuResource::CacheAccess::isUsableAsScratch\28\29\20const +1880:GrGeometryProcessor::ProgramImpl::setupUniformColor\28GrGLSLFPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20GrResourceHandle*\29 +1881:GrGLSLUniformHandler::addUniformArray\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20int\2c\20char\20const**\29 +1882:GrGLSLShaderBuilder::code\28\29 +1883:GrGLOpsRenderPass::bindVertexBuffer\28GrBuffer\20const*\2c\20int\29 +1884:GrGLGpu::unbindSurfaceFBOForPixelOps\28GrSurface*\2c\20int\2c\20unsigned\20int\29 +1885:GrGLGpu::flushRenderTarget\28GrGLRenderTarget*\2c\20bool\29 +1886:GrGLGpu::bindSurfaceFBOForPixelOps\28GrSurface*\2c\20int\2c\20unsigned\20int\2c\20GrGLGpu::TempFBOTarget\29 +1887:GrGLCompileAndAttachShader\28GrGLContext\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkSL::NativeShader\20const&\2c\20bool\2c\20GrThreadSafePipelineBuilder::Stats*\2c\20skgpu::ShaderErrorHandler*\29 +1888:GrFragmentProcessors::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkColorFilter\20const*\2c\20std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +1889:GrFragmentProcessor::visitTextureEffects\28std::__2::function\20const&\29\20const +1890:GrFragmentProcessor::MakeColor\28SkRGBA4f<\28SkAlphaType\292>\29 +1891:GrDirectContextPriv::flushSurface\28GrSurfaceProxy*\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +1892:GrBlendFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkBlendMode\2c\20bool\29 +1893:GrBackendFormat::operator=\28GrBackendFormat\20const&\29 +1894:GrAAConvexTessellator::addPt\28SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20GrAAConvexTessellator::CurveState\29 +1895:FT_Outline_Transform +1896:CFF::parsed_values_t::add_op\28unsigned\20int\2c\20CFF::byte_str_ref_t\20const&\2c\20CFF::op_str_t\20const&\29 +1897:CFF::dict_opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +1898:CFF::cs_opset_t\2c\20cff2_extents_param_t\2c\20cff2_path_procs_extents_t>::process_post_move\28unsigned\20int\2c\20CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\29 +1899:CFF::cs_opset_t::process_post_move\28unsigned\20int\2c\20CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +1900:CFF::cs_interp_env_t>>::determine_hintmask_size\28\29 +1901:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::begin\28\29\20const +1902:AlmostBetweenUlps\28double\2c\20double\2c\20double\29 +1903:ActiveEdgeList::SingleRotation\28ActiveEdge*\2c\20int\29 +1904:AAT::hb_aat_apply_context_t::replace_glyph_inplace\28unsigned\20int\2c\20unsigned\20int\29 +1905:1692 +1906:1693 +1907:void\20std::__2::__stable_sort\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +1908:void\20std::__2::__split_buffer&>::__construct_at_end\2c\200>\28std::__2::move_iterator\2c\20std::__2::move_iterator\29 +1909:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d>&>\2c\20std::__2::tuple>>\2c\20bool\2c\20std::__2::unique_ptr>\2c\200ul\2c\201ul>\28std::__2::tuple>&>&\2c\20std::__2::tuple>>&&\2c\20std::__2::__tuple_types>>\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +1910:void\20extend_pts<\28SkPaint::Cap\292>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +1911:void\20extend_pts<\28SkPaint::Cap\291>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +1912:void\20SkSafeUnref\28SkTextBlob*\29 +1913:void\20SkSafeUnref\28GrTextureProxy*\29 +1914:unsigned\20int*\20SkRecordCanvas::copy\28unsigned\20int\20const*\2c\20unsigned\20long\29 +1915:tt_cmap14_ensure +1916:std::__2::vector>\2c\20std::__2::allocator>>>::push_back\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +1917:std::__2::vector>\2c\20std::__2::allocator>>>::~vector\5babi:ne180100\5d\28\29 +1918:std::__2::vector>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +1919:std::__2::vector\2c\20std::__2::allocator>>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +1920:std::__2::vector>::resize\28unsigned\20long\29 +1921:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +1922:std::__2::unique_ptr>\20\5b\5d\2c\20std::__2::default_delete>\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +1923:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1924:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1925:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1926:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1927:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrDrawOpAtlas*\29 +1928:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char8_t*\2c\20char8_t*\2c\20char8_t*&\29\20const +1929:std::__2::basic_string\2c\20std::__2::allocator>::clear\5babi:ne180100\5d\28\29 +1930:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28char\20const*\29 +1931:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20char\20const*\29 +1932:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +1933:std::__2::basic_string\2c\20std::__2::allocator>::__assign_external\28char\20const*\29 +1934:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:ne180100\5d\28\29\20const +1935:std::__2::basic_ostream>::sentry::~sentry\28\29 +1936:std::__2::basic_ostream>::sentry::sentry\28std::__2::basic_ostream>&\29 +1937:std::__2::basic_ios>::~basic_ios\28\29 +1938:std::__2::array\2c\204ul>::~array\28\29 +1939:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +1940:std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>::__copy_constructor\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29 +1941:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +1942:std::__2::__optional_copy_base::__optional_copy_base\5babi:ne180100\5d\28std::__2::__optional_copy_base\20const&\29 +1943:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20wchar_t&\29 +1944:std::__2::__num_get::__do_widen\28std::__2::ios_base&\2c\20wchar_t*\29\20const +1945:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20char&\29 +1946:std::__2::__itoa::__append1\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +1947:std::__2::__function::__value_func::operator=\5babi:ne180100\5d\28std::__2::__function::__value_func&&\29 +1948:std::__2::__function::__value_func::operator\28\29\5babi:ne180100\5d\28SkIRect\20const&\29\20const +1949:sqrtf +1950:skvx::Vec<4\2c\20unsigned\20int>&\20skvx::operator-=<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +1951:skvx::Vec<4\2c\20unsigned\20int>&\20skvx::operator+=<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +1952:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator><4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1953:skvx::Vec<4\2c\20float>\20skvx::operator+<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29\20\28.6336\29 +1954:skvx::Vec<4\2c\20float>\20skvx::operator+<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.1036\29 +1955:skvx::Vec<4\2c\20float>\20skvx::max<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.8176\29 +1956:skvx::Vec<4\2c\20float>\20skvx::max<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1957:sktext::gpu::SubRunList::append\28std::__2::unique_ptr\29 +1958:skif::\28anonymous\20namespace\29::draw_tiled_border\28SkCanvas*\2c\20SkTileMode\2c\20SkPaint\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::LayerSpace\2c\20skif::LayerSpace\29::$_0::operator\28\29\28SkRect\20const&\2c\20SkRect\20const&\29\20const +1959:skif::LayerSpace::inverseMapRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29\20const +1960:skif::FilterResult::analyzeBounds\28skif::LayerSpace\20const&\2c\20skif::FilterResult::BoundsScope\29\20const +1961:skif::FilterResult::AutoSurface::snap\28\29 +1962:skif::FilterResult::AutoSurface::AutoSurface\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult::PixelBoundary\2c\20bool\2c\20SkSurfaceProps\20const*\29 +1963:skia_private::THashTable::AdaptedTraits>::findOrNull\28skgpu::UniqueKey\20const&\29\20const +1964:skia_private::TArray::reset\28int\29 +1965:skia_private::TArray::reserve_exact\28int\29 +1966:skia_private::TArray::push_back\28\29 +1967:skia_private::TArray::checkRealloc\28int\2c\20double\29 +1968:skia_private::TArray::push_back_raw\28int\29 +1969:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +1970:skia_private::TArray::checkRealloc\28int\2c\20double\29 +1971:skia_private::AutoSTArray<8\2c\20unsigned\20int>::reset\28int\29 +1972:skia_private::AutoSTArray<24\2c\20unsigned\20int>::~AutoSTArray\28\29 +1973:skia_png_reciprocal2 +1974:skia_png_benign_error +1975:skia::textlayout::TextStyle::TextStyle\28\29 +1976:skia::textlayout::Run::~Run\28\29 +1977:skia::textlayout::Run::posX\28unsigned\20long\29\20const +1978:skia::textlayout::ParagraphStyle::ParagraphStyle\28skia::textlayout::ParagraphStyle\20const&\29 +1979:skia::textlayout::InternalLineMetrics::height\28\29\20const +1980:skia::textlayout::InternalLineMetrics::add\28skia::textlayout::Run*\29 +1981:skia::textlayout::FontCollection::findTypefaces\28std::__2::vector>\20const&\2c\20SkFontStyle\2c\20std::__2::optional\20const&\29 +1982:skgpu::ganesh::TextureOp::BatchSizeLimiter::createOp\28GrTextureSetEntry*\2c\20int\2c\20GrAAType\29 +1983:skgpu::ganesh::SurfaceFillContext::fillRectWithFP\28SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +1984:skgpu::ganesh::SurfaceFillContext::fillRectToRectWithFP\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +1985:skgpu::ganesh::SurfaceDrawContext::drawShape\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\29 +1986:skgpu::ganesh::SurfaceDrawContext::drawShapeUsingPathRenderer\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\2c\20bool\29 +1987:skgpu::ganesh::SurfaceDrawContext::drawRRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20GrStyle\20const&\29 +1988:skgpu::ganesh::SurfaceDrawContext::drawFilledQuad\28GrClip\20const*\2c\20GrPaint&&\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\29 +1989:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29::$_0::~$_0\28\29 +1990:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29 +1991:skgpu::ganesh::SurfaceContext::PixelTransferResult::PixelTransferResult\28skgpu::ganesh::SurfaceContext::PixelTransferResult&&\29 +1992:skgpu::ganesh::SoftwarePathRenderer::DrawNonAARect\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const&\29 +1993:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::vertexSize\28\29\20const +1994:skgpu::ganesh::OpsTask::OpChain::List::List\28skgpu::ganesh::OpsTask::OpChain::List&&\29 +1995:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29::$_0::operator\28\29\28GrSurfaceProxyView\20const&\29\20const +1996:skgpu::ganesh::Device::targetProxy\28\29 +1997:skgpu::ganesh::ClipStack::getConservativeBounds\28\29\20const +1998:skgpu::UniqueKeyInvalidatedMessage::UniqueKeyInvalidatedMessage\28skgpu::UniqueKeyInvalidatedMessage\20const&\29 +1999:skgpu::UniqueKey::operator=\28skgpu::UniqueKey\20const&\29 +2000:skgpu::TAsyncReadResult::addTransferResult\28skgpu::ganesh::SurfaceContext::PixelTransferResult\20const&\2c\20SkISize\2c\20unsigned\20long\2c\20skgpu::TClientMappedBufferManager*\29 +2001:skgpu::Swizzle::asString\28\29\20const +2002:skgpu::GetApproxSize\28SkISize\29 +2003:skcms_Matrix3x3_concat +2004:sk_srgb_linear_singleton\28\29 +2005:sk_sp::reset\28SkVertices*\29 +2006:sk_sp::operator=\28sk_sp\20const&\29 +2007:sk_sp::reset\28SkPathRef*\29 +2008:sk_sp::reset\28GrGpuBuffer*\29 +2009:sk_sp\20sk_make_sp\28\29 +2010:sfnt_get_name_id +2011:set_glyph\28hb_glyph_info_t&\2c\20hb_font_t*\29 +2012:roundf +2013:remove_node\28OffsetEdge\20const*\2c\20OffsetEdge**\29 +2014:ps_parser_to_token +2015:precisely_between\28double\2c\20double\2c\20double\29 +2016:path_quadraticBezierTo +2017:path_cubicTo +2018:next_char\28hb_buffer_t*\2c\20unsigned\20int\29 +2019:log2f +2020:log +2021:less_or_equal_ulps\28float\2c\20float\2c\20int\29 +2022:is_consonant\28hb_glyph_info_t\20const&\29 +2023:int\20const*\20std::__2::find\5babi:ne180100\5d\28int\20const*\2c\20int\20const*\2c\20int\20const&\29 +2024:impeller::\28anonymous\20namespace\29::CornerContains\28impeller::RoundSuperellipseParam::Quadrant\20const&\2c\20impeller::TPoint\20const&\2c\20bool\29 +2025:impeller::\28anonymous\20namespace\29::ComputeQuadrant\28impeller::TPoint\2c\20impeller::TPoint\2c\20impeller::TSize\2c\20impeller::TSize\29 +2026:impeller::TRect::Intersection\28impeller::TRect\20const&\29\20const +2027:impeller::Matrix::HasPerspective2D\28\29\20const +2028:hb_unicode_funcs_destroy +2029:hb_serialize_context_t::pop_discard\28\29 +2030:hb_paint_funcs_t::pop_clip\28void*\29 +2031:hb_ot_map_t::feature_map_t\20const*\20hb_vector_t::bsearch\28unsigned\20int\20const&\2c\20hb_ot_map_t::feature_map_t\20const*\29\20const +2032:hb_lazy_loader_t\2c\20hb_face_t\2c\2015u\2c\20OT::glyf_accelerator_t>::get_stored\28\29\20const +2033:hb_indic_would_substitute_feature_t::init\28hb_ot_map_t\20const*\2c\20unsigned\20int\2c\20bool\29 +2034:hb_hashmap_t::alloc\28unsigned\20int\29 +2035:hb_font_t::get_glyph_v_advance\28unsigned\20int\29 +2036:hb_font_t::get_glyph_extents\28unsigned\20int\2c\20hb_glyph_extents_t*\29 +2037:hb_draw_funcs_t::emit_cubic_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +2038:hb_buffer_t::replace_glyph\28unsigned\20int\29 +2039:hb_buffer_t::output_glyph\28unsigned\20int\29 +2040:hb_buffer_t::make_room_for\28unsigned\20int\2c\20unsigned\20int\29 +2041:hb_buffer_t::_set_glyph_flags\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +2042:hb_buffer_create_similar +2043:gray_set_cell +2044:ft_service_list_lookup +2045:fseek +2046:flutter::ToSk\28impeller::Matrix\20const*\2c\20SkMatrix&\29 +2047:flutter::ToSk\28flutter::DlImageFilter\20const*\29 +2048:flutter::ToSkRRect\28impeller::RoundRect\20const&\29 +2049:flutter::DlTextSkia::GetTextFrame\28\29\20const +2050:flutter::DlSkCanvasDispatcher::safe_paint\28bool\29 +2051:flutter::DlPath::DlPath\28SkPath\20const&\29 +2052:flutter::DisplayListBuilder::drawRect\28impeller::TRect\20const&\29 +2053:flutter::DisplayListBuilder::drawOval\28impeller::TRect\20const&\29 +2054:flutter::DisplayListBuilder::UpdateCurrentOpacityCompatibility\28\29 +2055:flutter::DisplayListBuilder::TransformReset\28\29 +2056:flutter::DisplayListBuilder::TransformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +2057:flutter::DisplayListBuilder::Transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +2058:flutter::DisplayListBuilder::DrawRect\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +2059:flutter::DisplayListBuilder::DrawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +2060:flutter::DisplayListBuilder::ClipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +2061:flutter::DisplayListBuilder::AccumulateUnbounded\28\29 +2062:find_table +2063:fillcheckrect\28int\2c\20int\2c\20int\2c\20int\2c\20SkBlitter*\29 +2064:fflush +2065:fclose +2066:expm1 +2067:expf +2068:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker\2c\20float&>\28float&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2069:crc_word +2070:classify\28skcms_TransferFunction\20const&\2c\20TF_PQish*\2c\20TF_HLGish*\29 +2071:choose_bmp_texture_colortype\28GrCaps\20const*\2c\20SkBitmap\20const&\29 +2072:char*\20sktext::gpu::BagOfBytes::allocateBytesFor\28int\29 +2073:cff_parse_fixed +2074:cf2_interpT2CharString +2075:cf2_hintmap_insertHint +2076:cf2_hintmap_build +2077:cf2_glyphpath_moveTo +2078:cf2_glyphpath_lineTo +2079:bool\20std::__2::operator==\5babi:ne180100\5d>\28std::__2::vector>\20const&\2c\20std::__2::vector>\20const&\29 +2080:bool\20std::__2::__less::operator\28\29\5babi:nn180100\5d\28unsigned\20int\20const&\2c\20unsigned\20long\20const&\29\20const +2081:bool\20optional_eq\28std::__2::optional\2c\20SkPathVerb\29 +2082:bool\20SkIsFinite\28float\20const*\2c\20int\29 +2083:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +2084:blit_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +2085:afm_tokenize +2086:af_glyph_hints_reload +2087:_hb_glyph_info_set_unicode_props\28hb_glyph_info_t*\2c\20hb_buffer_t*\29 +2088:_hb_draw_funcs_set_middle\28hb_draw_funcs_t*\2c\20void*\2c\20void\20\28*\29\28void*\29\29 +2089:__wasm_setjmp +2090:__wasi_syscall_ret +2091:__syscall_ret +2092:__sin +2093:__cos +2094:\28anonymous\20namespace\29::valid_unit_divide\28float\2c\20float\2c\20float*\29 +2095:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_1::operator\28\29\28SkSpan\29\20const +2096:\28anonymous\20namespace\29::draw_stencil_rect\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrHardClip\20const&\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +2097:\28anonymous\20namespace\29::can_reorder\28SkRect\20const&\2c\20SkRect\20const&\29 +2098:\28anonymous\20namespace\29::FillRectOpImpl::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +2099:Skwasm::makeCurrent\28unsigned\20long\29 +2100:SkWriter32::writeSampling\28SkSamplingOptions\20const&\29 +2101:SkWriter32::writePad\28void\20const*\2c\20unsigned\20long\29 +2102:SkTextBlobRunIterator::next\28\29 +2103:SkTextBlobBuilder::make\28\29 +2104:SkTSect::addOne\28\29 +2105:SkTMultiMap::remove\28skgpu::ScratchKey\20const&\2c\20GrGpuResource\20const*\29 +2106:SkTDArray::append\28\29 +2107:SkTDArray::append\28\29 +2108:SkSurfaces::RenderTarget\28GrRecordingContext*\2c\20skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20int\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const*\2c\20bool\2c\20bool\29 +2109:SkStrokeRec::isFillStyle\28\29\20const +2110:SkString::appendU32\28unsigned\20int\29 +2111:SkSpecialImages::MakeFromRaster\28SkIRect\20const&\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\29 +2112:SkShaders::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +2113:SkShaderUtils::GLSLPrettyPrint::appendChar\28char\29 +2114:SkScopeExit::~SkScopeExit\28\29 +2115:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\29 +2116:SkSTArenaAlloc<1024ul>::SkSTArenaAlloc\28unsigned\20long\29 +2117:SkSL::is_scalar_op_matrix\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +2118:SkSL::evaluate_n_way_intrinsic\28SkSL::Context\20const&\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +2119:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitType\28SkSL::Type\20const&\29 +2120:SkSL::Variable::initialValue\28\29\20const +2121:SkSL::Variable*\20SkSL::SymbolTable::takeOwnershipOfSymbol\28std::__2::unique_ptr>\29 +2122:SkSL::Type::canCoerceTo\28SkSL::Type\20const&\2c\20bool\29\20const +2123:SkSL::SymbolTable::takeOwnershipOfString\28std::__2::basic_string\2c\20std::__2::allocator>\29 +2124:SkSL::RP::pack_nybbles\28SkSpan\29 +2125:SkSL::RP::Generator::foldComparisonOp\28SkSL::Operator\2c\20int\29 +2126:SkSL::RP::Generator::emitTraceScope\28int\29 +2127:SkSL::RP::Generator::createStack\28\29 +2128:SkSL::RP::Builder::trace_var\28int\2c\20SkSL::RP::SlotRange\29 +2129:SkSL::RP::Builder::jump\28int\29 +2130:SkSL::RP::Builder::dot_floats\28int\29 +2131:SkSL::RP::Builder::branch_if_no_lanes_active\28int\29 +2132:SkSL::RP::AutoStack::~AutoStack\28\29 +2133:SkSL::RP::AutoStack::pushClone\28int\29 +2134:SkSL::Position::rangeThrough\28SkSL::Position\29\20const +2135:SkSL::PipelineStage::PipelineStageCodeGenerator::AutoOutputBuffer::~AutoOutputBuffer\28\29 +2136:SkSL::Parser::type\28SkSL::Modifiers*\29 +2137:SkSL::Parser::parseArrayDimensions\28SkSL::Position\2c\20SkSL::Type\20const**\29 +2138:SkSL::Parser::modifiers\28\29 +2139:SkSL::Parser::assignmentExpression\28\29 +2140:SkSL::Parser::arraySize\28long\20long*\29 +2141:SkSL::ModifierFlags::paddedDescription\28\29\20const +2142:SkSL::Literal::MakeBool\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20bool\29 +2143:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29::$_2::operator\28\29\28SkSL::ExpressionArray\20const&\29\20const +2144:SkSL::IRHelpers::Swizzle\28std::__2::unique_ptr>\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29\20const +2145:SkSL::GLSLCodeGenerator::writeTypePrecision\28SkSL::Type\20const&\29 +2146:SkSL::FunctionDeclaration::getMainCoordsParameter\28\29\20const +2147:SkSL::ExpressionArray::clone\28\29\20const +2148:SkSL::ConstantFolder::GetConstantValue\28SkSL::Expression\20const&\2c\20double*\29 +2149:SkSL::ConstantFolder::GetConstantInt\28SkSL::Expression\20const&\2c\20long\20long*\29 +2150:SkSL::Compiler::~Compiler\28\29 +2151:SkSL::Compiler::errorText\28bool\29 +2152:SkSL::Compiler::Compiler\28\29 +2153:SkSL::Analysis::IsTrivialExpression\28SkSL::Expression\20const&\29 +2154:SkRuntimeEffectPriv::TransformUniforms\28SkSpan\2c\20sk_sp\2c\20SkColorSpace\20const*\29 +2155:SkRuntimeEffectBuilder::~SkRuntimeEffectBuilder\28\29 +2156:SkRuntimeEffectBuilder::makeShader\28SkMatrix\20const*\29\20const +2157:SkRuntimeEffectBuilder::SkRuntimeEffectBuilder\28sk_sp\29 +2158:SkRuntimeEffectBuilder::BuilderChild&\20SkRuntimeEffectBuilder::BuilderChild::operator=\28sk_sp\29 +2159:SkRuntimeEffect::findChild\28std::__2::basic_string_view>\29\20const +2160:SkRegion::setPath\28SkPath\20const&\2c\20SkRegion\20const&\29 +2161:SkRegion::Iterator::Iterator\28SkRegion\20const&\29 +2162:SkReduceOrder::Quad\28SkPoint\20const*\2c\20SkPoint*\29 +2163:SkRect::joinPossiblyEmptyRect\28SkRect\20const&\29 +2164:SkRasterPipelineContexts::BinaryOpCtx*\20SkArenaAlloc::make\28SkRasterPipelineContexts::BinaryOpCtx\20const&\29 +2165:SkRasterPipelineBlitter::appendClipScale\28SkRasterPipeline*\29\20const +2166:SkRasterPipelineBlitter::appendClipLerp\28SkRasterPipeline*\29\20const +2167:SkRasterClip::SkRasterClip\28SkIRect\20const&\29 +2168:SkRRect::MakeRectXY\28SkRect\20const&\2c\20float\2c\20float\29 +2169:SkRGBA4f<\28SkAlphaType\293>::toSkColor\28\29\20const +2170:SkRGBA4f<\28SkAlphaType\292>::toBytes_RGBA\28\29\20const +2171:SkRGBA4f<\28SkAlphaType\292>::fitsInBytes\28\29\20const +2172:SkPointPriv::EqualsWithinTolerance\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\29 +2173:SkPoint*\20SkRecordCanvas::copy\28SkPoint\20const*\2c\20unsigned\20long\29 +2174:SkPoint*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29 +2175:SkPixmap::reset\28\29 +2176:SkPixmap::computeByteSize\28\29\20const +2177:SkPictureRecord::addImage\28SkImage\20const*\29 +2178:SkPathRaw::iter\28\29\20const +2179:SkPathBuilder::incReserve\28int\29 +2180:SkPathBuilder::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +2181:SkPath::isLine\28SkPoint*\29\20const +2182:SkParsePath::ToSVGString\28SkPath\20const&\2c\20SkParsePath::PathEncoding\29::$_0::operator\28\29\28char\2c\20SkPoint\20const*\2c\20unsigned\20long\29\20const +2183:SkPaintPriv::ComputeLuminanceColor\28SkPaint\20const&\29 +2184:SkPaint::SkPaint\28SkPaint&&\29 +2185:SkOpSpan::release\28SkOpPtT\20const*\29 +2186:SkOpContourBuilder::addCurve\28SkPath::Verb\2c\20SkPoint\20const*\2c\20float\29 +2187:SkMipmap::Build\28SkPixmap\20const&\2c\20SkDiscardableMemory*\20\28*\29\28unsigned\20long\29\2c\20bool\29 +2188:SkMeshSpecification::Varying::Varying\28SkMeshSpecification::Varying&&\29 +2189:SkMemoryStream::getPosition\28\29\20const +2190:SkMatrix::mapOrigin\28\29\20const +2191:SkMaskFilter::MakeBlur\28SkBlurStyle\2c\20float\2c\20bool\29 +2192:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29 +2193:SkJSONWriter::endArray\28\29 +2194:SkJSONWriter::beginValue\28bool\29 +2195:SkJSONWriter::beginArray\28char\20const*\2c\20bool\29 +2196:SkIntersections::insertNear\28double\2c\20double\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29 +2197:SkImageShader::Make\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +2198:SkImageInfo::MakeUnknown\28int\2c\20int\29 +2199:SkImageGenerator::onRefEncodedData\28\29 +2200:SkIRect::inset\28int\2c\20int\29 +2201:SkIDChangeListener::List::changed\28\29 +2202:SkGradientBaseShader::flatten\28SkWriteBuffer&\29\20const +2203:SkGlyph::setPath\28SkArenaAlloc*\2c\20SkPath\20const*\2c\20bool\2c\20bool\29 +2204:SkFont::getMetrics\28SkFontMetrics*\29\20const +2205:SkFont::SkFont\28\29 +2206:SkFindQuadMaxCurvature\28SkPoint\20const*\29 +2207:SkFDot6Div\28int\2c\20int\29 +2208:SkEvalQuadAt\28SkPoint\20const*\2c\20float\29 +2209:SkEvalCubicAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29 +2210:SkEdgeClipper::appendVLine\28float\2c\20float\2c\20float\2c\20bool\29 +2211:SkDrawShadowMetrics::GetSpotParams\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float*\2c\20float*\2c\20SkPoint*\29 +2212:SkDevice::setGlobalCTM\28SkM44\20const&\29 +2213:SkDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +2214:SkDevice::accessPixels\28SkPixmap*\29 +2215:SkData::MakeWithProc\28void\20const*\2c\20unsigned\20long\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +2216:SkDLine::exactPoint\28SkDPoint\20const&\29\20const +2217:SkDCubic::FindExtrema\28double\20const*\2c\20double*\29 +2218:SkConic::TransformW\28SkPoint\20const*\2c\20float\2c\20SkMatrix\20const&\29 +2219:SkColorSpace::MakeSRGBLinear\28\29 +2220:SkColorInfo::isOpaque\28\29\20const +2221:SkColorFilters::Blend\28unsigned\20int\2c\20SkBlendMode\29 +2222:SkCanvas::getLocalClipBounds\28\29\20const +2223:SkCanvas::drawIRect\28SkIRect\20const&\2c\20SkPaint\20const&\29 +2224:SkBulkGlyphMetrics::glyphs\28SkSpan\29 +2225:SkBlockAllocator::releaseBlock\28SkBlockAllocator::Block*\29 +2226:SkBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +2227:SkBlendMode_AppendStages\28SkBlendMode\2c\20SkRasterPipeline*\29 +2228:SkBitmap::tryAllocPixels\28SkBitmap::Allocator*\29 +2229:SkBinaryWriteBuffer::writeByteArray\28void\20const*\2c\20unsigned\20long\29 +2230:SkAutoPixmapStorage::SkAutoPixmapStorage\28\29 +2231:SkAutoDeviceTransformRestore::~SkAutoDeviceTransformRestore\28\29 +2232:SkAutoDeviceTransformRestore::SkAutoDeviceTransformRestore\28SkDevice*\2c\20SkM44\20const&\29 +2233:SkAutoCanvasRestore::SkAutoCanvasRestore\28SkCanvas*\2c\20bool\29 +2234:SkAutoBlitterChoose::SkAutoBlitterChoose\28skcpu::Draw\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const&\2c\20SkRect\20const&\2c\20SkDrawCoverage\29 +2235:SkAAClipBlitter::~SkAAClipBlitter\28\29 +2236:SkAAClip::setRegion\28SkRegion\20const&\29::$_0::operator\28\29\28unsigned\20char\2c\20int\29\20const +2237:SkAAClip::findX\28unsigned\20char\20const*\2c\20int\2c\20int*\29\20const +2238:SkAAClip::findRow\28int\2c\20int*\29\20const +2239:SkAAClip::Builder::Blitter::~Blitter\28\29 +2240:SaveErrorCode +2241:RoughlyEqualUlps\28float\2c\20float\29 +2242:R.10443 +2243:R +2244:PS_Conv_ToInt +2245:OT::hmtxvmtx::accelerator_t::get_leading_bearing_without_var_unscaled\28unsigned\20int\2c\20int*\29\20const +2246:OT::hb_ot_apply_context_t::replace_glyph\28unsigned\20int\29 +2247:OT::fvar::get_axes\28\29\20const +2248:OT::Layout::GPOS_impl::ValueFormat::sanitize_values_stride_unsafe\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +2249:OT::DeltaSetIndexMap::map\28unsigned\20int\29\20const +2250:OT::CFFIndex>\20const&\20CFF::StructAtOffsetOrNull>>\28void\20const*\2c\20int\2c\20hb_sanitize_context_t&\29 +2251:OT::CFFIndex>::offset_at\28unsigned\20int\29\20const +2252:Normalize +2253:Ins_Goto_CodeRange +2254:GrTriangulator::setBottom\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2255:GrTriangulator::VertexList::append\28GrTriangulator::VertexList\20const&\29 +2256:GrTriangulator::Line::normalize\28\29 +2257:GrTriangulator::Edge::disconnect\28\29 +2258:GrThreadSafeCache::find\28skgpu::UniqueKey\20const&\29 +2259:GrThreadSafeCache::add\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +2260:GrTextureEffect::texture\28\29\20const +2261:GrSurfaceProxyView::Copy\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\29 +2262:GrSurfaceProxyPriv::doLazyInstantiation\28GrResourceProvider*\29 +2263:GrSurface::~GrSurface\28\29 +2264:GrStyledShape::simplify\28\29 +2265:GrStyle::applies\28\29\20const +2266:GrSimpleMeshDrawOpHelperWithStencil::fixedFunctionFlags\28\29\20const +2267:GrSimpleMeshDrawOpHelper::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20GrProcessorAnalysisColor*\29 +2268:GrSimpleMeshDrawOpHelper::detachProcessorSet\28\29 +2269:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrPipeline\20const*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrUserStencilSettings\20const*\29 +2270:GrSimpleMesh::setIndexedPatterned\28sk_sp\2c\20int\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int\29 +2271:GrShape::setRect\28SkRect\20const&\29 +2272:GrShape::GrShape\28GrShape\20const&\29 +2273:GrShaderVar::addModifier\28char\20const*\29 +2274:GrSWMaskHelper::~GrSWMaskHelper\28\29 +2275:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20void\20const*\2c\20skgpu::UniqueKey\20const&\29 +2276:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20skgpu::UniqueKey\20const&\2c\20void\20\28*\29\28skgpu::VertexWriter\2c\20unsigned\20long\29\29 +2277:GrResourceCache::purgeAsNeeded\28\29 +2278:GrRenderTask::addDependency\28GrDrawingManager*\2c\20GrSurfaceProxy*\2c\20skgpu::Mipmapped\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +2279:GrRecordingContextPriv::makeSFC\28GrImageInfo\2c\20std::__2::basic_string_view>\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +2280:GrQuad::asRect\28SkRect*\29\20const +2281:GrProcessorSet::operator!=\28GrProcessorSet\20const&\29\20const +2282:GrPixmapBase::GrPixmapBase\28GrImageInfo\2c\20void\20const*\2c\20unsigned\20long\29 +2283:GrPipeline::getXferProcessor\28\29\20const +2284:GrNativeRect::asSkIRect\28\29\20const +2285:GrGpuResource::isPurgeable\28\29\20const +2286:GrGeometryProcessor::ProgramImpl::~ProgramImpl\28\29 +2287:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +2288:GrGLSLShaderBuilder::defineConstant\28char\20const*\2c\20float\29 +2289:GrGLSLShaderBuilder::addFeature\28unsigned\20int\2c\20char\20const*\29 +2290:GrGLSLProgramBuilder::nameVariable\28char\2c\20char\20const*\2c\20bool\29 +2291:GrGLSLColorSpaceXformHelper::setData\28GrGLSLProgramDataManager\20const&\2c\20GrColorSpaceXform\20const*\29 +2292:GrGLSLColorSpaceXformHelper::emitCode\28GrGLSLUniformHandler*\2c\20GrColorSpaceXform\20const*\2c\20unsigned\20int\29 +2293:GrGLGpu::flushColorWrite\28bool\29 +2294:GrGLGpu::bindTexture\28int\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20GrGLTexture*\29 +2295:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkMatrix\20const&\29 +2296:GrFragmentProcessor::visitWithImpls\28std::__2::function\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\20const +2297:GrFragmentProcessor::visitProxies\28std::__2::function\20const&\29\20const +2298:GrFragmentProcessor::ColorMatrix\28std::__2::unique_ptr>\2c\20float\20const*\2c\20bool\2c\20bool\2c\20bool\29 +2299:GrDstProxyView::operator=\28GrDstProxyView\20const&\29 +2300:GrDrawingManager::closeActiveOpsTask\28\29 +2301:GrDrawingManager::appendTask\28sk_sp\29 +2302:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20sk_sp\29 +2303:GrColorSpaceXform::XformKey\28GrColorSpaceXform\20const*\29 +2304:GrColorSpaceXform::Make\28GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +2305:GrColorInfo::GrColorInfo\28GrColorInfo\20const&\29 +2306:GrCaps::isFormatCompressed\28GrBackendFormat\20const&\29\20const +2307:GrBufferAllocPool::~GrBufferAllocPool\28\29 +2308:GrBufferAllocPool::putBack\28unsigned\20long\29 +2309:GrBlurUtils::convolve_gaussian\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20SkIRect\2c\20SkIRect\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkBackingFit\29::$_1::operator\28\29\28SkIRect\29\20const +2310:GrAAConvexTessellator::lineTo\28SkPoint\20const&\2c\20GrAAConvexTessellator::CurveState\29 +2311:FwDCubicEvaluator::restart\28int\29 +2312:FT_Vector_Transform +2313:FT_Select_Charmap +2314:FT_Lookup_Renderer +2315:FT_Get_Module_Interface +2316:CFF::opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +2317:CFF::arg_stack_t::push_int\28int\29 +2318:Bounder::Bounder\28SkRect\20const&\2c\20SkPaint\20const&\29 +2319:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::operator++\28\29 +2320:ActiveEdge::intersect\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29\20const +2321:AAT::hb_aat_apply_context_t::setup_buffer_glyph_set\28\29 +2322:AAT::hb_aat_apply_context_t::buffer_intersects_machine\28\29\20const +2323:AAT::SubtableGlyphCoverage::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +2324:2111 +2325:2112 +2326:2113 +2327:2114 +2328:2115 +2329:2116 +2330:2117 +2331:2118 +2332:2119 +2333:2120 +2334:2121 +2335:2122 +2336:2123 +2337:wmemchr +2338:void\20std::__2::unique_ptr>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot*\2c\200>\28skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot*\29 +2339:void\20std::__2::reverse\5babi:nn180100\5d\28unsigned\20int*\2c\20unsigned\20int*\29 +2340:void\20std::__2::__variant_detail::__assignment>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29 +2341:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d>\28std::__2::__optional_move_assign_base&&\29 +2342:void\20hb_serialize_context_t::add_link\2c\20void\2c\20true>>\28OT::OffsetTo\2c\20void\2c\20true>&\2c\20unsigned\20int\2c\20hb_serialize_context_t::whence_t\2c\20unsigned\20int\29 +2343:void\20hb_sanitize_context_t::set_object\28AAT::KerxSubTable\20const*\29 +2344:void\20SkSafeUnref\28sktext::gpu::TextStrike*\29 +2345:void\20SkSafeUnref\28GrArenas*\29 +2346:void\20SkSL::RP::unpack_nybbles_to_offsets\28unsigned\20int\2c\20SkSpan\29 +2347:void\20AAT::Lookup::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +2348:void\20AAT::ClassTable>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +2349:void*\20flutter::DisplayListBuilder::Push\28unsigned\20long\29 +2350:void*\20flutter::DisplayListBuilder::Push\28unsigned\20long\29 +2351:void*\20flutter::DisplayListBuilder::Push\28unsigned\20long\29 +2352:ubidi_setPara_skia +2353:ubidi_getCustomizedClass_skia +2354:tt_set_mm_blend +2355:tt_face_get_ps_name +2356:trinkle +2357:t1_builder_check_points +2358:surface_getThreadId +2359:subdivide\28SkConic\20const&\2c\20SkPoint*\2c\20int\29 +2360:std::__2::vector>\2c\20std::__2::allocator>>>::__swap_out_circular_buffer\28std::__2::__split_buffer>\2c\20std::__2::allocator>>&>&\29 +2361:std::__2::vector>\2c\20std::__2::allocator>>>::__clear\5babi:ne180100\5d\28\29 +2362:std::__2::vector>\2c\20std::__2::allocator>>>::~vector\5babi:ne180100\5d\28\29 +2363:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +2364:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +2365:std::__2::vector\2c\20std::__2::allocator>>::push_back\5babi:ne180100\5d\28sk_sp\20const&\29 +2366:std::__2::vector\2c\20std::__2::allocator>>::__swap_out_circular_buffer\28std::__2::__split_buffer\2c\20std::__2::allocator>&>&\29 +2367:std::__2::vector>::push_back\5babi:ne180100\5d\28float&&\29 +2368:std::__2::vector>::__move_assign\28std::__2::vector>&\2c\20std::__2::integral_constant\29 +2369:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +2370:std::__2::unordered_map\2c\20std::__2::equal_to\2c\20std::__2::allocator>>::operator\5b\5d\28GrTriangulator::Vertex*\20const&\29 +2371:std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2372:std::__2::unique_ptr::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2373:std::__2::unique_ptr::Traits>::Slot\20\5b\5d\2c\20std::__2::default_delete::Traits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2374:std::__2::unique_ptr::AdaptedTraits>::Slot\20\5b\5d\2c\20std::__2::default_delete::AdaptedTraits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2375:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skgpu::ganesh::SurfaceDrawContext*\29 +2376:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2377:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skgpu::ganesh::PathRendererChain*\29 +2378:std::__2::unique_ptr\20\5b\5d\2c\20std::__2::default_delete\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2379:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28hb_face_t*\29 +2380:std::__2::unique_ptr::release\5babi:nn180100\5d\28\29 +2381:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2382:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2383:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2384:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2385:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2386:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2387:std::__2::moneypunct::do_decimal_point\28\29\20const +2388:std::__2::moneypunct::pos_format\5babi:nn180100\5d\28\29\20const +2389:std::__2::moneypunct::do_decimal_point\28\29\20const +2390:std::__2::locale::locale\28std::__2::locale\20const&\29 +2391:std::__2::locale::classic\28\29 +2392:std::__2::function::operator\28\29\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +2393:std::__2::function::operator\28\29\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29\20const +2394:std::__2::enable_if\2c\20int>::type\20impeller::saturated::Sub\28int\2c\20int\29 +2395:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:nn180100\5d\28unsigned\20int&\2c\20unsigned\20int&\29 +2396:std::__2::enable_if\28\29\20==\20std::declval\28\29\29\2c\20bool>\2c\20bool>::type\20std::__2::operator==\5babi:ne180100\5d\28std::__2::optional\20const&\2c\20std::__2::optional\20const&\29 +2397:std::__2::deque>::pop_front\28\29 +2398:std::__2::deque>::begin\5babi:ne180100\5d\28\29 +2399:std::__2::ctype::toupper\5babi:nn180100\5d\28char\29\20const +2400:std::__2::chrono::duration>::duration\5babi:nn180100\5d\28long\20long\20const&\29 +2401:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29 +2402:std::__2::basic_stringbuf\2c\20std::__2::allocator>::str\5babi:ne180100\5d\28\29\20const\20& +2403:std::__2::basic_string_view>::find\5babi:ne180100\5d\28char\2c\20unsigned\20long\29\20const +2404:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2405:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +2406:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +2407:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2408:std::__2::basic_string\2c\20std::__2::allocator>::pop_back\5babi:ne180100\5d\28\29 +2409:std::__2::basic_string\2c\20std::__2::allocator>::operator=\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +2410:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28char*\2c\20char*\2c\20std::__2::allocator\20const&\29 +2411:std::__2::basic_string\2c\20std::__2::allocator>::__get_short_size\5babi:nn180100\5d\28\29\20const +2412:std::__2::basic_string\2c\20std::__2::allocator>::__assign_external\28char\20const*\2c\20unsigned\20long\29 +2413:std::__2::basic_streambuf>::__pbump\5babi:nn180100\5d\28long\29 +2414:std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29 +2415:std::__2::basic_iostream>::~basic_iostream\28\29 +2416:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::OperatorKind&&\2c\20std::__2::unique_ptr>&&\29 +2417:std::__2::__tuple_impl\2c\20sk_sp\2c\20sk_sp>::~__tuple_impl\28\29 +2418:std::__2::__tuple_impl\2c\20GrFragmentProcessor\20const*\2c\20GrGeometryProcessor::ProgramImpl::TransformInfo>::__tuple_impl\28std::__2::__tuple_impl\2c\20GrFragmentProcessor\20const*\2c\20GrGeometryProcessor::ProgramImpl::TransformInfo>&&\29 +2419:std::__2::__tree\2c\20std::__2::__map_value_compare\2c\20std::__2::less\2c\20true>\2c\20std::__2::allocator>>::~__tree\28\29 +2420:std::__2::__throw_bad_variant_access\5babi:ne180100\5d\28\29 +2421:std::__2::__split_buffer>\2c\20std::__2::allocator>>&>::~__split_buffer\28\29 +2422:std::__2::__split_buffer>::push_front\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +2423:std::__2::__split_buffer>::push_back\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\20const&\29 +2424:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +2425:std::__2::__shared_weak_count::__release_shared\5babi:ne180100\5d\28\29 +2426:std::__2::__shared_count::__release_shared\5babi:nn180100\5d\28\29 +2427:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +2428:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +2429:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +2430:std::__2::__num_put_base::__format_int\28char*\2c\20char\20const*\2c\20bool\2c\20unsigned\20int\29 +2431:std::__2::__num_put_base::__format_float\28char*\2c\20char\20const*\2c\20unsigned\20int\29 +2432:std::__2::__itoa::__append8\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2433:std::__2::__function::__value_func::operator\28\29\5babi:ne180100\5d\28\29\20const +2434:std::__2::__function::__value_func::operator\28\29\5babi:ne180100\5d\28SkSL::Variable\20const&\29\20const +2435:skvx::Vec<8\2c\20unsigned\20short>\20skvx::operator+<8\2c\20unsigned\20short\2c\20unsigned\20short\2c\20void>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20short\29 +2436:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator&<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +2437:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator>=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +2438:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20double\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20double\29 +2439:skvx::Vec<2\2c\20unsigned\20char>\20skvx::cast\28skvx::Vec<2\2c\20float>\20const&\29 +2440:sktext::gpu::SubRun::~SubRun\28\29 +2441:sktext::gpu::GlyphVector::~GlyphVector\28\29 +2442:sktext::SkStrikePromise::strike\28\29 +2443:skif::\28anonymous\20namespace\29::draw_tiled_border\28SkCanvas*\2c\20SkTileMode\2c\20SkPaint\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::LayerSpace\2c\20skif::LayerSpace\29::$_1::operator\28\29\28SkPoint\20const&\2c\20SkPoint\20const&\29\20const +2444:skif::\28anonymous\20namespace\29::downscale_step_count\28float\29 +2445:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +2446:skif::LayerSpace\20skif::Mapping::paramToLayer\28skif::ParameterSpace\20const&\29\20const +2447:skif::LayerSpace::postConcat\28skif::LayerSpace\20const&\29 +2448:skif::LayerSpace\20skif::Mapping::deviceToLayer\28skif::DeviceSpace\20const&\29\20const +2449:skif::FilterResult::subset\28skif::LayerSpace\20const&\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +2450:skif::FilterResult::getAnalyzedShaderView\28skif::Context\20const&\2c\20SkSamplingOptions\20const&\2c\20SkEnumBitMask\29\20const +2451:skif::FilterResult::applyTransform\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkSamplingOptions\20const&\29\20const +2452:skif::FilterResult::applyCrop\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkTileMode\29\20const +2453:skif::FilterResult::analyzeBounds\28SkMatrix\20const&\2c\20SkIRect\20const&\2c\20skif::FilterResult::BoundsScope\29\20const +2454:skif::FilterResult::Builder::add\28skif::FilterResult\20const&\2c\20std::__2::optional>\2c\20SkEnumBitMask\2c\20SkSamplingOptions\20const&\29 +2455:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +2456:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +2457:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair&&\29 +2458:skia_private::THashTable::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +2459:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair&&\29 +2460:skia_private::THashTable::Pair\2c\20SkSL::Analysis::SpecializedCallKey\2c\20skia_private::THashMap::Pair>::Hash\28SkSL::Analysis::SpecializedCallKey\20const&\29 +2461:skia_private::THashTable::Traits>::uncheckedSet\28long\20long&&\29 +2462:skia_private::THashTable::Traits>::uncheckedSet\28int&&\29 +2463:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::resize\28int\29 +2464:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::find\28unsigned\20int\20const&\29\20const +2465:skia_private::THashMap::find\28unsigned\20int\20const&\29\20const +2466:skia_private::THashMap::operator\5b\5d\28SkSL::Variable\20const*\20const&\29 +2467:skia_private::TArray>\2c\20true>::destroyAll\28\29 +2468:skia_private::TArray>\2c\20true>::push_back\28std::__2::unique_ptr>&&\29 +2469:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2470:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +2471:skia_private::TArray::~TArray\28\29 +2472:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2473:skia_private::TArray::~TArray\28\29 +2474:skia_private::TArray\2c\20true>::~TArray\28\29 +2475:skia_private::TArray::push_back_n\28int\2c\20int\20const&\29 +2476:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +2477:skia_private::TArray<\28anonymous\20namespace\29::MeshOp::Mesh\2c\20true>::preallocateNewData\28int\2c\20double\29 +2478:skia_private::TArray<\28anonymous\20namespace\29::MeshOp::Mesh\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +2479:skia_private::TArray::clear\28\29 +2480:skia_private::TArray::operator=\28skia_private::TArray&&\29 +2481:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +2482:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2483:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +2484:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2485:skia_private::TArray::push_back\28GrRenderTask*&&\29 +2486:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +2487:skia_private::AutoSTMalloc<4ul\2c\20SkFontArguments::Palette::Override\2c\20void>::AutoSTMalloc\28unsigned\20long\29 +2488:skia_private::AutoSTArray<24\2c\20unsigned\20int>::reset\28int\29 +2489:skia_png_zstream_error +2490:skia_png_read_data +2491:skia_png_get_int_32 +2492:skia_png_chunk_unknown_handling +2493:skia_png_calloc +2494:skia::textlayout::TextWrapper::getClustersTrimmedWidth\28\29 +2495:skia::textlayout::TextWrapper::TextStretch::startFrom\28skia::textlayout::Cluster*\2c\20unsigned\20long\29 +2496:skia::textlayout::TextWrapper::TextStretch::extend\28skia::textlayout::Cluster*\29 +2497:skia::textlayout::TextLine::measureTextInsideOneRun\28skia::textlayout::SkRange\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20float\2c\20bool\2c\20skia::textlayout::TextLine::TextAdjustment\29\20const +2498:skia::textlayout::TextLine::isLastLine\28\29\20const +2499:skia::textlayout::Run::Run\28skia::textlayout::Run\20const&\29 +2500:skia::textlayout::ParagraphImpl::getLineNumberAt\28unsigned\20long\29\20const +2501:skia::textlayout::ParagraphImpl::findPreviousGraphemeBoundary\28unsigned\20long\29\20const +2502:skia::textlayout::ParagraphCacheKey::~ParagraphCacheKey\28\29 +2503:skia::textlayout::ParagraphBuilderImpl::startStyledBlock\28\29 +2504:skia::textlayout::OneLineShaper::RunBlock&\20std::__2::vector>::emplace_back\28skia::textlayout::OneLineShaper::RunBlock&\29 +2505:skia::textlayout::InternalLineMetrics::updateLineMetrics\28skia::textlayout::InternalLineMetrics&\29 +2506:skia::textlayout::InternalLineMetrics::runTop\28skia::textlayout::Run\20const*\2c\20skia::textlayout::LineMetricStyle\29\20const +2507:skia::textlayout::FontCollection::getFontManagerOrder\28\29\20const +2508:skia::textlayout::Decorations::calculateGaps\28skia::textlayout::TextLine::ClipContext\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\29 +2509:skia::textlayout::Cluster::runOrNull\28\29\20const +2510:skgpu::tess::PatchStride\28skgpu::tess::PatchAttribs\29 +2511:skgpu::tess::MiddleOutPolygonTriangulator::MiddleOutPolygonTriangulator\28int\2c\20SkPoint\29 +2512:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::fixedFunctionFlags\28\29\20const +2513:skgpu::ganesh::SurfaceFillContext::~SurfaceFillContext\28\29 +2514:skgpu::ganesh::SurfaceFillContext::replaceOpsTask\28\29 +2515:skgpu::ganesh::SurfaceDrawContext::fillQuadWithEdgeAA\28GrClip\20const*\2c\20GrPaint&&\2c\20GrQuadAAFlags\2c\20SkMatrix\20const&\2c\20SkPoint\20const*\2c\20SkPoint\20const*\29 +2516:skgpu::ganesh::SurfaceDrawContext::fillPixelsWithLocalMatrix\28GrClip\20const*\2c\20GrPaint&&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\29 +2517:skgpu::ganesh::SurfaceDrawContext::drawPaint\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\29 +2518:skgpu::ganesh::SurfaceDrawContext::MakeWithFallback\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +2519:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29 +2520:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29::$_0::$_0\28$_0&&\29 +2521:skgpu::ganesh::SurfaceContext::PixelTransferResult::operator=\28skgpu::ganesh::SurfaceContext::PixelTransferResult&&\29 +2522:skgpu::ganesh::SupportedTextureFormats\28GrImageContext\20const&\29::$_0::operator\28\29\28SkYUVAPixmapInfo::DataType\2c\20int\29\20const +2523:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +2524:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::coverageMode\28\29\20const +2525:skgpu::ganesh::PathInnerTriangulateOp::pushFanFillProgram\28GrTessellationShader::ProgramArgs\20const&\2c\20GrUserStencilSettings\20const*\29 +2526:skgpu::ganesh::OpsTask::deleteOps\28\29 +2527:skgpu::ganesh::OpsTask::OpChain::List::operator=\28skgpu::ganesh::OpsTask::OpChain::List&&\29 +2528:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29::$_0::operator\28\29\28int\29\20const +2529:skgpu::ganesh::ClipStack::clipRect\28SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrAA\2c\20SkClipOp\29 +2530:skgpu::TClientMappedBufferManager::BufferFinishedMessage::BufferFinishedMessage\28skgpu::TClientMappedBufferManager::BufferFinishedMessage&&\29 +2531:skgpu::Swizzle::Concat\28skgpu::Swizzle\20const&\2c\20skgpu::Swizzle\20const&\29 +2532:skgpu::Swizzle::CToI\28char\29 +2533:skcpu::Recorder::TODO\28\29 +2534:skcpu::Draw::drawPathCoverage\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkBlitter*\29\20const +2535:sk_sp::operator=\28sk_sp&&\29 +2536:sk_sp::reset\28SkMipmap*\29 +2537:sk_sp::~sk_sp\28\29 +2538:sk_sp::reset\28SkColorSpace*\29 +2539:sk_sp::~sk_sp\28\29 +2540:sk_sp::~sk_sp\28\29 +2541:skData_getSize +2542:shr +2543:shl +2544:sect_with_horizontal\28SkPoint\20const*\2c\20float\29 +2545:roughly_between\28double\2c\20double\2c\20double\29 +2546:pt_to_line\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +2547:psh_calc_max_height +2548:ps_mask_set_bit +2549:ps_dimension_set_mask_bits +2550:ps_builder_check_points +2551:ps_builder_add_point +2552:png_colorspace_endpoints_match +2553:path_is_trivial\28SkPath\20const&\29::Trivializer::addTrivialContourPoint\28SkPoint\20const&\29 +2554:output_char\28hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +2555:operator!=\28SkRect\20const&\2c\20SkRect\20const&\29 +2556:nearly_equal\28double\2c\20double\29 +2557:mbrtowc +2558:mask_gamma_cache_mutex\28\29 +2559:map_rect_perspective\28SkRect\20const&\2c\20float\20const*\29::$_0::operator\28\29\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20const +2560:lineMetrics_getEndIndex +2561:is_smooth_enough\28SkAnalyticEdge*\2c\20SkAnalyticEdge*\2c\20int\29 +2562:is_ICC_signature_char +2563:interpolate_local\28float\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float*\2c\20float*\2c\20float*\29 +2564:int\20_hb_cmp_method>\28void\20const*\2c\20void\20const*\29 +2565:impeller::\28anonymous\20namespace\29::RoundSuperellipseBuilder::AddOctant\28impeller::RoundSuperellipseParam::Octant\20const&\2c\20bool\2c\20bool\2c\20impeller::Matrix\20const&\29 +2566:impeller::Vector4::operator!=\28impeller::Vector4\20const&\29\20const +2567:impeller::TRect::IntersectsWithRect\28impeller::TRect\20const&\29\20const +2568:impeller::TRect::ClipAndInsert\28impeller::TPoint*\2c\20int\2c\20impeller::Vector3\20const&\2c\20impeller::Vector3\20const&\2c\20impeller::Vector3\20const&\29 +2569:impeller::TPoint::Normalize\28\29\20const +2570:impeller::NormalizeEmptyToZero\28impeller::TSize&\29 +2571:impeller::Matrix::TransformHomogenous\28impeller::TPoint\20const&\29\20const +2572:ilogbf +2573:hb_vector_t\2c\20false>::fini\28\29 +2574:hb_unicode_funcs_t::compose\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +2575:hb_syllabic_insert_dotted_circles\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +2576:hb_shape_full +2577:hb_serialize_context_t::~hb_serialize_context_t\28\29 +2578:hb_serialize_context_t::hb_serialize_context_t\28void*\2c\20unsigned\20int\29 +2579:hb_serialize_context_t::end_serialize\28\29 +2580:hb_paint_funcs_t::push_scale\28void*\2c\20float\2c\20float\29 +2581:hb_paint_funcs_t::push_font_transform\28void*\2c\20hb_font_t\20const*\29 +2582:hb_paint_funcs_t::push_clip_rectangle\28void*\2c\20float\2c\20float\2c\20float\2c\20float\29 +2583:hb_paint_extents_context_t::paint\28\29 +2584:hb_ot_map_builder_t::disable_feature\28unsigned\20int\29 +2585:hb_map_iter_t\2c\20OT::IntType\2c\20void\2c\20true>\20const>\2c\20hb_partial_t<2u\2c\20$_10\20const*\2c\20OT::ChainRuleSet\20const*>\2c\20\28hb_function_sortedness_t\290\2c\20\28void*\290>::__item__\28\29\20const +2586:hb_lazy_loader_t\2c\20hb_face_t\2c\2012u\2c\20OT::vmtx_accelerator_t>::get_stored\28\29\20const +2587:hb_lazy_loader_t\2c\20hb_face_t\2c\2038u\2c\20OT::sbix_accelerator_t>::do_destroy\28OT::sbix_accelerator_t*\29 +2588:hb_lazy_loader_t\2c\20hb_face_t\2c\2023u\2c\20OT::kern_accelerator_t>::get_stored\28\29\20const +2589:hb_lazy_loader_t\2c\20hb_face_t\2c\205u\2c\20OT::hmtx_accelerator_t>::do_destroy\28OT::hmtx_accelerator_t*\29 +2590:hb_lazy_loader_t\2c\20hb_face_t\2c\2016u\2c\20OT::cff1_accelerator_t>::get_stored\28\29\20const +2591:hb_lazy_loader_t\2c\20hb_face_t\2c\2025u\2c\20OT::GSUB_accelerator_t>::do_destroy\28OT::GSUB_accelerator_t*\29 +2592:hb_lazy_loader_t\2c\20hb_face_t\2c\2026u\2c\20OT::GPOS_accelerator_t>::get_stored\28\29\20const +2593:hb_lazy_loader_t\2c\20hb_face_t\2c\2028u\2c\20AAT::morx_accelerator_t>::do_destroy\28AAT::morx_accelerator_t*\29 +2594:hb_lazy_loader_t\2c\20hb_face_t\2c\2030u\2c\20AAT::kerx_accelerator_t>::do_destroy\28AAT::kerx_accelerator_t*\29 +2595:hb_lazy_loader_t\2c\20hb_face_t\2c\2034u\2c\20hb_blob_t>::get\28\29\20const +2596:hb_language_from_string +2597:hb_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>\2c\20OT::HBGlyphID16&>::operator*\28\29 +2598:hb_hashmap_t::alloc\28unsigned\20int\29 +2599:hb_font_t::parent_scale_position\28int*\2c\20int*\29 +2600:hb_font_t::get_h_extents_with_fallback\28hb_font_extents_t*\29 +2601:hb_font_t::changed\28\29 +2602:hb_decycler_node_t::~hb_decycler_node_t\28\29 +2603:hb_buffer_t::copy_glyph\28\29 +2604:hb_buffer_t::clear_positions\28\29 +2605:hb_blob_create_sub_blob +2606:hb_blob_create +2607:hb_bit_set_t::~hb_bit_set_t\28\29 +2608:hb_bit_set_t::union_\28hb_bit_set_t\20const&\29 +2609:hb_bit_set_t::resize\28unsigned\20int\2c\20bool\2c\20bool\29 +2610:get_cache\28\29 +2611:ftell +2612:ft_var_readpackedpoints +2613:ft_glyphslot_free_bitmap +2614:flutter::ToSk\28flutter::DlColorSource\20const*\29::$_0::operator\28\29\28flutter::DlGradientColorSourceBase\20const*\29\20const +2615:flutter::DlRuntimeEffectColorSource::~DlRuntimeEffectColorSource\28\29 +2616:flutter::DlGradientColorSourceBase::base_equals_\28flutter::DlGradientColorSourceBase\20const*\29\20const +2617:flutter::DlColorFilterImageFilter::size\28\29\20const +2618:flutter::DisplayListMatrixClipState::mapAndClipRect\28impeller::TRect\20const&\2c\20impeller::TRect*\29\20const +2619:flutter::DisplayListMatrixClipState::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +2620:flutter::DisplayListMatrixClipState::GetLocalCorners\28impeller::TPoint*\2c\20impeller::TRect\20const&\2c\20impeller::Matrix\20const&\29 +2621:flutter::DisplayListBuilder::~DisplayListBuilder\28\29 +2622:flutter::DisplayListBuilder::drawImage\28sk_sp\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20bool\29 +2623:flutter::DisplayListBuilder::drawImageRect\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20bool\2c\20flutter::DlSrcRectConstraint\29 +2624:flutter::DisplayListBuilder::drawImageNine\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20bool\29 +2625:flutter::DisplayListBuilder::drawAtlas\28sk_sp\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20bool\29 +2626:flutter::DisplayListBuilder::UpdateLayerResult\28flutter::DisplayListBuilder::OpResult\2c\20impeller::BlendMode\29 +2627:flutter::DisplayListBuilder::Transform\28impeller::Matrix\20const&\29 +2628:flutter::DisplayListBuilder::Skew\28float\2c\20float\29 +2629:flutter::DisplayListBuilder::Scale\28float\2c\20float\29 +2630:flutter::DisplayListBuilder::Rotate\28float\29 +2631:flutter::DisplayListBuilder::GetLocalClipCoverage\28\29\20const +2632:flutter::DisplayListBuilder::DrawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +2633:flutter::DisplayListBuilder::DrawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +2634:flutter::DisplayListBuilder::DrawPath\28flutter::DlPath\20const&\2c\20flutter::DlPaint\20const&\29 +2635:flutter::DisplayListBuilder::DrawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlPaint\20const&\29 +2636:flutter::DisplayListBuilder::DrawDisplayList\28sk_sp\2c\20float\29 +2637:flutter::DisplayListBuilder::ClipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +2638:float\20const*\20std::__2::min_element\5babi:ne180100\5d>\28float\20const*\2c\20float\20const*\2c\20std::__2::__less\29 +2639:float\20const*\20std::__2::max_element\5babi:ne180100\5d>\28float\20const*\2c\20float\20const*\2c\20std::__2::__less\29 +2640:filter_to_gl_mag_filter\28SkFilterMode\29 +2641:extract_mask_subset\28SkMask\20const&\2c\20SkIRect\2c\20int\2c\20int\29 +2642:exp +2643:equal_ulps\28float\2c\20float\2c\20int\2c\20int\29 +2644:dispose_chunk +2645:direct_blur_y\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +2646:derivative_at_t\28double\20const*\2c\20double\29 +2647:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkShaderBase&\2c\20bool\20const&\29::'lambda'\28void*\29>\28SkTransformShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2648:cubic_delta_from_line\28int\2c\20int\2c\20int\2c\20int\29 +2649:crop_rect_edge\28SkRect\20const&\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float*\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +2650:cleanup_program\28GrGLGpu*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +2651:clean_paint_for_drawVertices\28SkPaint\29 +2652:clean_paint_for_drawImage\28SkPaint\20const*\29 +2653:check_edge_against_rect\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkRect\20const&\2c\20SkPathDirection\29 +2654:checkOnCurve\28float\2c\20float\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +2655:char*\20sktext::gpu::BagOfBytes::allocateBytesFor\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +2656:cff_strcpy +2657:cff_size_get_globals_funcs +2658:cff_index_forget_element +2659:cf2_stack_setReal +2660:cf2_hint_init +2661:cf2_doStems +2662:cf2_doFlex +2663:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_4::operator\28\29\28float\29\20const +2664:buffer_verify_error\28hb_buffer_t*\2c\20hb_font_t*\2c\20char\20const*\2c\20...\29 +2665:bool\20hb_array_t::sanitize\28hb_sanitize_context_t*\29\20const +2666:bool\20flutter::Equals\28flutter::DlImageFilter\20const*\2c\20flutter::DlImageFilter\20const*\29 +2667:bool\20OT::would_match_input>\28OT::hb_would_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\29 +2668:bool\20OT::match_input>\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +2669:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +2670:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +2671:bool\20AAT::hb_aat_apply_context_t::output_glyphs\28unsigned\20int\2c\20OT::HBGlyphID16\20const*\29 +2672:blur_y_rect\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +2673:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29::$_0::operator\28\29\28unsigned\20char*\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29\20const +2674:blit_clipped_mask\28SkBlitter*\2c\20SkMask\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29 +2675:approx_arc_length\28SkPoint\20const*\2c\20int\29 +2676:antifillrect\28SkIRect\20const&\2c\20SkBlitter*\29 +2677:animatedImage_getCurrentFrame +2678:afm_parser_read_int +2679:af_sort_pos +2680:af_latin_hints_compute_segments +2681:acosf +2682:_hb_glyph_info_get_lig_num_comps\28hb_glyph_info_t\20const*\29 +2683:__uselocale +2684:__math_xflow +2685:__cxxabiv1::__base_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +2686:\28anonymous\20namespace\29::make_vertices_spec\28bool\2c\20bool\29 +2687:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +2688:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28unsigned\20int\20const*\29::operator\28\29\28unsigned\20int\20const*\29\20const +2689:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +2690:\28anonymous\20namespace\29::SkBlurImageFilter::kernelBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\29\20const +2691:\28anonymous\20namespace\29::RunIteratorQueue::insert\28SkShaper::RunIterator*\2c\20int\29 +2692:\28anonymous\20namespace\29::RunIteratorQueue::CompareEntry\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29 +2693:\28anonymous\20namespace\29::PathGeoBuilder::ensureSpace\28int\2c\20int\2c\20SkPoint\20const*\29 +2694:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMangledName\28char\20const*\29 +2695:\28anonymous\20namespace\29::FillRectOpImpl::vertexSpec\28\29\20const +2696:\28anonymous\20namespace\29::CacheImpl::removeInternal\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +2697:\28anonymous\20namespace\29::A8Pass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28unsigned\20int\29::operator\28\29\28unsigned\20int\29\20const +2698:WriteRingBuffer +2699:TT_Load_Context +2700:Skwasm::createDlRRect\28float\20const*\29 +2701:SkipCode +2702:SkYUVAPixmaps::~SkYUVAPixmaps\28\29 +2703:SkYUVAPixmaps::operator=\28SkYUVAPixmaps\20const&\29 +2704:SkYUVAPixmaps::SkYUVAPixmaps\28\29 +2705:SkWriter32::writeRRect\28SkRRect\20const&\29 +2706:SkWriter32::writeMatrix\28SkMatrix\20const&\29 +2707:SkWriter32::snapshotAsData\28\29\20const +2708:SkWBuffer::write\28void\20const*\2c\20unsigned\20long\29 +2709:SkVertices::approximateSize\28\29\20const +2710:SkTextBlobBuilder::~SkTextBlobBuilder\28\29 +2711:SkTextBlob::RunRecord::textBuffer\28\29\20const +2712:SkTextBlob::RunRecord::clusterBuffer\28\29\20const +2713:SkTextBlob::RunRecord::StorageSize\28unsigned\20int\2c\20unsigned\20int\2c\20SkTextBlob::GlyphPositioning\2c\20SkSafeMath*\29 +2714:SkTextBlob::RunRecord::Next\28SkTextBlob::RunRecord\20const*\29 +2715:SkTSpan::oppT\28double\29\20const +2716:SkTSpan::closestBoundedT\28SkDPoint\20const&\29\20const +2717:SkTSect::updateBounded\28SkTSpan*\2c\20SkTSpan*\2c\20SkTSpan*\29 +2718:SkTSect::trim\28SkTSpan*\2c\20SkTSect*\29 +2719:SkTSect::removeSpanRange\28SkTSpan*\2c\20SkTSpan*\29 +2720:SkTSect::removeCoincident\28SkTSpan*\2c\20bool\29 +2721:SkTSect::deleteEmptySpans\28\29 +2722:SkTInternalLList::Entry>::remove\28SkLRUCache::Entry*\29 +2723:SkTInternalLList>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry>::remove\28SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\29 +2724:SkTInternalLList>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry>::remove\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\29 +2725:SkTDStorage::insert\28int\2c\20int\2c\20void\20const*\29 +2726:SkTDStorage::insert\28int\29 +2727:SkTDStorage::erase\28int\2c\20int\29 +2728:SkTDArray::push_back\28int\20const&\29 +2729:SkTBlockList::pushItem\28\29 +2730:SkStrokeRec::applyToPath\28SkPathBuilder*\2c\20SkPath\20const&\29\20const +2731:SkString::set\28char\20const*\29 +2732:SkString::SkString\28unsigned\20long\29 +2733:SkString::Rec::Make\28char\20const*\2c\20unsigned\20long\29 +2734:SkStrikeSpec::MakeCanonicalized\28SkFont\20const&\2c\20SkPaint\20const*\29 +2735:SkStrikeCache::GlobalStrikeCache\28\29 +2736:SkStrike::glyph\28SkPackedGlyphID\29 +2737:SkSpriteBlitter::~SkSpriteBlitter\28\29 +2738:SkSpecialImages::MakeDeferredFromGpu\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +2739:SkSpecialImages::AsBitmap\28SkSpecialImage\20const*\2c\20SkBitmap*\29 +2740:SkShadowTessellator::MakeSpot\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkPoint3\20const&\2c\20float\2c\20bool\2c\20bool\29 +2741:SkShaders::MatrixRec::apply\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +2742:SkShaderBlurAlgorithm::renderBlur\28SkRuntimeEffectBuilder*\2c\20SkFilterMode\2c\20SkISize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::$_0::operator\28\29\28SkIRect\20const&\29\20const +2743:SkShaderBase::appendRootStages\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +2744:SkSemaphore::signal\28int\29 +2745:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +2746:SkScalerContext_FreeType::emboldenIfNeeded\28FT_FaceRec_*\2c\20FT_GlyphSlotRec_*\2c\20unsigned\20short\29 +2747:SkScalerContextRec::getMatrixFrom2x2\28\29\20const +2748:SkScaleToSides::AdjustRadii\28double\2c\20double\2c\20float*\2c\20float*\29 +2749:SkSamplingOptions::operator!=\28SkSamplingOptions\20const&\29\20const +2750:SkSL::write_stringstream\28SkSL::StringStream\20const&\2c\20SkSL::OutputStream&\29 +2751:SkSL::evaluate_3_way_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +2752:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29 +2753:SkSL::calculate_count\28double\2c\20double\2c\20double\2c\20bool\2c\20bool\29 +2754:SkSL::append_rtadjust_fixup_to_vertex_main\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::Block&\29::AppendRTAdjustFixupHelper::Pos\28\29\20const +2755:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +2756:SkSL::VarDeclaration::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\2c\20std::__2::unique_ptr>\29 +2757:SkSL::Type::priority\28\29\20const +2758:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20double\2c\20SkSL::Position\29\20const +2759:SkSL::Transform::EliminateDeadFunctions\28SkSL::Program&\29::$_0::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +2760:SkSL::SymbolTable::lookup\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +2761:SkSL::SymbolTable::isType\28std::__2::basic_string_view>\29\20const +2762:SkSL::Swizzle::MaskString\28skia_private::FixedArray<4\2c\20signed\20char>\20const&\29 +2763:SkSL::RP::SlotManager::mapVariableToSlots\28SkSL::Variable\20const&\2c\20SkSL::RP::SlotRange\29 +2764:SkSL::RP::Program::appendStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkSL::RP::Callbacks*\2c\20SkSpan\29\20const::$_0::operator\28\29\28\29\20const +2765:SkSL::RP::Program::appendCopy\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20std::byte*\2c\20SkSL::RP::ProgramOp\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29\20const +2766:SkSL::RP::Generator::store\28SkSL::RP::LValue&\29 +2767:SkSL::RP::Generator::popToSlotRangeUnmasked\28SkSL::RP::SlotRange\29 +2768:SkSL::RP::Builder::ternary_op\28SkSL::RP::BuilderOp\2c\20int\29 +2769:SkSL::RP::Builder::simplifyPopSlotsUnmasked\28SkSL::RP::SlotRange*\29 +2770:SkSL::RP::Builder::push_zeros\28int\29 +2771:SkSL::RP::Builder::push_loop_mask\28\29 +2772:SkSL::RP::Builder::pad_stack\28int\29 +2773:SkSL::RP::Builder::exchange_src\28\29 +2774:SkSL::ProgramVisitor::visit\28SkSL::Program\20const&\29 +2775:SkSL::ProgramUsage::remove\28SkSL::Statement\20const*\29 +2776:SkSL::PrefixExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +2777:SkSL::PipelineStage::PipelineStageCodeGenerator::typedVariable\28SkSL::Type\20const&\2c\20std::__2::basic_string_view>\29 +2778:SkSL::PipelineStage::PipelineStageCodeGenerator::typeName\28SkSL::Type\20const&\29 +2779:SkSL::Parser::parseInitializer\28SkSL::Position\2c\20std::__2::unique_ptr>*\29 +2780:SkSL::Parser::nextRawToken\28\29 +2781:SkSL::Parser::arrayType\28SkSL::Type\20const*\2c\20int\2c\20SkSL::Position\29 +2782:SkSL::Parser::AutoSymbolTable::AutoSymbolTable\28SkSL::Parser*\2c\20std::__2::unique_ptr>*\2c\20bool\29 +2783:SkSL::MethodReference::~MethodReference\28\29_6992 +2784:SkSL::MethodReference::~MethodReference\28\29 +2785:SkSL::LiteralType::priority\28\29\20const +2786:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sub\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +2787:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_dot\28std::__2::array\20const&\29 +2788:SkSL::InterfaceBlock::arraySize\28\29\20const +2789:SkSL::IndexExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +2790:SkSL::GLSLCodeGenerator::writeExtension\28std::__2::basic_string_view>\2c\20bool\29 +2791:SkSL::FieldAccess::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20int\2c\20SkSL::FieldAccessOwnerKind\29 +2792:SkSL::ConstructorArray::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +2793:SkSL::Compiler::convertProgram\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::ProgramSettings\20const&\29 +2794:SkSL::Block::isEmpty\28\29\20const +2795:SkSL::Block::Make\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +2796:SkSL::Block::MakeBlock\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +2797:SkSL::Analysis::DetectVarDeclarationWithoutScope\28SkSL::Statement\20const&\2c\20SkSL::ErrorReporter*\29 +2798:SkRuntimeEffect::Result::~Result\28\29 +2799:SkResourceCache::remove\28SkResourceCache::Rec*\29 +2800:SkRegion::writeToMemory\28void*\29\20const +2801:SkRegion::SkRegion\28SkRegion\20const&\29 +2802:SkRect::sort\28\29 +2803:SkRect::setBoundsCheck\28SkSpan\29 +2804:SkRect::offset\28SkPoint\20const&\29 +2805:SkRect::inset\28float\2c\20float\29 +2806:SkRecords::Optional::~Optional\28\29 +2807:SkRecords::NoOp*\20SkRecord::replace\28int\29 +2808:SkReadBuffer::skip\28unsigned\20long\29 +2809:SkRasterPipeline::tailPointer\28\29 +2810:SkRasterPipeline::appendMatrix\28SkArenaAlloc*\2c\20SkMatrix\20const&\29 +2811:SkRasterPipeline::addMemoryContext\28SkRasterPipelineContexts::MemoryCtx*\2c\20int\2c\20bool\2c\20bool\29 +2812:SkRRect::setOval\28SkRect\20const&\29 +2813:SkRRect::initializeRect\28SkRect\20const&\29 +2814:SkRGBA4f<\28SkAlphaType\293>::operator==\28SkRGBA4f<\28SkAlphaType\293>\20const&\29\20const +2815:SkQuads::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +2816:SkPixelRef::~SkPixelRef\28\29 +2817:SkPixelRef::SkPixelRef\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +2818:SkPictureRecord::~SkPictureRecord\28\29 +2819:SkPictureRecord::recordRestoreOffsetPlaceholder\28\29 +2820:SkPathStroker::quadStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +2821:SkPathStroker::preJoinTo\28SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\2c\20bool\29 +2822:SkPathStroker::intersectRay\28SkQuadConstruct*\2c\20SkPathStroker::IntersectRayType\29\20const +2823:SkPathStroker::cubicStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +2824:SkPathStroker::cubicPerpRay\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +2825:SkPathStroker::conicStroke\28SkConic\20const&\2c\20SkQuadConstruct*\29 +2826:SkPathRef::computeBounds\28\29\20const +2827:SkPathRef::SkPathRef\28int\2c\20int\2c\20int\29 +2828:SkPathPriv::IsRectContour\28SkSpan\2c\20SkSpan\2c\20bool\29 +2829:SkPathBuilder::transform\28SkMatrix\20const&\29 +2830:SkPathBuilder::addRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +2831:SkPathBuilder::addPath\28SkPath\20const&\2c\20SkPath::AddPathMode\29 +2832:SkPathBuilder::SkPathBuilder\28SkPathFillType\29 +2833:SkPath::reset\28\29 +2834:SkPath::quadTo\28float\2c\20float\2c\20float\2c\20float\29 +2835:SkPath::makeFillType\28SkPathFillType\29\20const +2836:SkPaint::operator=\28SkPaint&&\29 +2837:SkPaint::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +2838:SkPaint::canComputeFastBounds\28\29\20const +2839:SkOpSpanBase::mergeMatches\28SkOpSpanBase*\29 +2840:SkOpSpanBase::addOpp\28SkOpSpanBase*\29 +2841:SkOpSegment::updateOppWinding\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\29\20const +2842:SkOpSegment::subDivide\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkDCurve*\29\20const +2843:SkOpSegment::setUpWindings\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\2c\20int*\2c\20int*\2c\20int*\2c\20int*\2c\20int*\29 +2844:SkOpSegment::nextChase\28SkOpSpanBase**\2c\20int*\2c\20SkOpSpan**\2c\20SkOpSpanBase**\29\20const +2845:SkOpSegment::markAndChaseDone\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpSpanBase**\29 +2846:SkOpSegment::isSimple\28SkOpSpanBase**\2c\20int*\29\20const +2847:SkOpSegment::init\28SkPoint*\2c\20float\2c\20SkOpContour*\2c\20SkPath::Verb\29 +2848:SkOpEdgeBuilder::complete\28\29 +2849:SkOpContour::appendSegment\28\29 +2850:SkOpCoincidence::overlap\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20double*\2c\20double*\29\20const +2851:SkOpCoincidence::add\28SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\29 +2852:SkOpCoincidence::addIfMissing\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20double\2c\20double\2c\20SkOpSegment*\2c\20SkOpSegment*\2c\20bool*\29 +2853:SkOpCoincidence::addExpanded\28\29 +2854:SkOpCoincidence::addEndMovedSpans\28SkOpPtT\20const*\29 +2855:SkOpCoincidence::TRange\28SkOpPtT\20const*\2c\20double\2c\20SkOpSegment\20const*\29 +2856:SkOpAngle::set\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +2857:SkOpAngle::loopCount\28\29\20const +2858:SkOpAngle::insert\28SkOpAngle*\29 +2859:SkOpAngle*\20SkArenaAlloc::make\28\29 +2860:SkNoPixelsDevice::ClipState::op\28SkClipOp\2c\20SkM44\20const&\2c\20SkRect\20const&\2c\20bool\2c\20bool\29 +2861:SkMipmap*\20SkSafeRef\28SkMipmap*\29 +2862:SkMeshSpecification::Varying::Varying\28SkMeshSpecification::Varying\20const&\29 +2863:SkMatrixPriv::DifferentialAreaScale\28SkMatrix\20const&\2c\20SkPoint\20const&\29 +2864:SkMatrix::setRotate\28float\29 +2865:SkMatrix::preservesRightAngles\28float\29\20const +2866:SkMatrix::mapRectToQuad\28SkPoint*\2c\20SkRect\20const&\29\20const +2867:SkMatrix::mapPointPerspective\28SkPoint\29\20const +2868:SkM44::setConcat\28SkM44\20const&\2c\20SkM44\20const&\29::$_0::operator\28\29\28skvx::Vec<4\2c\20float>\29\20const +2869:SkM44::normalizePerspective\28\29 +2870:SkM44::invert\28SkM44*\29\20const +2871:SkLineClipper::IntersectLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\29 +2872:SkImage_Ganesh::makeView\28GrRecordingContext*\29\20const +2873:SkImage_Base::~SkImage_Base\28\29 +2874:SkImage_Base::isGaneshBacked\28\29\20const +2875:SkImage_Base::SkImage_Base\28SkImageInfo\20const&\2c\20unsigned\20int\29 +2876:SkImageInfo::validRowBytes\28unsigned\20long\29\20const +2877:SkImageGenerator::~SkImageGenerator\28\29 +2878:SkImageFilters::Crop\28SkRect\20const&\2c\20SkTileMode\2c\20sk_sp\29 +2879:SkImageFilter_Base::~SkImageFilter_Base\28\29 +2880:SkIRect::makeInset\28int\2c\20int\29\20const +2881:SkHalfToFloat\28unsigned\20short\29 +2882:SkGradientBaseShader::commonAsAGradient\28SkShaderBase::GradientInfo*\29\20const +2883:SkGradientBaseShader::ValidGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\29 +2884:SkGradientBaseShader::SkGradientBaseShader\28SkGradientBaseShader::Descriptor\20const&\2c\20SkMatrix\20const&\29 +2885:SkGradientBaseShader::MakeDegenerateGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20float\20const*\2c\20int\2c\20sk_sp\2c\20SkTileMode\29 +2886:SkGetPolygonWinding\28SkPoint\20const*\2c\20int\29 +2887:SkFontMgr::RefEmpty\28\29 +2888:SkFont::setTypeface\28sk_sp\29 +2889:SkFont::getBounds\28SkSpan\2c\20SkSpan\2c\20SkPaint\20const*\29\20const +2890:SkEmptyFontMgr::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +2891:SkEdgeBuilder::~SkEdgeBuilder\28\29 +2892:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29 +2893:SkDrawable::draw\28SkCanvas*\2c\20SkMatrix\20const*\29 +2894:SkDevice::~SkDevice\28\29 +2895:SkDevice::scalerContextFlags\28\29\20const +2896:SkDQuad::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +2897:SkDPoint::distance\28SkDPoint\20const&\29\20const +2898:SkDLine::NearPointV\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +2899:SkDLine::NearPointH\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +2900:SkDCubic::RootsValidT\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +2901:SkConicalGradient::~SkConicalGradient\28\29 +2902:SkComputeRadialSteps\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float*\2c\20float*\2c\20int*\29 +2903:SkColorFilterPriv::MakeGaussian\28\29 +2904:SkColorFilter::filterColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\2c\20SkColorSpace*\29\20const +2905:SkColorConverter::SkColorConverter\28unsigned\20int\20const*\2c\20int\29 +2906:SkCoincidentSpans::correctOneEnd\28SkOpPtT\20const*\20\28SkCoincidentSpans::*\29\28\29\20const\2c\20void\20\28SkCoincidentSpans::*\29\28SkOpPtT\20const*\29\29 +2907:SkClosestRecord::findEnd\28SkTSpan\20const*\2c\20SkTSpan\20const*\2c\20int\2c\20int\29 +2908:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\20const*\2c\20int\29 +2909:SkChopCubicAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +2910:SkCanvas::setMatrix\28SkM44\20const&\29 +2911:SkCanvas::init\28sk_sp\29 +2912:SkCanvas::drawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +2913:SkCanvas::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +2914:SkCanvas::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +2915:SkCanvas::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +2916:SkCanvas::canAttemptBlurredRRectDraw\28SkPaint\20const&\29\20const +2917:SkCanvas::attemptBlurredRRectDraw\28SkRRect\20const&\2c\20SkBlurMaskFilterImpl\20const*\2c\20SkPaint\20const&\2c\20SkEnumBitMask\29 +2918:SkCachedData::detachFromCacheAndUnref\28\29\20const +2919:SkCachedData::attachToCacheAndRef\28\29\20const +2920:SkBitmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +2921:SkBitmap::pixelRefOrigin\28\29\20const +2922:SkBitmap::operator=\28SkBitmap&&\29 +2923:SkBitmap::notifyPixelsChanged\28\29\20const +2924:SkBitmap::getGenerationID\28\29\20const +2925:SkBitmap::getAddr\28int\2c\20int\29\20const +2926:SkBitmap::extractSubset\28SkBitmap*\2c\20SkIRect\20const&\29\20const +2927:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29 +2928:SkAutoPixmapStorage::tryAlloc\28SkImageInfo\20const&\29 +2929:SkArenaAllocWithReset::SkArenaAllocWithReset\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +2930:SkAAClip::setPath\28SkPath\20const&\2c\20SkIRect\20const&\2c\20bool\29 +2931:SkAAClip::quickContains\28SkIRect\20const&\29\20const +2932:SkAAClip::op\28SkAAClip\20const&\2c\20SkClipOp\29 +2933:SkAAClip::Builder::flushRowH\28SkAAClip::Builder::Row*\29 +2934:SkAAClip::Builder::Blitter::checkForYGap\28int\29 +2935:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29 +2936:ReadHuffmanCode +2937:OT::post::accelerator_t::find_glyph_name\28unsigned\20int\29\20const +2938:OT::hb_ot_layout_lookup_accelerator_t::fini\28\29 +2939:OT::hb_ot_layout_lookup_accelerator_t::apply\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20bool\29\20const +2940:OT::hb_ot_apply_context_t::skipping_iterator_t::match\28hb_glyph_info_t&\29 +2941:OT::hb_ot_apply_context_t::_set_glyph_class\28unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +2942:OT::glyf_accelerator_t::glyph_for_gid\28unsigned\20int\2c\20bool\29\20const +2943:OT::cff1::accelerator_templ_t>::std_code_to_glyph\28unsigned\20int\29\20const +2944:OT::apply_lookup\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20OT::LookupRecord\20const*\2c\20unsigned\20int\29 +2945:OT::VarRegionList::evaluate\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +2946:OT::Lookup::get_props\28\29\20const +2947:OT::Layout::GSUB_impl::SubstLookup*\20hb_serialize_context_t::copy\28\29\20const +2948:OT::Layout::GPOS_impl::ValueFormat::get_device\28OT::IntType\20const*\2c\20bool*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20hb_sanitize_context_t&\29 +2949:OT::Layout::GPOS_impl::Anchor::get_anchor\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20float*\2c\20float*\29\20const +2950:OT::ItemVariationStore::create_cache\28\29\20const +2951:OT::IntType*\20hb_serialize_context_t::extend_min>\28OT::IntType*\29 +2952:OT::GSUBGPOS::get_script\28unsigned\20int\29\20const +2953:OT::GSUBGPOS::get_feature_tag\28unsigned\20int\29\20const +2954:OT::GSUBGPOS::find_script_index\28unsigned\20int\2c\20unsigned\20int*\29\20const +2955:OT::GDEF::get_glyph_props\28unsigned\20int\29\20const +2956:OT::ClassDef::cost\28\29\20const +2957:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +2958:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +2959:OT::CFFIndex>::offset_at\28unsigned\20int\29\20const +2960:OT::ArrayOf>*\20hb_serialize_context_t::extend_size>>\28OT::ArrayOf>*\2c\20unsigned\20long\2c\20bool\29 +2961:Move_Zp2_Point +2962:Modify_CVT_Check +2963:GrYUVATextureProxies::operator=\28GrYUVATextureProxies&&\29 +2964:GrYUVATextureProxies::GrYUVATextureProxies\28\29 +2965:GrXPFactory::FromBlendMode\28SkBlendMode\29 +2966:GrWindowRectangles::operator=\28GrWindowRectangles\20const&\29 +2967:GrTriangulator::~GrTriangulator\28\29 +2968:GrTriangulator::simplify\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +2969:GrTriangulator::setTop\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2970:GrTriangulator::mergeCollinearEdges\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2971:GrTriangulator::mergeCoincidentVertices\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29\20const +2972:GrTriangulator::emitTriangle\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20skgpu::VertexWriter\29\20const +2973:GrTriangulator::allocateEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20GrTriangulator::EdgeType\29 +2974:GrTriangulator::FindEnclosingEdges\28GrTriangulator::Vertex\20const&\2c\20GrTriangulator::EdgeList\20const&\2c\20GrTriangulator::Edge**\2c\20GrTriangulator::Edge**\29 +2975:GrTriangulator::Edge::dist\28SkPoint\20const&\29\20const +2976:GrTriangulator::Edge::Edge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20GrTriangulator::EdgeType\29 +2977:GrThreadSafeCache::remove\28skgpu::UniqueKey\20const&\29 +2978:GrThreadSafeCache::internalFind\28skgpu::UniqueKey\20const&\29 +2979:GrThreadSafeCache::internalAdd\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +2980:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +2981:GrTextureEffect::GrTextureEffect\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20GrTextureEffect::Sampling\20const&\29 +2982:GrTessellationShader::MakePipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedClip&&\2c\20GrProcessorSet&&\29 +2983:GrSurfaceProxyView::operator!=\28GrSurfaceProxyView\20const&\29\20const +2984:GrSurfaceProxyView::concatSwizzle\28skgpu::Swizzle\29 +2985:GrSurfaceProxy::~GrSurfaceProxy\28\29 +2986:GrSurfaceProxy::isFunctionallyExact\28\29\20const +2987:GrSurfaceProxy::gpuMemorySize\28\29\20const +2988:GrSurfaceProxy::createSurfaceImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\29\20const +2989:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20GrSurfaceProxy::RectsMustMatch\2c\20sk_sp*\29 +2990:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20sk_sp*\29 +2991:GrStyledShape::hasUnstyledKey\28\29\20const +2992:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +2993:GrStyle::GrStyle\28GrStyle\20const&\29 +2994:GrSkSLFP::setInput\28std::__2::unique_ptr>\29 +2995:GrSimpleMeshDrawOpHelper::CreatePipeline\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20skgpu::Swizzle\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrProcessorSet&&\2c\20GrPipeline::InputFlags\29 +2996:GrSimpleMesh::set\28sk_sp\2c\20int\2c\20int\29 +2997:GrShape::simplifyRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20unsigned\20int\29 +2998:GrShape::simplifyRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20unsigned\20int\29 +2999:GrShape::simplifyPoint\28SkPoint\20const&\2c\20unsigned\20int\29 +3000:GrShape::simplifyLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\29 +3001:GrShape::setInverted\28bool\29 +3002:GrSWMaskHelper::init\28SkIRect\20const&\29 +3003:GrSWMaskHelper::GrSWMaskHelper\28SkAutoPixmapStorage*\29 +3004:GrResourceProvider::refNonAAQuadIndexBuffer\28\29 +3005:GrRenderTask::addTarget\28GrDrawingManager*\2c\20sk_sp\29 +3006:GrRenderTarget::~GrRenderTarget\28\29 +3007:GrQuadUtils::WillUseHairline\28GrQuad\20const&\2c\20GrAAType\2c\20GrQuadAAFlags\29 +3008:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::unpackQuad\28GrQuad::Type\2c\20float\20const*\2c\20GrQuad*\29\20const +3009:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::MetadataIter::next\28\29 +3010:GrProxyProvider::processInvalidUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\2c\20GrProxyProvider::InvalidateGPUResource\29 +3011:GrProxyProvider::createMippedProxyFromBitmap\28SkBitmap\20const&\2c\20skgpu::Budgeted\29::$_0::~$_0\28\29 +3012:GrProgramInfo::GrProgramInfo\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrGeometryProcessor\20const*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +3013:GrPipeline::visitProxies\28std::__2::function\20const&\29\20const +3014:GrPathUtils::scaleToleranceToSrc\28float\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +3015:GrPathUtils::generateQuadraticPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +3016:GrPathUtils::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +3017:GrPathUtils::cubicPointCount\28SkPoint\20const*\2c\20float\29 +3018:GrPaint::GrPaint\28GrPaint\20const&\29 +3019:GrOpsRenderPass::prepareToDraw\28\29 +3020:GrOpFlushState::~GrOpFlushState\28\29 +3021:GrOpFlushState::drawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +3022:GrOpFlushState::bindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const&\2c\20GrPipeline\20const&\29 +3023:GrOp::uniqueID\28\29\20const +3024:GrNativeRect::MakeIRectRelativeTo\28GrSurfaceOrigin\2c\20int\2c\20SkIRect\29 +3025:GrMeshDrawOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +3026:GrMapRectPoints\28SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkPoint*\2c\20int\29 +3027:GrMakeKeyFromImageID\28skgpu::UniqueKey*\2c\20unsigned\20int\2c\20SkIRect\20const&\29 +3028:GrGradientShader::MakeGradientFP\28SkGradientBaseShader\20const&\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\2c\20std::__2::unique_ptr>\2c\20SkMatrix\20const*\29 +3029:GrGpuResource::setUniqueKey\28skgpu::UniqueKey\20const&\29 +3030:GrGpuResource::registerWithCache\28skgpu::Budgeted\29 +3031:GrGpu::writePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +3032:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +3033:GrGLTexture::onSetLabel\28\29 +3034:GrGLTexture::onAbandon\28\29 +3035:GrGLTexture::backendFormat\28\29\20const +3036:GrGLSLVaryingHandler::appendDecls\28SkTBlockList\20const&\2c\20SkString*\29\20const +3037:GrGLSLShaderBuilder::newTmpVarName\28char\20const*\29 +3038:GrGLSLShaderBuilder::definitionAppend\28char\20const*\29 +3039:GrGLSLProgramBuilder::invokeFP\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +3040:GrGLSLProgramBuilder::advanceStage\28\29 +3041:GrGLSLFragmentShaderBuilder::dstColor\28\29 +3042:GrGLRenderTarget::bindInternal\28unsigned\20int\2c\20bool\29 +3043:GrGLGpu::unbindXferBuffer\28GrGpuBufferType\29 +3044:GrGLGpu::resolveRenderFBOs\28GrGLRenderTarget*\2c\20SkIRect\20const&\2c\20GrGLRenderTarget::ResolveDirection\2c\20bool\29 +3045:GrGLGpu::flushBlendAndColorWrite\28skgpu::BlendInfo\20const&\2c\20skgpu::Swizzle\20const&\29 +3046:GrGLGpu::currentProgram\28\29 +3047:GrGLGpu::SamplerObjectCache::Sampler::~Sampler\28\29 +3048:GrGLGpu::HWVertexArrayState::setVertexArrayID\28GrGLGpu*\2c\20unsigned\20int\29 +3049:GrGLGetVersionFromString\28char\20const*\29 +3050:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\29 +3051:GrGLFunction::GrGLFunction\28unsigned\20char\20const*\20\28*\29\28unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\29 +3052:GrGLFinishCallbacks::callAll\28bool\29 +3053:GrGLCheckLinkStatus\28GrGLGpu\20const*\2c\20unsigned\20int\2c\20bool\2c\20skgpu::ShaderErrorHandler*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const**\2c\20SkSL::NativeShader\20const*\29 +3054:GrGLAttribArrayState::set\28GrGLGpu*\2c\20int\2c\20GrBuffer\20const*\2c\20GrVertexAttribType\2c\20SkSLType\2c\20int\2c\20unsigned\20long\2c\20int\29 +3055:GrFragmentProcessors::Make\28SkBlenderBase\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20GrFPArgs\20const&\29 +3056:GrFragmentProcessor::isEqual\28GrFragmentProcessor\20const&\29\20const +3057:GrFragmentProcessor::Rect\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRect\29 +3058:GrFragmentProcessor::ModulateRGBA\28std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3059:GrDstProxyView::setProxyView\28GrSurfaceProxyView\29 +3060:GrDrawingManager::removeRenderTasks\28\29 +3061:GrDrawingManager::getPathRenderer\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\2c\20bool\2c\20skgpu::ganesh::PathRendererChain::DrawType\2c\20skgpu::ganesh::PathRenderer::StencilSupport*\29 +3062:GrDrawingManager::getLastRenderTask\28GrSurfaceProxy\20const*\29\20const +3063:GrDrawOpAtlas::updatePlot\28GrDeferredUploadTarget*\2c\20skgpu::AtlasLocator*\2c\20skgpu::Plot*\29::'lambda'\28std::__2::function&\29::\28'lambda'\28std::__2::function&\29\20const&\29 +3064:GrDrawOpAtlas::processEvictionAndResetRects\28skgpu::Plot*\29 +3065:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29 +3066:GrDeferredProxyUploader::wait\28\29 +3067:GrCpuBuffer::Make\28unsigned\20long\29 +3068:GrContext_Base::~GrContext_Base\28\29 +3069:GrColorSpaceXform::Make\28SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +3070:GrColorInfo::operator=\28GrColorInfo\20const&\29 +3071:GrClip::IsPixelAligned\28SkRect\20const&\29 +3072:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29::'lambda0'\28float\29::operator\28\29\28float\29\20const +3073:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3074:GrCaps::supportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +3075:GrCaps::getFallbackColorTypeAndFormat\28GrColorType\2c\20int\29\20const +3076:GrCaps::areColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +3077:GrBufferAllocPool::~GrBufferAllocPool\28\29_9500 +3078:GrBufferAllocPool::makeSpace\28unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\29 +3079:GrBufferAllocPool::GrBufferAllocPool\28GrGpu*\2c\20GrGpuBufferType\2c\20sk_sp\29 +3080:GrBlurUtils::DrawShapeWithMaskFilter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\29 +3081:GrBackendTexture::GrBackendTexture\28GrBackendTexture\20const&\29 +3082:GrBackendRenderTarget::getBackendFormat\28\29\20const +3083:GrAAConvexTessellator::createOuterRing\28GrAAConvexTessellator::Ring\20const&\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring*\29 +3084:GrAAConvexTessellator::createInsetRings\28GrAAConvexTessellator::Ring&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring**\29 +3085:GrAAConvexTessellator::Ring::init\28GrAAConvexTessellator\20const&\29 +3086:FwDCubicEvaluator::FwDCubicEvaluator\28SkPoint\20const*\29 +3087:FT_Stream_ReadAt +3088:FT_Stream_Free +3089:FT_Set_Charmap +3090:FT_New_Size +3091:FT_Load_Sfnt_Table +3092:FT_List_Find +3093:FT_GlyphLoader_Add +3094:FT_Get_Next_Char +3095:FT_Get_Color_Glyph_Layer +3096:FT_CMap_New +3097:FT_Activate_Size +3098:Current_Ratio +3099:Compute_Funcs +3100:CircleOp::Circle&\20skia_private::TArray::emplace_back\28CircleOp::Circle&&\29 +3101:CFF::path_procs_t\2c\20cff2_path_param_t>::curve2\28CFF::cff2_cs_interp_env_t&\2c\20cff2_path_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3102:CFF::path_procs_t\2c\20cff2_extents_param_t>::curve2\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3103:CFF::path_procs_t::curve2\28CFF::cff1_cs_interp_env_t&\2c\20cff1_path_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3104:CFF::path_procs_t::curve2\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3105:CFF::parsed_values_t::operator=\28CFF::parsed_values_t&&\29 +3106:CFF::cs_interp_env_t>>::return_from_subr\28\29 +3107:CFF::cs_interp_env_t>>::call_subr\28CFF::biased_subrs_t>>\20const&\2c\20CFF::cs_type_t\29 +3108:CFF::cs_interp_env_t>>::call_subr\28CFF::biased_subrs_t>>\20const&\2c\20CFF::cs_type_t\29 +3109:CFF::cff2_cs_interp_env_t::~cff2_cs_interp_env_t\28\29 +3110:CFF::byte_str_ref_t::operator\5b\5d\28int\29 +3111:CFF::arg_stack_t::push_fixed_from_substr\28CFF::byte_str_ref_t&\29 +3112:AsGaneshRecorder\28SkRecorder*\29 +3113:AlmostLessOrEqualUlps\28float\2c\20float\29 +3114:AlmostEqualUlps_Pin\28double\2c\20double\29 +3115:ActiveEdge::intersect\28ActiveEdge\20const*\29 +3116:AAT::hb_aat_apply_context_t::~hb_aat_apply_context_t\28\29 +3117:AAT::hb_aat_apply_context_t::hb_aat_apply_context_t\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +3118:AAT::TrackTableEntry::get_value\28float\2c\20void\20const*\2c\20hb_array_t\2c\2016u>\20const>\29\20const +3119:AAT::StateTable::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +3120:AAT::StateTable::get_class\28unsigned\20int\2c\20unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +3121:AAT::StateTable::get_entry\28int\2c\20unsigned\20int\29\20const +3122:AAT::Lookup::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +3123:AAT::ClassTable>::get_class\28unsigned\20int\2c\20unsigned\20int\29\20const +3124:2911 +3125:2912 +3126:2913 +3127:2914 +3128:2915 +3129:2916 +3130:2917 +3131:week_num +3132:wcrtomb +3133:void\20std::__2::vector>::__construct_at_end\28skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20unsigned\20long\29 +3134:void\20std::__2::vector>::__construct_at_end\28SkString*\2c\20SkString*\2c\20unsigned\20long\29 +3135:void\20std::__2::__sort4\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +3136:void\20std::__2::__sort4\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +3137:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +3138:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +3139:void\20std::__2::__inplace_merge\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +3140:void\20skgpu::ganesh::SurfaceFillContext::clear<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3141:void\20skgpu::VertexWriter::writeQuad\28GrQuad\20const&\29 +3142:void\20merge_sort<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +3143:void\20merge_sort<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +3144:void\20hb_stable_sort\2c\20unsigned\20int>\28OT::HBGlyphID16*\2c\20unsigned\20int\2c\20int\20\28*\29\28OT::IntType\20const*\2c\20OT::IntType\20const*\29\2c\20unsigned\20int*\29 +3145:void\20hb_buffer_t::collect_codepoints\28hb_set_digest_t&\29\20const +3146:void\20SkSafeUnref\28SkMeshSpecification*\29 +3147:void\20SkSafeUnref\28SkMeshPriv::VB\20const*\29 +3148:void\20SkSafeUnref\28GrTexture*\29\20\28.4927\29 +3149:void\20SkSafeUnref\28GrCpuBuffer*\29 +3150:vfprintf +3151:valid_args\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20unsigned\20long*\29 +3152:uprv_malloc_skia +3153:update_offset_to_base\28char\20const*\2c\20long\29 +3154:unsigned\20long\20std::__2::__str_find\5babi:ne180100\5d\2c\204294967295ul>\28char\20const*\2c\20unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +3155:unsigned\20long\20const&\20std::__2::min\5babi:nn180100\5d\28unsigned\20long\20const&\2c\20unsigned\20long\20const&\29 +3156:unsigned\20int\20hb_buffer_t::group_end\28unsigned\20int\2c\20bool\20\20const\28&\29\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29\29\20const +3157:ubidi_getRuns_skia +3158:u_charMirror_skia +3159:tt_size_reset +3160:tt_sbit_decoder_load_metrics +3161:tt_glyphzone_done +3162:tt_face_get_location +3163:tt_face_find_bdf_prop +3164:tt_delta_interpolate +3165:tt_cmap14_find_variant +3166:tt_cmap14_char_map_nondef_binary +3167:tt_cmap14_char_map_def_binary +3168:top12_15245 +3169:tolower +3170:t1_cmap_unicode_done +3171:subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +3172:strtox.9871 +3173:strtox +3174:strtoull_l +3175:std::logic_error::~logic_error\28\29_16638 +3176:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +3177:std::__2::vector>::reserve\28unsigned\20long\29 +3178:std::__2::vector>\2c\20std::__2::allocator>>>::erase\28std::__2::__wrap_iter>\20const*>\2c\20std::__2::__wrap_iter>\20const*>\29 +3179:std::__2::vector\2c\20std::__2::allocator>>::vector\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29 +3180:std::__2::vector>::__alloc\5babi:nn180100\5d\28\29 +3181:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +3182:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +3183:std::__2::vector\2c\20std::__2::allocator>>::vector\5babi:ne180100\5d\28std::__2::vector\2c\20std::__2::allocator>>&&\29 +3184:std::__2::vector>::push_back\5babi:ne180100\5d\28int\20const&\29 +3185:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +3186:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +3187:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +3188:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +3189:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +3190:std::__2::vector>::push_back\5babi:ne180100\5d\28SkString\20const&\29 +3191:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +3192:std::__2::vector>::push_back\5babi:ne180100\5d\28SkMeshSpecification::Attribute&&\29 +3193:std::__2::unique_ptr\2c\20void*>\2c\20std::__2::__hash_node_destructor\2c\20void*>>>>::~unique_ptr\5babi:ne180100\5d\28\29 +3194:std::__2::unique_ptr::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3195:std::__2::unique_ptr\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3196:std::__2::unique_ptr>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3197:std::__2::unique_ptr::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3198:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3199:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3200:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkTypeface_FreeType::FaceRec*\29 +3201:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkStrikeSpec*\29 +3202:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3203:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3204:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Pool*\29 +3205:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Block*\29 +3206:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkDrawableList*\29 +3207:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3208:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkContourMeasureIter::Impl*\29 +3209:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3210:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3211:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3212:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrGLGpu::SamplerObjectCache*\29 +3213:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28std::nullptr_t\29 +3214:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3215:std::__2::unique_ptr>\20GrBlendFragmentProcessor::Make<\28SkBlendMode\296>\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3216:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrDrawingManager*\29 +3217:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrClientMappedBufferManager*\29 +3218:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3219:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28FT_FaceRec_*\29 +3220:std::__2::tuple&\20std::__2::tuple::operator=\5babi:ne180100\5d\28std::__2::pair&&\29 +3221:std::__2::time_put>>::~time_put\28\29 +3222:std::__2::pair\20std::__2::minmax\5babi:ne180100\5d>\28std::initializer_list\2c\20std::__2::__less\29 +3223:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28char\29 +3224:std::__2::optional::value\5babi:ne180100\5d\28\29\20& +3225:std::__2::optional::value\5babi:ne180100\5d\28\29\20& +3226:std::__2::locale::locale\28\29 +3227:std::__2::locale::__imp::acquire\28\29 +3228:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\29 +3229:std::__2::ios_base::~ios_base\28\29 +3230:std::__2::ios_base::setstate\5babi:ne180100\5d\28unsigned\20int\29 +3231:std::__2::hash>::operator\28\29\5babi:ne180100\5d\28std::__2::optional\20const&\29\20const +3232:std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::operator\28\29\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29\20const +3233:std::__2::function\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const +3234:std::__2::fpos<__mbstate_t>::fpos\5babi:nn180100\5d\28long\20long\29 +3235:std::__2::enable_if::value\2c\20SkRuntimeEffectBuilder::BuilderUniform&>::type\20SkRuntimeEffectBuilder::BuilderUniform::operator=\28SkV2\20const&\29 +3236:std::__2::deque>::__back_spare\5babi:ne180100\5d\28\29\20const +3237:std::__2::default_delete::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::_EnableIfConvertible::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot>::type\20std::__2::default_delete::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot>\28skia_private::THashTable::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot*\29\20const +3238:std::__2::default_delete::Traits>::Slot\20\5b\5d>::_EnableIfConvertible::Traits>::Slot>::type\20std::__2::default_delete::Traits>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Traits>::Slot>\28skia_private::THashTable::Traits>::Slot*\29\20const +3239:std::__2::chrono::__libcpp_steady_clock_now\28\29 +3240:std::__2::char_traits::move\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +3241:std::__2::char_traits::assign\5babi:nn180100\5d\28char*\2c\20unsigned\20long\2c\20char\29 +3242:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_15588 +3243:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28wchar_t\29 +3244:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +3245:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28wchar_t\20const*\29 +3246:std::__2::basic_string\2c\20std::__2::allocator>::resize\28unsigned\20long\2c\20char\29 +3247:std::__2::basic_string\2c\20std::__2::allocator>::__make_iterator\5babi:nn180100\5d\28char*\29 +3248:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +3249:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +3250:std::__2::basic_streambuf>::~basic_streambuf\28\29 +3251:std::__2::basic_streambuf>::setp\5babi:nn180100\5d\28char*\2c\20char*\29 +3252:std::__2::basic_ostream>::~basic_ostream\28\29 +3253:std::__2::basic_ostream>::flush\28\29 +3254:std::__2::basic_istream>::~basic_istream\28\29 +3255:std::__2::basic_istream>::sentry::sentry\28std::__2::basic_istream>&\2c\20bool\29 +3256:std::__2::basic_iostream>::~basic_iostream\28\29_15490 +3257:std::__2::array\20skgpu::ganesh::SurfaceFillContext::adjustColorAlphaType<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\29\20const +3258:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +3259:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +3260:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +3261:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +3262:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +3263:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +3264:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28GrRecordingContext*&&\2c\20GrSurfaceProxyView&&\2c\20GrSurfaceProxyView&&\2c\20GrColorInfo\20const&\29 +3265:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28GrRecordingContext*&\2c\20skgpu::ganesh::PathRendererChain::Options&\29 +3266:std::__2::__unique_if>::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\2c\20GrDirectContext::DirectContextID>\28GrDirectContext::DirectContextID&&\29 +3267:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::SymbolTable*&\2c\20bool&\29 +3268:std::__2::__tuple_impl\2c\20GrSurfaceProxyView\2c\20sk_sp>::~__tuple_impl\28\29 +3269:std::__2::__split_buffer>::__destruct_at_end\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock**\2c\20std::__2::integral_constant\29 +3270:std::__2::__split_buffer&>::~__split_buffer\28\29 +3271:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +3272:std::__2::__split_buffer&>::~__split_buffer\28\29 +3273:std::__2::__optional_destruct_base>\2c\20false>::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3274:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3275:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +3276:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3277:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3278:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +3279:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20wchar_t*\2c\20wchar_t&\2c\20wchar_t&\29 +3280:std::__2::__num_get::__stage2_float_loop\28wchar_t\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20wchar_t*\29 +3281:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20char*\2c\20char&\2c\20char&\29 +3282:std::__2::__num_get::__stage2_float_loop\28char\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20char*\29 +3283:std::__2::__murmur2_or_cityhash::operator\28\29\5babi:ne180100\5d\28void\20const*\2c\20unsigned\20long\29\20const +3284:std::__2::__libcpp_wcrtomb_l\5babi:nn180100\5d\28char*\2c\20wchar_t\2c\20__mbstate_t*\2c\20__locale_struct*\29 +3285:std::__2::__itoa::__base_10_u32\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +3286:std::__2::__itoa::__append6\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +3287:std::__2::__itoa::__append4\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +3288:std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::~__hash_table\28\29 +3289:std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::~__hash_table\28\29 +3290:std::__2::__function::__value_func\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\5babi:ne180100\5d\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const +3291:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28std::__2::__function::__base*\29\20const +3292:skvx::Vec<4\2c\20unsigned\20short>\20skvx::to_half<4>\28skvx::Vec<4\2c\20float>\20const&\29 +3293:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator~<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +3294:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator|<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +3295:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +3296:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +3297:skvx::Vec<4\2c\20int>\20skvx::operator~<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\29 +3298:skvx::Vec<4\2c\20int>\20skvx::operator&<4\2c\20int\2c\20int\2c\20void>\28skvx::Vec<4\2c\20int>\20const&\2c\20int\29 +3299:skvx::Vec<4\2c\20float>&\20skvx::operator+=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +3300:sktext::gpu::VertexFiller::flatten\28SkWriteBuffer&\29\20const +3301:sktext::gpu::VertexFiller::deviceRectAndCheckTransform\28SkMatrix\20const&\29\20const +3302:sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry::find\28sktext::gpu::TextBlob::Key\20const&\29\20const +3303:sktext::gpu::SubRunAllocator::SubRunAllocator\28char*\2c\20int\2c\20int\29 +3304:sktext::gpu::GlyphVector::flatten\28SkWriteBuffer&\29\20const +3305:sktext::gpu::GlyphVector::Make\28sktext::SkStrikePromise&&\2c\20SkSpan\2c\20sktext::gpu::SubRunAllocator*\29 +3306:sktext::gpu::BagOfBytes::PlatformMinimumSizeWithOverhead\28int\2c\20int\29 +3307:sktext::gpu::AtlasSubRun::AtlasSubRun\28sktext::gpu::VertexFiller&&\2c\20sktext::gpu::GlyphVector&&\29 +3308:sktext::SkStrikePromise::flatten\28SkWriteBuffer&\29\20const +3309:sktext::GlyphRunList::sourceBoundsWithOrigin\28\29\20const +3310:skpaint_to_grpaint_impl\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::optional>>\2c\20SkBlender*\2c\20GrPaint*\29 +3311:skip_literal_string +3312:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11267 +3313:skif::LayerSpace::ceil\28\29\20const +3314:skif::LayerSpace\20skif::Mapping::paramToLayer\28skif::ParameterSpace\20const&\29\20const +3315:skif::LayerSpace::inverseMapRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29\20const +3316:skif::LayerSpace::inset\28skif::LayerSpace\20const&\29 +3317:skif::FilterResult::operator=\28skif::FilterResult\20const&\29 +3318:skif::FilterResult::insetByPixel\28\29\20const +3319:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20bool\2c\20SkBlender\20const*\29\20const +3320:skif::FilterResult::applyColorFilter\28skif::Context\20const&\2c\20sk_sp\29\20const +3321:skif::FilterResult::FilterResult\28sk_sp\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult::PixelBoundary\29 +3322:skif::FilterResult::Builder::~Builder\28\29 +3323:skif::Context::withNewSource\28skif::FilterResult\20const&\29\20const +3324:skif::Context::operator=\28skif::Context&&\29 +3325:skif::Backend::~Backend\28\29 +3326:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot::reset\28\29 +3327:skia_private::THashTable::Pair\2c\20SkSL::Symbol\20const*\2c\20skia_private::THashMap::Pair>::firstPopulatedSlot\28\29\20const +3328:skia_private::THashTable::Pair\2c\20SkSL::Symbol\20const*\2c\20skia_private::THashMap::Pair>::Iter>::operator++\28\29 +3329:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +3330:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot::reset\28\29 +3331:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot::reset\28\29 +3332:skia_private::THashTable::Traits>::Hash\28long\20long\20const&\29 +3333:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::Hash\28SkImageFilterCacheKey\20const&\29 +3334:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::findOrNull\28skgpu::ScratchKey\20const&\29\20const +3335:skia_private::THashTable::Traits>::set\28SkSL::Variable\20const*\29 +3336:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::uncheckedSet\28SkLRUCache::Entry*&&\29 +3337:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +3338:skia_private::THashTable::Traits>::Hash\28FT_Opaque_Paint_\20const&\29 +3339:skia_private::THashMap\2c\20SkGoodHash>::find\28SkString\20const&\29\20const +3340:skia_private::THashMap>\2c\20SkGoodHash>::set\28SkSL::Variable\20const*\2c\20std::__2::unique_ptr>\29 +3341:skia_private::THashMap::operator\5b\5d\28SkSL::SymbolTable::SymbolKey\20const&\29 +3342:skia_private::THashMap::find\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +3343:skia_private::THashMap::find\28SkSL::IRNode\20const*\20const&\29\20const +3344:skia_private::THashMap::set\28SkSL::FunctionDeclaration\20const*\2c\20SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::FunctionState\29 +3345:skia_private::THashMap>\2c\20SkGoodHash>::find\28SkImageFilter\20const*\20const&\29\20const +3346:skia_private::TArray::resize_back\28int\29 +3347:skia_private::TArray::push_back_raw\28int\29 +3348:skia_private::TArray::operator==\28skia_private::TArray\20const&\29\20const +3349:skia_private::TArray\2c\20true>::push_back\28std::__2::array&&\29 +3350:skia_private::TArray\2c\20false>::~TArray\28\29 +3351:skia_private::TArray::clear\28\29 +3352:skia_private::TArray::clear\28\29 +3353:skia_private::TArray::TArray\28skia_private::TArray\20const&\29 +3354:skia_private::TArray::TArray\28skia_private::TArray\20const&\29 +3355:skia_private::TArray::~TArray\28\29 +3356:skia_private::TArray::move\28void*\29 +3357:skia_private::TArray::BufferFinishedMessage\2c\20false>::~TArray\28\29 +3358:skia_private::TArray::BufferFinishedMessage\2c\20false>::move\28void*\29 +3359:skia_private::TArray\2c\20true>::~TArray\28\29 +3360:skia_private::TArray\2c\20true>::push_back\28sk_sp&&\29 +3361:skia_private::TArray::reserve_exact\28int\29 +3362:skia_private::TArray\2c\20true>::Allocate\28int\2c\20double\29 +3363:skia_private::TArray::reserve_exact\28int\29 +3364:skia_private::TArray::Allocate\28int\2c\20double\29 +3365:skia_private::TArray::reserve_exact\28int\29 +3366:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +3367:skia_private::TArray::~TArray\28\29 +3368:skia_private::TArray::move\28void*\29 +3369:skia_private::AutoSTMalloc<8ul\2c\20unsigned\20int\2c\20void>::reset\28unsigned\20long\29 +3370:skia_private::AutoSTArray<6\2c\20SkResourceCache::Key>::reset\28int\29 +3371:skia_private::AutoSTArray<20\2c\20SkGlyph\20const*>::reset\28int\29 +3372:skia_private::AutoSTArray<16\2c\20SkRect>::reset\28int\29 +3373:skia_png_sig_cmp +3374:skia_png_set_text_2 +3375:skia_png_realloc_array +3376:skia_png_get_uint_31 +3377:skia_png_check_fp_string +3378:skia_png_check_fp_number +3379:skia_png_app_warning +3380:skia_png_app_error +3381:skia::textlayout::\28anonymous\20namespace\29::intersected\28skia::textlayout::SkRange\20const&\2c\20skia::textlayout::SkRange\20const&\29 +3382:skia::textlayout::\28anonymous\20namespace\29::draw_line_as_rect\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +3383:skia::textlayout::TypefaceFontStyleSet::createTypeface\28int\29 +3384:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29 +3385:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::$_0::operator\28\29\28sk_sp\2c\20sk_sp\29\20const +3386:skia::textlayout::TextLine::iterateThroughSingleRunByStyles\28skia::textlayout::TextLine::TextAdjustment\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::StyleType\2c\20std::__2::function\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\20const&\29\20const::$_0::operator\28\29\28skia::textlayout::SkRange\2c\20float\29\20const +3387:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const +3388:skia::textlayout::TextBox&\20std::__2::vector>::emplace_back\28SkRect&\2c\20skia::textlayout::TextDirection&&\29 +3389:skia::textlayout::StrutStyle::StrutStyle\28skia::textlayout::StrutStyle\20const&\29 +3390:skia::textlayout::Run::isResolved\28\29\20const +3391:skia::textlayout::Run::copyTo\28SkTextBlobBuilder&\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +3392:skia::textlayout::Run::calculateWidth\28unsigned\20long\2c\20unsigned\20long\2c\20bool\29\20const +3393:skia::textlayout::Run::calculateHeight\28skia::textlayout::LineMetricStyle\2c\20skia::textlayout::LineMetricStyle\29\20const +3394:skia::textlayout::ParagraphStyle::ParagraphStyle\28skia::textlayout::ParagraphStyle&&\29 +3395:skia::textlayout::ParagraphImpl::getGlyphPositionAtCoordinate\28float\2c\20float\29 +3396:skia::textlayout::ParagraphImpl::findNextGraphemeBoundary\28unsigned\20long\29\20const +3397:skia::textlayout::ParagraphImpl::findAllBlocks\28skia::textlayout::SkRange\29 +3398:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29::$_0::operator\28\29\28\29\20const::'lambda'\28unsigned\20long\29::operator\28\29\28unsigned\20long\29\20const +3399:skia::textlayout::ParagraphImpl::buildClusterTable\28\29 +3400:skia::textlayout::ParagraphCacheKey::operator==\28skia::textlayout::ParagraphCacheKey\20const&\29\20const +3401:skia::textlayout::ParagraphBuilderImpl::ensureUTF16Mapping\28\29::$_0::operator\28\29\28\29\20const::'lambda'\28unsigned\20long\29::operator\28\29\28unsigned\20long\29\20const +3402:skia::textlayout::ParagraphBuilderImpl::ensureUTF16Mapping\28\29 +3403:skia::textlayout::ParagraphBuilderImpl::endRunIfNeeded\28\29 +3404:skia::textlayout::OneLineShaper::~OneLineShaper\28\29 +3405:skia::textlayout::OneLineShaper::FontKey::~FontKey\28\29 +3406:skia::textlayout::LineMetrics::LineMetrics\28\29 +3407:skia::textlayout::FontCollection::FamilyKey::~FamilyKey\28\29 +3408:skia::textlayout::FontArguments::CloneTypeface\28sk_sp\20const&\29\20const +3409:skia::textlayout::Cluster::isSoftBreak\28\29\20const +3410:skia::textlayout::Block::Block\28skia::textlayout::Block\20const&\29 +3411:skgpu::tess::AffineMatrix::AffineMatrix\28SkMatrix\20const&\29 +3412:skgpu::ganesh::\28anonymous\20namespace\29::add_quad_segment\28SkPoint\20const*\2c\20skia_private::TArray*\29 +3413:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::Entry::Entry\28skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::Entry&&\29 +3414:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::~Impl\28\29 +3415:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::programInfo\28\29 +3416:skgpu::ganesh::SurfaceFillContext::internalClear\28SkIRect\20const*\2c\20std::__2::array\2c\20bool\29 +3417:skgpu::ganesh::SurfaceFillContext::discard\28\29 +3418:skgpu::ganesh::SurfaceFillContext::addOp\28std::__2::unique_ptr>\29 +3419:skgpu::ganesh::SurfaceDrawContext::wrapsVkSecondaryCB\28\29\20const +3420:skgpu::ganesh::SurfaceDrawContext::stencilRect\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const*\29 +3421:skgpu::ganesh::SurfaceDrawContext::drawPath\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrStyle\20const&\29 +3422:skgpu::ganesh::SurfaceDrawContext::attemptQuadOptimization\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20DrawQuad*\2c\20GrPaint*\29 +3423:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +3424:skgpu::ganesh::SurfaceContext::rescale\28GrImageInfo\20const&\2c\20GrSurfaceOrigin\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29 +3425:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29::$_0::operator\28\29\28GrSurfaceProxyView\2c\20SkIRect\29\20const +3426:skgpu::ganesh::SurfaceContext::SurfaceContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +3427:skgpu::ganesh::SmallPathShapeDataKey::operator==\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29\20const +3428:skgpu::ganesh::QuadPerEdgeAA::MinColorType\28SkRGBA4f<\28SkAlphaType\292>\29 +3429:skgpu::ganesh::PathTessellator::~PathTessellator\28\29 +3430:skgpu::ganesh::PathCurveTessellator::draw\28GrOpFlushState*\29\20const +3431:skgpu::ganesh::OpsTask::~OpsTask\28\29 +3432:skgpu::ganesh::OpsTask::recordOp\28std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const*\2c\20GrCaps\20const&\29 +3433:skgpu::ganesh::MakeFragmentProcessorFromView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +3434:skgpu::ganesh::FilterAndMipmapHaveNoEffect\28GrQuad\20const&\2c\20GrQuad\20const&\29 +3435:skgpu::ganesh::FillRectOp::MakeNonAARect\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +3436:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::can_use_hw_derivatives_with_coverage\28skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +3437:skgpu::ganesh::FillRRectOp::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +3438:skgpu::ganesh::Device::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +3439:skgpu::ganesh::Device::drawImageQuadDirect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +3440:skgpu::ganesh::Device::Make\28std::__2::unique_ptr>\2c\20SkAlphaType\2c\20skgpu::ganesh::Device::InitContents\29 +3441:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::setup_dashed_rect\28SkRect\20const&\2c\20skgpu::VertexWriter&\2c\20SkMatrix\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashCap\29 +3442:skgpu::ganesh::ClipStack::~ClipStack\28\29 +3443:skgpu::ganesh::ClipStack::writableSaveRecord\28bool*\29 +3444:skgpu::ganesh::ClipStack::end\28\29\20const +3445:skgpu::ganesh::ClipStack::clip\28skgpu::ganesh::ClipStack::RawElement&&\29 +3446:skgpu::ganesh::ClipStack::clipState\28\29\20const +3447:skgpu::ganesh::ClipStack::SaveRecord::invalidateMasks\28GrProxyProvider*\2c\20SkTBlockList*\29 +3448:skgpu::ganesh::ClipStack::SaveRecord::genID\28\29\20const +3449:skgpu::ganesh::ClipStack::RawElement::operator=\28skgpu::ganesh::ClipStack::RawElement&&\29 +3450:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::SaveRecord\20const&\29\20const +3451:skgpu::ganesh::ClipStack::RawElement::RawElement\28SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\2c\20SkClipOp\29 +3452:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +3453:skgpu::Swizzle::apply\28SkRasterPipeline*\29\20const +3454:skgpu::Swizzle::applyTo\28std::__2::array\29\20const +3455:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29 +3456:skgpu::ScratchKey::GenerateResourceType\28\29 +3457:skgpu::RectanizerSkyline::reset\28\29 +3458:skgpu::Plot::addSubImage\28int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +3459:skgpu::AutoCallback::AutoCallback\28skgpu::AutoCallback&&\29 +3460:skcpu::make_paint_with_image\28SkPaint\20const&\2c\20SkBitmap\20const&\2c\20SkSamplingOptions\20const&\2c\20SkMatrix*\29 +3461:skcpu::DrawTreatAAStrokeAsHairline\28float\2c\20SkMatrix\20const&\2c\20float*\29 +3462:skcpu::Draw::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +3463:skcpu::Draw::drawDevicePoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\2c\20SkDevice*\29\20const +3464:skcpu::Draw::Draw\28skcpu::Draw\20const&\29 +3465:skcms_TransferFunction_invert +3466:skcms_Matrix3x3_invert +3467:sk_sp::~sk_sp\28\29 +3468:sk_sp::operator=\28sk_sp&&\29 +3469:sk_sp::reset\28GrTextureProxy*\29 +3470:sk_sp::reset\28GrTexture*\29 +3471:sk_sp::operator=\28sk_sp&&\29 +3472:sk_sp::reset\28GrCpuBuffer*\29 +3473:sk_sp&\20sk_sp::operator=\28sk_sp&&\29 +3474:sk_sp&\20sk_sp::operator=\28sk_sp\20const&\29 +3475:sk_ft_free\28FT_MemoryRec_*\2c\20void*\29 +3476:sift +3477:set_initial_texture_params\28GrGLInterface\20const*\2c\20GrGLCaps\20const&\2c\20unsigned\20int\29 +3478:setLevelsOutsideIsolates\28UBiDi*\2c\20int\2c\20int\2c\20unsigned\20char\29 +3479:sect_with_vertical\28SkPoint\20const*\2c\20float\29 +3480:sampler_key\28GrTextureType\2c\20skgpu::Swizzle\20const&\2c\20GrCaps\20const&\29 +3481:round\28SkPoint*\29 +3482:read_color_line +3483:quick_inverse\28int\29 +3484:quad_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3485:psh_globals_set_scale +3486:ps_tofixedarray +3487:ps_parser_skip_PS_token +3488:ps_mask_test_bit +3489:ps_mask_table_alloc +3490:ps_mask_ensure +3491:ps_dimension_reset_mask +3492:ps_builder_init +3493:ps_builder_done +3494:pow +3495:portable::parametric_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3496:portable::hsl_to_rgb_k\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3497:portable::gamma__k\28float\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3498:portable::PQish_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3499:portable::HLGish_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3500:portable::HLGinvish_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3501:points_are_colinear_and_b_is_middle\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float*\29 +3502:png_zlib_inflate +3503:png_inflate_read +3504:png_inflate_claim +3505:png_build_8bit_table +3506:png_build_16bit_table +3507:operator==\28SkPath\20const&\2c\20SkPath\20const&\29 +3508:operator!=\28SkString\20const&\2c\20SkString\20const&\29 +3509:normalize +3510:non-virtual\20thunk\20to\20GrOpFlushState::deferredUploadTarget\28\29 +3511:nextafterf +3512:mv_mul\28skcms_Matrix3x3\20const*\2c\20skcms_Vector3\20const*\29 +3513:move_nearby\28SkOpContourHead*\29 +3514:make_unpremul_effect\28std::__2::unique_ptr>\29 +3515:machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>::operator==\28machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\20const&\29\20const +3516:long\20std::__2::__libcpp_atomic_refcount_decrement\5babi:nn180100\5d\28long&\29 +3517:long\20const&\20std::__2::min\5babi:nn180100\5d\28long\20const&\2c\20long\20const&\29 +3518:log1p +3519:load_truetype_glyph +3520:load\28unsigned\20char\20const*\2c\20int\2c\20void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\29 +3521:line_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3522:lineMetrics_getStartIndex +3523:just_solid_color\28SkPaint\20const&\29 +3524:is_reflex_vertex\28SkPoint\20const*\2c\20int\2c\20float\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +3525:inner_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +3526:inflate_table +3527:impeller::TRect::GetCenter\28\29\20const +3528:impeller::TRect::Contains\28impeller::TRect\20const&\29\20const +3529:impeller::TRect::Contains\28impeller::TPoint\20const&\29\20const +3530:impeller::TPoint::GetLength\28\29\20const +3531:impeller::TPoint::GetDistanceSquared\28impeller::TPoint\20const&\29\20const +3532:impeller::RoundingRadii::AreAllCornersSame\28float\29\20const +3533:impeller::RoundRect::MakeRectRadii\28impeller::TRect\20const&\2c\20impeller::RoundingRadii\20const&\29 +3534:impeller::Matrix::operator==\28impeller::Matrix\20const&\29\20const +3535:impeller::Matrix::IsIdentity\28\29\20const +3536:impeller::Matrix::IsFinite\28\29\20const +3537:image_getWidth +3538:image_filter_color_type\28SkColorInfo\20const&\29 +3539:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +3540:hb_vector_t::push\28\29 +3541:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +3542:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +3543:hb_vector_t::push\28\29 +3544:hb_vector_t::extend\28hb_array_t\29 +3545:hb_vector_t\2c\20false>::shrink_vector\28unsigned\20int\29 +3546:hb_vector_t::push\28\29 +3547:hb_utf8_t::next\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20int*\2c\20unsigned\20int\29 +3548:hb_shape_plan_destroy +3549:hb_set_digest_t::add\28unsigned\20int\29 +3550:hb_script_get_horizontal_direction +3551:hb_pool_t::alloc\28\29 +3552:hb_paint_funcs_t::push_clip_glyph\28void*\2c\20unsigned\20int\2c\20hb_font_t*\29 +3553:hb_paint_funcs_t::image\28void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\29 +3554:hb_paint_funcs_t::color\28void*\2c\20int\2c\20unsigned\20int\29 +3555:hb_paint_extents_context_t::push_clip\28hb_extents_t\29 +3556:hb_lazy_loader_t\2c\20hb_face_t\2c\202u\2c\20hb_blob_t>::get\28\29\20const +3557:hb_lazy_loader_t\2c\20hb_face_t\2c\201u\2c\20hb_blob_t>::get\28\29\20const +3558:hb_lazy_loader_t\2c\20hb_face_t\2c\2018u\2c\20hb_blob_t>::get\28\29\20const +3559:hb_lazy_loader_t\2c\20hb_face_t\2c\203u\2c\20OT::cmap_accelerator_t>::get_stored\28\29\20const +3560:hb_lazy_loader_t\2c\20hb_face_t\2c\2032u\2c\20hb_blob_t>::get\28\29\20const +3561:hb_lazy_loader_t\2c\20hb_face_t\2c\2028u\2c\20AAT::morx_accelerator_t>::get_stored\28\29\20const +3562:hb_lazy_loader_t\2c\20hb_face_t\2c\2029u\2c\20AAT::mort_accelerator_t>::get_stored\28\29\20const +3563:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\2c\20hb_pair_t>>::operator-\28unsigned\20int\29\20const +3564:hb_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>\2c\20OT::HBGlyphID16&>::end\28\29\20const +3565:hb_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>\2c\20hb_pair_t>::operator++\28\29\20& +3566:hb_hashmap_t::item_t::operator==\28hb_serialize_context_t::object_t\20const*\20const&\29\20const +3567:hb_font_t::has_glyph_h_origin_func\28\29 +3568:hb_font_t::has_func\28unsigned\20int\29 +3569:hb_font_t::get_nominal_glyphs\28unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\29 +3570:hb_font_t::get_glyph_v_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +3571:hb_font_t::get_glyph_v_advances\28unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\29 +3572:hb_font_t::get_glyph_h_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +3573:hb_font_t::get_glyph_h_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +3574:hb_font_t::get_glyph_h_advances\28unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\29 +3575:hb_font_t::get_glyph_contour_point_for_origin\28unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20int*\2c\20int*\29 +3576:hb_font_funcs_destroy +3577:hb_draw_cubic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +3578:hb_decycler_node_t::hb_decycler_node_t\28hb_decycler_t&\29 +3579:hb_buffer_t::output_info\28hb_glyph_info_t\20const&\29 +3580:hb_buffer_t::_infos_set_glyph_flags\28hb_glyph_info_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +3581:hb_buffer_t::_infos_find_min_cluster\28hb_glyph_info_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +3582:hb_buffer_set_length +3583:hb_buffer_create +3584:hb_bounds_t*\20hb_vector_t::push\28hb_bounds_t&&\29 +3585:hb_bit_set_t::fini\28\29 +3586:hb_bit_page_t::add_range\28unsigned\20int\2c\20unsigned\20int\29 +3587:haircubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +3588:gray_render_line +3589:gl_target_to_gr_target\28unsigned\20int\29 +3590:gl_target_to_binding_index\28unsigned\20int\29 +3591:get_vendor\28char\20const*\29 +3592:get_renderer\28char\20const*\2c\20GrGLExtensions\20const&\29 +3593:get_layer_mapping_and_bounds\28SkSpan>\2c\20SkM44\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\2c\20float\29 +3594:get_joining_type\28unsigned\20int\2c\20hb_unicode_general_category_t\29 +3595:get_child_table_pointer +3596:generate_distance_field_from_image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\29 +3597:gaussianIntegral\28float\29 +3598:ft_var_readpackeddeltas +3599:ft_var_done_item_variation_store +3600:ft_glyphslot_alloc_bitmap +3601:ft_face_get_mm_service +3602:freelocale +3603:fputc +3604:fp_barrierf +3605:flutter::ToSkColor4f\28flutter::DlColor\29 +3606:flutter::DlSkPaintDispatchHelper::save_opacity\28float\29 +3607:flutter::DlSkCanvasDispatcher::~DlSkCanvasDispatcher\28\29 +3608:flutter::DlSkCanvasDispatcher::save\28\29 +3609:flutter::DlSkCanvasDispatcher::drawDisplayList\28sk_sp\2c\20float\29 +3610:flutter::DlRuntimeEffectColorSource::DlRuntimeEffectColorSource\28sk_sp\2c\20std::__2::vector\2c\20std::__2::allocator>>\2c\20std::__2::shared_ptr>>\29 +3611:flutter::DlPath::WillRenderSkPath\28\29\20const +3612:flutter::DlPaint::DlPaint\28flutter::DlPaint&&\29 +3613:flutter::DlLocalMatrixImageFilter::type\28\29\20const +3614:flutter::DlComposeImageFilter::~DlComposeImageFilter\28\29 +3615:flutter::DlComposeImageFilter::type\28\29\20const +3616:flutter::DlColorSource::MakeSweep\28impeller::TPoint\2c\20float\2c\20float\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +3617:flutter::DlColorSource::MakeRadial\28impeller::TPoint\2c\20float\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +3618:flutter::DlColorSource::MakeLinear\28impeller::TPoint\2c\20impeller::TPoint\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +3619:flutter::DlColorSource::MakeConical\28impeller::TPoint\2c\20float\2c\20impeller::TPoint\2c\20float\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +3620:flutter::DlColor::withColorSpace\28flutter::DlColorSpace\29\20const +3621:flutter::DlColor::operator==\28flutter::DlColor\20const&\29\20const +3622:flutter::DlBlurMaskFilter::size\28\29\20const +3623:flutter::DisplayListMatrixClipState::mapRect\28impeller::TRect\20const&\2c\20impeller::TRect*\29\20const +3624:flutter::DisplayListMatrixClipState::TransformedRectCoversBounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect\20const&\29 +3625:flutter::DisplayListMatrixClipState::TransformedOvalCoversBounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect\20const&\29 +3626:flutter::DisplayListMatrixClipState::DisplayListMatrixClipState\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\29 +3627:flutter::DisplayListBuilder::setStrokeWidth\28float\29 +3628:flutter::DisplayListBuilder::setStrokeMiter\28float\29 +3629:flutter::DisplayListBuilder::setStrokeJoin\28flutter::DlStrokeJoin\29 +3630:flutter::DisplayListBuilder::setStrokeCap\28flutter::DlStrokeCap\29 +3631:flutter::DisplayListBuilder::setMaskFilter\28flutter::DlMaskFilter\20const*\29 +3632:flutter::DisplayListBuilder::setInvertColors\28bool\29 +3633:flutter::DisplayListBuilder::setImageFilter\28flutter::DlImageFilter\20const*\29 +3634:flutter::DisplayListBuilder::setDrawStyle\28flutter::DlDrawStyle\29 +3635:flutter::DisplayListBuilder::setColor\28flutter::DlColor\29 +3636:flutter::DisplayListBuilder::setColorSource\28flutter::DlColorSource\20const*\29 +3637:flutter::DisplayListBuilder::setColorFilter\28flutter::DlColorFilter\20const*\29 +3638:flutter::DisplayListBuilder::setBlendMode\28impeller::BlendMode\29 +3639:flutter::DisplayListBuilder::setAntiAlias\28bool\29 +3640:flutter::DisplayListBuilder::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +3641:flutter::DisplayListBuilder::drawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\29 +3642:flutter::DisplayListBuilder::drawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\29 +3643:flutter::DisplayListBuilder::drawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\29 +3644:flutter::DisplayListBuilder::drawRoundRect\28impeller::RoundRect\20const&\29 +3645:flutter::DisplayListBuilder::drawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\29 +3646:flutter::DisplayListBuilder::drawPath\28flutter::DlPath\20const&\29 +3647:flutter::DisplayListBuilder::drawPaint\28\29 +3648:flutter::DisplayListBuilder::drawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +3649:flutter::DisplayListBuilder::drawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\29 +3650:flutter::DisplayListBuilder::drawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\29 +3651:flutter::DisplayListBuilder::drawCircle\28impeller::TPoint\20const&\2c\20float\29 +3652:flutter::DisplayListBuilder::drawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\29 +3653:flutter::DisplayListBuilder::SaveLayer\28std::__2::optional>\20const&\2c\20flutter::DlPaint\20const*\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +3654:flutter::DisplayListBuilder::RestoreToCount\28int\29 +3655:flutter::DisplayListBuilder::QuickReject\28impeller::TRect\20const&\29\20const +3656:flutter::DisplayListBuilder::GetBaseLayerDimensions\28\29\20const +3657:flutter::DisplayListBuilder::DrawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\2c\20flutter::DlPaint\20const&\29 +3658:flutter::DisplayListBuilder::DrawRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +3659:flutter::DisplayListBuilder::DrawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\2c\20flutter::DlPaint\20const&\29 +3660:flutter::DisplayListBuilder::DrawPaint\28flutter::DlPaint\20const&\29 +3661:flutter::DisplayListBuilder::DrawOval\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +3662:flutter::DisplayListBuilder::DrawImage\28sk_sp\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\29 +3663:flutter::DisplayListBuilder::DrawImageRect\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\2c\20flutter::DlSrcRectConstraint\29 +3664:flutter::DisplayListBuilder::DrawImageNine\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20flutter::DlPaint\20const*\29 +3665:flutter::DisplayListBuilder::DrawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +3666:flutter::DisplayListBuilder::DrawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +3667:flutter::DisplayListBuilder::DrawCircle\28impeller::TPoint\20const&\2c\20float\2c\20flutter::DlPaint\20const&\29 +3668:flutter::DisplayListBuilder::DrawAtlas\28sk_sp\20const&\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20flutter::DlPaint\20const*\29 +3669:flutter::DisplayListBuilder::DrawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20flutter::DlPaint\20const&\29 +3670:flutter::AccumulationRect::accumulate\28float\2c\20float\29 +3671:flutter::AccumulationRect::GetBounds\28\29\20const +3672:fixN0c\28BracketData*\2c\20int\2c\20int\2c\20unsigned\20char\29 +3673:filter_to_gl_min_filter\28SkFilterMode\2c\20SkMipmapMode\29 +3674:exp2 +3675:dquad_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3676:do_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +3677:do_anti_hairline\28int\2c\20int\2c\20int\2c\20int\2c\20SkIRect\20const*\2c\20SkBlitter*\29 +3678:dline_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3679:directionFromFlags\28UBiDi*\29 +3680:destroy_face +3681:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0>\28skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0&&\29::'lambda'\28char*\29::__invoke\28char*\29 +3682:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool&\2c\20GrPipeline*&\2c\20GrUserStencilSettings\20const*&&\2c\20\28anonymous\20namespace\29::DrawAtlasPathShader*&\2c\20GrPrimitiveType&&\2c\20GrXferBarrierFlags&\2c\20GrLoadOp&\29::'lambda'\28void*\29>\28GrProgramInfo&&\29::'lambda'\28char*\29::__invoke\28char*\29 +3683:dcubic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3684:dconic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +3685:cubic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3686:conic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3687:cleanup_shaders\28GrGLGpu*\2c\20SkTDArray\20const&\29 +3688:chop_mono_cubic_at_y\28SkPoint*\2c\20float\2c\20SkPoint*\29 +3689:check_inverse_on_empty_return\28SkRegion*\2c\20SkPath\20const&\2c\20SkRegion\20const&\29 +3690:check_intersection\28SkAnalyticEdge\20const*\2c\20int\2c\20int*\29 +3691:char*\20std::__2::find\5babi:nn180100\5d\28char*\2c\20char*\2c\20char\20const&\29 +3692:cff_parse_real +3693:cff_parse_integer +3694:cff_index_read_offset +3695:cff_index_get_pointers +3696:cff_index_access_element +3697:cff2_path_param_t::move_to\28CFF::point_t\20const&\29 +3698:cff1_path_param_t::move_to\28CFF::point_t\20const&\29 +3699:cf2_hintmap_map +3700:cf2_glyphpath_pushPrevElem +3701:cf2_glyphpath_computeOffset +3702:cf2_glyphpath_closeOpenPath +3703:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_1::operator\28\29\28SkSpan\29\20const +3704:calc_dot_cross_cubic\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +3705:bracketProcessBoundary\28BracketData*\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +3706:bracketAddOpening\28BracketData*\2c\20char16_t\2c\20int\29 +3707:bool\20std::__2::equal\5babi:ne180100\5d\28float\20const*\2c\20float\20const*\2c\20float\20const*\2c\20std::__2::__equal_to\29 +3708:bool\20std::__2::__is_pointer_in_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char\20const*\29 +3709:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +3710:bool\20flutter::Equals\28std::__2::shared_ptr\20const&\2c\20std::__2::shared_ptr\20const&\29 +3711:bool\20SkIsFinite\28float\20const*\2c\20int\29\20\28.1003\29 +3712:bool\20OT::match_lookahead>\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +3713:bool\20OT::match_backtrack>\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\2c\20unsigned\20int*\29 +3714:bool\20OT::glyf_impl::Glyph::get_points\28hb_font_t*\2c\20OT::glyf_accelerator_t\20const&\2c\20contour_point_vector_t&\2c\20hb_glyf_scratch_t&\2c\20contour_point_vector_t*\2c\20head_maxp_info_t*\2c\20unsigned\20int*\2c\20bool\2c\20bool\2c\20bool\2c\20hb_array_t\2c\20unsigned\20int\2c\20unsigned\20int*\29\20const +3715:bool\20OT::glyf_accelerator_t::get_points\28hb_font_t*\2c\20unsigned\20int\2c\20OT::glyf_accelerator_t::points_aggregator_t\2c\20hb_array_t\2c\20hb_glyf_scratch_t&\29\20const +3716:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +3717:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +3718:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +3719:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +3720:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +3721:bool\20OT::Condition::evaluate\28int\20const*\2c\20unsigned\20int\2c\20OT::ItemVarStoreInstancer*\29\20const +3722:blitrect\28SkBlitter*\2c\20SkIRect\20const&\29 +3723:blit_single_alpha\28AdditiveBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +3724:blit_aaa_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +3725:atan +3726:append_index_uv_varyings\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20int\2c\20char\20const*\2c\20char\20const*\2c\20GrGLSLVarying*\2c\20GrGLSLVarying*\2c\20GrGLSLVarying*\29 +3727:antifillrect\28SkRect\20const&\2c\20SkBlitter*\29 +3728:af_property_get_face_globals +3729:af_latin_hints_link_segments +3730:af_latin_compute_stem_width +3731:af_latin_align_linked_edge +3732:af_iup_interp +3733:af_glyph_hints_save +3734:af_glyph_hints_done +3735:af_cjk_align_linked_edge +3736:add_stop_color\28SkRasterPipelineContexts::GradientCtx*\2c\20unsigned\20long\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3737:add_quad\28SkPoint\20const*\2c\20skia_private::TArray*\29 +3738:add_const_color\28SkRasterPipelineContexts::GradientCtx*\2c\20unsigned\20long\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3739:acos +3740:aaa_fill_path\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20AdditiveBlitter*\2c\20int\2c\20int\2c\20bool\2c\20bool\2c\20bool\29 +3741:_iup_worker_interpolate +3742:_hb_head_t\29&>\28fp\29\2c\20std::forward>\28fp0\29\2c\20\28hb_priority<16u>\29\28\29\29\29>::type\20$_22::operator\28\29\29&\2c\20hb_pair_t>\28find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29&\2c\20hb_pair_t&&\29\20const +3743:_hb_font_adopt_var_coords\28hb_font_t*\2c\20int*\2c\20float*\2c\20unsigned\20int\29 +3744:_get_path\28OT::cff1::accelerator_t\20const*\2c\20hb_font_t*\2c\20unsigned\20int\2c\20hb_draw_session_t&\2c\20bool\2c\20CFF::point_t*\29 +3745:_get_bounds\28OT::cff1::accelerator_t\20const*\2c\20unsigned\20int\2c\20bounds_t&\2c\20bool\29 +3746:__trunctfdf2 +3747:__towrite +3748:__toread +3749:__subtf3 +3750:__strchrnul +3751:__rem_pio2f +3752:__rem_pio2 +3753:__overflow +3754:__fwritex +3755:__cxxabiv1::__class_type_info::process_static_type_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\29\20const +3756:__cxxabiv1::__class_type_info::process_static_type_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\29\20const +3757:__cxxabiv1::__class_type_info::process_found_base_class\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +3758:__cxxabiv1::__base_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +3759:\28anonymous\20namespace\29::subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +3760:\28anonymous\20namespace\29::split_conic\28SkPoint\20const*\2c\20SkConic*\2c\20float\29 +3761:\28anonymous\20namespace\29::single_pass_shape\28GrStyledShape\20const&\29 +3762:\28anonymous\20namespace\29::shift_left\28skvx::Vec<4\2c\20float>\20const&\2c\20int\29 +3763:\28anonymous\20namespace\29::shape_contains_rect\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const&\2c\20bool\29 +3764:\28anonymous\20namespace\29::set_gl_stencil\28GrGLInterface\20const*\2c\20GrStencilSettings::Face\20const&\2c\20unsigned\20int\29 +3765:\28anonymous\20namespace\29::make_blend\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\2c\20std::__2::optional\2c\20bool\29::$_0::operator\28\29\28sk_sp\29\20const +3766:\28anonymous\20namespace\29::get_tile_count\28SkIRect\20const&\2c\20int\29 +3767:\28anonymous\20namespace\29::generateGlyphPathStatic\28FT_FaceRec_*\2c\20SkPathBuilder*\29 +3768:\28anonymous\20namespace\29::generateFacePathCOLRv1\28FT_FaceRec_*\2c\20unsigned\20short\2c\20SkMatrix\20const*\29 +3769:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_0::operator\28\29\28SkPoint\20const*\2c\20bool\29\20const +3770:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads_with_constraint\28SkPoint\20const*\2c\20float\2c\20SkPathFirstDirection\2c\20skia_private::TArray*\2c\20int\29 +3771:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\2c\20int\2c\20bool\2c\20bool\29 +3772:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const +3773:\28anonymous\20namespace\29::bloat_quad\28SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkMatrix\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +3774:\28anonymous\20namespace\29::TriangulatingPathOp::CreateMesh\28GrMeshDrawTarget*\2c\20sk_sp\2c\20int\2c\20int\29 +3775:\28anonymous\20namespace\29::TransformedMaskSubRun::~TransformedMaskSubRun\28\29 +3776:\28anonymous\20namespace\29::TransformedMaskSubRun::testingOnly_packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29\20const +3777:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29 +3778:\28anonymous\20namespace\29::SkwasmParagraphPainter::toDlPaint\28skia::textlayout::ParagraphPainter::DecorationStyle\20const&\2c\20flutter::DlDrawStyle\29 +3779:\28anonymous\20namespace\29::SkMorphologyImageFilter::radii\28skif::Mapping\20const&\29\20const +3780:\28anonymous\20namespace\29::SkFTGeometrySink::goingTo\28FT_Vector_\20const*\29 +3781:\28anonymous\20namespace\29::SkCropImageFilter::cropRect\28skif::Mapping\20const&\29\20const +3782:\28anonymous\20namespace\29::ShapedRun::~ShapedRun\28\29 +3783:\28anonymous\20namespace\29::PathSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +3784:\28anonymous\20namespace\29::MemoryPoolAccessor::pool\28\29\20const +3785:\28anonymous\20namespace\29::DrawAtlasOpImpl::visitProxies\28std::__2::function\20const&\29\20const +3786:\28anonymous\20namespace\29::DrawAtlasOpImpl::programInfo\28\29 +3787:\28anonymous\20namespace\29::DrawAtlasOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +3788:TT_Vary_Apply_Glyph_Deltas +3789:TT_Set_Var_Design +3790:TT_Get_VMetrics +3791:Skwasm::Surface::_resizeSurface\28int\2c\20int\29 +3792:SkWriter32::writeRegion\28SkRegion\20const&\29 +3793:SkVertices::Sizes::Sizes\28SkVertices::Desc\20const&\29 +3794:SkVertices::MakeCopy\28SkVertices::VertexMode\2c\20int\2c\20SkPoint\20const*\2c\20SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20short\20const*\29 +3795:SkVertices::Builder::~Builder\28\29 +3796:SkVertices::Builder::detach\28\29 +3797:SkUnitScalarClampToByte\28float\29 +3798:SkUTF::ToUTF16\28int\2c\20unsigned\20short*\29 +3799:SkTypeface_FreeType::~SkTypeface_FreeType\28\29 +3800:SkTextBlobBuilder::allocInternal\28SkFont\20const&\2c\20SkTextBlob::GlyphPositioning\2c\20int\2c\20int\2c\20SkPoint\2c\20SkRect\20const*\29 +3801:SkTextBlob::RunRecord::textSizePtr\28\29\20const +3802:SkTSpan::markCoincident\28\29 +3803:SkTSect::markSpanGone\28SkTSpan*\29 +3804:SkTSect::computePerpendiculars\28SkTSect*\2c\20SkTSpan*\2c\20SkTSpan*\29 +3805:SkTMultiMap::insert\28skgpu::ScratchKey\20const&\2c\20GrGpuResource*\29 +3806:SkTDStorage::moveTail\28int\2c\20int\2c\20int\29 +3807:SkTDStorage::calculateSizeOrDie\28int\29 +3808:SkTDArray::append\28int\29 +3809:SkTDArray::append\28\29 +3810:SkTConic::hullIntersects\28SkDConic\20const&\2c\20bool*\29\20const +3811:SkTBlockList::pop_back\28\29 +3812:SkSurfaces::Raster\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const*\29 +3813:SkSurface_Base::~SkSurface_Base\28\29 +3814:SkSurface_Base::aboutToDraw\28SkSurface::ContentChangeMode\29 +3815:SkSurfaceValidateRasterInfo\28SkImageInfo\20const&\2c\20unsigned\20long\29 +3816:SkStrokeRec::init\28SkPaint\20const&\2c\20SkPaint::Style\2c\20float\29 +3817:SkStrokeRec::getInflationRadius\28\29\20const +3818:SkString::printVAList\28char\20const*\2c\20void*\29 +3819:SkStrikeSpec::SkStrikeSpec\28SkStrikeSpec&&\29 +3820:SkStrikeSpec::MakeWithNoDevice\28SkFont\20const&\2c\20SkPaint\20const*\29 +3821:SkStrikeSpec::MakePath\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\29 +3822:SkStrikeCache::findOrCreateStrike\28SkStrikeSpec\20const&\29 +3823:SkStrike::prepareForPath\28SkGlyph*\29 +3824:SkSpriteBlitter::SkSpriteBlitter\28SkPixmap\20const&\29 +3825:SkSpecialImage::~SkSpecialImage\28\29 +3826:SkSpecialImage::makeSubset\28SkIRect\20const&\29\20const +3827:SkSpecialImage::makePixelOutset\28\29\20const +3828:SkShapers::HB::ScriptRunIterator\28char\20const*\2c\20unsigned\20long\29 +3829:SkShaper::TrivialRunIterator::endOfCurrentRun\28\29\20const +3830:SkShaper::TrivialRunIterator::consume\28\29 +3831:SkShaper::TrivialRunIterator::atEnd\28\29\20const +3832:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29 +3833:SkShaders::MatrixRec::MatrixRec\28SkMatrix\20const&\29 +3834:SkShaderUtils::GLSLPrettyPrint::tabString\28\29 +3835:SkShaderBlurAlgorithm::Compute1DBlurKernel\28float\2c\20int\2c\20SkSpan\29 +3836:SkScanClipper::~SkScanClipper\28\29 +3837:SkScanClipper::SkScanClipper\28SkBlitter*\2c\20SkRegion\20const*\2c\20SkIRect\20const&\2c\20bool\2c\20bool\29 +3838:SkScan::HairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +3839:SkScan::FillTriangle\28SkPoint\20const*\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3840:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3841:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3842:SkScan::AntiHairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +3843:SkScan::AntiHairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +3844:SkScan::AntiFillXRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +3845:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\2c\20bool\29 +3846:SkScalerContext_FreeType::updateGlyphBoundsIfSubpixel\28SkGlyph\20const&\2c\20SkRect*\2c\20bool\29 +3847:SkScalerContextRec::CachedMaskGamma\28unsigned\20char\2c\20unsigned\20char\29 +3848:SkScalerContextFTUtils::drawSVGGlyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +3849:SkScalerContext::~SkScalerContext\28\29 +3850:SkSTArenaAlloc<3332ul>::SkSTArenaAlloc\28unsigned\20long\29 +3851:SkSTArenaAlloc<2736ul>::SkSTArenaAlloc\28unsigned\20long\29 +3852:SkSTArenaAlloc<2048ul>::SkSTArenaAlloc\28unsigned\20long\29 +3853:SkSL::type_is_valid_for_coords\28SkSL::Type\20const&\29 +3854:SkSL::simplify_negation\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\29 +3855:SkSL::simplify_matrix_multiplication\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +3856:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +3857:SkSL::replace_empty_with_nop\28std::__2::unique_ptr>\2c\20bool\29 +3858:SkSL::find_generic_index\28SkSL::Type\20const&\2c\20SkSL::Type\20const&\2c\20bool\29 +3859:SkSL::evaluate_intrinsic_numeric\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +3860:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29 +3861:SkSL::coalesce_n_way_vector\28SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +3862:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_0::operator\28\29\28int\29\20const +3863:SkSL::build_argument_type_list\28SkSpan>\20const>\29 +3864:SkSL::\28anonymous\20namespace\29::SwitchCaseContainsExit::visitStatement\28SkSL::Statement\20const&\29 +3865:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::returnsInputAlpha\28SkSL::Expression\20const&\29 +3866:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29 +3867:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29 +3868:SkSL::\28anonymous\20namespace\29::ConstantExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +3869:SkSL::Variable::~Variable\28\29 +3870:SkSL::Variable::Make\28SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20std::__2::basic_string_view>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20bool\2c\20SkSL::VariableStorage\29 +3871:SkSL::Variable::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\29 +3872:SkSL::VarDeclaration::~VarDeclaration\28\29 +3873:SkSL::VarDeclaration::Make\28SkSL::Context\20const&\2c\20SkSL::Variable*\2c\20SkSL::Type\20const*\2c\20int\2c\20std::__2::unique_ptr>\29 +3874:SkSL::Type::isStorageTexture\28\29\20const +3875:SkSL::Type::convertArraySize\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20long\20long\29\20const +3876:SkSL::Type::MakeSamplerType\28char\20const*\2c\20SkSL::Type\20const&\29 +3877:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29 +3878:SkSL::Transform::EliminateDeadGlobalVariables\28SkSL::Program&\29::$_2::operator\28\29\28SkSL::ProgramElement\20const&\29\20const +3879:SkSL::TernaryExpression::~TernaryExpression\28\29 +3880:SkSL::SymbolTable::SymbolKey::operator==\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +3881:SkSL::SingleArgumentConstructor::~SingleArgumentConstructor\28\29 +3882:SkSL::RP::UnownedLValueSlice::~UnownedLValueSlice\28\29 +3883:SkSL::RP::SlotManager::createSlots\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20bool\29 +3884:SkSL::RP::SlotManager::addSlotDebugInfoForGroup\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20int*\2c\20bool\29 +3885:SkSL::RP::Program::makeStages\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSpan\2c\20SkSL::RP::Program::SlotData\20const&\29\20const::$_4::operator\28\29\28\29\20const +3886:SkSL::RP::Program::makeStages\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSpan\2c\20SkSL::RP::Program::SlotData\20const&\29\20const::$_1::operator\28\29\28int\29\20const +3887:SkSL::RP::Program::appendCopySlotsMasked\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +3888:SkSL::RP::LValueSlice::~LValueSlice\28\29 +3889:SkSL::RP::Generator::pushTraceScopeMask\28\29 +3890:SkSL::RP::Generator::pushTernaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +3891:SkSL::RP::Generator::pushStructuredComparison\28SkSL::RP::LValue*\2c\20SkSL::Operator\2c\20SkSL::RP::LValue*\2c\20SkSL::Type\20const&\29 +3892:SkSL::RP::Generator::pushPrefixExpression\28SkSL::Operator\2c\20SkSL::Expression\20const&\29 +3893:SkSL::RP::Generator::pushMatrixMultiply\28SkSL::RP::LValue*\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +3894:SkSL::RP::Generator::pushAbsFloatIntrinsic\28int\29 +3895:SkSL::RP::Generator::needsReturnMask\28SkSL::FunctionDefinition\20const*\29 +3896:SkSL::RP::Generator::needsFunctionResultSlots\28SkSL::FunctionDefinition\20const*\29 +3897:SkSL::RP::Generator::foldWithMultiOp\28SkSL::RP::BuilderOp\2c\20int\29 +3898:SkSL::RP::Generator::GetTypedOp\28SkSL::Type\20const&\2c\20SkSL::RP::Generator::TypedOps\20const&\29 +3899:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29 +3900:SkSL::RP::Builder::select\28int\29 +3901:SkSL::RP::Builder::push_uniform\28SkSL::RP::SlotRange\29 +3902:SkSL::RP::Builder::pop_loop_mask\28\29 +3903:SkSL::RP::Builder::merge_condition_mask\28\29 +3904:SkSL::RP::Builder::branch_if_no_active_lanes_on_stack_top_equal\28int\2c\20int\29 +3905:SkSL::RP::AutoStack&\20std::__2::optional::emplace\5babi:ne180100\5d\28SkSL::RP::Generator*&\29 +3906:SkSL::ProgramUsage::add\28SkSL::ProgramElement\20const&\29 +3907:SkSL::PipelineStage::PipelineStageCodeGenerator::modifierString\28SkSL::ModifierFlags\29 +3908:SkSL::PipelineStage::ConvertProgram\28SkSL::Program\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20SkSL::PipelineStage::Callbacks*\29 +3909:SkSL::Parser::unsizedArrayType\28SkSL::Type\20const*\2c\20SkSL::Position\29 +3910:SkSL::Parser::unaryExpression\28\29 +3911:SkSL::Parser::swizzle\28SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::basic_string_view>\2c\20SkSL::Position\29 +3912:SkSL::Parser::poison\28SkSL::Position\29 +3913:SkSL::Parser::checkIdentifier\28SkSL::Token*\29 +3914:SkSL::Parser::block\28bool\2c\20std::__2::unique_ptr>*\29 +3915:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29 +3916:SkSL::Operator::getBinaryPrecedence\28\29\20const +3917:SkSL::MultiArgumentConstructor::~MultiArgumentConstructor\28\29 +3918:SkSL::ModuleLoader::loadGPUModule\28SkSL::Compiler*\29 +3919:SkSL::ModifierFlags::checkPermittedFlags\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\29\20const +3920:SkSL::Mangler::uniqueName\28std::__2::basic_string_view>\2c\20SkSL::SymbolTable*\29 +3921:SkSL::LiteralType::slotType\28unsigned\20long\29\20const +3922:SkSL::Literal::MakeFloat\28SkSL::Position\2c\20float\2c\20SkSL::Type\20const*\29 +3923:SkSL::Literal::MakeBool\28SkSL::Position\2c\20bool\2c\20SkSL::Type\20const*\29 +3924:SkSL::Layout::checkPermittedLayout\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkEnumBitMask\29\20const +3925:SkSL::IfStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3926:SkSL::IRHelpers::Binary\28std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29\20const +3927:SkSL::GlobalVarDeclaration::~GlobalVarDeclaration\28\29_6475 +3928:SkSL::GlobalVarDeclaration::~GlobalVarDeclaration\28\29 +3929:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29 +3930:SkSL::GLSLCodeGenerator::writeLiteral\28SkSL::Literal\20const&\29 +3931:SkSL::GLSLCodeGenerator::writeFunctionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +3932:SkSL::GLSLCodeGenerator::shouldRewriteVoidTypedFunctions\28SkSL::FunctionDeclaration\20const*\29\20const +3933:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29 +3934:SkSL::ForStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3935:SkSL::Expression::isIncomplete\28SkSL::Context\20const&\29\20const +3936:SkSL::Expression::compareConstant\28SkSL::Expression\20const&\29\20const +3937:SkSL::DoStatement::~DoStatement\28\29 +3938:SkSL::DebugTracePriv::~DebugTracePriv\28\29 +3939:SkSL::ConstructorArrayCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +3940:SkSL::ConstructorArray::~ConstructorArray\28\29 +3941:SkSL::ConstantFolder::GetConstantValueOrNull\28SkSL::Expression\20const&\29 +3942:SkSL::Compiler::runInliner\28SkSL::Inliner*\2c\20std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\29 +3943:SkSL::Block::~Block\28\29 +3944:SkSL::BinaryExpression::~BinaryExpression\28\29 +3945:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\2c\20SkSL::Type\20const*\29 +3946:SkSL::Analysis::GetReturnComplexity\28SkSL::FunctionDefinition\20const&\29 +3947:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29 +3948:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29 +3949:SkSL::Analysis::CallsColorTransformIntrinsics\28SkSL::Program\20const&\29 +3950:SkSL::AliasType::bitWidth\28\29\20const +3951:SkRuntimeShader::uniformData\28SkColorSpace\20const*\29\20const +3952:SkRuntimeEffectPriv::VarAsUniform\28SkSL::Variable\20const&\2c\20SkSL::Context\20const&\2c\20unsigned\20long*\29 +3953:SkRuntimeEffect::makeShader\28sk_sp\2c\20SkSpan\2c\20SkMatrix\20const*\29\20const +3954:SkRuntimeEffect::MakeForShader\28SkString\29 +3955:SkRgnBuilder::~SkRgnBuilder\28\29 +3956:SkResourceCache::~SkResourceCache\28\29 +3957:SkResourceCache::purgeAsNeeded\28bool\29 +3958:SkResourceCache::checkMessages\28\29 +3959:SkResourceCache::Key::operator==\28SkResourceCache::Key\20const&\29\20const +3960:SkRegion::translate\28int\2c\20int\2c\20SkRegion*\29\20const +3961:SkRegion::quickReject\28SkIRect\20const&\29\20const +3962:SkRegion::op\28SkRegion\20const&\2c\20SkIRect\20const&\2c\20SkRegion::Op\29 +3963:SkRegion::getBoundaryPath\28\29\20const +3964:SkRegion::RunHead::findScanline\28int\29\20const +3965:SkRegion::RunHead::Alloc\28int\29 +3966:SkReduceOrder::Cubic\28SkPoint\20const*\2c\20SkPoint*\29 +3967:SkRect::offset\28float\2c\20float\29 +3968:SkRect*\20SkRecordCanvas::copy\28SkRect\20const*\29 +3969:SkRecords::PreCachedPath::PreCachedPath\28SkPath\20const&\29 +3970:SkRecords::FillBounds::pushSaveBlock\28SkPaint\20const*\2c\20bool\29 +3971:SkRecordDraw\28SkRecord\20const&\2c\20SkCanvas*\2c\20SkPicture\20const*\20const*\2c\20SkDrawable*\20const*\2c\20int\2c\20SkBBoxHierarchy\20const*\2c\20SkPicture::AbortCallback*\29 +3972:SkRecordCanvas::~SkRecordCanvas\28\29 +3973:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29 +3974:SkRasterPipelineBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +3975:SkRasterPipelineBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29::$_0::operator\28\29\28int\2c\20SkRasterPipelineContexts::MemoryCtx*\29\20const +3976:SkRasterPipelineBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +3977:SkRasterPipeline::appendStore\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +3978:SkRasterClip::op\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkClipOp\2c\20bool\29 +3979:SkRasterClip::convertToAA\28\29 +3980:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29::$_1::operator\28\29\28SkRect\20const&\2c\20SkRRect::Corner\29\20const +3981:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29 +3982:SkRGBA4f<\28SkAlphaType\292>*\20SkArenaAlloc::makeArray>\28unsigned\20long\29 +3983:SkQuadConstruct::initWithStart\28SkQuadConstruct*\29 +3984:SkQuadConstruct::initWithEnd\28SkQuadConstruct*\29 +3985:SkPointPriv::DistanceToLineBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPointPriv::Side*\29 +3986:SkPoint::setNormalize\28float\2c\20float\29 +3987:SkPoint::setLength\28float\2c\20float\2c\20float\29 +3988:SkPixmap::setColorSpace\28sk_sp\29 +3989:SkPixmap::rowBytesAsPixels\28\29\20const +3990:SkPixelRef::getGenerationID\28\29\20const +3991:SkPictureRecorder::~SkPictureRecorder\28\29 +3992:SkPictureRecorder::SkPictureRecorder\28\29 +3993:SkPicture::~SkPicture\28\29 +3994:SkPerlinNoiseShader::PaintingData::random\28\29 +3995:SkPathWriter::~SkPathWriter\28\29 +3996:SkPathWriter::update\28SkOpPtT\20const*\29 +3997:SkPathWriter::lineTo\28\29 +3998:SkPathWriter::SkPathWriter\28SkPathFillType\29 +3999:SkPathStroker::strokeCloseEnough\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20SkQuadConstruct*\29\20const +4000:SkPathStroker::setRayPts\28SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +4001:SkPathStroker::quadPerpRay\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +4002:SkPathStroker::finishContour\28bool\2c\20bool\29 +4003:SkPathStroker::conicPerpRay\28SkConic\20const&\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +4004:SkPathRef::isRRect\28\29\20const +4005:SkPathRef::isOval\28\29\20const +4006:SkPathRawShapes::Rect::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4007:SkPathRawShapes::RRect::RRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4008:SkPathPriv::ComputeFirstDirection\28SkPath\20const&\29 +4009:SkPathPriv::AddGenIDChangeListener\28SkPath\20const&\2c\20sk_sp\29 +4010:SkPathDirection_ToConvexity\28SkPathDirection\29 +4011:SkPathBuilder::privateReversePathTo\28SkPath\20const&\29 +4012:SkPathBuilder::operator=\28SkPath\20const&\29 +4013:SkPathBuilder::incReserve\28int\2c\20int\2c\20int\29 +4014:SkPathBuilder::computeBounds\28\29\20const +4015:SkPathBuilder::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29::$_0::operator\28\29\28SkPoint\20const&\29\20const +4016:SkPathBuilder::addRaw\28SkPathRaw\20const&\29 +4017:SkPathBuilder::addPolygon\28SkSpan\2c\20bool\29 +4018:SkPathBuilder::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +4019:SkPathBuilder::addOval\28SkRect\20const&\2c\20SkPathDirection\29 +4020:SkPath::transform\28SkMatrix\20const&\2c\20SkPath*\29\20const +4021:SkPath::isRRect\28SkRRect*\29\20const +4022:SkPath::isOval\28SkRect*\29\20const +4023:SkPath::isLastContourClosed\28\29\20const +4024:SkPath::cubicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +4025:SkPath::contains\28float\2c\20float\29\20const +4026:SkPath::conicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\29 +4027:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29::$_0::operator\28\29\28SkPoint\20const&\29\20const +4028:SkPath::addRaw\28SkPathRaw\20const&\29 +4029:SkPath::addOval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4030:SkPath::Iter::autoClose\28SkPoint*\29 +4031:SkPath&\20std::__2::optional::emplace\5babi:ne180100\5d\28SkPath&&\29 +4032:SkPaintToGrPaintReplaceShader\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::unique_ptr>\2c\20GrPaint*\29 +4033:SkPaint::getBlendMode_or\28SkBlendMode\29\20const +4034:SkPaint*\20SkOptAddressOrNull\28std::__2::optional&\29 +4035:SkPackedGlyphID::PackIDSkPoint\28unsigned\20short\2c\20SkPoint\2c\20SkIPoint\29 +4036:SkOpSpanBase::checkForCollapsedCoincidence\28\29 +4037:SkOpSpan::setWindSum\28int\29 +4038:SkOpSegment::updateWindingReverse\28SkOpAngle\20const*\29 +4039:SkOpSegment::match\28SkOpPtT\20const*\2c\20SkOpSegment\20const*\2c\20double\2c\20SkPoint\20const&\29\20const +4040:SkOpSegment::markWinding\28SkOpSpan*\2c\20int\2c\20int\29 +4041:SkOpSegment::markAngle\28int\2c\20int\2c\20int\2c\20int\2c\20SkOpAngle\20const*\2c\20SkOpSpanBase**\29 +4042:SkOpSegment::markAngle\28int\2c\20int\2c\20SkOpAngle\20const*\2c\20SkOpSpanBase**\29 +4043:SkOpSegment::markAndChaseWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int\2c\20int\2c\20SkOpSpanBase**\29 +4044:SkOpSegment::markAllDone\28\29 +4045:SkOpSegment::dSlopeAtT\28double\29\20const +4046:SkOpSegment::addT\28double\2c\20SkPoint\20const&\29 +4047:SkOpSegment::activeWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +4048:SkOpPtT::oppPrev\28SkOpPtT\20const*\29\20const +4049:SkOpPtT::contains\28SkOpSegment\20const*\29\20const +4050:SkOpPtT::Overlaps\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const**\2c\20SkOpPtT\20const**\29 +4051:SkOpEdgeBuilder::closeContour\28SkPoint\20const&\2c\20SkPoint\20const&\29 +4052:SkOpCoincidence::expand\28\29 +4053:SkOpCoincidence::Ordered\28SkOpSegment\20const*\2c\20SkOpSegment\20const*\29 +4054:SkOpCoincidence::Ordered\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\29 +4055:SkOpAngle::orderable\28SkOpAngle*\29 +4056:SkOpAngle::lineOnOneSide\28SkDPoint\20const&\2c\20SkDVector\20const&\2c\20SkOpAngle\20const*\2c\20bool\29\20const +4057:SkOpAngle::computeSector\28\29 +4058:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\2c\20sk_sp\29 +4059:SkMipmapAccessor::SkMipmapAccessor\28SkImage_Base\20const*\2c\20SkMatrix\20const&\2c\20SkMipmapMode\29::$_0::operator\28\29\28\29\20const +4060:SkMessageBus::Get\28\29 +4061:SkMessageBus::Get\28\29 +4062:SkMessageBus::BufferFinishedMessage\2c\20GrDirectContext::DirectContextID\2c\20false>::Get\28\29 +4063:SkMessageBus::Get\28\29 +4064:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_3680 +4065:SkMatrixPriv::InverseMapRect\28SkMatrix\20const&\2c\20SkRect*\2c\20SkRect\20const&\29 +4066:SkMatrix::mapPointsToHomogeneous\28SkSpan\2c\20SkSpan\29\20const +4067:SkMatrix::getMinMaxScales\28float*\29\20const +4068:SkMatrix::PolyToPoly\28SkSpan\2c\20SkSpan\29 +4069:SkMaskBuilder::PrepareDestination\28int\2c\20int\2c\20SkMask\20const&\29 +4070:SkM44::preTranslate\28float\2c\20float\2c\20float\29 +4071:SkM44::preConcat\28SkMatrix\20const&\29::$_0::operator\28\29\28float\2c\20float\2c\20float\29\20const +4072:SkM44::preConcat\28SkMatrix\20const&\29 +4073:SkM44::postConcat\28SkM44\20const&\29 +4074:SkLineParameters::cubicEndPoints\28SkDCubic\20const&\2c\20int\2c\20int\29 +4075:SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry::~Entry\28\29 +4076:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::reset\28\29 +4077:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry::~Entry\28\29 +4078:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29 +4079:SkJSONWriter::separator\28bool\29 +4080:SkJSONWriter::appendString\28char\20const*\2c\20unsigned\20long\29 +4081:SkJSONWriter::appendS32\28char\20const*\2c\20int\29 +4082:SkInvert4x4Matrix\28float\20const*\2c\20float*\29 +4083:SkIntersections::intersectRay\28SkDQuad\20const&\2c\20SkDLine\20const&\29 +4084:SkIntersections::intersectRay\28SkDLine\20const&\2c\20SkDLine\20const&\29 +4085:SkIntersections::intersectRay\28SkDCubic\20const&\2c\20SkDLine\20const&\29 +4086:SkIntersections::intersectRay\28SkDConic\20const&\2c\20SkDLine\20const&\29 +4087:SkIntersections::computePoints\28SkDLine\20const&\2c\20int\29 +4088:SkIntersections::cleanUpParallelLines\28bool\29 +4089:SkImage_Raster::SkImage_Raster\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20int\29 +4090:SkImage_Lazy::~SkImage_Lazy\28\29_5423 +4091:SkImage_Lazy::Validator::~Validator\28\29 +4092:SkImage_Lazy::Validator::Validator\28sk_sp\2c\20SkColorType\20const*\2c\20sk_sp\29 +4093:SkImage_Lazy::SkImage_Lazy\28SkImage_Lazy::Validator*\29 +4094:SkImage_Ganesh::~SkImage_Ganesh\28\29 +4095:SkImage_Ganesh::ProxyChooser::chooseProxy\28GrRecordingContext*\29 +4096:SkImage_Base::isYUVA\28\29\20const +4097:SkImageShader::MakeSubset\28sk_sp\2c\20SkRect\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +4098:SkImageShader::CubicResamplerMatrix\28float\2c\20float\29 +4099:SkImageInfo::minRowBytes64\28\29\20const +4100:SkImageInfo::makeAlphaType\28SkAlphaType\29\20const +4101:SkImageInfo::MakeN32Premul\28SkISize\29 +4102:SkImageGenerator::getPixels\28SkPixmap\20const&\29 +4103:SkImageFilters::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +4104:SkImageFilter_Base::getCTMCapability\28\29\20const +4105:SkImageFilter_Base::filterImage\28skif::Context\20const&\29\20const +4106:SkImageFilter_Base::affectsTransparentBlack\28\29\20const +4107:SkImageFilterCacheKey::operator==\28SkImageFilterCacheKey\20const&\29\20const +4108:SkImage::readPixels\28GrDirectContext*\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +4109:SkIRect\20skif::Mapping::map\28SkIRect\20const&\2c\20SkMatrix\20const&\29 +4110:SkIRect::MakeXYWH\28int\2c\20int\2c\20int\2c\20int\29 +4111:SkIDChangeListener::List::~List\28\29 +4112:SkIDChangeListener::List::add\28sk_sp\29 +4113:SkGradientShader::MakeSweep\28float\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +4114:SkGradientShader::MakeRadial\28SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +4115:SkGradientBaseShader::AppendInterpolatedToDstStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20bool\2c\20SkGradientShader::Interpolation\20const&\2c\20SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +4116:SkGlyph::mask\28\29\20const +4117:SkFontScanner_FreeType::openFace\28SkStreamAsset*\2c\20int\2c\20FT_StreamRec_*\29\20const +4118:SkFontPriv::ApproximateTransformedTextSize\28SkFont\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\20const&\29 +4119:SkFontMgr::matchFamily\28char\20const*\29\20const +4120:SkFont::getWidthsBounds\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkPaint\20const*\29\20const +4121:SkFindCubicMaxCurvature\28SkPoint\20const*\2c\20float*\29 +4122:SkFILEStream::SkFILEStream\28std::__2::shared_ptr<_IO_FILE>\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +4123:SkEmptyFontMgr::onMatchFamilyStyleCharacter\28char\20const*\2c\20SkFontStyle\20const&\2c\20char\20const**\2c\20int\2c\20int\29\20const +4124:SkEdgeClipper::appendQuad\28SkPoint\20const*\2c\20bool\29 +4125:SkEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkIRect\20const*\29 +4126:SkDevice::drawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +4127:SkDevice::SkDevice\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +4128:SkData::MakeZeroInitialized\28unsigned\20long\29 +4129:SkData::MakeWithoutCopy\28void\20const*\2c\20unsigned\20long\29 +4130:SkDashPathEffect::Make\28SkSpan\2c\20float\29 +4131:SkDQuad::dxdyAtT\28double\29\20const +4132:SkDCubic::subDivide\28double\2c\20double\29\20const +4133:SkDCubic::searchRoots\28double*\2c\20int\2c\20double\2c\20SkDCubic::SearchAxis\2c\20double*\29\20const +4134:SkDCubic::findInflections\28double*\29\20const +4135:SkDCubic::dxdyAtT\28double\29\20const +4136:SkDConic::dxdyAtT\28double\29\20const +4137:SkContourMeasure_segTo\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20float\2c\20SkPathBuilder*\29 +4138:SkContourMeasureIter::next\28\29 +4139:SkContourMeasureIter::Impl::compute_quad_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +4140:SkContourMeasureIter::Impl::compute_cubic_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +4141:SkContourMeasureIter::Impl::compute_conic_segs\28SkConic\20const&\2c\20float\2c\20int\2c\20SkPoint\20const&\2c\20int\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20int\29 +4142:SkContourMeasure::distanceToSegment\28float\2c\20float*\29\20const +4143:SkConic::evalAt\28float\2c\20SkPoint*\2c\20SkPoint*\29\20const +4144:SkConic::evalAt\28float\29\20const +4145:SkConic::BuildUnitArc\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPathDirection\2c\20SkMatrix\20const*\2c\20SkConic*\29 +4146:SkCompressedDataSize\28SkTextureCompressionType\2c\20SkISize\2c\20skia_private::TArray*\2c\20bool\29 +4147:SkColorSpace::serialize\28\29\20const +4148:SkColorInfo::operator=\28SkColorInfo&&\29 +4149:SkColorFilters::Blend\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\2c\20SkBlendMode\29 +4150:SkCoincidentSpans::extend\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\29 +4151:SkChopQuadAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +4152:SkCapabilities::RasterBackend\28\29 +4153:SkCanvas::scale\28float\2c\20float\29 +4154:SkCanvas::saveLayer\28SkCanvas::SaveLayerRec\20const&\29 +4155:SkCanvas::onResetClip\28\29 +4156:SkCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +4157:SkCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +4158:SkCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +4159:SkCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +4160:SkCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +4161:SkCanvas::internalSave\28\29 +4162:SkCanvas::internalRestore\28\29 +4163:SkCanvas::internalDrawDeviceWithFilter\28SkDevice*\2c\20SkDevice*\2c\20SkSpan>\2c\20SkPaint\20const&\2c\20SkCanvas::DeviceCompatibleWithFilter\2c\20SkColorInfo\20const&\2c\20float\2c\20SkTileMode\2c\20bool\29 +4164:SkCanvas::drawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +4165:SkCanvas::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +4166:SkCanvas::drawColor\28unsigned\20int\2c\20SkBlendMode\29 +4167:SkCanvas::drawColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +4168:SkCanvas::clipRect\28SkRect\20const&\2c\20bool\29 +4169:SkCanvas::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +4170:SkCanvas::clear\28unsigned\20int\29 +4171:SkCanvas::clear\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +4172:SkCanvas::SkCanvas\28sk_sp\29 +4173:SkCanvas::SkCanvas\28SkBitmap\20const&\29 +4174:SkCachedData::~SkCachedData\28\29 +4175:SkBlitterClipper::~SkBlitterClipper\28\29 +4176:SkBlitter::blitRegion\28SkRegion\20const&\29 +4177:SkBitmapDevice::SkBitmapDevice\28SkBitmap\20const&\2c\20SkSurfaceProps\20const&\2c\20void*\29 +4178:SkBitmapDevice::Create\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\2c\20SkRasterHandleAllocator*\29 +4179:SkBitmapDevice::BDDraw::BDDraw\28SkBitmapDevice*\29 +4180:SkBitmap::writePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +4181:SkBitmap::setPixels\28void*\29 +4182:SkBitmap::readPixels\28SkPixmap\20const&\2c\20int\2c\20int\29\20const +4183:SkBitmap::allocPixels\28\29 +4184:SkBitmap::SkBitmap\28SkBitmap&&\29 +4185:SkBinaryWriteBuffer::writeScalarArray\28SkSpan\29 +4186:SkBinaryWriteBuffer::writeInt\28int\29 +4187:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29_5730 +4188:SkBaseShadowTessellator::handleLine\28SkPoint\20const&\29 +4189:SkAutoPixmapStorage::freeStorage\28\29 +4190:SkAutoMalloc::reset\28unsigned\20long\2c\20SkAutoMalloc::OnShrink\29 +4191:SkAutoDescriptor::free\28\29 +4192:SkArenaAllocWithReset::reset\28\29 +4193:SkAnalyticQuadraticEdge::updateQuadratic\28\29 +4194:SkAnalyticEdge::goY\28int\29 +4195:SkAnalyticCubicEdge::updateCubic\28\29 +4196:SkAAClipBlitter::ensureRunsAndAA\28\29 +4197:SkAAClip::setRegion\28SkRegion\20const&\29 +4198:SkAAClip::setRect\28SkIRect\20const&\29 +4199:SkAAClip::quickContains\28int\2c\20int\2c\20int\2c\20int\29\20const +4200:SkAAClip::RunHead::Alloc\28int\2c\20unsigned\20long\29 +4201:SkAAClip::Builder::AppendRun\28SkTDArray&\2c\20unsigned\20int\2c\20int\29 +4202:Sk4f_toL32\28skvx::Vec<4\2c\20float>\20const&\29 +4203:SSVertex*\20SkArenaAlloc::make\28GrTriangulator::Vertex*&\29 +4204:RunBasedAdditiveBlitter::flush\28\29 +4205:OT::sbix::get_strike\28unsigned\20int\29\20const +4206:OT::hb_paint_context_t::get_color\28unsigned\20int\2c\20float\2c\20int*\29 +4207:OT::hb_ot_apply_context_t::skipping_iterator_t::prev\28unsigned\20int*\29 +4208:OT::hb_ot_apply_context_t::check_glyph_property\28hb_glyph_info_t\20const*\2c\20unsigned\20int\29\20const +4209:OT::glyf_impl::CompositeGlyphRecord::translate\28contour_point_t\20const&\2c\20hb_array_t\29 +4210:OT::glyf_accelerator_t::points_aggregator_t::contour_bounds_t::add\28contour_point_t\20const&\29 +4211:OT::Script::get_lang_sys\28unsigned\20int\29\20const +4212:OT::PaintSkew::sanitize\28hb_sanitize_context_t*\29\20const +4213:OT::OpenTypeOffsetTable::sanitize\28hb_sanitize_context_t*\29\20const +4214:OT::OpenTypeFontFile::sanitize\28hb_sanitize_context_t*\29\20const +4215:OT::OS2::has_data\28\29\20const +4216:OT::Layout::GSUB_impl::SubstLookup::serialize_ligature\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20hb_sorted_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\29 +4217:OT::Layout::GPOS_impl::MarkArray::apply\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20OT::Layout::GPOS_impl::AnchorMatrix\20const&\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +4218:OT::Layout::Common::Coverage::get_coverage\28unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +4219:OT::Layout::Common::Coverage::cost\28\29\20const +4220:OT::ItemVariationStore::sanitize\28hb_sanitize_context_t*\29\20const +4221:OT::HVARVVAR::sanitize\28hb_sanitize_context_t*\29\20const +4222:OT::GSUBGPOS::get_lookup_count\28\29\20const +4223:OT::GSUBGPOS::get_feature_list\28\29\20const +4224:OT::GSUBGPOS::accelerator_t::get_accel\28unsigned\20int\29\20const +4225:OT::Device::get_y_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +4226:OT::Device::get_x_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +4227:OT::ClipList::get_extents\28unsigned\20int\2c\20hb_glyph_extents_t*\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +4228:OT::COLR::paint_glyph\28hb_font_t*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20hb_colr_scratch_t&\29\20const +4229:OT::COLR::get_clip_list\28\29\20const +4230:OT::COLR::accelerator_t::release_scratch\28hb_colr_scratch_t*\29\20const +4231:OT::CFFIndex>::get_size\28\29\20const +4232:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +4233:OT::ArrayOf>::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20bool\29 +4234:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29 +4235:LineQuadraticIntersections::uniqueAnswer\28double\2c\20SkDPoint\20const&\29 +4236:LineQuadraticIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineQuadraticIntersections::PinTPoint\29 +4237:LineQuadraticIntersections::checkCoincident\28\29 +4238:LineQuadraticIntersections::addLineNearEndPoints\28\29 +4239:LineCubicIntersections::uniqueAnswer\28double\2c\20SkDPoint\20const&\29 +4240:LineCubicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineCubicIntersections::PinTPoint\29 +4241:LineCubicIntersections::checkCoincident\28\29 +4242:LineCubicIntersections::addLineNearEndPoints\28\29 +4243:LineConicIntersections::validT\28double*\2c\20double\2c\20double*\29 +4244:LineConicIntersections::uniqueAnswer\28double\2c\20SkDPoint\20const&\29 +4245:LineConicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineConicIntersections::PinTPoint\29 +4246:LineConicIntersections::checkCoincident\28\29 +4247:LineConicIntersections::addLineNearEndPoints\28\29 +4248:HandleInnerJoin\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +4249:GrVertexChunkBuilder::~GrVertexChunkBuilder\28\29 +4250:GrTriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +4251:GrTriangulator::splitEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +4252:GrTriangulator::pathToPolys\28float\2c\20SkRect\20const&\2c\20bool*\29 +4253:GrTriangulator::makePoly\28GrTriangulator::Poly**\2c\20GrTriangulator::Vertex*\2c\20int\29\20const +4254:GrTriangulator::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20GrTriangulator::VertexList*\2c\20int\29\20const +4255:GrTriangulator::checkForIntersection\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +4256:GrTriangulator::applyFillType\28int\29\20const +4257:GrTriangulator::SortMesh\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +4258:GrTriangulator::MonotonePoly::addEdge\28GrTriangulator::Edge*\29 +4259:GrTriangulator::GrTriangulator\28SkPath\20const&\2c\20SkArenaAlloc*\29 +4260:GrTriangulator::Edge::insertBelow\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +4261:GrTriangulator::Edge::insertAbove\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +4262:GrTriangulator::BreadcrumbTriangleList::append\28SkArenaAlloc*\2c\20SkPoint\2c\20SkPoint\2c\20SkPoint\2c\20int\29 +4263:GrThreadSafeCache::recycleEntry\28GrThreadSafeCache::Entry*\29 +4264:GrThreadSafeCache::dropAllRefs\28\29 +4265:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10500 +4266:GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +4267:GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +4268:GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +4269:GrTextureRenderTargetProxy::callbackDesc\28\29\20const +4270:GrTextureProxy::~GrTextureProxy\28\29 +4271:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::$_0::operator\28\29\28int\2c\20GrSamplerState::WrapMode\29\20const +4272:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29 +4273:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_3::operator\28\29\28bool\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +4274:GrTexture::GrTexture\28GrGpu*\2c\20SkISize\20const&\2c\20skgpu::Protected\2c\20GrTextureType\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +4275:GrTexture::ComputeScratchKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20skgpu::ScratchKey*\29 +4276:GrSurfaceProxyView::asTextureProxyRef\28\29\20const +4277:GrSurfaceProxy::instantiateImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::UniqueKey\20const*\29 +4278:GrSurfaceProxy::GrSurfaceProxy\28sk_sp\2c\20SkBackingFit\2c\20GrSurfaceProxy::UseAllocator\29 +4279:GrStyledShape::styledBounds\28\29\20const +4280:GrStyledShape::addGenIDChangeListener\28sk_sp\29\20const +4281:GrStyledShape::GrStyledShape\28SkRect\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +4282:GrStyledShape::GrStyledShape\28SkRRect\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +4283:GrStyle::isSimpleHairline\28\29\20const +4284:GrStyle::initPathEffect\28sk_sp\29 +4285:GrStencilSettings::Face::reset\28GrTStencilFaceSettings\20const&\2c\20bool\2c\20int\29 +4286:GrSimpleMeshDrawOpHelper::fixedFunctionFlags\28\29\20const +4287:GrShape::setPath\28SkPath\20const&\29 +4288:GrShape::segmentMask\28\29\20const +4289:GrShape::operator=\28GrShape\20const&\29 +4290:GrShape::convex\28bool\29\20const +4291:GrShaderVar::GrShaderVar\28SkString\2c\20SkSLType\2c\20int\29 +4292:GrResourceProvider::findResourceByUniqueKey\28skgpu::UniqueKey\20const&\29 +4293:GrResourceProvider::createPatternedIndexBuffer\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\2c\20skgpu::UniqueKey\20const*\29 +4294:GrResourceCache::removeUniqueKey\28GrGpuResource*\29 +4295:GrResourceCache::getNextTimestamp\28\29 +4296:GrResourceCache::findAndRefScratchResource\28skgpu::ScratchKey\20const&\29 +4297:GrRenderTask::dependsOn\28GrRenderTask\20const*\29\20const +4298:GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +4299:GrRenderTargetProxy::canUseStencil\28GrCaps\20const&\29\20const +4300:GrRecordingContextPriv::createDevice\28skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\2c\20skgpu::ganesh::Device::InitContents\29 +4301:GrRecordingContextPriv::addOnFlushCallbackObject\28GrOnFlushCallbackObject*\29 +4302:GrRecordingContext::~GrRecordingContext\28\29 +4303:GrQuadUtils::TessellationHelper::reset\28GrQuad\20const&\2c\20GrQuad\20const*\29 +4304:GrQuadUtils::TessellationHelper::getEdgeEquations\28\29 +4305:GrQuadUtils::TessellationHelper::Vertices::moveAlong\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +4306:GrQuadUtils::ResolveAAType\28GrAAType\2c\20GrQuadAAFlags\2c\20GrQuad\20const&\2c\20GrAAType*\2c\20GrQuadAAFlags*\29 +4307:GrQuadUtils::CropToRect\28SkRect\20const&\2c\20GrAA\2c\20DrawQuad*\2c\20bool\29 +4308:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::append\28GrQuad\20const&\2c\20\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA&&\2c\20GrQuad\20const*\29 +4309:GrQuad::setQuadType\28GrQuad::Type\29 +4310:GrPorterDuffXPFactory::SimpleSrcOverXP\28\29 +4311:GrPipeline*\20SkArenaAlloc::make\28GrPipeline::InitArgs&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29 +4312:GrPersistentCacheUtils::UnpackCachedShaders\28SkReadBuffer*\2c\20SkSL::NativeShader*\2c\20bool\2c\20SkSL::ProgramInterface*\2c\20int\2c\20GrPersistentCacheUtils::ShaderMetadata*\29 +4313:GrPathUtils::quadraticPointCount\28SkPoint\20const*\2c\20float\29 +4314:GrPathUtils::convertCubicToQuads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\29 +4315:GrPathTessellationShader::Make\28GrShaderCaps\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::tess::PatchAttribs\29 +4316:GrPathTessellationShader::MakeSimpleTriangleShader\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +4317:GrOvalOpFactory::MakeOvalOp\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\2c\20GrShaderCaps\20const*\29 +4318:GrOpsRenderPass::drawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +4319:GrOpFlushState::draw\28int\2c\20int\29 +4320:GrOp::chainConcat\28std::__2::unique_ptr>\29 +4321:GrNonAtomicRef::unref\28\29\20const +4322:GrModulateAtlasCoverageEffect::GrModulateAtlasCoverageEffect\28GrModulateAtlasCoverageEffect\20const&\29 +4323:GrMipLevel::operator=\28GrMipLevel&&\29 +4324:GrMeshDrawOp::PatternHelper::PatternHelper\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +4325:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29 +4326:GrImageInfo::makeDimensions\28SkISize\29\20const +4327:GrGpuResource::~GrGpuResource\28\29 +4328:GrGpuResource::removeScratchKey\28\29 +4329:GrGpuResource::registerWithCacheWrapped\28GrWrapCacheable\29 +4330:GrGpuResource::getResourceName\28\29\20const +4331:GrGpuResource::dumpMemoryStatisticsPriv\28SkTraceMemoryDump*\2c\20SkString\20const&\2c\20char\20const*\2c\20unsigned\20long\29\20const +4332:GrGpuResource::CreateUniqueID\28\29 +4333:GrGpuBuffer::onGpuMemorySize\28\29\20const +4334:GrGpu::resolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +4335:GrGpu::executeFlushInfo\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20std::__2::optional\2c\20skgpu::MutableTextureState\20const*\29 +4336:GrGeometryProcessor::TextureSampler::TextureSampler\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +4337:GrGeometryProcessor::TextureSampler::TextureSampler\28GrGeometryProcessor::TextureSampler&&\29 +4338:GrGeometryProcessor::ProgramImpl::TransformInfo::TransformInfo\28GrGeometryProcessor::ProgramImpl::TransformInfo\20const&\29 +4339:GrGeometryProcessor::ProgramImpl::AddMatrixKeys\28GrShaderCaps\20const&\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\29 +4340:GrGeometryProcessor::Attribute::size\28\29\20const +4341:GrGLUniformHandler::~GrGLUniformHandler\28\29 +4342:GrGLUniformHandler::getUniformVariable\28GrResourceHandle\29\20const +4343:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12945 +4344:GrGLTextureRenderTarget::onRelease\28\29 +4345:GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +4346:GrGLTextureRenderTarget::onAbandon\28\29 +4347:GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +4348:GrGLTexture::~GrGLTexture\28\29 +4349:GrGLTexture::onRelease\28\29 +4350:GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +4351:GrGLTexture::TextureTypeFromTarget\28unsigned\20int\29 +4352:GrGLSemaphore::Make\28GrGLGpu*\2c\20bool\29 +4353:GrGLSLVaryingHandler::~GrGLSLVaryingHandler\28\29 +4354:GrGLSLUniformHandler::addInputSampler\28skgpu::Swizzle\20const&\2c\20char\20const*\29 +4355:GrGLSLUniformHandler::UniformInfo::~UniformInfo\28\29 +4356:GrGLSLShaderBuilder::appendTextureLookup\28SkString*\2c\20GrResourceHandle\2c\20char\20const*\29\20const +4357:GrGLSLShaderBuilder::appendColorGamutXform\28char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +4358:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +4359:GrGLSLProgramDataManager::setSkMatrix\28GrResourceHandle\2c\20SkMatrix\20const&\29\20const +4360:GrGLSLProgramBuilder::writeFPFunction\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +4361:GrGLSLProgramBuilder::nameExpression\28SkString*\2c\20char\20const*\29 +4362:GrGLSLProgramBuilder::fragmentProcessorHasCoordsParam\28GrFragmentProcessor\20const*\29\20const +4363:GrGLSLProgramBuilder::emitSampler\28GrBackendFormat\20const&\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\29 +4364:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_11195 +4365:GrGLRenderTarget::~GrGLRenderTarget\28\29 +4366:GrGLRenderTarget::onRelease\28\29 +4367:GrGLRenderTarget::onAbandon\28\29 +4368:GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +4369:GrGLProgramDataManager::~GrGLProgramDataManager\28\29 +4370:GrGLProgramBuilder::~GrGLProgramBuilder\28\29 +4371:GrGLProgramBuilder::computeCountsAndStrides\28unsigned\20int\2c\20GrGeometryProcessor\20const&\2c\20bool\29 +4372:GrGLProgramBuilder::addInputVars\28SkSL::ProgramInterface\20const&\29 +4373:GrGLOpsRenderPass::dmsaaLoadStoreBounds\28\29\20const +4374:GrGLOpsRenderPass::bindInstanceBuffer\28GrBuffer\20const*\2c\20int\29 +4375:GrGLGpu::insertSemaphore\28GrSemaphore*\29 +4376:GrGLGpu::flushViewport\28SkIRect\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +4377:GrGLGpu::flushScissor\28GrScissorState\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +4378:GrGLGpu::flushClearColor\28std::__2::array\29 +4379:GrGLGpu::disableStencil\28\29 +4380:GrGLGpu::deleteSync\28__GLsync*\29 +4381:GrGLGpu::createTexture\28SkISize\2c\20GrGLFormat\2c\20unsigned\20int\2c\20skgpu::Renderable\2c\20GrGLTextureParameters::SamplerOverriddenState*\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +4382:GrGLGpu::copySurfaceAsDraw\28GrSurface*\2c\20bool\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +4383:GrGLGpu::HWVertexArrayState::bindInternalVertexArray\28GrGLGpu*\2c\20GrBuffer\20const*\29 +4384:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20char\2c\20int\2c\20void\20const*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20char\2c\20int\2c\20void\20const*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20char\2c\20int\2c\20void\20const*\29 +4385:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +4386:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +4387:GrGLFunction::GrGLFunction\28unsigned\20char\20const*\20\28*\29\28unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29 +4388:GrGLContextInfo::~GrGLContextInfo\28\29 +4389:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrGLFormat\29\20const +4390:GrGLCaps::canCopyAsDraw\28GrGLFormat\2c\20bool\2c\20bool\29\20const +4391:GrGLBuffer::~GrGLBuffer\28\29 +4392:GrGLBuffer::Make\28GrGLGpu*\2c\20unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +4393:GrGLBackendTextureData::GrGLBackendTextureData\28GrGLTextureInfo\20const&\2c\20sk_sp\29 +4394:GrGLAttribArrayState::invalidate\28\29 +4395:GrGLAttribArrayState::enableVertexArrays\28GrGLGpu\20const*\2c\20int\2c\20GrPrimitiveRestart\29 +4396:GrGLAttachment::GrGLAttachment\28GrGpu*\2c\20unsigned\20int\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20GrGLFormat\2c\20std::__2::basic_string_view>\29 +4397:GrFragmentProcessors::make_effect_fp\28sk_sp\2c\20char\20const*\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkSpan\2c\20GrFPArgs\20const&\29 +4398:GrFragmentProcessors::IsSupported\28SkMaskFilter\20const*\29 +4399:GrFragmentProcessor::makeProgramImpl\28\29\20const +4400:GrFragmentProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +4401:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +4402:GrFragmentProcessor::ProgramImpl::~ProgramImpl\28\29 +4403:GrFragmentProcessor::MulInputByChildAlpha\28std::__2::unique_ptr>\29 +4404:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +4405:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29 +4406:GrEagerDynamicVertexAllocator::lock\28unsigned\20long\2c\20int\29 +4407:GrDynamicAtlas::makeNode\28GrDynamicAtlas::Node*\2c\20int\2c\20int\2c\20int\2c\20int\29 +4408:GrDstProxyView::GrDstProxyView\28GrDstProxyView\20const&\29 +4409:GrDrawingManager::setLastRenderTask\28GrSurfaceProxy\20const*\2c\20GrRenderTask*\29 +4410:GrDrawingManager::insertTaskBeforeLast\28sk_sp\29 +4411:GrDrawingManager::flushSurfaces\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +4412:GrDrawOpAtlas::makeMRU\28skgpu::Plot*\2c\20unsigned\20int\29 +4413:GrDefaultGeoProcFactory::MakeForDeviceSpace\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +4414:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29 +4415:GrColorTypeClampType\28GrColorType\29 +4416:GrColorSpaceXform::Equals\28GrColorSpaceXform\20const*\2c\20GrColorSpaceXform\20const*\29 +4417:GrBufferAllocPool::unmap\28\29 +4418:GrBufferAllocPool::reset\28\29 +4419:GrBlurUtils::extract_draw_rect_from_data\28SkData*\2c\20SkIRect\20const&\29 +4420:GrBlurUtils::can_filter_mask\28SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect*\29 +4421:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29 +4422:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +4423:GrBicubicEffect::GrBicubicEffect\28std::__2::unique_ptr>\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrBicubicEffect::Clamp\29 +4424:GrBackendTextures::MakeGL\28int\2c\20int\2c\20skgpu::Mipmapped\2c\20GrGLTextureInfo\20const&\2c\20sk_sp\2c\20std::__2::basic_string_view>\29 +4425:GrBackendFormatStencilBits\28GrBackendFormat\20const&\29 +4426:GrBackendFormat::operator==\28GrBackendFormat\20const&\29\20const +4427:GrAtlasManager::resolveMaskFormat\28skgpu::MaskFormat\29\20const +4428:GrAATriangulator::~GrAATriangulator\28\29 +4429:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrAATriangulator::EventList*\29\20const +4430:GrAATriangulator::connectSSEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +4431:GrAAConvexTessellator::terminate\28GrAAConvexTessellator::Ring\20const&\29 +4432:GrAAConvexTessellator::movable\28int\29\20const +4433:GrAAConvexTessellator::computePtAlongBisector\28int\2c\20SkPoint\20const&\2c\20int\2c\20float\2c\20SkPoint*\29\20const +4434:GrAAConvexTessellator::computeNormals\28\29::$_0::operator\28\29\28SkPoint\29\20const +4435:GrAAConvexTessellator::CandidateVerts::originatingIdx\28int\29\20const +4436:GrAAConvexTessellator::CandidateVerts::fuseWithPrior\28int\29 +4437:GrAAConvexTessellator::CandidateVerts::addNewPt\28SkPoint\20const&\2c\20int\2c\20int\2c\20bool\29 +4438:GetVariationDesignPosition\28FT_FaceRec_*\2c\20SkSpan\29 +4439:GetAxes\28FT_FaceRec_*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\29 +4440:FT_Set_Transform +4441:FT_Set_Char_Size +4442:FT_Select_Metrics +4443:FT_Request_Metrics +4444:FT_List_Remove +4445:FT_List_Finalize +4446:FT_Hypot +4447:FT_GlyphLoader_CreateExtra +4448:FT_GlyphLoader_Adjust_Points +4449:FT_Get_Paint +4450:FT_Get_MM_Var +4451:FT_Get_Color_Glyph_Paint +4452:FT_Done_GlyphSlot +4453:FT_Done_Face +4454:EllipticalRRectOp::~EllipticalRRectOp\28\29 +4455:EdgeLT::operator\28\29\28Edge\20const&\2c\20Edge\20const&\29\20const +4456:DAffineMatrix::mapPoint\28\28anonymous\20namespace\29::DPoint\20const&\29\20const +4457:DAffineMatrix::mapPoint\28SkPoint\20const&\29\20const +4458:Cr_z_inflate_table +4459:CopyFromCompoundDictionary +4460:Compute_Point_Displacement +4461:CircularRRectOp::~CircularRRectOp\28\29 +4462:CFF::cff_stack_t::push\28\29 +4463:CFF::UnsizedByteStr\20const&\20CFF::StructAtOffsetOrNull\28void\20const*\2c\20int\2c\20hb_sanitize_context_t&\2c\20unsigned\20int&\29 +4464:BrotliWarmupBitReader +4465:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::operator++\28\29 +4466:ActiveEdgeList::DoubleRotation\28ActiveEdge*\2c\20int\29 +4467:AAT::kerxTupleKern\28int\2c\20unsigned\20int\2c\20void\20const*\2c\20AAT::hb_aat_apply_context_t*\29 +4468:AAT::kern_accelerator_data_t::~kern_accelerator_data_t\28\29 +4469:AAT::hb_aat_scratch_t::~hb_aat_scratch_t\28\29 +4470:AAT::hb_aat_scratch_t::destroy_buffer_glyph_set\28hb_bit_set_t*\29\20const +4471:AAT::hb_aat_scratch_t::create_buffer_glyph_set\28\29\20const +4472:AAT::hb_aat_apply_context_t::delete_glyph\28\29 +4473:AAT::feat::get_feature\28hb_aat_layout_feature_type_t\29\20const +4474:AAT::Lookup::sanitize\28hb_sanitize_context_t*\29\20const +4475:AAT::ClassTable>::get_class\28unsigned\20int\2c\20unsigned\20int\29\20const +4476:4263 +4477:4264 +4478:4265 +4479:4266 +4480:4267 +4481:4268 +4482:4269 +4483:4270 +4484:4271 +4485:4272 +4486:4273 +4487:4274 +4488:4275 +4489:4276 +4490:4277 +4491:4278 +4492:4279 +4493:4280 +4494:4281 +4495:4282 +4496:4283 +4497:4284 +4498:4285 +4499:4286 +4500:4287 +4501:4288 +4502:4289 +4503:4290 +4504:4291 +4505:4292 +4506:4293 +4507:4294 +4508:4295 +4509:4296 +4510:4297 +4511:4298 +4512:4299 +4513:4300 +4514:4301 +4515:4302 +4516:4303 +4517:4304 +4518:4305 +4519:4306 +4520:4307 +4521:4308 +4522:4309 +4523:4310 +4524:4311 +4525:4312 +4526:4313 +4527:4314 +4528:4315 +4529:zeroinfnan +4530:zero_mark_widths_by_gdef\28hb_buffer_t*\2c\20bool\29 +4531:xyzd50_to_lab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +4532:xyz_almost_equal\28skcms_Matrix3x3\20const&\2c\20skcms_Matrix3x3\20const&\29 +4533:write_vertex_position\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrShaderVar\20const&\2c\20SkMatrix\20const&\2c\20char\20const*\2c\20GrShaderVar*\2c\20GrResourceHandle*\29 +4534:write_passthrough_vertex_position\28GrGLSLVertexBuilder*\2c\20GrShaderVar\20const&\2c\20GrShaderVar*\29 +4535:winding_mono_quad\28SkSpan\2c\20float\2c\20float\2c\20int*\29 +4536:winding_mono_conic\28SkConic\20const&\2c\20float\2c\20float\2c\20int*\29 +4537:wctomb +4538:wchar_t*\20std::__2::copy\5babi:nn180100\5d\2c\20wchar_t*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20wchar_t*\29 +4539:wchar_t*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20std::__2::__element_count\29 +4540:walk_simple_edges\28SkEdge*\2c\20SkBlitter*\2c\20int\2c\20int\29 +4541:vsscanf +4542:void\20std::__2::unique_ptr::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot*\2c\200>\28skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot*\29 +4543:void\20std::__2::unique_ptr\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot*\2c\200>\28skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot*\29 +4544:void\20std::__2::unique_ptr>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot*\2c\200>\28skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot*\29 +4545:void\20std::__2::unique_ptr::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot*\2c\200>\28skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot*\29 +4546:void\20std::__2::__variant_detail::__impl\2c\20std::__2::unique_ptr>>::__assign\5babi:ne180100\5d<0ul\2c\20sk_sp>\28sk_sp&&\29 +4547:void\20std::__2::__variant_detail::__impl::__assign\5babi:ne180100\5d<1ul\2c\20int&>\28int&\29 +4548:void\20std::__2::__variant_detail::__impl::__assign\5babi:ne180100\5d<0ul\2c\20SkPaint>\28SkPaint&&\29 +4549:void\20std::__2::__variant_detail::__assignment>::__assign_alt\5babi:ne180100\5d<0ul\2c\20SkPaint\2c\20SkPaint>\28std::__2::__variant_detail::__alt<0ul\2c\20SkPaint>&\2c\20SkPaint&&\29 +4550:void\20std::__2::__tree_right_rotate\5babi:ne180100\5d*>\28std::__2::__tree_node_base*\29 +4551:void\20std::__2::__tree_left_rotate\5babi:ne180100\5d*>\28std::__2::__tree_node_base*\29 +4552:void\20std::__2::__stable_sort_move\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\29 +4553:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +4554:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**\2c\200>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +4555:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +4556:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +4557:void\20std::__2::__sift_up\5babi:ne180100\5d*>>\28std::__2::__wrap_iter*>\2c\20std::__2::__wrap_iter*>\2c\20GrGeometryProcessor::ProgramImpl::emitTransformCode\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\29::$_1&\2c\20std::__2::iterator_traits*>>::difference_type\29 +4558:void\20std::__2::__sift_up\5babi:ne180100\5d>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20GrAATriangulator::EventComparator&\2c\20std::__2::iterator_traits>::difference_type\29 +4559:void\20std::__2::__optional_storage_base::__construct\5babi:ne180100\5d\28skia::textlayout::FontArguments\20const&\29 +4560:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d\20const&>\28std::__2::__optional_copy_assign_base\20const&\29 +4561:void\20std::__2::__optional_storage_base::__construct\5babi:ne180100\5d\28flutter::DlPaint\20const&\29 +4562:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d\20const&>\28std::__2::__optional_copy_assign_base\20const&\29 +4563:void\20std::__2::__optional_storage_base::__construct\5babi:ne180100\5d\28AutoLayerForImageFilter&&\29 +4564:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d&\2c\20int&>\2c\20std::__2::tuple\2c\20unsigned\20long>\2c\20sk_sp\2c\20unsigned\20long\2c\200ul\2c\201ul>\28std::__2::tuple&\2c\20int&>&\2c\20std::__2::tuple\2c\20unsigned\20long>&&\2c\20std::__2::__tuple_types\2c\20unsigned\20long>\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +4565:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d&>\2c\20std::__2::tuple>\2c\20GrSurfaceProxyView\2c\20sk_sp\2c\200ul\2c\201ul>\28std::__2::tuple&>&\2c\20std::__2::tuple>&&\2c\20std::__2::__tuple_types>\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +4566:void\20std::__2::__list_imp>::__delete_node\5babi:ne180100\5d<>\28std::__2::__list_node*\29 +4567:void\20std::__2::__introsort\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +4568:void\20std::__2::__introsort\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**\2c\20false>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20std::__2::iterator_traits\20const**>::difference_type\2c\20bool\29 +4569:void\20std::__2::__introsort\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +4570:void\20std::__2::__introsort\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +4571:void\20std::__2::__forward_list_base\2c\20std::__2::allocator>>::__delete_node\5babi:ne180100\5d<>\28std::__2::__forward_list_node\2c\20void*>*\29 +4572:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20char*&\2c\20char*&\29 +4573:void\20sorted_merge<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +4574:void\20sorted_merge<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +4575:void\20sort_r_simple\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\2c\20void*\29\2c\20void*\29 +4576:void\20sktext::gpu::fillDirectClipped\28SkZip\2c\20unsigned\20int\2c\20SkPoint\2c\20SkIRect*\29 +4577:void\20skgpu::ganesh::SurfaceFillContext::clearAtLeast<\28SkAlphaType\292>\28SkIRect\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +4578:void\20portable::memsetT\28unsigned\20short*\2c\20unsigned\20short\2c\20int\29 +4579:void\20portable::memsetT\28unsigned\20int*\2c\20unsigned\20int\2c\20int\29 +4580:void\20hb_sanitize_context_t::set_object>\28OT::KernSubTable\20const*\29 +4581:void\20hair_path<\28SkPaint::Cap\292>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +4582:void\20hair_path<\28SkPaint::Cap\291>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +4583:void\20hair_path<\28SkPaint::Cap\290>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +4584:void\20\28anonymous\20namespace\29::copyFT2LCD16\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\29 +4585:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int*\2c\20int\29 +4586:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20unsigned\20char*\2c\20int\29 +4587:void\20SkTQSort\28double*\2c\20double*\29 +4588:void\20SkTIntroSort\28int\2c\20int*\2c\20int\2c\20DistanceLessThan\20const&\29 +4589:void\20SkTIntroSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29>\28int\2c\20float*\2c\20int\2c\20void\20SkTQSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29\20const&\29 +4590:void\20SkTIntroSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29>\28int\2c\20double*\2c\20int\2c\20void\20SkTQSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29\20const&\29 +4591:void\20SkTIntroSort\28int\2c\20SkString*\2c\20int\2c\20bool\20\20const\28&\29\28SkString\20const&\2c\20SkString\20const&\29\29 +4592:void\20SkTIntroSort\28int\2c\20SkOpRayHit**\2c\20int\2c\20bool\20\20const\28&\29\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29\29 +4593:void\20SkTIntroSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29>\28int\2c\20SkOpContour*\2c\20int\2c\20void\20SkTQSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29\20const&\29 +4594:void\20SkTIntroSort\28int\2c\20SkEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkEdge\20const*\2c\20SkEdge\20const*\29\29 +4595:void\20SkTIntroSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29>\28int\2c\20SkClosestRecord\20const*\2c\20int\2c\20void\20SkTQSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29\20const&\29 +4596:void\20SkTIntroSort\28int\2c\20SkAnalyticEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29\29 +4597:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\20const\28&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +4598:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\28*\20const&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +4599:void\20SkTIntroSort\28int\2c\20Edge*\2c\20int\2c\20EdgeLT\20const&\29 +4600:void\20SkSafeUnref\28GrWindowRectangles::Rec\20const*\29 +4601:void\20SkSafeUnref\28GrSurface::RefCntedReleaseProc*\29 +4602:void\20SkSafeUnref\28GrBufferAllocPool::CpuBufferCache*\29 +4603:void\20SkRecords::FillBounds::trackBounds\28SkRecords::NoOp\20const&\29 +4604:void\20GrGLProgramDataManager::setMatrices<4>\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +4605:void\20GrGLProgramDataManager::setMatrices<3>\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +4606:void\20GrGLProgramDataManager::setMatrices<2>\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +4607:void\20A8_row_aa\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\20\28*\29\28unsigned\20char\2c\20unsigned\20char\29\2c\20bool\29 +4608:void*\20flutter::DisplayListBuilder::Push\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool\2c\20bool&>\28unsigned\20long\2c\20sk_sp\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool&&\2c\20bool&\29 +4609:void*\20flutter::DisplayListBuilder::Push\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool\2c\20impeller::TRect\20const&\2c\20bool&>\28unsigned\20long\2c\20sk_sp\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool&&\2c\20impeller::TRect\20const&\2c\20bool&\29 +4610:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +4611:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +4612:virtual\20thunk\20to\20GrGLTexture::onSetLabel\28\29 +4613:virtual\20thunk\20to\20GrGLTexture::backendFormat\28\29\20const +4614:vfiprintf +4615:validate_texel_levels\28SkISize\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20GrCaps\20const*\29 +4616:valid_divs\28int\20const*\2c\20int\2c\20int\2c\20int\29 +4617:utf8_byte_type\28unsigned\20char\29 +4618:use_tiled_rendering\28GrGLCaps\20const&\2c\20GrOpsRenderPass::StencilLoadAndStoreInfo\20const&\29 +4619:uprv_realloc_skia +4620:update_edge\28SkEdge*\2c\20int\29 +4621:unsigned\20short\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +4622:unsigned\20short\20sk_saturate_cast\28float\29 +4623:unsigned\20long\20long\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +4624:unsigned\20long&\20std::__2::vector>::emplace_back\28unsigned\20long&\29 +4625:unsigned\20int\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +4626:unsigned\20int\20const*\20std::__2::lower_bound\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20unsigned\20long\20const&\29 +4627:unsigned\20char\20pack_distance_field_val<4>\28float\29 +4628:uniformData_getPointer +4629:uniformData_dispose +4630:ubidi_getVisualRun_skia +4631:ubidi_countRuns_skia +4632:ubidi_close_skia +4633:u_charType_skia +4634:u8_lerp\28unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char\29 +4635:tt_size_select +4636:tt_size_run_prep +4637:tt_size_done_bytecode +4638:tt_sbit_decoder_load_image +4639:tt_prepare_zone +4640:tt_loader_set_pp +4641:tt_loader_init +4642:tt_loader_done +4643:tt_hvadvance_adjust +4644:tt_face_vary_cvt +4645:tt_face_palette_set +4646:tt_face_load_generic_header +4647:tt_face_load_cvt +4648:tt_face_goto_table +4649:tt_face_get_metrics +4650:tt_done_blend +4651:tt_cmap4_set_range +4652:tt_cmap4_next +4653:tt_cmap4_char_map_linear +4654:tt_cmap4_char_map_binary +4655:tt_cmap2_get_subheader +4656:tt_cmap14_get_nondef_chars +4657:tt_cmap14_get_def_chars +4658:tt_cmap14_def_char_count +4659:tt_cmap13_next +4660:tt_cmap13_init +4661:tt_cmap13_char_map_binary +4662:tt_cmap12_next +4663:tt_cmap12_char_map_binary +4664:tt_apply_mvar +4665:top_collinear\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +4666:to_stablekey\28int\2c\20unsigned\20int\29 +4667:throw_on_failure\28unsigned\20long\2c\20void*\29 +4668:thai_pua_shape\28unsigned\20int\2c\20thai_action_t\2c\20hb_font_t*\29 +4669:t1_lookup_glyph_by_stdcharcode_ps +4670:t1_cmap_std_init +4671:t1_cmap_std_char_index +4672:t1_builder_init +4673:t1_builder_close_contour +4674:t1_builder_add_point1 +4675:t1_builder_add_point +4676:t1_builder_add_contour +4677:sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29 +4678:sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29 +4679:swap\28hb_bit_set_t&\2c\20hb_bit_set_t&\29 +4680:strutStyle_setFontSize +4681:strtoull +4682:strtoll_l +4683:strspn +4684:strncpy +4685:strcspn +4686:store_int +4687:std::logic_error::~logic_error\28\29 +4688:std::logic_error::logic_error\28char\20const*\29 +4689:std::exception::exception\5babi:nn180100\5d\28\29 +4690:std::__2::vector>::operator=\5babi:ne180100\5d\28std::__2::vector>\20const&\29 +4691:std::__2::vector>::__vdeallocate\28\29 +4692:std::__2::vector>::__move_assign\28std::__2::vector>&\2c\20std::__2::integral_constant\29 +4693:std::__2::vector>\2c\20std::__2::allocator>>>::__base_destruct_at_end\5babi:ne180100\5d\28std::__2::unique_ptr>*\29 +4694:std::__2::vector\2c\20std::__2::allocator>>::__base_destruct_at_end\5babi:ne180100\5d\28std::__2::tuple*\29 +4695:std::__2::vector>::max_size\28\29\20const +4696:std::__2::vector>::capacity\5babi:nn180100\5d\28\29\20const +4697:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +4698:std::__2::vector>::__clear\5babi:nn180100\5d\28\29 +4699:std::__2::vector\2c\20std::__2::allocator>\2c\20std::__2::allocator\2c\20std::__2::allocator>>>::__clear\5babi:ne180100\5d\28\29 +4700:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +4701:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +4702:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +4703:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +4704:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +4705:std::__2::vector>::operator=\5babi:ne180100\5d\28std::__2::vector>\20const&\29 +4706:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +4707:std::__2::vector>::__base_destruct_at_end\5babi:ne180100\5d\28skia::textlayout::FontFeature*\29 +4708:std::__2::vector\2c\20std::__2::allocator>>::vector\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29 +4709:std::__2::vector\2c\20std::__2::allocator>>::reserve\28unsigned\20long\29 +4710:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +4711:std::__2::vector>::push_back\5babi:ne180100\5d\28flutter::DlPaint\20const&\29 +4712:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +4713:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +4714:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +4715:std::__2::vector>::pop_back\28\29 +4716:std::__2::vector>::__base_destruct_at_end\5babi:ne180100\5d\28flutter::DisplayListBuilder::SaveInfo*\29 +4717:std::__2::vector>::insert\28std::__2::__wrap_iter\2c\20float&&\29 +4718:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +4719:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +4720:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +4721:std::__2::vector>::vector\5babi:ne180100\5d\28std::initializer_list\29 +4722:std::__2::vector>::reserve\28unsigned\20long\29 +4723:std::__2::vector>::operator=\5babi:ne180100\5d\28std::__2::vector>\20const&\29 +4724:std::__2::vector>::__vdeallocate\28\29 +4725:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +4726:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +4727:std::__2::vector>::__base_destruct_at_end\5babi:ne180100\5d\28SkString*\29 +4728:std::__2::vector>::push_back\5babi:ne180100\5d\28SkSL::TraceInfo&&\29 +4729:std::__2::vector>::push_back\5babi:ne180100\5d\28SkSL::SymbolTable*\20const&\29 +4730:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +4731:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +4732:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\2c\20SkSL::ProgramElement\20const**\29 +4733:std::__2::vector>::__move_range\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\29 +4734:std::__2::vector>::push_back\5babi:ne180100\5d\28SkRuntimeEffect::Uniform&&\29 +4735:std::__2::vector>::push_back\5babi:ne180100\5d\28SkRuntimeEffect::Child&&\29 +4736:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +4737:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +4738:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +4739:std::__2::vector>::reserve\28unsigned\20long\29 +4740:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +4741:std::__2::vector>::push_back\5babi:ne180100\5d\28SkMeshSpecification::Varying&&\29 +4742:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +4743:std::__2::vector>::reserve\28unsigned\20long\29 +4744:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +4745:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +4746:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +4747:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +4748:std::__2::unique_ptr::unique_ptr\5babi:nn180100\5d\28unsigned\20char*\2c\20std::__2::__dependent_type\2c\20true>::__good_rval_ref_type\29 +4749:std::__2::unique_ptr::operator=\5babi:ne180100\5d\28std::__2::unique_ptr&&\29 +4750:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4751:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::gpu::TextBlobRedrawCoordinator*\29 +4752:std::__2::unique_ptr::~unique_ptr\5babi:ne180100\5d\28\29 +4753:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4754:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::gpu::SubRunAllocator*\29 +4755:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4756:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::gpu::StrikeCache*\29 +4757:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4758:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::GlyphRunBuilder*\29 +4759:std::__2::unique_ptr\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4760:std::__2::unique_ptr\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4761:std::__2::unique_ptr\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4762:std::__2::unique_ptr>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4763:std::__2::unique_ptr\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4764:std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4765:std::__2::unique_ptr::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4766:std::__2::unique_ptr>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4767:std::__2::unique_ptr\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4768:std::__2::unique_ptr\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4769:std::__2::unique_ptr::Slot\20\5b\5d\2c\20std::__2::default_delete::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4770:std::__2::unique_ptr\2c\20std::__2::default_delete>>::reset\5babi:ne180100\5d\28skia_private::TArray*\29 +4771:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4772:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4773:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skgpu::ganesh::SmallPathAtlasMgr*\29 +4774:std::__2::unique_ptr\20\5b\5d\2c\20std::__2::default_delete\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +4775:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28hb_font_t*\29 +4776:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4777:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28hb_blob_t*\29 +4778:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4779:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28flutter::DisplayListBuilder*\29 +4780:std::__2::unique_ptr::operator=\5babi:nn180100\5d\28std::__2::unique_ptr&&\29 +4781:std::__2::unique_ptr<\28anonymous\20namespace\29::SoftwarePathData\2c\20std::__2::default_delete<\28anonymous\20namespace\29::SoftwarePathData>>::reset\5babi:ne180100\5d\28\28anonymous\20namespace\29::SoftwarePathData*\29 +4782:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4783:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkTaskGroup*\29 +4784:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4785:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4786:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::RP::Program*\29 +4787:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4788:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Program*\29 +4789:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::ProgramUsage*\29 +4790:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4791:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4792:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::MemoryPool*\29 +4793:std::__2::unique_ptr>\20SkSL::coalesce_vector\28std::__2::array\20const&\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +4794:std::__2::unique_ptr>\20SkSL::coalesce_pairwise_vectors\28std::__2::array\20const&\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +4795:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4796:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4797:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkRecordCanvas*\29 +4798:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkLatticeIter*\29 +4799:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkCanvas::Layer*\29 +4800:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4801:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkCanvas::BackImage*\29 +4802:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4803:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkArenaAlloc*\29 +4804:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4805:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrThreadSafeCache*\29 +4806:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4807:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrResourceProvider*\29 +4808:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4809:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrResourceCache*\29 +4810:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4811:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrProxyProvider*\29 +4812:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4813:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4814:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +4815:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrAuditTrail::OpNode*\29 +4816:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28FT_SizeRec_*\29 +4817:std::__2::tuple::tuple\5babi:nn180100\5d\28std::__2::locale::id::__get\28\29::$_0&&\29 +4818:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda0'\28\29::operator\28\29\28\29\20const +4819:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +4820:std::__2::tuple&\20std::__2::tuple::operator=\5babi:ne180100\5d\28std::__2::pair&&\29 +4821:std::__2::to_string\28unsigned\20long\29 +4822:std::__2::to_chars_result\20std::__2::__to_chars_itoa\5babi:nn180100\5d\28char*\2c\20char*\2c\20unsigned\20int\2c\20std::__2::integral_constant\29 +4823:std::__2::time_put>>::~time_put\28\29_16354 +4824:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +4825:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +4826:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +4827:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +4828:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +4829:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +4830:std::__2::shared_ptr\20std::__2::make_shared\5babi:ne180100\5d\20const&\2c\20void>\28std::__2::shared_ptr\20const&\29 +4831:std::__2::shared_ptr::shared_ptr\5babi:ne180100\5d\28flutter::DisplayListBuilder::LayerInfo*\29 +4832:std::__2::reverse_iterator::operator++\5babi:nn180100\5d\28\29 +4833:std::__2::priority_queue>\2c\20GrAATriangulator::EventComparator>::push\28GrAATriangulator::Event*\20const&\29 +4834:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t*\29\20const +4835:std::__2::pair::pair\5babi:ne180100\5d\28std::__2::pair&&\29 +4836:std::__2::pair>::~pair\28\29 +4837:std::__2::pair\20std::__2::__unwrap_and_dispatch\5babi:ne180100\5d\2c\20std::__2::__copy_trivial>\2c\20skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\200>\28skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\29 +4838:std::__2::pair\2c\20std::__2::allocator>>>::~pair\28\29 +4839:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +4840:std::__2::pair::pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +4841:std::__2::pair>::~pair\28\29 +4842:std::__2::pair\20std::__2::__unwrap_and_dispatch\5babi:ne180100\5d\2c\20std::__2::__copy_trivial>\2c\20SkString*\2c\20SkString*\2c\20SkString*\2c\200>\28SkString*\2c\20SkString*\2c\20SkString*\29 +4843:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28wchar_t\29 +4844:std::__2::optional>\20impeller::TRect::MakePointBounds*>\28impeller::TPoint*\2c\20impeller::TPoint*\29 +4845:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28flutter::DlPaint&\29 +4846:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28SkPaint\20const&\29 +4847:std::__2::optional::value\5babi:ne180100\5d\28\29\20& +4848:std::__2::numpunct::~numpunct\28\29 +4849:std::__2::numpunct::~numpunct\28\29 +4850:std::__2::num_put>>\20const&\20std::__2::use_facet\5babi:nn180100\5d>>>\28std::__2::locale\20const&\29 +4851:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +4852:std::__2::num_get>>\20const&\20std::__2::use_facet\5babi:nn180100\5d>>>\28std::__2::locale\20const&\29 +4853:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +4854:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +4855:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +4856:std::__2::moneypunct::do_negative_sign\28\29\20const +4857:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +4858:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +4859:std::__2::moneypunct::do_negative_sign\28\29\20const +4860:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20wchar_t*&\2c\20wchar_t*\29 +4861:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20char*&\2c\20char*\29 +4862:std::__2::locale::operator=\28std::__2::locale\20const&\29 +4863:std::__2::locale::facet**\20std::__2::__construct_at\5babi:nn180100\5d\28std::__2::locale::facet**\29 +4864:std::__2::locale::__imp::~__imp\28\29 +4865:std::__2::locale::__imp::release\28\29 +4866:std::__2::list>::pop_front\28\29 +4867:std::__2::iterator_traits\2c\20std::__2::allocator>\20const*>::difference_type\20std::__2::distance\5babi:nn180100\5d\2c\20std::__2::allocator>\20const*>\28std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\29 +4868:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28char*\2c\20char*\29 +4869:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28char*\2c\20char*\2c\20std::__2::random_access_iterator_tag\29 +4870:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +4871:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +4872:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +4873:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +4874:std::__2::ios_base::width\5babi:nn180100\5d\28long\29 +4875:std::__2::ios_base::clear\28unsigned\20int\29 +4876:std::__2::ios_base::__call_callbacks\28std::__2::ios_base::event\29 +4877:std::__2::function::operator\28\29\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29\20const +4878:std::__2::function::operator\28\29\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29\20const +4879:std::__2::function::operator\28\29\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29\20const +4880:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::writeDeferredStrokePatch\28\29 +4881:std::__2::enable_if>::value\2c\20SkRuntimeEffectBuilder::BuilderUniform&>::type\20SkRuntimeEffectBuilder::BuilderUniform::operator=>\28std::__2::array\20const&\29 +4882:std::__2::enable_if::value\2c\20SkRuntimeEffectBuilder::BuilderUniform&>::type\20SkRuntimeEffectBuilder::BuilderUniform::operator=\28float\20const&\29 +4883:std::__2::enable_if\2c\20float>::type\20impeller::saturated::AverageScalar\28float\2c\20float\29 +4884:std::__2::enable_if>::value\20&&\20sizeof\20\28skia::textlayout::SkRange\29\20!=\204\2c\20unsigned\20int>::type\20SkGoodHash::operator\28\29>\28skia::textlayout::SkRange\20const&\29\20const +4885:std::__2::enable_if::value\20&&\20sizeof\20\28bool\29\20!=\204\2c\20unsigned\20int>::type\20SkGoodHash::operator\28\29\28bool\20const&\29\20const +4886:std::__2::enable_if\2c\20int>::type\20impeller::saturated::Add\28int\2c\20int\29 +4887:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:nn180100\5d\28char&\2c\20char&\29 +4888:std::__2::deque>::back\28\29 +4889:std::__2::deque>::__add_back_capacity\28\29 +4890:std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::_EnableIfConvertible::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot>::type\20std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot>\28skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot*\29\20const +4891:std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot>::type\20std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot>\28skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot*\29\20const +4892:std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>::type\20std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>\28skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot*\29\20const +4893:std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot>::type\20std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot>\28skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot*\29\20const +4894:std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot>::type\20std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot>\28skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot*\29\20const +4895:std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::_EnableIfConvertible::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot>::type\20std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot>\28skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot*\29\20const +4896:std::__2::default_delete\20\5b\5d>::_EnableIfConvertible>::type\20std::__2::default_delete\20\5b\5d>::operator\28\29\5babi:ne180100\5d>\28sk_sp*\29\20const +4897:std::__2::default_delete::_EnableIfConvertible::type\20std::__2::default_delete::operator\28\29\5babi:ne180100\5d\28GrGLCaps::ColorTypeInfo*\29\20const +4898:std::__2::ctype::~ctype\28\29 +4899:std::__2::codecvt::~codecvt\28\29 +4900:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +4901:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char32_t\20const*\2c\20char32_t\20const*\2c\20char32_t\20const*&\2c\20char8_t*\2c\20char8_t*\2c\20char8_t*&\29\20const +4902:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20unsigned\20long\29\20const +4903:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20char8_t\20const*&\2c\20char32_t*\2c\20char32_t*\2c\20char32_t*&\29\20const +4904:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*&\2c\20char8_t*\2c\20char8_t*\2c\20char8_t*&\29\20const +4905:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20unsigned\20long\29\20const +4906:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20char8_t\20const*&\2c\20char16_t*\2c\20char16_t*\2c\20char16_t*&\29\20const +4907:std::__2::char_traits::eq_int_type\5babi:nn180100\5d\28int\2c\20int\29 +4908:std::__2::char_traits::not_eof\5babi:nn180100\5d\28int\29 +4909:std::__2::char_traits::find\5babi:ne180100\5d\28char\20const*\2c\20unsigned\20long\2c\20char\20const&\29 +4910:std::__2::basic_stringstream\2c\20std::__2::allocator>::basic_stringstream\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29 +4911:std::__2::basic_stringbuf\2c\20std::__2::allocator>::basic_stringbuf\5babi:ne180100\5d\28unsigned\20int\29 +4912:std::__2::basic_string_view>::substr\5babi:ne180100\5d\28unsigned\20long\2c\20unsigned\20long\29\20const +4913:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29 +4914:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\29 +4915:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +4916:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20wchar_t\20const*\29 +4917:std::__2::basic_string\2c\20std::__2::allocator>::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +4918:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20char\29 +4919:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:ne180100\5d\28std::__2::__uninitialized_size_tag\2c\20unsigned\20long\2c\20std::__2::allocator\20const&\29 +4920:std::__2::basic_string\2c\20std::__2::allocator>::__null_terminate_at\5babi:nn180100\5d\28char*\2c\20unsigned\20long\29 +4921:std::__2::basic_string\2c\20std::__2::allocator>::__init\28unsigned\20long\2c\20char\29 +4922:std::__2::basic_string\2c\20std::__2::allocator>&\20std::__2::basic_string\2c\20std::__2::allocator>::operator+=>\2c\200>\28std::__2::basic_string_view>\20const&\29 +4923:std::__2::basic_string\2c\20std::__2::allocator>&\20skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::emplace_back\28char\20const*&&\29 +4924:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +4925:std::__2::basic_streambuf>::sputc\5babi:nn180100\5d\28char\29 +4926:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +4927:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +4928:std::__2::basic_streambuf>::pubsync\5babi:nn180100\5d\28\29 +4929:std::__2::basic_streambuf>::basic_streambuf\28\29 +4930:std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29_15593 +4931:std::__2::basic_ostream>::~basic_ostream\28\29_15476 +4932:std::__2::basic_ostream>::operator<<\28int\29 +4933:std::__2::basic_ostream>::operator<<\28float\29 +4934:std::__2::basic_ostream>&\20std::__2::__put_character_sequence\5babi:ne180100\5d>\28std::__2::basic_ostream>&\2c\20char\20const*\2c\20unsigned\20long\29 +4935:std::__2::basic_istream>::~basic_istream\28\29_15447 +4936:std::__2::basic_iostream>::basic_iostream\5babi:ne180100\5d\28std::__2::basic_streambuf>*\29 +4937:std::__2::basic_ios>::widen\5babi:ne180100\5d\28char\29\20const +4938:std::__2::basic_ios>::init\5babi:ne180100\5d\28std::__2::basic_streambuf>*\29 +4939:std::__2::basic_ios>::imbue\5babi:ne180100\5d\28std::__2::locale\20const&\29 +4940:std::__2::basic_ios>::fill\5babi:nn180100\5d\28\29\20const +4941:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::__sso_allocator&\2c\20std::__2::locale::facet**\2c\20unsigned\20long\29 +4942:std::__2::allocator::allocate\5babi:nn180100\5d\28unsigned\20long\29 +4943:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +4944:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +4945:std::__2::__wrap_iter\20std::__2::vector>::insert\2c\200>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\29 +4946:std::__2::__unwrap_iter_impl::__rewrap\5babi:nn180100\5d\28char*\2c\20char*\29 +4947:std::__2::__unique_if\2c\20std::__2::allocator>>::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>>\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +4948:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>>\28SkSL::Position&\2c\20std::__2::unique_ptr>&&\2c\20std::__2::unique_ptr>&&\2c\20std::__2::unique_ptr>&&\29 +4949:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28\29 +4950:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28\29 +4951:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +4952:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +4953:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +4954:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +4955:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +4956:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +4957:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +4958:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +4959:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +4960:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>\2c\20true>\2c\20SkSL::Block::Kind&\2c\20std::__2::unique_ptr>>\28SkSL::Position&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&&\2c\20SkSL::Block::Kind&\2c\20std::__2::unique_ptr>&&\29 +4961:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>\28sk_sp&&\29 +4962:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d&>\28std::__2::shared_ptr&\29 +4963:std::__2::__tuple_impl\2c\20std::__2::locale::id::__get\28\29::$_0&&>::__tuple_impl\5babi:nn180100\5d<0ul\2c\20std::__2::locale::id::__get\28\29::$_0&&\2c\20std::__2::locale::id::__get\28\29::$_0>\28std::__2::__tuple_indices<0ul>\2c\20std::__2::__tuple_types\2c\20std::__2::__tuple_indices<...>\2c\20std::__2::__tuple_types<>\2c\20std::__2::locale::id::__get\28\29::$_0&&\29 +4964:std::__2::__time_put::__time_put\5babi:nn180100\5d\28\29 +4965:std::__2::__time_put::__do_put\28char*\2c\20char*&\2c\20tm\20const*\2c\20char\2c\20char\29\20const +4966:std::__2::__throw_length_error\5babi:ne180100\5d\28char\20const*\29 +4967:std::__2::__split_buffer&>::~__split_buffer\28\29 +4968:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +4969:std::__2::__split_buffer>::pop_back\5babi:ne180100\5d\28\29 +4970:std::__2::__split_buffer&>::push_back\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +4971:std::__2::__split_buffer&>::~__split_buffer\28\29 +4972:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +4973:std::__2::__split_buffer&>::~__split_buffer\28\29 +4974:std::__2::__split_buffer&>::~__split_buffer\28\29 +4975:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +4976:std::__2::__split_buffer&>::~__split_buffer\28\29 +4977:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +4978:std::__2::__split_buffer&>::~__split_buffer\28\29 +4979:std::__2::__shared_count::__add_shared\5babi:nn180100\5d\28\29 +4980:std::__2::__optional_move_base::__optional_move_base\5babi:ne180100\5d\28std::__2::__optional_move_base&&\29 +4981:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +4982:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +4983:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +4984:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +4985:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +4986:std::__2::__optional_copy_base::__optional_copy_base\5babi:ne180100\5d\28std::__2::__optional_copy_base\20const&\29 +4987:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +4988:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +4989:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +4990:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +4991:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20wchar_t&\2c\20wchar_t&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +4992:std::__2::__money_put::__format\28wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20unsigned\20int\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +4993:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20char&\2c\20char&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +4994:std::__2::__money_put::__format\28char*\2c\20char*&\2c\20char*&\2c\20unsigned\20int\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +4995:std::__2::__libcpp_sscanf_l\28char\20const*\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +4996:std::__2::__libcpp_mbrtowc_l\5babi:nn180100\5d\28wchar_t*\2c\20char\20const*\2c\20unsigned\20long\2c\20__mbstate_t*\2c\20__locale_struct*\29 +4997:std::__2::__libcpp_mb_cur_max_l\5babi:nn180100\5d\28__locale_struct*\29 +4998:std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__deallocate_node\28std::__2::__hash_node_base\2c\20void*>*>*\29 +4999:std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__deallocate_node\28std::__2::__hash_node_base\2c\20void*>*>*\29 +5000:std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__deallocate_node\28std::__2::__hash_node_base*>*\29 +5001:std::__2::__function::__value_func\2c\20sktext::gpu::RendererData\29>::operator\28\29\5babi:ne180100\5d\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29\20const +5002:std::__2::__function::__value_func\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::operator\28\29\5babi:ne180100\5d\28skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20float&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20SkPoint&&\2c\20SkPoint&&\2c\20skia::textlayout::InternalLineMetrics&&\2c\20bool&&\29\20const +5003:std::__2::__function::__value_func\29>::operator\28\29\5babi:ne180100\5d\28skia::textlayout::Block&&\2c\20skia_private::TArray&&\29\20const +5004:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29 +5005:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +5006:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +5007:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29 +5008:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +5009:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +5010:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +5011:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +5012:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +5013:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy_deallocate\28\29 +5014:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy\28\29 +5015:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +5016:std::__2::__forward_list_base\2c\20std::__2::allocator>>::clear\28\29 +5017:std::__2::__exception_guard_exceptions>::__destroy_vector>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +5018:std::__2::__exception_guard_exceptions>::__destroy_vector>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +5019:std::__2::__exception_guard_exceptions\2c\20SkString*>>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +5020:std::__2::__constexpr_wcslen\5babi:nn180100\5d\28wchar_t\20const*\29 +5021:std::__2::__compressed_pair_elem\2c\20int\29::$_0\2c\200\2c\20false>::__compressed_pair_elem\5babi:ne180100\5d\2c\20int\29::$_0\20const&\2c\200ul>\28std::__2::piecewise_construct_t\2c\20std::__2::tuple\2c\20int\29::$_0\20const&>\2c\20std::__2::__tuple_indices<0ul>\29 +5022:std::__2::__compressed_pair_elem::__compressed_pair_elem\5babi:ne180100\5d\28std::__2::piecewise_construct_t\2c\20std::__2::tuple\2c\20std::__2::__tuple_indices<0ul>\29 +5023:std::__2::__compressed_pair::__compressed_pair\5babi:nn180100\5d\28unsigned\20char*&\2c\20void\20\28*&&\29\28void*\29\29 +5024:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::__sso_allocator&\2c\20unsigned\20long\29 +5025:srgb_to_hsl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +5026:spancpy\28SkSpan\2c\20SkSpan\29 +5027:sort_r_swap_blocks\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +5028:sort_increasing_Y\28SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +5029:sort_edges\28SkEdge**\2c\20int\2c\20SkEdge**\29 +5030:sort_as_rect\28skvx::Vec<4\2c\20float>\20const&\29 +5031:small_blur\28double\2c\20double\2c\20SkMask\20const&\2c\20SkMaskBuilder*\29::$_0::operator\28\29\28SkGaussFilter\20const&\2c\20unsigned\20short*\29\20const +5032:skvx::Vec<8\2c\20unsigned\20short>\20skvx::operator&<8\2c\20unsigned\20short>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +5033:skvx::Vec<8\2c\20unsigned\20int>\20skvx::cast\28skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +5034:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator>><4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20int\29 +5035:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator<<<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20int\29 +5036:skvx::Vec<4\2c\20unsigned\20int>\20skvx::operator>><4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20int\29 +5037:skvx::Vec<4\2c\20unsigned\20int>\20skvx::operator*<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +5038:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator!=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +5039:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator!=<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5040:skvx::Vec<4\2c\20int>\20skvx::operator^<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +5041:skvx::Vec<4\2c\20int>\20skvx::operator>><4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20int\29 +5042:skvx::Vec<4\2c\20int>\20skvx::operator<<<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20int\29 +5043:skvx::Vec<4\2c\20float>\20skvx::sqrt<4>\28skvx::Vec<4\2c\20float>\20const&\29 +5044:skvx::Vec<4\2c\20float>\20skvx::operator/<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +5045:skvx::Vec<4\2c\20float>\20skvx::operator/<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5046:skvx::Vec<4\2c\20float>\20skvx::operator-<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +5047:skvx::Vec<4\2c\20float>\20skvx::operator-<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5048:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20int\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20int\29 +5049:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20int\2c\20void>\28int\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5050:skvx::Vec<4\2c\20float>\20skvx::min<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5051:skvx::Vec<4\2c\20float>\20skvx::min<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.6335\29 +5052:skvx::Vec<4\2c\20float>\20skvx::max<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5053:skvx::Vec<4\2c\20float>\20skvx::from_half<4>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +5054:skvx::Vec<4\2c\20float>&\20skvx::operator*=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.7242\29 +5055:skvx::ScaledDividerU32::divide\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +5056:skvx::ScaledDividerU32::ScaledDividerU32\28unsigned\20int\29 +5057:sktext::gpu::build_distance_adjust_table\28float\29 +5058:sktext::gpu::VertexFiller::CanUseDirect\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +5059:sktext::gpu::TextBlobRedrawCoordinator::internalRemove\28sktext::gpu::TextBlob*\29 +5060:sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry::findBlobIndex\28sktext::gpu::TextBlob::Key\20const&\29\20const +5061:sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry::BlobIDCacheEntry\28sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry&&\29 +5062:sktext::gpu::TextBlob::~TextBlob\28\29 +5063:sktext::gpu::SubRunControl::isSDFT\28float\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +5064:sktext::gpu::SubRunContainer::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20SkRefCnt\20const*\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +5065:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_2::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +5066:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_0::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +5067:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29 +5068:sktext::gpu::SubRunContainer::EstimateAllocSize\28sktext::GlyphRunList\20const&\29 +5069:sktext::gpu::SubRunAllocator::SubRunAllocator\28int\29 +5070:sktext::gpu::StrikeCache::internalPurge\28unsigned\20long\29 +5071:sktext::gpu::StrikeCache::freeAll\28\29 +5072:sktext::gpu::SlugImpl::~SlugImpl\28\29 +5073:sktext::gpu::GlyphVector::packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29 +5074:sktext::gpu::AtlasSubRun::~AtlasSubRun\28\29 +5075:sktext::SkStrikePromise::resetStrike\28\29 +5076:sktext::GlyphRunList::maxGlyphRunSize\28\29\20const +5077:sktext::GlyphRunBuilder::~GlyphRunBuilder\28\29 +5078:sktext::GlyphRunBuilder::makeGlyphRunList\28sktext::GlyphRun\20const&\2c\20SkPaint\20const&\2c\20SkPoint\29 +5079:sktext::GlyphRunBuilder::blobToGlyphRunList\28SkTextBlob\20const&\2c\20SkPoint\29 +5080:sktext::GlyphRun*\20std::__2::construct_at\5babi:ne180100\5d&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20sktext::GlyphRun*>\28sktext::GlyphRun*\2c\20SkFont\20const&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\29 +5081:skstd::to_string\28float\29 +5082:skip_string +5083:skip_procedure +5084:skip_comment +5085:skif::compatible_sampling\28SkSamplingOptions\20const&\2c\20bool\2c\20SkSamplingOptions*\2c\20bool\29 +5086:skif::\28anonymous\20namespace\29::decompose_transform\28SkMatrix\20const&\2c\20SkPoint\2c\20SkMatrix*\2c\20SkMatrix*\29 +5087:skif::\28anonymous\20namespace\29::are_axes_nearly_integer_aligned\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29 +5088:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +5089:skif::Mapping::adjustLayerSpace\28SkM44\20const&\29 +5090:skif::LayerSpace\20skif::Mapping::paramToLayer\28skif::ParameterSpace\20const&\29\20const +5091:skif::LayerSpace::inset\28skif::LayerSpace\20const&\29 +5092:skif::LayerSpace::RectToRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace\20const&\29 +5093:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20SkBlender\20const*\29\20const +5094:skif::FilterResult::Builder::drawShader\28sk_sp\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +5095:skif::FilterResult::Builder::createInputShaders\28skif::LayerSpace\20const&\2c\20bool\29 +5096:skif::Context::Context\28sk_sp\2c\20skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult\20const&\2c\20SkColorSpace\20const*\2c\20skif::Stats*\29 +5097:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::uncheckedSet\28std::__2::basic_string_view>&&\29 +5098:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::set\28std::__2::basic_string_view>\29 +5099:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::resize\28int\29 +5100:skia_private::THashTable::uncheckedSet\28sktext::gpu::Glyph*&&\29 +5101:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5102:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5103:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::removeIfExists\28unsigned\20int\20const&\29 +5104:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot::emplace\28skia_private::THashMap::Pair&&\2c\20unsigned\20int\29 +5105:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5106:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::reset\28\29 +5107:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5108:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\29 +5109:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot::reset\28\29 +5110:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\2c\20unsigned\20int\29 +5111:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Hash\28skia::textlayout::OneLineShaper::FontKey\20const&\29 +5112:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair&&\29 +5113:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot::reset\28\29 +5114:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair&&\2c\20unsigned\20int\29 +5115:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Hash\28skia::textlayout::FontCollection::FamilyKey\20const&\29 +5116:skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::uncheckedSet\28skia_private::THashMap>::Pair&&\29 +5117:skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::reset\28\29 +5118:skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Hash\28skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\20const&\29 +5119:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5120:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot::reset\28\29 +5121:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot::emplace\28skia_private::THashMap::Pair&&\2c\20unsigned\20int\29 +5122:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\29 +5123:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5124:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5125:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\29 +5126:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5127:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5128:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Hash\28SkString\20const&\29 +5129:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +5130:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5131:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5132:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5133:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5134:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5135:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5136:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::firstPopulatedSlot\28\29\20const +5137:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Iter>::operator++\28\29 +5138:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::THashTable\28skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>\20const&\29 +5139:skia_private::THashTable::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5140:skia_private::THashTable::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5141:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5142:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::set\28skia_private::THashMap::Pair\29 +5143:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5144:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair&&\29 +5145:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5146:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5147:skia_private::THashTable::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5148:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair&&\29 +5149:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot::reset\28\29 +5150:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair&&\2c\20unsigned\20int\29 +5151:skia_private::THashTable::Pair\2c\20SkSL::Analysis::SpecializedCallKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5152:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5153:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot::reset\28\29 +5154:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot::emplace\28skia_private::THashMap::Pair&&\2c\20unsigned\20int\29 +5155:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +5156:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::resize\28int\29 +5157:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5158:skia_private::THashTable::Pair\2c\20GrSurfaceProxy*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5159:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28skgpu::ganesh::SmallPathShapeData*&&\29 +5160:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5161:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +5162:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::uncheckedSet\28sk_sp&&\29 +5163:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::resize\28int\29 +5164:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot::emplace\28sk_sp&&\2c\20unsigned\20int\29 +5165:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::uncheckedSet\28sk_sp&&\29 +5166:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::resize\28int\29 +5167:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot::emplace\28sk_sp&&\2c\20unsigned\20int\29 +5168:skia_private::THashTable::Traits>::set\28int\29 +5169:skia_private::THashTable::Traits>::THashTable\28skia_private::THashTable::Traits>&&\29 +5170:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::uncheckedSet\28\28anonymous\20namespace\29::CacheImpl::Value*&&\29 +5171:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::resize\28int\29 +5172:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +5173:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +5174:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::findOrNull\28skgpu::ScratchKey\20const&\29\20const +5175:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +5176:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +5177:skia_private::THashTable::Traits>::uncheckedSet\28SkSL::Variable\20const*&&\29 +5178:skia_private::THashTable::Traits>::resize\28int\29 +5179:skia_private::THashTable::Traits>::uncheckedSet\28SkSL::FunctionDeclaration\20const*&&\29 +5180:skia_private::THashTable::uncheckedSet\28SkResourceCache::Rec*&&\29 +5181:skia_private::THashTable::resize\28int\29 +5182:skia_private::THashTable::find\28SkResourceCache::Key\20const&\29\20const +5183:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::uncheckedSet\28SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*&&\29 +5184:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +5185:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::find\28skia::textlayout::ParagraphCacheKey\20const&\29\20const +5186:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::uncheckedSet\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*&&\29 +5187:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +5188:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::find\28GrProgramDesc\20const&\29\20const +5189:skia_private::THashTable::uncheckedSet\28SkGlyphDigest&&\29 +5190:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrThreadSafeCache::Entry*&&\29 +5191:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5192:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +5193:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrTextureProxy*&&\29 +5194:skia_private::THashTable::AdaptedTraits>::set\28GrTextureProxy*\29 +5195:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5196:skia_private::THashTable::AdaptedTraits>::findOrNull\28skgpu::UniqueKey\20const&\29\20const +5197:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrGpuResource*&&\29 +5198:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5199:skia_private::THashTable::AdaptedTraits>::findOrNull\28skgpu::UniqueKey\20const&\29\20const +5200:skia_private::THashTable::Traits>::uncheckedSet\28FT_Opaque_Paint_&&\29 +5201:skia_private::THashTable::Traits>::resize\28int\29 +5202:skia_private::THashSet::contains\28int\20const&\29\20const +5203:skia_private::THashSet::contains\28FT_Opaque_Paint_\20const&\29\20const +5204:skia_private::THashSet::add\28FT_Opaque_Paint_\29 +5205:skia_private::THashMap::find\28unsigned\20int\20const&\29\20const +5206:skia_private::THashMap\2c\20SkGoodHash>::find\28int\20const&\29\20const +5207:skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::set\28SkSL::Variable\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +5208:skia_private::THashMap::operator\5b\5d\28SkSL::Variable\20const*\20const&\29 +5209:skia_private::THashMap::operator\5b\5d\28SkSL::Symbol\20const*\20const&\29 +5210:skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +5211:skia_private::THashMap::set\28SkSL::FunctionDeclaration\20const*\2c\20int\29 +5212:skia_private::THashMap::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +5213:skia_private::THashMap::operator\5b\5d\28SkSL::Analysis::SpecializedCallKey\20const&\29 +5214:skia_private::THashMap::find\28SkSL::Analysis::SpecializedCallKey\20const&\29\20const +5215:skia_private::THashMap>\2c\20SkGoodHash>::remove\28SkImageFilter\20const*\20const&\29 +5216:skia_private::THashMap>\2c\20SkGoodHash>::Pair::Pair\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +5217:skia_private::THashMap::find\28GrSurfaceProxy*\20const&\29\20const +5218:skia_private::TArray::push_back_raw\28int\29 +5219:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5220:skia_private::TArray::push_back\28unsigned\20int\20const&\29 +5221:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +5222:skia_private::TArray::Allocate\28int\2c\20double\29 +5223:skia_private::TArray>\2c\20true>::~TArray\28\29 +5224:skia_private::TArray>\2c\20true>::clear\28\29 +5225:skia_private::TArray>\2c\20true>::operator=\28skia_private::TArray>\2c\20true>&&\29 +5226:skia_private::TArray>\2c\20true>::~TArray\28\29 +5227:skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +5228:skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::checkRealloc\28int\2c\20double\29 +5229:skia_private::TArray\2c\20true>::preallocateNewData\28int\2c\20double\29 +5230:skia_private::TArray\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +5231:skia_private::TArray\2c\20false>::move\28void*\29 +5232:skia_private::TArray\2c\20false>::TArray\28skia_private::TArray\2c\20false>&&\29 +5233:skia_private::TArray\2c\20false>::Allocate\28int\2c\20double\29 +5234:skia_private::TArray::destroyAll\28\29 +5235:skia_private::TArray::destroyAll\28\29 +5236:skia_private::TArray\2c\20false>::~TArray\28\29 +5237:skia_private::TArray::~TArray\28\29 +5238:skia_private::TArray::destroyAll\28\29 +5239:skia_private::TArray::copy\28skia::textlayout::Run\20const*\29 +5240:skia_private::TArray::Allocate\28int\2c\20double\29 +5241:skia_private::TArray::destroyAll\28\29 +5242:skia_private::TArray::initData\28int\29 +5243:skia_private::TArray::destroyAll\28\29 +5244:skia_private::TArray::TArray\28skia_private::TArray&&\29 +5245:skia_private::TArray::Allocate\28int\2c\20double\29 +5246:skia_private::TArray::copy\28skia::textlayout::Cluster\20const*\29 +5247:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5248:skia_private::TArray::Allocate\28int\2c\20double\29 +5249:skia_private::TArray::initData\28int\29 +5250:skia_private::TArray::destroyAll\28\29 +5251:skia_private::TArray::TArray\28skia_private::TArray&&\29 +5252:skia_private::TArray::Allocate\28int\2c\20double\29 +5253:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5254:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5255:skia_private::TArray::push_back\28\29 +5256:skia_private::TArray::push_back\28\29 +5257:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5258:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5259:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5260:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5261:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5262:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5263:skia_private::TArray::destroyAll\28\29 +5264:skia_private::TArray::clear\28\29 +5265:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5266:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5267:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5268:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5269:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5270:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5271:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5272:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5273:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5274:skia_private::TArray::destroyAll\28\29 +5275:skia_private::TArray::clear\28\29 +5276:skia_private::TArray::Allocate\28int\2c\20double\29 +5277:skia_private::TArray::BufferFinishedMessage\2c\20false>::operator=\28skia_private::TArray::BufferFinishedMessage\2c\20false>&&\29 +5278:skia_private::TArray::BufferFinishedMessage\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +5279:skia_private::TArray::BufferFinishedMessage\2c\20false>::destroyAll\28\29 +5280:skia_private::TArray::BufferFinishedMessage\2c\20false>::clear\28\29 +5281:skia_private::TArray::Plane\2c\20false>::preallocateNewData\28int\2c\20double\29 +5282:skia_private::TArray::Plane\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +5283:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +5284:skia_private::TArray\2c\20true>::~TArray\28\29 +5285:skia_private::TArray\2c\20true>::~TArray\28\29 +5286:skia_private::TArray\2c\20true>::preallocateNewData\28int\2c\20double\29 +5287:skia_private::TArray\2c\20true>::clear\28\29 +5288:skia_private::TArray::push_back_raw\28int\29 +5289:skia_private::TArray::push_back\28hb_feature_t&&\29 +5290:skia_private::TArray::resize_back\28int\29 +5291:skia_private::TArray::reset\28int\29 +5292:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5293:skia_private::TArray::initData\28int\29 +5294:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5295:skia_private::TArray<\28anonymous\20namespace\29::DrawAtlasOpImpl::Geometry\2c\20true>::checkRealloc\28int\2c\20double\29 +5296:skia_private::TArray<\28anonymous\20namespace\29::DefaultPathOp::PathData\2c\20true>::preallocateNewData\28int\2c\20double\29 +5297:skia_private::TArray<\28anonymous\20namespace\29::AAHairlineOp::PathData\2c\20true>::preallocateNewData\28int\2c\20double\29 +5298:skia_private::TArray<\28anonymous\20namespace\29::AAHairlineOp::PathData\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +5299:skia_private::TArray::push_back_n\28int\2c\20SkUnicode::CodeUnitFlags\20const&\29 +5300:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5301:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5302:skia_private::TArray::destroyAll\28\29 +5303:skia_private::TArray::initData\28int\29 +5304:skia_private::TArray::TArray\28skia_private::TArray\20const&\29 +5305:skia_private::TArray\29::ReorderedArgument\2c\20false>::push_back\28SkSL::optimize_constructor_swizzle\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ConstructorCompound\20const&\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29::ReorderedArgument&&\29 +5306:skia_private::TArray::reserve_exact\28int\29 +5307:skia_private::TArray::fromBack\28int\29 +5308:skia_private::TArray::TArray\28skia_private::TArray&&\29 +5309:skia_private::TArray::Allocate\28int\2c\20double\29 +5310:skia_private::TArray::push_back\28SkSL::Field&&\29 +5311:skia_private::TArray::initData\28int\29 +5312:skia_private::TArray::Allocate\28int\2c\20double\29 +5313:skia_private::TArray::~TArray\28\29 +5314:skia_private::TArray::destroyAll\28\29 +5315:skia_private::TArray\2c\20true>::push_back\28SkRGBA4f<\28SkAlphaType\292>&&\29 +5316:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +5317:skia_private::TArray\2c\20true>::checkRealloc\28int\2c\20double\29 +5318:skia_private::TArray::push_back\28SkPoint\20const&\29 +5319:skia_private::TArray::copy\28SkPoint\20const*\29 +5320:skia_private::TArray::~TArray\28\29 +5321:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5322:skia_private::TArray::destroyAll\28\29 +5323:skia_private::TArray::Allocate\28int\2c\20double\29 +5324:skia_private::TArray::~TArray\28\29 +5325:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5326:skia_private::TArray::destroyAll\28\29 +5327:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5328:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5329:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5330:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5331:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5332:skia_private::TArray::push_back\28\29 +5333:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5334:skia_private::TArray::push_back\28\29 +5335:skia_private::TArray::push_back_raw\28int\29 +5336:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5337:skia_private::TArray::~TArray\28\29 +5338:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5339:skia_private::TArray::destroyAll\28\29 +5340:skia_private::TArray::clear\28\29 +5341:skia_private::TArray::Allocate\28int\2c\20double\29 +5342:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5343:skia_private::TArray::push_back\28\29 +5344:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5345:skia_private::TArray::pop_back\28\29 +5346:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5347:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5348:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5349:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5350:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5351:skia_private::STArray<8\2c\20int\2c\20true>::STArray\28int\29 +5352:skia_private::AutoTMalloc::realloc\28unsigned\20long\29 +5353:skia_private::AutoTMalloc::reset\28unsigned\20long\29 +5354:skia_private::AutoTArray::AutoTArray\28unsigned\20long\29 +5355:skia_private::AutoTArray::AutoTArray\28unsigned\20long\29 +5356:skia_private::AutoSTMalloc<256ul\2c\20unsigned\20short\2c\20void>::AutoSTMalloc\28unsigned\20long\29 +5357:skia_private::AutoSTArray<6\2c\20SkResourceCache::Key>::~AutoSTArray\28\29 +5358:skia_private::AutoSTArray<64\2c\20TriangulationVertex>::reset\28int\29 +5359:skia_private::AutoSTArray<64\2c\20SkGlyph\20const*>::reset\28int\29 +5360:skia_private::AutoSTArray<4\2c\20unsigned\20char>::reset\28int\29 +5361:skia_private::AutoSTArray<4\2c\20GrResourceHandle>::reset\28int\29 +5362:skia_private::AutoSTArray<3\2c\20std::__2::unique_ptr>>::reset\28int\29 +5363:skia_private::AutoSTArray<32\2c\20unsigned\20short>::~AutoSTArray\28\29 +5364:skia_private::AutoSTArray<32\2c\20unsigned\20short>::reset\28int\29 +5365:skia_private::AutoSTArray<32\2c\20SkRect>::reset\28int\29 +5366:skia_private::AutoSTArray<32\2c\20SkPoint>::reset\28int\29 +5367:skia_private::AutoSTArray<2\2c\20sk_sp>::reset\28int\29 +5368:skia_private::AutoSTArray<16\2c\20SkRect>::~AutoSTArray\28\29 +5369:skia_private::AutoSTArray<16\2c\20GrMipLevel>::reset\28int\29 +5370:skia_private::AutoSTArray<15\2c\20GrMipLevel>::reset\28int\29 +5371:skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>::~AutoSTArray\28\29 +5372:skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>::reset\28int\29 +5373:skia_private::AutoSTArray<14\2c\20GrMipLevel>::~AutoSTArray\28\29 +5374:skia_private::AutoSTArray<14\2c\20GrMipLevel>::reset\28int\29 +5375:skia_png_set_longjmp_fn +5376:skia_png_read_finish_IDAT +5377:skia_png_read_chunk_header +5378:skia_png_read_IDAT_data +5379:skia_png_gamma_16bit_correct +5380:skia_png_do_strip_channel +5381:skia_png_do_gray_to_rgb +5382:skia_png_do_expand +5383:skia_png_destroy_gamma_table +5384:skia_png_colorspace_set_sRGB +5385:skia_png_check_IHDR +5386:skia_png_calculate_crc +5387:skia::textlayout::operator==\28skia::textlayout::FontArguments\20const&\2c\20skia::textlayout::FontArguments\20const&\29 +5388:skia::textlayout::\28anonymous\20namespace\29::littleRound\28float\29 +5389:skia::textlayout::\28anonymous\20namespace\29::LineBreakerWithLittleRounding::breakLine\28float\29\20const +5390:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29 +5391:skia::textlayout::TypefaceFontStyleSet::matchStyle\28SkFontStyle\20const&\29 +5392:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29 +5393:skia::textlayout::TypefaceFontProvider::registerTypeface\28sk_sp\2c\20SkString\20const&\29 +5394:skia::textlayout::TextWrapper::TextStretch::TextStretch\28skia::textlayout::Cluster*\2c\20skia::textlayout::Cluster*\2c\20bool\29 +5395:skia::textlayout::TextStyle::setForegroundPaintID\28int\29 +5396:skia::textlayout::TextStyle::setForegroundColor\28SkPaint\29 +5397:skia::textlayout::TextStyle::setBackgroundColor\28SkPaint\29 +5398:skia::textlayout::TextStyle::matchOneAttribute\28skia::textlayout::StyleType\2c\20skia::textlayout::TextStyle\20const&\29\20const +5399:skia::textlayout::TextStyle::equals\28skia::textlayout::TextStyle\20const&\29\20const +5400:skia::textlayout::TextShadow::operator!=\28skia::textlayout::TextShadow\20const&\29\20const +5401:skia::textlayout::TextLine::~TextLine\28\29 +5402:skia::textlayout::TextLine::spacesWidth\28\29\20const +5403:skia::textlayout::TextLine::shiftCluster\28skia::textlayout::Cluster\20const*\2c\20float\2c\20float\29 +5404:skia::textlayout::TextLine::iterateThroughClustersInGlyphsOrder\28bool\2c\20bool\2c\20std::__2::function\20const&\29\20const::$_0::operator\28\29\28unsigned\20long\20const&\29\20const::'lambda'\28skia::textlayout::Cluster&\29::operator\28\29\28skia::textlayout::Cluster&\29\20const +5405:skia::textlayout::TextLine::iterateThroughClustersInGlyphsOrder\28bool\2c\20bool\2c\20std::__2::function\20const&\29\20const +5406:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkRect\29::operator\28\29\28SkRect\29\20const +5407:skia::textlayout::TextLine::getMetrics\28\29\20const +5408:skia::textlayout::TextLine::extendHeight\28skia::textlayout::TextLine::ClipContext\20const&\29\20const +5409:skia::textlayout::TextLine::ensureTextBlobCachePopulated\28\29 +5410:skia::textlayout::TextLine::endsWithHardLineBreak\28\29\20const +5411:skia::textlayout::TextLine::buildTextBlob\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +5412:skia::textlayout::TextLine::TextLine\28skia::textlayout::ParagraphImpl*\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20skia::textlayout::InternalLineMetrics\29 +5413:skia::textlayout::TextLine::TextBlobRecord::~TextBlobRecord\28\29 +5414:skia::textlayout::TextLine::TextBlobRecord*\20std::__2::construct_at\5babi:ne180100\5d\28skia::textlayout::TextLine::TextBlobRecord*\29 +5415:skia::textlayout::TextLine&\20skia_private::TArray::emplace_back&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&>\28skia::textlayout::ParagraphImpl*&&\2c\20SkPoint&\2c\20SkPoint&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&\29 +5416:skia::textlayout::StrutStyle::StrutStyle\28\29 +5417:skia::textlayout::Run::shift\28skia::textlayout::Cluster\20const*\2c\20float\29 +5418:skia::textlayout::Run::newRunBuffer\28\29 +5419:skia::textlayout::Run::clusterIndex\28unsigned\20long\29\20const +5420:skia::textlayout::Run::calculateMetrics\28\29 +5421:skia::textlayout::ParagraphStyle::ellipsized\28\29\20const +5422:skia::textlayout::ParagraphPainter::DecorationStyle::DecorationStyle\28unsigned\20int\2c\20float\2c\20std::__2::optional\29 +5423:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29 +5424:skia::textlayout::ParagraphImpl::resolveStrut\28\29 +5425:skia::textlayout::ParagraphImpl::paint\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\29 +5426:skia::textlayout::ParagraphImpl::getGlyphInfoAtUTF16Offset\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +5427:skia::textlayout::ParagraphImpl::getGlyphClusterAt\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +5428:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29::$_0::operator\28\29\28\29\20const::'lambda0'\28unsigned\20long\29::operator\28\29\28unsigned\20long\29\20const +5429:skia::textlayout::ParagraphImpl::computeEmptyMetrics\28\29 +5430:skia::textlayout::ParagraphImpl::buildClusterTable\28\29::$_0::operator\28\29\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\29\20const +5431:skia::textlayout::ParagraphCacheKey::ParagraphCacheKey\28skia::textlayout::ParagraphImpl\20const*\29 +5432:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29 +5433:skia::textlayout::ParagraphBuilderImpl::finalize\28\29 +5434:skia::textlayout::ParagraphBuilderImpl::ensureUTF16Mapping\28\29::$_0::operator\28\29\28\29\20const::'lambda0'\28unsigned\20long\29::operator\28\29\28unsigned\20long\29\20const +5435:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\2c\20bool\29 +5436:skia::textlayout::Paragraph::~Paragraph\28\29 +5437:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29 +5438:skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29::$_0::operator\28\29\28unsigned\20long\2c\20skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29::Dir\29\20const +5439:skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29 +5440:skia::textlayout::OneLineShaper::FontKey::operator==\28skia::textlayout::OneLineShaper::FontKey\20const&\29\20const +5441:skia::textlayout::OneLineShaper::FontKey::FontKey\28skia::textlayout::OneLineShaper::FontKey&&\29 +5442:skia::textlayout::InternalLineMetrics::add\28skia::textlayout::InternalLineMetrics\29 +5443:skia::textlayout::FontFeature::operator==\28skia::textlayout::FontFeature\20const&\29\20const +5444:skia::textlayout::FontFeature::FontFeature\28skia::textlayout::FontFeature\20const&\29 +5445:skia::textlayout::FontFeature*\20std::__2::construct_at\5babi:ne180100\5d\28skia::textlayout::FontFeature*\2c\20SkString\20const&\2c\20int&\29 +5446:skia::textlayout::FontCollection::~FontCollection\28\29 +5447:skia::textlayout::FontCollection::matchTypeface\28SkString\20const&\2c\20SkFontStyle\29 +5448:skia::textlayout::FontCollection::defaultFallback\28int\2c\20SkFontStyle\2c\20SkString\20const&\2c\20std::__2::optional\20const&\29 +5449:skia::textlayout::FontCollection::FamilyKey::operator==\28skia::textlayout::FontCollection::FamilyKey\20const&\29\20const +5450:skia::textlayout::FontCollection::FamilyKey::FamilyKey\28skia::textlayout::FontCollection::FamilyKey&&\29 +5451:skia::textlayout::FontArguments::~FontArguments\28\29 +5452:skia::textlayout::Decoration::operator==\28skia::textlayout::Decoration\20const&\29\20const +5453:skia::textlayout::Cluster::trimmedWidth\28unsigned\20long\29\20const +5454:skgpu::tess::\28anonymous\20namespace\29::write_curve_index_buffer_base_index\28skgpu::VertexWriter\2c\20unsigned\20long\2c\20unsigned\20short\29 +5455:skgpu::tess::\28anonymous\20namespace\29::PathChopper::lineTo\28SkPoint\20const*\29 +5456:skgpu::tess::StrokeParams::set\28SkStrokeRec\20const&\29 +5457:skgpu::tess::StrokeIterator::finishOpenContour\28\29 +5458:skgpu::tess::PreChopPathCurves\28float\2c\20SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +5459:skgpu::tess::LinearTolerances::setStroke\28skgpu::tess::StrokeParams\20const&\2c\20float\29 +5460:skgpu::tess::LinearTolerances::requiredResolveLevel\28\29\20const +5461:skgpu::tess::GetJoinType\28SkStrokeRec\20const&\29 +5462:skgpu::tess::FixedCountCurves::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +5463:skgpu::tess::CullTest::areVisible3\28SkPoint\20const*\29\20const +5464:skgpu::tess::ConicHasCusp\28SkPoint\20const*\29 +5465:skgpu::make_unnormalized_half_kernel\28float*\2c\20int\2c\20float\29 +5466:skgpu::ganesh::\28anonymous\20namespace\29::add_line_to_segment\28SkPoint\20const&\2c\20skia_private::TArray*\29 +5467:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29 +5468:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::flush\28GrMeshDrawTarget*\2c\20skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::FlushInfo*\29\20const +5469:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::addToAtlasWithRetry\28GrMeshDrawTarget*\2c\20skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::FlushInfo*\2c\20skgpu::ganesh::SmallPathAtlasMgr*\2c\20int\2c\20int\2c\20void\20const*\2c\20SkRect\20const&\2c\20int\2c\20skgpu::ganesh::SmallPathShapeData*\29\20const +5470:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::SmallPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20GrUserStencilSettings\20const*\29 +5471:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29 +5472:skgpu::ganesh::\28anonymous\20namespace\29::ChopPathIfNecessary\28SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkStrokeRec\20const&\2c\20SkPath*\29 +5473:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29 +5474:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::recordDraw\28GrMeshDrawTarget*\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20int\2c\20unsigned\20short*\29 +5475:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::PathData::PathData\28skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::PathData&&\29 +5476:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::AAFlatteningConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20float\2c\20SkStrokeRec::Style\2c\20SkPaint::Join\2c\20float\2c\20GrUserStencilSettings\20const*\29 +5477:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29 +5478:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::PathData::PathData\28skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::PathData&&\29 +5479:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::AAConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrUserStencilSettings\20const*\29 +5480:skgpu::ganesh::TextureOp::Make\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20SkBlendMode\2c\20GrAAType\2c\20DrawQuad*\2c\20SkRect\20const*\29 +5481:skgpu::ganesh::TessellationPathRenderer::IsSupported\28GrCaps\20const&\29 +5482:skgpu::ganesh::SurfaceFillContext::fillRectToRectWithFP\28SkRect\20const&\2c\20SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +5483:skgpu::ganesh::SurfaceFillContext::blitTexture\28GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\29 +5484:skgpu::ganesh::SurfaceFillContext::arenas\28\29 +5485:skgpu::ganesh::SurfaceFillContext::addDrawOp\28std::__2::unique_ptr>\29 +5486:skgpu::ganesh::SurfaceFillContext::SurfaceFillContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +5487:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29_10651 +5488:skgpu::ganesh::SurfaceDrawContext::setNeedsStencil\28\29 +5489:skgpu::ganesh::SurfaceDrawContext::internalStencilClear\28SkIRect\20const*\2c\20bool\29 +5490:skgpu::ganesh::SurfaceDrawContext::fillRectWithEdgeAA\28GrClip\20const*\2c\20GrPaint&&\2c\20GrQuadAAFlags\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const*\29 +5491:skgpu::ganesh::SurfaceDrawContext::drawVertices\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20sk_sp\2c\20GrPrimitiveType*\2c\20bool\29 +5492:skgpu::ganesh::SurfaceDrawContext::drawTexturedQuad\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkBlendMode\2c\20DrawQuad*\2c\20SkRect\20const*\29 +5493:skgpu::ganesh::SurfaceDrawContext::drawTexture\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkBlendMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +5494:skgpu::ganesh::SurfaceDrawContext::drawStrokedLine\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPoint\20const*\2c\20SkStrokeRec\20const&\29 +5495:skgpu::ganesh::SurfaceDrawContext::drawRegion\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrStyle\20const&\2c\20GrUserStencilSettings\20const*\29 +5496:skgpu::ganesh::SurfaceDrawContext::drawOval\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\29 +5497:skgpu::ganesh::SurfaceDrawContext::attemptQuadOptimization\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20DrawQuad*\2c\20GrPaint*\29::$_0::operator\28\29\28\29\20const +5498:skgpu::ganesh::SurfaceDrawContext::SurfaceDrawContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20sk_sp\2c\20SkSurfaceProps\20const&\29 +5499:skgpu::ganesh::SurfaceContext::writePixels\28GrDirectContext*\2c\20GrCPixmap\2c\20SkIPoint\29 +5500:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29 +5501:skgpu::ganesh::SurfaceContext::copy\28sk_sp\2c\20SkIRect\2c\20SkIPoint\29 +5502:skgpu::ganesh::SurfaceContext::copyScaled\28sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20SkFilterMode\29 +5503:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +5504:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::FinishContext::~FinishContext\28\29 +5505:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +5506:skgpu::ganesh::StrokeTessellator::draw\28GrOpFlushState*\29\20const +5507:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29 +5508:skgpu::ganesh::StrokeTessellateOp::prePrepareTessellator\28GrTessellationShader::ProgramArgs&&\2c\20GrAppliedClip&&\29 +5509:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::allowed_stroke\28GrCaps\20const*\2c\20SkStrokeRec\20const&\2c\20GrAA\2c\20bool*\29 +5510:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29 +5511:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::NonAAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrSimpleMeshDrawOpHelper::InputFlags\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\2c\20GrAAType\29 +5512:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29 +5513:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::ClassID\28\29 +5514:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::AAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::RectInfo\20const&\2c\20bool\29 +5515:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::AAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const&\29 +5516:skgpu::ganesh::SoftwarePathRenderer::DrawAroundInvPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29 +5517:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_12174 +5518:skgpu::ganesh::SmallPathAtlasMgr::reset\28\29 +5519:skgpu::ganesh::SmallPathAtlasMgr::findOrCreate\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +5520:skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +5521:skgpu::ganesh::SmallPathAtlasMgr::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +5522:skgpu::ganesh::ShadowRRectOp::Make\28GrRecordingContext*\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20float\2c\20float\29 +5523:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29 +5524:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::RegionOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +5525:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::primitiveType\28\29\20const +5526:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::VertexSpec\28GrQuad::Type\2c\20skgpu::ganesh::QuadPerEdgeAA::ColorType\2c\20GrQuad::Type\2c\20bool\2c\20skgpu::ganesh::QuadPerEdgeAA::Subset\2c\20GrAAType\2c\20bool\2c\20skgpu::ganesh::QuadPerEdgeAA::IndexBufferOption\29 +5527:skgpu::ganesh::QuadPerEdgeAA::Tessellator::append\28GrQuad*\2c\20GrQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\29 +5528:skgpu::ganesh::QuadPerEdgeAA::Tessellator::Tessellator\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29 +5529:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29 +5530:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::initializeAttrs\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29 +5531:skgpu::ganesh::QuadPerEdgeAA::IssueDraw\28GrCaps\20const&\2c\20GrOpsRenderPass*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +5532:skgpu::ganesh::QuadPerEdgeAA::GetIndexBuffer\28GrMeshDrawTarget*\2c\20skgpu::ganesh::QuadPerEdgeAA::IndexBufferOption\29 +5533:skgpu::ganesh::PathWedgeTessellator::Make\28SkArenaAlloc*\2c\20bool\2c\20skgpu::tess::PatchAttribs\29 +5534:skgpu::ganesh::PathTessellator::PathTessellator\28bool\2c\20skgpu::tess::PatchAttribs\29 +5535:skgpu::ganesh::PathTessellator::PathDrawList*\20SkArenaAlloc::make\20const&>\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +5536:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29 +5537:skgpu::ganesh::PathTessellateOp::usesMSAA\28\29\20const +5538:skgpu::ganesh::PathTessellateOp::prepareTessellator\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +5539:skgpu::ganesh::PathTessellateOp::PathTessellateOp\28SkArenaAlloc*\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\2c\20SkRect\20const&\29 +5540:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29 +5541:skgpu::ganesh::PathStencilCoverOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +5542:skgpu::ganesh::PathStencilCoverOp::ClassID\28\29 +5543:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29 +5544:skgpu::ganesh::PathInnerTriangulateOp::pushFanStencilProgram\28GrTessellationShader::ProgramArgs\20const&\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +5545:skgpu::ganesh::PathInnerTriangulateOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +5546:skgpu::ganesh::PathCurveTessellator::~PathCurveTessellator\28\29 +5547:skgpu::ganesh::PathCurveTessellator::prepareWithTriangles\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20GrTriangulator::BreadcrumbTriangleList*\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +5548:skgpu::ganesh::PathCurveTessellator::Make\28SkArenaAlloc*\2c\20bool\2c\20skgpu::tess::PatchAttribs\29 +5549:skgpu::ganesh::OpsTask::setColorLoadOp\28GrLoadOp\2c\20std::__2::array\29 +5550:skgpu::ganesh::OpsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +5551:skgpu::ganesh::OpsTask::onExecute\28GrOpFlushState*\29 +5552:skgpu::ganesh::OpsTask::addSampledTexture\28GrSurfaceProxy*\29 +5553:skgpu::ganesh::OpsTask::addDrawOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0::operator\28\29\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\20const +5554:skgpu::ganesh::OpsTask::addDrawOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +5555:skgpu::ganesh::OpsTask::OpsTask\28GrDrawingManager*\2c\20GrSurfaceProxyView\2c\20GrAuditTrail*\2c\20sk_sp\29 +5556:skgpu::ganesh::OpsTask::OpChain::tryConcat\28skgpu::ganesh::OpsTask::OpChain::List*\2c\20GrProcessorSet::Analysis\2c\20GrDstProxyView\20const&\2c\20GrAppliedClip\20const*\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrAuditTrail*\29 +5557:skgpu::ganesh::OpsTask::OpChain::OpChain\28std::__2::unique_ptr>\2c\20GrProcessorSet::Analysis\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const*\29 +5558:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29 +5559:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29 +5560:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::NonAALatticeOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20std::__2::unique_ptr>\2c\20SkRect\20const&\29 +5561:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29 +5562:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::can_use_hw_derivatives_with_coverage\28skvx::Vec<2\2c\20float>\20const&\2c\20SkPoint\20const&\29 +5563:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29 +5564:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::programInfo\28\29 +5565:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20GrAA\29 +5566:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::FillRRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29 +5567:skgpu::ganesh::DrawableOp::~DrawableOp\28\29 +5568:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29 +5569:skgpu::ganesh::DrawAtlasPathOp::prepareProgram\28GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +5570:skgpu::ganesh::Device::~Device\28\29 +5571:skgpu::ganesh::Device::replaceBackingProxy\28SkSurface::ContentChangeMode\2c\20sk_sp\2c\20GrColorType\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +5572:skgpu::ganesh::Device::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +5573:skgpu::ganesh::Device::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +5574:skgpu::ganesh::Device::drawEdgeAAImage\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20SkTileMode\29 +5575:skgpu::ganesh::Device::convertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +5576:skgpu::ganesh::Device::android_utils_clipAsRgn\28SkRegion*\29\20const +5577:skgpu::ganesh::DefaultPathRenderer::internalDrawPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20bool\29 +5578:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +5579:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29 +5580:skgpu::ganesh::CopyView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\2c\20std::__2::basic_string_view>\29 +5581:skgpu::ganesh::ClipStack::clipPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrAA\2c\20SkClipOp\29 +5582:skgpu::ganesh::ClipStack::begin\28\29\20const +5583:skgpu::ganesh::ClipStack::SaveRecord::removeElements\28SkTBlockList*\29 +5584:skgpu::ganesh::ClipStack::RawElement::clipType\28\29\20const +5585:skgpu::ganesh::ClipStack::Mask::invalidate\28GrProxyProvider*\29 +5586:skgpu::ganesh::ClipStack::ElementIter::operator++\28\29 +5587:skgpu::ganesh::ClipStack::Element::Element\28skgpu::ganesh::ClipStack::Element\20const&\29 +5588:skgpu::ganesh::ClipStack::Draw::Draw\28SkRect\20const&\2c\20GrAA\29 +5589:skgpu::ganesh::ClearOp::ClearOp\28skgpu::ganesh::ClearOp::Buffer\2c\20GrScissorState\20const&\2c\20std::__2::array\2c\20bool\29 +5590:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29 +5591:skgpu::ganesh::AtlasTextOp::operator\20new\28unsigned\20long\29 +5592:skgpu::ganesh::AtlasTextOp::onPrepareDraws\28GrMeshDrawTarget*\29::$_0::operator\28\29\28\29\20const +5593:skgpu::ganesh::AtlasTextOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +5594:skgpu::ganesh::AtlasTextOp::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20sktext::gpu::AtlasSubRun\20const*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp&&\29 +5595:skgpu::ganesh::AtlasTextOp::ClassID\28\29 +5596:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29 +5597:skgpu::ganesh::AtlasRenderTask::stencilAtlasRect\28GrRecordingContext*\2c\20SkRect\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrUserStencilSettings\20const*\29 +5598:skgpu::ganesh::AtlasRenderTask::readView\28GrCaps\20const&\29\20const +5599:skgpu::ganesh::AtlasRenderTask::instantiate\28GrOnFlushResourceProvider*\2c\20sk_sp\29 +5600:skgpu::ganesh::AtlasRenderTask::addPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIPoint\2c\20int\2c\20int\2c\20bool\2c\20SkIPoint16*\29 +5601:skgpu::ganesh::AtlasRenderTask::addAtlasDrawOp\28std::__2::unique_ptr>\2c\20GrCaps\20const&\29 +5602:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11463 +5603:skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +5604:skgpu::ganesh::AtlasPathRenderer::pathFitsInAtlas\28SkRect\20const&\2c\20GrAAType\29\20const +5605:skgpu::ganesh::AtlasPathRenderer::addPathToAtlas\28GrRecordingContext*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRect\20const&\2c\20SkIRect*\2c\20SkIPoint16*\2c\20bool*\2c\20std::__2::function\20const&\29 +5606:skgpu::ganesh::AtlasPathRenderer::AtlasPathKey::operator==\28skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\20const&\29\20const +5607:skgpu::ganesh::AsFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkImage\20const*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +5608:skgpu::TiledTextureUtils::OptimizeSampleArea\28SkISize\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkRect*\2c\20SkRect*\2c\20SkMatrix*\29 +5609:skgpu::TiledTextureUtils::CanDisableMipmap\28SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\29 +5610:skgpu::TClientMappedBufferManager::process\28\29 +5611:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29 +5612:skgpu::TAsyncReadResult::count\28\29\20const +5613:skgpu::TAsyncReadResult::Plane::~Plane\28\29 +5614:skgpu::Swizzle::BGRA\28\29 +5615:skgpu::ScratchKey::ScratchKey\28skgpu::ScratchKey\20const&\29 +5616:skgpu::ResourceKey::operator=\28skgpu::ResourceKey\20const&\29 +5617:skgpu::RectanizerSkyline::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +5618:skgpu::RectanizerSkyline::RectanizerSkyline\28int\2c\20int\29 +5619:skgpu::Plot::~Plot\28\29 +5620:skgpu::Plot::resetRects\28bool\29 +5621:skgpu::Plot::Plot\28int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20SkColorType\2c\20unsigned\20long\29 +5622:skgpu::KeyBuilder::flush\28\29 +5623:skgpu::KeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +5624:skgpu::GetReducedBlendModeInfo\28SkBlendMode\29 +5625:skgpu::GetApproxSize\28SkISize\29::$_0::operator\28\29\28int\29\20const +5626:skgpu::CreateIntegralTable\28int\29 +5627:skgpu::ComputeIntegralTableWidth\28float\29 +5628:skgpu::AtlasLocator::updatePlotLocator\28skgpu::PlotLocator\29 +5629:skgpu::AtlasLocator::insetSrc\28int\29 +5630:skcpu::make_xrect\28SkRect\20const&\29 +5631:skcpu::draw_rect_as_path\28skcpu::Draw\20const&\2c\20SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\29 +5632:skcpu::compute_stroke_size\28SkPaint\20const&\2c\20SkMatrix\20const&\29 +5633:skcpu::clipHandlesSprite\28SkRasterClip\20const&\2c\20int\2c\20int\2c\20SkPixmap\20const&\29 +5634:skcpu::Recorder::makeBitmapSurface\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20SkSurfaceProps\20const*\29 +5635:skcpu::DrawTreatAsHairline\28SkPaint\20const&\2c\20SkMatrix\20const&\2c\20float*\29 +5636:skcpu::DrawToMask\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20SkMaskFilter\20const*\2c\20SkMatrix\20const*\2c\20SkMaskBuilder*\2c\20SkMaskBuilder::CreateMode\2c\20SkStrokeRec::InitStyle\29 +5637:skcpu::Draw::drawSprite\28SkBitmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29\20const +5638:skcpu::Draw::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkRect\20const*\29\20const +5639:skcpu::Draw::drawRRectNinePatch\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +5640:skcpu::Draw::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkDrawCoverage\2c\20SkBlitter*\29\20const +5641:skcpu::Draw::drawPaint\28SkPaint\20const&\29\20const +5642:skcpu::Draw::drawDevMask\28SkMask\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29\20const +5643:skcpu::Draw::drawBitmap\28SkBitmap\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29\20const +5644:sk_sp::~sk_sp\28\29 +5645:sk_sp::reset\28sktext::gpu::TextStrike*\29 +5646:sk_sp\20skgpu::RefCntedCallback::MakeImpl\28void\20\28*\29\28void*\29\2c\20void*\29 +5647:sk_sp<\28anonymous\20namespace\29::UniqueKeyInvalidator>\20sk_make_sp<\28anonymous\20namespace\29::UniqueKeyInvalidator\2c\20skgpu::UniqueKey&\2c\20unsigned\20int>\28skgpu::UniqueKey&\2c\20unsigned\20int&&\29 +5648:sk_sp<\28anonymous\20namespace\29::ShadowInvalidator>\20sk_make_sp<\28anonymous\20namespace\29::ShadowInvalidator\2c\20SkResourceCache::Key&>\28SkResourceCache::Key&\29 +5649:sk_sp::operator=\28sk_sp\20const&\29 +5650:sk_sp&\20std::__2::vector\2c\20std::__2::allocator>>::emplace_back>\28sk_sp&&\29 +5651:sk_sp\20sk_make_sp>\28sk_sp&&\29 +5652:sk_sp::~sk_sp\28\29 +5653:sk_sp::sk_sp\28sk_sp\20const&\29 +5654:sk_sp::operator=\28sk_sp&&\29 +5655:sk_sp::reset\28SkMeshSpecification*\29 +5656:sk_sp::reset\28SkData\20const*\29 +5657:sk_sp::operator=\28sk_sp\20const&\29 +5658:sk_sp::operator=\28sk_sp\20const&\29 +5659:sk_sp::operator=\28sk_sp&&\29 +5660:sk_sp::~sk_sp\28\29 +5661:sk_sp::sk_sp\28sk_sp\20const&\29 +5662:sk_sp&\20sk_sp::operator=\28sk_sp&&\29 +5663:sk_sp::reset\28GrSurface::RefCntedReleaseProc*\29 +5664:sk_sp::operator=\28sk_sp&&\29 +5665:sk_sp::~sk_sp\28\29 +5666:sk_sp::operator=\28sk_sp&&\29 +5667:sk_sp::~sk_sp\28\29 +5668:sk_sp\20sk_make_sp\28\29 +5669:sk_sp::reset\28GrArenas*\29 +5670:sk_ft_alloc\28FT_MemoryRec_*\2c\20long\29 +5671:sk_fopen\28char\20const*\2c\20SkFILE_Flags\29 +5672:sk_fgetsize\28_IO_FILE*\29 +5673:sk_determinant\28float\20const*\2c\20int\29 +5674:sk_blit_below\28SkBlitter*\2c\20SkIRect\20const&\2c\20SkRegion\20const&\29 +5675:sk_blit_above\28SkBlitter*\2c\20SkIRect\20const&\2c\20SkRegion\20const&\29 +5676:sid_to_gid_t\20const*\20hb_sorted_array_t::bsearch\28unsigned\20int\20const&\2c\20sid_to_gid_t\20const*\29 +5677:short\20sk_saturate_cast\28float\29 +5678:sharp_angle\28SkPoint\20const*\29 +5679:sfnt_stream_close +5680:setup_masks_arabic_plan\28arabic_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_script_t\29 +5681:set_points\28float*\2c\20int*\2c\20int\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float\2c\20float\2c\20bool\29 +5682:set_ootf_Y\28SkColorSpace\20const*\2c\20float*\29 +5683:set_normal_unitnormal\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +5684:set_khr_debug_label\28GrGLGpu*\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +5685:set_as_rect\28SkPathRaw*\2c\20SkSpan\2c\20SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +5686:set_as_oval\28SkPathRaw*\2c\20SkSpan\2c\20SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +5687:setThrew +5688:serialize_image\28SkImage\20const*\2c\20SkSerialProcs\29 +5689:sect_clamp_with_vertical\28SkPoint\20const*\2c\20float\29 +5690:scanexp +5691:scalbnl +5692:scalbnf +5693:safe_picture_bounds\28SkRect\20const&\29 +5694:safe_int_addition +5695:rt_has_msaa_render_buffer\28GrGLRenderTarget\20const*\2c\20GrGLCaps\20const&\29 +5696:rrect_type_to_vert_count\28RRectType\29 +5697:row_is_all_zeros\28unsigned\20char\20const*\2c\20int\29 +5698:round_up_to_int\28float\29 +5699:round_down_to_int\28float\29 +5700:rotate\28SkDCubic\20const&\2c\20int\2c\20int\2c\20SkDCubic&\29 +5701:rewind_if_necessary\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +5702:resolveImplicitLevels\28UBiDi*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +5703:renderbuffer_storage_msaa\28GrGLGpu*\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +5704:remove_edge_below\28GrTriangulator::Edge*\29 +5705:remove_edge_above\28GrTriangulator::Edge*\29 +5706:reductionLineCount\28SkDQuad\20const&\29 +5707:recursive_edge_intersect\28GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20SkPoint*\2c\20double*\2c\20double*\29 +5708:rect_exceeds\28SkRect\20const&\2c\20float\29 +5709:reclassify_vertex\28TriangulationVertex*\2c\20SkPoint\20const*\2c\20int\2c\20ReflexHash*\2c\20SkTInternalLList*\29 +5710:radii_are_nine_patch\28SkPoint\20const*\29 +5711:quad_type_for_transformed_rect\28SkMatrix\20const&\29 +5712:quad_to_tris\28SkPoint*\2c\20SkSpan\29 +5713:quad_in_line\28SkPoint\20const*\29 +5714:pt_to_tangent_line\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +5715:psh_hint_table_record +5716:psh_hint_table_init +5717:psh_hint_table_find_strong_points +5718:psh_hint_table_done +5719:psh_hint_table_activate_mask +5720:psh_hint_align +5721:psh_glyph_load_points +5722:psh_globals_scale_widths +5723:psh_compute_dir +5724:psh_blues_set_zones_0 +5725:psh_blues_set_zones +5726:ps_table_realloc +5727:ps_parser_to_token_array +5728:ps_parser_load_field +5729:ps_mask_table_last +5730:ps_mask_table_done +5731:ps_hints_stem +5732:ps_dimension_end +5733:ps_dimension_done +5734:ps_dimension_add_t1stem +5735:ps_builder_start_point +5736:ps_builder_close_contour +5737:ps_builder_add_point1 +5738:printf_core +5739:prepare_to_draw_into_mask\28SkRect\20const&\2c\20SkMaskBuilder*\29 +5740:position_cluster\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\29 +5741:portable::uniform_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5742:portable::set_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5743:portable::debug_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5744:portable::debug_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5745:portable::copy_from_indirect_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5746:portable::copy_2_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5747:portable::check_decal_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5748:portable::bilerp_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5749:pop_arg +5750:pointInTriangle\28SkDPoint\20const*\2c\20SkDPoint\20const&\29 +5751:pntz +5752:png_rtran_ok +5753:png_malloc_array_checked +5754:png_inflate +5755:png_format_buffer +5756:png_decompress_chunk +5757:png_colorspace_check_gamma +5758:png_cache_unknown_chunk +5759:pin_offset_s32\28int\2c\20int\2c\20int\29 +5760:path_key_from_data_size\28SkPath\20const&\29 +5761:parse_private_use_subtag\28char\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20char\20const*\2c\20unsigned\20char\20\28*\29\28unsigned\20char\29\29 +5762:paint_color_to_dst\28SkPaint\20const&\2c\20SkPixmap\20const&\29 +5763:pad4 +5764:operator_new_impl\28unsigned\20long\29 +5765:operator==\28SkRRect\20const&\2c\20SkRRect\20const&\29 +5766:operator==\28SkPaint\20const&\2c\20SkPaint\20const&\29 +5767:operator!=\28SkRRect\20const&\2c\20SkRRect\20const&\29 +5768:open_face +5769:on_same_side\28SkPoint\20const*\2c\20int\2c\20int\29 +5770:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_3686 +5771:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +5772:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::size\28\29\20const +5773:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +5774:move_multiples\28SkOpContourHead*\29 +5775:mono_cubic_closestT\28float\20const*\2c\20float\29 +5776:mbsrtowcs +5777:matchesEnd\28SkDPoint\20const*\2c\20SkDPoint\20const&\29 +5778:map_rect_perspective\28SkRect\20const&\2c\20float\20const*\29::$_0::operator\28\29\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20const::'lambda'\28skvx::Vec<4\2c\20float>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20float>\20const&\29\20const +5779:map_quad_to_rect\28SkRSXform\20const&\2c\20SkRect\20const&\29 +5780:map_quad_general\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20SkMatrix\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +5781:make_tiled_gradient\28GrFPArgs\20const&\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20bool\2c\20bool\29 +5782:make_premul_effect\28std::__2::unique_ptr>\29 +5783:make_dual_interval_colorizer\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20float\29 +5784:make_clamped_gradient\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20bool\29 +5785:make_bmp_proxy\28GrProxyProvider*\2c\20SkBitmap\20const&\2c\20GrColorType\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +5786:long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +5787:long\20long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +5788:long\20double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +5789:log2f_\28float\29 +5790:load_post_names +5791:lineMetrics_getLineNumber +5792:lineMetrics_getHardBreak +5793:lin_srgb_to_oklab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +5794:lang_find_or_insert\28char\20const*\29 +5795:isdigit +5796:is_zero_width_char\28hb_font_t*\2c\20unsigned\20int\29 +5797:is_simple_rect\28GrQuad\20const&\29 +5798:is_plane_config_compatible_with_subsampling\28SkYUVAInfo::PlaneConfig\2c\20SkYUVAInfo::Subsampling\29 +5799:is_overlap_edge\28GrTriangulator::Edge*\29 +5800:is_leap +5801:is_int\28float\29 +5802:is_halant_use\28hb_glyph_info_t\20const&\29 +5803:is_float_fp32\28GrGLContextInfo\20const&\2c\20GrGLInterface\20const*\2c\20unsigned\20int\29 +5804:isZeroLengthSincePoint\28SkSpan\2c\20int\29 +5805:iprintf +5806:invalidate_buffer\28GrGLGpu*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20long\29 +5807:interp_cubic_coords\28double\20const*\2c\20double*\2c\20double\29 +5808:int\20SkRecords::Pattern>::matchFirst>\28SkRecords::Is*\2c\20SkRecord*\2c\20int\29 +5809:inside_triangle\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5810:inflateEnd +5811:impeller::\28anonymous\20namespace\29::OctantContains\28impeller::RoundSuperellipseParam::Octant\20const&\2c\20impeller::TPoint\20const&\29 +5812:impeller::\28anonymous\20namespace\29::ComputeOctant\28impeller::TPoint\2c\20float\2c\20float\29 +5813:impeller::TRect::Expand\28int\2c\20int\29\20const +5814:impeller::TRect::Union\28impeller::TRect\20const&\29\20const +5815:impeller::TRect::TransformBounds\28impeller::Matrix\20const&\29\20const +5816:impeller::TRect::InterpolateAndInsert\28impeller::TPoint*\2c\20int\2c\20impeller::Vector3\20const&\2c\20impeller::Vector3\20const&\29 +5817:impeller::TPoint::GetLengthSquared\28\29\20const +5818:impeller::RoundingRadii::Scaled\28impeller::TRect\20const&\29\20const +5819:impeller::RoundingRadii::AreAllCornersEmpty\28\29\20const +5820:impeller::RoundSuperellipseParam::MakeBoundsRadii\28impeller::TRect\20const&\2c\20impeller::RoundingRadii\20const&\29 +5821:impeller::Matrix::IsAligned2D\28float\29\20const +5822:impeller::Matrix::HasPerspective\28\29\20const +5823:image_getHeight +5824:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +5825:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +5826:hb_vector_t\2c\20false>::shrink_vector\28unsigned\20int\29 +5827:hb_vector_t\2c\20false>::resize\28int\2c\20bool\2c\20bool\29 +5828:hb_vector_t\2c\20false>::fini\28\29 +5829:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +5830:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +5831:hb_vector_t::pop\28\29 +5832:hb_vector_t::clear\28\29 +5833:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +5834:hb_vector_t::push\28\29 +5835:hb_vector_t::alloc_exact\28unsigned\20int\29 +5836:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +5837:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +5838:hb_vector_t::clear\28\29 +5839:hb_vector_t\2c\20false>::shrink_vector\28unsigned\20int\29 +5840:hb_vector_t\2c\20false>::fini\28\29 +5841:hb_vector_t::shrink_vector\28unsigned\20int\29 +5842:hb_vector_t::fini\28\29 +5843:hb_vector_t::shrink_vector\28unsigned\20int\29 +5844:hb_unicode_mirroring_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +5845:hb_unicode_funcs_t::is_default_ignorable\28unsigned\20int\29 +5846:hb_unicode_funcs_get_default +5847:hb_tag_from_string +5848:hb_shape_plan_key_t::init\28bool\2c\20hb_face_t*\2c\20hb_segment_properties_t\20const*\2c\20hb_feature_t\20const*\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20char\20const*\20const*\29 +5849:hb_shape_plan_key_t::fini\28\29 +5850:hb_set_digest_t::union_\28hb_set_digest_t\20const&\29 +5851:hb_set_digest_t::may_intersect\28hb_set_digest_t\20const&\29\20const +5852:hb_serialize_context_t::object_t::hash\28\29\20const +5853:hb_serialize_context_t::fini\28\29 +5854:hb_sanitize_context_t::return_t\20OT::Context::dispatch\28hb_sanitize_context_t*\29\20const +5855:hb_sanitize_context_t::return_t\20OT::ChainContext::dispatch\28hb_sanitize_context_t*\29\20const +5856:hb_sanitize_context_t::hb_sanitize_context_t\28hb_blob_t*\29 +5857:hb_paint_funcs_t::sweep_gradient\28void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\29 +5858:hb_paint_funcs_t::radial_gradient\28void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +5859:hb_paint_funcs_t::push_skew\28void*\2c\20float\2c\20float\29 +5860:hb_paint_funcs_t::push_rotate\28void*\2c\20float\29 +5861:hb_paint_funcs_t::push_inverse_font_transform\28void*\2c\20hb_font_t\20const*\29 +5862:hb_paint_funcs_t::push_group\28void*\29 +5863:hb_paint_funcs_t::pop_group\28void*\2c\20hb_paint_composite_mode_t\29 +5864:hb_paint_funcs_t::linear_gradient\28void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +5865:hb_paint_extents_paint_linear_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +5866:hb_paint_extents_get_funcs\28\29 +5867:hb_paint_extents_context_t::~hb_paint_extents_context_t\28\29 +5868:hb_paint_extents_context_t::pop_clip\28\29 +5869:hb_paint_extents_context_t::clear\28\29 +5870:hb_ot_map_t::get_mask\28unsigned\20int\2c\20unsigned\20int*\29\20const +5871:hb_ot_map_t::fini\28\29 +5872:hb_ot_map_builder_t::add_pause\28unsigned\20int\2c\20bool\20\28*\29\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29\29 +5873:hb_ot_map_builder_t::add_lookups\28hb_ot_map_t&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20unsigned\20int\29 +5874:hb_ot_layout_has_substitution +5875:hb_ot_font_set_funcs +5876:hb_memcmp\28void\20const*\2c\20void\20const*\2c\20unsigned\20int\29 +5877:hb_lazy_loader_t\2c\20hb_face_t\2c\2038u\2c\20OT::sbix_accelerator_t>::get_stored\28\29\20const +5878:hb_lazy_loader_t\2c\20hb_face_t\2c\207u\2c\20OT::post_accelerator_t>::get_stored\28\29\20const +5879:hb_lazy_loader_t\2c\20hb_face_t\2c\207u\2c\20OT::post_accelerator_t>::do_destroy\28OT::post_accelerator_t*\29 +5880:hb_lazy_loader_t\2c\20hb_face_t\2c\205u\2c\20OT::hmtx_accelerator_t>::get_stored\28\29\20const +5881:hb_lazy_loader_t\2c\20hb_face_t\2c\2021u\2c\20OT::gvar_accelerator_t>::do_destroy\28OT::gvar_accelerator_t*\29 +5882:hb_lazy_loader_t\2c\20hb_face_t\2c\2015u\2c\20OT::glyf_accelerator_t>::do_destroy\28OT::glyf_accelerator_t*\29 +5883:hb_lazy_loader_t\2c\20hb_face_t\2c\203u\2c\20OT::cmap_accelerator_t>::do_destroy\28OT::cmap_accelerator_t*\29 +5884:hb_lazy_loader_t\2c\20hb_face_t\2c\2017u\2c\20OT::cff2_accelerator_t>::get_stored\28\29\20const +5885:hb_lazy_loader_t\2c\20hb_face_t\2c\2017u\2c\20OT::cff2_accelerator_t>::do_destroy\28OT::cff2_accelerator_t*\29 +5886:hb_lazy_loader_t\2c\20hb_face_t\2c\2016u\2c\20OT::cff1_accelerator_t>::do_destroy\28OT::cff1_accelerator_t*\29 +5887:hb_lazy_loader_t\2c\20hb_face_t\2c\2019u\2c\20hb_blob_t>::get\28\29\20const +5888:hb_lazy_loader_t\2c\20hb_face_t\2c\2024u\2c\20OT::GDEF_accelerator_t>::do_destroy\28OT::GDEF_accelerator_t*\29 +5889:hb_lazy_loader_t\2c\20hb_face_t\2c\2036u\2c\20hb_blob_t>::get\28\29\20const +5890:hb_lazy_loader_t\2c\20hb_face_t\2c\2035u\2c\20OT::COLR_accelerator_t>::get_stored\28\29\20const +5891:hb_lazy_loader_t\2c\20hb_face_t\2c\2035u\2c\20OT::COLR_accelerator_t>::do_destroy\28OT::COLR_accelerator_t*\29 +5892:hb_lazy_loader_t\2c\20hb_face_t\2c\2037u\2c\20OT::CBDT_accelerator_t>::get_stored\28\29\20const +5893:hb_lazy_loader_t\2c\20hb_face_t\2c\2037u\2c\20OT::CBDT_accelerator_t>::do_destroy\28OT::CBDT_accelerator_t*\29 +5894:hb_lazy_loader_t\2c\20hb_face_t\2c\2033u\2c\20hb_blob_t>::get\28\29\20const +5895:hb_lazy_loader_t\2c\20hb_face_t\2c\2030u\2c\20AAT::kerx_accelerator_t>::get_stored\28\29\20const +5896:hb_language_matches +5897:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>\2c\20hb_pair_t>>::operator-=\28unsigned\20int\29\20& +5898:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>\2c\20hb_pair_t>>::operator+=\28unsigned\20int\29\20& +5899:hb_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20hb_pair_t>::operator++\28\29\20& +5900:hb_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>\2c\20hb_pair_t>::operator--\28\29\20& +5901:hb_indic_get_categories\28unsigned\20int\29 +5902:hb_hashmap_t::fini\28\29 +5903:hb_hashmap_t::fetch_item\28hb_serialize_context_t::object_t\20const*\20const&\2c\20unsigned\20int\29\20const +5904:hb_font_t::synthetic_glyph_extents\28hb_glyph_extents_t*\29 +5905:hb_font_t::subtract_glyph_origin_for_direction\28unsigned\20int\2c\20hb_direction_t\2c\20int*\2c\20int*\29 +5906:hb_font_t::subtract_glyph_h_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +5907:hb_font_t::guess_v_origin_minus_h_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +5908:hb_font_t::get_variation_glyph\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\29 +5909:hb_font_t::get_glyph_v_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +5910:hb_font_t::get_glyph_v_kerning\28unsigned\20int\2c\20unsigned\20int\29 +5911:hb_font_t::get_glyph_h_kerning\28unsigned\20int\2c\20unsigned\20int\29 +5912:hb_font_t::get_glyph_contour_point\28unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\29 +5913:hb_font_t::get_font_h_extents\28hb_font_extents_t*\29 +5914:hb_font_t::draw_glyph\28unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\29 +5915:hb_font_set_variations +5916:hb_font_set_funcs +5917:hb_font_get_variation_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +5918:hb_font_get_font_h_extents_nil\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +5919:hb_font_funcs_set_variation_glyph_func +5920:hb_font_funcs_set_nominal_glyphs_func +5921:hb_font_funcs_set_nominal_glyph_func +5922:hb_font_funcs_set_glyph_h_advances_func +5923:hb_font_funcs_set_glyph_extents_func +5924:hb_font_funcs_create +5925:hb_font_destroy +5926:hb_face_destroy +5927:hb_face_create_for_tables +5928:hb_draw_move_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +5929:hb_draw_funcs_t::emit_move_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\29 +5930:hb_draw_funcs_set_quadratic_to_func +5931:hb_draw_funcs_set_move_to_func +5932:hb_draw_funcs_set_line_to_func +5933:hb_draw_funcs_set_cubic_to_func +5934:hb_draw_funcs_destroy +5935:hb_draw_funcs_create +5936:hb_draw_extents_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +5937:hb_cache_t<24u\2c\2016u\2c\208u\2c\20true>::clear\28\29 +5938:hb_buffer_t::sort\28unsigned\20int\2c\20unsigned\20int\2c\20int\20\28*\29\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29\29 +5939:hb_buffer_t::safe_to_insert_tatweel\28unsigned\20int\2c\20unsigned\20int\29 +5940:hb_buffer_t::next_glyphs\28unsigned\20int\29 +5941:hb_buffer_t::message_impl\28hb_font_t*\2c\20char\20const*\2c\20void*\29 +5942:hb_buffer_t::delete_glyphs_inplace\28bool\20\28*\29\28hb_glyph_info_t\20const*\29\29 +5943:hb_buffer_t::clear\28\29 +5944:hb_buffer_t::add\28unsigned\20int\2c\20unsigned\20int\29 +5945:hb_buffer_get_glyph_positions +5946:hb_buffer_diff +5947:hb_buffer_clear_contents +5948:hb_buffer_add_utf8 +5949:hb_bounds_t::union_\28hb_bounds_t\20const&\29 +5950:hb_bounds_t::intersect\28hb_bounds_t\20const&\29 +5951:hb_blob_t::destroy_user_data\28\29 +5952:hb_array_t::hash\28\29\20const +5953:hb_array_t::cmp\28hb_array_t\20const&\29\20const +5954:hb_array_t>::qsort\28int\20\28*\29\28void\20const*\2c\20void\20const*\29\29 +5955:hb_array_t::__next__\28\29 +5956:hb_aat_map_builder_t::~hb_aat_map_builder_t\28\29 +5957:hb_aat_map_builder_t::feature_info_t\20const*\20hb_vector_t::bsearch\28hb_aat_map_builder_t::feature_info_t\20const&\2c\20hb_aat_map_builder_t::feature_info_t\20const*\29\20const +5958:hb_aat_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +5959:hb_aat_map_builder_t::feature_info_t::cmp\28hb_aat_map_builder_t::feature_info_t\20const&\29\20const +5960:hb_aat_map_builder_t::compile\28hb_aat_map_t&\29 +5961:hb_aat_layout_remove_deleted_glyphs\28hb_buffer_t*\29 +5962:hb_aat_layout_compile_map\28hb_aat_map_builder_t\20const*\2c\20hb_aat_map_t*\29 +5963:has_msaa_render_buffer\28GrSurfaceProxy\20const*\2c\20GrGLCaps\20const&\29 +5964:hair_cubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +5965:getint +5966:get_win_string +5967:get_paint\28GrAA\2c\20unsigned\20char\29 +5968:get_layer_mapping_and_bounds\28SkSpan>\2c\20SkM44\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\2c\20float\29::$_0::operator\28\29\28int\29\20const +5969:get_dst_swizzle_and_store\28GrColorType\2c\20SkRasterPipelineOp*\2c\20LumMode*\2c\20bool*\2c\20bool*\29 +5970:get_driver_and_version\28GrGLStandard\2c\20GrGLVendor\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +5971:get_apple_string +5972:getSingleRun\28UBiDi*\2c\20unsigned\20char\29 +5973:getRunFromLogicalIndex\28UBiDi*\2c\20int\29 +5974:getMirror\28int\2c\20unsigned\20short\29\20\28.9480\29 +5975:geometric_overlap\28SkRect\20const&\2c\20SkRect\20const&\29 +5976:geometric_contains\28SkRect\20const&\2c\20SkRect\20const&\29 +5977:gen_key\28skgpu::KeyBuilder*\2c\20GrProgramInfo\20const&\2c\20GrCaps\20const&\29 +5978:gen_fp_key\28GrFragmentProcessor\20const&\2c\20GrCaps\20const&\2c\20skgpu::KeyBuilder*\29 +5979:gather_uniforms_and_check_for_main\28SkSL::Program\20const&\2c\20std::__2::vector>*\2c\20std::__2::vector>*\2c\20SkRuntimeEffect::Uniform::Flags\2c\20unsigned\20long*\29 +5980:fwrite +5981:ft_var_to_normalized +5982:ft_var_load_item_variation_store +5983:ft_var_load_hvvar +5984:ft_var_load_avar +5985:ft_var_get_value_pointer +5986:ft_var_get_item_delta +5987:ft_var_apply_tuple +5988:ft_set_current_renderer +5989:ft_recompute_scaled_metrics +5990:ft_mem_strcpyn +5991:ft_mem_dup +5992:ft_hash_num_lookup +5993:ft_gzip_alloc +5994:ft_glyphslot_preset_bitmap +5995:ft_glyphslot_done +5996:ft_corner_orientation +5997:ft_corner_is_flat +5998:ft_cmap_done_internal +5999:frexp +6000:fread +6001:fputs +6002:fp_force_eval +6003:fp_barrier +6004:formulate_F1DotF2\28float\20const*\2c\20float*\29 +6005:formulate_F1DotF2\28double\20const*\2c\20double*\29 +6006:format_alignment\28SkMask::Format\29 +6007:format1_names\28unsigned\20int\29 +6008:fopen +6009:fold_opacity_layer_color_to_paint\28SkPaint\20const*\2c\20bool\2c\20SkPaint*\29 +6010:fmodl +6011:fmod +6012:flutter::\28anonymous\20namespace\29::transform\28flutter::DlColor\20const&\2c\20std::__2::array\20const&\2c\20flutter::DlColorSpace\29 +6013:flutter::\28anonymous\20namespace\29::RoundingRadiiSafeRects\28impeller::TRect\20const&\2c\20impeller::RoundingRadii\20const&\29 +6014:flutter::ToSk\28flutter::DlColorSource\20const*\29 +6015:flutter::ToSk\28flutter::DlColorFilter\20const*\29 +6016:flutter::ToApproximateSkRRect\28impeller::RoundSuperellipse\20const&\29 +6017:flutter::DlTextSkia::~DlTextSkia\28\29 +6018:flutter::DlTextSkia::Make\28sk_sp\20const&\29 +6019:flutter::DlSkPaintDispatchHelper::set_opacity\28float\29 +6020:flutter::DlSkPaintDispatchHelper::makeColorFilter\28\29\20const +6021:flutter::DlSkCanvasDispatcher::restore\28\29 +6022:flutter::DlRuntimeEffectSkia::~DlRuntimeEffectSkia\28\29_1665 +6023:flutter::DlRuntimeEffectSkia::~DlRuntimeEffectSkia\28\29 +6024:flutter::DlRuntimeEffectSkia::skia_runtime_effect\28\29\20const +6025:flutter::DlRegion::~DlRegion\28\29 +6026:flutter::DlRegion::Span&\20std::__2::vector>::emplace_back\28int&\2c\20int&\29 +6027:flutter::DlRTree::~DlRTree\28\29 +6028:flutter::DlRTree::search\28impeller::TRect\20const&\2c\20std::__2::vector>*\29\20const +6029:flutter::DlRTree::search\28flutter::DlRTree::Node\20const&\2c\20impeller::TRect\20const&\2c\20std::__2::vector>*\29\20const +6030:flutter::DlPath::IsRect\28impeller::TRect*\2c\20bool*\29\20const +6031:flutter::DlPaint::setColorSource\28std::__2::shared_ptr\29 +6032:flutter::DlPaint::operator=\28flutter::DlPaint\20const&\29 +6033:flutter::DlMatrixColorFilter::size\28\29\20const +6034:flutter::DlLinearGradientColorSource::size\28\29\20const +6035:flutter::DlLinearGradientColorSource::pod\28\29\20const +6036:flutter::DlImageFilter::outset_device_bounds\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29 +6037:flutter::DlImageFilter::map_vectors_affine\28impeller::Matrix\20const&\2c\20float\2c\20float\29 +6038:flutter::DlDilateImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6039:flutter::DlDilateImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6040:flutter::DlDilateImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +6041:flutter::DlConicalGradientColorSource::pod\28\29\20const +6042:flutter::DlComposeImageFilter::DlComposeImageFilter\28std::__2::shared_ptr\20const&\2c\20std::__2::shared_ptr\20const&\29 +6043:flutter::DlColorSource::MakeImage\28sk_sp\20const&\2c\20flutter::DlTileMode\2c\20flutter::DlTileMode\2c\20flutter::DlImageSampling\2c\20impeller::Matrix\20const*\29 +6044:flutter::DlColorFilterImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6045:flutter::DlBlurMaskFilter::shared\28\29\20const +6046:flutter::DlBlurImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6047:flutter::DlBlendColorFilter::size\28\29\20const +6048:flutter::DisplayListStorage::realloc\28unsigned\20long\29 +6049:flutter::DisplayListStorage::operator=\28flutter::DisplayListStorage&&\29 +6050:flutter::DisplayListStorage::DisplayListStorage\28flutter::DisplayListStorage&&\29 +6051:flutter::DisplayListMatrixClipState::translate\28float\2c\20float\29 +6052:flutter::DisplayListMatrixClipState::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6053:flutter::DisplayListMatrixClipState::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6054:flutter::DisplayListMatrixClipState::skew\28float\2c\20float\29 +6055:flutter::DisplayListMatrixClipState::scale\28float\2c\20float\29 +6056:flutter::DisplayListMatrixClipState::rsuperellipse_covers_cull\28impeller::RoundSuperellipse\20const&\29\20const +6057:flutter::DisplayListMatrixClipState::rrect_covers_cull\28impeller::RoundRect\20const&\29\20const +6058:flutter::DisplayListMatrixClipState::rotate\28impeller::Radians\29 +6059:flutter::DisplayListMatrixClipState::oval_covers_cull\28impeller::TRect\20const&\29\20const +6060:flutter::DisplayListMatrixClipState::clipRSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +6061:flutter::DisplayListMatrixClipState::clipRRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +6062:flutter::DisplayListMatrixClipState::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +6063:flutter::DisplayListMatrixClipState::GetLocalCullCoverage\28\29\20const +6064:flutter::DisplayListBuilder::~DisplayListBuilder\28\29_1226 +6065:flutter::DisplayListBuilder::drawDisplayList\28sk_sp\2c\20float\29 +6066:flutter::DisplayListBuilder::SetTransform\28impeller::Matrix\20const&\29 +6067:flutter::DisplayListBuilder::SaveInfo::SaveInfo\28impeller::TRect\20const&\29 +6068:flutter::DisplayListBuilder::SaveInfo::AccumulateBoundsLocal\28impeller::TRect\20const&\29 +6069:flutter::DisplayListBuilder::SaveInfo*\20std::__2::construct_at\5babi:ne180100\5d&\2c\20unsigned\20long&\2c\20flutter::DisplayListBuilder::SaveInfo*>\28flutter::DisplayListBuilder::SaveInfo*\2c\20flutter::DisplayListBuilder::SaveInfo*&&\2c\20std::__2::shared_ptr&\2c\20unsigned\20long&\29 +6070:flutter::DisplayListBuilder::SaveInfo*\20std::__2::construct_at\5babi:ne180100\5d\28flutter::DisplayListBuilder::SaveInfo*\2c\20flutter::DisplayListBuilder::SaveInfo*&&\29 +6071:flutter::DisplayListBuilder::RTreeData::~RTreeData\28\29 +6072:flutter::DisplayListBuilder::LayerInfo::LayerInfo\28std::__2::shared_ptr\20const&\2c\20unsigned\20long\29 +6073:flutter::DisplayListBuilder::Init\28bool\29 +6074:flutter::DisplayListBuilder::GetImageInfo\28\29\20const +6075:flutter::DisplayListBuilder::FlagsForPointMode\28flutter::DlPointMode\29 +6076:flutter::DisplayListBuilder::DrawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlPaint\20const&\29 +6077:flutter::DisplayListBuilder::CheckLayerOpacityHairlineCompatibility\28\29 +6078:flutter::DisplayListBuilder::AccumulateUnbounded\28flutter::DisplayListBuilder::SaveInfo\20const&\29 +6079:flutter::DisplayList::~DisplayList\28\29 +6080:flutter::DisplayList::DisposeOps\28flutter::DisplayListStorage\20const&\2c\20std::__2::vector>\20const&\29 +6081:flutter::DisplayList::DispatchOneOp\28flutter::DlOpReceiver&\2c\20unsigned\20char\20const*\29\20const +6082:float\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +6083:first_axis_intersection\28double\20const*\2c\20bool\2c\20double\2c\20double*\29 +6084:fiprintf +6085:find_unicode_charmap +6086:find_diff_pt\28SkPoint\20const*\2c\20int\2c\20int\2c\20int\29 +6087:fillable\28SkRect\20const&\29 +6088:fileno +6089:expf_\28float\29 +6090:exp2f_\28float\29 +6091:eval_cubic_pts\28float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6092:eval_cubic_derivative\28SkPoint\20const*\2c\20float\29 +6093:emptyOnNull\28sk_sp&&\29 +6094:elliptical_effect_uses_scale\28GrShaderCaps\20const&\2c\20SkRRect\20const&\29 +6095:edges_too_close\28SkAnalyticEdge*\2c\20SkAnalyticEdge*\2c\20int\29 +6096:edge_line_needs_recursion\28SkPoint\20const&\2c\20SkPoint\20const&\29 +6097:eat_space_sep_strings\28skia_private::TArray*\2c\20char\20const*\29 +6098:draw_nine\28SkMask\20const&\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\2c\20bool\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +6099:dquad_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6100:double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +6101:do_newlocale +6102:do_fixed +6103:doWriteReverse\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +6104:doWriteForward\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +6105:dline_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6106:distance_to_sentinel\28int\20const*\29 +6107:diff_to_shift\28int\2c\20int\2c\20int\29\20\28.683\29 +6108:diff_to_shift\28int\2c\20int\2c\20int\29 +6109:destroy_size +6110:destroy_charmaps +6111:decompose_current_character\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\29 +6112:decompose\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\2c\20unsigned\20int\29 +6113:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::Make\28SkArenaAlloc*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6114:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&\2c\20skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathCurveTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6115:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6116:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass\2c\20int&\2c\20float*&\2c\20skvx::Vec<1\2c\20float>*&>\28int&\2c\20float*&\2c\20skvx::Vec<1\2c\20float>*&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6117:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass\2c\20unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&>\28unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::A8Pass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6118:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29>\28GrThreadSafeCache::Entry&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6119:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrRRectShadowGeoProc::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6120:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28GrQuadEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6121:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrPipeline::InitArgs&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29::'lambda'\28void*\29>\28GrPipeline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6122:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldA8TextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20float\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6123:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28CircleGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6124:decltype\28fp0\28\28SkRecords::NoOp\29\28\29\29\29\20SkRecord::visit\28int\2c\20SkRecords::Draw&\29\20const +6125:decltype\28fp0\28\28SkRecords::NoOp*\29\28nullptr\29\29\29\20SkRecord::mutate\28int\2c\20SkRecord::Destroyer&\29 +6126:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +6127:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>>::__generic_construct\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__ctor\2c\20std::__2::unique_ptr>>>&\2c\20std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&>\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&\29 +6128:dcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +6129:dcubic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6130:dconic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6131:data_destroy_arabic\28void*\29 +6132:data_create_arabic\28hb_ot_shape_plan_t\20const*\29 +6133:cycle +6134:crop_simple_rect\28SkRect\20const&\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +6135:crop_rect\28SkRect\20const&\2c\20float*\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +6136:count_scalable_pixels\28int\20const*\2c\20int\2c\20bool\2c\20int\2c\20int\29 +6137:copysignl +6138:copy_mask_to_cacheddata\28SkMaskBuilder*\2c\20SkResourceCache*\29 +6139:conservative_round_to_int\28SkRect\20const&\29 +6140:conic_eval_tan\28double\20const*\2c\20float\2c\20double\29 +6141:conic_eval_numerator\28float\20const*\2c\20float\2c\20float\29 +6142:conic_deriv_coeff\28double\20const*\2c\20float\2c\20double*\29 +6143:compute_pos_tan\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +6144:compute_normal\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint*\29 +6145:compute_intersection\28OffsetSegment\20const&\2c\20OffsetSegment\20const&\2c\20SkPoint*\2c\20float*\2c\20float*\29 +6146:compute_anti_width\28short\20const*\29 +6147:compose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +6148:compare_offsets +6149:clip_to_limit\28SkRegion\20const&\2c\20SkRegion*\29 +6150:clip_line\28SkPoint*\2c\20SkRect\20const&\2c\20float\2c\20float\29 +6151:clean_sampling_for_constraint\28SkSamplingOptions\20const&\2c\20SkCanvas::SrcRectConstraint\29 +6152:clamp_to_zero\28SkPoint*\29 +6153:clamp\28SkPoint\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Comparator\20const&\29 +6154:chop_mono_cubic_at_x\28SkPoint*\2c\20float\2c\20SkPoint*\29 +6155:chopMonoQuadAt\28float\2c\20float\2c\20float\2c\20float\2c\20float*\29 +6156:chopMonoQuadAtY\28SkPoint*\2c\20float\2c\20float*\29 +6157:chopMonoQuadAtX\28SkPoint*\2c\20float\2c\20float*\29 +6158:checkint +6159:check_write_and_transfer_input\28GrGLTexture*\29 +6160:check_name\28SkString\20const&\29 +6161:check_backend_texture\28GrBackendTexture\20const&\2c\20GrGLCaps\20const&\2c\20GrGLTexture::Desc*\2c\20bool\29 +6162:char*\20std::__2::copy\5babi:nn180100\5d\2c\20char*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20char*\29 +6163:char*\20std::__2::copy\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29 +6164:char*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20std::__2::__element_count\29 +6165:char*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29 +6166:cff_vstore_done +6167:cff_subfont_load +6168:cff_subfont_done +6169:cff_size_select +6170:cff_parser_run +6171:cff_parser_init +6172:cff_make_private_dict +6173:cff_load_private_dict +6174:cff_index_get_name +6175:cff_glyph_load +6176:cff_get_kerning +6177:cff_get_glyph_data +6178:cff_fd_select_get +6179:cff_charset_compute_cids +6180:cff_builder_init +6181:cff_builder_add_point1 +6182:cff_builder_add_point +6183:cff_builder_add_contour +6184:cff_blend_check_vector +6185:cff_blend_build_vector +6186:cff1_path_param_t::end_path\28\29 +6187:cf2_stack_pop +6188:cf2_hintmask_setCounts +6189:cf2_hintmask_read +6190:cf2_glyphpath_pushMove +6191:cf2_getSeacComponent +6192:cf2_freeSeacComponent +6193:cf2_computeDarkening +6194:cf2_arrstack_setNumElements +6195:cf2_arrstack_push +6196:cbrt +6197:canvas_translate +6198:canvas_skew +6199:canvas_scale +6200:canvas_save +6201:canvas_rotate +6202:canvas_restore +6203:canvas_getSaveCount +6204:can_use_hw_blend_equation\28skgpu::BlendEquation\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\29 +6205:can_proxy_use_scratch\28GrCaps\20const&\2c\20GrSurfaceProxy*\29 +6206:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_3::operator\28\29\28SkSpan\2c\20float\29\20const +6207:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_2::operator\28\29\28SkSpan\2c\20float\29\20const +6208:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_0::operator\28\29\28SkSpan\2c\20float\29\20const +6209:build_key\28skgpu::ResourceKey::Builder*\2c\20GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\29 +6210:build_intervals\28int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const*\2c\20float\20const*\2c\20int\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20float*\29 +6211:bracketProcessChar\28BracketData*\2c\20int\29 +6212:bracketInit\28UBiDi*\2c\20BracketData*\29 +6213:bounds_t::merge\28bounds_t\20const&\29 +6214:bottom_collinear\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +6215:bool\20std::__2::operator==\5babi:ne180100\5d>\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +6216:bool\20std::__2::operator==\5babi:ne180100\5d\28std::__2::variant\20const&\2c\20std::__2::variant\20const&\29 +6217:bool\20std::__2::operator!=\5babi:ne180100\5d\28std::__2::variant\20const&\2c\20std::__2::variant\20const&\29 +6218:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +6219:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +6220:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +6221:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +6222:bool\20set_point_length\28SkPoint*\2c\20float\2c\20float\2c\20float\2c\20float*\29 +6223:bool\20is_parallel\28SkDLine\20const&\2c\20SkTCurve\20const&\29 +6224:bool\20hb_vector_t::bfind\28hb_bit_set_t::page_map_t\20const&\2c\20unsigned\20int*\2c\20hb_not_found_t\2c\20unsigned\20int\29\20const +6225:bool\20hb_sanitize_context_t::check_array\28OT::Index\20const*\2c\20unsigned\20int\29\20const +6226:bool\20hb_sanitize_context_t::check_array\28AAT::Feature\20const*\2c\20unsigned\20int\29\20const +6227:bool\20hb_sanitize_context_t::check_array>\28AAT::Entry\20const*\2c\20unsigned\20int\29\20const +6228:bool\20apply_string\28OT::hb_ot_apply_context_t*\2c\20GSUBProxy::Lookup\20const&\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\29 +6229:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6230:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6231:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6232:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6233:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6234:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6235:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6236:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6237:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6238:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6239:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6240:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6241:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6242:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6243:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +6244:bool\20OT::cmap::accelerator_t::get_glyph_from_ascii\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +6245:bool\20OT::TupleValues::decompile\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\2c\20bool\29 +6246:bool\20OT::Paint::sanitize<>\28hb_sanitize_context_t*\29\20const +6247:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6248:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6249:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6250:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6251:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\2c\20unsigned\20int&&\29\20const +6252:bool\20OT::OffsetTo\2c\20void\2c\20true>::serialize_serialize\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&>\28hb_serialize_context_t*\2c\20hb_map_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&\29 +6253:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6254:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\2c\20unsigned\20int&&\29\20const +6255:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6256:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\2c\20AAT::trak\20const*&&\29\20const +6257:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +6258:bool\20OT::GSUBGPOS::sanitize\28hb_sanitize_context_t*\29\20const +6259:bool\20OT::GSUBGPOS::sanitize\28hb_sanitize_context_t*\29\20const +6260:bool\20GrTTopoSort_Visit\28GrRenderTask*\2c\20unsigned\20int*\29 +6261:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +6262:blit_two_alphas\28AdditiveBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +6263:blit_full_alpha\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +6264:blender_requires_shader\28SkBlender\20const*\29 +6265:bits_to_runs\28SkBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\2c\20long\2c\20unsigned\20char\29 +6266:between_closed\28double\2c\20double\2c\20double\2c\20double\2c\20bool\29 +6267:barycentric_coords\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +6268:auto\20std::__2::__tuple_compare_three_way\5babi:ne180100\5d\28std::__2::tuple\20const&\2c\20std::__2::tuple\20const&\2c\20std::__2::integer_sequence\29 +6269:auto&&\20std::__2::__generic_get\5babi:ne180100\5d<0ul\2c\20std::__2::variant\20const&>\28std::__2::variant\20const&\29 +6270:atanf +6271:are_radius_check_predicates_valid\28float\2c\20float\2c\20float\29 +6272:arabic_fallback_plan_destroy\28arabic_fallback_plan_t*\29 +6273:apply_forward\28OT::hb_ot_apply_context_t*\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\2c\20unsigned\20int\29 +6274:apply_fill_type\28SkPathFillType\2c\20int\29 +6275:apply_fill_type\28SkPathFillType\2c\20GrTriangulator::Poly*\29 +6276:apply_alpha_and_colorfilter\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20SkPaint\20const&\29 +6277:append_texture_swizzle\28SkString*\2c\20skgpu::Swizzle\29 +6278:append_multitexture_lookup\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20int\2c\20GrGLSLVarying\20const&\2c\20char\20const*\2c\20char\20const*\29 +6279:append_color_output\28PorterDuffXferProcessor\20const&\2c\20GrGLSLXPFragmentBuilder*\2c\20skgpu::BlendFormula::OutputType\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +6280:antifilldot8\28int\2c\20int\2c\20int\2c\20int\2c\20SkBlitter*\2c\20bool\29 +6281:animatedImage_decodeNextFrame +6282:analysis_properties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\2c\20SkBlendMode\29 +6283:afm_stream_skip_spaces +6284:afm_stream_read_string +6285:afm_stream_read_one +6286:af_sort_and_quantize_widths +6287:af_shaper_get_elem +6288:af_loader_compute_darkening +6289:af_latin_metrics_scale_dim +6290:af_latin_hints_detect_features +6291:af_hint_normal_stem +6292:af_glyph_hints_align_weak_points +6293:af_glyph_hints_align_strong_points +6294:af_face_globals_new +6295:af_cjk_metrics_scale_dim +6296:af_cjk_metrics_scale +6297:af_cjk_metrics_init_widths +6298:af_cjk_metrics_check_digits +6299:af_cjk_hints_init +6300:af_cjk_hints_detect_features +6301:af_cjk_hints_compute_blue_edges +6302:af_cjk_hints_apply +6303:af_cjk_get_standard_widths +6304:af_cjk_compute_stem_width +6305:af_axis_hints_new_edge +6306:adjust_mipmapped\28skgpu::Mipmapped\2c\20SkBitmap\20const&\2c\20GrCaps\20const*\29 +6307:add_line\28SkPoint\20const*\2c\20skia_private::TArray*\29 +6308:a_ctz_32 +6309:_pow10\28unsigned\20int\29 +6310:_hb_preprocess_text_vowel_constraints\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +6311:_hb_ot_shape +6312:_hb_options_init\28\29 +6313:_hb_font_create\28hb_face_t*\29 +6314:_hb_fallback_shape +6315:_glyf_get_advance_with_var_unscaled\28hb_font_t*\2c\20unsigned\20int\2c\20bool\29 +6316:_emscripten_timeout +6317:__wasm_init_tls +6318:__vfprintf_internal +6319:__trunctfsf2 +6320:__tan +6321:__strftime_l +6322:__rem_pio2_large +6323:__nl_langinfo_l +6324:__math_xflowf +6325:__math_uflowf +6326:__math_oflowf +6327:__math_invalidf +6328:__loc_is_allocated +6329:__isxdigit_l +6330:__getf2 +6331:__get_locale +6332:__ftello_unlocked +6333:__floatscan +6334:__expo2 +6335:__divtf3 +6336:__cxxabiv1::__base_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +6337:__cxxabiv1::\28anonymous\20namespace\29::GuardObject<__cxxabiv1::\28anonymous\20namespace\29::InitByteGlobalMutex<__cxxabiv1::\28anonymous\20namespace\29::LibcppMutex\2c\20__cxxabiv1::\28anonymous\20namespace\29::LibcppCondVar\2c\20__cxxabiv1::\28anonymous\20namespace\29::GlobalStatic<__cxxabiv1::\28anonymous\20namespace\29::LibcppMutex>::instance\2c\20__cxxabiv1::\28anonymous\20namespace\29::GlobalStatic<__cxxabiv1::\28anonymous\20namespace\29::LibcppCondVar>::instance\2c\20\28unsigned\20int\20\28*\29\28\29\290>>::GuardObject\28unsigned\20int*\29 +6338:_ZZN19GrGeometryProcessor11ProgramImpl17collectTransformsEP19GrGLSLVertexBuilderP20GrGLSLVaryingHandlerP20GrGLSLUniformHandler12GrShaderTypeRK11GrShaderVarSA_RK10GrPipelineEN3$_0clISE_EEvRT_RK19GrFragmentProcessorbPSJ_iNS0_9BaseCoordE +6339:_ZZN18GrGLProgramBuilder23computeCountsAndStridesEjRK19GrGeometryProcessorbENK3$_0clINS0_9AttributeEEEDaiRKT_ +6340:\28anonymous\20namespace\29::texture_color\28SkRGBA4f<\28SkAlphaType\293>\2c\20float\2c\20GrColorType\2c\20GrColorInfo\20const&\29 +6341:\28anonymous\20namespace\29::supported_aa\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrAA\29 +6342:\28anonymous\20namespace\29::set_uv_quad\28SkPoint\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +6343:\28anonymous\20namespace\29::safe_to_ignore_subset_rect\28GrAAType\2c\20SkFilterMode\2c\20DrawQuad\20const&\2c\20SkRect\20const&\29 +6344:\28anonymous\20namespace\29::rrect_type_to_vert_count\28\28anonymous\20namespace\29::RRectType\29 +6345:\28anonymous\20namespace\29::proxy_normalization_params\28GrSurfaceProxy\20const*\2c\20GrSurfaceOrigin\29 +6346:\28anonymous\20namespace\29::normalize_src_quad\28\28anonymous\20namespace\29::NormalizationParams\20const&\2c\20GrQuad*\29 +6347:\28anonymous\20namespace\29::normalize_and_inset_subset\28SkFilterMode\2c\20\28anonymous\20namespace\29::NormalizationParams\20const&\2c\20SkRect\20const*\29 +6348:\28anonymous\20namespace\29::next_gen_id\28\29 +6349:\28anonymous\20namespace\29::morphology_pass\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20\28anonymous\20namespace\29::MorphType\2c\20\28anonymous\20namespace\29::MorphDirection\2c\20int\29 +6350:\28anonymous\20namespace\29::make_non_convex_fill_op\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20skgpu::ganesh::FillPathFlags\2c\20GrAAType\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\29 +6351:\28anonymous\20namespace\29::make_morphology\28\28anonymous\20namespace\29::MorphType\2c\20SkSize\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +6352:\28anonymous\20namespace\29::is_visible\28SkRect\20const&\2c\20SkIRect\20const&\29 +6353:\28anonymous\20namespace\29::is_degen_quad_or_conic\28SkPoint\20const*\2c\20float*\29 +6354:\28anonymous\20namespace\29::init_vertices_paint\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkBlender*\2c\20bool\2c\20GrPaint*\29 +6355:\28anonymous\20namespace\29::get_hbFace_cache\28\29 +6356:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_3::operator\28\29\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20bool\29\20const +6357:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_2::operator\28\29\28SkSpan\29\20const +6358:\28anonymous\20namespace\29::draw_to_sw_mask\28GrSWMaskHelper*\2c\20skgpu::ganesh::ClipStack::Element\20const&\2c\20bool\29 +6359:\28anonymous\20namespace\29::draw_tiled_image\28SkCanvas*\2c\20std::__2::function\20\28SkIRect\29>\2c\20SkISize\2c\20int\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkSamplingOptions\29 +6360:\28anonymous\20namespace\29::draw_path\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20skgpu::ganesh::PathRenderer*\2c\20GrHardClip\20const&\2c\20SkIRect\20const&\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20GrAA\29 +6361:\28anonymous\20namespace\29::determine_clipped_src_rect\28SkIRect\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkRect\20const*\29 +6362:\28anonymous\20namespace\29::create_data\28int\2c\20bool\2c\20float\29 +6363:\28anonymous\20namespace\29::copyFTBitmap\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\29 +6364:\28anonymous\20namespace\29::contains_scissor\28GrScissorState\20const&\2c\20GrScissorState\20const&\29 +6365:\28anonymous\20namespace\29::colrv1_start_glyph_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20unsigned\20short\2c\20FT_Color_Root_Transform_\2c\20skia_private::THashSet*\29 +6366:\28anonymous\20namespace\29::colrv1_start_glyph\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20unsigned\20short\2c\20FT_Color_Root_Transform_\2c\20skia_private::THashSet*\29 +6367:\28anonymous\20namespace\29::colrv1_draw_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\29 +6368:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29 +6369:\28anonymous\20namespace\29::can_use_draw_texture\28SkPaint\20const&\2c\20SkSamplingOptions\20const&\29 +6370:\28anonymous\20namespace\29::axis_aligned_quad_size\28GrQuad\20const&\29 +6371:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29 +6372:\28anonymous\20namespace\29::YUVPlanesKey::YUVPlanesKey\28unsigned\20int\29 +6373:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29 +6374:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29 +6375:\28anonymous\20namespace\29::TriangulatingPathOp::TriangulatingPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +6376:\28anonymous\20namespace\29::TriangulatingPathOp::Triangulate\28GrEagerVertexAllocator*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool*\29 +6377:\28anonymous\20namespace\29::TriangulatingPathOp::CreateKey\28skgpu::UniqueKey*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\29 +6378:\28anonymous\20namespace\29::TransformedMaskSubRun::glyphParams\28\29\20const +6379:\28anonymous\20namespace\29::TransformedMaskSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +6380:\28anonymous\20namespace\29::TransformedMaskSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +6381:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29 +6382:\28anonymous\20namespace\29::TextureOpImpl::propagateCoverageAAThroughoutChain\28\29 +6383:\28anonymous\20namespace\29::TextureOpImpl::numChainedQuads\28\29\20const +6384:\28anonymous\20namespace\29::TextureOpImpl::characterize\28\28anonymous\20namespace\29::TextureOpImpl::Desc*\29\20const +6385:\28anonymous\20namespace\29::TextureOpImpl::appendQuad\28DrawQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\29 +6386:\28anonymous\20namespace\29::TextureOpImpl::Make\28GrRecordingContext*\2c\20GrTextureSetEntry*\2c\20int\2c\20int\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20GrAAType\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +6387:\28anonymous\20namespace\29::TextureOpImpl::FillInVertices\28GrCaps\20const&\2c\20\28anonymous\20namespace\29::TextureOpImpl*\2c\20\28anonymous\20namespace\29::TextureOpImpl::Desc*\2c\20char*\29 +6388:\28anonymous\20namespace\29::TextureOpImpl::Desc::totalSizeInBytes\28\29\20const +6389:\28anonymous\20namespace\29::TextureOpImpl::Desc*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc>\28\29 +6390:\28anonymous\20namespace\29::TextureOpImpl::ClassID\28\29 +6391:\28anonymous\20namespace\29::SpotVerticesFactory::makeVertices\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint*\29\20const +6392:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::hb_script_for_unichar\28int\29 +6393:\28anonymous\20namespace\29::SkQuadCoeff::SkQuadCoeff\28SkPoint\20const*\29 +6394:\28anonymous\20namespace\29::SkMorphologyImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\29\20const +6395:\28anonymous\20namespace\29::SkMorphologyImageFilter::kernelOutputBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\29\20const +6396:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +6397:\28anonymous\20namespace\29::SkEmptyTypeface::onMakeClone\28SkFontArguments\20const&\29\20const +6398:\28anonymous\20namespace\29::SkCropImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +6399:\28anonymous\20namespace\29::SkConicCoeff::SkConicCoeff\28SkConic\20const&\29 +6400:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29 +6401:\28anonymous\20namespace\29::SkBlurImageFilter::mapSigma\28skif::Mapping\20const&\29\20const +6402:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29 +6403:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29 +6404:\28anonymous\20namespace\29::ShaperHarfBuzz::~ShaperHarfBuzz\28\29 +6405:\28anonymous\20namespace\29::ShadowedPath::keyBytes\28\29\20const +6406:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29 +6407:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29 +6408:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29 +6409:\28anonymous\20namespace\29::RectsBlurKey::RectsBlurKey\28float\2c\20SkBlurStyle\2c\20SkSpan\29 +6410:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::maxSigma\28\29\20const +6411:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::'lambda'\28float\29::operator\28\29\28float\29\20const +6412:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::'lambda'\28float\29::operator\28\29\28float\29\20const +6413:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29 +6414:\28anonymous\20namespace\29::RRectBlurKey::RRectBlurKey\28float\2c\20SkRRect\20const&\2c\20SkBlurStyle\29 +6415:\28anonymous\20namespace\29::PlanGauss::PlanGauss\28double\29 +6416:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29 +6417:\28anonymous\20namespace\29::PathOpSubmitter::~PathOpSubmitter\28\29 +6418:\28anonymous\20namespace\29::PathGeoBuilder::createMeshAndPutBackReserve\28\29 +6419:\28anonymous\20namespace\29::PathGeoBuilder::allocNewBuffers\28\29 +6420:\28anonymous\20namespace\29::PathGeoBuilder::addQuad\28SkPoint\20const*\2c\20float\2c\20float\29 +6421:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29 +6422:\28anonymous\20namespace\29::MipMapKey::MipMapKey\28SkBitmapCacheDesc\20const&\29 +6423:\28anonymous\20namespace\29::MipLevelHelper::allocAndInit\28SkArenaAlloc*\2c\20SkSamplingOptions\20const&\2c\20SkTileMode\2c\20SkTileMode\29 +6424:\28anonymous\20namespace\29::MipLevelHelper::MipLevelHelper\28\29 +6425:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29 +6426:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29 +6427:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20sk_sp\2c\20GrPrimitiveType\20const*\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +6428:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMesh\20const&\2c\20skia_private::TArray>\2c\20true>\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +6429:\28anonymous\20namespace\29::MeshOp::Mesh::indices\28\29\20const +6430:\28anonymous\20namespace\29::MeshOp::Mesh::Mesh\28SkMesh\20const&\29 +6431:\28anonymous\20namespace\29::MeshOp::ClassID\28\29 +6432:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29 +6433:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29 +6434:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineStruct\28char\20const*\29 +6435:\28anonymous\20namespace\29::Iter::next\28\29 +6436:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29 +6437:\28anonymous\20namespace\29::FillRectOpImpl::tessellate\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29\20const +6438:\28anonymous\20namespace\29::FillRectOpImpl::FillRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +6439:\28anonymous\20namespace\29::ExternalWebGLTexture::~ExternalWebGLTexture\28\29 +6440:\28anonymous\20namespace\29::EllipticalRRectEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +6441:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29 +6442:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29 +6443:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29 +6444:\28anonymous\20namespace\29::DrawAtlasOpImpl::DrawAtlasOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrAAType\2c\20int\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\29 +6445:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29 +6446:\28anonymous\20namespace\29::DefaultPathOp::programInfo\28\29 +6447:\28anonymous\20namespace\29::DefaultPathOp::primType\28\29\20const +6448:\28anonymous\20namespace\29::DefaultPathOp::PathData::PathData\28\28anonymous\20namespace\29::DefaultPathOp::PathData&&\29 +6449:\28anonymous\20namespace\29::DefaultPathOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +6450:\28anonymous\20namespace\29::DefaultPathOp::DefaultPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +6451:\28anonymous\20namespace\29::ClipGeometry\20\28anonymous\20namespace\29::get_clip_geometry\28skgpu::ganesh::ClipStack::SaveRecord\20const&\2c\20skgpu::ganesh::ClipStack::Draw\20const&\29 +6452:\28anonymous\20namespace\29::CircularRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20unsigned\20int\2c\20SkRRect\20const&\29 +6453:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29 +6454:\28anonymous\20namespace\29::CachedTessellationsRec::CachedTessellationsRec\28SkResourceCache::Key\20const&\2c\20sk_sp<\28anonymous\20namespace\29::CachedTessellations>\29 +6455:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29 +6456:\28anonymous\20namespace\29::CachedTessellations::CachedTessellations\28\29 +6457:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29 +6458:\28anonymous\20namespace\29::BuilderReceiver::MoveTo\28impeller::TPoint\20const&\2c\20bool\29 +6459:\28anonymous\20namespace\29::BitmapKey::BitmapKey\28SkBitmapCacheDesc\20const&\29 +6460:\28anonymous\20namespace\29::AmbientVerticesFactory::makeVertices\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint*\29\20const +6461:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29 +6462:\28anonymous\20namespace\29::AAHairlineOp::PathData::PathData\28\28anonymous\20namespace\29::AAHairlineOp::PathData&&\29 +6463:\28anonymous\20namespace\29::AAHairlineOp::AAHairlineOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIRect\2c\20float\2c\20GrUserStencilSettings\20const*\29 +6464:ToUpperCase +6465:TextureSourceImageGenerator::~TextureSourceImageGenerator\28\29 +6466:TT_Set_Named_Instance +6467:TT_Save_Context +6468:TT_Hint_Glyph +6469:TT_DotFix14 +6470:TT_Done_Context +6471:StringBuffer\20apply_format_string<1024>\28char\20const*\2c\20void*\2c\20char\20\28&\29\20\5b1024\5d\2c\20SkString*\29 +6472:SortContourList\28SkOpContourHead**\2c\20bool\2c\20bool\29 +6473:Skwasm::createSkMatrix\28float\20const*\29 +6474:Skwasm::TextStyle::~TextStyle\28\29 +6475:Skwasm::TextStyle::populatePaintIds\28std::__2::vector>&\29 +6476:Skwasm::TextStyle::TextStyle\28\29 +6477:Skwasm::Surface::_init\28\29 +6478:SkWriter32::writeString\28char\20const*\2c\20unsigned\20long\29 +6479:SkWriter32::writePoint3\28SkPoint3\20const&\29 +6480:SkWStream::writeScalarAsText\28float\29 +6481:SkWBuffer::padToAlign4\28\29 +6482:SkVertices::getSizes\28\29\20const +6483:SkVertices::Builder::init\28SkVertices::Desc\20const&\29 +6484:SkVertices::Builder::Builder\28SkVertices::VertexMode\2c\20int\2c\20int\2c\20unsigned\20int\29 +6485:SkUnicode_client::~SkUnicode_client\28\29 +6486:SkUnicode::convertUtf16ToUtf8\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +6487:SkUnicode::BidiRegion&\20std::__2::vector>::emplace_back\28unsigned\20long&\2c\20unsigned\20long&\2c\20unsigned\20char&\29 +6488:SkUTF::UTF16ToUTF8\28char*\2c\20int\2c\20unsigned\20short\20const*\2c\20unsigned\20long\29 +6489:SkUTF::ToUTF8\28int\2c\20char*\29 +6490:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29 +6491:SkTypeface_FreeTypeStream::SkTypeface_FreeTypeStream\28std::__2::unique_ptr>\2c\20SkString\2c\20SkFontStyle\20const&\2c\20bool\29 +6492:SkTypeface_FreeType::getFaceRec\28\29\20const +6493:SkTypeface_FreeType::SkTypeface_FreeType\28SkFontStyle\20const&\2c\20bool\29 +6494:SkTypeface_FreeType::GetUnitsPerEm\28FT_FaceRec_*\29 +6495:SkTypeface_Custom::~SkTypeface_Custom\28\29 +6496:SkTypeface_Custom::onGetFamilyName\28SkString*\29\20const +6497:SkTypeface::onGetFixedPitch\28\29\20const +6498:SkTypeface::MakeEmpty\28\29 +6499:SkTreatAsSprite\28SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkSamplingOptions\20const&\2c\20bool\29 +6500:SkTransformShader::update\28SkMatrix\20const&\29 +6501:SkTransformShader::SkTransformShader\28SkShaderBase\20const&\2c\20bool\29 +6502:SkTextBlobBuilder::updateDeferredBounds\28\29 +6503:SkTextBlobBuilder::reserve\28unsigned\20long\29 +6504:SkTextBlobBuilder::allocRunPos\28SkFont\20const&\2c\20int\2c\20SkRect\20const*\29 +6505:SkTextBlobBuilder::TightRunBounds\28SkTextBlob::RunRecord\20const&\29 +6506:SkTextBlob::getIntercepts\28float\20const*\2c\20float*\2c\20SkPaint\20const*\29\20const +6507:SkTaskGroup::add\28std::__2::function\29 +6508:SkTSpan::split\28SkTSpan*\2c\20SkArenaAlloc*\29 +6509:SkTSpan::splitAt\28SkTSpan*\2c\20double\2c\20SkArenaAlloc*\29 +6510:SkTSpan::linearIntersects\28SkTCurve\20const&\29\20const +6511:SkTSpan::hullCheck\28SkTSpan\20const*\2c\20bool*\2c\20bool*\29 +6512:SkTSpan::contains\28double\29\20const +6513:SkTSect::unlinkSpan\28SkTSpan*\29 +6514:SkTSect::removeAllBut\28SkTSpan\20const*\2c\20SkTSpan*\2c\20SkTSect*\29 +6515:SkTSect::recoverCollapsed\28\29 +6516:SkTSect::intersects\28SkTSpan*\2c\20SkTSect*\2c\20SkTSpan*\2c\20int*\29 +6517:SkTSect::coincidentHasT\28double\29 +6518:SkTSect::boundsMax\28\29 +6519:SkTSect::addSplitAt\28SkTSpan*\2c\20double\29 +6520:SkTSect::addForPerp\28SkTSpan*\2c\20double\29 +6521:SkTSect::EndsEqual\28SkTSect\20const*\2c\20SkTSect\20const*\2c\20SkIntersections*\29 +6522:SkTMultiMap::reset\28\29 +6523:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29 +6524:SkTMaskGamma<3\2c\203\2c\203>::SkTMaskGamma\28float\2c\20float\29 +6525:SkTMaskGamma<3\2c\203\2c\203>::CanonicalColor\28unsigned\20int\29 +6526:SkTInternalLList::remove\28skgpu::ganesh::SmallPathShapeData*\29 +6527:SkTInternalLList<\28anonymous\20namespace\29::CacheImpl::Value>::remove\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +6528:SkTInternalLList<\28anonymous\20namespace\29::CacheImpl::Value>::addToHead\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +6529:SkTInternalLList::remove\28TriangulationVertex*\29 +6530:SkTInternalLList::addToTail\28TriangulationVertex*\29 +6531:SkTInternalLList::Entry>::addToHead\28SkLRUCache::Entry*\29 +6532:SkTInternalLList>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry>::addToHead\28SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\29 +6533:SkTInternalLList>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry>::addToHead\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\29 +6534:SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::find\28SkImageFilterCacheKey\20const&\29\20const +6535:SkTDStorage::SkTDStorage\28SkTDStorage&&\29 +6536:SkTDPQueue<\28anonymous\20namespace\29::RunIteratorQueue::Entry\2c\20&\28anonymous\20namespace\29::RunIteratorQueue::CompareEntry\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\2c\20\28int*\20\28*\29\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\290>::insert\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\29 +6537:SkTDPQueue::remove\28GrGpuResource*\29 +6538:SkTDPQueue::percolateUpIfNecessary\28int\29 +6539:SkTDPQueue::percolateDownIfNecessary\28int\29 +6540:SkTDPQueue::insert\28GrGpuResource*\29 +6541:SkTDArray::append\28int\29 +6542:SkTDArray::append\28int\29 +6543:SkTDArray::push_back\28SkRecords::FillBounds::SaveBounds\20const&\29 +6544:SkTDArray::push_back\28SkOpPtT\20const*\20const&\29 +6545:SkTCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +6546:SkTConic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +6547:SkTConic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +6548:SkTConic::controlsInside\28\29\20const +6549:SkTConic::collapsed\28\29\20const +6550:SkTBlockList::pushItem\28\29 +6551:SkTBlockList::pop_back\28\29 +6552:SkTBlockList::push_back\28skgpu::ganesh::ClipStack::RawElement&&\29 +6553:SkTBlockList::pushItem\28\29 +6554:SkTBlockList::~SkTBlockList\28\29 +6555:SkTBlockList::push_back\28GrGLProgramDataManager::GLUniformInfo\20const&\29 +6556:SkTBlockList::item\28int\29 +6557:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29 +6558:SkSurfaces::RenderTarget\28GrRecordingContext*\2c\20skgpu::Budgeted\2c\20SkImageInfo\20const&\29 +6559:SkSurface_Raster::~SkSurface_Raster\28\29 +6560:SkSurface_Raster::SkSurface_Raster\28skcpu::RecorderImpl*\2c\20SkImageInfo\20const&\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29 +6561:SkSurface_Ganesh::~SkSurface_Ganesh\28\29 +6562:SkSurface_Ganesh::onDiscard\28\29 +6563:SkSurface_Base::replaceBackendTexture\28GrBackendTexture\20const&\2c\20GrSurfaceOrigin\2c\20SkSurface::ContentChangeMode\2c\20void\20\28*\29\28void*\29\2c\20void*\29 +6564:SkSurface_Base::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +6565:SkSurface_Base::onCapabilities\28\29 +6566:SkStrokeRec::GetInflationRadius\28SkPaint::Join\2c\20float\2c\20SkPaint::Cap\2c\20float\29 +6567:SkString_from_UTF16BE\28unsigned\20char\20const*\2c\20unsigned\20long\2c\20SkString&\29 +6568:SkString::equals\28char\20const*\2c\20unsigned\20long\29\20const +6569:SkString::equals\28char\20const*\29\20const +6570:SkString::appendVAList\28char\20const*\2c\20void*\29 +6571:SkString::appendUnichar\28int\29 +6572:SkString::appendHex\28unsigned\20int\2c\20int\29 +6573:SkStrikeSpec::SkStrikeSpec\28SkStrikeSpec\20const&\29 +6574:SkStrikeSpec::ShouldDrawAsPath\28SkPaint\20const&\2c\20SkFont\20const&\2c\20SkMatrix\20const&\29::$_0::operator\28\29\28int\2c\20int\29\20const +6575:SkStrikeSpec::ShouldDrawAsPath\28SkPaint\20const&\2c\20SkFont\20const&\2c\20SkMatrix\20const&\29 +6576:SkStrikeSpec::MakeTransformMask\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +6577:SkStrikeCache::~SkStrikeCache\28\29 +6578:SkStrike::~SkStrike\28\29 +6579:SkStrike::prepareForImage\28SkGlyph*\29 +6580:SkStrike::prepareForDrawable\28SkGlyph*\29 +6581:SkStrike::internalPrepare\28SkSpan\2c\20SkStrike::PathDetail\2c\20SkGlyph\20const**\29 +6582:SkStrSplit\28char\20const*\2c\20char\20const*\2c\20SkStrSplitMode\2c\20skia_private::TArray*\29 +6583:SkStrAppendU32\28char*\2c\20unsigned\20int\29 +6584:SkStrAppendS32\28char*\2c\20int\29 +6585:SkSpriteBlitter_Memcpy::~SkSpriteBlitter_Memcpy\28\29 +6586:SkSpecialImages::AsView\28GrRecordingContext*\2c\20SkSpecialImage\20const*\29 +6587:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29 +6588:SkSpecialImage_Raster::getROPixels\28SkBitmap*\29\20const +6589:SkSpecialImage_Raster::SkSpecialImage_Raster\28SkIRect\20const&\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\29 +6590:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29 +6591:SkSpecialImage::SkSpecialImage\28SkIRect\20const&\2c\20unsigned\20int\2c\20SkColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +6592:SkSize\20skif::Mapping::map\28SkSize\20const&\2c\20SkMatrix\20const&\29 +6593:SkShapers::unicode::BidiRunIterator\28sk_sp\2c\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20char\29 +6594:SkShapers::HB::ShapeDontWrapOrReorder\28sk_sp\2c\20sk_sp\29 +6595:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29 +6596:SkShaper::MakeStdLanguageRunIterator\28char\20const*\2c\20unsigned\20long\29 +6597:SkShaper::MakeFontMgrRunIterator\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20sk_sp\29 +6598:SkShadowTessellator::MakeAmbient\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20bool\29 +6599:SkShaders::MatrixRec::totalMatrix\28\29\20const +6600:SkShaders::MatrixRec::concat\28SkMatrix\20const&\29\20const +6601:SkShaders::Empty\28\29 +6602:SkShaders::Color\28unsigned\20int\29 +6603:SkShaders::Blend\28sk_sp\2c\20sk_sp\2c\20sk_sp\29 +6604:SkShaderUtils::VisitLineByLine\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::function\20const&\29 +6605:SkShaderUtils::GLSLPrettyPrint::undoNewlineAfter\28char\29 +6606:SkShaderUtils::GLSLPrettyPrint::parseUntil\28char\20const*\29 +6607:SkShaderUtils::GLSLPrettyPrint::parseUntilNewline\28\29 +6608:SkShaderBlurAlgorithm::renderBlur\28SkRuntimeEffectBuilder*\2c\20SkFilterMode\2c\20SkISize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +6609:SkShaderBlurAlgorithm::evalBlur1D\28float\2c\20int\2c\20SkV2\2c\20sk_sp\2c\20SkIRect\2c\20SkTileMode\2c\20SkIRect\29\20const +6610:SkShaderBlurAlgorithm::GetLinearBlur1DEffect\28int\29 +6611:SkShaderBlurAlgorithm::GetBlur2DEffect\28SkISize\20const&\29 +6612:SkShaderBlurAlgorithm::Compute2DBlurOffsets\28SkISize\2c\20std::__2::array&\29 +6613:SkShaderBlurAlgorithm::Compute2DBlurKernel\28SkSize\2c\20SkISize\2c\20std::__2::array&\29 +6614:SkShaderBlurAlgorithm::Compute2DBlurKernel\28SkSize\2c\20SkISize\2c\20SkSpan\29 +6615:SkShaderBlurAlgorithm::Compute1DBlurLinearKernel\28float\2c\20int\2c\20std::__2::array&\29 +6616:SkShader::makeWithColorFilter\28sk_sp\29\20const +6617:SkScan::PathRequiresTiling\28SkIRect\20const&\29 +6618:SkScan::HairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +6619:SkScan::FillXRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +6620:SkScan::FillRect\28SkRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +6621:SkScan::AntiHairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +6622:SkScan::AntiFrameRect\28SkRect\20const&\2c\20SkPoint\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +6623:SkScan::AntiFillRect\28SkRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +6624:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +6625:SkScan::AAAFillPath\28SkPathRaw\20const&\2c\20SkBlitter*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +6626:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29 +6627:SkScalerContext_FreeType::shouldSubpixelBitmap\28SkGlyph\20const&\2c\20SkMatrix\20const&\29 +6628:SkScalerContext_FreeType::getCBoxForLetter\28char\2c\20FT_BBox_*\29 +6629:SkScalerContext_FreeType::getBoundsOfCurrentOutlineGlyph\28FT_GlyphSlotRec_*\2c\20SkRect*\29 +6630:SkScalerContextRec::setLuminanceColor\28unsigned\20int\29 +6631:SkScalerContextFTUtils::drawCOLRv1Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +6632:SkScalerContextFTUtils::drawCOLRv0Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +6633:SkScalerContext::makeGlyph\28SkPackedGlyphID\2c\20SkArenaAlloc*\29 +6634:SkScalerContext::internalGetPath\28SkGlyph&\2c\20SkArenaAlloc*\2c\20std::__2::optional&&\29 +6635:SkScalerContext::SkScalerContext\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +6636:SkScalerContext::SaturateGlyphBounds\28SkGlyph*\2c\20SkRect&&\29 +6637:SkScalerContext::MakeRecAndEffects\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\2c\20SkScalerContextRec*\2c\20SkScalerContextEffects*\29 +6638:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +6639:SkScalerContext::GeneratedPath::GeneratedPath\28SkScalerContext::GeneratedPath&&\29 +6640:SkScalerContext::AutoDescriptorGivenRecAndEffects\28SkScalerContextRec\20const&\2c\20SkScalerContextEffects\20const&\2c\20SkAutoDescriptor*\29 +6641:SkSTArenaAlloc<4096ul>::SkSTArenaAlloc\28unsigned\20long\29 +6642:SkSTArenaAlloc<256ul>::SkSTArenaAlloc\28unsigned\20long\29 +6643:SkSLCombinedSamplerTypeForTextureType\28GrTextureType\29 +6644:SkSL::type_to_sksltype\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSLType*\29 +6645:SkSL::stoi\28std::__2::basic_string_view>\2c\20long\20long*\29 +6646:SkSL::splat_scalar\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +6647:SkSL::simplify_constant_equality\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +6648:SkSL::short_circuit_boolean\28SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +6649:SkSL::remove_break_statements\28std::__2::unique_ptr>&\29::RemoveBreaksWriter::visitStatementPtr\28std::__2::unique_ptr>&\29 +6650:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_2::operator\28\29\28int\29\20const +6651:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_1::operator\28\29\28int\29\20const +6652:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_0::operator\28\29\28int\29\20const +6653:SkSL::negate_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +6654:SkSL::make_reciprocal_expression\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29 +6655:SkSL::index_out_of_range\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20long\20long\2c\20SkSL::Expression\20const&\29 +6656:SkSL::hoist_vardecl_symbols_into_outer_scope\28SkSL::Context\20const&\2c\20SkSL::Block\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::SymbolTable*\29::SymbolHoister::visitStatement\28SkSL::Statement\20const&\29 +6657:SkSL::get_struct_definitions_from_module\28SkSL::Program&\2c\20SkSL::Module\20const&\2c\20std::__2::vector>*\29 +6658:SkSL::find_existing_declaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20SkSL::IntrinsicKind\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray>\2c\20true>&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration**\29::$_0::operator\28\29\28\29\20const +6659:SkSL::extract_matrix\28SkSL::Expression\20const*\2c\20float*\29 +6660:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +6661:SkSL::eliminate_no_op_boolean\28SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +6662:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_4::operator\28\29\28int\29\20const +6663:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_2::operator\28\29\28SkSL::Type\20const&\29\20const +6664:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_1::operator\28\29\28int\29\20const +6665:SkSL::argument_needs_scratch_variable\28SkSL::Expression\20const*\2c\20SkSL::Variable\20const*\2c\20SkSL::ProgramUsage\20const&\29 +6666:SkSL::argument_and_parameter_flags_match\28SkSL::Expression\20const&\2c\20SkSL::Variable\20const&\29 +6667:SkSL::apply_to_elements\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20double\20\28*\29\28double\29\29 +6668:SkSL::append_rtadjust_fixup_to_vertex_main\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::Block&\29::AppendRTAdjustFixupHelper::Adjust\28\29\20const +6669:SkSL::\28anonymous\20namespace\29::clone_with_ref_kind\28SkSL::Expression\20const&\2c\20SkSL::VariableRefKind\2c\20SkSL::Position\29 +6670:SkSL::\28anonymous\20namespace\29::check_valid_uniform_type\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Context\20const&\2c\20bool\29::$_0::operator\28\29\28\29\20const +6671:SkSL::\28anonymous\20namespace\29::caps_lookup_table\28\29 +6672:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +6673:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitStructFields\28SkSL::Type\20const&\29 +6674:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitStatement\28SkSL::Statement\20const&\29 +6675:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +6676:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitStatement\28SkSL::Statement\20const&\29 +6677:SkSL::\28anonymous\20namespace\29::IsAssignableVisitor::visitExpression\28SkSL::Expression&\2c\20SkSL::FieldAccess\20const*\29::'lambda'\28\29::operator\28\29\28\29\20const +6678:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +6679:SkSL::Variable::MakeScratchVariable\28SkSL::Context\20const&\2c\20SkSL::Mangler&\2c\20std::__2::basic_string_view>\2c\20SkSL::Type\20const*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>\29 +6680:SkSL::VarDeclaration::ErrorCheck\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Type\20const*\2c\20SkSL::VariableStorage\29 +6681:SkSL::TypeReference::description\28SkSL::OperatorPrecedence\29\20const +6682:SkSL::TypeReference::VerifyType\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Position\29 +6683:SkSL::TypeReference::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\29 +6684:SkSL::Type::checkIfUsableInArray\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +6685:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29\20const +6686:SkSL::Type::MakeStructType\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20bool\29 +6687:SkSL::Type::MakeLiteralType\28char\20const*\2c\20SkSL::Type\20const&\2c\20signed\20char\29 +6688:SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::addDeclaringElement\28SkSL::Symbol\20const*\29 +6689:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::visitStatementPtr\28std::__2::unique_ptr>&\29 +6690:SkSL::Transform::EliminateDeadGlobalVariables\28SkSL::Program&\29::$_0::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +6691:SkSL::Transform::EliminateDeadFunctions\28SkSL::Program&\29 +6692:SkSL::TernaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +6693:SkSL::SymbolTable::moveSymbolTo\28SkSL::SymbolTable*\2c\20SkSL::Symbol*\2c\20SkSL::Context\20const&\29 +6694:SkSL::SymbolTable::isBuiltinType\28std::__2::basic_string_view>\29\20const +6695:SkSL::SymbolTable::insertNewParent\28\29 +6696:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Symbol*\29 +6697:SkSL::Symbol::instantiate\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +6698:SkSL::SwitchStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +6699:SkSL::SwitchCase::Make\28SkSL::Position\2c\20long\20long\2c\20std::__2::unique_ptr>\29 +6700:SkSL::SwitchCase::MakeDefault\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +6701:SkSL::StructType::slotCount\28\29\20const +6702:SkSL::StructType::StructType\28SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20int\2c\20bool\2c\20bool\29 +6703:SkSL::String::vappendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20void*\29 +6704:SkSL::SingleArgumentConstructor::argumentSpan\28\29 +6705:SkSL::Setting::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20bool\20const\20SkSL::ShaderCaps::*\29 +6706:SkSL::RP::stack_usage\28SkSL::RP::Instruction\20const&\29 +6707:SkSL::RP::is_sliceable_swizzle\28SkSpan\29 +6708:SkSL::RP::is_immediate_op\28SkSL::RP::BuilderOp\29 +6709:SkSL::RP::UnownedLValueSlice::isWritable\28\29\20const +6710:SkSL::RP::UnownedLValueSlice::dynamicSlotRange\28\29 +6711:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29 +6712:SkSL::RP::ScratchLValue::~ScratchLValue\28\29 +6713:SkSL::RP::Program::appendStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkSL::RP::Callbacks*\2c\20SkSpan\29\20const +6714:SkSL::RP::Program::appendStackRewind\28skia_private::TArray*\29\20const +6715:SkSL::RP::Program::appendCopyImmutableUnmasked\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20std::byte*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +6716:SkSL::RP::Program::appendAdjacentNWayTernaryOp\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSL::RP::ProgramOp\2c\20std::byte*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +6717:SkSL::RP::Program::appendAdjacentNWayBinaryOp\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSL::RP::ProgramOp\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +6718:SkSL::RP::ImmutableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +6719:SkSL::RP::Generator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\29 +6720:SkSL::RP::Generator::writeFunction\28SkSL::IRNode\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSpan>\20const>\29 +6721:SkSL::RP::Generator::storeImmutableValueToSlots\28skia_private::TArray\20const&\2c\20SkSL::RP::SlotRange\29 +6722:SkSL::RP::Generator::returnComplexity\28SkSL::FunctionDefinition\20const*\29 +6723:SkSL::RP::Generator::pushVariableReferencePartial\28SkSL::VariableReference\20const&\2c\20SkSL::RP::SlotRange\29 +6724:SkSL::RP::Generator::pushLengthIntrinsic\28int\29 +6725:SkSL::RP::Generator::pushLValueOrExpression\28SkSL::RP::LValue*\2c\20SkSL::Expression\20const&\29 +6726:SkSL::RP::Generator::pushIntrinsic\28SkSL::RP::BuilderOp\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +6727:SkSL::RP::Generator::pushIntrinsic\28SkSL::IntrinsicKind\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +6728:SkSL::RP::Generator::pushImmutableData\28SkSL::Expression\20const&\29 +6729:SkSL::RP::Generator::getImmutableValueForExpression\28SkSL::Expression\20const&\2c\20skia_private::TArray*\29 +6730:SkSL::RP::Generator::getImmutableBitsForSlot\28SkSL::Expression\20const&\2c\20unsigned\20long\29 +6731:SkSL::RP::Generator::findPreexistingImmutableData\28skia_private::TArray\20const&\29 +6732:SkSL::RP::Generator::discardTraceScopeMask\28\29 +6733:SkSL::RP::DynamicIndexLValue::dynamicSlotRange\28\29 +6734:SkSL::RP::Builder::push_condition_mask\28\29 +6735:SkSL::RP::Builder::pop_slots_unmasked\28SkSL::RP::SlotRange\29 +6736:SkSL::RP::Builder::pop_condition_mask\28\29 +6737:SkSL::RP::Builder::pop_and_reenable_loop_mask\28\29 +6738:SkSL::RP::Builder::merge_loop_mask\28\29 +6739:SkSL::RP::Builder::merge_inv_condition_mask\28\29 +6740:SkSL::RP::Builder::mask_off_loop_mask\28\29 +6741:SkSL::RP::Builder::discard_stack\28int\2c\20int\29 +6742:SkSL::RP::Builder::copy_stack_to_slots_unmasked\28SkSL::RP::SlotRange\2c\20int\29 +6743:SkSL::RP::Builder::copy_stack_to_slots_unmasked\28SkSL::RP::SlotRange\29 +6744:SkSL::RP::Builder::copy_stack_to_slots\28SkSL::RP::SlotRange\29 +6745:SkSL::RP::Builder::branch_if_any_lanes_active\28int\29 +6746:SkSL::RP::AutoStack::pushClone\28SkSL::RP::SlotRange\2c\20int\29 +6747:SkSL::RP::AutoContinueMask::~AutoContinueMask\28\29 +6748:SkSL::RP::AutoContinueMask::exitLoopBody\28\29 +6749:SkSL::RP::AutoContinueMask::enterLoopBody\28\29 +6750:SkSL::RP::AutoContinueMask::enable\28\29 +6751:SkSL::ProgramUsage::remove\28SkSL::Expression\20const*\29 +6752:SkSL::ProgramUsage::get\28SkSL::FunctionDeclaration\20const&\29\20const +6753:SkSL::ProgramUsage::add\28SkSL::Statement\20const*\29 +6754:SkSL::ProgramUsage::add\28SkSL::Expression\20const*\29 +6755:SkSL::ProgramConfig::ProgramConfig\28\29 +6756:SkSL::Program::~Program\28\29 +6757:SkSL::PostfixExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\29 +6758:SkSL::PipelineStage::PipelineStageCodeGenerator::functionName\28SkSL::FunctionDeclaration\20const&\2c\20int\29 +6759:SkSL::PipelineStage::PipelineStageCodeGenerator::functionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +6760:SkSL::PipelineStage::PipelineStageCodeGenerator::forEachSpecialization\28SkSL::FunctionDeclaration\20const&\2c\20std::__2::function\20const&\29 +6761:SkSL::Parser::~Parser\28\29 +6762:SkSL::Parser::varDeclarations\28\29 +6763:SkSL::Parser::varDeclarationsPrefix\28SkSL::Parser::VarDeclarationsPrefix*\29 +6764:SkSL::Parser::varDeclarationsOrExpressionStatement\28\29 +6765:SkSL::Parser::switchCaseBody\28SkSL::ExpressionArray*\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>*\2c\20std::__2::unique_ptr>\29 +6766:SkSL::Parser::shiftExpression\28\29 +6767:SkSL::Parser::relationalExpression\28\29 +6768:SkSL::Parser::multiplicativeExpression\28\29 +6769:SkSL::Parser::logicalXorExpression\28\29 +6770:SkSL::Parser::logicalAndExpression\28\29 +6771:SkSL::Parser::localVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +6772:SkSL::Parser::intLiteral\28long\20long*\29 +6773:SkSL::Parser::identifier\28std::__2::basic_string_view>*\29 +6774:SkSL::Parser::globalVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +6775:SkSL::Parser::expressionStatement\28\29 +6776:SkSL::Parser::expectNewline\28\29 +6777:SkSL::Parser::equalityExpression\28\29 +6778:SkSL::Parser::directive\28bool\29 +6779:SkSL::Parser::declarations\28\29 +6780:SkSL::Parser::bitwiseXorExpression\28\29 +6781:SkSL::Parser::bitwiseOrExpression\28\29 +6782:SkSL::Parser::bitwiseAndExpression\28\29 +6783:SkSL::Parser::additiveExpression\28\29 +6784:SkSL::Parser::addGlobalVarDeclaration\28std::__2::unique_ptr>\29 +6785:SkSL::Parser::Parser\28SkSL::Compiler*\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::ProgramKind\2c\20std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20std::__2::default_delete\2c\20std::__2::allocator>>>\29 +6786:SkSL::MultiArgumentConstructor::argumentSpan\28\29 +6787:SkSL::ModuleLoader::loadVertexModule\28SkSL::Compiler*\29 +6788:SkSL::ModuleLoader::loadSharedModule\28SkSL::Compiler*\29 +6789:SkSL::ModuleLoader::loadPublicModule\28SkSL::Compiler*\29 +6790:SkSL::ModuleLoader::loadFragmentModule\28SkSL::Compiler*\29 +6791:SkSL::ModuleLoader::Get\28\29 +6792:SkSL::Module::~Module\28\29 +6793:SkSL::MatrixType::bitWidth\28\29\20const +6794:SkSL::MakeRasterPipelineProgram\28SkSL::Program\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSL::DebugTracePriv*\2c\20bool\29 +6795:SkSL::Layout::operator!=\28SkSL::Layout\20const&\29\20const +6796:SkSL::Layout::description\28\29\20const +6797:SkSL::Intrinsics::\28anonymous\20namespace\29::finalize_distance\28double\29 +6798:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_matrixCompMult\28double\2c\20double\2c\20double\29 +6799:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_length\28std::__2::array\20const&\29 +6800:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_add\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +6801:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29 +6802:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29 +6803:SkSL::Inliner::buildCandidateList\28std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\2c\20SkSL::InlineCandidateList*\29::$_1::operator\28\29\28SkSL::InlineCandidate\20const&\29\20const +6804:SkSL::Inliner::buildCandidateList\28std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\2c\20SkSL::InlineCandidateList*\29::$_0::operator\28\29\28SkSL::InlineCandidate\20const&\29\20const +6805:SkSL::Inliner::InlinedCall::~InlinedCall\28\29 +6806:SkSL::IndexExpression::~IndexExpression\28\29 +6807:SkSL::IfStatement::~IfStatement\28\29 +6808:SkSL::IRHelpers::Ref\28SkSL::Variable\20const*\29\20const +6809:SkSL::IRHelpers::Mul\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29\20const +6810:SkSL::IRHelpers::Assign\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29\20const +6811:SkSL::GLSLCodeGenerator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\2c\20bool\29 +6812:SkSL::GLSLCodeGenerator::writeProgramElement\28SkSL::ProgramElement\20const&\29 +6813:SkSL::GLSLCodeGenerator::writeMinAbsHack\28SkSL::Expression&\2c\20SkSL::Expression&\29 +6814:SkSL::GLSLCodeGenerator::generateCode\28\29 +6815:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::visitStatementPtr\28std::__2::unique_ptr>&\29 +6816:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::addLocalVariable\28SkSL::Variable\20const*\2c\20SkSL::Position\29 +6817:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29_7111 +6818:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29 +6819:SkSL::FunctionDeclaration::mangledName\28\29\20const +6820:SkSL::FunctionDeclaration::getMainInputColorParameter\28\29\20const +6821:SkSL::FunctionDeclaration::getMainDestColorParameter\28\29\20const +6822:SkSL::FunctionDeclaration::determineFinalTypes\28SkSL::ExpressionArray\20const&\2c\20skia_private::STArray<8\2c\20SkSL::Type\20const*\2c\20true>*\2c\20SkSL::Type\20const**\29\20const +6823:SkSL::FunctionDeclaration::FunctionDeclaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20SkSL::Type\20const*\2c\20SkSL::IntrinsicKind\29 +6824:SkSL::FunctionCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +6825:SkSL::FunctionCall::FunctionCall\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration\20const*\2c\20SkSL::ExpressionArray\2c\20SkSL::FunctionCall\20const*\29 +6826:SkSL::FunctionCall::FindBestFunctionForCall\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const*\2c\20SkSL::ExpressionArray\20const&\29 +6827:SkSL::FunctionCall::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +6828:SkSL::ForStatement::~ForStatement\28\29 +6829:SkSL::ForStatement::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +6830:SkSL::FindIntrinsicKind\28std::__2::basic_string_view>\29 +6831:SkSL::FieldAccess::~FieldAccess\28\29_6988 +6832:SkSL::FieldAccess::~FieldAccess\28\29 +6833:SkSL::FieldAccess::description\28SkSL::OperatorPrecedence\29\20const +6834:SkSL::FieldAccess::FieldAccess\28SkSL::Position\2c\20std::__2::unique_ptr>\2c\20int\2c\20SkSL::FieldAccessOwnerKind\29 +6835:SkSL::ExtendedVariable::~ExtendedVariable\28\29 +6836:SkSL::Expression::isFloatLiteral\28\29\20const +6837:SkSL::Expression::coercionCost\28SkSL::Type\20const&\29\20const +6838:SkSL::DoStatement::~DoStatement\28\29_6977 +6839:SkSL::DoStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +6840:SkSL::DiscardStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\29 +6841:SkSL::ContinueStatement::Make\28SkSL::Position\29 +6842:SkSL::ConstructorStruct::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +6843:SkSL::ConstructorScalarCast::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +6844:SkSL::ConstructorMatrixResize::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +6845:SkSL::Constructor::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +6846:SkSL::Compiler::resetErrors\28\29 +6847:SkSL::Compiler::initializeContext\28SkSL::Module\20const*\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\2c\20std::__2::basic_string_view>\2c\20SkSL::ModuleType\29 +6848:SkSL::Compiler::cleanupContext\28\29 +6849:SkSL::CoercionCost::operator<\28SkSL::CoercionCost\29\20const +6850:SkSL::ChildCall::~ChildCall\28\29_6916 +6851:SkSL::ChildCall::~ChildCall\28\29 +6852:SkSL::ChildCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Variable\20const&\2c\20SkSL::ExpressionArray\29 +6853:SkSL::ChildCall::ChildCall\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Variable\20const*\2c\20SkSL::ExpressionArray\29 +6854:SkSL::BreakStatement::Make\28SkSL::Position\29 +6855:SkSL::Block::Block\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +6856:SkSL::BinaryExpression::isAssignmentIntoVariable\28\29 +6857:SkSL::ArrayType::columns\28\29\20const +6858:SkSL::Analysis::\28anonymous\20namespace\29::LoopControlFlowVisitor::visitStatement\28SkSL::Statement\20const&\29 +6859:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29::IsDynamicallyUniformExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +6860:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29 +6861:SkSL::Analysis::IsConstantExpression\28SkSL::Expression\20const&\29 +6862:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29::IsCompileTimeConstantVisitor::visitExpression\28SkSL::Expression\20const&\29 +6863:SkSL::Analysis::IsAssignable\28SkSL::Expression&\2c\20SkSL::Analysis::AssignmentInfo*\2c\20SkSL::ErrorReporter*\29 +6864:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29::HasSideEffectsVisitor::visitExpression\28SkSL::Expression\20const&\29 +6865:SkSL::Analysis::GetLoopUnrollInfo\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\20const&\2c\20SkSL::Statement\20const*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Expression\20const*\2c\20SkSL::Statement\20const*\2c\20SkSL::ErrorReporter*\29 +6866:SkSL::Analysis::GetLoopControlFlowInfo\28SkSL::Statement\20const&\29 +6867:SkSL::Analysis::ContainsVariable\28SkSL::Expression\20const&\2c\20SkSL::Variable\20const&\29::ContainsVariableVisitor::visitExpression\28SkSL::Expression\20const&\29 +6868:SkSL::Analysis::ContainsRTAdjust\28SkSL::Expression\20const&\29::ContainsRTAdjustVisitor::visitExpression\28SkSL::Expression\20const&\29 +6869:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +6870:SkSL::AliasType::numberKind\28\29\20const +6871:SkSL::AliasType::isOrContainsBool\28\29\20const +6872:SkSL::AliasType::isOrContainsAtomic\28\29\20const +6873:SkSL::AliasType::isAllowedInES2\28\29\20const +6874:SkSBlockAllocator<80ul>::SkSBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\29 +6875:SkRuntimeShader::~SkRuntimeShader\28\29 +6876:SkRuntimeEffectPriv::VarAsChild\28SkSL::Variable\20const&\2c\20int\29 +6877:SkRuntimeEffect::~SkRuntimeEffect\28\29 +6878:SkRuntimeEffect::getRPProgram\28SkSL::DebugTracePriv*\29\20const +6879:SkRuntimeEffect::MakeForShader\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +6880:SkRuntimeEffect::ChildPtr::type\28\29\20const +6881:SkRuntimeEffect::ChildPtr::shader\28\29\20const +6882:SkRuntimeEffect::ChildPtr::colorFilter\28\29\20const +6883:SkRuntimeEffect::ChildPtr::blender\28\29\20const +6884:SkRgnBuilder::collapsWithPrev\28\29 +6885:SkResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +6886:SkResourceCache::setTotalByteLimit\28unsigned\20long\29 +6887:SkResourceCache::release\28SkResourceCache::Rec*\29 +6888:SkResourceCache::purgeAll\28\29 +6889:SkResourceCache::newCachedData\28unsigned\20long\29 +6890:SkResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +6891:SkResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +6892:SkResourceCache::dump\28\29\20const +6893:SkResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +6894:SkResourceCache::PostPurgeSharedID\28unsigned\20long\20long\29 +6895:SkResourceCache::NewCachedData\28unsigned\20long\29 +6896:SkResourceCache::GetDiscardableFactory\28\29 +6897:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29 +6898:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +6899:SkRegion::quickContains\28SkIRect\20const&\29\20const +6900:SkRegion::op\28SkIRect\20const&\2c\20SkRegion::Op\29 +6901:SkRegion::getRuns\28int*\2c\20int*\29\20const +6902:SkRegion::addBoundaryPath\28SkPathBuilder*\29\20const +6903:SkRegion::Spanerator::Spanerator\28SkRegion\20const&\2c\20int\2c\20int\2c\20int\29 +6904:SkRegion::RunHead::ensureWritable\28\29 +6905:SkRegion::RunHead::computeRunBounds\28SkIRect*\29 +6906:SkRegion::RunHead::Alloc\28int\2c\20int\2c\20int\29 +6907:SkRegion::Oper\28SkRegion\20const&\2c\20SkRegion\20const&\2c\20SkRegion::Op\2c\20SkRegion*\29 +6908:SkRefCntBase::internal_dispose\28\29\20const +6909:SkReduceOrder::Conic\28SkConic\20const&\2c\20SkPoint*\29 +6910:SkRectPriv::Subtract\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkIRect*\29 +6911:SkRectPriv::QuadContainsRect\28SkM44\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20float\29 +6912:SkRectPriv::QuadContainsRectMask\28SkM44\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20float\29 +6913:SkRectPriv::FitsInFixed\28SkRect\20const&\29 +6914:SkRectClipBlitter::requestRowsPreserved\28\29\20const +6915:SkRectClipBlitter::allocBlitMemory\28unsigned\20long\29 +6916:SkRect::set\28SkPoint\20const&\2c\20SkPoint\20const&\29 +6917:SkRect::roundOut\28SkRect*\29\20const +6918:SkRect::roundIn\28\29\20const +6919:SkRect::roundIn\28SkIRect*\29\20const +6920:SkRect::makeOffset\28float\2c\20float\29\20const +6921:SkRect::joinNonEmptyArg\28SkRect\20const&\29 +6922:SkRect::intersect\28SkRect\20const&\2c\20SkRect\20const&\29 +6923:SkRect::contains\28float\2c\20float\29\20const +6924:SkRect::contains\28SkIRect\20const&\29\20const +6925:SkRect*\20SkRecord::alloc\28unsigned\20long\29 +6926:SkRecords::FillBounds::popSaveBlock\28\29 +6927:SkRecords::FillBounds::popControl\28SkRect\20const&\29 +6928:SkRecords::FillBounds::AdjustForPaint\28SkPaint\20const*\2c\20SkRect*\29 +6929:SkRecordedDrawable::~SkRecordedDrawable\28\29 +6930:SkRecordOptimize\28SkRecord*\29 +6931:SkRecordFillBounds\28SkRect\20const&\2c\20SkRecord\20const&\2c\20SkRect*\2c\20SkBBoxHierarchy::Metadata*\29 +6932:SkRecordCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +6933:SkRecordCanvas::baseRecorder\28\29\20const +6934:SkRecord::~SkRecord\28\29 +6935:SkReadBuffer::skipByteArray\28unsigned\20long*\29 +6936:SkReadBuffer::readPad32\28void*\2c\20unsigned\20long\29 +6937:SkReadBuffer::SkReadBuffer\28void\20const*\2c\20unsigned\20long\29 +6938:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29 +6939:SkRasterPipelineContexts::UniformColorCtx*\20SkArenaAlloc::make\28\29 +6940:SkRasterPipelineContexts::TileCtx*\20SkArenaAlloc::make\28\29 +6941:SkRasterPipelineContexts::RewindCtx*\20SkArenaAlloc::make\28\29 +6942:SkRasterPipelineContexts::DecalTileCtx*\20SkArenaAlloc::make\28\29 +6943:SkRasterPipelineContexts::CopyIndirectCtx*\20SkArenaAlloc::make\28\29 +6944:SkRasterPipelineContexts::Conical2PtCtx*\20SkArenaAlloc::make\28\29 +6945:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29 +6946:SkRasterPipeline::buildPipeline\28SkRasterPipelineStage*\29\20const +6947:SkRasterPipeline::appendSetRGB\28SkArenaAlloc*\2c\20float\20const*\29 +6948:SkRasterPipeline::appendLoad\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +6949:SkRasterClipStack::Rec::Rec\28SkRasterClip\20const&\29 +6950:SkRasterClip::setEmpty\28\29 +6951:SkRasterClip::computeIsRect\28\29\20const +6952:SkRandom::nextULessThan\28unsigned\20int\29 +6953:SkRTree::~SkRTree\28\29 +6954:SkRTree::search\28SkRTree::Node*\2c\20SkRect\20const&\2c\20std::__2::vector>*\29\20const +6955:SkRTree::bulkLoad\28std::__2::vector>*\2c\20int\29 +6956:SkRTree::allocateNodeAtLevel\28unsigned\20short\29 +6957:SkRRectPriv::IsSimpleCircular\28SkRRect\20const&\29 +6958:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29::$_2::operator\28\29\28SkRRect::Corner\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29\20const +6959:SkRRectPriv::AllCornersCircular\28SkRRect\20const&\2c\20float\29 +6960:SkRRect::scaleRadii\28\29 +6961:SkRRect::isValid\28\29\20const +6962:SkRRect::computeType\28\29 +6963:SkRRect::AreRectAndRadiiValid\28SkRect\20const&\2c\20SkPoint\20const*\29 +6964:SkRGBA4f<\28SkAlphaType\292>\20skgpu::Swizzle::applyTo<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\29\20const +6965:SkRGBA4f<\28SkAlphaType\292>::unpremul\28\29\20const +6966:SkQuads::Roots\28double\2c\20double\2c\20double\29 +6967:SkQuadraticEdge::nextSegment\28\29 +6968:SkQuadConstruct::init\28float\2c\20float\29 +6969:SkPtrSet::add\28void*\29 +6970:SkPoint::Normalize\28SkPoint*\29 +6971:SkPixmap::readPixels\28SkPixmap\20const&\29\20const +6972:SkPixmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +6973:SkPixmap::erase\28unsigned\20int\29\20const +6974:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const +6975:SkPixelRef::callGenIDChangeListeners\28\29 +6976:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20sk_sp\29 +6977:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20SkBBHFactory*\29 +6978:SkPictureRecord::fillRestoreOffsetPlaceholdersForCurrentStackLevel\28unsigned\20int\29 +6979:SkPictureRecord::endRecording\28\29 +6980:SkPictureRecord::beginRecording\28\29 +6981:SkPictureRecord::addPath\28SkPath\20const&\29 +6982:SkPictureRecord::addPathToHeap\28SkPath\20const&\29 +6983:SkPictureRecord::SkPictureRecord\28SkIRect\20const&\2c\20unsigned\20int\29 +6984:SkPictureImageGenerator::~SkPictureImageGenerator\28\29 +6985:SkPictureData::~SkPictureData\28\29 +6986:SkPictureData::flatten\28SkWriteBuffer&\29\20const +6987:SkPictureData::SkPictureData\28SkPictureRecord\20const&\2c\20SkPictInfo\20const&\29 +6988:SkPicture::SkPicture\28\29 +6989:SkPathWriter::nativePath\28\29 +6990:SkPathWriter::moveTo\28\29 +6991:SkPathWriter::init\28\29 +6992:SkPathWriter::assemble\28\29 +6993:SkPathStroker::setQuadEndNormal\28SkPoint\20const*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\29 +6994:SkPathStroker::cubicQuadEnds\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +6995:SkPathRef::commonReset\28\29 +6996:SkPathRef::CreateEmpty\28\29 +6997:SkPathRawShapes::Oval::Oval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +6998:SkPathRaw::isRect\28\29\20const +6999:SkPathPriv::TransformDirAndStart\28SkMatrix\20const&\2c\20bool\2c\20SkPathDirection\2c\20unsigned\20int\29 +7000:SkPathPriv::Raw\28SkPathBuilder\20const&\29 +7001:SkPathPriv::PerspectiveClip\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath*\29 +7002:SkPathPriv::IsNestedFillRects\28SkPathRaw\20const&\2c\20SkRect*\2c\20SkPathDirection*\29 +7003:SkPathPriv::IsAxisAligned\28SkSpan\29 +7004:SkPathPriv::DeduceRRectFromContour\28SkRect\20const&\2c\20SkSpan\2c\20SkSpan\29 +7005:SkPathPriv::CreateDrawArcPath\28SkArc\20const&\2c\20bool\29 +7006:SkPathPriv::ComputeFirstDirection\28SkPathRaw\20const&\29 +7007:SkPathPriv::ComputeConvexity\28SkSpan\2c\20SkSpan\2c\20SkSpan\29 +7008:SkPathOpsBounds::Intersects\28SkPathOpsBounds\20const&\2c\20SkPathOpsBounds\20const&\29 +7009:SkPathMeasure::~SkPathMeasure\28\29 +7010:SkPathMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29 +7011:SkPathMeasure::SkPathMeasure\28SkPath\20const&\2c\20bool\2c\20float\29 +7012:SkPathEffectBase::PointData::~PointData\28\29 +7013:SkPathEdgeIter::next\28\29::'lambda'\28\29::operator\28\29\28\29\20const +7014:SkPathEdgeIter::SkPathEdgeIter\28SkPath\20const&\29 +7015:SkPathBuilder::setLastPt\28float\2c\20float\29 +7016:SkPathBuilder::rQuadTo\28float\2c\20float\2c\20float\2c\20float\29 +7017:SkPathBuilder::operator=\28SkPathBuilder\20const&\29 +7018:SkPathBuilder::computeFiniteBounds\28\29\20const +7019:SkPathBuilder::addRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +7020:SkPathBuilder::addOval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +7021:SkPathBuilder::addCircle\28float\2c\20float\2c\20float\2c\20SkPathDirection\29 +7022:SkPath::writeToMemory\28void*\29\20const +7023:SkPath::makeOffset\28float\2c\20float\29\20const +7024:SkPath::incReserve\28int\2c\20int\2c\20int\29 +7025:SkPath::getConvexity\28\29\20const +7026:SkPath::copyFields\28SkPath\20const&\29 +7027:SkPath::conservativelyContainsRect\28SkRect\20const&\29\20const +7028:SkPath::arcTo\28float\2c\20float\2c\20float\2c\20SkPath::ArcSize\2c\20SkPathDirection\2c\20float\2c\20float\29 +7029:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +7030:SkPath::addRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +7031:SkPath::addPath\28SkPath\20const&\2c\20SkPath::AddPathMode\29 +7032:SkPath::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +7033:SkPath::RRect\28SkRRect\20const&\2c\20SkPathDirection\29 +7034:SkPath::Iter::next\28SkPoint*\29 +7035:SkPaintToGrPaintWithBlend\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkBlender*\2c\20GrPaint*\29 +7036:SkPaintPriv::ShouldDither\28SkPaint\20const&\2c\20SkColorType\29 +7037:SkOpSpanBase::merge\28SkOpSpan*\29 +7038:SkOpSpanBase::initBase\28SkOpSegment*\2c\20SkOpSpan*\2c\20double\2c\20SkPoint\20const&\29 +7039:SkOpSpan::sortableTop\28SkOpContour*\29 +7040:SkOpSpan::setOppSum\28int\29 +7041:SkOpSpan::insertCoincidence\28SkOpSpan*\29 +7042:SkOpSpan::insertCoincidence\28SkOpSegment\20const*\2c\20bool\2c\20bool\29 +7043:SkOpSpan::init\28SkOpSegment*\2c\20SkOpSpan*\2c\20double\2c\20SkPoint\20const&\29 +7044:SkOpSpan::containsCoincidence\28SkOpSegment\20const*\29\20const +7045:SkOpSpan::computeWindSum\28\29 +7046:SkOpSegment::updateOppWindingReverse\28SkOpAngle\20const*\29\20const +7047:SkOpSegment::ptsDisjoint\28double\2c\20SkPoint\20const&\2c\20double\2c\20SkPoint\20const&\29\20const +7048:SkOpSegment::markWinding\28SkOpSpan*\2c\20int\29 +7049:SkOpSegment::isClose\28double\2c\20SkOpSegment\20const*\29\20const +7050:SkOpSegment::computeSum\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpAngle::IncludeType\29 +7051:SkOpSegment::collapsed\28double\2c\20double\29\20const +7052:SkOpSegment::addExpanded\28double\2c\20SkOpSpanBase\20const*\2c\20bool*\29 +7053:SkOpSegment::activeWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\29 +7054:SkOpSegment::activeOp\28int\2c\20int\2c\20SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkPathOp\2c\20int*\2c\20int*\29 +7055:SkOpSegment::activeAngle\28SkOpSpanBase*\2c\20SkOpSpanBase**\2c\20SkOpSpanBase**\2c\20bool*\29 +7056:SkOpSegment::activeAngleInner\28SkOpSpanBase*\2c\20SkOpSpanBase**\2c\20SkOpSpanBase**\2c\20bool*\29 +7057:SkOpPtT::ptAlreadySeen\28SkOpPtT\20const*\29\20const +7058:SkOpEdgeBuilder::~SkOpEdgeBuilder\28\29 +7059:SkOpEdgeBuilder::preFetch\28\29 +7060:SkOpEdgeBuilder::finish\28\29 +7061:SkOpEdgeBuilder::SkOpEdgeBuilder\28SkPath\20const&\2c\20SkOpContourHead*\2c\20SkOpGlobalState*\29 +7062:SkOpContourBuilder::addQuad\28SkPoint*\29 +7063:SkOpContourBuilder::addLine\28SkPoint\20const*\29 +7064:SkOpContourBuilder::addCubic\28SkPoint*\29 +7065:SkOpContourBuilder::addConic\28SkPoint*\2c\20float\29 +7066:SkOpCoincidence::restoreHead\28\29 +7067:SkOpCoincidence::releaseDeleted\28SkCoincidentSpans*\29 +7068:SkOpCoincidence::mark\28\29 +7069:SkOpCoincidence::markCollapsed\28SkCoincidentSpans*\2c\20SkOpPtT*\29 +7070:SkOpCoincidence::fixUp\28SkCoincidentSpans*\2c\20SkOpPtT*\2c\20SkOpPtT\20const*\29 +7071:SkOpCoincidence::contains\28SkCoincidentSpans\20const*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\29\20const +7072:SkOpCoincidence::checkOverlap\28SkCoincidentSpans*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20SkTDArray*\29\20const +7073:SkOpCoincidence::addOrOverlap\28SkOpSegment*\2c\20SkOpSegment*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20bool*\29 +7074:SkOpCoincidence::addMissing\28bool*\29 +7075:SkOpCoincidence::addEndMovedSpans\28SkOpSpan\20const*\2c\20SkOpSpanBase\20const*\29 +7076:SkOpAngle::tangentsDiverge\28SkOpAngle\20const*\2c\20double\29 +7077:SkOpAngle::setSpans\28\29 +7078:SkOpAngle::setSector\28\29 +7079:SkOpAngle::previous\28\29\20const +7080:SkOpAngle::midToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +7081:SkOpAngle::merge\28SkOpAngle*\29 +7082:SkOpAngle::loopContains\28SkOpAngle\20const*\29\20const +7083:SkOpAngle::lineOnOneSide\28SkOpAngle\20const*\2c\20bool\29 +7084:SkOpAngle::findSector\28SkPath::Verb\2c\20double\2c\20double\29\20const +7085:SkOpAngle::endToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +7086:SkOpAngle::checkCrossesZero\28\29\20const +7087:SkOpAngle::alignmentSameSide\28SkOpAngle\20const*\2c\20int*\29\20const +7088:SkOpAngle::after\28SkOpAngle*\29 +7089:SkOffsetSimplePolygon\28SkPoint\20const*\2c\20int\2c\20SkRect\20const&\2c\20float\2c\20SkTDArray*\2c\20SkTDArray*\29 +7090:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29 +7091:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29 +7092:SkNullBlitter*\20SkArenaAlloc::make\28\29 +7093:SkNotifyBitmapGenIDIsStale\28unsigned\20int\29 +7094:SkNoPixelsDevice::~SkNoPixelsDevice\28\29 +7095:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\29 +7096:SkNoDestructor::SkNoDestructor\2c\20sk_sp>\28sk_sp&&\2c\20sk_sp&&\29 +7097:SkNVRefCnt::unref\28\29\20const +7098:SkNVRefCnt::unref\28\29\20const +7099:SkNVRefCnt::unref\28\29\20const +7100:SkNVRefCnt::unref\28\29\20const +7101:SkNVRefCnt::unref\28\29\20const +7102:SkModifyPaintAndDstForDrawImageRect\28SkImage\20const*\2c\20SkSamplingOptions\20const&\2c\20SkRect\2c\20SkRect\2c\20bool\2c\20SkPaint*\29 +7103:SkMipmapAccessor::SkMipmapAccessor\28SkImage_Base\20const*\2c\20SkMatrix\20const&\2c\20SkMipmapMode\29::$_1::operator\28\29\28SkPixmap\20const&\29\20const +7104:SkMipmap::~SkMipmap\28\29 +7105:SkMessageBus::Get\28\29 +7106:SkMeshSpecification::Attribute::Attribute\28SkMeshSpecification::Attribute\20const&\29 +7107:SkMeshSpecification::Attribute::Attribute\28SkMeshSpecification::Attribute&&\29 +7108:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +7109:SkMeshPriv::CpuBuffer::size\28\29\20const +7110:SkMeshPriv::CpuBuffer::peek\28\29\20const +7111:SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +7112:SkMemoryStream::~SkMemoryStream\28\29 +7113:SkMemoryStream::SkMemoryStream\28sk_sp\29 +7114:SkMatrixPriv::MapPointsWithStride\28SkMatrix\20const&\2c\20SkPoint*\2c\20unsigned\20long\2c\20int\29 +7115:SkMatrixPriv::IsScaleTranslateAsM33\28SkM44\20const&\29 +7116:SkMatrix::updateTranslateMask\28\29 +7117:SkMatrix::setScale\28float\2c\20float\29 +7118:SkMatrix::postSkew\28float\2c\20float\29 +7119:SkMatrix::mapVectors\28SkSpan\2c\20SkSpan\29\20const +7120:SkMatrix::mapRectScaleTranslate\28SkRect*\2c\20SkRect\20const&\29\20const +7121:SkMatrix::mapPointToHomogeneous\28SkPoint\29\20const +7122:SkMatrix::mapHomogeneousPoints\28SkSpan\2c\20SkSpan\29\20const +7123:SkMatrix::isTranslate\28\29\20const +7124:SkMatrix::getMinScale\28\29\20const +7125:SkMatrix::computeTypeMask\28\29\20const +7126:SkMatrix::ScaleTranslate\28float\2c\20float\2c\20float\2c\20float\29 +7127:SkMatrix*\20SkRecord::alloc\28unsigned\20long\29 +7128:SkMaskFilterBase::filterRects\28SkSpan\2c\20SkMatrix\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20SkResourceCache*\29\20const +7129:SkMaskFilterBase::NinePatch::~NinePatch\28\29 +7130:SkMask*\20SkTLazy::init\28unsigned\20char\20const*&&\2c\20SkIRect\20const&\2c\20unsigned\20int\20const&\2c\20SkMask::Format\20const&\29 +7131:SkMask*\20SkTLazy::init\28SkMaskBuilder&\29 +7132:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29 +7133:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29 +7134:SkMakeBitmapShaderForPaint\28SkPaint\20const&\2c\20SkBitmap\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20SkCopyPixelsMode\29 +7135:SkM44::preScale\28float\2c\20float\29 +7136:SkM44::preConcat\28SkM44\20const&\29 +7137:SkM44::postTranslate\28float\2c\20float\2c\20float\29 +7138:SkM44::isFinite\28\29\20const +7139:SkM44::RectToRect\28SkRect\20const&\2c\20SkRect\20const&\29 +7140:SkLinearColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +7141:SkLineParameters::normalize\28\29 +7142:SkLineParameters::cubicEndPoints\28SkDCubic\20const&\29 +7143:SkLineClipper::ClipLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\2c\20bool\29 +7144:SkLatticeIter::~SkLatticeIter\28\29 +7145:SkLatticeIter::next\28SkIRect*\2c\20SkRect*\2c\20bool*\2c\20unsigned\20int*\29 +7146:SkLatticeIter::SkLatticeIter\28SkCanvas::Lattice\20const&\2c\20SkRect\20const&\29 +7147:SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::find\28skia::textlayout::ParagraphCacheKey\20const&\29 +7148:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::insert\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\29 +7149:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::find\28GrProgramDesc\20const&\29 +7150:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29::$_0::operator\28\29\28int\2c\20SkRuntimeEffect::Options\20const&\29\20const +7151:SkIsSimplePolygon\28SkPoint\20const*\2c\20int\29 +7152:SkIsConvexPolygon\28SkPoint\20const*\2c\20int\29 +7153:SkInvert3x3Matrix\28float\20const*\2c\20float*\29 +7154:SkIntersections::quadVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7155:SkIntersections::quadLine\28SkPoint\20const*\2c\20SkPoint\20const*\29 +7156:SkIntersections::quadHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7157:SkIntersections::mostOutside\28double\2c\20double\2c\20SkDPoint\20const&\29\20const +7158:SkIntersections::lineVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7159:SkIntersections::lineHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7160:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDQuad\20const&\29 +7161:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDConic\20const&\29 +7162:SkIntersections::intersect\28SkDConic\20const&\2c\20SkDQuad\20const&\29 +7163:SkIntersections::insertCoincident\28double\2c\20double\2c\20SkDPoint\20const&\29 +7164:SkIntersections::cubicVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7165:SkIntersections::cubicLine\28SkPoint\20const*\2c\20SkPoint\20const*\29 +7166:SkIntersections::cubicHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7167:SkIntersections::conicVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7168:SkIntersections::conicLine\28SkPoint\20const*\2c\20float\2c\20SkPoint\20const*\29 +7169:SkIntersections::conicHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +7170:SkImages::RasterFromPixmap\28SkPixmap\20const&\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +7171:SkImages::RasterFromData\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\29 +7172:SkImage_Raster::~SkImage_Raster\28\29 +7173:SkImage_Raster::onPeekBitmap\28\29\20const +7174:SkImage_Raster::SkImage_Raster\28SkBitmap\20const&\2c\20bool\29 +7175:SkImage_Picture::Make\28sk_sp\2c\20SkISize\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\2c\20SkImages::BitDepth\2c\20sk_sp\2c\20SkSurfaceProps\29 +7176:SkImage_Lazy::~SkImage_Lazy\28\29 +7177:SkImage_Lazy::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +7178:SkImage_GaneshBase::~SkImage_GaneshBase\28\29 +7179:SkImage_GaneshBase::SkImage_GaneshBase\28sk_sp\2c\20SkImageInfo\2c\20unsigned\20int\29 +7180:SkImage_Base::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +7181:SkImage_Base::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +7182:SkImageShader::~SkImageShader\28\29 +7183:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_3::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +7184:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_1::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +7185:SkImageInfoValidConversion\28SkImageInfo\20const&\2c\20SkImageInfo\20const&\29 +7186:SkImageGenerator::SkImageGenerator\28SkImageInfo\20const&\2c\20unsigned\20int\29 +7187:SkImageFilters::Crop\28SkRect\20const&\2c\20sk_sp\29 +7188:SkImageFilters::Blur\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +7189:SkImageFilter_Base::getInputBounds\28skif::Mapping\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\29\20const +7190:SkImageFilterCache::Get\28SkImageFilterCache::CreateIfNecessary\29 +7191:SkImageFilterCache::Create\28unsigned\20long\29 +7192:SkImage::~SkImage\28\29 +7193:SkImage::peekPixels\28SkPixmap*\29\20const +7194:SkImage::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\29\20const +7195:SkImage::makeRasterImage\28GrDirectContext*\2c\20SkImage::CachingHint\29\20const +7196:SkIRect::offset\28SkIPoint\20const&\29 +7197:SkIRect::containsNoEmptyCheck\28SkIRect\20const&\29\20const +7198:SkGradientShader::MakeTwoPointConical\28SkPoint\20const&\2c\20float\2c\20SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +7199:SkGradientShader::MakeLinear\28SkPoint\20const*\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +7200:SkGradientBaseShader::~SkGradientBaseShader\28\29 +7201:SkGradientBaseShader::getPos\28int\29\20const +7202:SkGradientBaseShader::AppendGradientFillStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const*\2c\20float\20const*\2c\20int\29 +7203:SkGlyph::mask\28SkPoint\29\20const +7204:SkGlyph::ensureIntercepts\28float\20const*\2c\20float\2c\20float\2c\20float*\2c\20int*\2c\20SkArenaAlloc*\29::$_1::operator\28\29\28SkGlyph::Intercept\20const*\2c\20float*\2c\20int*\29\20const +7205:SkGenerateDistanceFieldFromA8Image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20unsigned\20long\29 +7206:SkGaussFilter::SkGaussFilter\28double\29 +7207:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29 +7208:SkFontStyleSet::CreateEmpty\28\29 +7209:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29 +7210:SkFontScanner_FreeType::scanInstance\28SkStreamAsset*\2c\20int\2c\20int\2c\20SkString*\2c\20SkFontStyle*\2c\20bool*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\2c\20skia_private::STArray<4\2c\20SkFontArguments::VariationPosition::Coordinate\2c\20true>*\29\20const +7211:SkFontScanner_FreeType::computeAxisValues\28skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>\20const&\2c\20SkFontArguments::VariationPosition\2c\20SkFontArguments::VariationPosition\2c\20int*\2c\20SkString\20const&\2c\20SkFontStyle*\29 +7212:SkFontScanner_FreeType::SkFontScanner_FreeType\28\29 +7213:SkFontPriv::MakeTextMatrix\28float\2c\20float\2c\20float\29 +7214:SkFontPriv::GetFontBounds\28SkFont\20const&\29 +7215:SkFontMgr_Custom::~SkFontMgr_Custom\28\29 +7216:SkFontMgr_Custom::onMakeFromStreamArgs\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29\20const +7217:SkFontDescriptor::SkFontStyleWidthForWidthAxisValue\28float\29 +7218:SkFontData::~SkFontData\28\29 +7219:SkFontData::SkFontData\28std::__2::unique_ptr>\2c\20int\2c\20int\2c\20int\20const*\2c\20int\2c\20SkFontArguments::Palette::Override\20const*\2c\20int\29 +7220:SkFont::operator==\28SkFont\20const&\29\20const +7221:SkFont::getPaths\28SkSpan\2c\20void\20\28*\29\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29\2c\20void*\29\20const +7222:SkFloatInterpFunc\28float\2c\20float\20const*\2c\20float\20const*\2c\20int\29 +7223:SkFindCubicInflections\28SkPoint\20const*\2c\20float*\29 +7224:SkFindCubicExtrema\28float\2c\20float\2c\20float\2c\20float\2c\20float*\29 +7225:SkFindBisector\28SkPoint\2c\20SkPoint\29 +7226:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda0'\28\29::operator\28\29\28\29\20const +7227:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda'\28\29::operator\28\29\28\29\20const +7228:SkFILEStream::~SkFILEStream\28\29 +7229:SkEvalQuadTangentAt\28SkPoint\20const*\2c\20float\29 +7230:SkEvalQuadAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +7231:SkEdgeClipper::next\28SkPoint*\29 +7232:SkEdgeClipper::clipQuad\28SkPoint\20const*\2c\20SkRect\20const&\29 +7233:SkEdgeClipper::clipLine\28SkPoint\2c\20SkPoint\2c\20SkRect\20const&\29 +7234:SkEdgeClipper::appendCubic\28SkPoint\20const*\2c\20bool\29 +7235:SkEdgeClipper::ClipPath\28SkPathRaw\20const&\2c\20SkRect\20const&\2c\20bool\2c\20void\20\28*\29\28SkEdgeClipper*\2c\20bool\2c\20void*\29\2c\20void*\29 +7236:SkEdgeBuilder::build\28SkPathRaw\20const&\2c\20SkIRect\20const*\2c\20bool\29::$_1::operator\28\29\28SkPoint\20const*\29\20const +7237:SkEdgeBuilder::buildEdges\28SkPathRaw\20const&\2c\20SkIRect\20const*\29 +7238:SkEdgeBuilder::SkEdgeBuilder\28\29 +7239:SkEdge::updateLine\28int\2c\20int\2c\20int\2c\20int\29 +7240:SkDynamicMemoryWStream::reset\28\29 +7241:SkDynamicMemoryWStream::Block::append\28void\20const*\2c\20unsigned\20long\29 +7242:SkDrawableList::newDrawableSnapshot\28\29 +7243:SkDrawShadowMetrics::GetSpotShadowTransform\28SkPoint3\20const&\2c\20float\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkRect\20const&\2c\20bool\2c\20SkMatrix*\2c\20float*\29 +7244:SkDevice::setOrigin\28SkM44\20const&\2c\20int\2c\20int\29 +7245:SkDevice::setDeviceCoordinateSystem\28SkM44\20const&\2c\20SkM44\20const&\2c\20SkM44\20const&\2c\20int\2c\20int\29 +7246:SkDevice::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +7247:SkDevice::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +7248:SkDevice::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +7249:SkDevice::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +7250:SkDescriptor::addEntry\28unsigned\20int\2c\20unsigned\20long\2c\20void\20const*\29 +7251:SkDeque::push_back\28\29 +7252:SkDeque::allocateBlock\28int\29 +7253:SkDeque::Iter::Iter\28SkDeque\20const&\2c\20SkDeque::Iter::IterStart\29 +7254:SkDashPath::InternalFilter\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkSpan\2c\20float\2c\20int\2c\20float\2c\20float\2c\20SkDashPath::StrokeRecApplication\29 +7255:SkDashPath::CalcDashParameters\28float\2c\20SkSpan\2c\20float*\2c\20unsigned\20long*\2c\20float*\2c\20float*\29 +7256:SkDashImpl::~SkDashImpl\28\29 +7257:SkDRect::setBounds\28SkDQuad\20const&\2c\20SkDQuad\20const&\2c\20double\2c\20double\29 +7258:SkDRect::setBounds\28SkDCubic\20const&\2c\20SkDCubic\20const&\2c\20double\2c\20double\29 +7259:SkDRect::setBounds\28SkDConic\20const&\2c\20SkDConic\20const&\2c\20double\2c\20double\29 +7260:SkDQuad::subDivide\28double\2c\20double\29\20const +7261:SkDQuad::otherPts\28int\2c\20SkDPoint\20const**\29\20const +7262:SkDQuad::isLinear\28int\2c\20int\29\20const +7263:SkDQuad::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +7264:SkDQuad::FindExtrema\28double\20const*\2c\20double*\29 +7265:SkDQuad::AddValidTs\28double*\2c\20int\2c\20double*\29 +7266:SkDPoint::roughlyEqual\28SkDPoint\20const&\29\20const +7267:SkDPoint::approximatelyDEqual\28SkDPoint\20const&\29\20const +7268:SkDCurveSweep::setCurveHullSweep\28SkPath::Verb\29 +7269:SkDCubic::monotonicInY\28\29\20const +7270:SkDCubic::monotonicInX\28\29\20const +7271:SkDCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +7272:SkDCubic::hullIntersects\28SkDPoint\20const*\2c\20int\2c\20bool*\29\20const +7273:SkDCubic::Coefficients\28double\20const*\2c\20double*\2c\20double*\2c\20double*\2c\20double*\29 +7274:SkDConic::subDivide\28double\2c\20double\29\20const +7275:SkDConic::FindExtrema\28double\20const*\2c\20float\2c\20double*\29 +7276:SkCubics::RootsReal\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +7277:SkCubicEdge::nextSegment\28\29 +7278:SkCubicClipper::ChopMonoAtY\28SkPoint\20const*\2c\20float\2c\20float*\29 +7279:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20SkArenaAlloc*\2c\20sk_sp\29 +7280:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkArenaAlloc*\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +7281:SkContourMeasureIter::SkContourMeasureIter\28SkPath\20const&\2c\20bool\2c\20float\29 +7282:SkContourMeasureIter::Impl::compute_line_seg\28SkPoint\2c\20SkPoint\2c\20float\2c\20unsigned\20int\29 +7283:SkContourMeasure::~SkContourMeasure\28\29 +7284:SkContourMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29\20const +7285:SkConicalGradient::getCenterX1\28\29\20const +7286:SkConic::evalTangentAt\28float\29\20const +7287:SkConic::chop\28SkConic*\29\20const +7288:SkConic::chopIntoQuadsPOW2\28SkPoint*\2c\20int\29\20const +7289:SkComposeColorFilter::~SkComposeColorFilter\28\29 +7290:SkColorToPMColor4f\28unsigned\20int\2c\20GrColorInfo\20const&\29 +7291:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29 +7292:SkColorSpaceSingletonFactory::Make\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +7293:SkColorSpaceLuminance::Fetch\28float\29 +7294:SkColorSpace::makeLinearGamma\28\29\20const +7295:SkColorSpace::gamutTransformTo\28SkColorSpace\20const*\2c\20skcms_Matrix3x3*\29\20const +7296:SkColorSpace::computeLazyDstFields\28\29\20const +7297:SkColorSpace::SkColorSpace\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +7298:SkColorFilters::Matrix\28float\20const*\2c\20SkColorFilters::Clamp\29 +7299:SkColorFilterShader::~SkColorFilterShader\28\29 +7300:SkColorFilterShader::Make\28sk_sp\2c\20float\2c\20sk_sp\29 +7301:SkColor4fXformer::~SkColor4fXformer\28\29 +7302:SkColor4fXformer::SkColor4fXformer\28SkGradientBaseShader\20const*\2c\20SkColorSpace*\2c\20bool\29 +7303:SkCoincidentSpans::contains\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\29\20const +7304:SkChopQuadAtMaxCurvature\28SkPoint\20const*\2c\20SkPoint*\29 +7305:SkChopQuadAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +7306:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\2c\20float\29 +7307:SkChopCubicAtInflections\28SkPoint\20const*\2c\20SkPoint*\29 +7308:SkChooseA8Blitter\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\29 +7309:SkCharToGlyphCache::reset\28\29 +7310:SkCharToGlyphCache::findGlyphIndex\28int\29\20const +7311:SkCanvasVirtualEnforcer::SkCanvasVirtualEnforcer\28SkIRect\20const&\29 +7312:SkCanvasPriv::WriteLattice\28void*\2c\20SkCanvas::Lattice\20const&\29 +7313:SkCanvasPriv::GetDstClipAndMatrixCounts\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20int*\2c\20int*\29 +7314:SkCanvas::setMatrix\28SkMatrix\20const&\29 +7315:SkCanvas::internalSaveLayer\28SkCanvas::SaveLayerRec\20const&\2c\20SkCanvas::SaveLayerStrategy\2c\20bool\29 +7316:SkCanvas::internalDrawPaint\28SkPaint\20const&\29 +7317:SkCanvas::experimental_DrawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +7318:SkCanvas::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +7319:SkCanvas::drawPicture\28sk_sp\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +7320:SkCanvas::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +7321:SkCanvas::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +7322:SkCanvas::drawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +7323:SkCanvas::didTranslate\28float\2c\20float\29 +7324:SkCanvas::clipPath\28SkPath\20const&\2c\20bool\29 +7325:SkCanvas::clipIRect\28SkIRect\20const&\2c\20SkClipOp\29 +7326:SkCachedData::setData\28void*\29 +7327:SkCachedData::internalUnref\28bool\29\20const +7328:SkCachedData::internalRef\28bool\29\20const +7329:SkCachedData::SkCachedData\28void*\2c\20unsigned\20long\29 +7330:SkCachedData::SkCachedData\28unsigned\20long\2c\20SkDiscardableMemory*\29 +7331:SkCTMShader::isOpaque\28\29\20const +7332:SkBulkGlyphMetricsAndPaths::glyphs\28SkSpan\29 +7333:SkBreakIterator_client::~SkBreakIterator_client\28\29 +7334:SkBlurMaskFilterImpl::filterRectMask\28SkMaskBuilder*\2c\20SkRect\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\2c\20SkMaskBuilder::CreateMode\29\20const +7335:SkBlurMask::ComputeBlurredScanline\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20unsigned\20int\2c\20float\29 +7336:SkBlockAllocator::addBlock\28int\2c\20int\29 +7337:SkBlockAllocator::BlockIter::Item::advance\28SkBlockAllocator::Block*\29 +7338:SkBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +7339:SkBlitter::blitRectRegion\28SkIRect\20const&\2c\20SkRegion\20const&\29 +7340:SkBlitter::Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +7341:SkBlitter::ChooseSprite\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkArenaAlloc*\2c\20sk_sp\29 +7342:SkBlenderBase::affectsTransparentBlack\28\29\20const +7343:SkBlendShader::~SkBlendShader\28\29 +7344:SkBlendShader::SkBlendShader\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +7345:SkBitmapDevice::~SkBitmapDevice\28\29 +7346:SkBitmapDevice::onPeekPixels\28SkPixmap*\29 +7347:SkBitmapDevice::getRasterHandle\28\29\20const +7348:SkBitmapDevice::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +7349:SkBitmapDevice::SkBitmapDevice\28skcpu::RecorderImpl*\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\2c\20void*\29 +7350:SkBitmapDevice::BDDraw::~BDDraw\28\29 +7351:SkBitmapCache::Rec::~Rec\28\29 +7352:SkBitmapCache::Rec::install\28SkBitmap*\29 +7353:SkBitmapCache::Rec::diagnostic_only_getDiscardable\28\29\20const +7354:SkBitmapCache::Find\28SkBitmapCacheDesc\20const&\2c\20SkBitmap*\29 +7355:SkBitmapCache::Alloc\28SkBitmapCacheDesc\20const&\2c\20SkImageInfo\20const&\2c\20SkPixmap*\29 +7356:SkBitmap::tryAllocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29 +7357:SkBitmap::readPixels\28SkPixmap\20const&\29\20const +7358:SkBitmap::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\29\20const +7359:SkBitmap::installPixels\28SkPixmap\20const&\29 +7360:SkBitmap::eraseColor\28unsigned\20int\29\20const +7361:SkBitmap::allocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29 +7362:SkBitmap::allocPixels\28SkImageInfo\20const&\29 +7363:SkBinaryWriteBuffer::writeFlattenable\28SkFlattenable\20const*\29 +7364:SkBinaryWriteBuffer::writeColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +7365:SkBigPicture::~SkBigPicture\28\29 +7366:SkBigPicture::cullRect\28\29\20const +7367:SkBigPicture::SnapshotArray::~SnapshotArray\28\29 +7368:SkBigPicture::SkBigPicture\28SkRect\20const&\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20sk_sp\2c\20unsigned\20long\29 +7369:SkBidiFactory::MakeIterator\28unsigned\20short\20const*\2c\20int\2c\20SkBidiIterator::Direction\29\20const +7370:SkBezierCubic::Subdivide\28double\20const*\2c\20double\2c\20double*\29 +7371:SkBasicEdgeBuilder::~SkBasicEdgeBuilder\28\29 +7372:SkBasicEdgeBuilder::recoverClip\28SkIRect\20const&\29\20const +7373:SkBaseShadowTessellator::releaseVertices\28\29 +7374:SkBaseShadowTessellator::handleQuad\28SkPoint\20const*\29 +7375:SkBaseShadowTessellator::handleQuad\28SkMatrix\20const&\2c\20SkPoint*\29 +7376:SkBaseShadowTessellator::handleLine\28SkMatrix\20const&\2c\20SkPoint*\29 +7377:SkBaseShadowTessellator::handleCubic\28SkMatrix\20const&\2c\20SkPoint*\29 +7378:SkBaseShadowTessellator::handleConic\28SkMatrix\20const&\2c\20SkPoint*\2c\20float\29 +7379:SkBaseShadowTessellator::finishPathPolygon\28\29 +7380:SkBaseShadowTessellator::computeConvexShadow\28float\2c\20float\2c\20bool\29 +7381:SkBaseShadowTessellator::computeConcaveShadow\28float\2c\20float\29 +7382:SkBaseShadowTessellator::clipUmbraPoint\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint*\29 +7383:SkBaseShadowTessellator::checkConvexity\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +7384:SkBaseShadowTessellator::appendQuad\28unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +7385:SkBaseShadowTessellator::addInnerPoint\28SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20int*\29 +7386:SkBaseShadowTessellator::addEdge\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20bool\2c\20bool\29 +7387:SkBaseShadowTessellator::addArc\28SkPoint\20const&\2c\20float\2c\20bool\29 +7388:SkBaseShadowTessellator::accumulateCentroid\28SkPoint\20const&\2c\20SkPoint\20const&\29 +7389:SkAutoSMalloc<1024ul>::reset\28unsigned\20long\2c\20SkAutoMalloc::OnShrink\2c\20bool*\29 +7390:SkAutoPixmapStorage::reset\28SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +7391:SkAutoMalloc::SkAutoMalloc\28unsigned\20long\29 +7392:SkAutoDescriptor::reset\28unsigned\20long\29 +7393:SkAutoDescriptor::reset\28SkDescriptor\20const&\29 +7394:SkAutoCanvasMatrixPaint::~SkAutoCanvasMatrixPaint\28\29 +7395:SkAutoCanvasMatrixPaint::SkAutoCanvasMatrixPaint\28SkCanvas*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\2c\20SkRect\20const&\29 +7396:SkAutoBlitterChoose::choose\28skcpu::Draw\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const&\2c\20SkRect\20const&\2c\20SkDrawCoverage\29 +7397:SkArenaAlloc::ensureSpace\28unsigned\20int\2c\20unsigned\20int\29 +7398:SkAnalyticEdgeBuilder::combineVertical\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge*\29 +7399:SkAnalyticEdge::update\28int\29 +7400:SkAnalyticEdge::updateLine\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +7401:SkAnalyticEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\29 +7402:SkAlphaRuns::BreakAt\28short*\2c\20unsigned\20char*\2c\20int\29 +7403:SkAAClip::operator=\28SkAAClip\20const&\29 +7404:SkAAClip::op\28SkIRect\20const&\2c\20SkClipOp\29 +7405:SkAAClip::isRect\28\29\20const +7406:SkAAClip::RunHead::Iterate\28SkAAClip\20const&\29 +7407:SkAAClip::Builder::~Builder\28\29 +7408:SkAAClip::Builder::flushRow\28bool\29 +7409:SkAAClip::Builder::finish\28SkAAClip*\29 +7410:SkAAClip::Builder::Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +7411:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29 +7412:SkA8_Coverage_Blitter*\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29 +7413:SkA8_Blitter::~SkA8_Blitter\28\29 +7414:Shift +7415:SharedGenerator::Make\28std::__2::unique_ptr>\29 +7416:SetSuperRound +7417:RuntimeEffectRPCallbacks::applyColorSpaceXform\28SkColorSpaceXformSteps\20const&\2c\20void\20const*\29 +7418:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29_4994 +7419:RunBasedAdditiveBlitter::advanceRuns\28\29 +7420:RunBasedAdditiveBlitter::RunBasedAdditiveBlitter\28SkBlitter*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +7421:RgnOper::addSpan\28int\2c\20int\20const*\2c\20int\20const*\29 +7422:ReflexHash::hash\28TriangulationVertex*\29\20const +7423:ReadBase128 +7424:PorterDuffXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +7425:PathSegment::init\28\29 +7426:PS_Conv_Strtol +7427:PS_Conv_ASCIIHexDecode +7428:PDLCDXferProcessor::Make\28SkBlendMode\2c\20GrProcessorAnalysisColor\20const&\29 +7429:OffsetEdge::computeCrossingDistance\28OffsetEdge\20const*\29 +7430:OT::sbix::sanitize\28hb_sanitize_context_t*\29\20const +7431:OT::sbix::accelerator_t::reference_png\28hb_font_t*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20unsigned\20int*\29\20const +7432:OT::sbix::accelerator_t::has_data\28\29\20const +7433:OT::sbix::accelerator_t::get_png_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +7434:OT::post::sanitize\28hb_sanitize_context_t*\29\20const +7435:OT::maxp::sanitize\28hb_sanitize_context_t*\29\20const +7436:OT::kern::sanitize\28hb_sanitize_context_t*\29\20const +7437:OT::hmtxvmtx::accelerator_t::get_advance_with_var_unscaled\28unsigned\20int\2c\20hb_font_t*\2c\20float*\29\20const +7438:OT::head::sanitize\28hb_sanitize_context_t*\29\20const +7439:OT::hb_ot_layout_lookup_accelerator_t*\20OT::hb_ot_layout_lookup_accelerator_t::create\28OT::Layout::GSUB_impl::SubstLookup\20const&\29 +7440:OT::hb_ot_apply_context_t::skipping_iterator_t::may_skip\28hb_glyph_info_t\20const&\29\20const +7441:OT::hb_ot_apply_context_t::skipping_iterator_t::init\28OT::hb_ot_apply_context_t*\2c\20bool\29 +7442:OT::hb_ot_apply_context_t::matcher_t::may_skip\28OT::hb_ot_apply_context_t\20const*\2c\20hb_glyph_info_t\20const&\29\20const +7443:OT::hb_kern_machine_t::kern\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20bool\29\20const +7444:OT::hb_accelerate_subtables_context_t::return_t\20OT::Context::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +7445:OT::hb_accelerate_subtables_context_t::return_t\20OT::ChainContext::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +7446:OT::gvar_GVAR\2c\201735811442u>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +7447:OT::gvar_GVAR\2c\201735811442u>::get_offset\28unsigned\20int\2c\20unsigned\20int\29\20const +7448:OT::gvar_GVAR\2c\201735811442u>::accelerator_t::infer_delta\28hb_array_t\2c\20hb_array_t\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\20contour_point_t::*\29 +7449:OT::glyf_impl::composite_iter_tmpl::set_current\28OT::glyf_impl::CompositeGlyphRecord\20const*\29 +7450:OT::glyf_impl::composite_iter_tmpl::__next__\28\29 +7451:OT::glyf_impl::SimpleGlyph::read_points\28OT::IntType\20const*&\2c\20hb_array_t\2c\20OT::IntType\20const*\2c\20float\20contour_point_t::*\2c\20OT::glyf_impl::SimpleGlyph::simple_glyph_flag_t\2c\20OT::glyf_impl::SimpleGlyph::simple_glyph_flag_t\29 +7452:OT::glyf_impl::Glyph::get_composite_iterator\28\29\20const +7453:OT::glyf_impl::CompositeGlyphRecord::transform\28float\20const\20\28&\29\20\5b4\5d\2c\20hb_array_t\29 +7454:OT::glyf_impl::CompositeGlyphRecord::get_transformation\28float\20\28&\29\20\5b4\5d\2c\20contour_point_t&\29\20const +7455:OT::glyf_accelerator_t::get_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\29\20const +7456:OT::fvar::sanitize\28hb_sanitize_context_t*\29\20const +7457:OT::cmap::sanitize\28hb_sanitize_context_t*\29\20const +7458:OT::cmap::accelerator_t::get_nominal_glyph\28unsigned\20int\2c\20unsigned\20int*\2c\20hb_cache_t<21u\2c\2016u\2c\208u\2c\20true>*\29\20const +7459:OT::cmap::accelerator_t::_cached_get\28unsigned\20int\2c\20unsigned\20int*\2c\20hb_cache_t<21u\2c\2016u\2c\208u\2c\20true>*\29\20const +7460:OT::cff2::sanitize\28hb_sanitize_context_t*\29\20const +7461:OT::cff2::accelerator_templ_t>::_fini\28\29 +7462:OT::cff1::sanitize\28hb_sanitize_context_t*\29\20const +7463:OT::cff1::accelerator_templ_t>::glyph_to_sid\28unsigned\20int\2c\20CFF::code_pair_t*\29\20const +7464:OT::cff1::accelerator_templ_t>::_fini\28\29 +7465:OT::cff1::accelerator_t::gname_t::cmp\28void\20const*\2c\20void\20const*\29 +7466:OT::avar::sanitize\28hb_sanitize_context_t*\29\20const +7467:OT::_hea::sanitize\28hb_sanitize_context_t*\29\20const +7468:OT::VariationDevice::get_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +7469:OT::VarSizedBinSearchArrayOf>>::operator\5b\5d\28int\29\20const +7470:OT::VarData::get_row_size\28\29\20const +7471:OT::VVAR::sanitize\28hb_sanitize_context_t*\29\20const +7472:OT::VORG::sanitize\28hb_sanitize_context_t*\29\20const +7473:OT::UnsizedArrayOf\2c\2014u>>\20const&\20OT::operator+\2c\201735811442u>>\2c\20\28void*\290>\28hb_blob_ptr_t\2c\201735811442u>>\20const&\2c\20OT::OffsetTo\2c\2014u>>\2c\20OT::IntType\2c\20void\2c\20false>\20const&\29 +7474:OT::TupleVariationHeader::get_size\28unsigned\20int\29\20const +7475:OT::TupleVariationData>::tuple_iterator_t::is_valid\28\29\20const +7476:OT::TupleVariationData>::decompile_points\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\29 +7477:OT::SortedArrayOf\2c\20OT::IntType>::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\29 +7478:OT::SVG::sanitize\28hb_sanitize_context_t*\29\20const +7479:OT::STAT::sanitize\28hb_sanitize_context_t*\29\20const +7480:OT::RuleSet::would_apply\28OT::hb_would_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +7481:OT::RuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +7482:OT::ResourceMap::get_type_record\28unsigned\20int\29\20const +7483:OT::ResourceMap::get_type_count\28\29\20const +7484:OT::RecordArrayOf::find_index\28unsigned\20int\2c\20unsigned\20int*\29\20const +7485:OT::PaintTranslate::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7486:OT::PaintSolid::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7487:OT::PaintSkewAroundCenter::sanitize\28hb_sanitize_context_t*\29\20const +7488:OT::PaintSkewAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7489:OT::PaintSkew::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7490:OT::PaintScaleUniformAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7491:OT::PaintScaleUniform::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7492:OT::PaintScaleAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7493:OT::PaintScale::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7494:OT::PaintRotateAroundCenter::sanitize\28hb_sanitize_context_t*\29\20const +7495:OT::PaintRotateAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7496:OT::PaintRotate::sanitize\28hb_sanitize_context_t*\29\20const +7497:OT::PaintRotate::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7498:OT::OpenTypeFontFile::get_face\28unsigned\20int\2c\20unsigned\20int*\29\20const +7499:OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize_shallow\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7500:OT::OffsetTo\2c\20void\2c\20true>::sanitize_shallow\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7501:OT::OS2::sanitize\28hb_sanitize_context_t*\29\20const +7502:OT::MVAR::sanitize\28hb_sanitize_context_t*\29\20const +7503:OT::Lookup::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +7504:OT::Lookup*\20hb_serialize_context_t::extend_size\28OT::Lookup*\2c\20unsigned\20long\2c\20bool\29 +7505:OT::Layout::propagate_attachment_offsets\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +7506:OT::Layout::GSUB_impl::LigatureSubstFormat1_2::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +7507:OT::Layout::GPOS_impl::reverse_cursive_minor_offset\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +7508:OT::Layout::GPOS_impl::ValueFormat::sanitize_value_devices\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\29\20const +7509:OT::Layout::GPOS_impl::PairPosFormat2_4::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +7510:OT::Layout::GPOS_impl::PairPosFormat1_3::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +7511:OT::Layout::GPOS_impl::Anchor::sanitize\28hb_sanitize_context_t*\29\20const +7512:OT::Layout::Common::RangeRecord\20const&\20OT::SortedArrayOf\2c\20OT::IntType>::bsearch\28unsigned\20int\20const&\2c\20OT::Layout::Common::RangeRecord\20const&\29\20const +7513:OT::Layout::Common::CoverageFormat2_4*\20hb_serialize_context_t::extend_min>\28OT::Layout::Common::CoverageFormat2_4*\29 +7514:OT::Layout::Common::Coverage::sanitize\28hb_sanitize_context_t*\29\20const +7515:OT::Layout::Common::Coverage::get_population\28\29\20const +7516:OT::LangSys::sanitize\28hb_sanitize_context_t*\2c\20OT::Record_sanitize_closure_t\20const*\29\20const +7517:OT::IndexSubtableRecord::get_image_data\28unsigned\20int\2c\20void\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +7518:OT::IndexArray::get_indexes\28unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +7519:OT::HintingDevice::get_delta\28unsigned\20int\2c\20int\29\20const +7520:OT::HVARVVAR::get_advance_delta_unscaled\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +7521:OT::GSUBGPOS::get_script_list\28\29\20const +7522:OT::GSUBGPOS::get_feature_variations\28\29\20const +7523:OT::GSUBGPOS::accelerator_t::get_accel\28unsigned\20int\29\20const +7524:OT::GDEF::sanitize\28hb_sanitize_context_t*\29\20const +7525:OT::GDEF::get_var_store\28\29\20const +7526:OT::GDEF::get_mark_glyph_sets\28\29\20const +7527:OT::GDEF::accelerator_t::get_glyph_props\28unsigned\20int\29\20const +7528:OT::Feature::sanitize\28hb_sanitize_context_t*\2c\20OT::Record_sanitize_closure_t\20const*\29\20const +7529:OT::ContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +7530:OT::Condition::sanitize\28hb_sanitize_context_t*\29\20const +7531:OT::ColorStop::get_color_stop\28OT::hb_paint_context_t*\2c\20hb_color_stop_t*\2c\20unsigned\20int\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +7532:OT::ColorLine::static_get_extend\28hb_color_line_t*\2c\20void*\2c\20void*\29 +7533:OT::CmapSubtableLongSegmented::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +7534:OT::CmapSubtableLongGroup\20const&\20OT::SortedArrayOf>::bsearch\28unsigned\20int\20const&\2c\20OT::CmapSubtableLongGroup\20const&\29\20const +7535:OT::CmapSubtableFormat4::accelerator_t::init\28OT::CmapSubtableFormat4\20const*\29 +7536:OT::CmapSubtableFormat4::accelerator_t::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +7537:OT::ClipBoxFormat1::get_clip_box\28OT::ClipBoxData&\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +7538:OT::ClassDef::get_class\28unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +7539:OT::ChainRuleSet::would_apply\28OT::hb_would_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +7540:OT::ChainRuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +7541:OT::ChainContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +7542:OT::CPAL::sanitize\28hb_sanitize_context_t*\29\20const +7543:OT::COLR::sanitize\28hb_sanitize_context_t*\29\20const +7544:OT::COLR::get_var_store_ptr\28\29\20const +7545:OT::COLR::get_delta_set_index_map_ptr\28\29\20const +7546:OT::COLR::get_base_glyph_paint\28unsigned\20int\29\20const +7547:OT::COLR::accelerator_t::has_data\28\29\20const +7548:OT::COLR::accelerator_t::acquire_scratch\28\29\20const +7549:OT::CBLC::sanitize\28hb_sanitize_context_t*\29\20const +7550:OT::CBLC::choose_strike\28hb_font_t*\29\20const +7551:OT::CBDT::sanitize\28hb_sanitize_context_t*\29\20const +7552:OT::CBDT::accelerator_t::get_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +7553:OT::BitmapSizeTable::find_table\28unsigned\20int\2c\20void\20const*\2c\20void\20const**\29\20const +7554:OT::ArrayOf\2c\20void\2c\20true>\2c\20OT::IntType>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +7555:OT::ArrayOf>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +7556:OT::ArrayOf\2c\20OT::IntType>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +7557:OT::ArrayOf>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +7558:OT::ArrayOf>>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +7559:OT::Affine2x3::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +7560:MaskValue*\20SkTLazy::init\28MaskValue\20const&\29 +7561:MakeRasterCopyPriv\28SkPixmap\20const&\2c\20unsigned\20int\29 +7562:Load_SBit_Png +7563:LineQuadraticIntersections::verticalIntersect\28double\2c\20double*\29 +7564:LineQuadraticIntersections::intersectRay\28double*\29 +7565:LineQuadraticIntersections::horizontalIntersect\28double\2c\20double*\29 +7566:LineCubicIntersections::intersectRay\28double*\29 +7567:LineCubicIntersections::VerticalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +7568:LineCubicIntersections::HorizontalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +7569:LineConicIntersections::verticalIntersect\28double\2c\20double*\29 +7570:LineConicIntersections::intersectRay\28double*\29 +7571:LineConicIntersections::horizontalIntersect\28double\2c\20double*\29 +7572:Ins_UNKNOWN +7573:Ins_SxVTL +7574:InitializeCompoundDictionaryCopy +7575:HandleCoincidence\28SkOpContourHead*\2c\20SkOpCoincidence*\29 +7576:GrWritePixelsTask::~GrWritePixelsTask\28\29 +7577:GrWindowRectsState::operator=\28GrWindowRectsState\20const&\29 +7578:GrWindowRectsState::operator==\28GrWindowRectsState\20const&\29\20const +7579:GrWindowRectangles::GrWindowRectangles\28GrWindowRectangles\20const&\29 +7580:GrWaitRenderTask::~GrWaitRenderTask\28\29 +7581:GrVertexBufferAllocPool::makeSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +7582:GrVertexBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +7583:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20SkPathFillType\2c\20skgpu::VertexWriter\29\20const +7584:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20GrEagerVertexAllocator*\29\20const +7585:GrTriangulator::mergeEdgesBelow\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +7586:GrTriangulator::mergeEdgesAbove\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +7587:GrTriangulator::makeSortedVertex\28SkPoint\20const&\2c\20unsigned\20char\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29\20const +7588:GrTriangulator::makeEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\29 +7589:GrTriangulator::computeBisector\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\29\20const +7590:GrTriangulator::appendQuadraticToContour\28SkPoint\20const*\2c\20float\2c\20GrTriangulator::VertexList*\29\20const +7591:GrTriangulator::allocateMonotonePoly\28GrTriangulator::Edge*\2c\20GrTriangulator::Side\2c\20int\29 +7592:GrTriangulator::Edge::recompute\28\29 +7593:GrTriangulator::Edge::intersect\28GrTriangulator::Edge\20const&\2c\20SkPoint*\2c\20unsigned\20char*\29\20const +7594:GrTriangulator::CountPoints\28GrTriangulator::Poly*\2c\20SkPathFillType\29 +7595:GrTriangulator::BreadcrumbTriangleList::concat\28GrTriangulator::BreadcrumbTriangleList&&\29 +7596:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29 +7597:GrThreadSafeCache::makeNewEntryMRU\28GrThreadSafeCache::Entry*\29 +7598:GrThreadSafeCache::makeExistingEntryMRU\28GrThreadSafeCache::Entry*\29 +7599:GrThreadSafeCache::findVertsWithData\28skgpu::UniqueKey\20const&\29 +7600:GrThreadSafeCache::addVertsWithData\28skgpu::UniqueKey\20const&\2c\20sk_sp\2c\20bool\20\28*\29\28SkData*\2c\20SkData*\29\29 +7601:GrThreadSafeCache::Trampoline::~Trampoline\28\29 +7602:GrThreadSafeCache::Entry::set\28skgpu::UniqueKey\20const&\2c\20sk_sp\29 +7603:GrThreadSafeCache::Entry::makeEmpty\28\29 +7604:GrThreadSafeCache::CreateLazyView\28GrDirectContext*\2c\20GrColorType\2c\20SkISize\2c\20GrSurfaceOrigin\2c\20SkBackingFit\29 +7605:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29 +7606:GrTextureRenderTargetProxy::initSurfaceFlags\28GrCaps\20const&\29 +7607:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29 +7608:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28GrCaps\20const&\2c\20std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\2c\20std::__2::basic_string_view>\29 +7609:GrTextureProxy::~GrTextureProxy\28\29_10475 +7610:GrTextureProxy::~GrTextureProxy\28\29_10474 +7611:GrTextureProxy::setUniqueKey\28GrProxyProvider*\2c\20skgpu::UniqueKey\20const&\29 +7612:GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +7613:GrTextureProxy::instantiate\28GrResourceProvider*\29 +7614:GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +7615:GrTextureProxy::callbackDesc\28\29\20const +7616:GrTextureProxy::ProxiesAreCompatibleAsDynamicState\28GrSurfaceProxy\20const*\2c\20GrSurfaceProxy\20const*\29 +7617:GrTextureProxy::GrTextureProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29 +7618:GrTextureEffect::~GrTextureEffect\28\29 +7619:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::$_1::operator\28\29\28int\2c\20GrSamplerState::WrapMode\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20float\29\20const +7620:GrTextureEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29::$_0::operator\28\29\28float*\2c\20GrResourceHandle\29\20const +7621:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_2::operator\28\29\28GrTextureEffect::ShaderMode\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +7622:GrTexture::onGpuMemorySize\28\29\20const +7623:GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +7624:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29 +7625:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29 +7626:GrSurfaceProxyView::operator=\28GrSurfaceProxyView\20const&\29 +7627:GrSurfaceProxyView::operator==\28GrSurfaceProxyView\20const&\29\20const +7628:GrSurfaceProxyPriv::exactify\28\29 +7629:GrSurfaceProxyPriv::assign\28sk_sp\29 +7630:GrSurfaceProxy::GrSurfaceProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +7631:GrSurfaceProxy::GrSurfaceProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +7632:GrSurface::setRelease\28sk_sp\29 +7633:GrSurface::onRelease\28\29 +7634:GrStyledShape::setInheritedKey\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +7635:GrStyledShape::asRRect\28SkRRect*\2c\20bool*\29\20const +7636:GrStyledShape::asLine\28SkPoint*\2c\20bool*\29\20const +7637:GrStyledShape::GrStyledShape\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20bool\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +7638:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20SkPaint\20const&\2c\20GrStyledShape::DoSimplify\29 +7639:GrStyle::resetToInitStyle\28SkStrokeRec::InitStyle\29 +7640:GrStyle::applyToPath\28SkPath*\2c\20SkStrokeRec::InitStyle*\2c\20SkPath\20const&\2c\20float\29\20const +7641:GrStyle::applyPathEffect\28SkPath*\2c\20SkStrokeRec*\2c\20SkPath\20const&\29\20const +7642:GrStyle::MatrixToScaleFactor\28SkMatrix\20const&\29 +7643:GrStyle::DashInfo::operator=\28GrStyle::DashInfo\20const&\29 +7644:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29 +7645:GrStrokeTessellationShader::Impl::~Impl\28\29 +7646:GrStagingBufferManager::detachBuffers\28\29 +7647:GrSkSLFP::~GrSkSLFP\28\29 +7648:GrSkSLFP::Impl::~Impl\28\29 +7649:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineStruct\28char\20const*\29 +7650:GrSimpleMesh::~GrSimpleMesh\28\29 +7651:GrShape::simplify\28unsigned\20int\29 +7652:GrShape::setArc\28SkArc\20const&\29 +7653:GrShape::conservativeContains\28SkRect\20const&\29\20const +7654:GrShape::closed\28\29\20const +7655:GrShape::GrShape\28SkRect\20const&\29 +7656:GrShape::GrShape\28SkRRect\20const&\29 +7657:GrShape::GrShape\28SkPath\20const&\29 +7658:GrShaderVar::GrShaderVar\28SkString\2c\20SkSLType\2c\20GrShaderVar::TypeModifier\2c\20int\2c\20SkString\2c\20SkString\29 +7659:GrScissorState::operator==\28GrScissorState\20const&\29\20const +7660:GrScissorState::intersect\28SkIRect\20const&\29 +7661:GrSWMaskHelper::toTextureView\28GrRecordingContext*\2c\20SkBackingFit\29 +7662:GrSWMaskHelper::drawShape\28GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +7663:GrSWMaskHelper::drawShape\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +7664:GrResourceProvider::writePixels\28sk_sp\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\29\20const +7665:GrResourceProvider::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +7666:GrResourceProvider::prepareLevels\28GrBackendFormat\20const&\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\2c\20skia_private::AutoSTArray<14\2c\20GrMipLevel>*\2c\20skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>*\29\20const +7667:GrResourceProvider::getExactScratch\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +7668:GrResourceProvider::findAndRefScratchTexture\28skgpu::ScratchKey\20const&\2c\20std::__2::basic_string_view>\29 +7669:GrResourceProvider::findAndRefScratchTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +7670:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +7671:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20GrColorType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMipLevel\20const*\2c\20std::__2::basic_string_view>\29 +7672:GrResourceProvider::createBuffer\28void\20const*\2c\20unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +7673:GrResourceProvider::createApproxTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +7674:GrResourceCache::removeResource\28GrGpuResource*\29 +7675:GrResourceCache::removeFromNonpurgeableArray\28GrGpuResource*\29 +7676:GrResourceCache::releaseAll\28\29 +7677:GrResourceCache::refAndMakeResourceMRU\28GrGpuResource*\29 +7678:GrResourceCache::processFreedGpuResources\28\29 +7679:GrResourceCache::insertResource\28GrGpuResource*\29 +7680:GrResourceCache::findAndRefUniqueResource\28skgpu::UniqueKey\20const&\29 +7681:GrResourceCache::didChangeBudgetStatus\28GrGpuResource*\29 +7682:GrResourceCache::addToNonpurgeableArray\28GrGpuResource*\29 +7683:GrResourceAllocator::~GrResourceAllocator\28\29 +7684:GrResourceAllocator::planAssignment\28\29 +7685:GrResourceAllocator::expire\28unsigned\20int\29 +7686:GrResourceAllocator::Register*\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29 +7687:GrResourceAllocator::IntervalList::popHead\28\29 +7688:GrResourceAllocator::IntervalList::insertByIncreasingStart\28GrResourceAllocator::Interval*\29 +7689:GrRenderTask::makeSkippable\28\29 +7690:GrRenderTask::isUsed\28GrSurfaceProxy*\29\20const +7691:GrRenderTask::isInstantiated\28\29\20const +7692:GrRenderTargetProxy::~GrRenderTargetProxy\28\29_10322 +7693:GrRenderTargetProxy::~GrRenderTargetProxy\28\29_10320 +7694:GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +7695:GrRenderTargetProxy::isMSAADirty\28\29\20const +7696:GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +7697:GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +7698:GrRenderTargetProxy::callbackDesc\28\29\20const +7699:GrRenderTarget::GrRenderTarget\28GrGpu*\2c\20SkISize\20const&\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20sk_sp\29 +7700:GrRecordingContext::init\28\29 +7701:GrRecordingContext::destroyDrawingManager\28\29 +7702:GrRecordingContext::colorTypeSupportedAsSurface\28SkColorType\29\20const +7703:GrRecordingContext::abandoned\28\29 +7704:GrRecordingContext::abandonContext\28\29 +7705:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29 +7706:GrRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRRect\20const&\2c\20GrShaderCaps\20const&\29 +7707:GrQuadUtils::TessellationHelper::outset\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuad*\2c\20GrQuad*\29 +7708:GrQuadUtils::TessellationHelper::getOutsetRequest\28skvx::Vec<4\2c\20float>\20const&\29 +7709:GrQuadUtils::TessellationHelper::adjustVertices\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuadUtils::TessellationHelper::Vertices*\29 +7710:GrQuadUtils::TessellationHelper::adjustDegenerateVertices\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuadUtils::TessellationHelper::Vertices*\29 +7711:GrQuadUtils::TessellationHelper::Vertices::moveTo\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +7712:GrQuadUtils::ClipToW0\28DrawQuad*\2c\20DrawQuad*\29 +7713:GrQuadBuffer<\28anonymous\20namespace\29::TextureOpImpl::ColorSubsetAndAA>::append\28GrQuad\20const&\2c\20\28anonymous\20namespace\29::TextureOpImpl::ColorSubsetAndAA&&\2c\20GrQuad\20const*\29 +7714:GrQuadBuffer<\28anonymous\20namespace\29::TextureOpImpl::ColorSubsetAndAA>::GrQuadBuffer\28int\2c\20bool\29 +7715:GrQuad::point\28int\29\20const +7716:GrQuad::bounds\28\29\20const::'lambda0'\28float\20const*\29::operator\28\29\28float\20const*\29\20const +7717:GrQuad::bounds\28\29\20const::'lambda'\28float\20const*\29::operator\28\29\28float\20const*\29\20const +7718:GrProxyProvider::removeUniqueKeyFromProxy\28GrTextureProxy*\29 +7719:GrProxyProvider::processInvalidUniqueKeyImpl\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\2c\20GrProxyProvider::InvalidateGPUResource\2c\20GrProxyProvider::RemoveTableEntry\29 +7720:GrProxyProvider::createLazyProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20GrInternalSurfaceFlags\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +7721:GrProxyProvider::adoptUniqueKeyFromSurface\28GrTextureProxy*\2c\20GrSurface\20const*\29 +7722:GrProgramDesc::GrProgramDesc\28GrProgramDesc\20const&\29 +7723:GrProcessorSet::operator==\28GrProcessorSet\20const&\29\20const +7724:GrPorterDuffXPFactory::Get\28SkBlendMode\29 +7725:GrPixmap::GrPixmap\28SkPixmap\20const&\29 +7726:GrPipeline::peekDstTexture\28\29\20const +7727:GrPipeline::GrPipeline\28GrPipeline::InitArgs\20const&\2c\20sk_sp\2c\20GrAppliedHardClip\20const&\29 +7728:GrPersistentCacheUtils::ShaderMetadata::~ShaderMetadata\28\29 +7729:GrPersistentCacheUtils::GetType\28SkReadBuffer*\29 +7730:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29 +7731:GrPathUtils::QuadUVMatrix::set\28SkPoint\20const*\29 +7732:GrPathUtils::QuadUVMatrix::apply\28void*\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +7733:GrPathTessellationShader::MakeStencilOnlyPipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedHardClip\20const&\2c\20GrPipeline::InputFlags\29 +7734:GrPathTessellationShader::Impl::~Impl\28\29 +7735:GrOpsRenderPass::~GrOpsRenderPass\28\29 +7736:GrOpsRenderPass::resetActiveBuffers\28\29 +7737:GrOpsRenderPass::draw\28int\2c\20int\29 +7738:GrOpsRenderPass::drawIndexPattern\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +7739:GrOpFlushState::~GrOpFlushState\28\29_10103 +7740:GrOpFlushState::smallPathAtlasManager\28\29\20const +7741:GrOpFlushState::reset\28\29 +7742:GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +7743:GrOpFlushState::putBackIndices\28int\29 +7744:GrOpFlushState::executeDrawsAndUploadsForMeshDrawOp\28GrOp\20const*\2c\20SkRect\20const&\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +7745:GrOpFlushState::drawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +7746:GrOpFlushState::doUpload\28std::__2::function&\29>&\2c\20bool\29 +7747:GrOpFlushState::allocator\28\29 +7748:GrOpFlushState::addASAPUpload\28std::__2::function&\29>&&\29 +7749:GrOpFlushState::OpArgs::OpArgs\28GrOp*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7750:GrOp::setTransformedBounds\28SkRect\20const&\2c\20SkMatrix\20const&\2c\20GrOp::HasAABloat\2c\20GrOp::IsHairline\29 +7751:GrOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7752:GrOp::combineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +7753:GrNonAtomicRef::unref\28\29\20const +7754:GrNonAtomicRef::unref\28\29\20const +7755:GrNonAtomicRef::unref\28\29\20const +7756:GrNativeRect::operator!=\28GrNativeRect\20const&\29\20const +7757:GrMeshDrawTarget::allocPrimProcProxyPtrs\28int\29 +7758:GrMeshDrawOp::PatternHelper::init\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +7759:GrMemoryPool::allocate\28unsigned\20long\29 +7760:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29 +7761:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::changed\28\29 +7762:GrMakeCachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\29::$_0::operator\28\29\28GrTextureProxy*\29\20const +7763:GrIndexBufferAllocPool::makeSpace\28int\2c\20sk_sp*\2c\20int*\29 +7764:GrIndexBufferAllocPool::makeSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +7765:GrImageInfo::operator=\28GrImageInfo&&\29 +7766:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20int\2c\20int\29 +7767:GrImageContext::abandonContext\28\29 +7768:GrHashMapWithCache::find\28unsigned\20int\20const&\29\20const +7769:GrGradientBitmapCache::release\28GrGradientBitmapCache::Entry*\29\20const +7770:GrGpuResource::setLabel\28std::__2::basic_string_view>\29 +7771:GrGpuResource::makeBudgeted\28\29 +7772:GrGpuResource::GrGpuResource\28GrGpu*\2c\20std::__2::basic_string_view>\29 +7773:GrGpuResource::CacheAccess::abandon\28\29 +7774:GrGpuBuffer::ComputeScratchKeyForDynamicBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20skgpu::ScratchKey*\29 +7775:GrGpu::~GrGpu\28\29 +7776:GrGpu::submitToGpu\28\29 +7777:GrGpu::submitToGpu\28GrSubmitInfo\20const&\29 +7778:GrGpu::regenerateMipMapLevels\28GrTexture*\29 +7779:GrGpu::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +7780:GrGpu::createTextureCommon\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +7781:GrGpu::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +7782:GrGpu::callSubmittedProcs\28bool\29 +7783:GrGeometryProcessor::AttributeSet::addToKey\28skgpu::KeyBuilder*\29\20const +7784:GrGeometryProcessor::AttributeSet::Iter::skipUninitialized\28\29 +7785:GrGeometryProcessor::Attribute&\20skia_private::TArray::emplace_back\28char\20const\20\28&\29\20\5b26\5d\2c\20GrVertexAttribType&&\2c\20SkSLType&&\29 +7786:GrGLTextureParameters::invalidate\28\29 +7787:GrGLTextureParameters::SamplerOverriddenState::SamplerOverriddenState\28\29 +7788:GrGLTexture::~GrGLTexture\28\29_12925 +7789:GrGLTexture::~GrGLTexture\28\29_12924 +7790:GrGLTexture::MakeWrapped\28GrGLGpu*\2c\20GrMipmapStatus\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrWrapCacheable\2c\20GrIOType\2c\20std::__2::basic_string_view>\29 +7791:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20skgpu::Budgeted\2c\20GrGLTexture::Desc\20const&\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +7792:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +7793:GrGLSemaphore::~GrGLSemaphore\28\29 +7794:GrGLSLVaryingHandler::addAttribute\28GrShaderVar\20const&\29 +7795:GrGLSLVarying::vsOutVar\28\29\20const +7796:GrGLSLVarying::fsInVar\28\29\20const +7797:GrGLSLUniformHandler::liftUniformToVertexShader\28GrProcessor\20const&\2c\20SkString\29 +7798:GrGLSLShaderBuilder::nextStage\28\29 +7799:GrGLSLShaderBuilder::finalize\28unsigned\20int\29 +7800:GrGLSLShaderBuilder::emitFunction\28char\20const*\2c\20char\20const*\29 +7801:GrGLSLShaderBuilder::emitFunctionPrototype\28char\20const*\29 +7802:GrGLSLShaderBuilder::appendTextureLookupAndBlend\28char\20const*\2c\20SkBlendMode\2c\20GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +7803:GrGLSLShaderBuilder::appendDecls\28SkTBlockList\20const&\2c\20SkString*\29\20const +7804:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_1::operator\28\29\28char\20const*\2c\20GrResourceHandle\29\20const +7805:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_0::operator\28\29\28char\20const*\2c\20GrResourceHandle\2c\20skcms_TFType\29\20const +7806:GrGLSLShaderBuilder::GrGLSLShaderBuilder\28GrGLSLProgramBuilder*\29 +7807:GrGLSLProgramDataManager::setRuntimeEffectUniforms\28SkSpan\2c\20SkSpan\20const>\2c\20SkSpan\2c\20void\20const*\29\20const +7808:GrGLSLProgramBuilder::~GrGLSLProgramBuilder\28\29 +7809:GrGLSLFragmentShaderBuilder::onFinalize\28\29 +7810:GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +7811:GrGLSLColorSpaceXformHelper::isNoop\28\29\20const +7812:GrGLSLBlend::SetBlendModeUniformData\28GrGLSLProgramDataManager\20const&\2c\20GrResourceHandle\2c\20SkBlendMode\29 +7813:GrGLSLBlend::BlendExpression\28GrProcessor\20const*\2c\20GrGLSLUniformHandler*\2c\20GrResourceHandle*\2c\20char\20const*\2c\20char\20const*\2c\20SkBlendMode\29 +7814:GrGLRenderTarget::~GrGLRenderTarget\28\29_12895 +7815:GrGLRenderTarget::~GrGLRenderTarget\28\29_12894 +7816:GrGLRenderTarget::setFlags\28GrGLCaps\20const&\2c\20GrGLRenderTarget::IDs\20const&\29 +7817:GrGLRenderTarget::onGpuMemorySize\28\29\20const +7818:GrGLRenderTarget::bind\28bool\29 +7819:GrGLRenderTarget::backendFormat\28\29\20const +7820:GrGLRenderTarget::GrGLRenderTarget\28GrGLGpu*\2c\20SkISize\20const&\2c\20GrGLFormat\2c\20int\2c\20GrGLRenderTarget::IDs\20const&\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +7821:GrGLProgramDataManager::set4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +7822:GrGLProgramDataManager::set2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +7823:GrGLProgramBuilder::uniformHandler\28\29 +7824:GrGLProgramBuilder::compileAndAttachShaders\28SkSL::NativeShader\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkTDArray*\2c\20bool\2c\20skgpu::ShaderErrorHandler*\29 +7825:GrGLProgramBuilder::PrecompileProgram\28GrDirectContext*\2c\20GrGLPrecompiledProgram*\2c\20SkData\20const&\29::$_0::operator\28\29\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29\20const +7826:GrGLProgramBuilder::CreateProgram\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrGLPrecompiledProgram\20const*\29 +7827:GrGLProgram::~GrGLProgram\28\29 +7828:GrGLInterfaces::MakeWebGL\28\29 +7829:GrGLInterface::~GrGLInterface\28\29 +7830:GrGLGpu::~GrGLGpu\28\29 +7831:GrGLGpu::waitSemaphore\28GrSemaphore*\29 +7832:GrGLGpu::uploadTexData\28SkISize\2c\20unsigned\20int\2c\20SkIRect\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20long\2c\20GrMipLevel\20const*\2c\20int\29 +7833:GrGLGpu::uploadCompressedTexData\28SkTextureCompressionType\2c\20GrGLFormat\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20unsigned\20int\2c\20void\20const*\2c\20unsigned\20long\29 +7834:GrGLGpu::uploadColorToTex\28GrGLFormat\2c\20SkISize\2c\20unsigned\20int\2c\20std::__2::array\2c\20unsigned\20int\29 +7835:GrGLGpu::readOrTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20int\29 +7836:GrGLGpu::onFBOChanged\28\29 +7837:GrGLGpu::getTimerQueryResult\28unsigned\20int\29 +7838:GrGLGpu::getCompatibleStencilIndex\28GrGLFormat\29 +7839:GrGLGpu::flushWireframeState\28bool\29 +7840:GrGLGpu::flushScissorRect\28SkIRect\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +7841:GrGLGpu::flushProgram\28unsigned\20int\29 +7842:GrGLGpu::flushProgram\28sk_sp\29 +7843:GrGLGpu::flushFramebufferSRGB\28bool\29 +7844:GrGLGpu::flushConservativeRasterState\28bool\29 +7845:GrGLGpu::createRenderTargetObjects\28GrGLTexture::Desc\20const&\2c\20int\2c\20GrGLRenderTarget::IDs*\29 +7846:GrGLGpu::createCompressedTexture2D\28SkISize\2c\20SkTextureCompressionType\2c\20GrGLFormat\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrGLTextureParameters::SamplerOverriddenState*\29 +7847:GrGLGpu::bindVertexArray\28unsigned\20int\29 +7848:GrGLGpu::TextureUnitBindings::setBoundID\28unsigned\20int\2c\20GrGpuResource::UniqueID\29 +7849:GrGLGpu::TextureUnitBindings::invalidateAllTargets\28bool\29 +7850:GrGLGpu::TextureToCopyProgramIdx\28GrTexture*\29 +7851:GrGLGpu::ProgramCache::~ProgramCache\28\29 +7852:GrGLGpu::ProgramCache::findOrCreateProgramImpl\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrThreadSafePipelineBuilder::Stats::ProgramCacheResult*\29 +7853:GrGLGpu::HWVertexArrayState::invalidate\28\29 +7854:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29 +7855:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\29 +7856:GrGLFinishCallbacks::check\28\29 +7857:GrGLContext::~GrGLContext\28\29_12633 +7858:GrGLCaps::~GrGLCaps\28\29 +7859:GrGLCaps::getTexSubImageExternalFormatAndType\28GrGLFormat\2c\20GrColorType\2c\20GrColorType\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +7860:GrGLCaps::getExternalFormat\28GrGLFormat\2c\20GrColorType\2c\20GrColorType\2c\20GrGLCaps::ExternalFormatUsage\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +7861:GrGLCaps::canCopyTexSubImage\28GrGLFormat\2c\20bool\2c\20GrTextureType\20const*\2c\20GrGLFormat\2c\20bool\2c\20GrTextureType\20const*\29\20const +7862:GrGLCaps::canCopyAsBlit\28GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20SkRect\20const&\2c\20bool\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29\20const +7863:GrGLBuffer::~GrGLBuffer\28\29_12572 +7864:GrGLAttribArrayState::resize\28int\29 +7865:GrGLAttribArrayState::GrGLAttribArrayState\28int\29 +7866:GrFragmentProcessors::MakeChildFP\28SkRuntimeEffect::ChildPtr\20const&\2c\20GrFPArgs\20const&\29 +7867:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +7868:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::Make\28\29 +7869:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::Make\28std::__2::unique_ptr>\29 +7870:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::DeviceSpace\28std::__2::unique_ptr>\29 +7871:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +7872:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +7873:GrFragmentProcessor::ClampOutput\28std::__2::unique_ptr>\29 +7874:GrFixedClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +7875:GrFixedClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +7876:GrEagerDynamicVertexAllocator::unlock\28int\29 +7877:GrDynamicAtlas::~GrDynamicAtlas\28\29 +7878:GrDynamicAtlas::Node::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +7879:GrDrawingManager::closeAllTasks\28\29 +7880:GrDrawOpAtlas::uploadToPage\28unsigned\20int\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +7881:GrDrawOpAtlas::updatePlot\28GrDeferredUploadTarget*\2c\20skgpu::AtlasLocator*\2c\20skgpu::Plot*\29 +7882:GrDrawOpAtlas::setLastUseToken\28skgpu::AtlasLocator\20const&\2c\20skgpu::Token\29 +7883:GrDrawOpAtlas::processEviction\28skgpu::PlotLocator\29 +7884:GrDrawOpAtlas::hasID\28skgpu::PlotLocator\20const&\29 +7885:GrDrawOpAtlas::compact\28skgpu::Token\29 +7886:GrDrawOpAtlas::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +7887:GrDrawOpAtlas::Make\28GrProxyProvider*\2c\20GrBackendFormat\20const&\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20int\2c\20int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20GrDrawOpAtlas::AllowMultitexturing\2c\20skgpu::PlotEvictionCallback*\2c\20std::__2::basic_string_view>\29 +7888:GrDrawIndirectBufferAllocPool::putBack\28int\29 +7889:GrDrawIndirectBufferAllocPool::putBackIndexed\28int\29 +7890:GrDrawIndirectBufferAllocPool::makeSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +7891:GrDrawIndirectBufferAllocPool::makeIndexedSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +7892:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29 +7893:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29 +7894:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29 +7895:GrDistanceFieldA8TextGeoProc::onTextureSampler\28int\29\20const +7896:GrDisableColorXPFactory::MakeXferProcessor\28\29 +7897:GrDirectContextPriv::validPMUPMConversionExists\28\29 +7898:GrDirectContext::~GrDirectContext\28\29 +7899:GrDirectContext::syncAllOutstandingGpuWork\28bool\29 +7900:GrDirectContext::submit\28GrSyncCpu\29 +7901:GrDirectContext::flush\28SkSurface*\29 +7902:GrDirectContext::abandoned\28\29 +7903:GrDeferredProxyUploader::signalAndFreeData\28\29 +7904:GrDeferredProxyUploader::GrDeferredProxyUploader\28\29 +7905:GrCopyRenderTask::~GrCopyRenderTask\28\29 +7906:GrCopyRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +7907:GrCopyBaseMipMapToView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Budgeted\29 +7908:GrCopyBaseMipMapToTextureProxy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20std::__2::basic_string_view>\2c\20skgpu::Budgeted\29 +7909:GrContext_Base::~GrContext_Base\28\29_9615 +7910:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29 +7911:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29 +7912:GrColorInfo::makeColorType\28GrColorType\29\20const +7913:GrColorInfo::isLinearlyBlended\28\29\20const +7914:GrColorFragmentProcessorAnalysis::GrColorFragmentProcessorAnalysis\28GrProcessorAnalysisColor\20const&\2c\20std::__2::unique_ptr>\20const*\2c\20int\29 +7915:GrCaps::~GrCaps\28\29 +7916:GrCaps::surfaceSupportsWritePixels\28GrSurface\20const*\29\20const +7917:GrCaps::getDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\2c\20bool\29\20const +7918:GrCPixmap::GrCPixmap\28GrPixmap\20const&\29 +7919:GrBufferAllocPool::resetCpuData\28unsigned\20long\29 +7920:GrBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\2c\20unsigned\20long*\29 +7921:GrBufferAllocPool::flushCpuData\28GrBufferAllocPool::BufferBlock\20const&\2c\20unsigned\20long\29 +7922:GrBufferAllocPool::destroyBlock\28\29 +7923:GrBufferAllocPool::deleteBlocks\28\29 +7924:GrBufferAllocPool::createBlock\28unsigned\20long\29 +7925:GrBufferAllocPool::CpuBufferCache::makeBuffer\28unsigned\20long\2c\20bool\29 +7926:GrBlurUtils::mask_release_proc\28void*\2c\20void*\29 +7927:GrBlurUtils::draw_shape_with_mask_filter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\29 +7928:GrBlurUtils::draw_mask\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrPaint&&\2c\20GrSurfaceProxyView\29 +7929:GrBlurUtils::create_data\28SkIRect\20const&\2c\20SkIRect\20const&\29 +7930:GrBlurUtils::convolve_gaussian_1d\28skgpu::ganesh::SurfaceFillContext*\2c\20GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\2c\20SkIRect\20const&\2c\20SkAlphaType\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\29 +7931:GrBlurUtils::convolve_gaussian\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20SkIRect\2c\20SkIRect\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkBackingFit\29 +7932:GrBlurUtils::clip_bounds_quick_reject\28SkIRect\20const&\2c\20SkIRect\20const&\29 +7933:GrBlurUtils::\28anonymous\20namespace\29::make_texture_effect\28GrCaps\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20GrSamplerState\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkISize\20const&\29 +7934:GrBlurUtils::MakeRectBlur\28GrRecordingContext*\2c\20GrShaderCaps\20const&\2c\20SkRect\20const&\2c\20std::__2::optional\20const&\2c\20SkMatrix\20const&\2c\20float\29 +7935:GrBlurUtils::MakeRRectBlur\28GrRecordingContext*\2c\20float\2c\20float\2c\20SkRRect\20const&\2c\20SkRRect\20const&\29 +7936:GrBlurUtils::MakeCircleBlur\28GrRecordingContext*\2c\20SkRect\20const&\2c\20float\29 +7937:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29 +7938:GrBitmapTextGeoProc::addNewViews\28GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\29 +7939:GrBitmapTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29 +7940:GrBicubicEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +7941:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +7942:GrBackendTexture::operator=\28GrBackendTexture\20const&\29 +7943:GrBackendTexture::GrBackendTexture\28int\2c\20int\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\2c\20GrBackendApi\2c\20GrTextureType\2c\20GrGLBackendTextureData\20const&\29 +7944:GrBackendRenderTarget::isProtected\28\29\20const +7945:GrBackendFormatBytesPerBlock\28GrBackendFormat\20const&\29 +7946:GrBackendFormat::operator!=\28GrBackendFormat\20const&\29\20const +7947:GrBackendFormat::makeTexture2D\28\29\20const +7948:GrAuditTrail::opsCombined\28GrOp\20const*\2c\20GrOp\20const*\29 +7949:GrAttachment::ComputeSharedAttachmentUniqueKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\2c\20skgpu::UniqueKey*\29 +7950:GrAttachment::ComputeScratchKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\2c\20skgpu::ScratchKey*\29 +7951:GrAtlasManager::~GrAtlasManager\28\29 +7952:GrAtlasManager::getViews\28skgpu::MaskFormat\2c\20unsigned\20int*\29 +7953:GrAtlasManager::atlasGeneration\28skgpu::MaskFormat\29\20const +7954:GrAppliedClip::visitProxies\28std::__2::function\20const&\29\20const +7955:GrAppliedClip::addCoverageFP\28std::__2::unique_ptr>\29 +7956:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::EventList*\2c\20GrTriangulator::Comparator\20const&\29\20const +7957:GrAATriangulator::connectPartners\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +7958:GrAATriangulator::collapseOverlapRegions\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\2c\20GrAATriangulator::EventComparator\29 +7959:GrAATriangulator::Event*\20SkArenaAlloc::make\28GrAATriangulator::SSEdge*&\2c\20SkPoint&\2c\20unsigned\20char&\29 +7960:GrAAConvexTessellator::~GrAAConvexTessellator\28\29 +7961:GrAAConvexTessellator::quadTo\28SkPoint\20const*\29 +7962:GrAAConvexTessellator::fanRing\28GrAAConvexTessellator::Ring\20const&\29 +7963:GetShortIns +7964:FontMgrRunIterator::~FontMgrRunIterator\28\29 +7965:FontMgrRunIterator::endOfCurrentRun\28\29\20const +7966:FontMgrRunIterator::atEnd\28\29\20const +7967:FindSortableTop\28SkOpContourHead*\29 +7968:FT_Vector_NormLen +7969:FT_Sfnt_Table_Info +7970:FT_Select_Size +7971:FT_Render_Glyph +7972:FT_Remove_Module +7973:FT_Outline_Get_Orientation +7974:FT_Outline_EmboldenXY +7975:FT_Outline_Decompose +7976:FT_Open_Face +7977:FT_New_Library +7978:FT_New_GlyphSlot +7979:FT_Match_Size +7980:FT_GlyphLoader_Reset +7981:FT_GlyphLoader_Prepare +7982:FT_GlyphLoader_CheckSubGlyphs +7983:FT_Get_Var_Design_Coordinates +7984:FT_Get_Postscript_Name +7985:FT_Get_Paint_Layers +7986:FT_Get_PS_Font_Info +7987:FT_Get_Glyph_Name +7988:FT_Get_FSType_Flags +7989:FT_Get_Color_Glyph_ClipBox +7990:FT_Done_Size +7991:FT_Done_Library +7992:FT_Bitmap_Done +7993:FT_Bitmap_Convert +7994:FT_Add_Default_Modules +7995:EllipticalRRectOp::~EllipticalRRectOp\28\29_11881 +7996:EllipticalRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +7997:EllipticalRRectOp::EllipticalRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20SkPoint\2c\20bool\29 +7998:EllipseOp::EllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20EllipseOp::DeviceSpaceParams\20const&\2c\20SkStrokeRec\20const&\29 +7999:EllipseGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +8000:Dot2AngleType\28float\29 +8001:DecodeVarLenUint8 +8002:DecodeContextMap +8003:DIEllipseOp::~DIEllipseOp\28\29 +8004:DIEllipseOp::DIEllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20DIEllipseOp::DeviceSpaceParams\20const&\2c\20SkMatrix\20const&\29 +8005:CustomXP::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +8006:CustomXP::makeProgramImpl\28\29\20const::Impl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +8007:Cr_z_inflateReset2 +8008:Cr_z_inflateReset +8009:CoverageSetOpXP::onIsEqual\28GrXferProcessor\20const&\29\20const +8010:Convexicator::close\28\29 +8011:Convexicator::addVec\28SkPoint\20const&\29 +8012:Convexicator::addPt\28SkPoint\20const&\29 +8013:ContourIter::next\28\29 +8014:CircularRRectOp::~CircularRRectOp\28\29_11858 +8015:CircularRRectOp::CircularRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +8016:CircleOp::~CircleOp\28\29 +8017:CircleOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +8018:CircleOp::CircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +8019:CircleGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29 +8020:CircleGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +8021:CFF::dict_interpreter_t\2c\20CFF::interp_env_t>::interpret\28CFF::cff1_private_dict_values_base_t&\29 +8022:CFF::cs_opset_t\2c\20cff2_path_param_t\2c\20cff2_path_procs_path_t>::process_op\28unsigned\20int\2c\20CFF::cff2_cs_interp_env_t&\2c\20cff2_path_param_t&\29 +8023:CFF::cff_stack_t::cff_stack_t\28\29 +8024:CFF::cff2_cs_interp_env_t::process_vsindex\28\29 +8025:CFF::cff2_cs_interp_env_t::process_blend\28\29 +8026:CFF::cff2_cs_interp_env_t::fetch_op\28\29 +8027:CFF::cff2_cs_interp_env_t::cff2_cs_interp_env_t\28hb_array_t\20const&\2c\20OT::cff2::accelerator_t\20const&\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29 +8028:CFF::cff2_cs_interp_env_t::blend_deltas\28hb_array_t\29\20const +8029:CFF::cff1_top_dict_values_t::init\28\29 +8030:CFF::cff1_cs_interp_env_t::cff1_cs_interp_env_t\28hb_array_t\20const&\2c\20OT::cff1::accelerator_t\20const&\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29 +8031:CFF::biased_subrs_t>>::init\28CFF::Subrs>\20const*\29 +8032:CFF::biased_subrs_t>>::init\28CFF::Subrs>\20const*\29 +8033:CFF::Subrs>\20const&\20CFF::StructAtOffsetOrNull>>\28void\20const*\2c\20int\2c\20hb_sanitize_context_t&\29 +8034:CFF::FDSelect::get_fd\28unsigned\20int\29\20const +8035:CFF::FDSelect3_4\2c\20OT::IntType>::sentinel\28\29\20const +8036:CFF::FDSelect3_4\2c\20OT::IntType>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +8037:CFF::FDSelect3_4\2c\20OT::IntType>::get_fd\28unsigned\20int\29\20const +8038:CFF::FDSelect0::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +8039:CFF::Charset::get_glyph\28unsigned\20int\2c\20unsigned\20int\29\20const +8040:CFF::CFF2FDSelect::get_fd\28unsigned\20int\29\20const +8041:ButtCapDashedCircleOp::ButtCapDashedCircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8042:BrotliTransformDictionaryWord +8043:BrotliEnsureRingBuffer +8044:BrotliDecoderStateCleanupAfterMetablock +8045:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::begin\28\29\20const +8046:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::Item::operator++\28\29 +8047:AutoRestoreInverseness::~AutoRestoreInverseness\28\29 +8048:AutoRestoreInverseness::AutoRestoreInverseness\28GrShape*\2c\20GrStyle\20const&\29 +8049:AutoLayerForImageFilter::~AutoLayerForImageFilter\28\29 +8050:AutoLayerForImageFilter::operator=\28AutoLayerForImageFilter&&\29 +8051:AutoLayerForImageFilter::addMaskFilterLayer\28SkRect\20const*\29 +8052:AutoLayerForImageFilter::addLayer\28SkPaint\20const&\2c\20SkRect\20const*\2c\20bool\29 +8053:AngleWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\2c\20bool*\29 +8054:AddIntersectTs\28SkOpContour*\2c\20SkOpContour*\2c\20SkOpCoincidence*\29 +8055:ActiveEdgeList::replace\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +8056:ActiveEdgeList::remove\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +8057:ActiveEdgeList::insert\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +8058:ActiveEdgeList::allocate\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +8059:AAT::trak::sanitize\28hb_sanitize_context_t*\29\20const +8060:AAT::mortmorx::sanitize\28hb_sanitize_context_t*\29\20const +8061:AAT::mortmorx::sanitize\28hb_sanitize_context_t*\29\20const +8062:AAT::ltag::sanitize\28hb_sanitize_context_t*\29\20const +8063:AAT::ltag::get_language\28unsigned\20int\29\20const +8064:AAT::kern_subtable_accelerator_data_t::~kern_subtable_accelerator_data_t\28\29 +8065:AAT::kern_subtable_accelerator_data_t::kern_subtable_accelerator_data_t\28\29 +8066:AAT::kern_accelerator_data_t::operator=\28AAT::kern_accelerator_data_t&&\29 +8067:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +8068:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +8069:AAT::hb_aat_apply_context_t::replace_glyph\28unsigned\20int\29 +8070:AAT::feat::sanitize\28hb_sanitize_context_t*\29\20const +8071:AAT::ankr::sanitize\28hb_sanitize_context_t*\29\20const +8072:AAT::ankr::get_anchor\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +8073:AAT::TrackData::get_tracking\28void\20const*\2c\20float\2c\20float\29\20const +8074:AAT::Lookup>::get_value_or_null\28unsigned\20int\2c\20unsigned\20int\29\20const +8075:AAT::Lookup>::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +8076:AAT::Lookup>::get_value_or_null\28unsigned\20int\2c\20unsigned\20int\29\20const +8077:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +8078:AAT::KernPair\20const*\20hb_sorted_array_t::bsearch\28AAT::hb_glyph_pair_t\20const&\2c\20AAT::KernPair\20const*\29 +8079:AAT::KernPair\20const&\20OT::SortedArrayOf>>::bsearch\28AAT::hb_glyph_pair_t\20const&\2c\20AAT::KernPair\20const&\29\20const +8080:7867 +8081:7868 +8082:7869 +8083:7870 +8084:7871 +8085:7872 +8086:7873 +8087:7874 +8088:7875 +8089:7876 +8090:7877 +8091:7878 +8092:7879 +8093:7880 +8094:7881 +8095:7882 +8096:7883 +8097:7884 +8098:7885 +8099:7886 +8100:7887 +8101:7888 +8102:7889 +8103:7890 +8104:7891 +8105:7892 +8106:7893 +8107:7894 +8108:7895 +8109:7896 +8110:7897 +8111:7898 +8112:7899 +8113:7900 +8114:7901 +8115:7902 +8116:7903 +8117:7904 +8118:7905 +8119:7906 +8120:7907 +8121:7908 +8122:7909 +8123:7910 +8124:7911 +8125:7912 +8126:7913 +8127:7914 +8128:7915 +8129:7916 +8130:7917 +8131:7918 +8132:7919 +8133:7920 +8134:7921 +8135:7922 +8136:7923 +8137:7924 +8138:7925 +8139:7926 +8140:7927 +8141:7928 +8142:7929 +8143:7930 +8144:7931 +8145:7932 +8146:7933 +8147:7934 +8148:7935 +8149:7936 +8150:7937 +8151:7938 +8152:7939 +8153:7940 +8154:7941 +8155:7942 +8156:7943 +8157:7944 +8158:7945 +8159:7946 +8160:7947 +8161:7948 +8162:7949 +8163:7950 +8164:7951 +8165:7952 +8166:7953 +8167:7954 +8168:7955 +8169:7956 +8170:7957 +8171:7958 +8172:7959 +8173:7960 +8174:7961 +8175:7962 +8176:7963 +8177:7964 +8178:xyzd50_to_hcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +8179:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +8180:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +8181:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8182:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8183:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8184:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8185:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8186:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8187:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8188:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8189:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8190:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8191:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8192:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8193:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8194:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8195:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8196:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8197:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8198:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8199:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8200:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8201:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8202:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8203:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8204:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8205:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8206:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8207:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8208:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8209:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8210:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8211:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8212:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8213:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8214:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8215:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8216:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8217:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8218:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8219:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8220:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8221:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8222:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8223:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8224:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8225:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8226:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8227:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8228:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8229:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8230:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8231:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8232:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8233:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8234:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8235:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8236:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8237:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8238:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8239:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8240:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8241:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8242:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8243:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8244:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8245:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8246:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8247:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8248:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8249:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8250:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8251:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8252:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8253:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8254:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8255:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8256:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8257:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8258:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8259:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8260:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8261:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8262:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8263:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8264:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8265:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8266:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8267:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8268:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8269:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8270:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8271:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8272:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8273:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8274:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8275:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8276:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +8277:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +8278:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_15592 +8279:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +8280:virtual\20thunk\20to\20std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29_15595 +8281:virtual\20thunk\20to\20std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29 +8282:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29_15478 +8283:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29 +8284:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29_15449 +8285:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29 +8286:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_15494 +8287:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +8288:virtual\20thunk\20to\20flutter::DisplayListBuilder::~DisplayListBuilder\28\29_1360 +8289:virtual\20thunk\20to\20flutter::DisplayListBuilder::~DisplayListBuilder\28\29 +8290:virtual\20thunk\20to\20flutter::DisplayListBuilder::translate\28float\2c\20float\29 +8291:virtual\20thunk\20to\20flutter::DisplayListBuilder::transformReset\28\29 +8292:virtual\20thunk\20to\20flutter::DisplayListBuilder::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8293:virtual\20thunk\20to\20flutter::DisplayListBuilder::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8294:virtual\20thunk\20to\20flutter::DisplayListBuilder::skew\28float\2c\20float\29 +8295:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeWidth\28float\29 +8296:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeMiter\28float\29 +8297:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeJoin\28flutter::DlStrokeJoin\29 +8298:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeCap\28flutter::DlStrokeCap\29 +8299:virtual\20thunk\20to\20flutter::DisplayListBuilder::setMaskFilter\28flutter::DlMaskFilter\20const*\29 +8300:virtual\20thunk\20to\20flutter::DisplayListBuilder::setInvertColors\28bool\29 +8301:virtual\20thunk\20to\20flutter::DisplayListBuilder::setImageFilter\28flutter::DlImageFilter\20const*\29 +8302:virtual\20thunk\20to\20flutter::DisplayListBuilder::setDrawStyle\28flutter::DlDrawStyle\29 +8303:virtual\20thunk\20to\20flutter::DisplayListBuilder::setColor\28flutter::DlColor\29 +8304:virtual\20thunk\20to\20flutter::DisplayListBuilder::setColorSource\28flutter::DlColorSource\20const*\29 +8305:virtual\20thunk\20to\20flutter::DisplayListBuilder::setColorFilter\28flutter::DlColorFilter\20const*\29 +8306:virtual\20thunk\20to\20flutter::DisplayListBuilder::setBlendMode\28impeller::BlendMode\29 +8307:virtual\20thunk\20to\20flutter::DisplayListBuilder::setAntiAlias\28bool\29 +8308:virtual\20thunk\20to\20flutter::DisplayListBuilder::scale\28float\2c\20float\29 +8309:virtual\20thunk\20to\20flutter::DisplayListBuilder::save\28\29 +8310:virtual\20thunk\20to\20flutter::DisplayListBuilder::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +8311:virtual\20thunk\20to\20flutter::DisplayListBuilder::rotate\28float\29 +8312:virtual\20thunk\20to\20flutter::DisplayListBuilder::restore\28\29 +8313:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\29 +8314:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\29 +8315:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +8316:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\29 +8317:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawRoundRect\28impeller::RoundRect\20const&\29 +8318:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawRect\28impeller::TRect\20const&\29 +8319:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\29 +8320:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawPath\28flutter::DlPath\20const&\29 +8321:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawPaint\28\29 +8322:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawOval\28impeller::TRect\20const&\29 +8323:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +8324:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawImage\28sk_sp\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20bool\29 +8325:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawImageRect\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20bool\2c\20flutter::DlSrcRectConstraint\29 +8326:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawImageNine\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20bool\29 +8327:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawDisplayList\28sk_sp\2c\20float\29 +8328:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\29 +8329:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\29 +8330:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +8331:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawCircle\28impeller::TPoint\20const&\2c\20float\29 +8332:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawAtlas\28sk_sp\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20bool\29 +8333:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\29 +8334:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8335:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8336:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8337:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8338:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8339:virtual\20thunk\20to\20flutter::DisplayListBuilder::Translate\28float\2c\20float\29 +8340:virtual\20thunk\20to\20flutter::DisplayListBuilder::Transform\28impeller::Matrix\20const&\29 +8341:virtual\20thunk\20to\20flutter::DisplayListBuilder::TransformReset\28\29 +8342:virtual\20thunk\20to\20flutter::DisplayListBuilder::TransformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8343:virtual\20thunk\20to\20flutter::DisplayListBuilder::Transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +8344:virtual\20thunk\20to\20flutter::DisplayListBuilder::Skew\28float\2c\20float\29 +8345:virtual\20thunk\20to\20flutter::DisplayListBuilder::SetTransform\28impeller::Matrix\20const&\29 +8346:virtual\20thunk\20to\20flutter::DisplayListBuilder::Scale\28float\2c\20float\29 +8347:virtual\20thunk\20to\20flutter::DisplayListBuilder::Save\28\29 +8348:virtual\20thunk\20to\20flutter::DisplayListBuilder::SaveLayer\28std::__2::optional>\20const&\2c\20flutter::DlPaint\20const*\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +8349:virtual\20thunk\20to\20flutter::DisplayListBuilder::Rotate\28float\29 +8350:virtual\20thunk\20to\20flutter::DisplayListBuilder::Restore\28\29 +8351:virtual\20thunk\20to\20flutter::DisplayListBuilder::RestoreToCount\28int\29 +8352:virtual\20thunk\20to\20flutter::DisplayListBuilder::QuickReject\28impeller::TRect\20const&\29\20const +8353:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetSaveCount\28\29\20const +8354:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetMatrix\28\29\20const +8355:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetLocalClipCoverage\28\29\20const +8356:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetImageInfo\28\29\20const +8357:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetDestinationClipCoverage\28\29\20const +8358:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetBaseLayerDimensions\28\29\20const +8359:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\2c\20flutter::DlPaint\20const&\29 +8360:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +8361:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +8362:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlPaint\20const&\29 +8363:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +8364:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawRect\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +8365:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\2c\20flutter::DlPaint\20const&\29 +8366:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawPath\28flutter::DlPath\20const&\2c\20flutter::DlPaint\20const&\29 +8367:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawPaint\28flutter::DlPaint\20const&\29 +8368:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawOval\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +8369:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlPaint\20const&\29 +8370:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawImage\28sk_sp\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\29 +8371:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawImageRect\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\2c\20flutter::DlSrcRectConstraint\29 +8372:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawImageNine\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20flutter::DlPaint\20const*\29 +8373:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawDisplayList\28sk_sp\2c\20float\29 +8374:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +8375:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +8376:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +8377:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawCircle\28impeller::TPoint\20const&\2c\20float\2c\20flutter::DlPaint\20const&\29 +8378:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawAtlas\28sk_sp\20const&\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20flutter::DlPaint\20const*\29 +8379:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20flutter::DlPaint\20const&\29 +8380:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8381:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8382:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8383:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8384:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +8385:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10508 +8386:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +8387:virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +8388:virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +8389:virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +8390:virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +8391:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29_10480 +8392:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29 +8393:virtual\20thunk\20to\20GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +8394:virtual\20thunk\20to\20GrTextureProxy::instantiate\28GrResourceProvider*\29 +8395:virtual\20thunk\20to\20GrTextureProxy::getUniqueKey\28\29\20const +8396:virtual\20thunk\20to\20GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +8397:virtual\20thunk\20to\20GrTextureProxy::callbackDesc\28\29\20const +8398:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29\20const +8399:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29 +8400:virtual\20thunk\20to\20GrTexture::onGpuMemorySize\28\29\20const +8401:virtual\20thunk\20to\20GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +8402:virtual\20thunk\20to\20GrTexture::asTexture\28\29\20const +8403:virtual\20thunk\20to\20GrTexture::asTexture\28\29 +8404:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29_10324 +8405:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +8406:virtual\20thunk\20to\20GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +8407:virtual\20thunk\20to\20GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +8408:virtual\20thunk\20to\20GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +8409:virtual\20thunk\20to\20GrRenderTargetProxy::callbackDesc\28\29\20const +8410:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29\20const +8411:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29 +8412:virtual\20thunk\20to\20GrRenderTarget::onRelease\28\29 +8413:virtual\20thunk\20to\20GrRenderTarget::onAbandon\28\29 +8414:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29\20const +8415:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29 +8416:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12963 +8417:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +8418:virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +8419:virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +8420:virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +8421:virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +8422:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29_12932 +8423:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29 +8424:virtual\20thunk\20to\20GrGLTexture::onRelease\28\29 +8425:virtual\20thunk\20to\20GrGLTexture::onAbandon\28\29 +8426:virtual\20thunk\20to\20GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +8427:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_11206 +8428:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +8429:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::onFinalize\28\29 +8430:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29_12905 +8431:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29 +8432:virtual\20thunk\20to\20GrGLRenderTarget::onRelease\28\29 +8433:virtual\20thunk\20to\20GrGLRenderTarget::onGpuMemorySize\28\29\20const +8434:virtual\20thunk\20to\20GrGLRenderTarget::onAbandon\28\29 +8435:virtual\20thunk\20to\20GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +8436:virtual\20thunk\20to\20GrGLRenderTarget::backendFormat\28\29\20const +8437:vertices_dispose +8438:vertices_create +8439:uniformData_create +8440:unicodePositionBuffer_free +8441:unicodePositionBuffer_create +8442:typefaces_filterCoveredCodePoints +8443:typeface_dispose +8444:typeface_create +8445:tt_vadvance_adjust +8446:tt_slot_init +8447:tt_size_request +8448:tt_size_init +8449:tt_size_done +8450:tt_sbit_decoder_load_png +8451:tt_sbit_decoder_load_compound +8452:tt_sbit_decoder_load_byte_aligned +8453:tt_sbit_decoder_load_bit_aligned +8454:tt_property_set +8455:tt_property_get +8456:tt_name_ascii_from_utf16 +8457:tt_name_ascii_from_other +8458:tt_hadvance_adjust +8459:tt_glyph_load +8460:tt_get_var_blend +8461:tt_get_interface +8462:tt_get_glyph_name +8463:tt_get_cmap_info +8464:tt_get_advances +8465:tt_face_set_sbit_strike +8466:tt_face_load_strike_metrics +8467:tt_face_load_sbit_image +8468:tt_face_load_sbit +8469:tt_face_load_post +8470:tt_face_load_pclt +8471:tt_face_load_os2 +8472:tt_face_load_name +8473:tt_face_load_maxp +8474:tt_face_load_kern +8475:tt_face_load_hmtx +8476:tt_face_load_hhea +8477:tt_face_load_head +8478:tt_face_load_gasp +8479:tt_face_load_font_dir +8480:tt_face_load_cpal +8481:tt_face_load_colr +8482:tt_face_load_cmap +8483:tt_face_load_bhed +8484:tt_face_load_any +8485:tt_face_init +8486:tt_face_get_paint_layers +8487:tt_face_get_paint +8488:tt_face_get_kerning +8489:tt_face_get_colr_layer +8490:tt_face_get_colr_glyph_paint +8491:tt_face_get_colorline_stops +8492:tt_face_get_color_glyph_clipbox +8493:tt_face_free_sbit +8494:tt_face_free_ps_names +8495:tt_face_free_name +8496:tt_face_free_cpal +8497:tt_face_free_colr +8498:tt_face_done +8499:tt_face_colr_blend_layer +8500:tt_driver_init +8501:tt_cmap_unicode_init +8502:tt_cmap_unicode_char_next +8503:tt_cmap_unicode_char_index +8504:tt_cmap_init +8505:tt_cmap8_validate +8506:tt_cmap8_get_info +8507:tt_cmap8_char_next +8508:tt_cmap8_char_index +8509:tt_cmap6_validate +8510:tt_cmap6_get_info +8511:tt_cmap6_char_next +8512:tt_cmap6_char_index +8513:tt_cmap4_validate +8514:tt_cmap4_init +8515:tt_cmap4_get_info +8516:tt_cmap4_char_next +8517:tt_cmap4_char_index +8518:tt_cmap2_validate +8519:tt_cmap2_get_info +8520:tt_cmap2_char_next +8521:tt_cmap2_char_index +8522:tt_cmap14_variants +8523:tt_cmap14_variant_chars +8524:tt_cmap14_validate +8525:tt_cmap14_init +8526:tt_cmap14_get_info +8527:tt_cmap14_done +8528:tt_cmap14_char_variants +8529:tt_cmap14_char_var_isdefault +8530:tt_cmap14_char_var_index +8531:tt_cmap14_char_next +8532:tt_cmap13_validate +8533:tt_cmap13_get_info +8534:tt_cmap13_char_next +8535:tt_cmap13_char_index +8536:tt_cmap12_validate +8537:tt_cmap12_get_info +8538:tt_cmap12_char_next +8539:tt_cmap12_char_index +8540:tt_cmap10_validate +8541:tt_cmap10_get_info +8542:tt_cmap10_char_next +8543:tt_cmap10_char_index +8544:tt_cmap0_validate +8545:tt_cmap0_get_info +8546:tt_cmap0_char_next +8547:tt_cmap0_char_index +8548:textStyle_setWordSpacing +8549:textStyle_setTextBaseline +8550:textStyle_setLocale +8551:textStyle_setLetterSpacing +8552:textStyle_setHeight +8553:textStyle_setHalfLeading +8554:textStyle_setForeground +8555:textStyle_setFontVariations +8556:textStyle_setFontStyle +8557:textStyle_setFontSize +8558:textStyle_setDecorationStyle +8559:textStyle_setDecorationColor +8560:textStyle_setColor +8561:textStyle_setBackground +8562:textStyle_dispose +8563:textStyle_create +8564:textStyle_copy +8565:textStyle_clearFontFamilies +8566:textStyle_addShadow +8567:textStyle_addFontFeature +8568:textStyle_addFontFamilies +8569:textBoxList_getLength +8570:textBoxList_getBoxAtIndex +8571:textBoxList_dispose +8572:t2_hints_stems +8573:t2_hints_open +8574:t1_make_subfont +8575:t1_hints_stem +8576:t1_hints_open +8577:t1_decrypt +8578:t1_decoder_parse_metrics +8579:t1_decoder_init +8580:t1_decoder_done +8581:t1_cmap_unicode_init +8582:t1_cmap_unicode_char_next +8583:t1_cmap_unicode_char_index +8584:t1_cmap_std_done +8585:t1_cmap_std_char_next +8586:t1_cmap_standard_init +8587:t1_cmap_expert_init +8588:t1_cmap_custom_init +8589:t1_cmap_custom_done +8590:t1_cmap_custom_char_next +8591:t1_cmap_custom_char_index +8592:t1_builder_start_point +8593:swizzle_or_premul\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20SkColorSpaceXformSteps\20const&\29 +8594:surface_setResourceCacheLimitBytes +8595:surface_renderPicturesOnWorker +8596:surface_renderPictures +8597:surface_rasterizeImageOnWorker +8598:surface_rasterizeImage +8599:surface_onRenderComplete +8600:surface_onRasterizeComplete +8601:surface_dispose +8602:surface_destroy +8603:surface_create +8604:strutStyle_setLeading +8605:strutStyle_setHeight +8606:strutStyle_setHalfLeading +8607:strutStyle_setForceStrutHeight +8608:strutStyle_setFontStyle +8609:strutStyle_setFontFamilies +8610:strutStyle_dispose +8611:strutStyle_create +8612:string_read +8613:std::exception::what\28\29\20const +8614:std::bad_variant_access::what\28\29\20const +8615:std::bad_optional_access::what\28\29\20const +8616:std::bad_array_new_length::what\28\29\20const +8617:std::bad_alloc::what\28\29\20const +8618:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20tm\20const*\2c\20char\2c\20char\29\20const +8619:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20tm\20const*\2c\20char\2c\20char\29\20const +8620:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8621:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8622:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8623:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8624:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8625:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +8626:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8627:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8628:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8629:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8630:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +8631:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +8632:std::__2::numpunct::~numpunct\28\29_16405 +8633:std::__2::numpunct::do_truename\28\29\20const +8634:std::__2::numpunct::do_grouping\28\29\20const +8635:std::__2::numpunct::do_falsename\28\29\20const +8636:std::__2::numpunct::~numpunct\28\29_16412 +8637:std::__2::numpunct::do_truename\28\29\20const +8638:std::__2::numpunct::do_thousands_sep\28\29\20const +8639:std::__2::numpunct::do_grouping\28\29\20const +8640:std::__2::numpunct::do_falsename\28\29\20const +8641:std::__2::numpunct::do_decimal_point\28\29\20const +8642:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20void\20const*\29\20const +8643:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\29\20const +8644:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\20long\29\20const +8645:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\29\20const +8646:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20long\29\20const +8647:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +8648:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20double\29\20const +8649:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20bool\29\20const +8650:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20void\20const*\29\20const +8651:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\29\20const +8652:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\20long\29\20const +8653:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\29\20const +8654:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20long\29\20const +8655:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +8656:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20double\29\20const +8657:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20bool\29\20const +8658:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +8659:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +8660:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +8661:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +8662:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +8663:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +8664:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +8665:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +8666:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +8667:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +8668:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +8669:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +8670:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +8671:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +8672:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +8673:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +8674:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +8675:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +8676:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +8677:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +8678:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +8679:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +8680:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +8681:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +8682:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +8683:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +8684:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +8685:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +8686:std::__2::locale::__imp::~__imp\28\29_16510 +8687:std::__2::ios_base::~ios_base\28\29_15614 +8688:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +8689:std::__2::ctype::do_toupper\28wchar_t\29\20const +8690:std::__2::ctype::do_toupper\28wchar_t*\2c\20wchar_t\20const*\29\20const +8691:std::__2::ctype::do_tolower\28wchar_t\29\20const +8692:std::__2::ctype::do_tolower\28wchar_t*\2c\20wchar_t\20const*\29\20const +8693:std::__2::ctype::do_scan_not\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +8694:std::__2::ctype::do_scan_is\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +8695:std::__2::ctype::do_narrow\28wchar_t\2c\20char\29\20const +8696:std::__2::ctype::do_narrow\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20char\2c\20char*\29\20const +8697:std::__2::ctype::do_is\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20unsigned\20long*\29\20const +8698:std::__2::ctype::do_is\28unsigned\20long\2c\20wchar_t\29\20const +8699:std::__2::ctype::~ctype\28\29_16497 +8700:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +8701:std::__2::ctype::do_toupper\28char\29\20const +8702:std::__2::ctype::do_toupper\28char*\2c\20char\20const*\29\20const +8703:std::__2::ctype::do_tolower\28char\29\20const +8704:std::__2::ctype::do_tolower\28char*\2c\20char\20const*\29\20const +8705:std::__2::ctype::do_narrow\28char\2c\20char\29\20const +8706:std::__2::ctype::do_narrow\28char\20const*\2c\20char\20const*\2c\20char\2c\20char*\29\20const +8707:std::__2::collate::do_transform\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +8708:std::__2::collate::do_hash\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +8709:std::__2::collate::do_compare\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +8710:std::__2::collate::do_transform\28char\20const*\2c\20char\20const*\29\20const +8711:std::__2::collate::do_hash\28char\20const*\2c\20char\20const*\29\20const +8712:std::__2::collate::do_compare\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +8713:std::__2::codecvt::~codecvt\28\29_16457 +8714:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char*\2c\20char*\2c\20char*&\29\20const +8715:std::__2::codecvt::do_out\28__mbstate_t&\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +8716:std::__2::codecvt::do_max_length\28\29\20const +8717:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +8718:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20wchar_t*\2c\20wchar_t*\2c\20wchar_t*&\29\20const +8719:std::__2::codecvt::do_encoding\28\29\20const +8720:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +8721:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29_15586 +8722:std::__2::basic_stringbuf\2c\20std::__2::allocator>::underflow\28\29 +8723:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +8724:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +8725:std::__2::basic_stringbuf\2c\20std::__2::allocator>::pbackfail\28int\29 +8726:std::__2::basic_stringbuf\2c\20std::__2::allocator>::overflow\28int\29 +8727:std::__2::basic_streambuf>::~basic_streambuf\28\29_15424 +8728:std::__2::basic_streambuf>::xsputn\28char\20const*\2c\20long\29 +8729:std::__2::basic_streambuf>::xsgetn\28char*\2c\20long\29 +8730:std::__2::basic_streambuf>::uflow\28\29 +8731:std::__2::basic_streambuf>::setbuf\28char*\2c\20long\29 +8732:std::__2::basic_streambuf>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +8733:std::__2::basic_streambuf>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +8734:std::__2::bad_function_call::what\28\29\20const +8735:std::__2::__time_get_c_storage::__x\28\29\20const +8736:std::__2::__time_get_c_storage::__weeks\28\29\20const +8737:std::__2::__time_get_c_storage::__r\28\29\20const +8738:std::__2::__time_get_c_storage::__months\28\29\20const +8739:std::__2::__time_get_c_storage::__c\28\29\20const +8740:std::__2::__time_get_c_storage::__am_pm\28\29\20const +8741:std::__2::__time_get_c_storage::__X\28\29\20const +8742:std::__2::__time_get_c_storage::__x\28\29\20const +8743:std::__2::__time_get_c_storage::__weeks\28\29\20const +8744:std::__2::__time_get_c_storage::__r\28\29\20const +8745:std::__2::__time_get_c_storage::__months\28\29\20const +8746:std::__2::__time_get_c_storage::__c\28\29\20const +8747:std::__2::__time_get_c_storage::__am_pm\28\29\20const +8748:std::__2::__time_get_c_storage::__X\28\29\20const +8749:std::__2::__shared_ptr_pointer::__shared_ptr_default_delete\2c\20std::__2::allocator>::__on_zero_shared\28\29 +8750:std::__2::__shared_ptr_emplace>\2c\20std::__2::allocator>>>::~__shared_ptr_emplace\28\29_804 +8751:std::__2::__shared_ptr_emplace>\2c\20std::__2::allocator>>>::~__shared_ptr_emplace\28\29 +8752:std::__2::__shared_ptr_emplace>\2c\20std::__2::allocator>>>::__on_zero_shared\28\29 +8753:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_8041 +8754:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8755:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8756:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_8313 +8757:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8758:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8759:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1504 +8760:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8761:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8762:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1541 +8763:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8764:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1605 +8765:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8766:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8767:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_406 +8768:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8769:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8770:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1768 +8771:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8772:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1536 +8773:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8774:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1754 +8775:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8776:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8777:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1524 +8778:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8779:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1576 +8780:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8781:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8782:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1739 +8783:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8784:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1725 +8785:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8786:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1711 +8787:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8788:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8789:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1695 +8790:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8791:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8792:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_445 +8793:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8794:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1679 +8795:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8796:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1519 +8797:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8798:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_8550 +8799:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8800:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +8801:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_6089 +8802:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +8803:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8804:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8805:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8806:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8807:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8808:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8809:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8810:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8811:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8812:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8813:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8814:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8815:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8816:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8817:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8818:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8819:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8820:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8821:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +8822:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +8823:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +8824:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +8825:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +8826:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +8827:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8828:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8829:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8830:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8831:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8832:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8833:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8834:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8835:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8836:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8837:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8838:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8839:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8840:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8841:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8842:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8843:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8844:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8845:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8846:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8847:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8848:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8849:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8850:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8851:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8852:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8853:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8854:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8855:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8856:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8857:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8858:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8859:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8860:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +8861:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +8862:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +8863:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +8864:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +8865:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +8866:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20float&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20SkPoint&&\2c\20SkPoint&&\2c\20skia::textlayout::InternalLineMetrics&&\2c\20bool&&\29 +8867:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>*\29\20const +8868:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28\29\20const +8869:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::operator\28\29\28skia::textlayout::Cluster*&&\29 +8870:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28std::__2::__function::__base*\29\20const +8871:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28\29\20const +8872:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +8873:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28\29\20const +8874:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20SkSpan&&\2c\20float&\2c\20unsigned\20long&&\2c\20unsigned\20char&&\29 +8875:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28std::__2::__function::__base\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>*\29\20const +8876:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28\29\20const +8877:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::operator\28\29\28skia::textlayout::Block&&\2c\20skia_private::TArray&&\29 +8878:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28std::__2::__function::__base\29>*\29\20const +8879:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28\29\20const +8880:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::operator\28\29\28sk_sp&&\29 +8881:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28std::__2::__function::__base\29>*\29\20const +8882:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28\29\20const +8883:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::operator\28\29\28skia::textlayout::SkRange&&\29 +8884:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28std::__2::__function::__base\29>*\29\20const +8885:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28\29\20const +8886:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +8887:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +8888:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +8889:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29_10634 +8890:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::operator\28\29\28void*&&\2c\20void\20const*&&\29 +8891:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy_deallocate\28\29 +8892:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy\28\29 +8893:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +8894:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28\29\20const +8895:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +8896:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8897:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +8898:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +8899:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8900:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +8901:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +8902:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +8903:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +8904:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +8905:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +8906:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +8907:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +8908:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +8909:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +8910:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +8911:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +8912:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +8913:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::operator\28\29\28sktext::gpu::GlyphVector*&&\2c\20int&&\2c\20int&&\2c\20skgpu::MaskFormat&&\2c\20int&&\29 +8914:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28std::__2::__function::__base\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>*\29\20const +8915:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28\29\20const +8916:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::operator\28\29\28GrSurfaceProxy\20const*&&\29 +8917:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +8918:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28\29\20const +8919:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +8920:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +8921:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +8922:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +8923:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +8924:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +8925:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +8926:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +8927:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +8928:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +8929:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +8930:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +8931:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +8932:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +8933:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8934:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +8935:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::operator\28\29\28\29 +8936:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8937:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28\29\20const +8938:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8939:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +8940:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8941:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +8942:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +8943:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +8944:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +8945:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +8946:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +8947:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +8948:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +8949:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +8950:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +8951:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +8952:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +8953:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +8954:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +8955:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +8956:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +8957:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29_5269 +8958:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +8959:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy_deallocate\28\29 +8960:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy\28\29 +8961:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8962:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +8963:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +8964:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +8965:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +8966:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +8967:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8968:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +8969:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +8970:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +8971:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +8972:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::operator\28\29\28SkSL::Variable\20const&\29 +8973:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +8974:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28\29\20const +8975:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::operator\28\29\28int&&\2c\20SkSL::Variable\20const*&&\2c\20SkSL::Expression\20const*&&\29 +8976:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +8977:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28\29\20const +8978:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::operator\28\29\28unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\29 +8979:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +8980:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +8981:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +8982:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +8983:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::operator\28\29\28SkVertices\20const*&&\2c\20SkBlendMode&&\2c\20SkPaint\20const&\2c\20float&&\2c\20float&&\2c\20bool&&\29 +8984:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +8985:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28\29\20const +8986:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::operator\28\29\28SkIRect\20const&\29 +8987:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +8988:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28\29\20const +8989:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10538 +8990:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +8991:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +8992:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +8993:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +8994:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +8995:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10263 +8996:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +8997:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +8998:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +8999:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +9000:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +9001:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10254 +9002:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +9003:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +9004:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +9005:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +9006:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +9007:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::operator\28\29\28GrTextureProxy*&&\2c\20SkIRect&&\2c\20GrColorType&&\2c\20void\20const*&&\2c\20unsigned\20long&&\29 +9008:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +9009:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28\29\20const +9010:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::operator\28\29\28GrBackendTexture&&\29 +9011:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28\29\20const +9012:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +9013:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +9014:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +9015:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +9016:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +9017:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +9018:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +9019:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +9020:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +9021:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +9022:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +9023:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +9024:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +9025:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +9026:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +9027:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +9028:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +9029:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +9030:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9778 +9031:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +9032:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +9033:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9790 +9034:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +9035:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +9036:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +9037:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +9038:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +9039:srgb_to_hwb\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +9040:srcover_p\28unsigned\20char\2c\20unsigned\20char\29 +9041:sn_write +9042:skwasm_isMultiThreaded +9043:skwasm_getLiveObjectCounts +9044:sktext::gpu::post_purge_blob_message\28unsigned\20int\2c\20unsigned\20int\29 +9045:sktext::gpu::TextBlob::~TextBlob\28\29_13170 +9046:sktext::gpu::SlugImpl::~SlugImpl\28\29_13082 +9047:sktext::gpu::SlugImpl::sourceBounds\28\29\20const +9048:sktext::gpu::SlugImpl::sourceBoundsWithOrigin\28\29\20const +9049:sktext::gpu::SlugImpl::doFlatten\28SkWriteBuffer&\29\20const +9050:sktext::gpu::SDFMaskFilterImpl::getTypeName\28\29\20const +9051:sktext::gpu::SDFMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +9052:sktext::gpu::SDFMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +9053:skif::\28anonymous\20namespace\29::RasterBackend::~RasterBackend\28\29 +9054:skif::\28anonymous\20namespace\29::RasterBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +9055:skif::\28anonymous\20namespace\29::RasterBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +9056:skif::\28anonymous\20namespace\29::RasterBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +9057:skif::\28anonymous\20namespace\29::RasterBackend::getBlurEngine\28\29\20const +9058:skif::\28anonymous\20namespace\29::GaneshBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +9059:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +9060:skif::\28anonymous\20namespace\29::GaneshBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +9061:skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +9062:skia_png_zfree +9063:skia_png_zalloc +9064:skia_png_set_read_fn +9065:skia_png_set_expand_gray_1_2_4_to_8 +9066:skia_png_read_start_row +9067:skia_png_read_finish_row +9068:skia_png_handle_zTXt +9069:skia_png_handle_unknown +9070:skia_png_handle_tRNS +9071:skia_png_handle_tIME +9072:skia_png_handle_tEXt +9073:skia_png_handle_sRGB +9074:skia_png_handle_sPLT +9075:skia_png_handle_sCAL +9076:skia_png_handle_sBIT +9077:skia_png_handle_pHYs +9078:skia_png_handle_pCAL +9079:skia_png_handle_oFFs +9080:skia_png_handle_iTXt +9081:skia_png_handle_iCCP +9082:skia_png_handle_hIST +9083:skia_png_handle_gAMA +9084:skia_png_handle_cHRM +9085:skia_png_handle_bKGD +9086:skia_png_handle_PLTE +9087:skia_png_handle_IHDR +9088:skia_png_handle_IEND +9089:skia_png_get_IHDR +9090:skia_png_do_read_transformations +9091:skia_png_destroy_read_struct +9092:skia_png_default_read_data +9093:skia_png_create_png_struct +9094:skia_png_combine_row +9095:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29_8486 +9096:skia::textlayout::TypefaceFontStyleSet::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +9097:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29_8493 +9098:skia::textlayout::TypefaceFontProvider::onMatchFamily\28char\20const*\29\20const +9099:skia::textlayout::TypefaceFontProvider::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +9100:skia::textlayout::TypefaceFontProvider::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +9101:skia::textlayout::TypefaceFontProvider::onGetFamilyName\28int\2c\20SkString*\29\20const +9102:skia::textlayout::TypefaceFontProvider::onCreateStyleSet\28int\29\20const +9103:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29_8406 +9104:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +9105:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +9106:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29_8148 +9107:skia::textlayout::ParagraphImpl::visit\28std::__2::function\20const&\29 +9108:skia::textlayout::ParagraphImpl::updateTextAlign\28skia::textlayout::TextAlign\29 +9109:skia::textlayout::ParagraphImpl::updateForegroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +9110:skia::textlayout::ParagraphImpl::updateFontSize\28unsigned\20long\2c\20unsigned\20long\2c\20float\29 +9111:skia::textlayout::ParagraphImpl::updateBackgroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +9112:skia::textlayout::ParagraphImpl::unresolvedGlyphs\28\29 +9113:skia::textlayout::ParagraphImpl::unresolvedCodepoints\28\29 +9114:skia::textlayout::ParagraphImpl::paint\28SkCanvas*\2c\20float\2c\20float\29 +9115:skia::textlayout::ParagraphImpl::markDirty\28\29 +9116:skia::textlayout::ParagraphImpl::lineNumber\28\29 +9117:skia::textlayout::ParagraphImpl::layout\28float\29 +9118:skia::textlayout::ParagraphImpl::getWordBoundary\28unsigned\20int\29 +9119:skia::textlayout::ParagraphImpl::getRectsForRange\28unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +9120:skia::textlayout::ParagraphImpl::getRectsForPlaceholders\28\29 +9121:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +9122:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29 +9123:skia::textlayout::ParagraphImpl::getLineNumberAtUTF16Offset\28unsigned\20long\29 +9124:skia::textlayout::ParagraphImpl::getLineMetrics\28std::__2::vector>&\29 +9125:skia::textlayout::ParagraphImpl::getLineMetricsAt\28int\2c\20skia::textlayout::LineMetrics*\29\20const +9126:skia::textlayout::ParagraphImpl::getFonts\28\29\20const +9127:skia::textlayout::ParagraphImpl::getFontAt\28unsigned\20long\29\20const +9128:skia::textlayout::ParagraphImpl::getFontAtUTF16Offset\28unsigned\20long\29 +9129:skia::textlayout::ParagraphImpl::getClosestUTF16GlyphInfoAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +9130:skia::textlayout::ParagraphImpl::getClosestGlyphClusterAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +9131:skia::textlayout::ParagraphImpl::getActualTextRange\28int\2c\20bool\29\20const +9132:skia::textlayout::ParagraphImpl::extendedVisit\28std::__2::function\20const&\29 +9133:skia::textlayout::ParagraphImpl::containsEmoji\28SkTextBlob*\29 +9134:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29::$_0::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +9135:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29 +9136:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29_8053 +9137:skia::textlayout::ParagraphBuilderImpl::setWordsUtf8\28std::__2::vector>\29 +9138:skia::textlayout::ParagraphBuilderImpl::setWordsUtf16\28std::__2::vector>\29 +9139:skia::textlayout::ParagraphBuilderImpl::setLineBreaksUtf8\28std::__2::vector>\29 +9140:skia::textlayout::ParagraphBuilderImpl::setLineBreaksUtf16\28std::__2::vector>\29 +9141:skia::textlayout::ParagraphBuilderImpl::setGraphemeBreaksUtf8\28std::__2::vector>\29 +9142:skia::textlayout::ParagraphBuilderImpl::setGraphemeBreaksUtf16\28std::__2::vector>\29 +9143:skia::textlayout::ParagraphBuilderImpl::pushStyle\28skia::textlayout::TextStyle\20const&\29 +9144:skia::textlayout::ParagraphBuilderImpl::pop\28\29 +9145:skia::textlayout::ParagraphBuilderImpl::peekStyle\28\29 +9146:skia::textlayout::ParagraphBuilderImpl::getText\28\29 +9147:skia::textlayout::ParagraphBuilderImpl::getParagraphStyle\28\29\20const +9148:skia::textlayout::ParagraphBuilderImpl::getClientICUData\28\29\20const +9149:skia::textlayout::ParagraphBuilderImpl::addText\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +9150:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\2c\20unsigned\20long\29 +9151:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\29 +9152:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\29 +9153:skia::textlayout::ParagraphBuilderImpl::SetUnicode\28sk_sp\29 +9154:skia::textlayout::ParagraphBuilderImpl::Reset\28\29 +9155:skia::textlayout::ParagraphBuilderImpl::Build\28\29 +9156:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29_8233 +9157:skia::textlayout::OneLineShaper::~OneLineShaper\28\29_8033 +9158:skia::textlayout::OneLineShaper::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +9159:skia::textlayout::OneLineShaper::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +9160:skia::textlayout::LangIterator::~LangIterator\28\29_8021 +9161:skia::textlayout::LangIterator::~LangIterator\28\29 +9162:skia::textlayout::LangIterator::endOfCurrentRun\28\29\20const +9163:skia::textlayout::LangIterator::currentLanguage\28\29\20const +9164:skia::textlayout::LangIterator::consume\28\29 +9165:skia::textlayout::LangIterator::atEnd\28\29\20const +9166:skia::textlayout::FontCollection::~FontCollection\28\29_7882 +9167:skia::textlayout::CanvasParagraphPainter::translate\28float\2c\20float\29 +9168:skia::textlayout::CanvasParagraphPainter::save\28\29 +9169:skia::textlayout::CanvasParagraphPainter::restore\28\29 +9170:skia::textlayout::CanvasParagraphPainter::drawTextShadow\28sk_sp\20const&\2c\20float\2c\20float\2c\20unsigned\20int\2c\20float\29 +9171:skia::textlayout::CanvasParagraphPainter::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20std::__2::variant\20const&\29 +9172:skia::textlayout::CanvasParagraphPainter::drawRect\28SkRect\20const&\2c\20std::__2::variant\20const&\29 +9173:skia::textlayout::CanvasParagraphPainter::drawPath\28SkPath\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +9174:skia::textlayout::CanvasParagraphPainter::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +9175:skia::textlayout::CanvasParagraphPainter::drawFilledRect\28SkRect\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +9176:skia::textlayout::CanvasParagraphPainter::clipRect\28SkRect\20const&\29 +9177:skgpu::tess::FixedCountWedges::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +9178:skgpu::tess::FixedCountWedges::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +9179:skgpu::tess::FixedCountStrokes::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +9180:skgpu::tess::FixedCountCurves::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +9181:skgpu::ganesh::texture_proxy_view_from_planes\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20skgpu::Budgeted\29::$_0::__invoke\28void*\2c\20void*\29 +9182:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29_12202 +9183:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::visitProxies\28std::__2::function\20const&\29\20const +9184:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9185:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9186:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9187:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::name\28\29\20const +9188:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::fixedFunctionFlags\28\29\20const +9189:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9190:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::name\28\29\20const +9191:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9192:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9193:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9194:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9195:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29_12067 +9196:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::name\28\29\20const +9197:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9198:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9199:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29_11440 +9200:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +9201:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9202:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9203:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9204:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9205:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::name\28\29\20const +9206:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::fixedFunctionFlags\28\29\20const +9207:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9208:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29_11345 +9209:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +9210:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9211:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9212:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9213:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9214:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::name\28\29\20const +9215:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9216:skgpu::ganesh::TriangulatingPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9217:skgpu::ganesh::TriangulatingPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9218:skgpu::ganesh::TriangulatingPathRenderer::name\28\29\20const +9219:skgpu::ganesh::TessellationPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +9220:skgpu::ganesh::TessellationPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +9221:skgpu::ganesh::TessellationPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9222:skgpu::ganesh::TessellationPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9223:skgpu::ganesh::TessellationPathRenderer::name\28\29\20const +9224:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29 +9225:skgpu::ganesh::SurfaceDrawContext::willReplaceOpsTask\28skgpu::ganesh::OpsTask*\2c\20skgpu::ganesh::OpsTask*\29 +9226:skgpu::ganesh::SurfaceDrawContext::canDiscardPreviousOpsOnFullClear\28\29\20const +9227:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29_9738 +9228:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +9229:skgpu::ganesh::SurfaceContext::asyncReadPixels\28GrDirectContext*\2c\20SkIRect\20const&\2c\20SkColorType\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +9230:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29_12262 +9231:skgpu::ganesh::StrokeTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +9232:skgpu::ganesh::StrokeTessellateOp::usesStencil\28\29\20const +9233:skgpu::ganesh::StrokeTessellateOp::onPrepare\28GrOpFlushState*\29 +9234:skgpu::ganesh::StrokeTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9235:skgpu::ganesh::StrokeTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9236:skgpu::ganesh::StrokeTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9237:skgpu::ganesh::StrokeTessellateOp::name\28\29\20const +9238:skgpu::ganesh::StrokeTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9239:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29_12239 +9240:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +9241:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::programInfo\28\29 +9242:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9243:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9244:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9245:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::name\28\29\20const +9246:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9247:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29_12249 +9248:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +9249:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::programInfo\28\29 +9250:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9251:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9252:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9253:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9254:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::name\28\29\20const +9255:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9256:skgpu::ganesh::StencilClip::~StencilClip\28\29_10601 +9257:skgpu::ganesh::StencilClip::~StencilClip\28\29 +9258:skgpu::ganesh::StencilClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +9259:skgpu::ganesh::StencilClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +9260:skgpu::ganesh::SoftwarePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9261:skgpu::ganesh::SoftwarePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9262:skgpu::ganesh::SoftwarePathRenderer::name\28\29\20const +9263:skgpu::ganesh::SmallPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9264:skgpu::ganesh::SmallPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9265:skgpu::ganesh::SmallPathRenderer::name\28\29\20const +9266:skgpu::ganesh::SmallPathAtlasMgr::postFlush\28skgpu::Token\29 +9267:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29_12149 +9268:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::visitProxies\28std::__2::function\20const&\29\20const +9269:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::programInfo\28\29 +9270:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +9271:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9272:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9273:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9274:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::name\28\29\20const +9275:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9276:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_quad_generic\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9277:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9278:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9279:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9280:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9281:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9282:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9283:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +9284:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29_12138 +9285:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::onTextureSampler\28int\29\20const +9286:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::name\28\29\20const +9287:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9288:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9289:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9290:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9291:skgpu::ganesh::PathWedgeTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +9292:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29_12122 +9293:skgpu::ganesh::PathTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +9294:skgpu::ganesh::PathTessellateOp::usesStencil\28\29\20const +9295:skgpu::ganesh::PathTessellateOp::onPrepare\28GrOpFlushState*\29 +9296:skgpu::ganesh::PathTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9297:skgpu::ganesh::PathTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9298:skgpu::ganesh::PathTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9299:skgpu::ganesh::PathTessellateOp::name\28\29\20const +9300:skgpu::ganesh::PathTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9301:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29_12112 +9302:skgpu::ganesh::PathStencilCoverOp::visitProxies\28std::__2::function\20const&\29\20const +9303:skgpu::ganesh::PathStencilCoverOp::onPrepare\28GrOpFlushState*\29 +9304:skgpu::ganesh::PathStencilCoverOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9305:skgpu::ganesh::PathStencilCoverOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9306:skgpu::ganesh::PathStencilCoverOp::name\28\29\20const +9307:skgpu::ganesh::PathStencilCoverOp::fixedFunctionFlags\28\29\20const +9308:skgpu::ganesh::PathStencilCoverOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9309:skgpu::ganesh::PathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +9310:skgpu::ganesh::PathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +9311:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29_12088 +9312:skgpu::ganesh::PathInnerTriangulateOp::visitProxies\28std::__2::function\20const&\29\20const +9313:skgpu::ganesh::PathInnerTriangulateOp::onPrepare\28GrOpFlushState*\29 +9314:skgpu::ganesh::PathInnerTriangulateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9315:skgpu::ganesh::PathInnerTriangulateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9316:skgpu::ganesh::PathInnerTriangulateOp::name\28\29\20const +9317:skgpu::ganesh::PathInnerTriangulateOp::fixedFunctionFlags\28\29\20const +9318:skgpu::ganesh::PathInnerTriangulateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9319:skgpu::ganesh::PathCurveTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +9320:skgpu::ganesh::OpsTask::~OpsTask\28\29_12008 +9321:skgpu::ganesh::OpsTask::onPrepare\28GrOpFlushState*\29 +9322:skgpu::ganesh::OpsTask::onPrePrepare\28GrRecordingContext*\29 +9323:skgpu::ganesh::OpsTask::onMakeSkippable\28\29 +9324:skgpu::ganesh::OpsTask::onIsUsed\28GrSurfaceProxy*\29\20const +9325:skgpu::ganesh::OpsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +9326:skgpu::ganesh::OpsTask::endFlush\28GrDrawingManager*\29 +9327:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29_11977 +9328:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::visitProxies\28std::__2::function\20const&\29\20const +9329:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9330:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9331:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9332:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9333:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::name\28\29\20const +9334:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9335:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29_11990 +9336:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::onTextureSampler\28int\29\20const +9337:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::name\28\29\20const +9338:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9339:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9340:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9341:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9342:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29_11794 +9343:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +9344:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +9345:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9346:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9347:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9348:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::name\28\29\20const +9349:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9350:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::clipToShape\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkClipOp\2c\20SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\29 +9351:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29_11812 +9352:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29 +9353:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::name\28\29\20const +9354:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9355:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +9356:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9357:skgpu::ganesh::DrawableOp::~DrawableOp\28\29_11783 +9358:skgpu::ganesh::DrawableOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9359:skgpu::ganesh::DrawableOp::name\28\29\20const +9360:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29_11690 +9361:skgpu::ganesh::DrawAtlasPathOp::visitProxies\28std::__2::function\20const&\29\20const +9362:skgpu::ganesh::DrawAtlasPathOp::onPrepare\28GrOpFlushState*\29 +9363:skgpu::ganesh::DrawAtlasPathOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9364:skgpu::ganesh::DrawAtlasPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9365:skgpu::ganesh::DrawAtlasPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9366:skgpu::ganesh::DrawAtlasPathOp::name\28\29\20const +9367:skgpu::ganesh::DrawAtlasPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9368:skgpu::ganesh::Device::~Device\28\29_9095 +9369:skgpu::ganesh::Device::strikeDeviceInfo\28\29\20const +9370:skgpu::ganesh::Device::snapSpecial\28SkIRect\20const&\2c\20bool\29 +9371:skgpu::ganesh::Device::snapSpecialScaled\28SkIRect\20const&\2c\20SkISize\20const&\29 +9372:skgpu::ganesh::Device::replaceClip\28SkIRect\20const&\29 +9373:skgpu::ganesh::Device::pushClipStack\28\29 +9374:skgpu::ganesh::Device::popClipStack\28\29 +9375:skgpu::ganesh::Device::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +9376:skgpu::ganesh::Device::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +9377:skgpu::ganesh::Device::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +9378:skgpu::ganesh::Device::onClipShader\28sk_sp\29 +9379:skgpu::ganesh::Device::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +9380:skgpu::ganesh::Device::isClipWideOpen\28\29\20const +9381:skgpu::ganesh::Device::isClipRect\28\29\20const +9382:skgpu::ganesh::Device::isClipEmpty\28\29\20const +9383:skgpu::ganesh::Device::isClipAntiAliased\28\29\20const +9384:skgpu::ganesh::Device::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +9385:skgpu::ganesh::Device::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +9386:skgpu::ganesh::Device::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +9387:skgpu::ganesh::Device::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +9388:skgpu::ganesh::Device::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +9389:skgpu::ganesh::Device::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +9390:skgpu::ganesh::Device::drawPaint\28SkPaint\20const&\29 +9391:skgpu::ganesh::Device::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +9392:skgpu::ganesh::Device::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +9393:skgpu::ganesh::Device::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +9394:skgpu::ganesh::Device::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +9395:skgpu::ganesh::Device::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +9396:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +9397:skgpu::ganesh::Device::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +9398:skgpu::ganesh::Device::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +9399:skgpu::ganesh::Device::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +9400:skgpu::ganesh::Device::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +9401:skgpu::ganesh::Device::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +9402:skgpu::ganesh::Device::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +9403:skgpu::ganesh::Device::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +9404:skgpu::ganesh::Device::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +9405:skgpu::ganesh::Device::devClipBounds\28\29\20const +9406:skgpu::ganesh::Device::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +9407:skgpu::ganesh::Device::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +9408:skgpu::ganesh::Device::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +9409:skgpu::ganesh::Device::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +9410:skgpu::ganesh::Device::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +9411:skgpu::ganesh::Device::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +9412:skgpu::ganesh::Device::baseRecorder\28\29\20const +9413:skgpu::ganesh::Device::android_utils_clipWithStencil\28\29 +9414:skgpu::ganesh::DefaultPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +9415:skgpu::ganesh::DefaultPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +9416:skgpu::ganesh::DefaultPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9417:skgpu::ganesh::DefaultPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9418:skgpu::ganesh::DefaultPathRenderer::name\28\29\20const +9419:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::name\28\29\20const +9420:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9421:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9422:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9423:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::name\28\29\20const +9424:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +9425:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9426:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +9427:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29_11587 +9428:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::visitProxies\28std::__2::function\20const&\29\20const +9429:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::programInfo\28\29 +9430:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +9431:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9432:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +9433:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9434:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::name\28\29\20const +9435:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::fixedFunctionFlags\28\29\20const +9436:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9437:skgpu::ganesh::DashLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9438:skgpu::ganesh::DashLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9439:skgpu::ganesh::DashLinePathRenderer::name\28\29\20const +9440:skgpu::ganesh::ClipStack::~ClipStack\28\29_8987 +9441:skgpu::ganesh::ClipStack::preApply\28SkRect\20const&\2c\20GrAA\29\20const +9442:skgpu::ganesh::ClipStack::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +9443:skgpu::ganesh::ClearOp::~ClearOp\28\29 +9444:skgpu::ganesh::ClearOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9445:skgpu::ganesh::ClearOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9446:skgpu::ganesh::ClearOp::name\28\29\20const +9447:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29_11522 +9448:skgpu::ganesh::AtlasTextOp::visitProxies\28std::__2::function\20const&\29\20const +9449:skgpu::ganesh::AtlasTextOp::onPrepareDraws\28GrMeshDrawTarget*\29 +9450:skgpu::ganesh::AtlasTextOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +9451:skgpu::ganesh::AtlasTextOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +9452:skgpu::ganesh::AtlasTextOp::name\28\29\20const +9453:skgpu::ganesh::AtlasTextOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +9454:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29_11508 +9455:skgpu::ganesh::AtlasRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +9456:skgpu::ganesh::AtlasRenderTask::onExecute\28GrOpFlushState*\29 +9457:skgpu::ganesh::AtlasPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9458:skgpu::ganesh::AtlasPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9459:skgpu::ganesh::AtlasPathRenderer::name\28\29\20const +9460:skgpu::ganesh::AALinearizingConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9461:skgpu::ganesh::AALinearizingConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9462:skgpu::ganesh::AALinearizingConvexPathRenderer::name\28\29\20const +9463:skgpu::ganesh::AAHairLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9464:skgpu::ganesh::AAHairLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9465:skgpu::ganesh::AAHairLinePathRenderer::name\28\29\20const +9466:skgpu::ganesh::AAConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +9467:skgpu::ganesh::AAConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +9468:skgpu::ganesh::AAConvexPathRenderer::name\28\29\20const +9469:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29_10629 +9470:skgpu::TAsyncReadResult::rowBytes\28int\29\20const +9471:skgpu::TAsyncReadResult::data\28int\29\20const +9472:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29_10228 +9473:skgpu::StringKeyBuilder::appendComment\28char\20const*\29 +9474:skgpu::StringKeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +9475:skgpu::ShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\2c\20bool\29 +9476:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29_13016 +9477:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29 +9478:skgpu::RectanizerSkyline::percentFull\28\29\20const +9479:skgpu::RectanizerPow2::reset\28\29 +9480:skgpu::RectanizerPow2::percentFull\28\29\20const +9481:skgpu::RectanizerPow2::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +9482:skgpu::Plot::~Plot\28\29_13007 +9483:skgpu::KeyBuilder::~KeyBuilder\28\29 +9484:skgpu::DefaultShaderErrorHandler\28\29::DefaultShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\29 +9485:skcpu::bw_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +9486:skcpu::bw_pt_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +9487:skcpu::bw_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +9488:skcpu::bw_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +9489:skcpu::aa_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +9490:skcpu::aa_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +9491:skcpu::aa_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +9492:skcpu::Draw::paintMasks\28SkZip\2c\20SkPaint\20const&\29\20const +9493:sk_mmap_releaseproc\28void\20const*\2c\20void*\29 +9494:sk_ft_stream_io\28FT_StreamRec_*\2c\20unsigned\20long\2c\20unsigned\20char*\2c\20unsigned\20long\29 +9495:sk_ft_realloc\28FT_MemoryRec_*\2c\20long\2c\20long\2c\20void*\29 +9496:sk_fclose\28_IO_FILE*\29 +9497:skString_getData +9498:skString_free +9499:skString_allocate +9500:skString16_getData +9501:skString16_free +9502:skString16_allocate +9503:skData_dispose +9504:skData_create +9505:shader_dispose +9506:shader_createSweepGradient +9507:shader_createRuntimeEffectShader +9508:shader_createRadialGradient +9509:shader_createLinearGradient +9510:shader_createFromImage +9511:shader_createConicalGradient +9512:sfnt_table_info +9513:sfnt_load_face +9514:sfnt_is_postscript +9515:sfnt_is_alphanumeric +9516:sfnt_init_face +9517:sfnt_get_ps_name +9518:sfnt_get_name_index +9519:sfnt_get_interface +9520:sfnt_get_glyph_name +9521:sfnt_get_charset_id +9522:sfnt_done_face +9523:setup_syllables_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9524:setup_syllables_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9525:setup_syllables_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9526:setup_syllables_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9527:setup_masks_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9528:setup_masks_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9529:setup_masks_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9530:setup_masks_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9531:setup_masks_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9532:setup_masks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9533:runtimeEffect_getUniformSize +9534:runtimeEffect_dispose +9535:runtimeEffect_create +9536:reverse_hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +9537:reverse_hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +9538:reorder_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9539:reorder_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9540:reorder_marks_hebrew\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +9541:reorder_marks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +9542:reorder_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9543:release_data\28void*\2c\20void*\29 +9544:rect_memcpy\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20SkColorSpaceXformSteps\20const&\29 +9545:record_stch\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9546:record_rphf_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9547:record_pref_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +9548:read_data_from_FT_Stream +9549:quad_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +9550:quad_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +9551:psnames_get_service +9552:pshinter_get_t2_funcs +9553:pshinter_get_t1_funcs +9554:psh_globals_new +9555:psh_globals_destroy +9556:psaux_get_glyph_name +9557:ps_table_release +9558:ps_table_new +9559:ps_table_done +9560:ps_table_add +9561:ps_property_set +9562:ps_property_get +9563:ps_parser_to_int +9564:ps_parser_to_fixed_array +9565:ps_parser_to_fixed +9566:ps_parser_to_coord_array +9567:ps_parser_to_bytes +9568:ps_parser_load_field_table +9569:ps_parser_init +9570:ps_hints_t2mask +9571:ps_hints_t2counter +9572:ps_hints_t1stem3 +9573:ps_hints_t1reset +9574:ps_hints_close +9575:ps_hints_apply +9576:ps_hinter_init +9577:ps_hinter_done +9578:ps_get_standard_strings +9579:ps_get_macintosh_name +9580:ps_decoder_init +9581:preprocess_text_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9582:preprocess_text_thai\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9583:preprocess_text_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9584:preprocess_text_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9585:premultiply_data +9586:premul_rgb\28SkRGBA4f<\28SkAlphaType\292>\29 +9587:premul_polar\28SkRGBA4f<\28SkAlphaType\292>\29 +9588:postprocess_glyphs_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +9589:portable::xy_to_unit_angle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9590:portable::xy_to_radius\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9591:portable::xy_to_2pt_conical_well_behaved\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9592:portable::xy_to_2pt_conical_strip\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9593:portable::xy_to_2pt_conical_smaller\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9594:portable::xy_to_2pt_conical_greater\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9595:portable::xy_to_2pt_conical_focal_on_circle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9596:portable::xor_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9597:portable::white_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9598:portable::unpremul_polar\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9599:portable::unpremul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9600:portable::uniform_color_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9601:portable::trace_var\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9602:portable::trace_scope\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9603:portable::trace_line\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9604:portable::trace_exit\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9605:portable::trace_enter\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9606:portable::tan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9607:portable::swizzle_copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9608:portable::swizzle_copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9609:portable::swizzle_copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9610:portable::swizzle_copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9611:portable::swizzle_copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9612:portable::swizzle_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9613:portable::swizzle_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9614:portable::swizzle_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9615:portable::swizzle_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9616:portable::swizzle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9617:portable::swap_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9618:portable::swap_rb_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9619:portable::swap_rb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9620:portable::sub_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9621:portable::sub_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9622:portable::sub_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9623:portable::sub_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9624:portable::sub_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9625:portable::sub_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9626:portable::sub_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9627:portable::sub_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9628:portable::sub_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9629:portable::sub_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9630:portable::store_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9631:portable::store_src_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9632:portable::store_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9633:portable::store_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9634:portable::store_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9635:portable::store_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9636:portable::store_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9637:portable::store_r8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9638:portable::store_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9639:portable::store_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9640:portable::store_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9641:portable::store_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9642:portable::store_device_xy01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9643:portable::store_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9644:portable::store_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9645:portable::store_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9646:portable::store_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9647:portable::store_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9648:portable::store_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9649:portable::store_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9650:portable::store_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9651:portable::store_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9652:portable::store_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9653:portable::store_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9654:portable::store_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9655:portable::start_pipeline\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkRasterPipelineStage*\2c\20SkSpan\2c\20unsigned\20char*\29 +9656:portable::stack_rewind\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9657:portable::stack_checkpoint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9658:portable::srcover_rgba_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9659:portable::srcover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9660:portable::srcout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9661:portable::srcin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9662:portable::srcatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9663:portable::sqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9664:portable::splat_4_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9665:portable::splat_3_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9666:portable::splat_2_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9667:portable::softlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9668:portable::smoothstep_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9669:portable::sin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9670:portable::shuffle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9671:portable::set_base_pointer\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9672:portable::seed_shader\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9673:portable::screen\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9674:portable::scale_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9675:portable::scale_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9676:portable::scale_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9677:portable::scale_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9678:portable::saturation\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9679:portable::rgb_to_hsl\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9680:portable::repeat_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9681:portable::repeat_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9682:portable::repeat_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9683:portable::refract_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9684:portable::reenable_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9685:portable::premul_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9686:portable::premul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9687:portable::pow_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9688:portable::plus_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9689:portable::perlin_noise\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9690:portable::parametric\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9691:portable::overlay\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9692:portable::ootf\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9693:portable::negate_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9694:portable::multiply\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9695:portable::mul_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9696:portable::mul_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9697:portable::mul_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9698:portable::mul_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9699:portable::mul_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9700:portable::mul_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9701:portable::mul_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9702:portable::mul_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9703:portable::mul_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9704:portable::mul_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9705:portable::mul_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9706:portable::mul_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9707:portable::move_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9708:portable::move_dst_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9709:portable::modulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9710:portable::mod_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9711:portable::mod_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9712:portable::mod_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9713:portable::mod_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9714:portable::mod_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9715:portable::mix_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9716:portable::mix_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9717:portable::mix_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9718:portable::mix_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9719:portable::mix_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9720:portable::mix_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9721:portable::mix_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9722:portable::mix_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9723:portable::mix_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9724:portable::mix_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9725:portable::mirror_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9726:portable::mirror_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9727:portable::mirror_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9728:portable::mipmap_linear_update\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9729:portable::mipmap_linear_init\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9730:portable::mipmap_linear_finish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9731:portable::min_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9732:portable::min_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9733:portable::min_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9734:portable::min_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9735:portable::min_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9736:portable::min_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9737:portable::min_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9738:portable::min_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9739:portable::min_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9740:portable::min_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9741:portable::min_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9742:portable::min_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9743:portable::min_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9744:portable::min_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9745:portable::min_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9746:portable::min_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9747:portable::merge_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9748:portable::merge_inv_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9749:portable::merge_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9750:portable::max_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9751:portable::max_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9752:portable::max_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9753:portable::max_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9754:portable::max_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9755:portable::max_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9756:portable::max_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9757:portable::max_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9758:portable::max_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9759:portable::max_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9760:portable::max_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9761:portable::max_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9762:portable::max_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9763:portable::max_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9764:portable::max_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9765:portable::max_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9766:portable::matrix_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9767:portable::matrix_scale_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9768:portable::matrix_perspective\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9769:portable::matrix_multiply_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9770:portable::matrix_multiply_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9771:portable::matrix_multiply_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9772:portable::matrix_4x5\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9773:portable::matrix_4x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9774:portable::matrix_3x4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9775:portable::matrix_3x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9776:portable::matrix_2x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9777:portable::mask_off_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9778:portable::mask_off_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9779:portable::mask_2pt_conical_nan\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9780:portable::mask_2pt_conical_degenerates\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9781:portable::luminosity\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9782:portable::log_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9783:portable::log2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9784:portable::load_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9785:portable::load_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9786:portable::load_rgf16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9787:portable::load_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9788:portable::load_rg88_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9789:portable::load_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9790:portable::load_rg1616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9791:portable::load_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9792:portable::load_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9793:portable::load_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9794:portable::load_f32_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9795:portable::load_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9796:portable::load_f16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9797:portable::load_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9798:portable::load_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9799:portable::load_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9800:portable::load_af16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9801:portable::load_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9802:portable::load_a8_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9803:portable::load_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9804:portable::load_a16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9805:portable::load_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9806:portable::load_8888_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9807:portable::load_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9808:portable::load_565_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9809:portable::load_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9810:portable::load_4444_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9811:portable::load_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9812:portable::load_16161616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9813:portable::load_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9814:portable::load_10x6_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9815:portable::load_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9816:portable::load_1010102_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9817:portable::load_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9818:portable::load_1010102_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9819:portable::load_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9820:portable::load_10101010_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9821:portable::load_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9822:portable::lighten\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9823:portable::lerp_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9824:portable::lerp_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9825:portable::lerp_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9826:portable::lerp_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9827:portable::just_return\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9828:portable::jump\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9829:portable::invsqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9830:portable::invsqrt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9831:portable::invsqrt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9832:portable::invsqrt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9833:portable::inverse_mat4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9834:portable::inverse_mat3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9835:portable::inverse_mat2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9836:portable::init_lane_masks\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9837:portable::hue\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9838:portable::hsl_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9839:portable::hardlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9840:portable::gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9841:portable::gauss_a_to_rgba\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9842:portable::gather_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9843:portable::gather_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9844:portable::gather_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9845:portable::gather_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9846:portable::gather_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9847:portable::gather_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9848:portable::gather_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9849:portable::gather_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9850:portable::gather_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9851:portable::gather_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9852:portable::gather_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9853:portable::gather_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9854:portable::gather_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9855:portable::gather_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9856:portable::gather_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9857:portable::gather_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9858:portable::gamma_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9859:portable::force_opaque_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9860:portable::force_opaque\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9861:portable::floor_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9862:portable::floor_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9863:portable::floor_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9864:portable::floor_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9865:portable::exp_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9866:portable::exp2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9867:portable::exclusion\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9868:portable::exchange_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9869:portable::evenly_spaced_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9870:portable::evenly_spaced_2_stop_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9871:portable::emboss\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9872:portable::dstover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9873:portable::dstout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9874:portable::dstin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9875:portable::dstatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9876:portable::dot_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9877:portable::dot_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9878:portable::dot_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9879:portable::div_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9880:portable::div_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9881:portable::div_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9882:portable::div_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9883:portable::div_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9884:portable::div_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9885:portable::div_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9886:portable::div_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9887:portable::div_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9888:portable::div_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9889:portable::div_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9890:portable::div_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9891:portable::div_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9892:portable::div_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9893:portable::div_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9894:portable::dither\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9895:portable::difference\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9896:portable::decal_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9897:portable::decal_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9898:portable::decal_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9899:portable::debug_r_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9900:portable::debug_g_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9901:portable::debug_b_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9902:portable::debug_b\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9903:portable::debug_a_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9904:portable::debug_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9905:portable::darken\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9906:portable::css_oklab_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9907:portable::css_oklab_gamut_map_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9908:portable::css_lab_to_xyz\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9909:portable::css_hwb_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9910:portable::css_hsl_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9911:portable::css_hcl_to_lab\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9912:portable::cos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9913:portable::copy_uniform\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9914:portable::copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9915:portable::copy_slot_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9916:portable::copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9917:portable::copy_immutable_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9918:portable::copy_constant\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9919:portable::copy_4_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9920:portable::copy_4_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9921:portable::copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9922:portable::copy_4_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9923:portable::copy_3_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9924:portable::copy_3_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9925:portable::copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9926:portable::copy_3_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9927:portable::copy_2_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9928:portable::copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9929:portable::continue_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9930:portable::colordodge\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9931:portable::colorburn\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9932:portable::color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9933:portable::cmpne_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9934:portable::cmpne_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9935:portable::cmpne_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9936:portable::cmpne_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9937:portable::cmpne_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9938:portable::cmpne_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9939:portable::cmpne_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9940:portable::cmpne_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9941:portable::cmpne_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9942:portable::cmpne_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9943:portable::cmpne_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9944:portable::cmpne_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9945:portable::cmplt_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9946:portable::cmplt_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9947:portable::cmplt_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9948:portable::cmplt_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9949:portable::cmplt_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9950:portable::cmplt_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9951:portable::cmplt_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9952:portable::cmplt_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9953:portable::cmplt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9954:portable::cmplt_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9955:portable::cmplt_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9956:portable::cmplt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9957:portable::cmplt_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9958:portable::cmplt_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9959:portable::cmplt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9960:portable::cmplt_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9961:portable::cmplt_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9962:portable::cmplt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9963:portable::cmple_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9964:portable::cmple_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9965:portable::cmple_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9966:portable::cmple_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9967:portable::cmple_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9968:portable::cmple_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9969:portable::cmple_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9970:portable::cmple_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9971:portable::cmple_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9972:portable::cmple_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9973:portable::cmple_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9974:portable::cmple_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9975:portable::cmple_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9976:portable::cmple_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9977:portable::cmple_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9978:portable::cmple_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9979:portable::cmple_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9980:portable::cmple_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9981:portable::cmpeq_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9982:portable::cmpeq_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9983:portable::cmpeq_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9984:portable::cmpeq_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9985:portable::cmpeq_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9986:portable::cmpeq_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9987:portable::cmpeq_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9988:portable::cmpeq_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9989:portable::cmpeq_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9990:portable::cmpeq_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9991:portable::cmpeq_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9992:portable::cmpeq_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9993:portable::clear\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9994:portable::clamp_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9995:portable::clamp_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9996:portable::clamp_gamut\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9997:portable::clamp_a_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9998:portable::clamp_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +9999:portable::ceil_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10000:portable::ceil_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10001:portable::ceil_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10002:portable::ceil_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10003:portable::cast_to_uint_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10004:portable::cast_to_uint_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10005:portable::cast_to_uint_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10006:portable::cast_to_uint_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10007:portable::cast_to_int_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10008:portable::cast_to_int_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10009:portable::cast_to_int_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10010:portable::cast_to_int_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10011:portable::cast_to_float_from_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10012:portable::cast_to_float_from_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10013:portable::cast_to_float_from_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10014:portable::cast_to_float_from_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10015:portable::cast_to_float_from_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10016:portable::cast_to_float_from_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10017:portable::cast_to_float_from_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10018:portable::cast_to_float_from_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10019:portable::case_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10020:portable::callback\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10021:portable::byte_tables\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10022:portable::bt709_luminance_or_luma_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10023:portable::bt709_luminance_or_luma_to_alpha\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10024:portable::branch_if_no_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10025:portable::branch_if_no_active_lanes_eq\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10026:portable::branch_if_any_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10027:portable::branch_if_all_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10028:portable::blit_row_s32a_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +10029:portable::black_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10030:portable::bitwise_xor_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10031:portable::bitwise_xor_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10032:portable::bitwise_xor_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10033:portable::bitwise_xor_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10034:portable::bitwise_xor_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10035:portable::bitwise_xor_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10036:portable::bitwise_or_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10037:portable::bitwise_or_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10038:portable::bitwise_or_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10039:portable::bitwise_or_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10040:portable::bitwise_or_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10041:portable::bitwise_and_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10042:portable::bitwise_and_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10043:portable::bitwise_and_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10044:portable::bitwise_and_imm_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10045:portable::bitwise_and_imm_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10046:portable::bitwise_and_imm_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10047:portable::bitwise_and_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10048:portable::bitwise_and_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10049:portable::bitwise_and_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10050:portable::bilinear_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10051:portable::bilinear_py\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10052:portable::bilinear_px\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10053:portable::bilinear_ny\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10054:portable::bilinear_nx\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10055:portable::bicubic_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10056:portable::bicubic_p3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10057:portable::bicubic_p3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10058:portable::bicubic_p1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10059:portable::bicubic_p1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10060:portable::bicubic_n3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10061:portable::bicubic_n3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10062:portable::bicubic_n1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10063:portable::bicubic_n1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10064:portable::bicubic_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10065:portable::atan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10066:portable::atan2_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10067:portable::asin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10068:portable::alter_2pt_conical_unswap\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10069:portable::alter_2pt_conical_compensate_focal\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10070:portable::alpha_to_red_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10071:portable::alpha_to_red\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10072:portable::alpha_to_gray_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10073:portable::alpha_to_gray\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10074:portable::add_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10075:portable::add_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10076:portable::add_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10077:portable::add_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10078:portable::add_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10079:portable::add_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10080:portable::add_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10081:portable::add_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10082:portable::add_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10083:portable::add_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10084:portable::add_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10085:portable::add_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10086:portable::acos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10087:portable::accumulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10088:portable::abs_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10089:portable::abs_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10090:portable::abs_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10091:portable::abs_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10092:portable::RGBA_to_rgbA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +10093:portable::RGBA_to_bgrA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +10094:portable::RGBA_to_BGRA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +10095:portable::PQish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10096:portable::HLGish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10097:portable::HLGinvish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10098:pop_arg_long_double +10099:png_read_filter_row_up +10100:png_read_filter_row_sub +10101:png_read_filter_row_paeth_multibyte_pixel +10102:png_read_filter_row_paeth_1byte_pixel +10103:png_read_filter_row_avg +10104:picture_getCullRect +10105:picture_dispose +10106:picture_approximateBytesUsed +10107:pictureRecorder_endRecording +10108:pictureRecorder_dispose +10109:pictureRecorder_create +10110:pictureRecorder_beginRecording +10111:path_transform +10112:path_setFillType +10113:path_reset +10114:path_relativeQuadraticBezierTo +10115:path_relativeMoveTo +10116:path_relativeLineTo +10117:path_relativeCubicTo +10118:path_relativeConicTo +10119:path_relativeArcToRotated +10120:path_moveTo +10121:path_getSvgString +10122:path_getFillType +10123:path_getBounds +10124:path_dispose +10125:path_create +10126:path_copy +10127:path_contains +10128:path_combine +10129:path_close +10130:path_arcToRotated +10131:path_arcToOval +10132:path_addRect +10133:path_addRRect +10134:path_addPolygon +10135:path_addPath +10136:path_addOval +10137:path_addArc +10138:paragraph_layout +10139:paragraph_getWordBoundary +10140:paragraph_getWidth +10141:paragraph_getUnresolvedCodePoints +10142:paragraph_getPositionForOffset +10143:paragraph_getMinIntrinsicWidth +10144:paragraph_getMaxIntrinsicWidth +10145:paragraph_getLongestLine +10146:paragraph_getLineNumberAt +10147:paragraph_getLineMetricsAtIndex +10148:paragraph_getLineCount +10149:paragraph_getIdeographicBaseline +10150:paragraph_getHeight +10151:paragraph_getGlyphInfoAt +10152:paragraph_getDidExceedMaxLines +10153:paragraph_getClosestGlyphInfoAtCoordinate +10154:paragraph_getBoxesForRange +10155:paragraph_getBoxesForPlaceholders +10156:paragraph_getAlphabeticBaseline +10157:paragraph_dispose +10158:paragraphStyle_setTextStyle +10159:paragraphStyle_setTextHeightBehavior +10160:paragraphStyle_setTextDirection +10161:paragraphStyle_setTextAlign +10162:paragraphStyle_setStrutStyle +10163:paragraphStyle_setMaxLines +10164:paragraphStyle_setHeight +10165:paragraphStyle_setEllipsis +10166:paragraphStyle_setApplyRoundingHack +10167:paragraphStyle_dispose +10168:paragraphStyle_create +10169:paragraphBuilder_setWordBreaksUtf16 +10170:paragraphBuilder_setLineBreaksUtf16 +10171:paragraphBuilder_setGraphemeBreaksUtf16 +10172:paragraphBuilder_pushStyle +10173:paragraphBuilder_pop +10174:paragraphBuilder_getUtf8Text +10175:paragraphBuilder_dispose +10176:paragraphBuilder_create +10177:paragraphBuilder_build +10178:paragraphBuilder_addText +10179:paragraphBuilder_addPlaceholder +10180:paint_setShader +10181:paint_setMaskFilter +10182:paint_setImageFilter +10183:paint_setColorFilter +10184:paint_dispose +10185:paint_create +10186:override_features_khmer\28hb_ot_shape_planner_t*\29 +10187:override_features_indic\28hb_ot_shape_planner_t*\29 +10188:override_features_hangul\28hb_ot_shape_planner_t*\29 +10189:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_15590 +10190:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +10191:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_15492 +10192:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +10193:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11279 +10194:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11278 +10195:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11276 +10196:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +10197:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +10198:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +10199:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_12183 +10200:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +10201:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +10202:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11472 +10203:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +10204:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +10205:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10503 +10206:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +10207:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +10208:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +10209:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +10210:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +10211:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29_10145 +10212:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29 +10213:non-virtual\20thunk\20to\20GrOpFlushState::writeView\28\29\20const +10214:non-virtual\20thunk\20to\20GrOpFlushState::usesMSAASurface\28\29\20const +10215:non-virtual\20thunk\20to\20GrOpFlushState::threadSafeCache\28\29\20const +10216:non-virtual\20thunk\20to\20GrOpFlushState::strikeCache\28\29\20const +10217:non-virtual\20thunk\20to\20GrOpFlushState::smallPathAtlasManager\28\29\20const +10218:non-virtual\20thunk\20to\20GrOpFlushState::sampledProxyArray\28\29 +10219:non-virtual\20thunk\20to\20GrOpFlushState::rtProxy\28\29\20const +10220:non-virtual\20thunk\20to\20GrOpFlushState::resourceProvider\28\29\20const +10221:non-virtual\20thunk\20to\20GrOpFlushState::renderPassBarriers\28\29\20const +10222:non-virtual\20thunk\20to\20GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +10223:non-virtual\20thunk\20to\20GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +10224:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndirectDraws\28int\29 +10225:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndices\28int\29 +10226:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +10227:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +10228:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +10229:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +10230:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +10231:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +10232:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +10233:non-virtual\20thunk\20to\20GrOpFlushState::dstProxyView\28\29\20const +10234:non-virtual\20thunk\20to\20GrOpFlushState::detachAppliedClip\28\29 +10235:non-virtual\20thunk\20to\20GrOpFlushState::colorLoadOp\28\29\20const +10236:non-virtual\20thunk\20to\20GrOpFlushState::caps\28\29\20const +10237:non-virtual\20thunk\20to\20GrOpFlushState::atlasManager\28\29\20const +10238:non-virtual\20thunk\20to\20GrOpFlushState::appliedClip\28\29\20const +10239:non-virtual\20thunk\20to\20GrGpuBuffer::unref\28\29\20const +10240:non-virtual\20thunk\20to\20GrGpuBuffer::ref\28\29\20const +10241:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_12954 +10242:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +10243:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onSetLabel\28\29 +10244:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +10245:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +10246:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +10247:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +10248:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::backendFormat\28\29\20const +10249:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_11204 +10250:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +10251:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +10252:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +10253:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::dstColor\28\29 +10254:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29_12583 +10255:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29 +10256:maskFilter_dispose +10257:maskFilter_createBlur +10258:line_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10259:line_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10260:lineMetrics_getWidth +10261:lineMetrics_getUnscaledAscent +10262:lineMetrics_getLeft +10263:lineMetrics_getHeight +10264:lineMetrics_getDescent +10265:lineMetrics_getBaseline +10266:lineMetrics_getAscent +10267:lineMetrics_dispose +10268:lineMetrics_create +10269:lineBreakBuffer_free +10270:lineBreakBuffer_create +10271:lin_srgb_to_okhcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +10272:lcd_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +10273:is_deleted_glyph\28hb_glyph_info_t\20const*\29 +10274:initial_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10275:image_ref +10276:image_dispose +10277:image_createFromTextureSource +10278:image_createFromPixels +10279:image_createFromPicture +10280:imageFilter_getFilterBounds +10281:imageFilter_dispose +10282:imageFilter_createMatrix +10283:imageFilter_createFromColorFilter +10284:imageFilter_createErode +10285:imageFilter_createDilate +10286:imageFilter_createBlur +10287:imageFilter_compose +10288:hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +10289:hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +10290:hb_unicode_script_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +10291:hb_unicode_general_category_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +10292:hb_ucd_script\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +10293:hb_ucd_mirroring\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +10294:hb_ucd_general_category\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +10295:hb_ucd_decompose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +10296:hb_ucd_compose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10297:hb_ucd_combining_class\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +10298:hb_syllabic_clear_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10299:hb_paint_sweep_gradient_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10300:hb_paint_push_transform_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10301:hb_paint_push_clip_rectangle_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10302:hb_paint_image_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +10303:hb_paint_extents_push_transform\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10304:hb_paint_extents_push_group\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +10305:hb_paint_extents_push_clip_rectangle\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10306:hb_paint_extents_push_clip_glyph\28hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_font_t*\2c\20void*\29 +10307:hb_paint_extents_pop_transform\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +10308:hb_paint_extents_pop_group\28hb_paint_funcs_t*\2c\20void*\2c\20hb_paint_composite_mode_t\2c\20void*\29 +10309:hb_paint_extents_pop_clip\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +10310:hb_paint_extents_paint_sweep_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10311:hb_paint_extents_paint_image\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +10312:hb_paint_extents_paint_color\28hb_paint_funcs_t*\2c\20void*\2c\20int\2c\20unsigned\20int\2c\20void*\29 +10313:hb_outline_recording_pen_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10314:hb_outline_recording_pen_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +10315:hb_outline_recording_pen_line_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +10316:hb_outline_recording_pen_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10317:hb_outline_recording_pen_close_path\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +10318:hb_ot_shape_normalize_context_t::decompose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +10319:hb_ot_shape_normalize_context_t::compose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10320:hb_ot_paint_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +10321:hb_ot_map_t::lookup_map_t::cmp\28void\20const*\2c\20void\20const*\29 +10322:hb_ot_map_t::feature_map_t::cmp\28void\20const*\2c\20void\20const*\29 +10323:hb_ot_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +10324:hb_ot_get_variation_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10325:hb_ot_get_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +10326:hb_ot_get_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10327:hb_ot_get_glyph_v_origin\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +10328:hb_ot_get_glyph_v_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +10329:hb_ot_get_glyph_name\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +10330:hb_ot_get_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +10331:hb_ot_get_glyph_from_name\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +10332:hb_ot_get_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +10333:hb_ot_get_font_v_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +10334:hb_ot_get_font_h_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +10335:hb_ot_draw_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +10336:hb_font_paint_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +10337:hb_font_paint_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +10338:hb_font_get_variation_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10339:hb_font_get_nominal_glyphs_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +10340:hb_font_get_nominal_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10341:hb_font_get_nominal_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10342:hb_font_get_glyph_v_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +10343:hb_font_get_glyph_v_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +10344:hb_font_get_glyph_v_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +10345:hb_font_get_glyph_v_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +10346:hb_font_get_glyph_v_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +10347:hb_font_get_glyph_v_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +10348:hb_font_get_glyph_name_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +10349:hb_font_get_glyph_name_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +10350:hb_font_get_glyph_h_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +10351:hb_font_get_glyph_h_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +10352:hb_font_get_glyph_h_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +10353:hb_font_get_glyph_h_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +10354:hb_font_get_glyph_h_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +10355:hb_font_get_glyph_h_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +10356:hb_font_get_glyph_from_name_default\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +10357:hb_font_get_glyph_extents_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +10358:hb_font_get_glyph_extents_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +10359:hb_font_get_glyph_contour_point_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +10360:hb_font_get_glyph_contour_point_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +10361:hb_font_get_font_v_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +10362:hb_font_get_font_h_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +10363:hb_font_draw_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +10364:hb_draw_quadratic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10365:hb_draw_quadratic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10366:hb_draw_move_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +10367:hb_draw_line_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +10368:hb_draw_extents_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10369:hb_draw_extents_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10370:hb_draw_cubic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +10371:hb_draw_close_path_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +10372:hb_buffer_t::_cluster_group_func\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29 +10373:hb_aat_map_builder_t::feature_event_t::cmp\28void\20const*\2c\20void\20const*\29 +10374:gray_raster_render +10375:gray_raster_new +10376:gray_raster_done +10377:gray_move_to +10378:gray_line_to +10379:gray_cubic_to +10380:gray_conic_to +10381:get_sfnt_table +10382:ft_smooth_transform +10383:ft_smooth_set_mode +10384:ft_smooth_render +10385:ft_smooth_overlap_spans +10386:ft_smooth_lcd_spans +10387:ft_smooth_init +10388:ft_smooth_get_cbox +10389:ft_gzip_free +10390:ft_ansi_stream_io +10391:ft_ansi_stream_close +10392:fquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +10393:fontCollection_registerTypeface +10394:fontCollection_dispose +10395:fontCollection_create +10396:fontCollection_clearCaches +10397:fmt_fp +10398:flutter::ToSk\28flutter::DlColorSource\20const*\29::$_1::__invoke\28void\20const*\2c\20void*\29 +10399:flutter::DlTextSkia::~DlTextSkia\28\29_1500 +10400:flutter::DlTextSkia::GetBounds\28\29\20const +10401:flutter::DlSweepGradientColorSource::shared\28\29\20const +10402:flutter::DlSweepGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +10403:flutter::DlSrgbToLinearGammaColorFilter::shared\28\29\20const +10404:flutter::DlSkPaintDispatchHelper::setStrokeWidth\28float\29 +10405:flutter::DlSkPaintDispatchHelper::setStrokeMiter\28float\29 +10406:flutter::DlSkPaintDispatchHelper::setStrokeJoin\28flutter::DlStrokeJoin\29 +10407:flutter::DlSkPaintDispatchHelper::setStrokeCap\28flutter::DlStrokeCap\29 +10408:flutter::DlSkPaintDispatchHelper::setMaskFilter\28flutter::DlMaskFilter\20const*\29 +10409:flutter::DlSkPaintDispatchHelper::setInvertColors\28bool\29 +10410:flutter::DlSkPaintDispatchHelper::setImageFilter\28flutter::DlImageFilter\20const*\29 +10411:flutter::DlSkPaintDispatchHelper::setDrawStyle\28flutter::DlDrawStyle\29 +10412:flutter::DlSkPaintDispatchHelper::setColor\28flutter::DlColor\29 +10413:flutter::DlSkPaintDispatchHelper::setColorSource\28flutter::DlColorSource\20const*\29 +10414:flutter::DlSkPaintDispatchHelper::setColorFilter\28flutter::DlColorFilter\20const*\29 +10415:flutter::DlSkPaintDispatchHelper::setBlendMode\28impeller::BlendMode\29 +10416:flutter::DlSkPaintDispatchHelper::setAntiAlias\28bool\29 +10417:flutter::DlSkCanvasDispatcher::translate\28float\2c\20float\29 +10418:flutter::DlSkCanvasDispatcher::transformReset\28\29 +10419:flutter::DlSkCanvasDispatcher::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +10420:flutter::DlSkCanvasDispatcher::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +10421:flutter::DlSkCanvasDispatcher::skew\28float\2c\20float\29 +10422:flutter::DlSkCanvasDispatcher::scale\28float\2c\20float\29 +10423:flutter::DlSkCanvasDispatcher::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +10424:flutter::DlSkCanvasDispatcher::rotate\28float\29 +10425:flutter::DlSkCanvasDispatcher::drawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\29 +10426:flutter::DlSkCanvasDispatcher::drawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\29 +10427:flutter::DlSkCanvasDispatcher::drawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +10428:flutter::DlSkCanvasDispatcher::drawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\29 +10429:flutter::DlSkCanvasDispatcher::drawRoundRect\28impeller::RoundRect\20const&\29 +10430:flutter::DlSkCanvasDispatcher::drawRect\28impeller::TRect\20const&\29 +10431:flutter::DlSkCanvasDispatcher::drawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\29 +10432:flutter::DlSkCanvasDispatcher::drawPath\28flutter::DlPath\20const&\29 +10433:flutter::DlSkCanvasDispatcher::drawPaint\28\29 +10434:flutter::DlSkCanvasDispatcher::drawOval\28impeller::TRect\20const&\29 +10435:flutter::DlSkCanvasDispatcher::drawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +10436:flutter::DlSkCanvasDispatcher::drawImage\28sk_sp\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20bool\29 +10437:flutter::DlSkCanvasDispatcher::drawImageRect\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20bool\2c\20flutter::DlSrcRectConstraint\29 +10438:flutter::DlSkCanvasDispatcher::drawImageNine\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20bool\29 +10439:flutter::DlSkCanvasDispatcher::drawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\29 +10440:flutter::DlSkCanvasDispatcher::drawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\29 +10441:flutter::DlSkCanvasDispatcher::drawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +10442:flutter::DlSkCanvasDispatcher::drawCircle\28impeller::TPoint\20const&\2c\20float\29 +10443:flutter::DlSkCanvasDispatcher::drawAtlas\28sk_sp\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20bool\29 +10444:flutter::DlSkCanvasDispatcher::drawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\29 +10445:flutter::DlSkCanvasDispatcher::clipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10446:flutter::DlSkCanvasDispatcher::clipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10447:flutter::DlSkCanvasDispatcher::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10448:flutter::DlSkCanvasDispatcher::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10449:flutter::DlSkCanvasDispatcher::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10450:flutter::DlRuntimeEffectColorSource::~DlRuntimeEffectColorSource\28\29_1599 +10451:flutter::DlRuntimeEffectColorSource::shared\28\29\20const +10452:flutter::DlRuntimeEffectColorSource::isUIThreadSafe\28\29\20const +10453:flutter::DlRuntimeEffectColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +10454:flutter::DlRadialGradientColorSource::size\28\29\20const +10455:flutter::DlRadialGradientColorSource::shared\28\29\20const +10456:flutter::DlRadialGradientColorSource::pod\28\29\20const +10457:flutter::DlRadialGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +10458:flutter::DlRTree::~DlRTree\28\29_1781 +10459:flutter::DlPath::~DlPath\28\29_8569 +10460:flutter::DlPath::IsConvex\28\29\20const +10461:flutter::DlPath::GetFillType\28\29\20const +10462:flutter::DlPath::GetBounds\28\29\20const +10463:flutter::DlPath::Dispatch\28impeller::PathReceiver&\29\20const +10464:flutter::DlOpReceiver::save\28unsigned\20int\29 +10465:flutter::DlOpReceiver::saveLayer\28impeller::TRect\20const*\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +10466:flutter::DlOpReceiver::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\20const&\2c\20unsigned\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +10467:flutter::DlMatrixImageFilter::size\28\29\20const +10468:flutter::DlMatrixImageFilter::shared\28\29\20const +10469:flutter::DlMatrixImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +10470:flutter::DlMatrixImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +10471:flutter::DlMatrixImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +10472:flutter::DlMatrixImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +10473:flutter::DlMatrixColorFilter::shared\28\29\20const +10474:flutter::DlMatrixColorFilter::modifies_transparent_black\28\29\20const +10475:flutter::DlMatrixColorFilter::equals_\28flutter::DlColorFilter\20const&\29\20const +10476:flutter::DlMatrixColorFilter::can_commute_with_opacity\28\29\20const +10477:flutter::DlLocalMatrixImageFilter::~DlLocalMatrixImageFilter\28\29_1746 +10478:flutter::DlLocalMatrixImageFilter::~DlLocalMatrixImageFilter\28\29 +10479:flutter::DlLocalMatrixImageFilter::size\28\29\20const +10480:flutter::DlLocalMatrixImageFilter::shared\28\29\20const +10481:flutter::DlLocalMatrixImageFilter::modifies_transparent_black\28\29\20const +10482:flutter::DlLocalMatrixImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +10483:flutter::DlLocalMatrixImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +10484:flutter::DlLocalMatrixImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +10485:flutter::DlLocalMatrixImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +10486:flutter::DlLinearToSrgbGammaColorFilter::shared\28\29\20const +10487:flutter::DlLinearGradientColorSource::shared\28\29\20const +10488:flutter::DlLinearGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +10489:flutter::DlImageSkia::isTextureBacked\28\29\20const +10490:flutter::DlImageSkia::isOpaque\28\29\20const +10491:flutter::DlImageSkia::GetSize\28\29\20const +10492:flutter::DlImageSkia::GetApproximateByteSize\28\29\20const +10493:flutter::DlImageFilter::makeWithLocalMatrix\28impeller::Matrix\20const&\29\20const +10494:flutter::DlImageColorSource::~DlImageColorSource\28\29_1566 +10495:flutter::DlImageColorSource::~DlImageColorSource\28\29 +10496:flutter::DlImageColorSource::shared\28\29\20const +10497:flutter::DlImageColorSource::is_opaque\28\29\20const +10498:flutter::DlImageColorSource::isUIThreadSafe\28\29\20const +10499:flutter::DlImageColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +10500:flutter::DlImage::get_error\28\29\20const +10501:flutter::DlGradientColorSourceBase::is_opaque\28\29\20const +10502:flutter::DlErodeImageFilter::shared\28\29\20const +10503:flutter::DlErodeImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +10504:flutter::DlDilateImageFilter::shared\28\29\20const +10505:flutter::DlDilateImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +10506:flutter::DlConicalGradientColorSource::size\28\29\20const +10507:flutter::DlConicalGradientColorSource::shared\28\29\20const +10508:flutter::DlConicalGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +10509:flutter::DlComposeImageFilter::~DlComposeImageFilter\28\29_1702 +10510:flutter::DlComposeImageFilter::size\28\29\20const +10511:flutter::DlComposeImageFilter::shared\28\29\20const +10512:flutter::DlComposeImageFilter::modifies_transparent_black\28\29\20const +10513:flutter::DlComposeImageFilter::matrix_capability\28\29\20const +10514:flutter::DlComposeImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +10515:flutter::DlComposeImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +10516:flutter::DlComposeImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +10517:flutter::DlComposeImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +10518:flutter::DlColorFilterImageFilter::~DlColorFilterImageFilter\28\29_1686 +10519:flutter::DlColorFilterImageFilter::~DlColorFilterImageFilter\28\29 +10520:flutter::DlColorFilterImageFilter::shared\28\29\20const +10521:flutter::DlColorFilterImageFilter::modifies_transparent_black\28\29\20const +10522:flutter::DlColorFilterImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +10523:flutter::DlColorFilterImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +10524:flutter::DlCanvas::DrawImageRect\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\2c\20flutter::DlSrcRectConstraint\29 +10525:flutter::DlBlurMaskFilter::equals_\28flutter::DlMaskFilter\20const&\29\20const +10526:flutter::DlBlurImageFilter::shared\28\29\20const +10527:flutter::DlBlurImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +10528:flutter::DlBlurImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +10529:flutter::DlBlurImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +10530:flutter::DlBlendColorFilter::shared\28\29\20const +10531:flutter::DlBlendColorFilter::modifies_transparent_black\28\29\20const +10532:flutter::DlBlendColorFilter::equals_\28flutter::DlColorFilter\20const&\29\20const +10533:flutter::DlBlendColorFilter::can_commute_with_opacity\28\29\20const +10534:flutter::DisplayListBuilder::transformReset\28\29 +10535:flutter::DisplayListBuilder::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +10536:flutter::DisplayListBuilder::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +10537:flutter::DisplayListBuilder::drawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +10538:flutter::DisplayListBuilder::drawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +10539:flutter::DisplayListBuilder::clipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10540:flutter::DisplayListBuilder::clipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10541:flutter::DisplayListBuilder::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10542:flutter::DisplayListBuilder::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10543:flutter::DisplayListBuilder::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +10544:flutter::DisplayListBuilder::GetMatrix\28\29\20const +10545:flutter::DisplayListBuilder::GetDestinationClipCoverage\28\29\20const +10546:flutter::DisplayList::~DisplayList\28\29_1145 +10547:fline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +10548:final_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10549:fcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +10550:fconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +10551:error_callback +10552:emscripten_stack_get_current +10553:dquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +10554:dline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +10555:dispose_external_texture\28void*\29 +10556:decompose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +10557:decompose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +10558:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::Make\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20bool\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10559:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\2c\20GrShaderCaps\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::\28anonymous\20namespace\29::HullShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10560:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10561:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10562:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&>\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathTessellator::PathDrawList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10563:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29>\28skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20sk_sp\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10564:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Make\28SkArenaAlloc*\2c\20GrAAType\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10565:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerSkyline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10566:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerPow2&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10567:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::ThreeBoxApproxPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10568:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc>\28\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TextureOpImpl::Desc&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10569:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TentPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10570:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::SimpleTriangleShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10571:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader\2c\20bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*\2c\20GrShaderCaps\20const&>\28bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*&&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::DrawAtlasPathShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10572:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&>\28SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::BoundingBoxShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10573:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20unsigned\20char&&\29::'lambda'\28void*\29>\28Sprite_D32_S32&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10574:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&&\2c\20bool\20const&\29::'lambda'\28void*\29>\28SkTriColorShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10575:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTCubic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10576:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTConic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10577:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\29::'lambda'\28void*\29>\28SkSpriteBlitter_Memcpy&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10578:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&>\28SkPixmap\20const&\2c\20SkArenaAlloc*&\2c\20sk_sp&\29::'lambda'\28void*\29>\28SkRasterPipelineSpriteBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10579:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*&\29::'lambda'\28void*\29>\28SkRasterPipelineBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10580:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkNullBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10581:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkImage_Base\20const*&&\2c\20SkMatrix\20const&\2c\20SkMipmapMode&\29::'lambda'\28void*\29>\28SkMipmapAccessor&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10582:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::PathData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10583:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::DrawableData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10584:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10585:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkCubicEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10586:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\29>>::Node*\20SkArenaAlloc::make&\29>>::Node\2c\20std::__2::function&\29>>\28std::__2::function&\29>&&\29::'lambda'\28void*\29>\28SkArenaAllocList&\29>>::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10587:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node\2c\20std::__2::function&\29>\2c\20skgpu::Token>\28std::__2::function&\29>&&\2c\20skgpu::Token&&\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10588:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node>\28\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10589:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29::'lambda'\28void*\29>\28SkA8_Coverage_Blitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10590:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28GrSimpleMesh&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10591:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29::'lambda'\28void*\29>\28GrResourceAllocator::Register&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10592:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPath\20const&\2c\20SkArenaAlloc*\20const&\29::'lambda'\28void*\29>\28GrInnerFanTriangulator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10593:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldLCDTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20GrDistanceFieldLCDTextGeoProc::DistanceAdjust\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10594:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29>\28GrBitmapTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10595:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrAppliedClip&&\29::'lambda'\28void*\29>\28GrAppliedClip&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10596:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28EllipseGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10597:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28DefaultGeoProc::Make\28SkArenaAlloc*\2c\20unsigned\20int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +10598:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +10599:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +10600:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +10601:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +10602:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +10603:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&\29 +10604:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +10605:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +10606:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +10607:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +10608:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +10609:deallocate_buffer_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10610:ddquad_xy_at_t\28SkDCurve\20const&\2c\20double\29 +10611:ddquad_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +10612:ddline_xy_at_t\28SkDCurve\20const&\2c\20double\29 +10613:ddline_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +10614:ddcubic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +10615:ddcubic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +10616:ddconic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +10617:ddconic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +10618:dconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +10619:data_destroy_use\28void*\29 +10620:data_create_use\28hb_ot_shape_plan_t\20const*\29 +10621:data_create_khmer\28hb_ot_shape_plan_t\20const*\29 +10622:data_create_indic\28hb_ot_shape_plan_t\20const*\29 +10623:data_create_hangul\28hb_ot_shape_plan_t\20const*\29 +10624:cubic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10625:cubic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10626:convert_to_alpha8\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20SkColorSpaceXformSteps\20const&\29 +10627:convert_bytes_to_data +10628:contourMeasure_length +10629:contourMeasure_isClosed +10630:contourMeasure_getSegment +10631:contourMeasure_getPosTan +10632:contourMeasure_dispose +10633:contourMeasureIter_next +10634:contourMeasureIter_dispose +10635:contourMeasureIter_create +10636:conic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10637:conic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10638:compose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10639:compose_hebrew\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10640:compare_ppem +10641:compare_myanmar_order\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +10642:compare_combining_class\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +10643:colorFilter_dispose +10644:colorFilter_createSRGBToLinearGamma +10645:colorFilter_createMode +10646:colorFilter_createMatrix +10647:colorFilter_createLinearToSRGBGamma +10648:collect_features_use\28hb_ot_shape_planner_t*\29 +10649:collect_features_myanmar\28hb_ot_shape_planner_t*\29 +10650:collect_features_khmer\28hb_ot_shape_planner_t*\29 +10651:collect_features_indic\28hb_ot_shape_planner_t*\29 +10652:collect_features_hangul\28hb_ot_shape_planner_t*\29 +10653:collect_features_arabic\28hb_ot_shape_planner_t*\29 +10654:clip\28SkPath\20const&\2c\20SkHalfPlane\20const&\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +10655:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitStatement\28SkSL::Statement\20const&\29 +10656:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +10657:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitExpression\28SkSL::Expression\20const&\29 +10658:cff_slot_init +10659:cff_slot_done +10660:cff_size_request +10661:cff_size_init +10662:cff_size_done +10663:cff_sid_to_glyph_name +10664:cff_set_var_design +10665:cff_set_mm_weightvector +10666:cff_set_mm_blend +10667:cff_set_instance +10668:cff_random +10669:cff_ps_has_glyph_names +10670:cff_ps_get_font_info +10671:cff_ps_get_font_extra +10672:cff_parse_vsindex +10673:cff_parse_private_dict +10674:cff_parse_multiple_master +10675:cff_parse_maxstack +10676:cff_parse_font_matrix +10677:cff_parse_font_bbox +10678:cff_parse_cid_ros +10679:cff_parse_blend +10680:cff_metrics_adjust +10681:cff_hadvance_adjust +10682:cff_get_var_design +10683:cff_get_var_blend +10684:cff_get_standard_encoding +10685:cff_get_ros +10686:cff_get_ps_name +10687:cff_get_name_index +10688:cff_get_mm_weightvector +10689:cff_get_mm_var +10690:cff_get_mm_blend +10691:cff_get_is_cid +10692:cff_get_interface +10693:cff_get_glyph_name +10694:cff_get_cmap_info +10695:cff_get_cid_from_glyph_index +10696:cff_get_advances +10697:cff_free_glyph_data +10698:cff_face_init +10699:cff_face_done +10700:cff_driver_init +10701:cff_done_blend +10702:cff_decoder_prepare +10703:cff_decoder_init +10704:cff_cmap_unicode_init +10705:cff_cmap_unicode_char_next +10706:cff_cmap_unicode_char_index +10707:cff_cmap_encoding_init +10708:cff_cmap_encoding_done +10709:cff_cmap_encoding_char_next +10710:cff_cmap_encoding_char_index +10711:cff_builder_start_point +10712:cf2_free_instance +10713:cf2_decoder_parse_charstrings +10714:cf2_builder_moveTo +10715:cf2_builder_lineTo +10716:cf2_builder_cubeTo +10717:canvas_transform +10718:canvas_saveLayer +10719:canvas_restoreToCount +10720:canvas_quickReject +10721:canvas_getTransform +10722:canvas_getLocalClipBounds +10723:canvas_getDeviceClipBounds +10724:canvas_drawVertices +10725:canvas_drawShadow +10726:canvas_drawRect +10727:canvas_drawRRect +10728:canvas_drawPoints +10729:canvas_drawPicture +10730:canvas_drawPath +10731:canvas_drawParagraph +10732:canvas_drawPaint +10733:canvas_drawOval +10734:canvas_drawLine +10735:canvas_drawImageRect +10736:canvas_drawImageNine +10737:canvas_drawImage +10738:canvas_drawDRRect +10739:canvas_drawColor +10740:canvas_drawCircle +10741:canvas_drawAtlas +10742:canvas_drawArc +10743:canvas_clipRect +10744:canvas_clipRRect +10745:canvas_clipPath +10746:canvas_clear +10747:bw_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +10748:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::SpotVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +10749:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::AmbientVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +10750:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10751:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10752:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10753:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10754:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10755:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10756:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10757:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10758:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10759:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +10760:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10761:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10762:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10763:bool\20OT::cmap::accelerator_t::get_glyph_from_macroman\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10764:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10765:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +10766:blur_y_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10767:blur_y_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10768:blur_y_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10769:blur_y_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10770:blur_x_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10771:blur_x_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10772:blur_x_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10773:blur_x_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +10774:blit_row_s32a_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +10775:blit_row_s32_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +10776:blit_row_s32_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +10777:argb32_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +10778:arabic_fallback_shape\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10779:animatedImage_create +10780:afm_parser_parse +10781:afm_parser_init +10782:afm_parser_done +10783:afm_compare_kern_pairs +10784:af_property_set +10785:af_property_get +10786:af_latin_metrics_scale +10787:af_latin_metrics_init +10788:af_latin_hints_init +10789:af_latin_hints_apply +10790:af_latin_get_standard_widths +10791:af_indic_metrics_scale +10792:af_indic_metrics_init +10793:af_indic_hints_init +10794:af_indic_hints_apply +10795:af_get_interface +10796:af_face_globals_free +10797:af_dummy_hints_init +10798:af_dummy_hints_apply +10799:af_cjk_metrics_init +10800:af_autofitter_load_glyph +10801:af_autofitter_init +10802:action_terminate +10803:action_abort +10804:_hb_ot_font_destroy\28void*\29 +10805:_hb_grapheme_group_func\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29 +10806:_hb_glyph_info_is_default_ignorable\28hb_glyph_info_t\20const*\29 +10807:_hb_face_for_data_reference_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +10808:_hb_face_for_data_get_table_tags\28hb_face_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +10809:_hb_face_for_data_closure_destroy\28void*\29 +10810:_hb_clear_substitution_flags\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10811:_hb_blob_destroy\28void*\29 +10812:_emscripten_wasm_worker_initialize +10813:_emscripten_stack_restore +10814:_emscripten_stack_alloc +10815:__wasm_init_memory +10816:__wasm_call_ctors +10817:__stdio_write +10818:__stdio_seek +10819:__stdio_read +10820:__stdio_close +10821:__fe_getround +10822:__emscripten_stdout_seek +10823:__cxxabiv1::__vmi_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +10824:__cxxabiv1::__vmi_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +10825:__cxxabiv1::__vmi_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +10826:__cxxabiv1::__si_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +10827:__cxxabiv1::__si_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +10828:__cxxabiv1::__si_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +10829:__cxxabiv1::__class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +10830:__cxxabiv1::__class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +10831:__cxxabiv1::__class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +10832:__cxxabiv1::__class_type_info::can_catch\28__cxxabiv1::__shim_type_info\20const*\2c\20void*&\29\20const +10833:\28anonymous\20namespace\29::stream_to_blob\28std::__2::unique_ptr>\29::$_0::__invoke\28void*\29 +10834:\28anonymous\20namespace\29::skhb_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +10835:\28anonymous\20namespace\29::skhb_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10836:\28anonymous\20namespace\29::skhb_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +10837:\28anonymous\20namespace\29::skhb_glyph_h_advance\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +10838:\28anonymous\20namespace\29::skhb_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +10839:\28anonymous\20namespace\29::skhb_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +10840:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29::$_0::__invoke\28void*\29 +10841:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +10842:\28anonymous\20namespace\29::create_sub_hb_font\28SkFont\20const&\2c\20std::__2::unique_ptr>\20const&\29::$_0::__invoke\28void*\29 +10843:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29_5388 +10844:\28anonymous\20namespace\29::YUVPlanesRec::getCategory\28\29\20const +10845:\28anonymous\20namespace\29::YUVPlanesRec::diagnostic_only_getDiscardable\28\29\20const +10846:\28anonymous\20namespace\29::YUVPlanesRec::bytesUsed\28\29\20const +10847:\28anonymous\20namespace\29::YUVPlanesRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +10848:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29_12350 +10849:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29_12328 +10850:\28anonymous\20namespace\29::TriangulatingPathOp::visitProxies\28std::__2::function\20const&\29\20const +10851:\28anonymous\20namespace\29::TriangulatingPathOp::programInfo\28\29 +10852:\28anonymous\20namespace\29::TriangulatingPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10853:\28anonymous\20namespace\29::TriangulatingPathOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10854:\28anonymous\20namespace\29::TriangulatingPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10855:\28anonymous\20namespace\29::TriangulatingPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10856:\28anonymous\20namespace\29::TriangulatingPathOp::name\28\29\20const +10857:\28anonymous\20namespace\29::TriangulatingPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10858:\28anonymous\20namespace\29::TransformedMaskSubRun::unflattenSize\28\29\20const +10859:\28anonymous\20namespace\29::TransformedMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +10860:\28anonymous\20namespace\29::TransformedMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +10861:\28anonymous\20namespace\29::TransformedMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +10862:\28anonymous\20namespace\29::ThreeBoxApproxPass::startBlur\28\29 +10863:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +10864:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +10865:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +10866:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29_12302 +10867:\28anonymous\20namespace\29::TextureOpImpl::visitProxies\28std::__2::function\20const&\29\20const +10868:\28anonymous\20namespace\29::TextureOpImpl::programInfo\28\29 +10869:\28anonymous\20namespace\29::TextureOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +10870:\28anonymous\20namespace\29::TextureOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10871:\28anonymous\20namespace\29::TextureOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10872:\28anonymous\20namespace\29::TextureOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10873:\28anonymous\20namespace\29::TextureOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10874:\28anonymous\20namespace\29::TextureOpImpl::name\28\29\20const +10875:\28anonymous\20namespace\29::TextureOpImpl::fixedFunctionFlags\28\29\20const +10876:\28anonymous\20namespace\29::TextureOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10877:\28anonymous\20namespace\29::TentPass::startBlur\28\29 +10878:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +10879:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +10880:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +10881:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29_12354 +10882:\28anonymous\20namespace\29::StaticVertexAllocator::unlock\28int\29 +10883:\28anonymous\20namespace\29::StaticVertexAllocator::lock\28unsigned\20long\2c\20int\29 +10884:\28anonymous\20namespace\29::SkwasmParagraphPainter::translate\28float\2c\20float\29 +10885:\28anonymous\20namespace\29::SkwasmParagraphPainter::save\28\29 +10886:\28anonymous\20namespace\29::SkwasmParagraphPainter::restore\28\29 +10887:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawTextShadow\28sk_sp\20const&\2c\20float\2c\20float\2c\20unsigned\20int\2c\20float\29 +10888:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20std::__2::variant\20const&\29 +10889:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawRect\28SkRect\20const&\2c\20std::__2::variant\20const&\29 +10890:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawPath\28SkPath\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +10891:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +10892:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawFilledRect\28SkRect\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +10893:\28anonymous\20namespace\29::SkwasmParagraphPainter::clipRect\28SkRect\20const&\29 +10894:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::currentScript\28\29\20const +10895:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::consume\28\29 +10896:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +10897:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +10898:\28anonymous\20namespace\29::SkMorphologyImageFilter::onFilterImage\28skif::Context\20const&\29\20const +10899:\28anonymous\20namespace\29::SkMorphologyImageFilter::getTypeName\28\29\20const +10900:\28anonymous\20namespace\29::SkMorphologyImageFilter::flatten\28SkWriteBuffer&\29\20const +10901:\28anonymous\20namespace\29::SkMorphologyImageFilter::computeFastBounds\28SkRect\20const&\29\20const +10902:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +10903:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +10904:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onFilterImage\28skif::Context\20const&\29\20const +10905:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::getTypeName\28\29\20const +10906:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::flatten\28SkWriteBuffer&\29\20const +10907:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::computeFastBounds\28SkRect\20const&\29\20const +10908:\28anonymous\20namespace\29::SkFTGeometrySink::Quad\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +10909:\28anonymous\20namespace\29::SkFTGeometrySink::Move\28FT_Vector_\20const*\2c\20void*\29 +10910:\28anonymous\20namespace\29::SkFTGeometrySink::Line\28FT_Vector_\20const*\2c\20void*\29 +10911:\28anonymous\20namespace\29::SkFTGeometrySink::Cubic\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +10912:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +10913:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFamilyName\28SkString*\29\20const +10914:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +10915:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateFamilyNameIterator\28\29\20const +10916:\28anonymous\20namespace\29::SkEmptyTypeface::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +10917:\28anonymous\20namespace\29::SkCropImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +10918:\28anonymous\20namespace\29::SkCropImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +10919:\28anonymous\20namespace\29::SkCropImageFilter::onFilterImage\28skif::Context\20const&\29\20const +10920:\28anonymous\20namespace\29::SkCropImageFilter::onAffectsTransparentBlack\28\29\20const +10921:\28anonymous\20namespace\29::SkCropImageFilter::getTypeName\28\29\20const +10922:\28anonymous\20namespace\29::SkCropImageFilter::flatten\28SkWriteBuffer&\29\20const +10923:\28anonymous\20namespace\29::SkCropImageFilter::computeFastBounds\28SkRect\20const&\29\20const +10924:\28anonymous\20namespace\29::SkComposeImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +10925:\28anonymous\20namespace\29::SkComposeImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +10926:\28anonymous\20namespace\29::SkComposeImageFilter::onFilterImage\28skif::Context\20const&\29\20const +10927:\28anonymous\20namespace\29::SkComposeImageFilter::getTypeName\28\29\20const +10928:\28anonymous\20namespace\29::SkComposeImageFilter::computeFastBounds\28SkRect\20const&\29\20const +10929:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29_5985 +10930:\28anonymous\20namespace\29::SkColorFilterImageFilter::onIsColorFilterNode\28SkColorFilter**\29\20const +10931:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +10932:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +10933:\28anonymous\20namespace\29::SkColorFilterImageFilter::onFilterImage\28skif::Context\20const&\29\20const +10934:\28anonymous\20namespace\29::SkColorFilterImageFilter::onAffectsTransparentBlack\28\29\20const +10935:\28anonymous\20namespace\29::SkColorFilterImageFilter::getTypeName\28\29\20const +10936:\28anonymous\20namespace\29::SkColorFilterImageFilter::flatten\28SkWriteBuffer&\29\20const +10937:\28anonymous\20namespace\29::SkColorFilterImageFilter::computeFastBounds\28SkRect\20const&\29\20const +10938:\28anonymous\20namespace\29::SkBlurImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +10939:\28anonymous\20namespace\29::SkBlurImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +10940:\28anonymous\20namespace\29::SkBlurImageFilter::onFilterImage\28skif::Context\20const&\29\20const +10941:\28anonymous\20namespace\29::SkBlurImageFilter::getTypeName\28\29\20const +10942:\28anonymous\20namespace\29::SkBlurImageFilter::flatten\28SkWriteBuffer&\29\20const +10943:\28anonymous\20namespace\29::SkBlurImageFilter::computeFastBounds\28SkRect\20const&\29\20const +10944:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29_5957 +10945:\28anonymous\20namespace\29::SkBlendImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +10946:\28anonymous\20namespace\29::SkBlendImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +10947:\28anonymous\20namespace\29::SkBlendImageFilter::onFilterImage\28skif::Context\20const&\29\20const +10948:\28anonymous\20namespace\29::SkBlendImageFilter::onAffectsTransparentBlack\28\29\20const +10949:\28anonymous\20namespace\29::SkBlendImageFilter::getTypeName\28\29\20const +10950:\28anonymous\20namespace\29::SkBlendImageFilter::flatten\28SkWriteBuffer&\29\20const +10951:\28anonymous\20namespace\29::SkBlendImageFilter::computeFastBounds\28SkRect\20const&\29\20const +10952:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29_8514 +10953:\28anonymous\20namespace\29::SkBidiIterator_icu::getLevelAt\28int\29 +10954:\28anonymous\20namespace\29::SkBidiIterator_icu::getLength\28\29 +10955:\28anonymous\20namespace\29::SimpleTriangleShader::name\28\29\20const +10956:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10957:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10958:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20float\2c\20SkShaper::RunHandler*\29\20const +10959:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +10960:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20bool\2c\20float\2c\20SkShaper::RunHandler*\29\20const +10961:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::~ShapeDontWrapOrReorder\28\29 +10962:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::wrap\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::BiDiRunIterator\20const&\2c\20SkShaper::LanguageRunIterator\20const&\2c\20SkShaper::ScriptRunIterator\20const&\2c\20SkShaper::FontRunIterator\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +10963:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29_5802 +10964:\28anonymous\20namespace\29::ShadowInvalidator::changed\28\29 +10965:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29_12162 +10966:\28anonymous\20namespace\29::ShadowCircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +10967:\28anonymous\20namespace\29::ShadowCircularRRectOp::programInfo\28\29 +10968:\28anonymous\20namespace\29::ShadowCircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10969:\28anonymous\20namespace\29::ShadowCircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10970:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10971:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10972:\28anonymous\20namespace\29::ShadowCircularRRectOp::name\28\29\20const +10973:\28anonymous\20namespace\29::ShadowCircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10974:\28anonymous\20namespace\29::SDFTSubRun::unflattenSize\28\29\20const +10975:\28anonymous\20namespace\29::SDFTSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +10976:\28anonymous\20namespace\29::SDFTSubRun::glyphParams\28\29\20const +10977:\28anonymous\20namespace\29::SDFTSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +10978:\28anonymous\20namespace\29::SDFTSubRun::doFlatten\28SkWriteBuffer&\29\20const +10979:\28anonymous\20namespace\29::SDFTSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +10980:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29_3586 +10981:\28anonymous\20namespace\29::RectsBlurRec::getCategory\28\29\20const +10982:\28anonymous\20namespace\29::RectsBlurRec::diagnostic_only_getDiscardable\28\29\20const +10983:\28anonymous\20namespace\29::RectsBlurRec::bytesUsed\28\29\20const +10984:\28anonymous\20namespace\29::RectsBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +10985:\28anonymous\20namespace\29::RasterShaderBlurAlgorithm::makeDevice\28SkImageInfo\20const&\29\20const +10986:\28anonymous\20namespace\29::RasterBlurEngine::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +10987:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +10988:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +10989:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29_3580 +10990:\28anonymous\20namespace\29::RRectBlurRec::getCategory\28\29\20const +10991:\28anonymous\20namespace\29::RRectBlurRec::diagnostic_only_getDiscardable\28\29\20const +10992:\28anonymous\20namespace\29::RRectBlurRec::bytesUsed\28\29\20const +10993:\28anonymous\20namespace\29::RRectBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +10994:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29_13130 +10995:\28anonymous\20namespace\29::PathSubRun::unflattenSize\28\29\20const +10996:\28anonymous\20namespace\29::PathSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +10997:\28anonymous\20namespace\29::PathSubRun::doFlatten\28SkWriteBuffer&\29\20const +10998:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29_2220 +10999:\28anonymous\20namespace\29::MipMapRec::getCategory\28\29\20const +11000:\28anonymous\20namespace\29::MipMapRec::diagnostic_only_getDiscardable\28\29\20const +11001:\28anonymous\20namespace\29::MipMapRec::bytesUsed\28\29\20const +11002:\28anonymous\20namespace\29::MipMapRec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +11003:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29_12378 +11004:\28anonymous\20namespace\29::MiddleOutShader::name\28\29\20const +11005:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11006:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11007:\28anonymous\20namespace\29::MiddleOutShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11008:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29_11703 +11009:\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const +11010:\28anonymous\20namespace\29::MeshOp::programInfo\28\29 +11011:\28anonymous\20namespace\29::MeshOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11012:\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +11013:\28anonymous\20namespace\29::MeshOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11014:\28anonymous\20namespace\29::MeshOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11015:\28anonymous\20namespace\29::MeshOp::name\28\29\20const +11016:\28anonymous\20namespace\29::MeshOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11017:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29_11727 +11018:\28anonymous\20namespace\29::MeshGP::onTextureSampler\28int\29\20const +11019:\28anonymous\20namespace\29::MeshGP::name\28\29\20const +11020:\28anonymous\20namespace\29::MeshGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11021:\28anonymous\20namespace\29::MeshGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11022:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29_11733 +11023:\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11024:\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11025:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +11026:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +11027:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +11028:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +11029:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMainName\28\29 +11030:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +11031:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +11032:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +11033:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareFunction\28char\20const*\29 +11034:\28anonymous\20namespace\29::HQDownSampler::buildLevel\28SkPixmap\20const&\2c\20SkPixmap\20const&\29 +11035:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +11036:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +11037:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +11038:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +11039:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +11040:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +11041:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +11042:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +11043:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29_11823 +11044:\28anonymous\20namespace\29::FillRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +11045:\28anonymous\20namespace\29::FillRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +11046:\28anonymous\20namespace\29::FillRectOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11047:\28anonymous\20namespace\29::FillRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +11048:\28anonymous\20namespace\29::FillRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11049:\28anonymous\20namespace\29::FillRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11050:\28anonymous\20namespace\29::FillRectOpImpl::name\28\29\20const +11051:\28anonymous\20namespace\29::FillRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11052:\28anonymous\20namespace\29::ExternalWebGLTexture::~ExternalWebGLTexture\28\29_608 +11053:\28anonymous\20namespace\29::ExternalWebGLTexture::getBackendTexture\28\29 +11054:\28anonymous\20namespace\29::ExternalWebGLTexture::dispose\28\29 +11055:\28anonymous\20namespace\29::EllipticalRRectEffect::onMakeProgramImpl\28\29\20const +11056:\28anonymous\20namespace\29::EllipticalRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11057:\28anonymous\20namespace\29::EllipticalRRectEffect::name\28\29\20const +11058:\28anonymous\20namespace\29::EllipticalRRectEffect::clone\28\29\20const +11059:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11060:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11061:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29_13138 +11062:\28anonymous\20namespace\29::DrawableSubRun::unflattenSize\28\29\20const +11063:\28anonymous\20namespace\29::DrawableSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +11064:\28anonymous\20namespace\29::DrawableSubRun::doFlatten\28SkWriteBuffer&\29\20const +11065:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29_11674 +11066:\28anonymous\20namespace\29::DrawAtlasPathShader::onTextureSampler\28int\29\20const +11067:\28anonymous\20namespace\29::DrawAtlasPathShader::name\28\29\20const +11068:\28anonymous\20namespace\29::DrawAtlasPathShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11069:\28anonymous\20namespace\29::DrawAtlasPathShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11070:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11071:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11072:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29_11651 +11073:\28anonymous\20namespace\29::DrawAtlasOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +11074:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11075:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11076:\28anonymous\20namespace\29::DrawAtlasOpImpl::name\28\29\20const +11077:\28anonymous\20namespace\29::DrawAtlasOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11078:\28anonymous\20namespace\29::DirectMaskSubRun::unflattenSize\28\29\20const +11079:\28anonymous\20namespace\29::DirectMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +11080:\28anonymous\20namespace\29::DirectMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +11081:\28anonymous\20namespace\29::DirectMaskSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +11082:\28anonymous\20namespace\29::DirectMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +11083:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29_11626 +11084:\28anonymous\20namespace\29::DefaultPathOp::visitProxies\28std::__2::function\20const&\29\20const +11085:\28anonymous\20namespace\29::DefaultPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11086:\28anonymous\20namespace\29::DefaultPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +11087:\28anonymous\20namespace\29::DefaultPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11088:\28anonymous\20namespace\29::DefaultPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11089:\28anonymous\20namespace\29::DefaultPathOp::name\28\29\20const +11090:\28anonymous\20namespace\29::DefaultPathOp::fixedFunctionFlags\28\29\20const +11091:\28anonymous\20namespace\29::DefaultPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11092:\28anonymous\20namespace\29::CircularRRectEffect::onMakeProgramImpl\28\29\20const +11093:\28anonymous\20namespace\29::CircularRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +11094:\28anonymous\20namespace\29::CircularRRectEffect::name\28\29\20const +11095:\28anonymous\20namespace\29::CircularRRectEffect::clone\28\29\20const +11096:\28anonymous\20namespace\29::CircularRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +11097:\28anonymous\20namespace\29::CircularRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +11098:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29_5806 +11099:\28anonymous\20namespace\29::CachedTessellationsRec::getCategory\28\29\20const +11100:\28anonymous\20namespace\29::CachedTessellationsRec::bytesUsed\28\29\20const +11101:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29_5812 +11102:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29_3438 +11103:\28anonymous\20namespace\29::CacheImpl::set\28SkImageFilterCacheKey\20const&\2c\20SkImageFilter\20const*\2c\20skif::FilterResult\20const&\29 +11104:\28anonymous\20namespace\29::CacheImpl::purge\28\29 +11105:\28anonymous\20namespace\29::CacheImpl::purgeByImageFilter\28SkImageFilter\20const*\29 +11106:\28anonymous\20namespace\29::CacheImpl::get\28SkImageFilterCacheKey\20const&\2c\20skif::FilterResult*\29\20const +11107:\28anonymous\20namespace\29::BuilderReceiver::QuadTo\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +11108:\28anonymous\20namespace\29::BuilderReceiver::LineTo\28impeller::TPoint\20const&\29 +11109:\28anonymous\20namespace\29::BuilderReceiver::CubicTo\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +11110:\28anonymous\20namespace\29::BuilderReceiver::ConicTo\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\29 +11111:\28anonymous\20namespace\29::BuilderReceiver::Close\28\29 +11112:\28anonymous\20namespace\29::BoundingBoxShader::name\28\29\20const +11113:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +11114:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +11115:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +11116:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29_11398 +11117:\28anonymous\20namespace\29::AAHairlineOp::visitProxies\28std::__2::function\20const&\29\20const +11118:\28anonymous\20namespace\29::AAHairlineOp::onPrepareDraws\28GrMeshDrawTarget*\29 +11119:\28anonymous\20namespace\29::AAHairlineOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11120:\28anonymous\20namespace\29::AAHairlineOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +11121:\28anonymous\20namespace\29::AAHairlineOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +11122:\28anonymous\20namespace\29::AAHairlineOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +11123:\28anonymous\20namespace\29::AAHairlineOp::name\28\29\20const +11124:\28anonymous\20namespace\29::AAHairlineOp::fixedFunctionFlags\28\29\20const +11125:\28anonymous\20namespace\29::AAHairlineOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +11126:\28anonymous\20namespace\29::A8Pass::startBlur\28\29 +11127:\28anonymous\20namespace\29::A8Pass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +11128:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +11129:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +11130:Write_CVT_Stretched +11131:Write_CVT +11132:Vertish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +11133:Vertish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +11134:VertState::Triangles\28VertState*\29 +11135:VertState::TrianglesX\28VertState*\29 +11136:VertState::TriangleStrip\28VertState*\29 +11137:VertState::TriangleStripX\28VertState*\29 +11138:VertState::TriangleFan\28VertState*\29 +11139:VertState::TriangleFanX\28VertState*\29 +11140:VLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +11141:VLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +11142:TextureSourceImageGenerator::~TextureSourceImageGenerator\28\29_589 +11143:TextureSourceImageGenerator::generateExternalTexture\28GrRecordingContext*\2c\20skgpu::Mipmapped\29 +11144:TT_Set_MM_Blend +11145:TT_RunIns +11146:TT_Load_Simple_Glyph +11147:TT_Load_Glyph_Header +11148:TT_Load_Composite_Glyph +11149:TT_Get_Var_Design +11150:TT_Get_MM_Blend +11151:TT_Forget_Glyph_Frame +11152:TT_Access_Glyph_Frame +11153:TOUPPER\28unsigned\20char\29 +11154:TOLOWER\28unsigned\20char\29 +11155:SquareCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +11156:Sprite_D32_S32::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11157:Skwasm::Surface::Surface\28\29::$_0::__invoke\28\29 +11158:SkWeakRefCnt::internal_dispose\28\29\20const +11159:SkUnicode_client::~SkUnicode_client\28\29_8554 +11160:SkUnicode_client::toUpper\28SkString\20const&\2c\20char\20const*\29 +11161:SkUnicode_client::toUpper\28SkString\20const&\29 +11162:SkUnicode_client::reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29 +11163:SkUnicode_client::makeBreakIterator\28char\20const*\2c\20SkUnicode::BreakType\29 +11164:SkUnicode_client::makeBreakIterator\28SkUnicode::BreakType\29 +11165:SkUnicode_client::makeBidiIterator\28unsigned\20short\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +11166:SkUnicode_client::makeBidiIterator\28char\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +11167:SkUnicode_client::getWords\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +11168:SkUnicode_client::getBidiRegions\28char\20const*\2c\20int\2c\20SkUnicode::TextDirection\2c\20std::__2::vector>*\29 +11169:SkUnicode_client::computeCodeUnitFlags\28char16_t*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +11170:SkUnicode_client::computeCodeUnitFlags\28char*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +11171:SkUnicodeHardCodedCharProperties::isWhitespace\28int\29 +11172:SkUnicodeHardCodedCharProperties::isTabulation\28int\29 +11173:SkUnicodeHardCodedCharProperties::isSpace\28int\29 +11174:SkUnicodeHardCodedCharProperties::isIdeographic\28int\29 +11175:SkUnicodeHardCodedCharProperties::isHardBreak\28int\29 +11176:SkUnicodeHardCodedCharProperties::isControl\28int\29 +11177:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29_13279 +11178:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29 +11179:SkUnicodeBidiRunIterator::endOfCurrentRun\28\29\20const +11180:SkUnicodeBidiRunIterator::currentLevel\28\29\20const +11181:SkUnicodeBidiRunIterator::consume\28\29 +11182:SkUnicodeBidiRunIterator::atEnd\28\29\20const +11183:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29_8743 +11184:SkTypeface_FreeTypeStream::onOpenStream\28int*\29\20const +11185:SkTypeface_FreeTypeStream::onMakeFontData\28\29\20const +11186:SkTypeface_FreeTypeStream::onMakeClone\28SkFontArguments\20const&\29\20const +11187:SkTypeface_FreeTypeStream::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +11188:SkTypeface_FreeType::onGlyphMaskNeedsCurrentColor\28\29\20const +11189:SkTypeface_FreeType::onGetVariationDesignPosition\28SkSpan\29\20const +11190:SkTypeface_FreeType::onGetVariationDesignParameters\28SkSpan\29\20const +11191:SkTypeface_FreeType::onGetUPEM\28\29\20const +11192:SkTypeface_FreeType::onGetTableTags\28SkSpan\29\20const +11193:SkTypeface_FreeType::onGetTableData\28unsigned\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20void*\29\20const +11194:SkTypeface_FreeType::onGetPostScriptName\28SkString*\29\20const +11195:SkTypeface_FreeType::onGetKerningPairAdjustments\28SkSpan\2c\20SkSpan\29\20const +11196:SkTypeface_FreeType::onGetAdvancedMetrics\28\29\20const +11197:SkTypeface_FreeType::onFilterRec\28SkScalerContextRec*\29\20const +11198:SkTypeface_FreeType::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +11199:SkTypeface_FreeType::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +11200:SkTypeface_FreeType::onCreateFamilyNameIterator\28\29\20const +11201:SkTypeface_FreeType::onCountGlyphs\28\29\20const +11202:SkTypeface_FreeType::onCopyTableData\28unsigned\20int\29\20const +11203:SkTypeface_FreeType::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +11204:SkTypeface_FreeType::getPostScriptGlyphNames\28SkString*\29\20const +11205:SkTypeface_FreeType::getGlyphToUnicodeMap\28SkSpan\29\20const +11206:SkTypeface_Empty::~SkTypeface_Empty\28\29 +11207:SkTypeface_Custom::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +11208:SkTypeface::onOpenExistingStream\28int*\29\20const +11209:SkTypeface::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +11210:SkTypeface::onCopyTableData\28unsigned\20int\29\20const +11211:SkTypeface::onComputeBounds\28SkRect*\29\20const +11212:SkTriColorShader::type\28\29\20const +11213:SkTriColorShader::isOpaque\28\29\20const +11214:SkTriColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11215:SkTransformShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11216:SkTQuad::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +11217:SkTQuad::setBounds\28SkDRect*\29\20const +11218:SkTQuad::ptAtT\28double\29\20const +11219:SkTQuad::make\28SkArenaAlloc&\29\20const +11220:SkTQuad::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +11221:SkTQuad::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +11222:SkTQuad::dxdyAtT\28double\29\20const +11223:SkTQuad::debugInit\28\29 +11224:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29_4945 +11225:SkTCubic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +11226:SkTCubic::setBounds\28SkDRect*\29\20const +11227:SkTCubic::ptAtT\28double\29\20const +11228:SkTCubic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +11229:SkTCubic::maxIntersections\28\29\20const +11230:SkTCubic::make\28SkArenaAlloc&\29\20const +11231:SkTCubic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +11232:SkTCubic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +11233:SkTCubic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +11234:SkTCubic::dxdyAtT\28double\29\20const +11235:SkTCubic::debugInit\28\29 +11236:SkTCubic::controlsInside\28\29\20const +11237:SkTCubic::collapsed\28\29\20const +11238:SkTConic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +11239:SkTConic::setBounds\28SkDRect*\29\20const +11240:SkTConic::ptAtT\28double\29\20const +11241:SkTConic::make\28SkArenaAlloc&\29\20const +11242:SkTConic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +11243:SkTConic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +11244:SkTConic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +11245:SkTConic::dxdyAtT\28double\29\20const +11246:SkTConic::debugInit\28\29 +11247:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29_5253 +11248:SkSynchronizedResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +11249:SkSynchronizedResourceCache::setTotalByteLimit\28unsigned\20long\29 +11250:SkSynchronizedResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +11251:SkSynchronizedResourceCache::purgeAll\28\29 +11252:SkSynchronizedResourceCache::newCachedData\28unsigned\20long\29 +11253:SkSynchronizedResourceCache::getTotalBytesUsed\28\29\20const +11254:SkSynchronizedResourceCache::getTotalByteLimit\28\29\20const +11255:SkSynchronizedResourceCache::getSingleAllocationByteLimit\28\29\20const +11256:SkSynchronizedResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +11257:SkSynchronizedResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +11258:SkSynchronizedResourceCache::dump\28\29\20const +11259:SkSynchronizedResourceCache::discardableFactory\28\29\20const +11260:SkSynchronizedResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +11261:SkSweepGradient::getTypeName\28\29\20const +11262:SkSweepGradient::flatten\28SkWriteBuffer&\29\20const +11263:SkSweepGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +11264:SkSweepGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +11265:SkSurface_Raster::~SkSurface_Raster\28\29_5506 +11266:SkSurface_Raster::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +11267:SkSurface_Raster::onRestoreBackingMutability\28\29 +11268:SkSurface_Raster::onNewSurface\28SkImageInfo\20const&\29 +11269:SkSurface_Raster::onNewImageSnapshot\28SkIRect\20const*\29 +11270:SkSurface_Raster::onNewCanvas\28\29 +11271:SkSurface_Raster::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +11272:SkSurface_Raster::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +11273:SkSurface_Raster::imageInfo\28\29\20const +11274:SkSurface_Ganesh::~SkSurface_Ganesh\28\29_12356 +11275:SkSurface_Ganesh::replaceBackendTexture\28GrBackendTexture\20const&\2c\20GrSurfaceOrigin\2c\20SkSurface::ContentChangeMode\2c\20void\20\28*\29\28void*\29\2c\20void*\29 +11276:SkSurface_Ganesh::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +11277:SkSurface_Ganesh::onWait\28int\2c\20GrBackendSemaphore\20const*\2c\20bool\29 +11278:SkSurface_Ganesh::onNewSurface\28SkImageInfo\20const&\29 +11279:SkSurface_Ganesh::onNewImageSnapshot\28SkIRect\20const*\29 +11280:SkSurface_Ganesh::onNewCanvas\28\29 +11281:SkSurface_Ganesh::onIsCompatible\28GrSurfaceCharacterization\20const&\29\20const +11282:SkSurface_Ganesh::onGetRecordingContext\28\29\20const +11283:SkSurface_Ganesh::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +11284:SkSurface_Ganesh::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +11285:SkSurface_Ganesh::onCharacterize\28GrSurfaceCharacterization*\29\20const +11286:SkSurface_Ganesh::onCapabilities\28\29 +11287:SkSurface_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +11288:SkSurface_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +11289:SkSurface_Ganesh::imageInfo\28\29\20const +11290:SkSurface_Base::onMakeTemporaryImage\28\29 +11291:SkSurface_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +11292:SkSurface::imageInfo\28\29\20const +11293:SkStrikeCache::~SkStrikeCache\28\29_5169 +11294:SkStrikeCache::findOrCreateScopedStrike\28SkStrikeSpec\20const&\29 +11295:SkStrike::~SkStrike\28\29_5154 +11296:SkStrike::strikePromise\28\29 +11297:SkStrike::roundingSpec\28\29\20const +11298:SkStrike::getDescriptor\28\29\20const +11299:SkSpriteBlitter_Memcpy::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11300:SkSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +11301:SkSpriteBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11302:SkSpriteBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +11303:SkSpriteBlitter::blitH\28int\2c\20int\2c\20int\29 +11304:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29_5091 +11305:SkSpecialImage_Raster::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +11306:SkSpecialImage_Raster::getSize\28\29\20const +11307:SkSpecialImage_Raster::backingStoreDimensions\28\29\20const +11308:SkSpecialImage_Raster::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +11309:SkSpecialImage_Raster::asImage\28\29\20const +11310:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29_11320 +11311:SkSpecialImage_Gpu::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +11312:SkSpecialImage_Gpu::getSize\28\29\20const +11313:SkSpecialImage_Gpu::backingStoreDimensions\28\29\20const +11314:SkSpecialImage_Gpu::asImage\28\29\20const +11315:SkSpecialImage::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +11316:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29_13272 +11317:SkShaper::TrivialLanguageRunIterator::currentLanguage\28\29\20const +11318:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29_8027 +11319:SkShaper::TrivialBiDiRunIterator::currentLevel\28\29\20const +11320:SkShaderBlurAlgorithm::maxSigma\28\29\20const +11321:SkShaderBlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +11322:SkScan::HairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +11323:SkScan::HairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +11324:SkScan::HairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +11325:SkScan::AntiHairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +11326:SkScan::AntiHairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +11327:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29_8679 +11328:SkScalerContext_FreeType::generatePath\28SkGlyph\20const&\29 +11329:SkScalerContext_FreeType::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +11330:SkScalerContext_FreeType::generateImage\28SkGlyph\20const&\2c\20void*\29 +11331:SkScalerContext_FreeType::generateFontMetrics\28SkFontMetrics*\29 +11332:SkScalerContext_FreeType::generateDrawable\28SkGlyph\20const&\29 +11333:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::~SkScalerContext_Empty\28\29 +11334:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generatePath\28SkGlyph\20const&\29 +11335:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +11336:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateFontMetrics\28SkFontMetrics*\29 +11337:SkSRGBColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +11338:SkSRGBColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +11339:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_3::__invoke\28double\2c\20double\29 +11340:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_2::__invoke\28double\2c\20double\29 +11341:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_1::__invoke\28double\2c\20double\29 +11342:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_0::__invoke\28double\2c\20double\29 +11343:SkSL::negate_value\28double\29 +11344:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29_7419 +11345:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29_7416 +11346:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +11347:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitExpressionPtr\28std::__2::unique_ptr>&\29 +11348:SkSL::count_returns_at_end_of_control_flow\28SkSL::FunctionDefinition\20const&\29::CountReturnsAtEndOfControlFlow::visitStatement\28SkSL::Statement\20const&\29 +11349:SkSL::bitwise_not_value\28double\29 +11350:SkSL::\28anonymous\20namespace\29::VariableWriteVisitor::visitExpression\28SkSL::Expression\20const&\29 +11351:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +11352:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitExpression\28SkSL::Expression\20const&\29 +11353:SkSL::\28anonymous\20namespace\29::ReturnsNonOpaqueColorVisitor::visitStatement\28SkSL::Statement\20const&\29 +11354:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitStatement\28SkSL::Statement\20const&\29 +11355:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +11356:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitExpression\28SkSL::Expression\20const&\29 +11357:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +11358:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +11359:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29_6582 +11360:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitExpression\28SkSL::Expression\20const&\29 +11361:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29_6605 +11362:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitStatement\28SkSL::Statement\20const&\29 +11363:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitExpression\28SkSL::Expression\20const&\29 +11364:SkSL::VectorType::isOrContainsBool\28\29\20const +11365:SkSL::VectorType::isAllowedInUniform\28SkSL::Position*\29\20const +11366:SkSL::VectorType::isAllowedInES2\28\29\20const +11367:SkSL::VariableReference::clone\28SkSL::Position\29\20const +11368:SkSL::Variable::~Variable\28\29_7385 +11369:SkSL::Variable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +11370:SkSL::Variable::mangledName\28\29\20const +11371:SkSL::Variable::layout\28\29\20const +11372:SkSL::Variable::description\28\29\20const +11373:SkSL::VarDeclaration::~VarDeclaration\28\29_7383 +11374:SkSL::VarDeclaration::description\28\29\20const +11375:SkSL::TypeReference::clone\28SkSL::Position\29\20const +11376:SkSL::Type::minimumValue\28\29\20const +11377:SkSL::Type::maximumValue\28\29\20const +11378:SkSL::Type::matches\28SkSL::Type\20const&\29\20const +11379:SkSL::Type::isAllowedInUniform\28SkSL::Position*\29\20const +11380:SkSL::Type::fields\28\29\20const +11381:SkSL::Type::description\28\29\20const +11382:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29_7433 +11383:SkSL::Tracer::var\28int\2c\20int\29 +11384:SkSL::Tracer::scope\28int\29 +11385:SkSL::Tracer::line\28int\29 +11386:SkSL::Tracer::exit\28int\29 +11387:SkSL::Tracer::enter\28int\29 +11388:SkSL::TextureType::textureAccess\28\29\20const +11389:SkSL::TextureType::isMultisampled\28\29\20const +11390:SkSL::TextureType::isDepth\28\29\20const +11391:SkSL::TernaryExpression::~TernaryExpression\28\29_7198 +11392:SkSL::TernaryExpression::description\28SkSL::OperatorPrecedence\29\20const +11393:SkSL::TernaryExpression::clone\28SkSL::Position\29\20const +11394:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression&\29 +11395:SkSL::Swizzle::description\28SkSL::OperatorPrecedence\29\20const +11396:SkSL::Swizzle::clone\28SkSL::Position\29\20const +11397:SkSL::SwitchStatement::description\28\29\20const +11398:SkSL::SwitchCase::description\28\29\20const +11399:SkSL::StructType::slotType\28unsigned\20long\29\20const +11400:SkSL::StructType::isOrContainsUnsizedArray\28\29\20const +11401:SkSL::StructType::isOrContainsBool\28\29\20const +11402:SkSL::StructType::isOrContainsAtomic\28\29\20const +11403:SkSL::StructType::isOrContainsArray\28\29\20const +11404:SkSL::StructType::isInterfaceBlock\28\29\20const +11405:SkSL::StructType::isBuiltin\28\29\20const +11406:SkSL::StructType::isAllowedInUniform\28SkSL::Position*\29\20const +11407:SkSL::StructType::isAllowedInES2\28\29\20const +11408:SkSL::StructType::fields\28\29\20const +11409:SkSL::StructDefinition::description\28\29\20const +11410:SkSL::StringStream::~StringStream\28\29_13204 +11411:SkSL::StringStream::write\28void\20const*\2c\20unsigned\20long\29 +11412:SkSL::StringStream::writeText\28char\20const*\29 +11413:SkSL::StringStream::write8\28unsigned\20char\29 +11414:SkSL::Setting::description\28SkSL::OperatorPrecedence\29\20const +11415:SkSL::Setting::clone\28SkSL::Position\29\20const +11416:SkSL::ScalarType::priority\28\29\20const +11417:SkSL::ScalarType::numberKind\28\29\20const +11418:SkSL::ScalarType::minimumValue\28\29\20const +11419:SkSL::ScalarType::maximumValue\28\29\20const +11420:SkSL::ScalarType::isOrContainsBool\28\29\20const +11421:SkSL::ScalarType::isAllowedInUniform\28SkSL::Position*\29\20const +11422:SkSL::ScalarType::isAllowedInES2\28\29\20const +11423:SkSL::ScalarType::bitWidth\28\29\20const +11424:SkSL::SamplerType::textureAccess\28\29\20const +11425:SkSL::SamplerType::isMultisampled\28\29\20const +11426:SkSL::SamplerType::isDepth\28\29\20const +11427:SkSL::SamplerType::isArrayedTexture\28\29\20const +11428:SkSL::SamplerType::dimensions\28\29\20const +11429:SkSL::ReturnStatement::description\28\29\20const +11430:SkSL::RP::VariableLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11431:SkSL::RP::VariableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11432:SkSL::RP::VariableLValue::isWritable\28\29\20const +11433:SkSL::RP::UnownedLValueSlice::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11434:SkSL::RP::UnownedLValueSlice::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11435:SkSL::RP::UnownedLValueSlice::fixedSlotRange\28SkSL::RP::Generator*\29 +11436:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29_6875 +11437:SkSL::RP::SwizzleLValue::swizzle\28\29 +11438:SkSL::RP::SwizzleLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11439:SkSL::RP::SwizzleLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11440:SkSL::RP::SwizzleLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +11441:SkSL::RP::ScratchLValue::~ScratchLValue\28\29_6771 +11442:SkSL::RP::ScratchLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11443:SkSL::RP::ScratchLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +11444:SkSL::RP::LValueSlice::~LValueSlice\28\29_6873 +11445:SkSL::RP::ImmutableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11446:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29_6867 +11447:SkSL::RP::DynamicIndexLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11448:SkSL::RP::DynamicIndexLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +11449:SkSL::RP::DynamicIndexLValue::isWritable\28\29\20const +11450:SkSL::RP::DynamicIndexLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +11451:SkSL::ProgramVisitor::visitStatementPtr\28std::__2::unique_ptr>\20const&\29 +11452:SkSL::ProgramVisitor::visitExpressionPtr\28std::__2::unique_ptr>\20const&\29 +11453:SkSL::PrefixExpression::~PrefixExpression\28\29_7158 +11454:SkSL::PrefixExpression::~PrefixExpression\28\29 +11455:SkSL::PrefixExpression::description\28SkSL::OperatorPrecedence\29\20const +11456:SkSL::PrefixExpression::clone\28SkSL::Position\29\20const +11457:SkSL::PostfixExpression::description\28SkSL::OperatorPrecedence\29\20const +11458:SkSL::PostfixExpression::clone\28SkSL::Position\29\20const +11459:SkSL::Poison::description\28SkSL::OperatorPrecedence\29\20const +11460:SkSL::Poison::clone\28SkSL::Position\29\20const +11461:SkSL::PipelineStage::Callbacks::getMainName\28\29 +11462:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29_6540 +11463:SkSL::Parser::Checkpoint::ForwardingErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +11464:SkSL::Nop::description\28\29\20const +11465:SkSL::ModifiersDeclaration::description\28\29\20const +11466:SkSL::MethodReference::description\28SkSL::OperatorPrecedence\29\20const +11467:SkSL::MethodReference::clone\28SkSL::Position\29\20const +11468:SkSL::MatrixType::slotCount\28\29\20const +11469:SkSL::MatrixType::rows\28\29\20const +11470:SkSL::MatrixType::isAllowedInES2\28\29\20const +11471:SkSL::LiteralType::minimumValue\28\29\20const +11472:SkSL::LiteralType::maximumValue\28\29\20const +11473:SkSL::LiteralType::isOrContainsBool\28\29\20const +11474:SkSL::Literal::getConstantValue\28int\29\20const +11475:SkSL::Literal::description\28SkSL::OperatorPrecedence\29\20const +11476:SkSL::Literal::compareConstant\28SkSL::Expression\20const&\29\20const +11477:SkSL::Literal::clone\28SkSL::Position\29\20const +11478:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_uintBitsToFloat\28double\2c\20double\2c\20double\29 +11479:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_trunc\28double\2c\20double\2c\20double\29 +11480:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tanh\28double\2c\20double\2c\20double\29 +11481:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tan\28double\2c\20double\2c\20double\29 +11482:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sub\28double\2c\20double\2c\20double\29 +11483:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_step\28double\2c\20double\2c\20double\29 +11484:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sqrt\28double\2c\20double\2c\20double\29 +11485:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_smoothstep\28double\2c\20double\2c\20double\29 +11486:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sinh\28double\2c\20double\2c\20double\29 +11487:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sin\28double\2c\20double\2c\20double\29 +11488:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sign\28double\2c\20double\2c\20double\29 +11489:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_saturate\28double\2c\20double\2c\20double\29 +11490:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_round\28double\2c\20double\2c\20double\29 +11491:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_radians\28double\2c\20double\2c\20double\29 +11492:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_pow\28double\2c\20double\2c\20double\29 +11493:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_opposite_sign\28double\2c\20double\2c\20double\29 +11494:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_not\28double\2c\20double\2c\20double\29 +11495:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mod\28double\2c\20double\2c\20double\29 +11496:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mix\28double\2c\20double\2c\20double\29 +11497:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_min\28double\2c\20double\2c\20double\29 +11498:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_max\28double\2c\20double\2c\20double\29 +11499:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log\28double\2c\20double\2c\20double\29 +11500:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log2\28double\2c\20double\2c\20double\29 +11501:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_inversesqrt\28double\2c\20double\2c\20double\29 +11502:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_intBitsToFloat\28double\2c\20double\2c\20double\29 +11503:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fract\28double\2c\20double\2c\20double\29 +11504:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fma\28double\2c\20double\2c\20double\29 +11505:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floor\28double\2c\20double\2c\20double\29 +11506:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToUint\28double\2c\20double\2c\20double\29 +11507:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToInt\28double\2c\20double\2c\20double\29 +11508:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp\28double\2c\20double\2c\20double\29 +11509:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp2\28double\2c\20double\2c\20double\29 +11510:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_div\28double\2c\20double\2c\20double\29 +11511:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_degrees\28double\2c\20double\2c\20double\29 +11512:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cosh\28double\2c\20double\2c\20double\29 +11513:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cos\28double\2c\20double\2c\20double\29 +11514:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_clamp\28double\2c\20double\2c\20double\29 +11515:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_ceil\28double\2c\20double\2c\20double\29 +11516:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atanh\28double\2c\20double\2c\20double\29 +11517:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan\28double\2c\20double\2c\20double\29 +11518:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan2\28double\2c\20double\2c\20double\29 +11519:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asinh\28double\2c\20double\2c\20double\29 +11520:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asin\28double\2c\20double\2c\20double\29 +11521:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_add\28double\2c\20double\2c\20double\29 +11522:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acosh\28double\2c\20double\2c\20double\29 +11523:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acos\28double\2c\20double\2c\20double\29 +11524:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_abs\28double\2c\20double\2c\20double\29 +11525:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_notEqual\28double\2c\20double\29 +11526:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThan\28double\2c\20double\29 +11527:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThanEqual\28double\2c\20double\29 +11528:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThan\28double\2c\20double\29 +11529:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThanEqual\28double\2c\20double\29 +11530:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_equal\28double\2c\20double\29 +11531:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_length\28double\2c\20double\2c\20double\29 +11532:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_dot\28double\2c\20double\2c\20double\29 +11533:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_distance\28double\2c\20double\2c\20double\29 +11534:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_any\28double\2c\20double\2c\20double\29 +11535:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_all\28double\2c\20double\2c\20double\29 +11536:SkSL::InterfaceBlock::~InterfaceBlock\28\29_7132 +11537:SkSL::InterfaceBlock::~InterfaceBlock\28\29 +11538:SkSL::InterfaceBlock::description\28\29\20const +11539:SkSL::IndexExpression::~IndexExpression\28\29_7128 +11540:SkSL::IndexExpression::description\28SkSL::OperatorPrecedence\29\20const +11541:SkSL::IndexExpression::clone\28SkSL::Position\29\20const +11542:SkSL::IfStatement::~IfStatement\28\29_7126 +11543:SkSL::IfStatement::description\28\29\20const +11544:SkSL::GlobalVarDeclaration::description\28\29\20const +11545:SkSL::GenericType::slotType\28unsigned\20long\29\20const +11546:SkSL::GenericType::coercibleTypes\28\29\20const +11547:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29_13261 +11548:SkSL::FunctionReference::description\28SkSL::OperatorPrecedence\29\20const +11549:SkSL::FunctionReference::clone\28SkSL::Position\29\20const +11550:SkSL::FunctionPrototype::description\28\29\20const +11551:SkSL::FunctionDefinition::description\28\29\20const +11552:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29_7121 +11553:SkSL::FunctionCall::description\28SkSL::OperatorPrecedence\29\20const +11554:SkSL::FunctionCall::clone\28SkSL::Position\29\20const +11555:SkSL::ForStatement::~ForStatement\28\29_6998 +11556:SkSL::ForStatement::description\28\29\20const +11557:SkSL::FieldSymbol::description\28\29\20const +11558:SkSL::FieldAccess::clone\28SkSL::Position\29\20const +11559:SkSL::Extension::description\28\29\20const +11560:SkSL::ExtendedVariable::~ExtendedVariable\28\29_7393 +11561:SkSL::ExtendedVariable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +11562:SkSL::ExtendedVariable::mangledName\28\29\20const +11563:SkSL::ExtendedVariable::layout\28\29\20const +11564:SkSL::ExtendedVariable::interfaceBlock\28\29\20const +11565:SkSL::ExtendedVariable::detachDeadInterfaceBlock\28\29 +11566:SkSL::ExpressionStatement::description\28\29\20const +11567:SkSL::Expression::getConstantValue\28int\29\20const +11568:SkSL::Expression::description\28\29\20const +11569:SkSL::EmptyExpression::description\28SkSL::OperatorPrecedence\29\20const +11570:SkSL::EmptyExpression::clone\28SkSL::Position\29\20const +11571:SkSL::DoStatement::description\28\29\20const +11572:SkSL::DiscardStatement::description\28\29\20const +11573:SkSL::DebugTracePriv::~DebugTracePriv\28\29_7403 +11574:SkSL::DebugTracePriv::dump\28SkWStream*\29\20const +11575:SkSL::CountReturnsWithLimit::visitStatement\28SkSL::Statement\20const&\29 +11576:SkSL::ContinueStatement::description\28\29\20const +11577:SkSL::ConstructorStruct::clone\28SkSL::Position\29\20const +11578:SkSL::ConstructorSplat::getConstantValue\28int\29\20const +11579:SkSL::ConstructorSplat::clone\28SkSL::Position\29\20const +11580:SkSL::ConstructorScalarCast::clone\28SkSL::Position\29\20const +11581:SkSL::ConstructorMatrixResize::getConstantValue\28int\29\20const +11582:SkSL::ConstructorMatrixResize::clone\28SkSL::Position\29\20const +11583:SkSL::ConstructorDiagonalMatrix::getConstantValue\28int\29\20const +11584:SkSL::ConstructorDiagonalMatrix::clone\28SkSL::Position\29\20const +11585:SkSL::ConstructorCompoundCast::clone\28SkSL::Position\29\20const +11586:SkSL::ConstructorCompound::clone\28SkSL::Position\29\20const +11587:SkSL::ConstructorArrayCast::clone\28SkSL::Position\29\20const +11588:SkSL::ConstructorArray::clone\28SkSL::Position\29\20const +11589:SkSL::Compiler::CompilerErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +11590:SkSL::CodeGenerator::~CodeGenerator\28\29 +11591:SkSL::ChildCall::description\28SkSL::OperatorPrecedence\29\20const +11592:SkSL::ChildCall::clone\28SkSL::Position\29\20const +11593:SkSL::BreakStatement::description\28\29\20const +11594:SkSL::Block::~Block\28\29_6908 +11595:SkSL::Block::description\28\29\20const +11596:SkSL::BinaryExpression::~BinaryExpression\28\29_6902 +11597:SkSL::BinaryExpression::description\28SkSL::OperatorPrecedence\29\20const +11598:SkSL::BinaryExpression::clone\28SkSL::Position\29\20const +11599:SkSL::ArrayType::slotType\28unsigned\20long\29\20const +11600:SkSL::ArrayType::slotCount\28\29\20const +11601:SkSL::ArrayType::matches\28SkSL::Type\20const&\29\20const +11602:SkSL::ArrayType::isUnsizedArray\28\29\20const +11603:SkSL::ArrayType::isOrContainsUnsizedArray\28\29\20const +11604:SkSL::ArrayType::isBuiltin\28\29\20const +11605:SkSL::ArrayType::isAllowedInUniform\28SkSL::Position*\29\20const +11606:SkSL::AnyConstructor::getConstantValue\28int\29\20const +11607:SkSL::AnyConstructor::description\28SkSL::OperatorPrecedence\29\20const +11608:SkSL::AnyConstructor::compareConstant\28SkSL::Expression\20const&\29\20const +11609:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29_6653 +11610:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::visitExpression\28SkSL::Expression\20const&\29 +11611:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29_6576 +11612:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitExpression\28SkSL::Expression\20const&\29 +11613:SkSL::AliasType::textureAccess\28\29\20const +11614:SkSL::AliasType::slotType\28unsigned\20long\29\20const +11615:SkSL::AliasType::slotCount\28\29\20const +11616:SkSL::AliasType::rows\28\29\20const +11617:SkSL::AliasType::priority\28\29\20const +11618:SkSL::AliasType::isVector\28\29\20const +11619:SkSL::AliasType::isUnsizedArray\28\29\20const +11620:SkSL::AliasType::isStruct\28\29\20const +11621:SkSL::AliasType::isScalar\28\29\20const +11622:SkSL::AliasType::isMultisampled\28\29\20const +11623:SkSL::AliasType::isMatrix\28\29\20const +11624:SkSL::AliasType::isLiteral\28\29\20const +11625:SkSL::AliasType::isInterfaceBlock\28\29\20const +11626:SkSL::AliasType::isDepth\28\29\20const +11627:SkSL::AliasType::isArrayedTexture\28\29\20const +11628:SkSL::AliasType::isArray\28\29\20const +11629:SkSL::AliasType::dimensions\28\29\20const +11630:SkSL::AliasType::componentType\28\29\20const +11631:SkSL::AliasType::columns\28\29\20const +11632:SkSL::AliasType::coercibleTypes\28\29\20const +11633:SkRuntimeShader::~SkRuntimeShader\28\29_5611 +11634:SkRuntimeShader::type\28\29\20const +11635:SkRuntimeShader::isOpaque\28\29\20const +11636:SkRuntimeShader::getTypeName\28\29\20const +11637:SkRuntimeShader::flatten\28SkWriteBuffer&\29\20const +11638:SkRuntimeShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11639:SkRuntimeEffect::~SkRuntimeEffect\28\29_4928 +11640:SkRuntimeEffect::MakeFromSource\28SkString\2c\20SkRuntimeEffect::Options\20const&\2c\20SkSL::ProgramKind\29 +11641:SkRuntimeEffect::MakeForColorFilter\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +11642:SkRuntimeEffect::MakeForBlender\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +11643:SkRgnClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11644:SkRgnClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11645:SkRgnClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +11646:SkRgnClipBlitter::blitH\28int\2c\20int\2c\20int\29 +11647:SkRgnClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +11648:SkRgnClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +11649:SkRgnBuilder::~SkRgnBuilder\28\29_4846 +11650:SkRgnBuilder::blitH\28int\2c\20int\2c\20int\29 +11651:SkResourceCache::~SkResourceCache\28\29_4858 +11652:SkResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +11653:SkResourceCache::purgeSharedID\28unsigned\20long\20long\29 +11654:SkResourceCache::getSingleAllocationByteLimit\28\29\20const +11655:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29_5480 +11656:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::rowBytes\28int\29\20const +11657:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::data\28int\29\20const +11658:SkRectClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11659:SkRectClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11660:SkRectClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +11661:SkRectClipBlitter::blitH\28int\2c\20int\2c\20int\29 +11662:SkRectClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +11663:SkRectClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +11664:SkRecordedDrawable::~SkRecordedDrawable\28\29_4821 +11665:SkRecordedDrawable::onMakePictureSnapshot\28\29 +11666:SkRecordedDrawable::onGetBounds\28\29 +11667:SkRecordedDrawable::onDraw\28SkCanvas*\29 +11668:SkRecordedDrawable::onApproximateBytesUsed\28\29 +11669:SkRecordedDrawable::getTypeName\28\29\20const +11670:SkRecordedDrawable::flatten\28SkWriteBuffer&\29\20const +11671:SkRecordCanvas::~SkRecordCanvas\28\29_4744 +11672:SkRecordCanvas::willSave\28\29 +11673:SkRecordCanvas::onResetClip\28\29 +11674:SkRecordCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +11675:SkRecordCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +11676:SkRecordCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +11677:SkRecordCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +11678:SkRecordCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +11679:SkRecordCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +11680:SkRecordCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +11681:SkRecordCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +11682:SkRecordCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +11683:SkRecordCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +11684:SkRecordCanvas::onDrawPaint\28SkPaint\20const&\29 +11685:SkRecordCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +11686:SkRecordCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +11687:SkRecordCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +11688:SkRecordCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +11689:SkRecordCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +11690:SkRecordCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +11691:SkRecordCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +11692:SkRecordCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +11693:SkRecordCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +11694:SkRecordCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +11695:SkRecordCanvas::onDrawBehind\28SkPaint\20const&\29 +11696:SkRecordCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +11697:SkRecordCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +11698:SkRecordCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +11699:SkRecordCanvas::onDoSaveBehind\28SkRect\20const*\29 +11700:SkRecordCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +11701:SkRecordCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +11702:SkRecordCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +11703:SkRecordCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +11704:SkRecordCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +11705:SkRecordCanvas::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +11706:SkRecordCanvas::didTranslate\28float\2c\20float\29 +11707:SkRecordCanvas::didSetM44\28SkM44\20const&\29 +11708:SkRecordCanvas::didScale\28float\2c\20float\29 +11709:SkRecordCanvas::didRestore\28\29 +11710:SkRecordCanvas::didConcat44\28SkM44\20const&\29 +11711:SkRecord::~SkRecord\28\29_4742 +11712:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29_2578 +11713:SkRasterPipelineSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +11714:SkRasterPipelineSpriteBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +11715:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29_4715 +11716:SkRasterPipelineBlitter::canDirectBlit\28\29 +11717:SkRasterPipelineBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +11718:SkRasterPipelineBlitter::blitH\28int\2c\20int\2c\20int\29 +11719:SkRasterPipelineBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +11720:SkRasterPipelineBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +11721:SkRasterPipelineBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +11722:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_3::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +11723:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_2::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +11724:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_1::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +11725:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_0::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +11726:SkRadialGradient::getTypeName\28\29\20const +11727:SkRadialGradient::flatten\28SkWriteBuffer&\29\20const +11728:SkRadialGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +11729:SkRadialGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +11730:SkRTree::~SkRTree\28\29_4654 +11731:SkRTree::search\28SkRect\20const&\2c\20std::__2::vector>*\29\20const +11732:SkRTree::insert\28SkRect\20const*\2c\20int\29 +11733:SkRTree::bytesUsed\28\29\20const +11734:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_3::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +11735:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_2::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +11736:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_1::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +11737:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_0::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +11738:SkPixelRef::~SkPixelRef\28\29_4621 +11739:SkPictureRecord::~SkPictureRecord\28\29_4533 +11740:SkPictureRecord::willSave\28\29 +11741:SkPictureRecord::willRestore\28\29 +11742:SkPictureRecord::onResetClip\28\29 +11743:SkPictureRecord::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +11744:SkPictureRecord::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +11745:SkPictureRecord::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +11746:SkPictureRecord::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +11747:SkPictureRecord::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +11748:SkPictureRecord::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +11749:SkPictureRecord::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +11750:SkPictureRecord::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +11751:SkPictureRecord::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +11752:SkPictureRecord::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +11753:SkPictureRecord::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +11754:SkPictureRecord::onDrawPaint\28SkPaint\20const&\29 +11755:SkPictureRecord::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +11756:SkPictureRecord::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +11757:SkPictureRecord::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +11758:SkPictureRecord::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +11759:SkPictureRecord::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +11760:SkPictureRecord::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +11761:SkPictureRecord::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +11762:SkPictureRecord::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +11763:SkPictureRecord::onDrawBehind\28SkPaint\20const&\29 +11764:SkPictureRecord::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +11765:SkPictureRecord::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +11766:SkPictureRecord::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +11767:SkPictureRecord::onDoSaveBehind\28SkRect\20const*\29 +11768:SkPictureRecord::onClipShader\28sk_sp\2c\20SkClipOp\29 +11769:SkPictureRecord::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +11770:SkPictureRecord::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +11771:SkPictureRecord::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +11772:SkPictureRecord::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +11773:SkPictureRecord::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +11774:SkPictureRecord::didTranslate\28float\2c\20float\29 +11775:SkPictureRecord::didSetM44\28SkM44\20const&\29 +11776:SkPictureRecord::didScale\28float\2c\20float\29 +11777:SkPictureRecord::didConcat44\28SkM44\20const&\29 +11778:SkPictureImageGenerator::~SkPictureImageGenerator\28\29_5472 +11779:SkPictureImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +11780:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29_8739 +11781:SkOTUtils::LocalizedStrings_SingleName::next\28SkTypeface::LocalizedString*\29 +11782:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29_7867 +11783:SkOTUtils::LocalizedStrings_NameTable::next\28SkTypeface::LocalizedString*\29 +11784:SkNoPixelsDevice::~SkNoPixelsDevice\28\29_3147 +11785:SkNoPixelsDevice::replaceClip\28SkIRect\20const&\29 +11786:SkNoPixelsDevice::pushClipStack\28\29 +11787:SkNoPixelsDevice::popClipStack\28\29 +11788:SkNoPixelsDevice::onClipShader\28sk_sp\29 +11789:SkNoPixelsDevice::isClipWideOpen\28\29\20const +11790:SkNoPixelsDevice::isClipRect\28\29\20const +11791:SkNoPixelsDevice::isClipEmpty\28\29\20const +11792:SkNoPixelsDevice::isClipAntiAliased\28\29\20const +11793:SkNoPixelsDevice::devClipBounds\28\29\20const +11794:SkNoPixelsDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +11795:SkNoPixelsDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +11796:SkNoPixelsDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +11797:SkNoPixelsDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +11798:SkNoPixelsDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +11799:SkMipmap::~SkMipmap\28\29_3703 +11800:SkMipmap::onDataChange\28void*\2c\20void*\29 +11801:SkMemoryStream::~SkMemoryStream\28\29_5132 +11802:SkMemoryStream::setMemory\28void\20const*\2c\20unsigned\20long\2c\20bool\29 +11803:SkMemoryStream::seek\28unsigned\20long\29 +11804:SkMemoryStream::rewind\28\29 +11805:SkMemoryStream::read\28void*\2c\20unsigned\20long\29 +11806:SkMemoryStream::peek\28void*\2c\20unsigned\20long\29\20const +11807:SkMemoryStream::onFork\28\29\20const +11808:SkMemoryStream::onDuplicate\28\29\20const +11809:SkMemoryStream::move\28long\29 +11810:SkMemoryStream::isAtEnd\28\29\20const +11811:SkMemoryStream::getMemoryBase\28\29 +11812:SkMemoryStream::getLength\28\29\20const +11813:SkMemoryStream::getData\28\29\20const +11814:SkMatrixColorFilter::onIsAlphaUnchanged\28\29\20const +11815:SkMatrixColorFilter::onAsAColorMatrix\28float*\29\20const +11816:SkMatrixColorFilter::getTypeName\28\29\20const +11817:SkMatrixColorFilter::flatten\28SkWriteBuffer&\29\20const +11818:SkMatrixColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +11819:SkMatrix::Trans_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +11820:SkMatrix::Scale_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +11821:SkMatrix::Poly4Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +11822:SkMatrix::Poly3Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +11823:SkMatrix::Poly2Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +11824:SkMatrix::Persp_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +11825:SkMatrix::Identity_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +11826:SkMatrix::Affine_vpts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +11827:SkMaskFilterBase::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +11828:SkMaskFilterBase::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +11829:SkMaskFilterBase::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +11830:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29_3555 +11831:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29_4623 +11832:SkLocalMatrixShader::~SkLocalMatrixShader\28\29_5600 +11833:SkLocalMatrixShader::~SkLocalMatrixShader\28\29 +11834:SkLocalMatrixShader::type\28\29\20const +11835:SkLocalMatrixShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +11836:SkLocalMatrixShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11837:SkLocalMatrixShader::makeAsALocalMatrixShader\28SkMatrix*\29\20const +11838:SkLocalMatrixShader::isOpaque\28\29\20const +11839:SkLocalMatrixShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11840:SkLocalMatrixShader::getTypeName\28\29\20const +11841:SkLocalMatrixShader::flatten\28SkWriteBuffer&\29\20const +11842:SkLocalMatrixShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +11843:SkLocalMatrixShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11844:SkLocalMatrixImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +11845:SkLocalMatrixImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +11846:SkLocalMatrixImageFilter::onFilterImage\28skif::Context\20const&\29\20const +11847:SkLocalMatrixImageFilter::getTypeName\28\29\20const +11848:SkLocalMatrixImageFilter::flatten\28SkWriteBuffer&\29\20const +11849:SkLocalMatrixImageFilter::computeFastBounds\28SkRect\20const&\29\20const +11850:SkLinearGradient::getTypeName\28\29\20const +11851:SkLinearGradient::flatten\28SkWriteBuffer&\29\20const +11852:SkLinearGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +11853:SkJSONWriter::popScope\28\29 +11854:SkJSONWriter::appendf\28char\20const*\2c\20...\29 +11855:SkIntersections::hasOppT\28double\29\20const +11856:SkImage_Raster::~SkImage_Raster\28\29_5448 +11857:SkImage_Raster::onReinterpretColorSpace\28sk_sp\29\20const +11858:SkImage_Raster::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +11859:SkImage_Raster::onPeekPixels\28SkPixmap*\29\20const +11860:SkImage_Raster::onPeekMips\28\29\20const +11861:SkImage_Raster::onMakeWithMipmaps\28sk_sp\29\20const +11862:SkImage_Raster::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +11863:SkImage_Raster::onHasMipmaps\28\29\20const +11864:SkImage_Raster::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +11865:SkImage_Raster::notifyAddedToRasterCache\28\29\20const +11866:SkImage_Raster::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +11867:SkImage_Raster::isValid\28SkRecorder*\29\20const +11868:SkImage_Raster::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +11869:SkImage_Picture::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +11870:SkImage_LazyTexture::readPixelsProxy\28GrDirectContext*\2c\20SkPixmap\20const&\29\20const +11871:SkImage_LazyTexture::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +11872:SkImage_Lazy::onReinterpretColorSpace\28sk_sp\29\20const +11873:SkImage_Lazy::onRefEncoded\28\29\20const +11874:SkImage_Lazy::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +11875:SkImage_Lazy::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +11876:SkImage_Lazy::onIsProtected\28\29\20const +11877:SkImage_Lazy::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +11878:SkImage_Lazy::isValid\28SkRecorder*\29\20const +11879:SkImage_Lazy::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +11880:SkImage_GaneshBase::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +11881:SkImage_GaneshBase::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +11882:SkImage_GaneshBase::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +11883:SkImage_GaneshBase::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +11884:SkImage_GaneshBase::isValid\28SkRecorder*\29\20const +11885:SkImage_GaneshBase::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +11886:SkImage_GaneshBase::directContext\28\29\20const +11887:SkImage_Ganesh::~SkImage_Ganesh\28\29_11286 +11888:SkImage_Ganesh::textureSize\28\29\20const +11889:SkImage_Ganesh::onReinterpretColorSpace\28sk_sp\29\20const +11890:SkImage_Ganesh::onMakeColorTypeAndColorSpace\28GrDirectContext*\2c\20SkColorType\2c\20sk_sp\29\20const +11891:SkImage_Ganesh::onIsProtected\28\29\20const +11892:SkImage_Ganesh::onHasMipmaps\28\29\20const +11893:SkImage_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +11894:SkImage_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +11895:SkImage_Ganesh::generatingSurfaceIsDeleted\28\29 +11896:SkImage_Ganesh::flush\28GrDirectContext*\2c\20GrFlushInfo\20const&\29\20const +11897:SkImage_Ganesh::asView\28GrRecordingContext*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29\20const +11898:SkImage_Ganesh::asFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29\20const +11899:SkImage_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +11900:SkImage_Base::notifyAddedToRasterCache\28\29\20const +11901:SkImage_Base::makeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +11902:SkImage_Base::makeColorSpace\28SkRecorder*\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +11903:SkImage_Base::isTextureBacked\28\29\20const +11904:SkImage_Base::isLazyGenerated\28\29\20const +11905:SkImageShader::~SkImageShader\28\29_5564 +11906:SkImageShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +11907:SkImageShader::isOpaque\28\29\20const +11908:SkImageShader::getTypeName\28\29\20const +11909:SkImageShader::flatten\28SkWriteBuffer&\29\20const +11910:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11911:SkImageGenerator::~SkImageGenerator\28\29_612 +11912:SkImageFilter::computeFastBounds\28SkRect\20const&\29\20const +11913:SkGradientBaseShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11914:SkGradientBaseShader::isOpaque\28\29\20const +11915:SkGradientBaseShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11916:SkGaussianColorFilter::getTypeName\28\29\20const +11917:SkGaussianColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +11918:SkGammaColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +11919:SkGammaColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +11920:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29_8616 +11921:SkFontStyleSet_Custom::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +11922:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29_8753 +11923:SkFontScanner_FreeType::scanFile\28SkStreamAsset*\2c\20int*\29\20const +11924:SkFontScanner_FreeType::scanFace\28SkStreamAsset*\2c\20int\2c\20int*\29\20const +11925:SkFontScanner_FreeType::getFactoryId\28\29\20const +11926:SkFontMgr_Custom::~SkFontMgr_Custom\28\29_8622 +11927:SkFontMgr_Custom::onMatchFamily\28char\20const*\29\20const +11928:SkFontMgr_Custom::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +11929:SkFontMgr_Custom::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +11930:SkFontMgr_Custom::onMakeFromFile\28char\20const*\2c\20int\29\20const +11931:SkFontMgr_Custom::onMakeFromData\28sk_sp\2c\20int\29\20const +11932:SkFontMgr_Custom::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +11933:SkFontMgr_Custom::onGetFamilyName\28int\2c\20SkString*\29\20const +11934:SkFILEStream::~SkFILEStream\28\29_5109 +11935:SkFILEStream::seek\28unsigned\20long\29 +11936:SkFILEStream::rewind\28\29 +11937:SkFILEStream::read\28void*\2c\20unsigned\20long\29 +11938:SkFILEStream::onFork\28\29\20const +11939:SkFILEStream::onDuplicate\28\29\20const +11940:SkFILEStream::move\28long\29 +11941:SkFILEStream::isAtEnd\28\29\20const +11942:SkFILEStream::getPosition\28\29\20const +11943:SkFILEStream::getLength\28\29\20const +11944:SkEmptyShader::getTypeName\28\29\20const +11945:SkEmptyPicture::~SkEmptyPicture\28\29 +11946:SkEmptyPicture::cullRect\28\29\20const +11947:SkEmptyFontMgr::onMatchFamily\28char\20const*\29\20const +11948:SkEdgeBuilder::build\28SkPathRaw\20const&\2c\20SkIRect\20const*\2c\20bool\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +11949:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29_5149 +11950:SkDynamicMemoryWStream::bytesWritten\28\29\20const +11951:SkDevice::strikeDeviceInfo\28\29\20const +11952:SkDevice::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +11953:SkDevice::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +11954:SkDevice::drawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20sk_sp\2c\20SkPaint\20const&\29 +11955:SkDevice::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +11956:SkDevice::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +11957:SkDevice::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +11958:SkDevice::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +11959:SkDevice::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +11960:SkDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +11961:SkDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +11962:SkDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +11963:SkDevice::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +11964:SkDevice::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +11965:SkDashImpl::~SkDashImpl\28\29_5825 +11966:SkDashImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +11967:SkDashImpl::onAsPoints\28SkPathEffectBase::PointData*\2c\20SkPath\20const&\2c\20SkStrokeRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\29\20const +11968:SkDashImpl::getTypeName\28\29\20const +11969:SkDashImpl::flatten\28SkWriteBuffer&\29\20const +11970:SkDashImpl::asADash\28\29\20const +11971:SkDCurve::nearPoint\28SkPath::Verb\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29\20const +11972:SkContourMeasure::~SkContourMeasure\28\29_3067 +11973:SkConicalGradient::getTypeName\28\29\20const +11974:SkConicalGradient::flatten\28SkWriteBuffer&\29\20const +11975:SkConicalGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +11976:SkConicalGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +11977:SkComposeColorFilter::~SkComposeColorFilter\28\29_5929 +11978:SkComposeColorFilter::onIsAlphaUnchanged\28\29\20const +11979:SkComposeColorFilter::getTypeName\28\29\20const +11980:SkComposeColorFilter::flatten\28SkWriteBuffer&\29\20const +11981:SkComposeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +11982:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29_5922 +11983:SkColorSpaceXformColorFilter::getTypeName\28\29\20const +11984:SkColorSpaceXformColorFilter::flatten\28SkWriteBuffer&\29\20const +11985:SkColorSpaceXformColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +11986:SkColorShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11987:SkColorShader::isOpaque\28\29\20const +11988:SkColorShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +11989:SkColorShader::getTypeName\28\29\20const +11990:SkColorShader::flatten\28SkWriteBuffer&\29\20const +11991:SkColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11992:SkColorFilterShader::~SkColorFilterShader\28\29_5537 +11993:SkColorFilterShader::isOpaque\28\29\20const +11994:SkColorFilterShader::getTypeName\28\29\20const +11995:SkColorFilterShader::flatten\28SkWriteBuffer&\29\20const +11996:SkColorFilterShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +11997:SkColorFilterBase::onFilterColor4f\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkColorSpace*\29\20const +11998:SkCoincidentSpans::setOppPtTStart\28SkOpPtT\20const*\29 +11999:SkCoincidentSpans::setOppPtTEnd\28SkOpPtT\20const*\29 +12000:SkCoincidentSpans::setCoinPtTStart\28SkOpPtT\20const*\29 +12001:SkCoincidentSpans::setCoinPtTEnd\28SkOpPtT\20const*\29 +12002:SkCanvas::~SkCanvas\28\29_2859 +12003:SkCanvas::recordingContext\28\29\20const +12004:SkCanvas::recorder\28\29\20const +12005:SkCanvas::onPeekPixels\28SkPixmap*\29 +12006:SkCanvas::onNewSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +12007:SkCanvas::onImageInfo\28\29\20const +12008:SkCanvas::onGetProps\28SkSurfaceProps*\2c\20bool\29\20const +12009:SkCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +12010:SkCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +12011:SkCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +12012:SkCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +12013:SkCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +12014:SkCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +12015:SkCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +12016:SkCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +12017:SkCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +12018:SkCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +12019:SkCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +12020:SkCanvas::onDrawPaint\28SkPaint\20const&\29 +12021:SkCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +12022:SkCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +12023:SkCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +12024:SkCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +12025:SkCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +12026:SkCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +12027:SkCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +12028:SkCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +12029:SkCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +12030:SkCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +12031:SkCanvas::onDrawBehind\28SkPaint\20const&\29 +12032:SkCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +12033:SkCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +12034:SkCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +12035:SkCanvas::onDiscard\28\29 +12036:SkCanvas::onConvertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +12037:SkCanvas::onAccessTopLayerPixels\28SkPixmap*\29 +12038:SkCanvas::isClipRect\28\29\20const +12039:SkCanvas::isClipEmpty\28\29\20const +12040:SkCanvas::getBaseLayerSize\28\29\20const +12041:SkCanvas::baseRecorder\28\29\20const +12042:SkCachedData::~SkCachedData\28\29_2776 +12043:SkCTMShader::~SkCTMShader\28\29_5590 +12044:SkCTMShader::~SkCTMShader\28\29 +12045:SkCTMShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +12046:SkCTMShader::getTypeName\28\29\20const +12047:SkCTMShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +12048:SkCTMShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +12049:SkBreakIterator_client::~SkBreakIterator_client\28\29_8540 +12050:SkBreakIterator_client::status\28\29 +12051:SkBreakIterator_client::setText\28char\20const*\2c\20int\29 +12052:SkBreakIterator_client::setText\28char16_t\20const*\2c\20int\29 +12053:SkBreakIterator_client::next\28\29 +12054:SkBreakIterator_client::isDone\28\29 +12055:SkBreakIterator_client::first\28\29 +12056:SkBreakIterator_client::current\28\29 +12057:SkBlurMaskFilterImpl::getTypeName\28\29\20const +12058:SkBlurMaskFilterImpl::flatten\28SkWriteBuffer&\29\20const +12059:SkBlurMaskFilterImpl::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +12060:SkBlurMaskFilterImpl::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +12061:SkBlurMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +12062:SkBlurMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +12063:SkBlurMaskFilterImpl::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +12064:SkBlurMaskFilterImpl::asABlur\28SkMaskFilterBase::BlurRec*\29\20const +12065:SkBlitter::canDirectBlit\28\29 +12066:SkBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12067:SkBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +12068:SkBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +12069:SkBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +12070:SkBlitter::allocBlitMemory\28unsigned\20long\29 +12071:SkBlendShader::~SkBlendShader\28\29_5523 +12072:SkBlendShader::getTypeName\28\29\20const +12073:SkBlendShader::flatten\28SkWriteBuffer&\29\20const +12074:SkBlendShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +12075:SkBlendModeColorFilter::onIsAlphaUnchanged\28\29\20const +12076:SkBlendModeColorFilter::onAsAColorMode\28unsigned\20int*\2c\20SkBlendMode*\29\20const +12077:SkBlendModeColorFilter::getTypeName\28\29\20const +12078:SkBlendModeColorFilter::flatten\28SkWriteBuffer&\29\20const +12079:SkBlendModeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +12080:SkBlendModeBlender::onAppendStages\28SkStageRec\20const&\29\20const +12081:SkBlendModeBlender::getTypeName\28\29\20const +12082:SkBlendModeBlender::flatten\28SkWriteBuffer&\29\20const +12083:SkBlendModeBlender::asBlendMode\28\29\20const +12084:SkBitmapDevice::~SkBitmapDevice\28\29_2242 +12085:SkBitmapDevice::snapSpecial\28SkIRect\20const&\2c\20bool\29 +12086:SkBitmapDevice::setImmutable\28\29 +12087:SkBitmapDevice::replaceClip\28SkIRect\20const&\29 +12088:SkBitmapDevice::pushClipStack\28\29 +12089:SkBitmapDevice::popClipStack\28\29 +12090:SkBitmapDevice::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +12091:SkBitmapDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +12092:SkBitmapDevice::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +12093:SkBitmapDevice::onClipShader\28sk_sp\29 +12094:SkBitmapDevice::onAccessPixels\28SkPixmap*\29 +12095:SkBitmapDevice::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +12096:SkBitmapDevice::isClipWideOpen\28\29\20const +12097:SkBitmapDevice::isClipRect\28\29\20const +12098:SkBitmapDevice::isClipEmpty\28\29\20const +12099:SkBitmapDevice::isClipAntiAliased\28\29\20const +12100:SkBitmapDevice::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +12101:SkBitmapDevice::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +12102:SkBitmapDevice::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +12103:SkBitmapDevice::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +12104:SkBitmapDevice::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +12105:SkBitmapDevice::drawPaint\28SkPaint\20const&\29 +12106:SkBitmapDevice::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +12107:SkBitmapDevice::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +12108:SkBitmapDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +12109:SkBitmapDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +12110:SkBitmapDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +12111:SkBitmapDevice::devClipBounds\28\29\20const +12112:SkBitmapDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +12113:SkBitmapDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +12114:SkBitmapDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +12115:SkBitmapDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +12116:SkBitmapDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +12117:SkBitmapDevice::baseRecorder\28\29\20const +12118:SkBitmapDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +12119:SkBitmapCache::Rec::~Rec\28\29_2203 +12120:SkBitmapCache::Rec::postAddInstall\28void*\29 +12121:SkBitmapCache::Rec::getCategory\28\29\20const +12122:SkBitmapCache::Rec::canBePurged\28\29 +12123:SkBitmapCache::Rec::bytesUsed\28\29\20const +12124:SkBitmapCache::Rec::ReleaseProc\28void*\2c\20void*\29 +12125:SkBitmapCache::Rec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +12126:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29_5347 +12127:SkBinaryWriteBuffer::write\28SkM44\20const&\29 +12128:SkBinaryWriteBuffer::writeTypeface\28SkTypeface*\29 +12129:SkBinaryWriteBuffer::writeString\28std::__2::basic_string_view>\29 +12130:SkBinaryWriteBuffer::writeStream\28SkStream*\2c\20unsigned\20long\29 +12131:SkBinaryWriteBuffer::writeScalar\28float\29 +12132:SkBinaryWriteBuffer::writeSampling\28SkSamplingOptions\20const&\29 +12133:SkBinaryWriteBuffer::writeRegion\28SkRegion\20const&\29 +12134:SkBinaryWriteBuffer::writeRect\28SkRect\20const&\29 +12135:SkBinaryWriteBuffer::writePoint\28SkPoint\20const&\29 +12136:SkBinaryWriteBuffer::writePointArray\28SkSpan\29 +12137:SkBinaryWriteBuffer::writePoint3\28SkPoint3\20const&\29 +12138:SkBinaryWriteBuffer::writePath\28SkPath\20const&\29 +12139:SkBinaryWriteBuffer::writePaint\28SkPaint\20const&\29 +12140:SkBinaryWriteBuffer::writePad32\28void\20const*\2c\20unsigned\20long\29 +12141:SkBinaryWriteBuffer::writeMatrix\28SkMatrix\20const&\29 +12142:SkBinaryWriteBuffer::writeImage\28SkImage\20const*\29 +12143:SkBinaryWriteBuffer::writeColor4fArray\28SkSpan\20const>\29 +12144:SkBinaryWriteBuffer::writeBool\28bool\29 +12145:SkBigPicture::~SkBigPicture\28\29_2121 +12146:SkBigPicture::playback\28SkCanvas*\2c\20SkPicture::AbortCallback*\29\20const +12147:SkBigPicture::approximateOpCount\28bool\29\20const +12148:SkBigPicture::approximateBytesUsed\28\29\20const +12149:SkBidiSubsetFactory::errorName\28UErrorCode\29\20const +12150:SkBidiSubsetFactory::bidi_setPara\28UBiDi*\2c\20char16_t\20const*\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20UErrorCode*\29\20const +12151:SkBidiSubsetFactory::bidi_reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29\20const +12152:SkBidiSubsetFactory::bidi_openSized\28int\2c\20int\2c\20UErrorCode*\29\20const +12153:SkBidiSubsetFactory::bidi_getLevelAt\28UBiDi\20const*\2c\20int\29\20const +12154:SkBidiSubsetFactory::bidi_getLength\28UBiDi\20const*\29\20const +12155:SkBidiSubsetFactory::bidi_getDirection\28UBiDi\20const*\29\20const +12156:SkBidiSubsetFactory::bidi_close_callback\28\29\20const +12157:SkBasicEdgeBuilder::addQuad\28SkPoint\20const*\29 +12158:SkBasicEdgeBuilder::addLine\28SkPoint\20const*\29 +12159:SkBasicEdgeBuilder::addCubic\28SkPoint\20const*\29 +12160:SkBBoxHierarchy::insert\28SkRect\20const*\2c\20SkBBoxHierarchy::Metadata\20const*\2c\20int\29 +12161:SkArenaAlloc::SkipPod\28char*\29 +12162:SkArenaAlloc::NextBlock\28char*\29 +12163:SkAnalyticEdgeBuilder::allocEdges\28unsigned\20long\2c\20unsigned\20long*\29 +12164:SkAnalyticEdgeBuilder::addQuad\28SkPoint\20const*\29 +12165:SkAnalyticEdgeBuilder::addPolyLine\28SkPoint\20const*\2c\20char*\2c\20char**\29 +12166:SkAnalyticEdgeBuilder::addLine\28SkPoint\20const*\29 +12167:SkAnalyticEdgeBuilder::addCubic\28SkPoint\20const*\29 +12168:SkAAClipBlitter::~SkAAClipBlitter\28\29_2084 +12169:SkAAClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12170:SkAAClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12171:SkAAClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +12172:SkAAClipBlitter::blitH\28int\2c\20int\2c\20int\29 +12173:SkAAClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +12174:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_1::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +12175:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_0::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +12176:SkAAClip::Builder::Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12177:SkAAClip::Builder::Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12178:SkAAClip::Builder::Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +12179:SkAAClip::Builder::Blitter::blitH\28int\2c\20int\2c\20int\29 +12180:SkAAClip::Builder::Blitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +12181:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29_2540 +12182:SkA8_Coverage_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12183:SkA8_Coverage_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12184:SkA8_Coverage_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +12185:SkA8_Coverage_Blitter::blitH\28int\2c\20int\2c\20int\29 +12186:SkA8_Coverage_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +12187:SkA8_Blitter::~SkA8_Blitter\28\29_2555 +12188:SkA8_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12189:SkA8_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12190:SkA8_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +12191:SkA8_Blitter::blitH\28int\2c\20int\2c\20int\29 +12192:SkA8_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +12193:SkA8Blitter_Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +12194:ShaderPDXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12195:ShaderPDXferProcessor::name\28\29\20const +12196:ShaderPDXferProcessor::makeProgramImpl\28\29\20const +12197:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +12198:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +12199:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12200:RuntimeEffectRPCallbacks::toLinearSrgb\28void\20const*\29 +12201:RuntimeEffectRPCallbacks::fromLinearSrgb\28void\20const*\29 +12202:RuntimeEffectRPCallbacks::appendShader\28int\29 +12203:RuntimeEffectRPCallbacks::appendColorFilter\28int\29 +12204:RuntimeEffectRPCallbacks::appendBlender\28int\29 +12205:RunBasedAdditiveBlitter::getRealBlitter\28bool\29 +12206:RunBasedAdditiveBlitter::flush_if_y_changed\28int\2c\20int\29 +12207:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +12208:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +12209:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12210:Round_Up_To_Grid +12211:Round_To_Half_Grid +12212:Round_To_Grid +12213:Round_To_Double_Grid +12214:Round_Super_45 +12215:Round_Super +12216:Round_None +12217:Round_Down_To_Grid +12218:RoundJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +12219:RoundCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +12220:Read_CVT_Stretched +12221:Read_CVT +12222:Project_y +12223:Project +12224:PrePostInverseBlitterProc\28SkBlitter*\2c\20int\2c\20bool\29 +12225:PorterDuffXferProcessor::onHasSecondaryOutput\28\29\20const +12226:PorterDuffXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12227:PorterDuffXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12228:PorterDuffXferProcessor::name\28\29\20const +12229:PorterDuffXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12230:PorterDuffXferProcessor::makeProgramImpl\28\29\20const +12231:PDLCDXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +12232:PDLCDXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12233:PDLCDXferProcessor::name\28\29\20const +12234:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +12235:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12236:PDLCDXferProcessor::makeProgramImpl\28\29\20const +12237:OT::match_glyph\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +12238:OT::match_coverage\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +12239:OT::match_class_cached\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +12240:OT::match_class_cached2\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +12241:OT::match_class_cached1\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +12242:OT::match_class\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +12243:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GSUB_impl::SubstLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +12244:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GPOS_impl::PosLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +12245:OT::Layout::Common::RangeRecord::cmp_range\28void\20const*\2c\20void\20const*\29 +12246:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +12247:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +12248:OT::CmapSubtableFormat4::accelerator_t::get_glyph_func\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12249:Move_CVT_Stretched +12250:Move_CVT +12251:MiterJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +12252:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29_4977 +12253:MaskAdditiveBlitter::getWidth\28\29 +12254:MaskAdditiveBlitter::getRealBlitter\28bool\29 +12255:MaskAdditiveBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12256:MaskAdditiveBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12257:MaskAdditiveBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +12258:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +12259:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +12260:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12261:InverseBlitter::blitH\28int\2c\20int\2c\20int\29 +12262:Horish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +12263:Horish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +12264:HLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +12265:HLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +12266:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12267:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12268:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const +12269:GrYUVtoRGBEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12270:GrYUVtoRGBEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12271:GrYUVtoRGBEffect::name\28\29\20const +12272:GrYUVtoRGBEffect::clone\28\29\20const +12273:GrXferProcessor::ProgramImpl::emitWriteSwizzle\28GrGLSLXPFragmentBuilder*\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20char\20const*\29\20const +12274:GrXferProcessor::ProgramImpl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12275:GrXferProcessor::ProgramImpl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +12276:GrWritePixelsTask::~GrWritePixelsTask\28\29_10561 +12277:GrWritePixelsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +12278:GrWritePixelsTask::onExecute\28GrOpFlushState*\29 +12279:GrWritePixelsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +12280:GrWaitRenderTask::~GrWaitRenderTask\28\29_10556 +12281:GrWaitRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +12282:GrWaitRenderTask::onExecute\28GrOpFlushState*\29 +12283:GrWaitRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +12284:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29_10549 +12285:GrTransferFromRenderTask::onExecute\28GrOpFlushState*\29 +12286:GrTransferFromRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +12287:GrThreadSafeCache::Trampoline::~Trampoline\28\29_10545 +12288:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29_10517 +12289:GrTextureResolveRenderTask::onExecute\28GrOpFlushState*\29 +12290:GrTextureResolveRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +12291:GrTextureEffect::~GrTextureEffect\28\29_10991 +12292:GrTextureEffect::onMakeProgramImpl\28\29\20const +12293:GrTextureEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12294:GrTextureEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12295:GrTextureEffect::name\28\29\20const +12296:GrTextureEffect::clone\28\29\20const +12297:GrTextureEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12298:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12299:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29_9074 +12300:GrTDeferredProxyUploader>::freeData\28\29 +12301:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29_12232 +12302:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::freeData\28\29 +12303:GrSurfaceProxy::getUniqueKey\28\29\20const +12304:GrSurface::getResourceType\28\29\20const +12305:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29_12397 +12306:GrStrokeTessellationShader::name\28\29\20const +12307:GrStrokeTessellationShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12308:GrStrokeTessellationShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12309:GrStrokeTessellationShader::Impl::~Impl\28\29_12402 +12310:GrStrokeTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12311:GrStrokeTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12312:GrSkSLFP::~GrSkSLFP\28\29_10948 +12313:GrSkSLFP::onMakeProgramImpl\28\29\20const +12314:GrSkSLFP::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12315:GrSkSLFP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12316:GrSkSLFP::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12317:GrSkSLFP::clone\28\29\20const +12318:GrSkSLFP::Impl::~Impl\28\29_10956 +12319:GrSkSLFP::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12320:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +12321:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +12322:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +12323:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +12324:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::getMangledName\28char\20const*\29 +12325:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +12326:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +12327:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +12328:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareFunction\28char\20const*\29 +12329:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12330:GrSimpleMesh*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29::'lambda'\28char*\29::__invoke\28char*\29 +12331:GrRingBuffer::FinishSubmit\28void*\29 +12332:GrResourceCache::CompareTimestamp\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29 +12333:GrRenderTask::disown\28GrDrawingManager*\29 +12334:GrRecordingContext::~GrRecordingContext\28\29_10281 +12335:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29_10939 +12336:GrRRectShadowGeoProc::onTextureSampler\28int\29\20const +12337:GrRRectShadowGeoProc::name\28\29\20const +12338:GrRRectShadowGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12339:GrRRectShadowGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12340:GrQuadEffect::name\28\29\20const +12341:GrQuadEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12342:GrQuadEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12343:GrQuadEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12344:GrQuadEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12345:GrPorterDuffXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12346:GrPorterDuffXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12347:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29_10881 +12348:GrPerlinNoise2Effect::onMakeProgramImpl\28\29\20const +12349:GrPerlinNoise2Effect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12350:GrPerlinNoise2Effect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12351:GrPerlinNoise2Effect::name\28\29\20const +12352:GrPerlinNoise2Effect::clone\28\29\20const +12353:GrPerlinNoise2Effect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12354:GrPerlinNoise2Effect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12355:GrPathTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12356:GrPathTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12357:GrOpsRenderPass::onExecuteDrawable\28std::__2::unique_ptr>\29 +12358:GrOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +12359:GrOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +12360:GrOpFlushState::writeView\28\29\20const +12361:GrOpFlushState::usesMSAASurface\28\29\20const +12362:GrOpFlushState::tokenTracker\28\29 +12363:GrOpFlushState::threadSafeCache\28\29\20const +12364:GrOpFlushState::strikeCache\28\29\20const +12365:GrOpFlushState::sampledProxyArray\28\29 +12366:GrOpFlushState::rtProxy\28\29\20const +12367:GrOpFlushState::resourceProvider\28\29\20const +12368:GrOpFlushState::renderPassBarriers\28\29\20const +12369:GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +12370:GrOpFlushState::putBackIndirectDraws\28int\29 +12371:GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +12372:GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +12373:GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +12374:GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +12375:GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +12376:GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +12377:GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +12378:GrOpFlushState::dstProxyView\28\29\20const +12379:GrOpFlushState::colorLoadOp\28\29\20const +12380:GrOpFlushState::caps\28\29\20const +12381:GrOpFlushState::atlasManager\28\29\20const +12382:GrOpFlushState::appliedClip\28\29\20const +12383:GrOpFlushState::addInlineUpload\28std::__2::function&\29>&&\29 +12384:GrOnFlushCallbackObject::postFlush\28skgpu::Token\29 +12385:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12386:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12387:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const +12388:GrModulateAtlasCoverageEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12389:GrModulateAtlasCoverageEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12390:GrModulateAtlasCoverageEffect::name\28\29\20const +12391:GrModulateAtlasCoverageEffect::clone\28\29\20const +12392:GrMeshDrawOp::onPrepare\28GrOpFlushState*\29 +12393:GrMeshDrawOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12394:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12395:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12396:GrMatrixEffect::onMakeProgramImpl\28\29\20const +12397:GrMatrixEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12398:GrMatrixEffect::name\28\29\20const +12399:GrMatrixEffect::clone\28\29\20const +12400:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29_10586 +12401:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::$_0::__invoke\28void\20const*\2c\20void*\29 +12402:GrImageContext::~GrImageContext\28\29 +12403:GrHardClip::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +12404:GrGpuResource::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +12405:GrGpuBuffer::unref\28\29\20const +12406:GrGpuBuffer::ref\28\29\20const +12407:GrGpuBuffer::getResourceType\28\29\20const +12408:GrGpuBuffer::computeScratchKey\28skgpu::ScratchKey*\29\20const +12409:GrGpu::startTimerQuery\28\29 +12410:GrGpu::endTimerQuery\28GrTimerQuery\20const&\29 +12411:GrGeometryProcessor::onTextureSampler\28int\29\20const +12412:GrGLVaryingHandler::~GrGLVaryingHandler\28\29 +12413:GrGLUniformHandler::~GrGLUniformHandler\28\29_12980 +12414:GrGLUniformHandler::samplerVariable\28GrResourceHandle\29\20const +12415:GrGLUniformHandler::samplerSwizzle\28GrResourceHandle\29\20const +12416:GrGLUniformHandler::internalAddUniformArray\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20bool\2c\20int\2c\20char\20const**\29 +12417:GrGLUniformHandler::getUniformCStr\28GrResourceHandle\29\20const +12418:GrGLUniformHandler::appendUniformDecls\28GrShaderFlags\2c\20SkString*\29\20const +12419:GrGLUniformHandler::addSampler\28GrBackendFormat\20const&\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20GrShaderCaps\20const*\29 +12420:GrGLTextureRenderTarget::onSetLabel\28\29 +12421:GrGLTextureRenderTarget::backendFormat\28\29\20const +12422:GrGLTexture::textureParamsModified\28\29 +12423:GrGLTexture::onStealBackendTexture\28GrBackendTexture*\2c\20std::__2::function*\29 +12424:GrGLTexture::getBackendTexture\28\29\20const +12425:GrGLSemaphore::~GrGLSemaphore\28\29_12912 +12426:GrGLSemaphore::setIsOwned\28\29 +12427:GrGLSemaphore::backendSemaphore\28\29\20const +12428:GrGLSLVertexBuilder::~GrGLSLVertexBuilder\28\29 +12429:GrGLSLVertexBuilder::onFinalize\28\29 +12430:GrGLSLUniformHandler::inputSamplerSwizzle\28GrResourceHandle\29\20const +12431:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +12432:GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +12433:GrGLSLFragmentShaderBuilder::forceHighPrecision\28\29 +12434:GrGLRenderTarget::getBackendRenderTarget\28\29\20const +12435:GrGLRenderTarget::completeStencilAttachment\28GrAttachment*\2c\20bool\29 +12436:GrGLRenderTarget::canAttemptStencilAttachment\28bool\29\20const +12437:GrGLRenderTarget::alwaysClearStencil\28\29\20const +12438:GrGLProgramDataManager::~GrGLProgramDataManager\28\29_12866 +12439:GrGLProgramDataManager::setMatrix4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +12440:GrGLProgramDataManager::setMatrix4f\28GrResourceHandle\2c\20float\20const*\29\20const +12441:GrGLProgramDataManager::setMatrix3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +12442:GrGLProgramDataManager::setMatrix3f\28GrResourceHandle\2c\20float\20const*\29\20const +12443:GrGLProgramDataManager::setMatrix2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +12444:GrGLProgramDataManager::setMatrix2f\28GrResourceHandle\2c\20float\20const*\29\20const +12445:GrGLProgramDataManager::set4iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +12446:GrGLProgramDataManager::set4i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\2c\20int\29\20const +12447:GrGLProgramDataManager::set4f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\2c\20float\29\20const +12448:GrGLProgramDataManager::set3iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +12449:GrGLProgramDataManager::set3i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\29\20const +12450:GrGLProgramDataManager::set3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +12451:GrGLProgramDataManager::set3f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\29\20const +12452:GrGLProgramDataManager::set2iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +12453:GrGLProgramDataManager::set2i\28GrResourceHandle\2c\20int\2c\20int\29\20const +12454:GrGLProgramDataManager::set2f\28GrResourceHandle\2c\20float\2c\20float\29\20const +12455:GrGLProgramDataManager::set1iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +12456:GrGLProgramDataManager::set1i\28GrResourceHandle\2c\20int\29\20const +12457:GrGLProgramDataManager::set1fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +12458:GrGLProgramDataManager::set1f\28GrResourceHandle\2c\20float\29\20const +12459:GrGLProgramBuilder::~GrGLProgramBuilder\28\29_12998 +12460:GrGLProgramBuilder::varyingHandler\28\29 +12461:GrGLProgramBuilder::caps\28\29\20const +12462:GrGLProgram::~GrGLProgram\28\29_12849 +12463:GrGLOpsRenderPass::~GrGLOpsRenderPass\28\29 +12464:GrGLOpsRenderPass::onSetScissorRect\28SkIRect\20const&\29 +12465:GrGLOpsRenderPass::onEnd\28\29 +12466:GrGLOpsRenderPass::onDraw\28int\2c\20int\29 +12467:GrGLOpsRenderPass::onDrawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +12468:GrGLOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +12469:GrGLOpsRenderPass::onDrawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +12470:GrGLOpsRenderPass::onDrawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +12471:GrGLOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +12472:GrGLOpsRenderPass::onClear\28GrScissorState\20const&\2c\20std::__2::array\29 +12473:GrGLOpsRenderPass::onClearStencilClip\28GrScissorState\20const&\2c\20bool\29 +12474:GrGLOpsRenderPass::onBindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +12475:GrGLOpsRenderPass::onBindPipeline\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +12476:GrGLOpsRenderPass::onBindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +12477:GrGLOpsRenderPass::onBegin\28\29 +12478:GrGLOpsRenderPass::inlineUpload\28GrOpFlushState*\2c\20std::__2::function&\29>&\29 +12479:GrGLInterface::~GrGLInterface\28\29_12822 +12480:GrGLGpu::~GrGLGpu\28\29_12661 +12481:GrGLGpu::xferBarrier\28GrRenderTarget*\2c\20GrXferBarrierType\29 +12482:GrGLGpu::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +12483:GrGLGpu::willExecute\28\29 +12484:GrGLGpu::submit\28GrOpsRenderPass*\29 +12485:GrGLGpu::startTimerQuery\28\29 +12486:GrGLGpu::stagingBufferManager\28\29 +12487:GrGLGpu::refPipelineBuilder\28\29 +12488:GrGLGpu::prepareTextureForCrossContextUsage\28GrTexture*\29 +12489:GrGLGpu::prepareSurfacesForBackendAccessAndStateUpdates\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20skgpu::MutableTextureState\20const*\29 +12490:GrGLGpu::precompileShader\28SkData\20const&\2c\20SkData\20const&\29 +12491:GrGLGpu::onWritePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +12492:GrGLGpu::onWrapRenderableBackendTexture\28GrBackendTexture\20const&\2c\20int\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +12493:GrGLGpu::onWrapCompressedBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +12494:GrGLGpu::onWrapBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\2c\20GrIOType\29 +12495:GrGLGpu::onWrapBackendRenderTarget\28GrBackendRenderTarget\20const&\29 +12496:GrGLGpu::onUpdateCompressedBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20void\20const*\2c\20unsigned\20long\29 +12497:GrGLGpu::onTransferPixelsTo\28GrTexture*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +12498:GrGLGpu::onTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\29 +12499:GrGLGpu::onTransferFromBufferToBuffer\28sk_sp\2c\20unsigned\20long\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +12500:GrGLGpu::onSubmitToGpu\28GrSubmitInfo\20const&\29 +12501:GrGLGpu::onResolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +12502:GrGLGpu::onResetTextureBindings\28\29 +12503:GrGLGpu::onResetContext\28unsigned\20int\29 +12504:GrGLGpu::onRegenerateMipMapLevels\28GrTexture*\29 +12505:GrGLGpu::onReadPixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20unsigned\20long\29 +12506:GrGLGpu::onGetOpsRenderPass\28GrRenderTarget*\2c\20bool\2c\20GrAttachment*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const&\2c\20GrOpsRenderPass::LoadAndStoreInfo\20const&\2c\20GrOpsRenderPass::StencilLoadAndStoreInfo\20const&\2c\20skia_private::TArray\20const&\2c\20GrXferBarrierFlags\29 +12507:GrGLGpu::onDumpJSON\28SkJSONWriter*\29\20const +12508:GrGLGpu::onCreateTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +12509:GrGLGpu::onCreateCompressedTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20void\20const*\2c\20unsigned\20long\29 +12510:GrGLGpu::onCreateCompressedBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\29 +12511:GrGLGpu::onCreateBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +12512:GrGLGpu::onCreateBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +12513:GrGLGpu::onCopySurface\28GrSurface*\2c\20SkIRect\20const&\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +12514:GrGLGpu::onClearBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20std::__2::array\29 +12515:GrGLGpu::makeStencilAttachment\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\29 +12516:GrGLGpu::makeSemaphore\28bool\29 +12517:GrGLGpu::makeMSAAAttachment\28SkISize\2c\20GrBackendFormat\20const&\2c\20int\2c\20skgpu::Protected\2c\20GrMemoryless\29 +12518:GrGLGpu::getPreferredStencilFormat\28GrBackendFormat\20const&\29 +12519:GrGLGpu::finishOutstandingGpuWork\28\29 +12520:GrGLGpu::endTimerQuery\28GrTimerQuery\20const&\29 +12521:GrGLGpu::disconnect\28GrGpu::DisconnectType\29 +12522:GrGLGpu::deleteBackendTexture\28GrBackendTexture\20const&\29 +12523:GrGLGpu::compile\28GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\29 +12524:GrGLGpu::checkFinishedCallbacks\28\29 +12525:GrGLGpu::addFinishedCallback\28skgpu::AutoCallback\2c\20std::__2::optional\29 +12526:GrGLGpu::ProgramCache::~ProgramCache\28\29_12812 +12527:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20unsigned\20int\2c\20float\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29 +12528:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +12529:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\2c\20float\29 +12530:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29 +12531:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\29 +12532:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29 +12533:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\29\29::'lambda'\28void\20const*\2c\20float\29::__invoke\28void\20const*\2c\20float\29 +12534:GrGLFunction::GrGLFunction\28void\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +12535:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28__GLsync*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29 +12536:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +12537:GrGLContext::~GrGLContext\28\29 +12538:GrGLCaps::~GrGLCaps\28\29_12596 +12539:GrGLCaps::surfaceSupportsReadPixels\28GrSurface\20const*\29\20const +12540:GrGLCaps::supportedWritePixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +12541:GrGLCaps::onSurfaceSupportsWritePixels\28GrSurface\20const*\29\20const +12542:GrGLCaps::onSupportsDynamicMSAA\28GrRenderTargetProxy\20const*\29\20const +12543:GrGLCaps::onSupportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +12544:GrGLCaps::onIsWindowRectanglesSupportedForRT\28GrBackendRenderTarget\20const&\29\20const +12545:GrGLCaps::onGetReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +12546:GrGLCaps::onGetDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\29\20const +12547:GrGLCaps::onGetDefaultBackendFormat\28GrColorType\29\20const +12548:GrGLCaps::onDumpJSON\28SkJSONWriter*\29\20const +12549:GrGLCaps::onCanCopySurface\28GrSurfaceProxy\20const*\2c\20SkIRect\20const&\2c\20GrSurfaceProxy\20const*\2c\20SkIRect\20const&\29\20const +12550:GrGLCaps::onAreColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +12551:GrGLCaps::onApplyOptionsOverrides\28GrContextOptions\20const&\29 +12552:GrGLCaps::maxRenderTargetSampleCount\28GrBackendFormat\20const&\29\20const +12553:GrGLCaps::makeDesc\28GrRenderTarget*\2c\20GrProgramInfo\20const&\2c\20GrCaps::ProgramDescOverrideFlags\29\20const +12554:GrGLCaps::isFormatTexturable\28GrBackendFormat\20const&\2c\20GrTextureType\29\20const +12555:GrGLCaps::isFormatSRGB\28GrBackendFormat\20const&\29\20const +12556:GrGLCaps::isFormatRenderable\28GrBackendFormat\20const&\2c\20int\29\20const +12557:GrGLCaps::isFormatCopyable\28GrBackendFormat\20const&\29\20const +12558:GrGLCaps::isFormatAsColorTypeRenderable\28GrColorType\2c\20GrBackendFormat\20const&\2c\20int\29\20const +12559:GrGLCaps::getWriteSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +12560:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrBackendFormat\20const&\29\20const +12561:GrGLCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +12562:GrGLCaps::getBackendFormatFromCompressionType\28SkTextureCompressionType\29\20const +12563:GrGLCaps::computeFormatKey\28GrBackendFormat\20const&\29\20const +12564:GrGLBuffer::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +12565:GrGLBuffer::onUpdateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +12566:GrGLBuffer::onUnmap\28GrGpuBuffer::MapType\29 +12567:GrGLBuffer::onSetLabel\28\29 +12568:GrGLBuffer::onRelease\28\29 +12569:GrGLBuffer::onMap\28GrGpuBuffer::MapType\29 +12570:GrGLBuffer::onClearToZero\28\29 +12571:GrGLBuffer::onAbandon\28\29 +12572:GrGLBackendTextureData::~GrGLBackendTextureData\28\29_12555 +12573:GrGLBackendTextureData::~GrGLBackendTextureData\28\29 +12574:GrGLBackendTextureData::isSameTexture\28GrBackendTextureData\20const*\29\20const +12575:GrGLBackendTextureData::getBackendFormat\28\29\20const +12576:GrGLBackendTextureData::equal\28GrBackendTextureData\20const*\29\20const +12577:GrGLBackendTextureData::copyTo\28SkAnySubclass&\29\20const +12578:GrGLBackendRenderTargetData::isProtected\28\29\20const +12579:GrGLBackendRenderTargetData::getBackendFormat\28\29\20const +12580:GrGLBackendRenderTargetData::equal\28GrBackendRenderTargetData\20const*\29\20const +12581:GrGLBackendRenderTargetData::copyTo\28SkAnySubclass&\29\20const +12582:GrGLBackendFormatData::toString\28\29\20const +12583:GrGLBackendFormatData::stencilBits\28\29\20const +12584:GrGLBackendFormatData::equal\28GrBackendFormatData\20const*\29\20const +12585:GrGLBackendFormatData::desc\28\29\20const +12586:GrGLBackendFormatData::copyTo\28SkAnySubclass&\29\20const +12587:GrGLBackendFormatData::compressionType\28\29\20const +12588:GrGLBackendFormatData::channelMask\28\29\20const +12589:GrGLBackendFormatData::bytesPerBlock\28\29\20const +12590:GrGLAttachment::~GrGLAttachment\28\29 +12591:GrGLAttachment::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +12592:GrGLAttachment::onSetLabel\28\29 +12593:GrGLAttachment::onRelease\28\29 +12594:GrGLAttachment::onAbandon\28\29 +12595:GrGLAttachment::backendFormat\28\29\20const +12596:GrFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12597:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12598:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const +12599:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12600:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12601:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::name\28\29\20const +12602:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12603:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::clone\28\29\20const +12604:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12605:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const +12606:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::name\28\29\20const +12607:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::clone\28\29\20const +12608:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12609:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const +12610:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::name\28\29\20const +12611:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::clone\28\29\20const +12612:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12613:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const +12614:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::name\28\29\20const +12615:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12616:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::clone\28\29\20const +12617:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12618:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const +12619:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::name\28\29\20const +12620:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12621:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::clone\28\29\20const +12622:GrFixedClip::~GrFixedClip\28\29_9907 +12623:GrFixedClip::~GrFixedClip\28\29 +12624:GrFixedClip::getConservativeBounds\28\29\20const +12625:GrExternalTextureGenerator::onGenerateTexture\28GrRecordingContext*\2c\20SkImageInfo\20const&\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +12626:GrDynamicAtlas::~GrDynamicAtlas\28\29_9881 +12627:GrDrawOp::usesStencil\28\29\20const +12628:GrDrawOp::usesMSAA\28\29\20const +12629:GrDrawOp::fixedFunctionFlags\28\29\20const +12630:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29_10837 +12631:GrDistanceFieldPathGeoProc::onTextureSampler\28int\29\20const +12632:GrDistanceFieldPathGeoProc::name\28\29\20const +12633:GrDistanceFieldPathGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12634:GrDistanceFieldPathGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12635:GrDistanceFieldPathGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12636:GrDistanceFieldPathGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12637:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29_10846 +12638:GrDistanceFieldLCDTextGeoProc::name\28\29\20const +12639:GrDistanceFieldLCDTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12640:GrDistanceFieldLCDTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12641:GrDistanceFieldLCDTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12642:GrDistanceFieldLCDTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12643:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29_10826 +12644:GrDistanceFieldA8TextGeoProc::name\28\29\20const +12645:GrDistanceFieldA8TextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12646:GrDistanceFieldA8TextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12647:GrDistanceFieldA8TextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12648:GrDistanceFieldA8TextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12649:GrDisableColorXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12650:GrDisableColorXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12651:GrDirectContext::~GrDirectContext\28\29_9693 +12652:GrDirectContext::init\28\29 +12653:GrDirectContext::abandonContext\28\29 +12654:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29_9076 +12655:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29_9900 +12656:GrCpuVertexAllocator::unlock\28int\29 +12657:GrCpuVertexAllocator::lock\28unsigned\20long\2c\20int\29 +12658:GrCpuBuffer::unref\28\29\20const +12659:GrCpuBuffer::ref\28\29\20const +12660:GrCoverageSetOpXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12661:GrCoverageSetOpXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12662:GrCopyRenderTask::~GrCopyRenderTask\28\29_9622 +12663:GrCopyRenderTask::onMakeSkippable\28\29 +12664:GrCopyRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +12665:GrCopyRenderTask::onExecute\28GrOpFlushState*\29 +12666:GrCopyRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +12667:GrConvexPolyEffect::~GrConvexPolyEffect\28\29 +12668:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12669:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12670:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const +12671:GrConvexPolyEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12672:GrConvexPolyEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12673:GrConvexPolyEffect::name\28\29\20const +12674:GrConvexPolyEffect::clone\28\29\20const +12675:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29_9599 +12676:GrContextThreadSafeProxy::isValidCharacterizationForVulkan\28sk_sp\2c\20bool\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20bool\2c\20bool\29 +12677:GrConicEffect::name\28\29\20const +12678:GrConicEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12679:GrConicEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12680:GrConicEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12681:GrConicEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12682:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29_9563 +12683:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12684:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12685:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const +12686:GrColorSpaceXformEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12687:GrColorSpaceXformEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12688:GrColorSpaceXformEffect::name\28\29\20const +12689:GrColorSpaceXformEffect::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12690:GrColorSpaceXformEffect::clone\28\29\20const +12691:GrCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +12692:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29_10749 +12693:GrBitmapTextGeoProc::onTextureSampler\28int\29\20const +12694:GrBitmapTextGeoProc::name\28\29\20const +12695:GrBitmapTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12696:GrBitmapTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12697:GrBitmapTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12698:GrBitmapTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12699:GrBicubicEffect::onMakeProgramImpl\28\29\20const +12700:GrBicubicEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12701:GrBicubicEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12702:GrBicubicEffect::name\28\29\20const +12703:GrBicubicEffect::clone\28\29\20const +12704:GrBicubicEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12705:GrBicubicEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12706:GrAttachment::onGpuMemorySize\28\29\20const +12707:GrAttachment::getResourceType\28\29\20const +12708:GrAttachment::computeScratchKey\28skgpu::ScratchKey*\29\20const +12709:GrAtlasManager::~GrAtlasManager\28\29_12446 +12710:GrAtlasManager::postFlush\28skgpu::Token\29 +12711:GrAATriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +12712:FontMgrRunIterator::~FontMgrRunIterator\28\29_13263 +12713:FontMgrRunIterator::currentFont\28\29\20const +12714:FontMgrRunIterator::consume\28\29 +12715:EllipticalRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12716:EllipticalRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12717:EllipticalRRectOp::name\28\29\20const +12718:EllipticalRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12719:EllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12720:EllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12721:EllipseOp::name\28\29\20const +12722:EllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12723:EllipseGeometryProcessor::name\28\29\20const +12724:EllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12725:EllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12726:EllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12727:Dual_Project +12728:DisableColorXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12729:DisableColorXP::name\28\29\20const +12730:DisableColorXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12731:DisableColorXP::makeProgramImpl\28\29\20const +12732:Direct_Move_Y +12733:Direct_Move_X +12734:Direct_Move_Orig_Y +12735:Direct_Move_Orig_X +12736:Direct_Move_Orig +12737:Direct_Move +12738:DefaultGeoProc::name\28\29\20const +12739:DefaultGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12740:DefaultGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12741:DefaultGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12742:DefaultGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12743:DIEllipseOp::~DIEllipseOp\28\29_11906 +12744:DIEllipseOp::visitProxies\28std::__2::function\20const&\29\20const +12745:DIEllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12746:DIEllipseOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12747:DIEllipseOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12748:DIEllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12749:DIEllipseOp::name\28\29\20const +12750:DIEllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12751:DIEllipseGeometryProcessor::name\28\29\20const +12752:DIEllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12753:DIEllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12754:DIEllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12755:CustomXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12756:CustomXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +12757:CustomXP::xferBarrierType\28GrCaps\20const&\29\20const +12758:CustomXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12759:CustomXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12760:CustomXP::name\28\29\20const +12761:CustomXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12762:CustomXP::makeProgramImpl\28\29\20const +12763:Current_Ppem_Stretched +12764:Current_Ppem +12765:Cr_z_zcalloc +12766:CoverageSetOpXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +12767:CoverageSetOpXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12768:CoverageSetOpXP::name\28\29\20const +12769:CoverageSetOpXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +12770:CoverageSetOpXP::makeProgramImpl\28\29\20const +12771:ColorTableEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12772:ColorTableEffect::onMakeProgramImpl\28\29\20const +12773:ColorTableEffect::name\28\29\20const +12774:ColorTableEffect::clone\28\29\20const +12775:CircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +12776:CircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12777:CircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12778:CircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12779:CircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12780:CircularRRectOp::name\28\29\20const +12781:CircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12782:CircleOp::~CircleOp\28\29_11942 +12783:CircleOp::visitProxies\28std::__2::function\20const&\29\20const +12784:CircleOp::programInfo\28\29 +12785:CircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12786:CircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12787:CircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12788:CircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12789:CircleOp::name\28\29\20const +12790:CircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12791:CircleGeometryProcessor::name\28\29\20const +12792:CircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12793:CircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12794:CircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12795:ButtCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +12796:ButtCapDashedCircleOp::visitProxies\28std::__2::function\20const&\29\20const +12797:ButtCapDashedCircleOp::programInfo\28\29 +12798:ButtCapDashedCircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12799:ButtCapDashedCircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12800:ButtCapDashedCircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12801:ButtCapDashedCircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12802:ButtCapDashedCircleOp::name\28\29\20const +12803:ButtCapDashedCircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12804:ButtCapDashedCircleGeometryProcessor::name\28\29\20const +12805:ButtCapDashedCircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12806:ButtCapDashedCircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12807:ButtCapDashedCircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12808:BluntJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +12809:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12810:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12811:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const +12812:BlendFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +12813:BlendFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12814:BlendFragmentProcessor::name\28\29\20const +12815:BlendFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +12816:BlendFragmentProcessor::clone\28\29\20const +12817:$_3::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +12818:$_2::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 +12819:$_1::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +12820:$_0::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 diff --git a/build/web/canvaskit/skwasm.wasm b/build/web/canvaskit/skwasm.wasm new file mode 100755 index 0000000..fd05cfb Binary files /dev/null and b/build/web/canvaskit/skwasm.wasm differ diff --git a/build/web/canvaskit/skwasm_heavy.js b/build/web/canvaskit/skwasm_heavy.js new file mode 100644 index 0000000..6f7661b --- /dev/null +++ b/build/web/canvaskit/skwasm_heavy.js @@ -0,0 +1,141 @@ + +var skwasm_heavy = (() => { + var _scriptName = typeof document != 'undefined' ? document.currentScript?.src : undefined; + + return ( +function(moduleArg = {}) { + var moduleRtn; + +function d(){g.buffer!=k.buffer&&n();return k}function q(){g.buffer!=k.buffer&&n();return aa}function r(){g.buffer!=k.buffer&&n();return ba}function t(){g.buffer!=k.buffer&&n();return ca}function u(){g.buffer!=k.buffer&&n();return da}var w=moduleArg,ea,fa,ha=new Promise((a,b)=>{ea=a;fa=b}),ia="object"==typeof window,ja="function"==typeof importScripts,ka=w.$ww,la=Object.assign({},w),x="";function ma(a){return w.locateFile?w.locateFile(a,x):x+a}var na,oa; +if(ia||ja)ja?x=self.location.href:"undefined"!=typeof document&&document.currentScript&&(x=document.currentScript.src),_scriptName&&(x=_scriptName),x.startsWith("blob:")?x="":x=x.substr(0,x.replace(/[?#].*/,"").lastIndexOf("/")+1),ja&&(oa=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),na=a=>fetch(a,{credentials:"same-origin"}).then(b=>b.ok?b.arrayBuffer():Promise.reject(Error(b.status+" : "+b.url))); +var pa=console.log.bind(console),y=console.error.bind(console);Object.assign(w,la);la=null;var g,qa,ra=!1,sa,k,aa,ta,ua,ba,ca,da;function n(){var a=g.buffer;k=new Int8Array(a);ta=new Int16Array(a);aa=new Uint8Array(a);ua=new Uint16Array(a);ba=new Int32Array(a);ca=new Uint32Array(a);da=new Float32Array(a);new Float64Array(a)}w.wasmMemory?g=w.wasmMemory:g=new WebAssembly.Memory({initial:256,maximum:32768,shared:!0});n();var va=[],wa=[],xa=[]; +function ya(){ka?(za=1,Aa(w.sb,w.sz),removeEventListener("message",Ba),Ca=Ca.forEach(Da),addEventListener("message",Da)):Ea(wa)}var z=0,Fa=null,A=null;function Ga(a){a="Aborted("+a+")";y(a);ra=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");fa(a);throw a;}var Ha=a=>a.startsWith("data:application/octet-stream;base64,"),Ia; +function Ja(a){return na(a).then(b=>new Uint8Array(b),()=>{if(oa)var b=oa(a);else throw"both async and sync fetching of the wasm failed";return b})}function Ka(a,b,c){return Ja(a).then(e=>WebAssembly.instantiate(e,b)).then(c,e=>{y(`failed to asynchronously prepare wasm: ${e}`);Ga(e)})} +function La(a,b){var c=Ia;return"function"!=typeof WebAssembly.instantiateStreaming||Ha(c)||"function"!=typeof fetch?Ka(c,a,b):fetch(c,{credentials:"same-origin"}).then(e=>WebAssembly.instantiateStreaming(e,a).then(b,function(f){y(`wasm streaming compile failed: ${f}`);y("falling back to ArrayBuffer instantiation");return Ka(c,a,b)}))}function Ma(a){this.name="ExitStatus";this.message=`Program terminated with exit(${a})`;this.status=a} +var Ca=[],Na=a=>{if(!(a instanceof Ma||"unwind"==a))throw a;},Oa=0,Pa=a=>{sa=a;za||0{if(!ra)try{if(a(),!(za||0{let b=a.data,c=b._wsc;c&&Qa(()=>B.get(c)(...b.x))},Ba=a=>{Ca.push(a)},Ea=a=>{a.forEach(b=>b(w))},za=w.noExitRuntime||!0;class Ra{constructor(a){this.s=a-24}} +var Sa=0,Ta=0,Ua="undefined"!=typeof TextDecoder?new TextDecoder:void 0,Va=(a,b=0,c=NaN)=>{var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}, +C=(a,b)=>a?Va(q(),a,b):"",D={},Wa=1,Xa={},E=(a,b,c)=>{var e=q();if(0=l){var m=a.charCodeAt(++h);l=65536+((l&1023)<<10)|m&1023}if(127>=l){if(b>=c)break;e[b++]=l}else{if(2047>=l){if(b+1>=c)break;e[b++]=192|l>>6}else{if(65535>=l){if(b+2>=c)break;e[b++]=224|l>>12}else{if(b+3>=c)break;e[b++]=240|l>>18;e[b++]=128|l>>12&63}e[b++]=128|l>>6&63}e[b++]=128|l&63}}e[b]=0;a=b-f}else a=0;return a},F,Ya=a=>{var b=a.getExtension("ANGLE_instanced_arrays"); +b&&(a.vertexAttribDivisor=(c,e)=>b.vertexAttribDivisorANGLE(c,e),a.drawArraysInstanced=(c,e,f,h)=>b.drawArraysInstancedANGLE(c,e,f,h),a.drawElementsInstanced=(c,e,f,h,l)=>b.drawElementsInstancedANGLE(c,e,f,h,l))},Za=a=>{var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=()=>b.createVertexArrayOES(),a.deleteVertexArray=c=>b.deleteVertexArrayOES(c),a.bindVertexArray=c=>b.bindVertexArrayOES(c),a.isVertexArray=c=>b.isVertexArrayOES(c))},$a=a=>{var b=a.getExtension("WEBGL_draw_buffers"); +b&&(a.drawBuffers=(c,e)=>b.drawBuffersWEBGL(c,e))},ab=a=>{a.H=a.getExtension("WEBGL_draw_instanced_base_vertex_base_instance")},bb=a=>{a.K=a.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance")},cb=a=>{var b="ANGLE_instanced_arrays EXT_blend_minmax EXT_disjoint_timer_query EXT_frag_depth EXT_shader_texture_lod EXT_sRGB OES_element_index_uint OES_fbo_render_mipmap OES_standard_derivatives OES_texture_float OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_depth_texture WEBGL_draw_buffers EXT_color_buffer_float EXT_conservative_depth EXT_disjoint_timer_query_webgl2 EXT_texture_norm16 NV_shader_noperspective_interpolation WEBGL_clip_cull_distance EXT_clip_control EXT_color_buffer_half_float EXT_depth_clamp EXT_float_blend EXT_polygon_offset_clamp EXT_texture_compression_bptc EXT_texture_compression_rgtc EXT_texture_filter_anisotropic KHR_parallel_shader_compile OES_texture_float_linear WEBGL_blend_func_extended WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_etc1 WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context WEBGL_multi_draw WEBGL_polygon_mode".split(" "); +return(a.getSupportedExtensions()||[]).filter(c=>b.includes(c))},db=1,eb=[],G=[],fb=[],gb=[],H=[],I=[],hb=[],ib=[],J=[],K=[],L=[],jb={},kb={},lb=4,mb=0,M=a=>{for(var b=db++,c=a.length;c{for(var f=0;f>2]=l}},ob=a=>{var b={J:2,alpha:!0,depth:!0,stencil:!0,antialias:!1,premultipliedAlpha:!0,preserveDrawingBuffer:!1,powerPreference:"default",failIfMajorPerformanceCaveat:!1,I:!0};a.s||(a.s=a.getContext, +a.getContext=function(e,f){f=a.s(e,f);return"webgl"==e==f instanceof WebGLRenderingContext?f:null});var c=1{var c=M(ib),e={handle:c,attributes:b,version:b.J,v:a};a.canvas&&(a.canvas.Z=e);ib[c]=e;("undefined"==typeof b.I||b.I)&&pb(e);return c},pb=a=>{a||=P;if(!a.S){a.S=!0;var b=a.v;b.T=b.getExtension("WEBGL_multi_draw");b.P=b.getExtension("EXT_polygon_offset_clamp");b.O=b.getExtension("EXT_clip_control");b.Y=b.getExtension("WEBGL_polygon_mode"); +Ya(b);Za(b);$a(b);ab(b);bb(b);2<=a.version&&(b.g=b.getExtension("EXT_disjoint_timer_query_webgl2"));if(2>a.version||!b.g)b.g=b.getExtension("EXT_disjoint_timer_query");cb(b).forEach(c=>{c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}},N,P,qb=a=>{F.bindVertexArray(hb[a])},rb=(a,b)=>{for(var c=0;c>2],f=H[e];f&&(F.deleteTexture(f),f.name=0,H[e]=null)}},sb=(a,b)=>{for(var c=0;c>2];F.deleteVertexArray(hb[e]);hb[e]=null}},tb=[],ub=(a, +b)=>{O(a,b,"createVertexArray",hb)},vb=(a,b)=>{t()[a>>2]=b;var c=t()[a>>2];t()[a+4>>2]=(b-c)/4294967296};function wb(){var a=cb(F);return a=a.concat(a.map(b=>"GL_"+b))} +var xb=(a,b,c)=>{if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&(N||=1280);return;case 34814:case 36345:e=0;break;case 34466:var f=F.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>P.version){N||=1282;return}e=wb().length;break;case 33307:case 33308:if(2>P.version){N||=1280;return}e=33307==a?3:0}if(void 0===e)switch(f=F.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":N||=1280;return;case "object":if(null===f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e= +0;break;default:N||=1280;return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:u()[b+4*a>>2]=f[a];break;case 4:d()[b+a]=f[a]?1:0}return}try{e=f.name|0}catch(h){N||=1280;y(`GL_INVALID_ENUM in glGet${c}v: Unknown object returned from WebGL getParameter(${a})! (error: ${h})`);return}}break;default:N||=1280;y(`GL_INVALID_ENUM in glGet${c}v: Native code calling glGet${c}v(${a}) and it returns ${f} of type ${typeof f}!`); +return}switch(c){case 1:vb(b,e);break;case 0:r()[b>>2]=e;break;case 2:u()[b>>2]=e;break;case 4:d()[b]=e?1:0}}else N||=1281},yb=(a,b)=>xb(a,b,0),zb=(a,b,c)=>{if(c){a=J[a];b=2>P.version?F.g.getQueryObjectEXT(a,b):F.getQueryParameter(a,b);var e;"boolean"==typeof b?e=b?1:0:e=b;vb(c,e)}else N||=1281},Bb=a=>{for(var b=0,c=0;c=e?b++:2047>=e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}b+=1;(c=Ab(b))&&E(a,c,b);return c},Cb=a=>{var b=jb[a];if(!b){switch(a){case 7939:b=Bb(wb().join(" ")); +break;case 7936:case 7937:case 37445:case 37446:(b=F.getParameter(a))||(N||=1280);b=b?Bb(b):0;break;case 7938:b=F.getParameter(7938);var c=`OpenGL ES 2.0 (${b})`;2<=P.version&&(c=`OpenGL ES 3.0 (${b})`);b=Bb(c);break;case 35724:b=F.getParameter(35724);c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!==c&&(3==c[1].length&&(c[1]+="0"),b=`OpenGL ES GLSL ES ${c[1]} (${b})`);b=Bb(b);break;default:N||=1280}jb[a]=b}return b},Db=(a,b)=>{if(2>P.version)return N||=1282,0;var c=kb[a];if(c)return 0> +b||b>=c.length?(N||=1281,0):c[b];switch(a){case 7939:return c=wb().map(Bb),c=kb[a]=c,0>b||b>=c.length?(N||=1281,0):c[b];default:return N||=1280,0}},Eb=a=>"]"==a.slice(-1)&&a.lastIndexOf("["),Fb=a=>{a-=5120;0==a?a=d():1==a?a=q():2==a?(g.buffer!=k.buffer&&n(),a=ta):4==a?a=r():6==a?a=u():5==a||28922==a||28520==a||30779==a||30782==a?a=t():(g.buffer!=k.buffer&&n(),a=ua);return a},Gb=(a,b,c,e,f)=>{a=Fb(a);b=e*((mb||c)*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*a.BYTES_PER_ELEMENT+ +lb-1&-lb);return a.subarray(f>>>31-Math.clz32(a.BYTES_PER_ELEMENT),f+b>>>31-Math.clz32(a.BYTES_PER_ELEMENT))},Q=a=>{var b=F.N;if(b){var c=b.u[a];"number"==typeof c&&(b.u[a]=c=F.getUniformLocation(b,b.L[a]+(0{if(!Jb){var a={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:("object"==typeof navigator&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",_:"./this.program"},b;for(b in Ib)void 0=== +Ib[b]?delete a[b]:a[b]=Ib[b];var c=[];for(b in a)c.push(`${b}=${a[b]}`);Jb=c}return Jb},Jb,Lb=[null,[],[]];function Mb(){}function Nb(){}function Ob(){}function Pb(){}function Qb(){}function Rb(){}function Sb(){}function Tb(){}function Ub(){}function Vb(){}function Wb(){}function Xb(){}function Yb(){}function Zb(){}function $b(){}function S(){}function ac(){}var U,bc=[],dc=a=>cc(a);w.stackAlloc=dc;ka&&(D[0]=this,addEventListener("message",Ba));for(var V=0;32>V;++V)tb.push(Array(V));var ec=new Float32Array(288); +for(V=0;288>=V;++V)R[V]=ec.subarray(0,V);var fc=new Int32Array(288);for(V=0;288>=V;++V)Hb[V]=fc.subarray(0,V); +(function(){if(w.skwasmSingleThreaded){Xb=function(){return!0};let c;Nb=function(e,f){c=f};Ob=function(){return performance.now()};S=function(e){queueMicrotask(()=>c(e))}}else{Xb=function(){return!1};let c=0;Nb=function(e,f){function h({data:l}){const m=l.h;m&&("syncTimeOrigin"==m?c=performance.timeOrigin-l.timeOrigin:f(l))}e?(D[e].addEventListener("message",h),D[e].postMessage({h:"syncTimeOrigin",timeOrigin:performance.timeOrigin})):addEventListener("message",h)};Ob=function(){return performance.now()+ +c};S=function(e,f,h){h?D[h].postMessage(e,{transfer:f}):postMessage(e,{transfer:f})}}const a=new Map,b=new Map;ac=function(c,e,f){S({h:"setAssociatedObject",F:e,object:f},[f],c)};Wb=function(c){return b.get(c)};Pb=function(c){Nb(c,function(e){var f=e.h;if(f)switch(f){case "renderPictures":gc(e.l,e.V,e.width,e.height,e.U,e.m,Ob());break;case "onRenderComplete":hc(e.l,e.m,{imageBitmaps:e.R,rasterStartMilliseconds:e.X,rasterEndMilliseconds:e.W});break;case "setAssociatedObject":b.set(e.F,e.object);break; +case "disposeAssociatedObject":e=e.F;f=b.get(e);f.close&&f.close();b.delete(e);break;case "disposeSurface":ic(e.l);break;case "rasterizeImage":jc(e.l,e.image,e.format,e.m);break;case "onRasterizeComplete":kc(e.l,e.data,e.m);break;default:console.warn(`unrecognized skwasm message: ${f}`)}})};Ub=function(c,e,f,h,l,m,p){S({h:"renderPictures",l:e,V:f,width:h,height:l,U:m,m:p},[],c)};Rb=function(c,e){c=new OffscreenCanvas(c,e);e=ob(c);a.set(e,c);return e};Zb=function(c,e,f){c=a.get(c);c.width=e;c.height= +f};Mb=function(c,e){e||=[];c=a.get(c);e.push(c.transferToImageBitmap());return e};$b=async function(c,e,f,h){e||=[];S({h:"onRenderComplete",l:c,m:h,R:e,X:f,W:Ob()},[...e])};Qb=function(c,e,f){const h=P.v,l=h.createTexture();h.bindTexture(h.TEXTURE_2D,l);h.pixelStorei(h.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);h.texImage2D(h.TEXTURE_2D,0,h.RGBA,e,f,0,h.RGBA,h.UNSIGNED_BYTE,c);h.pixelStorei(h.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);h.bindTexture(h.TEXTURE_2D,null);c=M(H);H[c]=l;return c};Vb=function(c,e){S({h:"disposeAssociatedObject", +F:e},[],c)};Sb=function(c,e){S({h:"disposeSurface",l:e},[],c)};Tb=function(c,e,f,h,l){S({h:"rasterizeImage",l:e,image:f,format:h,m:l},[],c)};Yb=function(c,e,f){S({h:"onRasterizeComplete",l:c,data:e,m:f})}})(); +var wc={__cxa_throw:(a,b,c)=>{var e=new Ra(a);t()[e.s+16>>2]=0;t()[e.s+4>>2]=b;t()[e.s+8>>2]=c;Sa=a;Ta++;throw Sa;},__syscall_fcntl64:function(){return 0},__syscall_fstat64:()=>{},__syscall_ioctl:function(){return 0},__syscall_lstat64:()=>{},__syscall_newfstatat:()=>{},__syscall_openat:function(){},__syscall_stat64:()=>{},_abort_js:()=>{Ga("")},_emscripten_create_wasm_worker:(a,b)=>{let c=D[Wa]=new Worker(ma("skwasm_heavy.ww.js"));c.postMessage({$ww:Wa,wasm:qa,js:w.mainScriptUrlOrBlob||_scriptName, +wasmMemory:g,sb:a,sz:b});c.onmessage=Da;return Wa++},_emscripten_get_now_is_monotonic:()=>1,_emscripten_runtime_keepalive_clear:()=>{za=!1;Oa=0},_emscripten_throw_longjmp:()=>{throw Infinity;},_mmap_js:function(){return-52},_munmap_js:function(){},_setitimer_js:(a,b)=>{Xa[a]&&(clearTimeout(Xa[a].id),delete Xa[a]);if(!b)return 0;var c=setTimeout(()=>{delete Xa[a];Qa(()=>lc(a,performance.now()))},b);Xa[a]={id:c,aa:b};return 0},_tzset_js:(a,b,c,e)=>{var f=(new Date).getFullYear(),h=(new Date(f,0,1)).getTimezoneOffset(); +f=(new Date(f,6,1)).getTimezoneOffset();var l=Math.max(h,f);t()[a>>2]=60*l;r()[b>>2]=Number(h!=f);b=m=>{var p=Math.abs(m);return`UTC${0<=m?"-":"+"}${String(Math.floor(p/60)).padStart(2,"0")}${String(p%60).padStart(2,"0")}`};a=b(h);b=b(f);f{console.warn(C(a))},emscripten_get_now:()=>performance.now(),emscripten_glActiveTexture:a=>F.activeTexture(a),emscripten_glAttachShader:(a,b)=>{F.attachShader(G[a],I[b])},emscripten_glBeginQuery:(a, +b)=>{F.beginQuery(a,J[b])},emscripten_glBeginQueryEXT:(a,b)=>{F.g.beginQueryEXT(a,J[b])},emscripten_glBindAttribLocation:(a,b,c)=>{F.bindAttribLocation(G[a],b,C(c))},emscripten_glBindBuffer:(a,b)=>{35051==a?F.D=b:35052==a&&(F.o=b);F.bindBuffer(a,eb[b])},emscripten_glBindFramebuffer:(a,b)=>{F.bindFramebuffer(a,fb[b])},emscripten_glBindRenderbuffer:(a,b)=>{F.bindRenderbuffer(a,gb[b])},emscripten_glBindSampler:(a,b)=>{F.bindSampler(a,K[b])},emscripten_glBindTexture:(a,b)=>{F.bindTexture(a,H[b])},emscripten_glBindVertexArray:qb, +emscripten_glBindVertexArrayOES:qb,emscripten_glBlendColor:(a,b,c,e)=>F.blendColor(a,b,c,e),emscripten_glBlendEquation:a=>F.blendEquation(a),emscripten_glBlendFunc:(a,b)=>F.blendFunc(a,b),emscripten_glBlitFramebuffer:(a,b,c,e,f,h,l,m,p,v)=>F.blitFramebuffer(a,b,c,e,f,h,l,m,p,v),emscripten_glBufferData:(a,b,c,e)=>{2<=P.version?c&&b?F.bufferData(a,q(),e,c,b):F.bufferData(a,b,e):F.bufferData(a,c?q().subarray(c,c+b):b,e)},emscripten_glBufferSubData:(a,b,c,e)=>{2<=P.version?c&&F.bufferSubData(a,b,q(), +e,c):F.bufferSubData(a,b,q().subarray(e,e+c))},emscripten_glCheckFramebufferStatus:a=>F.checkFramebufferStatus(a),emscripten_glClear:a=>F.clear(a),emscripten_glClearColor:(a,b,c,e)=>F.clearColor(a,b,c,e),emscripten_glClearStencil:a=>F.clearStencil(a),emscripten_glClientWaitSync:(a,b,c,e)=>F.clientWaitSync(L[a],b,(c>>>0)+4294967296*e),emscripten_glColorMask:(a,b,c,e)=>{F.colorMask(!!a,!!b,!!c,!!e)},emscripten_glCompileShader:a=>{F.compileShader(I[a])},emscripten_glCompressedTexImage2D:(a,b,c,e,f,h, +l,m)=>{2<=P.version?F.o||!l?F.compressedTexImage2D(a,b,c,e,f,h,l,m):F.compressedTexImage2D(a,b,c,e,f,h,q(),m,l):F.compressedTexImage2D(a,b,c,e,f,h,q().subarray(m,m+l))},emscripten_glCompressedTexSubImage2D:(a,b,c,e,f,h,l,m,p)=>{2<=P.version?F.o||!m?F.compressedTexSubImage2D(a,b,c,e,f,h,l,m,p):F.compressedTexSubImage2D(a,b,c,e,f,h,l,q(),p,m):F.compressedTexSubImage2D(a,b,c,e,f,h,l,q().subarray(p,p+m))},emscripten_glCopyBufferSubData:(a,b,c,e,f)=>F.copyBufferSubData(a,b,c,e,f),emscripten_glCopyTexSubImage2D:(a, +b,c,e,f,h,l,m)=>F.copyTexSubImage2D(a,b,c,e,f,h,l,m),emscripten_glCreateProgram:()=>{var a=M(G),b=F.createProgram();b.name=a;b.C=b.A=b.B=0;b.G=1;G[a]=b;return a},emscripten_glCreateShader:a=>{var b=M(I);I[b]=F.createShader(a);return b},emscripten_glCullFace:a=>F.cullFace(a),emscripten_glDeleteBuffers:(a,b)=>{for(var c=0;c>2],f=eb[e];f&&(F.deleteBuffer(f),f.name=0,eb[e]=null,e==F.D&&(F.D=0),e==F.o&&(F.o=0))}},emscripten_glDeleteFramebuffers:(a,b)=>{for(var c=0;c>2],f=fb[e];f&&(F.deleteFramebuffer(f),f.name=0,fb[e]=null)}},emscripten_glDeleteProgram:a=>{if(a){var b=G[a];b?(F.deleteProgram(b),b.name=0,G[a]=null):N||=1281}},emscripten_glDeleteQueries:(a,b)=>{for(var c=0;c>2],f=J[e];f&&(F.deleteQuery(f),J[e]=null)}},emscripten_glDeleteQueriesEXT:(a,b)=>{for(var c=0;c>2],f=J[e];f&&(F.g.deleteQueryEXT(f),J[e]=null)}},emscripten_glDeleteRenderbuffers:(a,b)=>{for(var c=0;c>2],f=gb[e]; +f&&(F.deleteRenderbuffer(f),f.name=0,gb[e]=null)}},emscripten_glDeleteSamplers:(a,b)=>{for(var c=0;c>2],f=K[e];f&&(F.deleteSampler(f),f.name=0,K[e]=null)}},emscripten_glDeleteShader:a=>{if(a){var b=I[a];b?(F.deleteShader(b),I[a]=null):N||=1281}},emscripten_glDeleteSync:a=>{if(a){var b=L[a];b?(F.deleteSync(b),b.name=0,L[a]=null):N||=1281}},emscripten_glDeleteTextures:rb,emscripten_glDeleteVertexArrays:sb,emscripten_glDeleteVertexArraysOES:sb,emscripten_glDepthMask:a=>{F.depthMask(!!a)}, +emscripten_glDisable:a=>F.disable(a),emscripten_glDisableVertexAttribArray:a=>{F.disableVertexAttribArray(a)},emscripten_glDrawArrays:(a,b,c)=>{F.drawArrays(a,b,c)},emscripten_glDrawArraysInstanced:(a,b,c,e)=>{F.drawArraysInstanced(a,b,c,e)},emscripten_glDrawArraysInstancedBaseInstanceWEBGL:(a,b,c,e,f)=>{F.H.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},emscripten_glDrawBuffers:(a,b)=>{for(var c=tb[a],e=0;e>2];F.drawBuffers(c)},emscripten_glDrawElements:(a,b,c,e)=>{F.drawElements(a, +b,c,e)},emscripten_glDrawElementsInstanced:(a,b,c,e,f)=>{F.drawElementsInstanced(a,b,c,e,f)},emscripten_glDrawElementsInstancedBaseVertexBaseInstanceWEBGL:(a,b,c,e,f,h,l)=>{F.H.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,h,l)},emscripten_glDrawRangeElements:(a,b,c,e,f,h)=>{F.drawElements(a,e,f,h)},emscripten_glEnable:a=>F.enable(a),emscripten_glEnableVertexAttribArray:a=>{F.enableVertexAttribArray(a)},emscripten_glEndQuery:a=>F.endQuery(a),emscripten_glEndQueryEXT:a=>{F.g.endQueryEXT(a)}, +emscripten_glFenceSync:(a,b)=>(a=F.fenceSync(a,b))?(b=M(L),a.name=b,L[b]=a,b):0,emscripten_glFinish:()=>F.finish(),emscripten_glFlush:()=>F.flush(),emscripten_glFramebufferRenderbuffer:(a,b,c,e)=>{F.framebufferRenderbuffer(a,b,c,gb[e])},emscripten_glFramebufferTexture2D:(a,b,c,e,f)=>{F.framebufferTexture2D(a,b,c,H[e],f)},emscripten_glFrontFace:a=>F.frontFace(a),emscripten_glGenBuffers:(a,b)=>{O(a,b,"createBuffer",eb)},emscripten_glGenFramebuffers:(a,b)=>{O(a,b,"createFramebuffer",fb)},emscripten_glGenQueries:(a, +b)=>{O(a,b,"createQuery",J)},emscripten_glGenQueriesEXT:(a,b)=>{for(var c=0;c>2]=0;break}var f=M(J);e.name=f;J[f]=e;r()[b+4*c>>2]=f}},emscripten_glGenRenderbuffers:(a,b)=>{O(a,b,"createRenderbuffer",gb)},emscripten_glGenSamplers:(a,b)=>{O(a,b,"createSampler",K)},emscripten_glGenTextures:(a,b)=>{O(a,b,"createTexture",H)},emscripten_glGenVertexArrays:ub,emscripten_glGenVertexArraysOES:ub,emscripten_glGenerateMipmap:a=>F.generateMipmap(a), +emscripten_glGetBufferParameteriv:(a,b,c)=>{c?r()[c>>2]=F.getBufferParameter(a,b):N||=1281},emscripten_glGetError:()=>{var a=F.getError()||N;N=0;return a},emscripten_glGetFloatv:(a,b)=>xb(a,b,2),emscripten_glGetFramebufferAttachmentParameteriv:(a,b,c,e)=>{a=F.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;r()[e>>2]=a},emscripten_glGetIntegerv:yb,emscripten_glGetProgramInfoLog:(a,b,c,e)=>{a=F.getProgramInfoLog(G[a]);null===a&&(a="(unknown error)"); +b=0>2]=b)},emscripten_glGetProgramiv:(a,b,c)=>{if(c)if(a>=db)N||=1281;else if(a=G[a],35716==b)a=F.getProgramInfoLog(a),null===a&&(a="(unknown error)"),r()[c>>2]=a.length+1;else if(35719==b){if(!a.C){var e=F.getProgramParameter(a,35718);for(b=0;b>2]=a.C}else if(35722==b){if(!a.A)for(e=F.getProgramParameter(a,35721),b=0;b>2]=a.A}else if(35381== +b){if(!a.B)for(e=F.getProgramParameter(a,35382),b=0;b>2]=a.B}else r()[c>>2]=F.getProgramParameter(a,b);else N||=1281},emscripten_glGetQueryObjecti64vEXT:zb,emscripten_glGetQueryObjectui64vEXT:zb,emscripten_glGetQueryObjectuiv:(a,b,c)=>{if(c){a=F.getQueryParameter(J[a],b);var e;"boolean"==typeof a?e=a?1:0:e=a;r()[c>>2]=e}else N||=1281},emscripten_glGetQueryObjectuivEXT:(a,b,c)=>{if(c){a=F.g.getQueryObjectEXT(J[a],b);var e;"boolean"== +typeof a?e=a?1:0:e=a;r()[c>>2]=e}else N||=1281},emscripten_glGetQueryiv:(a,b,c)=>{c?r()[c>>2]=F.getQuery(a,b):N||=1281},emscripten_glGetQueryivEXT:(a,b,c)=>{c?r()[c>>2]=F.g.getQueryEXT(a,b):N||=1281},emscripten_glGetRenderbufferParameteriv:(a,b,c)=>{c?r()[c>>2]=F.getRenderbufferParameter(a,b):N||=1281},emscripten_glGetShaderInfoLog:(a,b,c,e)=>{a=F.getShaderInfoLog(I[a]);null===a&&(a="(unknown error)");b=0>2]=b)},emscripten_glGetShaderPrecisionFormat:(a,b,c,e)=>{a=F.getShaderPrecisionFormat(a, +b);r()[c>>2]=a.rangeMin;r()[c+4>>2]=a.rangeMax;r()[e>>2]=a.precision},emscripten_glGetShaderiv:(a,b,c)=>{c?35716==b?(a=F.getShaderInfoLog(I[a]),null===a&&(a="(unknown error)"),a=a?a.length+1:0,r()[c>>2]=a):35720==b?(a=(a=F.getShaderSource(I[a]))?a.length+1:0,r()[c>>2]=a):r()[c>>2]=F.getShaderParameter(I[a],b):N||=1281},emscripten_glGetString:Cb,emscripten_glGetStringi:Db,emscripten_glGetUniformLocation:(a,b)=>{b=C(b);if(a=G[a]){var c=a,e=c.u,f=c.M,h;if(!e){c.u=e={};c.L={};var l=F.getProgramParameter(c, +35718);for(h=0;h>>0,f=b.slice(0,h));if((f=a.M[f])&&e{for(var e=tb[b],f=0;f>2];F.invalidateFramebuffer(a,e)},emscripten_glInvalidateSubFramebuffer:(a, +b,c,e,f,h,l)=>{for(var m=tb[b],p=0;p>2];F.invalidateSubFramebuffer(a,m,e,f,h,l)},emscripten_glIsSync:a=>F.isSync(L[a]),emscripten_glIsTexture:a=>(a=H[a])?F.isTexture(a):0,emscripten_glLineWidth:a=>F.lineWidth(a),emscripten_glLinkProgram:a=>{a=G[a];F.linkProgram(a);a.u=0;a.M={}},emscripten_glMultiDrawArraysInstancedBaseInstanceWEBGL:(a,b,c,e,f,h)=>{F.K.multiDrawArraysInstancedBaseInstanceWEBGL(a,r(),b>>2,r(),c>>2,r(),e>>2,t(),f>>2,h)},emscripten_glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL:(a, +b,c,e,f,h,l,m)=>{F.K.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,r(),b>>2,c,r(),e>>2,r(),f>>2,r(),h>>2,t(),l>>2,m)},emscripten_glPixelStorei:(a,b)=>{3317==a?lb=b:3314==a&&(mb=b);F.pixelStorei(a,b)},emscripten_glQueryCounterEXT:(a,b)=>{F.g.queryCounterEXT(J[a],b)},emscripten_glReadBuffer:a=>F.readBuffer(a),emscripten_glReadPixels:(a,b,c,e,f,h,l)=>{if(2<=P.version)if(F.D)F.readPixels(a,b,c,e,f,h,l);else{var m=Fb(h);l>>>=31-Math.clz32(m.BYTES_PER_ELEMENT);F.readPixels(a,b,c,e,f,h,m,l)}else(m= +Gb(h,f,c,e,l))?F.readPixels(a,b,c,e,f,h,m):N||=1280},emscripten_glRenderbufferStorage:(a,b,c,e)=>F.renderbufferStorage(a,b,c,e),emscripten_glRenderbufferStorageMultisample:(a,b,c,e,f)=>F.renderbufferStorageMultisample(a,b,c,e,f),emscripten_glSamplerParameterf:(a,b,c)=>{F.samplerParameterf(K[a],b,c)},emscripten_glSamplerParameteri:(a,b,c)=>{F.samplerParameteri(K[a],b,c)},emscripten_glSamplerParameteriv:(a,b,c)=>{c=r()[c>>2];F.samplerParameteri(K[a],b,c)},emscripten_glScissor:(a,b,c,e)=>F.scissor(a, +b,c,e),emscripten_glShaderSource:(a,b,c,e)=>{for(var f="",h=0;h>2]:void 0;f+=C(t()[c+4*h>>2],l)}F.shaderSource(I[a],f)},emscripten_glStencilFunc:(a,b,c)=>F.stencilFunc(a,b,c),emscripten_glStencilFuncSeparate:(a,b,c,e)=>F.stencilFuncSeparate(a,b,c,e),emscripten_glStencilMask:a=>F.stencilMask(a),emscripten_glStencilMaskSeparate:(a,b)=>F.stencilMaskSeparate(a,b),emscripten_glStencilOp:(a,b,c)=>F.stencilOp(a,b,c),emscripten_glStencilOpSeparate:(a,b,c,e)=>F.stencilOpSeparate(a, +b,c,e),emscripten_glTexImage2D:(a,b,c,e,f,h,l,m,p)=>{if(2<=P.version){if(F.o){F.texImage2D(a,b,c,e,f,h,l,m,p);return}if(p){var v=Fb(m);p>>>=31-Math.clz32(v.BYTES_PER_ELEMENT);F.texImage2D(a,b,c,e,f,h,l,m,v,p);return}}v=p?Gb(m,l,e,f,p):null;F.texImage2D(a,b,c,e,f,h,l,m,v)},emscripten_glTexParameterf:(a,b,c)=>F.texParameterf(a,b,c),emscripten_glTexParameterfv:(a,b,c)=>{c=u()[c>>2];F.texParameterf(a,b,c)},emscripten_glTexParameteri:(a,b,c)=>F.texParameteri(a,b,c),emscripten_glTexParameteriv:(a,b,c)=> +{c=r()[c>>2];F.texParameteri(a,b,c)},emscripten_glTexStorage2D:(a,b,c,e,f)=>F.texStorage2D(a,b,c,e,f),emscripten_glTexSubImage2D:(a,b,c,e,f,h,l,m,p)=>{if(2<=P.version){if(F.o){F.texSubImage2D(a,b,c,e,f,h,l,m,p);return}if(p){var v=Fb(m);F.texSubImage2D(a,b,c,e,f,h,l,m,v,p>>>31-Math.clz32(v.BYTES_PER_ELEMENT));return}}p=p?Gb(m,l,f,h,p):null;F.texSubImage2D(a,b,c,e,f,h,l,m,p)},emscripten_glUniform1f:(a,b)=>{F.uniform1f(Q(a),b)},emscripten_glUniform1fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform1fv(Q(a),u(), +c>>2,b);else{if(288>=b)for(var e=R[b],f=0;f>2];else e=u().subarray(c>>2,c+4*b>>2);F.uniform1fv(Q(a),e)}},emscripten_glUniform1i:(a,b)=>{F.uniform1i(Q(a),b)},emscripten_glUniform1iv:(a,b,c)=>{if(2<=P.version)b&&F.uniform1iv(Q(a),r(),c>>2,b);else{if(288>=b)for(var e=Hb[b],f=0;f>2];else e=r().subarray(c>>2,c+4*b>>2);F.uniform1iv(Q(a),e)}},emscripten_glUniform2f:(a,b,c)=>{F.uniform2f(Q(a),b,c)},emscripten_glUniform2fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform2fv(Q(a), +u(),c>>2,2*b);else{if(144>=b){b*=2;for(var e=R[b],f=0;f>2],e[f+1]=u()[c+(4*f+4)>>2]}else e=u().subarray(c>>2,c+8*b>>2);F.uniform2fv(Q(a),e)}},emscripten_glUniform2i:(a,b,c)=>{F.uniform2i(Q(a),b,c)},emscripten_glUniform2iv:(a,b,c)=>{if(2<=P.version)b&&F.uniform2iv(Q(a),r(),c>>2,2*b);else{if(144>=b){b*=2;for(var e=Hb[b],f=0;f>2],e[f+1]=r()[c+(4*f+4)>>2]}else e=r().subarray(c>>2,c+8*b>>2);F.uniform2iv(Q(a),e)}},emscripten_glUniform3f:(a,b,c,e)=>{F.uniform3f(Q(a), +b,c,e)},emscripten_glUniform3fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform3fv(Q(a),u(),c>>2,3*b);else{if(96>=b){b*=3;for(var e=R[b],f=0;f>2],e[f+1]=u()[c+(4*f+4)>>2],e[f+2]=u()[c+(4*f+8)>>2]}else e=u().subarray(c>>2,c+12*b>>2);F.uniform3fv(Q(a),e)}},emscripten_glUniform3i:(a,b,c,e)=>{F.uniform3i(Q(a),b,c,e)},emscripten_glUniform3iv:(a,b,c)=>{if(2<=P.version)b&&F.uniform3iv(Q(a),r(),c>>2,3*b);else{if(96>=b){b*=3;for(var e=Hb[b],f=0;f>2],e[f+1]=r()[c+(4*f+4)>> +2],e[f+2]=r()[c+(4*f+8)>>2]}else e=r().subarray(c>>2,c+12*b>>2);F.uniform3iv(Q(a),e)}},emscripten_glUniform4f:(a,b,c,e,f)=>{F.uniform4f(Q(a),b,c,e,f)},emscripten_glUniform4fv:(a,b,c)=>{if(2<=P.version)b&&F.uniform4fv(Q(a),u(),c>>2,4*b);else{if(72>=b){var e=R[4*b],f=u();c>>=2;b*=4;for(var h=0;h>2,c+16*b>>2);F.uniform4fv(Q(a),e)}},emscripten_glUniform4i:(a,b,c,e,f)=>{F.uniform4i(Q(a),b,c,e,f)},emscripten_glUniform4iv:(a, +b,c)=>{if(2<=P.version)b&&F.uniform4iv(Q(a),r(),c>>2,4*b);else{if(72>=b){b*=4;for(var e=Hb[b],f=0;f>2],e[f+1]=r()[c+(4*f+4)>>2],e[f+2]=r()[c+(4*f+8)>>2],e[f+3]=r()[c+(4*f+12)>>2]}else e=r().subarray(c>>2,c+16*b>>2);F.uniform4iv(Q(a),e)}},emscripten_glUniformMatrix2fv:(a,b,c,e)=>{if(2<=P.version)b&&F.uniformMatrix2fv(Q(a),!!c,u(),e>>2,4*b);else{if(72>=b){b*=4;for(var f=R[b],h=0;h>2],f[h+1]=u()[e+(4*h+4)>>2],f[h+2]=u()[e+(4*h+8)>>2],f[h+3]=u()[e+(4*h+12)>> +2]}else f=u().subarray(e>>2,e+16*b>>2);F.uniformMatrix2fv(Q(a),!!c,f)}},emscripten_glUniformMatrix3fv:(a,b,c,e)=>{if(2<=P.version)b&&F.uniformMatrix3fv(Q(a),!!c,u(),e>>2,9*b);else{if(32>=b){b*=9;for(var f=R[b],h=0;h>2],f[h+1]=u()[e+(4*h+4)>>2],f[h+2]=u()[e+(4*h+8)>>2],f[h+3]=u()[e+(4*h+12)>>2],f[h+4]=u()[e+(4*h+16)>>2],f[h+5]=u()[e+(4*h+20)>>2],f[h+6]=u()[e+(4*h+24)>>2],f[h+7]=u()[e+(4*h+28)>>2],f[h+8]=u()[e+(4*h+32)>>2]}else f=u().subarray(e>>2,e+36*b>>2);F.uniformMatrix3fv(Q(a), +!!c,f)}},emscripten_glUniformMatrix4fv:(a,b,c,e)=>{if(2<=P.version)b&&F.uniformMatrix4fv(Q(a),!!c,u(),e>>2,16*b);else{if(18>=b){var f=R[16*b],h=u();e>>=2;b*=16;for(var l=0;l>2,e+64*b>>2);F.uniformMatrix4fv(Q(a),!!c,f)}},emscripten_glUseProgram:a=> +{a=G[a];F.useProgram(a);F.N=a},emscripten_glVertexAttrib1f:(a,b)=>F.vertexAttrib1f(a,b),emscripten_glVertexAttrib2fv:(a,b)=>{F.vertexAttrib2f(a,u()[b>>2],u()[b+4>>2])},emscripten_glVertexAttrib3fv:(a,b)=>{F.vertexAttrib3f(a,u()[b>>2],u()[b+4>>2],u()[b+8>>2])},emscripten_glVertexAttrib4fv:(a,b)=>{F.vertexAttrib4f(a,u()[b>>2],u()[b+4>>2],u()[b+8>>2],u()[b+12>>2])},emscripten_glVertexAttribDivisor:(a,b)=>{F.vertexAttribDivisor(a,b)},emscripten_glVertexAttribIPointer:(a,b,c,e,f)=>{F.vertexAttribIPointer(a, +b,c,e,f)},emscripten_glVertexAttribPointer:(a,b,c,e,f,h)=>{F.vertexAttribPointer(a,b,c,!!e,f,h)},emscripten_glViewport:(a,b,c,e)=>F.viewport(a,b,c,e),emscripten_glWaitSync:(a,b,c,e)=>{F.waitSync(L[a],b,(c>>>0)+4294967296*e)},emscripten_resize_heap:a=>{var b=q().length;a>>>=0;if(a<=b||2147483648=c;c*=2){var e=b*(1+.2/c);e=Math.min(e,a+100663296);a:{e=(Math.min(2147483648,65536*Math.ceil(Math.max(a,e)/65536))-g.buffer.byteLength+65535)/65536|0;try{g.grow(e);n();var f=1;break a}catch(h){}f= +void 0}if(f)return!0}return!1},emscripten_wasm_worker_post_function_v:(a,b)=>{D[a].postMessage({_wsc:b,x:[]})},emscripten_webgl_enable_extension:function(a,b){a=ib[a];b=C(b);b.startsWith("GL_")&&(b=b.substr(3));"ANGLE_instanced_arrays"==b&&Ya(F);"OES_vertex_array_object"==b&&Za(F);"WEBGL_draw_buffers"==b&&$a(F);"WEBGL_draw_instanced_base_vertex_base_instance"==b&&ab(F);"WEBGL_multi_draw_instanced_base_vertex_base_instance"==b&&bb(F);"WEBGL_multi_draw"==b&&(F.T=F.getExtension("WEBGL_multi_draw")); +"EXT_polygon_offset_clamp"==b&&(F.P=F.getExtension("EXT_polygon_offset_clamp"));"EXT_clip_control"==b&&(F.O=F.getExtension("EXT_clip_control"));"WEBGL_polygon_mode"==b&&(F.Y=F.getExtension("WEBGL_polygon_mode"));return!!a.v.getExtension(b)},emscripten_webgl_get_current_context:()=>P?P.handle:0,emscripten_webgl_make_context_current:a=>{P=ib[a];w.$=F=P?.v;return!a||F?0:-5},environ_get:(a,b)=>{var c=0;Kb().forEach((e,f)=>{var h=b+c;f=t()[a+4*f>>2]=h;for(h=0;h{var c=Kb();t()[a>>2]=c.length;var e=0;c.forEach(f=>e+=f.length+1);t()[b>>2]=e;return 0},fd_close:()=>52,fd_pread:function(){return 52},fd_read:()=>52,fd_seek:function(){return 70},fd_write:(a,b,c,e)=>{for(var f=0,h=0;h>2],m=t()[b+4>>2];b+=8;for(var p=0;p>2]=f;return 0},glDeleteTextures:rb,glGetIntegerv:yb,glGetString:Cb,glGetStringi:Db, +invoke_ii:mc,invoke_iii:nc,invoke_iiii:oc,invoke_iiiii:pc,invoke_iiiiiii:qc,invoke_vi:rc,invoke_vii:sc,invoke_viii:tc,invoke_viiii:uc,invoke_viiiiiii:vc,memory:g,proc_exit:Pa,skwasm_captureImageBitmap:Mb,skwasm_connectThread:Pb,skwasm_createGlTextureFromTextureSource:Qb,skwasm_createOffscreenCanvas:Rb,skwasm_dispatchDisposeSurface:Sb,skwasm_dispatchRasterizeImage:Tb,skwasm_dispatchRenderPictures:Ub,skwasm_disposeAssociatedObjectOnThread:Vb,skwasm_getAssociatedObject:Wb,skwasm_isSingleThreaded:Xb, +skwasm_postRasterizeResult:Yb,skwasm_resizeCanvas:Zb,skwasm_resolveAndPostImages:$b,skwasm_setAssociatedObjectOnThread:ac},W=function(){function a(c,e){W=c.exports;w.wasmExports=W;B=W.__indirect_function_table;wa.unshift(W.__wasm_call_ctors);qa=e;z--;0==z&&(null!==Fa&&(clearInterval(Fa),Fa=null),A&&(c=A,A=null,c()));return W}var b={env:wc,wasi_snapshot_preview1:wc};z++;if(w.instantiateWasm)try{return w.instantiateWasm(b,a)}catch(c){y(`Module.instantiateWasm callback failed with error: ${c}`),fa(c)}Ia??= +Ha("skwasm_heavy.wasm")?"skwasm_heavy.wasm":ma("skwasm_heavy.wasm");La(b,function(c){a(c.instance,c.module)}).catch(fa);return{}}();w._canvas_saveLayer=(a,b,c,e)=>(w._canvas_saveLayer=W.canvas_saveLayer)(a,b,c,e);w._canvas_save=a=>(w._canvas_save=W.canvas_save)(a);w._canvas_restore=a=>(w._canvas_restore=W.canvas_restore)(a);w._canvas_restoreToCount=(a,b)=>(w._canvas_restoreToCount=W.canvas_restoreToCount)(a,b);w._canvas_getSaveCount=a=>(w._canvas_getSaveCount=W.canvas_getSaveCount)(a); +w._canvas_translate=(a,b,c)=>(w._canvas_translate=W.canvas_translate)(a,b,c);w._canvas_scale=(a,b,c)=>(w._canvas_scale=W.canvas_scale)(a,b,c);w._canvas_rotate=(a,b)=>(w._canvas_rotate=W.canvas_rotate)(a,b);w._canvas_skew=(a,b,c)=>(w._canvas_skew=W.canvas_skew)(a,b,c);w._canvas_transform=(a,b)=>(w._canvas_transform=W.canvas_transform)(a,b);w._canvas_clear=(a,b)=>(w._canvas_clear=W.canvas_clear)(a,b);w._canvas_clipRect=(a,b,c,e)=>(w._canvas_clipRect=W.canvas_clipRect)(a,b,c,e); +w._canvas_clipRRect=(a,b,c)=>(w._canvas_clipRRect=W.canvas_clipRRect)(a,b,c);w._canvas_clipPath=(a,b,c)=>(w._canvas_clipPath=W.canvas_clipPath)(a,b,c);w._canvas_drawColor=(a,b,c)=>(w._canvas_drawColor=W.canvas_drawColor)(a,b,c);w._canvas_drawLine=(a,b,c,e,f,h)=>(w._canvas_drawLine=W.canvas_drawLine)(a,b,c,e,f,h);w._canvas_drawPaint=(a,b)=>(w._canvas_drawPaint=W.canvas_drawPaint)(a,b);w._canvas_drawRect=(a,b,c)=>(w._canvas_drawRect=W.canvas_drawRect)(a,b,c); +w._canvas_drawRRect=(a,b,c)=>(w._canvas_drawRRect=W.canvas_drawRRect)(a,b,c);w._canvas_drawDRRect=(a,b,c,e)=>(w._canvas_drawDRRect=W.canvas_drawDRRect)(a,b,c,e);w._canvas_drawOval=(a,b,c)=>(w._canvas_drawOval=W.canvas_drawOval)(a,b,c);w._canvas_drawCircle=(a,b,c,e,f)=>(w._canvas_drawCircle=W.canvas_drawCircle)(a,b,c,e,f);w._canvas_drawArc=(a,b,c,e,f,h)=>(w._canvas_drawArc=W.canvas_drawArc)(a,b,c,e,f,h);w._canvas_drawPath=(a,b,c)=>(w._canvas_drawPath=W.canvas_drawPath)(a,b,c); +w._canvas_drawShadow=(a,b,c,e,f,h)=>(w._canvas_drawShadow=W.canvas_drawShadow)(a,b,c,e,f,h);w._canvas_drawParagraph=(a,b,c,e)=>(w._canvas_drawParagraph=W.canvas_drawParagraph)(a,b,c,e);w._canvas_drawPicture=(a,b)=>(w._canvas_drawPicture=W.canvas_drawPicture)(a,b);w._canvas_drawImage=(a,b,c,e,f,h)=>(w._canvas_drawImage=W.canvas_drawImage)(a,b,c,e,f,h);w._canvas_drawImageRect=(a,b,c,e,f,h)=>(w._canvas_drawImageRect=W.canvas_drawImageRect)(a,b,c,e,f,h); +w._canvas_drawImageNine=(a,b,c,e,f,h)=>(w._canvas_drawImageNine=W.canvas_drawImageNine)(a,b,c,e,f,h);w._canvas_drawVertices=(a,b,c,e)=>(w._canvas_drawVertices=W.canvas_drawVertices)(a,b,c,e);w._canvas_drawPoints=(a,b,c,e,f)=>(w._canvas_drawPoints=W.canvas_drawPoints)(a,b,c,e,f);w._canvas_drawAtlas=(a,b,c,e,f,h,l,m,p)=>(w._canvas_drawAtlas=W.canvas_drawAtlas)(a,b,c,e,f,h,l,m,p);w._canvas_getTransform=(a,b)=>(w._canvas_getTransform=W.canvas_getTransform)(a,b); +w._canvas_getLocalClipBounds=(a,b)=>(w._canvas_getLocalClipBounds=W.canvas_getLocalClipBounds)(a,b);w._canvas_getDeviceClipBounds=(a,b)=>(w._canvas_getDeviceClipBounds=W.canvas_getDeviceClipBounds)(a,b);w._canvas_quickReject=(a,b)=>(w._canvas_quickReject=W.canvas_quickReject)(a,b);w._contourMeasureIter_create=(a,b,c)=>(w._contourMeasureIter_create=W.contourMeasureIter_create)(a,b,c);w._contourMeasureIter_next=a=>(w._contourMeasureIter_next=W.contourMeasureIter_next)(a); +w._contourMeasureIter_dispose=a=>(w._contourMeasureIter_dispose=W.contourMeasureIter_dispose)(a);w._contourMeasure_dispose=a=>(w._contourMeasure_dispose=W.contourMeasure_dispose)(a);w._contourMeasure_length=a=>(w._contourMeasure_length=W.contourMeasure_length)(a);w._contourMeasure_isClosed=a=>(w._contourMeasure_isClosed=W.contourMeasure_isClosed)(a);w._contourMeasure_getPosTan=(a,b,c,e)=>(w._contourMeasure_getPosTan=W.contourMeasure_getPosTan)(a,b,c,e); +w._contourMeasure_getSegment=(a,b,c,e)=>(w._contourMeasure_getSegment=W.contourMeasure_getSegment)(a,b,c,e);w._skData_create=a=>(w._skData_create=W.skData_create)(a);w._skData_getPointer=a=>(w._skData_getPointer=W.skData_getPointer)(a);w._skData_getConstPointer=a=>(w._skData_getConstPointer=W.skData_getConstPointer)(a);w._skData_getSize=a=>(w._skData_getSize=W.skData_getSize)(a);w._skData_dispose=a=>(w._skData_dispose=W.skData_dispose)(a); +w._imageFilter_createBlur=(a,b,c)=>(w._imageFilter_createBlur=W.imageFilter_createBlur)(a,b,c);w._imageFilter_createDilate=(a,b)=>(w._imageFilter_createDilate=W.imageFilter_createDilate)(a,b);w._imageFilter_createErode=(a,b)=>(w._imageFilter_createErode=W.imageFilter_createErode)(a,b);w._imageFilter_createMatrix=(a,b)=>(w._imageFilter_createMatrix=W.imageFilter_createMatrix)(a,b);w._imageFilter_createFromColorFilter=a=>(w._imageFilter_createFromColorFilter=W.imageFilter_createFromColorFilter)(a); +w._imageFilter_compose=(a,b)=>(w._imageFilter_compose=W.imageFilter_compose)(a,b);w._imageFilter_dispose=a=>(w._imageFilter_dispose=W.imageFilter_dispose)(a);w._imageFilter_getFilterBounds=(a,b)=>(w._imageFilter_getFilterBounds=W.imageFilter_getFilterBounds)(a,b);w._colorFilter_createMode=(a,b)=>(w._colorFilter_createMode=W.colorFilter_createMode)(a,b);w._colorFilter_createMatrix=a=>(w._colorFilter_createMatrix=W.colorFilter_createMatrix)(a); +w._colorFilter_createSRGBToLinearGamma=()=>(w._colorFilter_createSRGBToLinearGamma=W.colorFilter_createSRGBToLinearGamma)();w._colorFilter_createLinearToSRGBGamma=()=>(w._colorFilter_createLinearToSRGBGamma=W.colorFilter_createLinearToSRGBGamma)();w._colorFilter_dispose=a=>(w._colorFilter_dispose=W.colorFilter_dispose)(a);w._maskFilter_createBlur=(a,b)=>(w._maskFilter_createBlur=W.maskFilter_createBlur)(a,b);w._maskFilter_dispose=a=>(w._maskFilter_dispose=W.maskFilter_dispose)(a); +w._fontCollection_create=()=>(w._fontCollection_create=W.fontCollection_create)();w._fontCollection_dispose=a=>(w._fontCollection_dispose=W.fontCollection_dispose)(a);w._typeface_create=a=>(w._typeface_create=W.typeface_create)(a);w._typeface_dispose=a=>(w._typeface_dispose=W.typeface_dispose)(a);w._typefaces_filterCoveredCodePoints=(a,b,c,e)=>(w._typefaces_filterCoveredCodePoints=W.typefaces_filterCoveredCodePoints)(a,b,c,e); +w._fontCollection_registerTypeface=(a,b,c)=>(w._fontCollection_registerTypeface=W.fontCollection_registerTypeface)(a,b,c);w._fontCollection_clearCaches=a=>(w._fontCollection_clearCaches=W.fontCollection_clearCaches)(a);w._image_createFromPicture=(a,b,c)=>(w._image_createFromPicture=W.image_createFromPicture)(a,b,c);w._image_createFromPixels=(a,b,c,e,f)=>(w._image_createFromPixels=W.image_createFromPixels)(a,b,c,e,f); +w._image_createFromTextureSource=(a,b,c,e)=>(w._image_createFromTextureSource=W.image_createFromTextureSource)(a,b,c,e);w._image_ref=a=>(w._image_ref=W.image_ref)(a);w._image_dispose=a=>(w._image_dispose=W.image_dispose)(a);w._image_getWidth=a=>(w._image_getWidth=W.image_getWidth)(a);w._image_getHeight=a=>(w._image_getHeight=W.image_getHeight)(a);w._skwasm_getLiveObjectCounts=a=>(w._skwasm_getLiveObjectCounts=W.skwasm_getLiveObjectCounts)(a); +w._paint_create=(a,b,c,e,f,h,l,m,p)=>(w._paint_create=W.paint_create)(a,b,c,e,f,h,l,m,p);w._paint_dispose=a=>(w._paint_dispose=W.paint_dispose)(a);w._paint_setShader=(a,b)=>(w._paint_setShader=W.paint_setShader)(a,b);w._paint_setImageFilter=(a,b)=>(w._paint_setImageFilter=W.paint_setImageFilter)(a,b);w._paint_setColorFilter=(a,b)=>(w._paint_setColorFilter=W.paint_setColorFilter)(a,b);w._paint_setMaskFilter=(a,b)=>(w._paint_setMaskFilter=W.paint_setMaskFilter)(a,b); +w._path_create=()=>(w._path_create=W.path_create)();w._path_dispose=a=>(w._path_dispose=W.path_dispose)(a);w._path_copy=a=>(w._path_copy=W.path_copy)(a);w._path_setFillType=(a,b)=>(w._path_setFillType=W.path_setFillType)(a,b);w._path_getFillType=a=>(w._path_getFillType=W.path_getFillType)(a);w._path_moveTo=(a,b,c)=>(w._path_moveTo=W.path_moveTo)(a,b,c);w._path_relativeMoveTo=(a,b,c)=>(w._path_relativeMoveTo=W.path_relativeMoveTo)(a,b,c);w._path_lineTo=(a,b,c)=>(w._path_lineTo=W.path_lineTo)(a,b,c); +w._path_relativeLineTo=(a,b,c)=>(w._path_relativeLineTo=W.path_relativeLineTo)(a,b,c);w._path_quadraticBezierTo=(a,b,c,e,f)=>(w._path_quadraticBezierTo=W.path_quadraticBezierTo)(a,b,c,e,f);w._path_relativeQuadraticBezierTo=(a,b,c,e,f)=>(w._path_relativeQuadraticBezierTo=W.path_relativeQuadraticBezierTo)(a,b,c,e,f);w._path_cubicTo=(a,b,c,e,f,h,l)=>(w._path_cubicTo=W.path_cubicTo)(a,b,c,e,f,h,l);w._path_relativeCubicTo=(a,b,c,e,f,h,l)=>(w._path_relativeCubicTo=W.path_relativeCubicTo)(a,b,c,e,f,h,l); +w._path_conicTo=(a,b,c,e,f,h)=>(w._path_conicTo=W.path_conicTo)(a,b,c,e,f,h);w._path_relativeConicTo=(a,b,c,e,f,h)=>(w._path_relativeConicTo=W.path_relativeConicTo)(a,b,c,e,f,h);w._path_arcToOval=(a,b,c,e,f)=>(w._path_arcToOval=W.path_arcToOval)(a,b,c,e,f);w._path_arcToRotated=(a,b,c,e,f,h,l,m)=>(w._path_arcToRotated=W.path_arcToRotated)(a,b,c,e,f,h,l,m);w._path_relativeArcToRotated=(a,b,c,e,f,h,l,m)=>(w._path_relativeArcToRotated=W.path_relativeArcToRotated)(a,b,c,e,f,h,l,m); +w._path_addRect=(a,b)=>(w._path_addRect=W.path_addRect)(a,b);w._path_addOval=(a,b)=>(w._path_addOval=W.path_addOval)(a,b);w._path_addArc=(a,b,c,e)=>(w._path_addArc=W.path_addArc)(a,b,c,e);w._path_addPolygon=(a,b,c,e)=>(w._path_addPolygon=W.path_addPolygon)(a,b,c,e);w._path_addRRect=(a,b)=>(w._path_addRRect=W.path_addRRect)(a,b);w._path_addPath=(a,b,c,e)=>(w._path_addPath=W.path_addPath)(a,b,c,e);w._path_close=a=>(w._path_close=W.path_close)(a);w._path_reset=a=>(w._path_reset=W.path_reset)(a); +w._path_contains=(a,b,c)=>(w._path_contains=W.path_contains)(a,b,c);w._path_transform=(a,b)=>(w._path_transform=W.path_transform)(a,b);w._path_getBounds=(a,b)=>(w._path_getBounds=W.path_getBounds)(a,b);w._path_combine=(a,b,c)=>(w._path_combine=W.path_combine)(a,b,c);w._path_getSvgString=a=>(w._path_getSvgString=W.path_getSvgString)(a);w._pictureRecorder_create=()=>(w._pictureRecorder_create=W.pictureRecorder_create)();w._pictureRecorder_dispose=a=>(w._pictureRecorder_dispose=W.pictureRecorder_dispose)(a); +w._pictureRecorder_beginRecording=(a,b)=>(w._pictureRecorder_beginRecording=W.pictureRecorder_beginRecording)(a,b);w._pictureRecorder_endRecording=a=>(w._pictureRecorder_endRecording=W.pictureRecorder_endRecording)(a);w._picture_getCullRect=(a,b)=>(w._picture_getCullRect=W.picture_getCullRect)(a,b);w._picture_dispose=a=>(w._picture_dispose=W.picture_dispose)(a);w._picture_approximateBytesUsed=a=>(w._picture_approximateBytesUsed=W.picture_approximateBytesUsed)(a); +w._shader_createLinearGradient=(a,b,c,e,f,h)=>(w._shader_createLinearGradient=W.shader_createLinearGradient)(a,b,c,e,f,h);w._shader_createRadialGradient=(a,b,c,e,f,h,l,m)=>(w._shader_createRadialGradient=W.shader_createRadialGradient)(a,b,c,e,f,h,l,m);w._shader_createConicalGradient=(a,b,c,e,f,h,l,m)=>(w._shader_createConicalGradient=W.shader_createConicalGradient)(a,b,c,e,f,h,l,m); +w._shader_createSweepGradient=(a,b,c,e,f,h,l,m,p)=>(w._shader_createSweepGradient=W.shader_createSweepGradient)(a,b,c,e,f,h,l,m,p);w._shader_dispose=a=>(w._shader_dispose=W.shader_dispose)(a);w._runtimeEffect_create=a=>(w._runtimeEffect_create=W.runtimeEffect_create)(a);w._runtimeEffect_dispose=a=>(w._runtimeEffect_dispose=W.runtimeEffect_dispose)(a);w._runtimeEffect_getUniformSize=a=>(w._runtimeEffect_getUniformSize=W.runtimeEffect_getUniformSize)(a); +w._shader_createRuntimeEffectShader=(a,b,c,e)=>(w._shader_createRuntimeEffectShader=W.shader_createRuntimeEffectShader)(a,b,c,e);w._shader_createFromImage=(a,b,c,e,f)=>(w._shader_createFromImage=W.shader_createFromImage)(a,b,c,e,f);w._uniformData_create=a=>(w._uniformData_create=W.uniformData_create)(a);w._uniformData_dispose=a=>(w._uniformData_dispose=W.uniformData_dispose)(a);w._uniformData_getPointer=a=>(w._uniformData_getPointer=W.uniformData_getPointer)(a); +w._skString_allocate=a=>(w._skString_allocate=W.skString_allocate)(a);w._skString_getData=a=>(w._skString_getData=W.skString_getData)(a);w._skString_getLength=a=>(w._skString_getLength=W.skString_getLength)(a);w._skString_free=a=>(w._skString_free=W.skString_free)(a);w._skString16_allocate=a=>(w._skString16_allocate=W.skString16_allocate)(a);w._skString16_getData=a=>(w._skString16_getData=W.skString16_getData)(a);w._skString16_free=a=>(w._skString16_free=W.skString16_free)(a); +w._surface_create=()=>(w._surface_create=W.surface_create)();w._surface_getThreadId=a=>(w._surface_getThreadId=W.surface_getThreadId)(a);w._surface_setCallbackHandler=(a,b)=>(w._surface_setCallbackHandler=W.surface_setCallbackHandler)(a,b);w._surface_destroy=a=>(w._surface_destroy=W.surface_destroy)(a);var ic=w._surface_dispose=a=>(ic=w._surface_dispose=W.surface_dispose)(a); +w._surface_setResourceCacheLimitBytes=(a,b)=>(w._surface_setResourceCacheLimitBytes=W.surface_setResourceCacheLimitBytes)(a,b);w._surface_renderPictures=(a,b,c,e,f)=>(w._surface_renderPictures=W.surface_renderPictures)(a,b,c,e,f);var gc=w._surface_renderPicturesOnWorker=(a,b,c,e,f,h,l)=>(gc=w._surface_renderPicturesOnWorker=W.surface_renderPicturesOnWorker)(a,b,c,e,f,h,l);w._surface_rasterizeImage=(a,b,c)=>(w._surface_rasterizeImage=W.surface_rasterizeImage)(a,b,c); +var jc=w._surface_rasterizeImageOnWorker=(a,b,c,e)=>(jc=w._surface_rasterizeImageOnWorker=W.surface_rasterizeImageOnWorker)(a,b,c,e),hc=w._surface_onRenderComplete=(a,b,c)=>(hc=w._surface_onRenderComplete=W.surface_onRenderComplete)(a,b,c),kc=w._surface_onRasterizeComplete=(a,b,c)=>(kc=w._surface_onRasterizeComplete=W.surface_onRasterizeComplete)(a,b,c);w._skwasm_isMultiThreaded=()=>(w._skwasm_isMultiThreaded=W.skwasm_isMultiThreaded)(); +w._lineMetrics_create=(a,b,c,e,f,h,l,m,p)=>(w._lineMetrics_create=W.lineMetrics_create)(a,b,c,e,f,h,l,m,p);w._lineMetrics_dispose=a=>(w._lineMetrics_dispose=W.lineMetrics_dispose)(a);w._lineMetrics_getHardBreak=a=>(w._lineMetrics_getHardBreak=W.lineMetrics_getHardBreak)(a);w._lineMetrics_getAscent=a=>(w._lineMetrics_getAscent=W.lineMetrics_getAscent)(a);w._lineMetrics_getDescent=a=>(w._lineMetrics_getDescent=W.lineMetrics_getDescent)(a); +w._lineMetrics_getUnscaledAscent=a=>(w._lineMetrics_getUnscaledAscent=W.lineMetrics_getUnscaledAscent)(a);w._lineMetrics_getHeight=a=>(w._lineMetrics_getHeight=W.lineMetrics_getHeight)(a);w._lineMetrics_getWidth=a=>(w._lineMetrics_getWidth=W.lineMetrics_getWidth)(a);w._lineMetrics_getLeft=a=>(w._lineMetrics_getLeft=W.lineMetrics_getLeft)(a);w._lineMetrics_getBaseline=a=>(w._lineMetrics_getBaseline=W.lineMetrics_getBaseline)(a);w._lineMetrics_getLineNumber=a=>(w._lineMetrics_getLineNumber=W.lineMetrics_getLineNumber)(a); +w._lineMetrics_getStartIndex=a=>(w._lineMetrics_getStartIndex=W.lineMetrics_getStartIndex)(a);w._lineMetrics_getEndIndex=a=>(w._lineMetrics_getEndIndex=W.lineMetrics_getEndIndex)(a);w._paragraph_dispose=a=>(w._paragraph_dispose=W.paragraph_dispose)(a);w._paragraph_getWidth=a=>(w._paragraph_getWidth=W.paragraph_getWidth)(a);w._paragraph_getHeight=a=>(w._paragraph_getHeight=W.paragraph_getHeight)(a);w._paragraph_getLongestLine=a=>(w._paragraph_getLongestLine=W.paragraph_getLongestLine)(a); +w._paragraph_getMinIntrinsicWidth=a=>(w._paragraph_getMinIntrinsicWidth=W.paragraph_getMinIntrinsicWidth)(a);w._paragraph_getMaxIntrinsicWidth=a=>(w._paragraph_getMaxIntrinsicWidth=W.paragraph_getMaxIntrinsicWidth)(a);w._paragraph_getAlphabeticBaseline=a=>(w._paragraph_getAlphabeticBaseline=W.paragraph_getAlphabeticBaseline)(a);w._paragraph_getIdeographicBaseline=a=>(w._paragraph_getIdeographicBaseline=W.paragraph_getIdeographicBaseline)(a); +w._paragraph_getDidExceedMaxLines=a=>(w._paragraph_getDidExceedMaxLines=W.paragraph_getDidExceedMaxLines)(a);w._paragraph_layout=(a,b)=>(w._paragraph_layout=W.paragraph_layout)(a,b);w._paragraph_getPositionForOffset=(a,b,c,e)=>(w._paragraph_getPositionForOffset=W.paragraph_getPositionForOffset)(a,b,c,e);w._paragraph_getClosestGlyphInfoAtCoordinate=(a,b,c,e,f,h)=>(w._paragraph_getClosestGlyphInfoAtCoordinate=W.paragraph_getClosestGlyphInfoAtCoordinate)(a,b,c,e,f,h); +w._paragraph_getGlyphInfoAt=(a,b,c,e,f)=>(w._paragraph_getGlyphInfoAt=W.paragraph_getGlyphInfoAt)(a,b,c,e,f);w._paragraph_getWordBoundary=(a,b,c)=>(w._paragraph_getWordBoundary=W.paragraph_getWordBoundary)(a,b,c);w._paragraph_getLineCount=a=>(w._paragraph_getLineCount=W.paragraph_getLineCount)(a);w._paragraph_getLineNumberAt=(a,b)=>(w._paragraph_getLineNumberAt=W.paragraph_getLineNumberAt)(a,b); +w._paragraph_getLineMetricsAtIndex=(a,b)=>(w._paragraph_getLineMetricsAtIndex=W.paragraph_getLineMetricsAtIndex)(a,b);w._textBoxList_dispose=a=>(w._textBoxList_dispose=W.textBoxList_dispose)(a);w._textBoxList_getLength=a=>(w._textBoxList_getLength=W.textBoxList_getLength)(a);w._textBoxList_getBoxAtIndex=(a,b,c)=>(w._textBoxList_getBoxAtIndex=W.textBoxList_getBoxAtIndex)(a,b,c);w._paragraph_getBoxesForRange=(a,b,c,e,f)=>(w._paragraph_getBoxesForRange=W.paragraph_getBoxesForRange)(a,b,c,e,f); +w._paragraph_getBoxesForPlaceholders=a=>(w._paragraph_getBoxesForPlaceholders=W.paragraph_getBoxesForPlaceholders)(a);w._paragraph_getUnresolvedCodePoints=(a,b,c)=>(w._paragraph_getUnresolvedCodePoints=W.paragraph_getUnresolvedCodePoints)(a,b,c);w._paragraphBuilder_dispose=a=>(w._paragraphBuilder_dispose=W.paragraphBuilder_dispose)(a);w._paragraphBuilder_addPlaceholder=(a,b,c,e,f,h)=>(w._paragraphBuilder_addPlaceholder=W.paragraphBuilder_addPlaceholder)(a,b,c,e,f,h); +w._paragraphBuilder_addText=(a,b)=>(w._paragraphBuilder_addText=W.paragraphBuilder_addText)(a,b);w._paragraphBuilder_getUtf8Text=(a,b)=>(w._paragraphBuilder_getUtf8Text=W.paragraphBuilder_getUtf8Text)(a,b);w._paragraphBuilder_pushStyle=(a,b)=>(w._paragraphBuilder_pushStyle=W.paragraphBuilder_pushStyle)(a,b);w._paragraphBuilder_pop=a=>(w._paragraphBuilder_pop=W.paragraphBuilder_pop)(a);w._unicodePositionBuffer_create=a=>(w._unicodePositionBuffer_create=W.unicodePositionBuffer_create)(a); +w._unicodePositionBuffer_getDataPointer=a=>(w._unicodePositionBuffer_getDataPointer=W.unicodePositionBuffer_getDataPointer)(a);w._unicodePositionBuffer_free=a=>(w._unicodePositionBuffer_free=W.unicodePositionBuffer_free)(a);w._lineBreakBuffer_create=a=>(w._lineBreakBuffer_create=W.lineBreakBuffer_create)(a);w._lineBreakBuffer_getDataPointer=a=>(w._lineBreakBuffer_getDataPointer=W.lineBreakBuffer_getDataPointer)(a);w._lineBreakBuffer_free=a=>(w._lineBreakBuffer_free=W.lineBreakBuffer_free)(a); +w._paragraphStyle_create=()=>(w._paragraphStyle_create=W.paragraphStyle_create)();w._paragraphStyle_dispose=a=>(w._paragraphStyle_dispose=W.paragraphStyle_dispose)(a);w._paragraphStyle_setTextAlign=(a,b)=>(w._paragraphStyle_setTextAlign=W.paragraphStyle_setTextAlign)(a,b);w._paragraphStyle_setTextDirection=(a,b)=>(w._paragraphStyle_setTextDirection=W.paragraphStyle_setTextDirection)(a,b);w._paragraphStyle_setMaxLines=(a,b)=>(w._paragraphStyle_setMaxLines=W.paragraphStyle_setMaxLines)(a,b); +w._paragraphStyle_setHeight=(a,b)=>(w._paragraphStyle_setHeight=W.paragraphStyle_setHeight)(a,b);w._paragraphStyle_setTextHeightBehavior=(a,b,c)=>(w._paragraphStyle_setTextHeightBehavior=W.paragraphStyle_setTextHeightBehavior)(a,b,c);w._paragraphStyle_setEllipsis=(a,b)=>(w._paragraphStyle_setEllipsis=W.paragraphStyle_setEllipsis)(a,b);w._paragraphStyle_setStrutStyle=(a,b)=>(w._paragraphStyle_setStrutStyle=W.paragraphStyle_setStrutStyle)(a,b); +w._paragraphStyle_setTextStyle=(a,b)=>(w._paragraphStyle_setTextStyle=W.paragraphStyle_setTextStyle)(a,b);w._paragraphStyle_setApplyRoundingHack=(a,b)=>(w._paragraphStyle_setApplyRoundingHack=W.paragraphStyle_setApplyRoundingHack)(a,b);w._strutStyle_create=()=>(w._strutStyle_create=W.strutStyle_create)();w._strutStyle_dispose=a=>(w._strutStyle_dispose=W.strutStyle_dispose)(a);w._strutStyle_setFontFamilies=(a,b,c)=>(w._strutStyle_setFontFamilies=W.strutStyle_setFontFamilies)(a,b,c); +w._strutStyle_setFontSize=(a,b)=>(w._strutStyle_setFontSize=W.strutStyle_setFontSize)(a,b);w._strutStyle_setHeight=(a,b)=>(w._strutStyle_setHeight=W.strutStyle_setHeight)(a,b);w._strutStyle_setHalfLeading=(a,b)=>(w._strutStyle_setHalfLeading=W.strutStyle_setHalfLeading)(a,b);w._strutStyle_setLeading=(a,b)=>(w._strutStyle_setLeading=W.strutStyle_setLeading)(a,b);w._strutStyle_setFontStyle=(a,b,c)=>(w._strutStyle_setFontStyle=W.strutStyle_setFontStyle)(a,b,c); +w._strutStyle_setForceStrutHeight=(a,b)=>(w._strutStyle_setForceStrutHeight=W.strutStyle_setForceStrutHeight)(a,b);w._textStyle_create=()=>(w._textStyle_create=W.textStyle_create)();w._textStyle_copy=a=>(w._textStyle_copy=W.textStyle_copy)(a);w._textStyle_dispose=a=>(w._textStyle_dispose=W.textStyle_dispose)(a);w._textStyle_setColor=(a,b)=>(w._textStyle_setColor=W.textStyle_setColor)(a,b);w._textStyle_setDecoration=(a,b)=>(w._textStyle_setDecoration=W.textStyle_setDecoration)(a,b); +w._textStyle_setDecorationColor=(a,b)=>(w._textStyle_setDecorationColor=W.textStyle_setDecorationColor)(a,b);w._textStyle_setDecorationStyle=(a,b)=>(w._textStyle_setDecorationStyle=W.textStyle_setDecorationStyle)(a,b);w._textStyle_setDecorationThickness=(a,b)=>(w._textStyle_setDecorationThickness=W.textStyle_setDecorationThickness)(a,b);w._textStyle_setFontStyle=(a,b,c)=>(w._textStyle_setFontStyle=W.textStyle_setFontStyle)(a,b,c); +w._textStyle_setTextBaseline=(a,b)=>(w._textStyle_setTextBaseline=W.textStyle_setTextBaseline)(a,b);w._textStyle_clearFontFamilies=a=>(w._textStyle_clearFontFamilies=W.textStyle_clearFontFamilies)(a);w._textStyle_addFontFamilies=(a,b,c)=>(w._textStyle_addFontFamilies=W.textStyle_addFontFamilies)(a,b,c);w._textStyle_setFontSize=(a,b)=>(w._textStyle_setFontSize=W.textStyle_setFontSize)(a,b);w._textStyle_setLetterSpacing=(a,b)=>(w._textStyle_setLetterSpacing=W.textStyle_setLetterSpacing)(a,b); +w._textStyle_setWordSpacing=(a,b)=>(w._textStyle_setWordSpacing=W.textStyle_setWordSpacing)(a,b);w._textStyle_setHeight=(a,b)=>(w._textStyle_setHeight=W.textStyle_setHeight)(a,b);w._textStyle_setHalfLeading=(a,b)=>(w._textStyle_setHalfLeading=W.textStyle_setHalfLeading)(a,b);w._textStyle_setLocale=(a,b)=>(w._textStyle_setLocale=W.textStyle_setLocale)(a,b);w._textStyle_setBackground=(a,b)=>(w._textStyle_setBackground=W.textStyle_setBackground)(a,b); +w._textStyle_setForeground=(a,b)=>(w._textStyle_setForeground=W.textStyle_setForeground)(a,b);w._textStyle_addShadow=(a,b,c,e,f)=>(w._textStyle_addShadow=W.textStyle_addShadow)(a,b,c,e,f);w._textStyle_addFontFeature=(a,b,c)=>(w._textStyle_addFontFeature=W.textStyle_addFontFeature)(a,b,c);w._textStyle_setFontVariations=(a,b,c,e)=>(w._textStyle_setFontVariations=W.textStyle_setFontVariations)(a,b,c,e);w._vertices_create=(a,b,c,e,f,h,l)=>(w._vertices_create=W.vertices_create)(a,b,c,e,f,h,l); +w._vertices_dispose=a=>(w._vertices_dispose=W.vertices_dispose)(a);w._animatedImage_create=(a,b,c)=>(w._animatedImage_create=W.animatedImage_create)(a,b,c);w._animatedImage_dispose=a=>(w._animatedImage_dispose=W.animatedImage_dispose)(a);w._animatedImage_getFrameCount=a=>(w._animatedImage_getFrameCount=W.animatedImage_getFrameCount)(a);w._animatedImage_getRepetitionCount=a=>(w._animatedImage_getRepetitionCount=W.animatedImage_getRepetitionCount)(a); +w._animatedImage_getCurrentFrameDurationMilliseconds=a=>(w._animatedImage_getCurrentFrameDurationMilliseconds=W.animatedImage_getCurrentFrameDurationMilliseconds)(a);w._animatedImage_decodeNextFrame=a=>(w._animatedImage_decodeNextFrame=W.animatedImage_decodeNextFrame)(a);w._animatedImage_getCurrentFrame=a=>(w._animatedImage_getCurrentFrame=W.animatedImage_getCurrentFrame)(a);w._skwasm_isHeavy=()=>(w._skwasm_isHeavy=W.skwasm_isHeavy)(); +w._paragraphBuilder_create=(a,b)=>(w._paragraphBuilder_create=W.paragraphBuilder_create)(a,b);w._paragraphBuilder_build=a=>(w._paragraphBuilder_build=W.paragraphBuilder_build)(a);w._paragraphBuilder_setGraphemeBreaksUtf16=(a,b)=>(w._paragraphBuilder_setGraphemeBreaksUtf16=W.paragraphBuilder_setGraphemeBreaksUtf16)(a,b);w._paragraphBuilder_setWordBreaksUtf16=(a,b)=>(w._paragraphBuilder_setWordBreaksUtf16=W.paragraphBuilder_setWordBreaksUtf16)(a,b); +w._paragraphBuilder_setLineBreaksUtf16=(a,b)=>(w._paragraphBuilder_setLineBreaksUtf16=W.paragraphBuilder_setLineBreaksUtf16)(a,b);var Ab=a=>(Ab=W.malloc)(a),lc=(a,b)=>(lc=W._emscripten_timeout)(a,b),X=(a,b)=>(X=W.setThrew)(a,b),Y=a=>(Y=W._emscripten_stack_restore)(a),cc=a=>(cc=W._emscripten_stack_alloc)(a),Z=()=>(Z=W.emscripten_stack_get_current)(),Aa=(a,b)=>(Aa=W._emscripten_wasm_worker_initialize)(a,b); +function nc(a,b,c){var e=Z();try{return B.get(a)(b,c)}catch(f){Y(e);if(f!==f+0)throw f;X(1,0)}}function sc(a,b,c){var e=Z();try{B.get(a)(b,c)}catch(f){Y(e);if(f!==f+0)throw f;X(1,0)}}function mc(a,b){var c=Z();try{return B.get(a)(b)}catch(e){Y(c);if(e!==e+0)throw e;X(1,0)}}function tc(a,b,c,e){var f=Z();try{B.get(a)(b,c,e)}catch(h){Y(f);if(h!==h+0)throw h;X(1,0)}}function oc(a,b,c,e){var f=Z();try{return B.get(a)(b,c,e)}catch(h){Y(f);if(h!==h+0)throw h;X(1,0)}} +function uc(a,b,c,e,f){var h=Z();try{B.get(a)(b,c,e,f)}catch(l){Y(h);if(l!==l+0)throw l;X(1,0)}}function vc(a,b,c,e,f,h,l,m){var p=Z();try{B.get(a)(b,c,e,f,h,l,m)}catch(v){Y(p);if(v!==v+0)throw v;X(1,0)}}function rc(a,b){var c=Z();try{B.get(a)(b)}catch(e){Y(c);if(e!==e+0)throw e;X(1,0)}}function qc(a,b,c,e,f,h,l){var m=Z();try{return B.get(a)(b,c,e,f,h,l)}catch(p){Y(m);if(p!==p+0)throw p;X(1,0)}} +function pc(a,b,c,e,f){var h=Z();try{return B.get(a)(b,c,e,f)}catch(l){Y(h);if(l!==l+0)throw l;X(1,0)}}w.wasmMemory=g;w.wasmExports=W;w.stackAlloc=dc; +w.addFunction=(a,b)=>{if(!U){U=new WeakMap;var c=B.length;if(U)for(var e=0;e<0+c;e++){var f=B.get(e);f&&U.set(f,e)}}if(c=U.get(a)||0)return c;if(bc.length)c=bc.pop();else{try{B.grow(1)}catch(m){if(!(m instanceof RangeError))throw m;throw"Unable to grow wasm table. Set ALLOW_TABLE_GROWTH.";}c=B.length-1}try{B.set(c,a)}catch(m){if(!(m instanceof TypeError))throw m;if("function"==typeof WebAssembly.Function){e=WebAssembly.Function;f={i:"i32",j:"i64",f:"f32",d:"f64",e:"externref",p:"i32"};for(var h={parameters:[], +results:"v"==b[0]?[]:[f[b[0]]]},l=1;ll?e.push(l):e.push(l%128|128,l>>7);for(l=0;lf?b.push(f):b.push(f%128|128,f>>7);b.push(...e);b.push(2,7,1,1,101,1,102,0,0,7,5,1,1,102,0,0);b=new WebAssembly.Module(new Uint8Array(b));b=(new WebAssembly.Instance(b, +{e:{f:a}})).exports.f}B.set(c,b)}U.set(a,c);return c};var xc,yc;A=function zc(){xc||Ac();xc||(A=zc)};function Ac(){if(!(0\2c\20std::__2::allocator>::~basic_string\28\29 +218:operator\20new\28unsigned\20long\29 +219:sk_sp::~sk_sp\28\29 +220:GrGLSLShaderBuilder::codeAppendf\28char\20const*\2c\20...\29 +221:void\20SkSafeUnref\28SkTypeface*\29\20\28.4242\29 +222:sk_sp::~sk_sp\28\29 +223:void\20SkSafeUnref\28GrContextThreadSafeProxy*\29 +224:operator\20delete\28void*\2c\20unsigned\20long\29 +225:uprv_free_74 +226:void\20SkSafeUnref\28SkString::Rec*\29 +227:SkRasterPipeline::uncheckedAppend\28SkRasterPipelineOp\2c\20void*\29 +228:GrGLSLShaderBuilder::codeAppend\28char\20const*\29 +229:__cxa_guard_acquire +230:SkSL::GLSLCodeGenerator::write\28std::__2::basic_string_view>\29 +231:strlen +232:flutter::DlBlurMaskFilter::type\28\29\20const +233:__cxa_guard_release +234:SkSL::ErrorReporter::error\28SkSL::Position\2c\20std::__2::basic_string_view>\29 +235:hb_blob_destroy +236:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20char\20const*\29 +237:emscripten_builtin_malloc +238:SkDebugf\28char\20const*\2c\20...\29 +239:fmaxf +240:skia_private::TArray\2c\20true>::~TArray\28\29 +241:void\20SkSafeUnref\28SkPathRef*\29 +242:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>&&\29 +243:__unlockfile +244:strcmp +245:std::exception::~exception\28\29 +246:std::__2::shared_ptr::~shared_ptr\5babi:ne180100\5d\28\29 +247:std::__2::__function::__value_func::~__value_func\5babi:ne180100\5d\28\29 +248:std::__2::basic_string\2c\20std::__2::allocator>::size\5babi:nn180100\5d\28\29\20const +249:hb_sanitize_context_t::check_range\28void\20const*\2c\20unsigned\20int\29\20const +250:icu_74::MaybeStackArray::releaseArray\28\29 +251:GrShaderVar::~GrShaderVar\28\29 +252:icu_74::UnicodeString::~UnicodeString\28\29 +253:hb_buffer_t::message\28hb_font_t*\2c\20char\20const*\2c\20...\29 +254:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&&\29 +255:SkPaint::~SkPaint\28\29 +256:__wasm_setjmp_test +257:GrColorInfo::~GrColorInfo\28\29 +258:SkMutex::release\28\29 +259:std::__2::basic_string\2c\20std::__2::allocator>::basic_string>\2c\200>\28std::__2::basic_string_view>\20const&\29 +260:fminf +261:SkArenaAlloc::allocObject\28unsigned\20int\2c\20unsigned\20int\29 +262:FT_DivFix +263:sk_sp::reset\28SkFontStyleSet*\29 +264:SkBitmap::~SkBitmap\28\29 +265:skvx::Vec<4\2c\20float>\20skvx::naive_if_then_else<4\2c\20float>\28skvx::Vec<4\2c\20skvx::Mask::type>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.6364\29 +266:SkSemaphore::wait\28\29 +267:skia_private::TArray>\2c\20true>::~TArray\28\29 +268:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:ne180100\5d<0>\28char\20const*\29 +269:skia_png_crc_finish +270:skia_png_chunk_benign_error +271:ft_mem_realloc +272:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +273:memcmp +274:SkSL::RP::Generator::pushExpression\28SkSL::Expression\20const&\2c\20bool\29 +275:fml::LogMessage::~LogMessage\28\29 +276:fml::LogMessage::LogMessage\28int\2c\20char\20const*\2c\20int\2c\20char\20const*\29 +277:SkMatrix::hasPerspective\28\29\20const +278:SkSL::RP::Builder::appendInstruction\28SkSL::RP::BuilderOp\2c\20SkSL::RP::Builder::SlotList\2c\20int\2c\20int\2c\20int\2c\20int\29 +279:SkSL::Pool::AllocMemory\28unsigned\20long\29 +280:sk_sp::~sk_sp\28\29 +281:sk_report_container_overflow_and_die\28\29 +282:SkString::appendf\28char\20const*\2c\20...\29 +283:SkImageGenerator::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +284:__lockfile +285:SkArenaAlloc::allocObjectWithFooter\28unsigned\20int\2c\20unsigned\20int\29 +286:lang_matches\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20int\29 +287:skgpu::ganesh::VertexChunkPatchAllocator::append\28skgpu::tess::LinearTolerances\20const&\29 +288:icu_74::CharString::append\28char\20const*\2c\20int\2c\20UErrorCode&\29 +289:emscripten_builtin_calloc +290:SkContainerAllocator::allocate\28int\2c\20double\29 +291:skgpu::VertexWriter&\20skgpu::tess::operator<<<\28skgpu::tess::PatchAttribs\298\2c\20skgpu::VertexColor\2c\20false\2c\20true>\28skgpu::VertexWriter&\2c\20skgpu::tess::AttribValue<\28skgpu::tess::PatchAttribs\298\2c\20skgpu::VertexColor\2c\20false\2c\20true>\20const&\29 +292:hb_buffer_t::next_glyph\28\29 +293:SkIRect::intersect\28SkIRect\20const&\29 +294:FT_Stream_Seek +295:SkWriter32::write32\28int\29 +296:\28anonymous\20namespace\29::ColorTypeFilter_F16F16::Expand\28unsigned\20int\29 +297:FT_MulDiv +298:std::__2::basic_string\2c\20std::__2::allocator>::append\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +299:SkString::append\28char\20const*\29 +300:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +301:std::__2::vector>::__throw_length_error\5babi:ne180100\5d\28\29\20const +302:subtag_matches\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20int\29 +303:SkBitmap::SkBitmap\28\29 +304:uprv_malloc_74 +305:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +306:std::__2::vector>::push_back\5babi:ne180100\5d\28unsigned\20long\20const&\29 +307:skia_png_free +308:ft_mem_qrealloc +309:flutter::DlMatrixColorSourceBase::~DlMatrixColorSourceBase\28\29 +310:std::__2::basic_string\2c\20std::__2::allocator>::append\28char\20const*\29 +311:SkSL::Parser::expect\28SkSL::Token::Kind\2c\20char\20const*\2c\20SkSL::Token*\29 +312:strchr +313:flutter::DisplayListStorage::allocate\28unsigned\20long\29 +314:SkIntersections::insert\28double\2c\20double\2c\20SkDPoint\20const&\29 +315:FT_Stream_ReadUShort +316:void\20SkSafeUnref\28SkColorSpace*\29\20\28.2121\29 +317:skia_private::TArray::push_back\28SkSL::RP::Program::Stage&&\29 +318:std::__2::basic_string\2c\20std::__2::allocator>::resize\5babi:nn180100\5d\28unsigned\20long\29 +319:sk_sp::~sk_sp\28\29 +320:cf2_stack_popFixed +321:utext_getNativeIndex_74 +322:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +323:cf2_stack_getReal +324:SkSL::GLSLCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +325:SkIRect::isEmpty\28\29\20const +326:std::__2::locale::~locale\28\29 +327:SkSL::Type::displayName\28\29\20const +328:SkPaint::SkPaint\28SkPaint\20const&\29 +329:GrAuditTrail::pushFrame\28char\20const*\29 +330:void\20SkSafeUnref\28SkData*\29\20\28.8581\29 +331:hb_face_t::get_num_glyphs\28\29\20const +332:OT::ItemVarStoreInstancer::operator\28\29\28unsigned\20int\2c\20unsigned\20short\29\20const +333:skif::FilterResult::~FilterResult\28\29 +334:sk_sp::~sk_sp\28\29 +335:SkString::SkString\28SkString&&\29 +336:GrGeometryProcessor::Attribute::asShaderVar\28\29\20const +337:utext_setNativeIndex_74 +338:std::__2::ios_base::getloc\28\29\20const +339:hb_vector_t::fini\28\29 +340:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skcpu::ContextImpl\20const*\29 +341:std::__2::to_string\28int\29 +342:icu_74::LocalUResourceBundlePointer::~LocalUResourceBundlePointer\28\29 +343:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +344:SkTDStorage::~SkTDStorage\28\29 +345:SkSL::Parser::peek\28\29 +346:SkIRect::contains\28SkIRect\20const&\29\20const +347:GrGLSLUniformHandler::addUniform\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20char\20const**\29 +348:icu_74::CharString::append\28char\2c\20UErrorCode&\29 +349:SkWStream::writeText\28char\20const*\29 +350:SkString::~SkString\28\29 +351:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +352:skgpu::Swizzle::Swizzle\28char\20const*\29 +353:GrProcessor::operator\20new\28unsigned\20long\29 +354:GrPixmapBase::~GrPixmapBase\28\29 +355:GrGLContextInfo::hasExtension\28char\20const*\29\20const +356:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28\29 +357:hb_ot_map_builder_t::add_feature\28unsigned\20int\2c\20hb_ot_map_feature_flags_t\2c\20unsigned\20int\29 +358:SkArenaAlloc::RunDtorsOnBlock\28char*\29 +359:GrSurfaceProxyView::operator=\28GrSurfaceProxyView&&\29 +360:GrPaint::~GrPaint\28\29 +361:std::__2::unique_ptr>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +362:std::__2::basic_string\2c\20std::__2::allocator>::__get_pointer\5babi:nn180100\5d\28\29 +363:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +364:skvx::Vec<8\2c\20unsigned\20short>&\20skvx::operator+=<8\2c\20unsigned\20short>\28skvx::Vec<8\2c\20unsigned\20short>&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +365:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +366:SkString::SkString\28char\20const*\29 +367:SkPathRef::getBounds\28\29\20const +368:skia_png_warning +369:hb_sanitize_context_t::start_processing\28\29 +370:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +371:hb_sanitize_context_t::~hb_sanitize_context_t\28\29 +372:__shgetc +373:SkMakeRuntimeEffect\28SkRuntimeEffect::Result\20\28*\29\28SkString\2c\20SkRuntimeEffect::Options\20const&\29\2c\20char\20const*\2c\20SkRuntimeEffect::Options\29 +374:FT_Stream_GetUShort +375:strcpy +376:std::__throw_bad_array_new_length\5babi:ne180100\5d\28\29 +377:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28wchar_t\20const*\29 +378:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28char\20const*\29 +379:skia_private::TArray>\2c\20true>::push_back\28std::__2::unique_ptr>&&\29 +380:bool\20std::__2::operator==\5babi:nn180100\5d>\28std::__2::istreambuf_iterator>\20const&\2c\20std::__2::istreambuf_iterator>\20const&\29 +381:SkPath::SkPath\28SkPath\20const&\29 +382:SkMatrix::invert\28\29\20const +383:strncmp +384:skia_private::AutoSTMalloc<17ul\2c\20SkPoint\2c\20void>::~AutoSTMalloc\28\29 +385:icu_74::UVector32::addElement\28int\2c\20UErrorCode&\29 +386:FT_Stream_ExitFrame +387:skia::textlayout::ParagraphImpl::getUTF16Index\28unsigned\20long\29\20const +388:sk_sp::reset\28SkTypeface*\29 +389:SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29::operator\28\29\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29\20const +390:SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0::operator\28\29\28SkSL::FunctionDefinition\20const*\2c\20SkSL::FunctionDefinition\20const*\29\20const +391:SkSL::Expression::clone\28\29\20const +392:SkMatrix::mapPoint\28SkPoint\29\20const +393:strstr +394:skif::FilterResult::FilterResult\28\29 +395:hb_face_reference_table +396:SkPixmap::SkPixmap\28\29 +397:SkPathBuilder::~SkPathBuilder\28\29 +398:SkMatrix::mapRect\28SkRect*\2c\20SkRect\20const&\29\20const +399:SkDQuad::set\28SkPoint\20const*\29 +400:utext_next32_74 +401:std::__2::unique_ptr::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +402:skvx::Vec<4\2c\20int>\20skvx::operator&<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +403:skia_png_error +404:icu_74::UnicodeSet::contains\28int\29\20const +405:hb_buffer_t::unsafe_to_break\28unsigned\20int\2c\20unsigned\20int\29 +406:SkRect::outset\28float\2c\20float\29 +407:SkPathBuilder::detach\28SkMatrix\20const*\29 +408:SkPath::operator=\28SkPath\20const&\29 +409:SkMatrix::mapRect\28SkRect\20const&\29\20const +410:skgpu::ganesh::SurfaceDrawContext::addDrawOp\28GrClip\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::function\20const&\29 +411:\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16::Expand\28unsigned\20long\20long\29 +412:\28anonymous\20namespace\29::ColorTypeFilter_8888::Expand\28unsigned\20int\29 +413:\28anonymous\20namespace\29::ColorTypeFilter_16161616::Expand\28unsigned\20long\20long\29 +414:\28anonymous\20namespace\29::ColorTypeFilter_1010102::Expand\28unsigned\20long\20long\29 +415:SkStringPrintf\28char\20const*\2c\20...\29 +416:SkRecord::grow\28\29 +417:SkPictureRecord::addDraw\28DrawType\2c\20unsigned\20long*\29 +418:SkGetICULib\28\29 +419:std::__2::__cloc\28\29 +420:sscanf +421:skvx::Vec<4\2c\20int>\20skvx::operator!<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\29 +422:sk_malloc_throw\28unsigned\20long\2c\20unsigned\20long\29 +423:hb_blob_get_data_writable +424:SkRect::intersect\28SkRect\20const&\29 +425:SkPath::SkPath\28\29 +426:std::__2::unique_ptr::~unique_ptr\5babi:ne180100\5d\28\29 +427:std::__2::basic_string_view>::compare\28std::__2::basic_string_view>\29\20const +428:skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>::STArray\28skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&&\29 +429:skia_png_chunk_error +430:ft_mem_alloc +431:fml::KillProcess\28\29 +432:__multf3 +433:SkSL::GLSLCodeGenerator::writeLine\28std::__2::basic_string_view>\29 +434:SkRect::roundOut\28\29\20const +435:SkIRect::Intersects\28SkIRect\20const&\2c\20SkIRect\20const&\29 +436:OT::Layout::Common::Coverage::get_coverage\28unsigned\20int\29\20const +437:FT_Stream_EnterFrame +438:std::__2::unique_ptr>\20SkSL::evaluate_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +439:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20char\20const*\29 +440:skia_private::THashTable>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair\2c\20std::__2::unique_ptr>*\2c\20skia_private::THashMap>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair>::Hash\28std::__2::unique_ptr>*\20const&\29 +441:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +442:sk_sp::~sk_sp\28\29 +443:icu_74::UnicodeString::append\28char16_t\29 +444:SkSL::String::printf\28char\20const*\2c\20...\29 +445:SkPoint::length\28\29\20const +446:SkPathBuilder::SkPathBuilder\28\29 +447:SkNullBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +448:SkMatrix::getMapPtsProc\28\29\20const +449:SkMatrix::SkMatrix\28\29 +450:GrGLSLVaryingHandler::addVarying\28char\20const*\2c\20GrGLSLVarying*\2c\20GrGLSLVaryingHandler::Interpolation\29 +451:GrBackendFormats::AsGLFormat\28GrBackendFormat\20const&\29 +452:umtx_lock_74 +453:std::__2::locale::id::__get\28\29 +454:std::__2::locale::facet::facet\5babi:nn180100\5d\28unsigned\20long\29 +455:skgpu::UniqueKey::~UniqueKey\28\29 +456:hb_lazy_loader_t\2c\20hb_face_t\2c\2033u\2c\20hb_blob_t>::do_destroy\28hb_blob_t*\29 +457:bool\20hb_sanitize_context_t::check_range>\28OT::IntType\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +458:abort +459:SkString::operator=\28char\20const*\29 +460:SkMatrix::getType\28\29\20const +461:SkDPoint::approximatelyEqual\28SkDPoint\20const&\29\20const +462:SkChecksum::Hash32\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20int\29 +463:GrStyledShape::~GrStyledShape\28\29 +464:GrProcessorSet::GrProcessorSet\28GrPaint&&\29 +465:GrOpFlushState::bindPipelineAndScissorClip\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +466:GrGLExtensions::has\28char\20const*\29\20const +467:std::__2::locale::__imp::install\28std::__2::locale::facet*\2c\20long\29 +468:skia_png_muldiv +469:f_t_mutex\28\29 +470:dlrealloc +471:VP8GetValue +472:SkTDStorage::reserve\28int\29 +473:SkSL::RP::Builder::discard_stack\28int\29 +474:SkSL::Pool::FreeMemory\28void*\29 +475:SkMatrix::isIdentity\28\29\20const +476:SkArenaAlloc::makeBytesAlignedTo\28unsigned\20long\2c\20unsigned\20long\29 +477:GrOp::~GrOp\28\29 +478:GrGeometryProcessor::AttributeSet::initImplicit\28GrGeometryProcessor::Attribute\20const*\2c\20int\29 +479:void\20SkSafeUnref\28GrSurface*\29 +480:ures_close_74 +481:surface_setCallbackHandler +482:sk_sp::~sk_sp\28\29 +483:icu_74::StringPiece::StringPiece\28char\20const*\29 +484:hb_buffer_t::unsafe_to_concat\28unsigned\20int\2c\20unsigned\20int\29 +485:hb_bit_set_t::add\28unsigned\20int\29 +486:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +487:SkSL::PipelineStage::PipelineStageCodeGenerator::writeExpression\28SkSL::Expression\20const&\2c\20SkSL::OperatorPrecedence\29 +488:SkRegion::freeRuns\28\29 +489:GrShaderVar::GrShaderVar\28char\20const*\2c\20SkSLType\2c\20int\29 +490:std::__2::unique_ptr::~unique_ptr\5babi:nn180100\5d\28\29 +491:std::__2::enable_if::value\20&&\20sizeof\20\28unsigned\20int\29\20==\204\2c\20unsigned\20int>::type\20SkGoodHash::operator\28\29\28unsigned\20int\20const&\29\20const +492:skvx::Vec<8\2c\20unsigned\20short>\20skvx::mulhi<8>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +493:icu_74::UnicodeSet::~UnicodeSet\28\29 +494:hb_ot_map_builder_t::add_gsub_pause\28bool\20\28*\29\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29\29 +495:flutter::DlPaint::~DlPaint\28\29 +496:cf2_stack_pushFixed +497:__multi3 +498:SkSL::RP::Builder::binary_op\28SkSL::RP::BuilderOp\2c\20int\29 +499:SkPathBuilder::lineTo\28SkPoint\29 +500:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20SkFilterMode\2c\20SkMipmapMode\29 +501:GrProcessor::operator\20new\28unsigned\20long\2c\20unsigned\20long\29 +502:GrOp::GenID\28std::__2::atomic*\29 +503:GrImageInfo::GrImageInfo\28GrImageInfo&&\29 +504:GrGLSLVaryingHandler::addPassThroughAttribute\28GrShaderVar\20const&\2c\20char\20const*\2c\20GrGLSLVaryingHandler::Interpolation\29 +505:GrFragmentProcessor::registerChild\28std::__2::unique_ptr>\2c\20SkSL::SampleUsage\29 +506:std::__2::istreambuf_iterator>::operator*\5babi:nn180100\5d\28\29\20const +507:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +508:std::__2::__split_buffer&>::~__split_buffer\28\29 +509:skia_private::TArray::push_back_raw\28int\29 +510:icu_74::UnicodeString::doCharAt\28int\29\20const +511:SkSL::SymbolTable::addWithoutOwnershipOrDie\28SkSL::Symbol*\29 +512:SkSL::Nop::~Nop\28\29 +513:SkRect::contains\28SkRect\20const&\29\20const +514:SkRecords::FillBounds::updateSaveBounds\28SkRect\20const&\29 +515:SkPoint::normalize\28\29 +516:SkMatrix::rectStaysRect\28\29\20const +517:SkMatrix::postTranslate\28float\2c\20float\29 +518:SkJSONWriter::write\28char\20const*\2c\20unsigned\20long\29 +519:SkJSONWriter::appendBool\28char\20const*\2c\20bool\29 +520:GrSkSLFP::UniformPayloadSize\28SkRuntimeEffect\20const*\29 +521:GrSkSLFP::GrSkSLFP\28sk_sp\2c\20char\20const*\2c\20GrSkSLFP::OptFlags\29 +522:306 +523:std::__2::unique_ptr::unique_ptr\5babi:nn180100\5d\28char*\2c\20std::__2::__dependent_type\2c\20true>::__good_rval_ref_type\29 +524:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +525:std::__2::__throw_bad_function_call\5babi:ne180100\5d\28\29 +526:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +527:skgpu::UniqueKey::UniqueKey\28\29 +528:sk_sp::reset\28GrSurface*\29 +529:sk_sp::~sk_sp\28\29 +530:hb_buffer_t::merge_clusters\28unsigned\20int\2c\20unsigned\20int\29 +531:SkTDArray::push_back\28SkPoint\20const&\29 +532:SkStrokeRec::getStyle\28\29\20const +533:SkSL::fold_expression\28SkSL::Position\2c\20double\2c\20SkSL::Type\20const*\29 +534:SkSL::Type::MakeAliasType\28std::__2::basic_string_view>\2c\20SkSL::Type\20const&\29 +535:SkMatrix::mapRect\28SkRect*\29\20const +536:SkMatrix::Translate\28float\2c\20float\29 +537:GrTriangulator::Comparator::sweep_lt\28SkPoint\20const&\2c\20SkPoint\20const&\29\20const +538:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +539:skia_png_crc_read +540:machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>::operator=\28machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\20const&\29 +541:icu_74::Locale::~Locale\28\29 +542:flutter::ToSkMatrix\28impeller::Matrix\20const&\29 +543:VP8LReadBits +544:SkSpinlock::acquire\28\29 +545:SkSL::Parser::rangeFrom\28SkSL::Position\29 +546:SkSL::Parser::checkNext\28SkSL::Token::Kind\2c\20SkSL::Token*\29 +547:SkMatrix::invert\28SkMatrix*\29\20const +548:GrOpFlushState::bindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +549:ures_getByKey_74 +550:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28char\29 +551:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +552:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +553:hb_paint_funcs_t::pop_transform\28void*\29 +554:fma +555:cosf +556:SkTDStorage::append\28\29 +557:SkTDArray::append\28\29 +558:SkSL::RP::Builder::lastInstruction\28int\29 +559:SkMatrix::isScaleTranslate\28\29\20const +560:SkMatrix::Concat\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +561:SkColorSpace::MakeSRGB\28\29 +562:OT::ArrayOf\2c\20OT::IntType>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +563:347 +564:ucptrie_internalSmallIndex_74 +565:ucln_common_registerCleanup_74 +566:sk_malloc_flags\28unsigned\20long\2c\20unsigned\20int\29 +567:hb_buffer_t::reverse\28\29 +568:SkString::operator=\28SkString\20const&\29 +569:SkStrikeSpec::~SkStrikeSpec\28\29 +570:SkSL::Type::toCompound\28SkSL::Context\20const&\2c\20int\2c\20int\29\20const +571:SkSL::RP::Generator::binaryOp\28SkSL::Type\20const&\2c\20SkSL::RP::Generator::TypedOps\20const&\29 +572:SkRecords::FillBounds::adjustAndMap\28SkRect\2c\20SkPaint\20const*\29\20const +573:SkMatrix::preConcat\28SkMatrix\20const&\29 +574:SkImageGenerator::onQueryYUVAInfo\28SkYUVAPixmapInfo::SupportedDataTypes\20const&\2c\20SkYUVAPixmapInfo*\29\20const +575:SkColorSpaceXformSteps::SkColorSpaceXformSteps\28SkColorSpace\20const*\2c\20SkAlphaType\2c\20SkColorSpace\20const*\2c\20SkAlphaType\29 +576:OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::operator\28\29\28void\20const*\29\20const +577:GrStyle::isSimpleFill\28\29\20const +578:GrGLSLVaryingHandler::emitAttributes\28GrGeometryProcessor\20const&\29 +579:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::setIndices\28\29 +580:std::__2::unique_ptr::reset\5babi:nn180100\5d\28unsigned\20char*\29 +581:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +582:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +583:std::__2::__unique_if::__unique_array_unknown_bound\20std::__2::make_unique\5babi:ne180100\5d\28unsigned\20long\29 +584:skvx::Vec<8\2c\20unsigned\20short>\20skvx::operator+<8\2c\20unsigned\20short>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +585:skgpu::VertexColor::set\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\29 +586:skgpu::ResourceKey::Builder::finish\28\29 +587:sk_sp::~sk_sp\28\29 +588:icu_74::UnicodeSet::UnicodeSet\28\29 +589:hb_draw_funcs_t::emit_line_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\29 +590:ft_validator_error +591:SkSL::Parser::error\28SkSL::Token\2c\20std::__2::basic_string_view>\29 +592:SkSL::ConstantFolder::GetConstantValueForVariable\28SkSL::Expression\20const&\29 +593:SkPictureRecord::addPaintPtr\28SkPaint\20const*\29 +594:SkImageInfo::minRowBytes\28\29\20const +595:SkGlyph::rowBytes\28\29\20const +596:SkDCubic::set\28SkPoint\20const*\29 +597:SkBitmap::SkBitmap\28SkBitmap\20const&\29 +598:GrSurfaceProxy::backingStoreDimensions\28\29\20const +599:GrProgramInfo::visitFPProxies\28std::__2::function\20const&\29\20const +600:GrMeshDrawOp::createProgramInfo\28GrMeshDrawTarget*\29 +601:GrGpu::handleDirtyContext\28\29 +602:FT_Stream_ReadFields +603:FT_Stream_ReadByte +604:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28\29 +605:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_size\5babi:nn180100\5d\28unsigned\20long\29 +606:skvx::Vec<4\2c\20float>\20\28anonymous\20namespace\29::add_121>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +607:skif::FilterResult::operator=\28skif::FilterResult&&\29 +608:skif::Context::~Context\28\29 +609:skia_private::TArray::Allocate\28int\2c\20double\29 +610:skia_private::TArray\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +611:icu_74::UnicodeString::setToBogus\28\29 +612:icu_74::UnicodeSet::add\28int\2c\20int\29 +613:hb_draw_funcs_t::start_path\28void*\2c\20hb_draw_state_t&\29 +614:SkWriter32::reserve\28unsigned\20long\29 +615:SkTSect::pointLast\28\29\20const +616:SkStrokeRec::isHairlineStyle\28\29\20const +617:SkSL::Type::MakeVectorType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\29 +618:SkRect::join\28SkRect\20const&\29 +619:SkPathBuilder::moveTo\28SkPoint\29 +620:SkPaint::setBlendMode\28SkBlendMode\29 +621:SkImageGenerator::onIsValid\28SkRecorder*\29\20const +622:OT::VarSizedBinSearchArrayOf>::get_length\28\29\20const +623:FT_Stream_GetULong +624:target_from_texture_type\28GrTextureType\29 +625:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +626:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator+<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +627:skvx::Vec<4\2c\20unsigned\20int>\20skvx::operator+<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +628:skia::textlayout::TextStyle::TextStyle\28skia::textlayout::TextStyle\20const&\29 +629:skia::textlayout::OneLineShaper::RunBlock::operator=\28skia::textlayout::OneLineShaper::RunBlock&&\29 +630:sk_srgb_singleton\28\29 +631:png_icc_profile_error +632:impeller::Matrix::operator*\28impeller::TPoint\20const&\29\20const +633:icu_74::UnicodeSet::compact\28\29 +634:hb_font_t::get_nominal_glyph\28unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\29 +635:flutter::DlSrgbToLinearGammaColorFilter::type\28\29\20const +636:flutter::DlPaint::DlPaint\28\29 +637:flutter::DisplayListBuilder::SetAttributesFromPaint\28flutter::DlPaint\20const&\2c\20flutter::DisplayListAttributeFlags\29 +638:flutter::DisplayListBuilder::PaintResult\28flutter::DlPaint\20const&\2c\20flutter::DisplayListAttributeFlags\29 +639:canonicalize_identity\28skcms_Curve*\29 +640:_hb_next_syllable\28hb_buffer_t*\2c\20unsigned\20int\29 +641:SkSL::TProgramVisitor::visitStatement\28SkSL::Statement\20const&\29 +642:SkSL::RP::Program::makeStages\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSpan\2c\20SkSL::RP::Program::SlotData\20const&\29\20const::$_2::operator\28\29\28\29\20const +643:SkSL::ConstructorCompound::MakeFromConstants\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20double\20const*\29 +644:SkMatrix::Scale\28float\2c\20float\29 +645:SkMatrix::MakeAll\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +646:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_2::operator\28\29\28SkRasterPipelineOp\2c\20SkRasterPipelineOp\2c\20\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +647:SkImageInfo::operator=\28SkImageInfo\20const&\29 +648:GrFragmentProcessor::ProgramImpl::invokeChild\28int\2c\20GrFragmentProcessor::ProgramImpl::EmitArgs&\2c\20std::__2::basic_string_view>\29 +649:GrCaps::getDefaultBackendFormat\28GrColorType\2c\20skgpu::Renderable\29\20const +650:FT_Stream_ReleaseFrame +651:DefaultGeoProc::Impl::~Impl\28\29 +652:void\20std::__2::unique_ptr>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot*\2c\200>\28skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::Slot*\29 +653:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +654:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +655:std::__2::ctype\20const&\20std::__2::use_facet\5babi:ne180100\5d>\28std::__2::locale\20const&\29 +656:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:nn180100\5d\28\29\20const +657:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +658:skia::textlayout::TextStyle::~TextStyle\28\29 +659:skcpu::Draw::~Draw\28\29 +660:out +661:icu_74::UnicodeString::char32At\28int\29\20const +662:flutter::DisplayListBuilder::UpdateLayerResult\28flutter::DisplayListBuilder::OpResult\2c\20bool\29 +663:cf2_stack_popInt +664:WebPSafeMalloc +665:Skwasm::sp_wrapper::sp_wrapper\28std::__2::shared_ptr\29 +666:SkSemaphore::~SkSemaphore\28\29 +667:SkSL::Type::coerceExpression\28std::__2::unique_ptr>\2c\20SkSL::Context\20const&\29\20const +668:SkSL::Type::MakeGenericType\28char\20const*\2c\20SkSpan\2c\20SkSL::Type\20const*\29 +669:SkSL::RP::SlotManager::getVariableSlots\28SkSL::Variable\20const&\29 +670:SkRGBA4f<\28SkAlphaType\292>::operator!=\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +671:SkPathStroker::lineTo\28SkPoint\20const&\2c\20SkPath::Iter\20const*\29 +672:SkPath::Iter::next\28\29 +673:SkDCubic::ptAtT\28double\29\20const +674:SkBlitter::~SkBlitter\28\29 +675:SkBitmap::tryAllocPixels\28SkImageInfo\20const&\29 +676:GrShaderVar::operator=\28GrShaderVar&&\29 +677:GrProcessor::operator\20delete\28void*\29 +678:GrImageInfo::GrImageInfo\28SkImageInfo\20const&\29 +679:FT_Outline_Translate +680:uhash_close_74 +681:std::__2::char_traits::assign\5babi:nn180100\5d\28char&\2c\20char\20const&\29 +682:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +683:std::__2::basic_ostream>&\20std::__2::operator<<\5babi:ne180100\5d>\28std::__2::basic_ostream>&\2c\20char\20const*\29 +684:std::__2::__check_grouping\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int&\29 +685:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +686:skvx::Vec<4\2c\20int>\20skvx::operator|<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +687:skia_private::THashMap::find\28SkSL::FunctionDeclaration\20const*\20const&\29\20const +688:pad +689:icu_74::UnicodeString::UnicodeString\28char16_t\20const*\29 +690:hb_buffer_t::unsafe_to_break_from_outbuffer\28unsigned\20int\2c\20unsigned\20int\29 +691:ft_mem_qalloc +692:flutter::DlPaint::DlPaint\28flutter::DlPaint\20const&\29 +693:__ashlti3 +694:SkTCoincident::setPerp\28SkTCurve\20const&\2c\20double\2c\20SkDPoint\20const&\2c\20SkTCurve\20const&\29 +695:SkString::data\28\29 +696:SkSL::Type::MakeMatrixType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type\20const&\2c\20int\2c\20signed\20char\29 +697:SkSL::TProgramVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +698:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression\20const&\29 +699:SkSL::Parser::nextToken\28\29 +700:SkSL::Operator::tightOperatorName\28\29\20const +701:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29::$_0::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +702:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29 +703:SkPaint::setColor\28unsigned\20int\29 +704:SkMatrix::postConcat\28SkMatrix\20const&\29 +705:SkImageInfo::operator=\28SkImageInfo&&\29 +706:SkIRect::intersect\28SkIRect\20const&\2c\20SkIRect\20const&\29 +707:SkDVector::crossCheck\28SkDVector\20const&\29\20const +708:SkCanvas::internalQuickReject\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29 +709:SkBitmapDevice::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +710:SkAAClipBlitterWrapper::~SkAAClipBlitterWrapper\28\29 +711:OT::hb_ot_apply_context_t::init_iters\28\29 +712:GrStyledShape::asPath\28\29\20const +713:GrStyle::~GrStyle\28\29 +714:GrSimpleMeshDrawOpHelper::~GrSimpleMeshDrawOpHelper\28\29 +715:GrSimpleMeshDrawOpHelper::visitProxies\28std::__2::function\20const&\29\20const +716:GrShape::reset\28\29 +717:GrShape::bounds\28\29\20const +718:GrShaderVar::appendDecl\28GrShaderCaps\20const*\2c\20SkString*\29\20const +719:GrQuad::MakeFromRect\28SkRect\20const&\2c\20SkMatrix\20const&\29 +720:GrOpFlushState::drawMesh\28GrSimpleMesh\20const&\29 +721:GrColorInfo::GrColorInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\29 +722:GrAAConvexTessellator::Ring::index\28int\29\20const +723:DefaultGeoProc::~DefaultGeoProc\28\29 +724:508 +725:uhash_put_74 +726:std::__2::vector\2c\20std::__2::allocator>>::~vector\5babi:ne180100\5d\28\29 +727:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +728:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock&\2c\20skia::textlayout::OneLineShaper::RunBlock&\29 +729:std::__2::basic_string\2c\20std::__2::allocator>::__set_short_size\5babi:nn180100\5d\28unsigned\20long\29 +730:std::__2::__compressed_pair_elem::__compressed_pair_elem\5babi:nn180100\5d\28void\20\28*&&\29\28void*\29\29 +731:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29\20\28.7506\29 +732:skif::Context::Context\28skif::Context\20const&\29 +733:skia_png_chunk_report +734:skgpu::ResourceKey::operator==\28skgpu::ResourceKey\20const&\29\20const +735:icu_74::UnicodeString::getBuffer\28\29\20const +736:icu_74::UnicodeSet::add\28int\29 +737:icu_74::Locale::getDefault\28\29 +738:icu_74::CharString::append\28icu_74::CharString\20const&\2c\20UErrorCode&\29 +739:cff2_path_procs_extents_t::curve\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +740:cff2_path_param_t::cubic_to\28CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +741:cff1_path_procs_extents_t::curve\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +742:cff1_path_param_t::cubic_to\28CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +743:_hb_glyph_info_get_modified_combining_class\28hb_glyph_info_t\20const*\29 +744:SkTDArray::push_back\28unsigned\20int\20const&\29 +745:SkSL::FunctionDeclaration::description\28\29\20const +746:SkRasterPipeline::extend\28SkRasterPipeline\20const&\29 +747:SkPixmap::operator=\28SkPixmap\20const&\29 +748:SkPathBuilder::lineTo\28float\2c\20float\29 +749:SkPathBuilder::conicTo\28SkPoint\2c\20SkPoint\2c\20float\29 +750:SkPaintToGrPaint\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrPaint*\29 +751:SkOpPtT::contains\28SkOpPtT\20const*\29\20const +752:SkMatrixPriv::CheapEqual\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +753:SkImageInfo::MakeA8\28int\2c\20int\29 +754:SkColorSpaceXformSteps::apply\28float*\29\20const +755:OT::hb_paint_context_t::recurse\28OT::Paint\20const&\29 +756:GrTextureProxy::mipmapped\28\29\20const +757:GrShaderVar::GrShaderVar\28char\20const*\2c\20SkSLType\2c\20GrShaderVar::TypeModifier\29 +758:GrMatrixEffect::Make\28SkMatrix\20const&\2c\20std::__2::unique_ptr>\29 +759:GrGLGpu::setTextureUnit\28int\29 +760:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::~Impl\28\29 +761:GrCPixmap::GrCPixmap\28GrImageInfo\2c\20void\20const*\2c\20unsigned\20long\29 +762:GrAppliedClip::~GrAppliedClip\28\29 +763:FT_Stream_ReadULong +764:FT_Load_Glyph +765:CFF::cff_stack_t::pop\28\29 +766:void\20SkOnce::operator\28\29*\29\2c\20SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*>\28void\20\28&\29\28SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*\29\2c\20SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*&&\29 +767:u_strlen_74 +768:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +769:std::__2::numpunct::thousands_sep\5babi:nn180100\5d\28\29\20const +770:std::__2::numpunct::grouping\5babi:nn180100\5d\28\29\20const +771:std::__2::ctype\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +772:std::__2::basic_string\2c\20std::__2::allocator>::__move_assign\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::integral_constant\29 +773:skia_private::TArray::push_back\28int\20const&\29 +774:skgpu::ResourceKey::Builder::Builder\28skgpu::ResourceKey*\2c\20unsigned\20int\2c\20int\29 +775:sk_sp::~sk_sp\28\29 +776:sinf +777:rewind\28GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +778:icu_74::UnicodeString::UnicodeString\28icu_74::UnicodeString\20const&\29 +779:icu_74::ReorderingBuffer::appendZeroCC\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29 +780:icu_74::PossibleWord::candidates\28UText*\2c\20icu_74::DictionaryMatcher*\2c\20int\29 +781:icu_74::Normalizer2Impl::getNorm16\28int\29\20const +782:hb_buffer_t::move_to\28unsigned\20int\29 +783:fmodf +784:_output_with_dotted_circle\28hb_buffer_t*\29 +785:__memcpy +786:SkTSpan::pointLast\28\29\20const +787:SkTDStorage::resize\28int\29 +788:SkSafeMath::addInt\28int\2c\20int\29 +789:SkSL::Parser::rangeFrom\28SkSL::Token\29 +790:SkSL::Parser::error\28SkSL::Position\2c\20std::__2::basic_string_view>\29 +791:SkRect::BoundsOrEmpty\28SkSpan\29 +792:SkPath::Iter::setPath\28SkPath\20const&\2c\20bool\29 +793:SkNullBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +794:SkMatrix::mapPoints\28SkSpan\29\20const +795:SkDPoint::ApproximatelyEqual\28SkPoint\20const&\2c\20SkPoint\20const&\29 +796:SkCanvas::save\28\29 +797:SkBlockAllocator::reset\28\29 +798:GrSimpleMeshDrawOpHelperWithStencil::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20bool*\29 +799:GrGeometryProcessor::ProgramImpl::SetTransform\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrResourceHandle\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix*\29 +800:GrGLSLVertexGeoBuilder::insertFunction\28char\20const*\29 +801:FT_Stream_Skip +802:FT_Stream_ExtractFrame +803:Cr_z_crc32 +804:AAT::StateTable::get_entry\28int\2c\20unsigned\20int\29\20const +805:void\20std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrGLCaps::ColorTypeInfo*\29 +806:utext_current32_74 +807:uhash_get_74 +808:strncpy +809:std::__2::ctype::widen\5babi:nn180100\5d\28char\29\20const +810:std::__2::__unique_if::__unique_array_unknown_bound\20std::__2::make_unique\5babi:ne180100\5d\28unsigned\20long\29 +811:std::__2::__throw_bad_optional_access\5babi:ne180100\5d\28\29 +812:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +813:skif::LayerSpace::outset\28skif::LayerSpace\20const&\29 +814:skia_private::TArray::checkRealloc\28int\2c\20double\29 +815:skgpu::tess::StrokeIterator::enqueue\28skgpu::tess::StrokeIterator::Verb\2c\20SkPoint\20const*\2c\20float\20const*\29 +816:skgpu::ganesh::SurfaceFillContext::getOpsTask\28\29 +817:powf +818:icu_74::umtx_initOnce\28icu_74::UInitOnce&\2c\20void\20\28*\29\28UErrorCode&\29\2c\20UErrorCode&\29 +819:icu_74::Hashtable::~Hashtable\28\29 +820:hb_draw_funcs_t::emit_close_path\28void*\2c\20hb_draw_state_t&\29 +821:hb_buffer_t::unsafe_to_concat_from_outbuffer\28unsigned\20int\2c\20unsigned\20int\29 +822:hb_bit_set_t::get\28unsigned\20int\29\20const +823:hb_bit_page_t::add\28unsigned\20int\29 +824:flutter::DlMatrixColorSourceBase::matrix_ptr\28\29\20const +825:flutter::DlLinearToSrgbGammaColorFilter::size\28\29\20const +826:__addtf3 +827:SkSL::RP::Builder::push_constant_i\28int\2c\20int\29 +828:SkSL::RP::Builder::label\28int\29 +829:SkPixmap::SkPixmap\28SkPixmap\20const&\29 +830:SkPathBuilder::quadTo\28SkPoint\2c\20SkPoint\29 +831:SkPathBuilder::close\28\29 +832:SkPaint::setColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\29 +833:SkPaint::asBlendMode\28\29\20const +834:SkImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +835:SkDynamicMemoryWStream::write\28void\20const*\2c\20unsigned\20long\29 +836:SkCanvas::concat\28SkMatrix\20const&\29 +837:SkCanvas::aboutToDraw\28SkPaint\20const&\2c\20SkRect\20const*\29 +838:OT::hb_ot_apply_context_t::skipping_iterator_t::next\28unsigned\20int*\29 +839:GrSkSLFP::addChild\28std::__2::unique_ptr>\2c\20bool\29 +840:GrProcessorSet::~GrProcessorSet\28\29 +841:GrGeometryProcessor::Attribute&\20skia_private::TArray::emplace_back\28char\20const\20\28&\29\20\5b10\5d\2c\20GrVertexAttribType&&\2c\20SkSLType&&\29 +842:GrGLGpu::clearErrorsAndCheckForOOM\28\29 +843:GrGLGpu::bindBuffer\28GrGpuBufferType\2c\20GrBuffer\20const*\29 +844:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +845:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20float\20const*\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20float\20const*\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20float\20const*\29 +846:GrFragmentProcessor::ProgramImpl::invokeChild\28int\2c\20char\20const*\2c\20char\20const*\2c\20GrFragmentProcessor::ProgramImpl::EmitArgs&\2c\20std::__2::basic_string_view>\29 +847:CFF::arg_stack_t::pop_int\28\29 +848:void\20SkSafeUnref\28SharedGenerator*\29 +849:udata_close_74 +850:ubidi_getParaLevelAtIndex_74 +851:std::__2::char_traits::copy\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +852:std::__2::basic_string\2c\20std::__2::allocator>::begin\5babi:nn180100\5d\28\29 +853:std::__2::basic_string\2c\20std::__2::allocator>::__is_long\5babi:nn180100\5d\28\29\20const +854:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +855:std::__2::__libcpp_snprintf_l\28char*\2c\20unsigned\20long\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +856:std::__2::__function::__value_func::__value_func\5babi:ne180100\5d\28std::__2::__function::__value_func&&\29 +857:skia_private::THashTable>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair\2c\20std::__2::unique_ptr>*\2c\20skia_private::THashMap>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>*\2c\20std::__2::unique_ptr>*\2c\20SkGoodHash>::Pair&&\29 +858:skia::textlayout::Cluster::run\28\29\20const +859:skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::AddTrianglesWhenChopping\2c\20skgpu::tess::DiscardFlatCurves>::accountForCurve\28float\29 +860:skgpu::ganesh::SurfaceContext::PixelTransferResult::~PixelTransferResult\28\29 +861:skgpu::ganesh::AsView\28GrRecordingContext*\2c\20SkImage\20const*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +862:is_equal\28std::type_info\20const*\2c\20std::type_info\20const*\2c\20bool\29 +863:icu_74::UnicodeString::pinIndices\28int&\2c\20int&\29\20const +864:icu_74::UnicodeString::UnicodeString\28signed\20char\2c\20icu_74::ConstChar16Ptr\2c\20int\29 +865:icu_74::Normalizer2Impl::norm16HasCompBoundaryAfter\28unsigned\20short\2c\20signed\20char\29\20const +866:hb_ot_map_t::get_1_mask\28unsigned\20int\29\20const +867:hb_font_get_glyph +868:hb_bit_page_t::init0\28\29 +869:flutter::DlColor::DlColor\28unsigned\20int\29 +870:cff_index_get_sid_string +871:_hb_font_funcs_set_middle\28hb_font_funcs_t*\2c\20void*\2c\20void\20\28*\29\28void*\29\29 +872:__floatsitf +873:VP8YuvToRgb +874:VP8GetBit.8612 +875:VP8GetBit +876:SkWriter32::writeScalar\28float\29 +877:SkTDArray<\28anonymous\20namespace\29::YOffset>::append\28\29 +878:SkSL::RP::Generator::pushVectorizedExpression\28SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +879:SkSL::RP::Builder::swizzle\28int\2c\20SkSpan\29 +880:SkRegion::setRect\28SkIRect\20const&\29 +881:SkRect::roundOut\28SkIRect*\29\20const +882:SkRasterClip::~SkRasterClip\28\29 +883:SkPath::makeTransform\28SkMatrix\20const&\29\20const +884:SkMatrix::getMaxScale\28\29\20const +885:SkM44::setConcat\28SkM44\20const&\2c\20SkM44\20const&\29 +886:SkJSONWriter::appendHexU32\28char\20const*\2c\20unsigned\20int\29 +887:SkIRect::makeOutset\28int\2c\20int\29\20const +888:SkDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +889:SkBlender::Mode\28SkBlendMode\29 +890:SkBitmap::setInfo\28SkImageInfo\20const&\2c\20unsigned\20long\29 +891:SkArenaAlloc::SkArenaAlloc\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +892:OT::hb_ot_apply_context_t::skipping_iterator_t::reset\28unsigned\20int\29 +893:GrMeshDrawTarget::allocMesh\28\29 +894:GrGLGpu::bindTextureToScratchUnit\28unsigned\20int\2c\20int\29 +895:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::~SwizzleFragmentProcessor\28\29 +896:GrCaps::getReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +897:GrBackendFormat::GrBackendFormat\28GrBackendFormat\20const&\29 +898:CFF::cff1_cs_opset_t::check_width\28unsigned\20int\2c\20CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +899:CFF::arg_stack_t::pop_uint\28\29 +900:AutoFTAccess::AutoFTAccess\28SkTypeface_FreeType\20const*\29 +901:utext_previous32_74 +902:u_terminateUChars_74 +903:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +904:std::__2::unique_ptr::reset\5babi:ne180100\5d\28unsigned\20char*\29 +905:std::__2::pair::type\2c\20std::__2::__unwrap_ref_decay::type>\20std::__2::make_pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +906:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20char\29\20const +907:std::__2::basic_string\2c\20std::__2::allocator>::__set_long_cap\5babi:nn180100\5d\28unsigned\20long\29 +908:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +909:skia_private::TArray>\2c\20true>::reserve_exact\28int\29 +910:skia_private::TArray::push_back\28bool&&\29 +911:skia_png_get_uint_32 +912:skia::textlayout::OneLineShaper::clusterIndex\28unsigned\20long\29 +913:skgpu::ganesh::SurfaceDrawContext::chooseAAType\28GrAA\29 +914:skgpu::UniqueKey::GenerateDomain\28\29 +915:res_getStringNoTrace_74 +916:impeller::Matrix::Multiply\28impeller::Matrix\20const&\29\20const +917:icu_74::UnicodeString::operator=\28icu_74::UnicodeString\20const&\29 +918:icu_74::UnicodeSet::releasePattern\28\29 +919:icu_74::MlBreakEngine::initKeyValue\28UResourceBundle*\2c\20char\20const*\2c\20char\20const*\2c\20icu_74::Hashtable&\2c\20UErrorCode&\29 +920:icu_74::Hashtable::get\28icu_74::UnicodeString\20const&\29\20const +921:icu_74::ByteSinkUtil::appendUnchanged\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::ByteSink&\2c\20unsigned\20int\2c\20icu_74::Edits*\2c\20UErrorCode&\29 +922:icu_74::BMPSet::containsSlow\28int\2c\20int\2c\20int\29\20const +923:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\2c\20hb_pair_t>>::operator+\28unsigned\20int\29\20const +924:hb_buffer_t::sync_so_far\28\29 +925:hb_buffer_t::sync\28\29 +926:hb_bit_set_t::add_range\28unsigned\20int\2c\20unsigned\20int\29 +927:flutter::DisplayListBuilder::AccumulateOpBounds\28impeller::TRect\20const&\2c\20flutter::DisplayListAttributeFlags\29 +928:compute_side\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +929:cff_parse_num +930:bool\20OT::Layout::Common::Coverage::collect_coverage\28hb_set_digest_t*\29\20const +931:VP8YuvToBgr +932:VP8LAddPixels +933:SkWriter32::writeRect\28SkRect\20const&\29 +934:SkSL::Type::clone\28SkSL::Context\20const&\2c\20SkSL::SymbolTable*\29\20const +935:SkSL::SymbolTable::find\28std::__2::basic_string_view>\29\20const +936:SkSL::RP::Generator::writeStatement\28SkSL::Statement\20const&\29 +937:SkSL::RP::Builder::unary_op\28SkSL::RP::BuilderOp\2c\20int\29 +938:SkSL::Parser::operatorRight\28SkSL::Parser::AutoDepth&\2c\20SkSL::OperatorKind\2c\20std::__2::unique_ptr>\20\28SkSL::Parser::*\29\28\29\2c\20std::__2::unique_ptr>&\29 +939:SkSL::Parser::expression\28\29 +940:SkSL::Nop::Make\28\29 +941:SkRegion::Cliperator::next\28\29 +942:SkRegion::Cliperator::Cliperator\28SkRegion\20const&\2c\20SkIRect\20const&\29 +943:SkRecords::FillBounds::pushControl\28\29 +944:SkPathPriv::Iterate::Iterate\28SkPath\20const&\29 +945:SkPathBuilder::cubicTo\28SkPoint\2c\20SkPoint\2c\20SkPoint\29 +946:SkPath::RangeIter::operator++\28\29 +947:SkAutoConicToQuads::computeQuads\28SkPoint\20const*\2c\20float\2c\20float\29 +948:SkArenaAlloc::~SkArenaAlloc\28\29 +949:SkAAClip::setEmpty\28\29 +950:OT::hb_ot_apply_context_t::~hb_ot_apply_context_t\28\29 +951:OT::hb_ot_apply_context_t::hb_ot_apply_context_t\28unsigned\20int\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +952:GrTriangulator::Line::intersect\28GrTriangulator::Line\20const&\2c\20SkPoint*\29\20const +953:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkISize\20const&\29 +954:GrGpuBuffer::unmap\28\29 +955:GrGeometryProcessor::ProgramImpl::WriteLocalCoord\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20GrShaderVar\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +956:GrGeometryProcessor::ProgramImpl::ComputeMatrixKey\28GrShaderCaps\20const&\2c\20SkMatrix\20const&\29 +957:GrFragmentProcessor::GrFragmentProcessor\28GrFragmentProcessor\20const&\29 +958:742 +959:void\20SkSafeUnref\28SkMipmap*\29 +960:ures_getByKeyWithFallback_74 +961:ubidi_getMemory_74 +962:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +963:std::__2::vector>::erase\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\29 +964:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +965:std::__2::numpunct::truename\5babi:nn180100\5d\28\29\20const +966:std::__2::numpunct::falsename\5babi:nn180100\5d\28\29\20const +967:std::__2::numpunct::decimal_point\5babi:nn180100\5d\28\29\20const +968:std::__2::moneypunct::do_grouping\28\29\20const +969:std::__2::ctype::is\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29\20const +970:std::__2::basic_string\2c\20std::__2::allocator>::empty\5babi:nn180100\5d\28\29\20const +971:std::__2::basic_string\2c\20std::__2::allocator>::__init\28char\20const*\2c\20unsigned\20long\29 +972:std::__2::__variant_detail::__dtor\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29 +973:snprintf +974:skvx::Vec<4\2c\20float>\20skvx::operator-<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +975:skia_private::TArray::checkRealloc\28int\2c\20double\29 +976:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +977:skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>::STArray\28skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&&\29 +978:skia_png_reciprocal +979:skia_png_malloc_warn +980:skia::textlayout::\28anonymous\20namespace\29::relax\28float\29 +981:skgpu::ganesh::SurfaceContext::readPixels\28GrDirectContext*\2c\20GrPixmap\2c\20SkIPoint\29 +982:skgpu::Swizzle::RGBA\28\29 +983:skcpu::Draw::Draw\28\29 +984:skcms_TransferFunction_invert +985:sk_sp::reset\28SkData*\29 +986:sk_sp::~sk_sp\28\29 +987:skData_getConstPointer +988:operator==\28SkIRect\20const&\2c\20SkIRect\20const&\29 +989:icu_74::BMPSet::~BMPSet\28\29_13864 +990:hb_user_data_array_t::fini\28\29 +991:hb_sanitize_context_t::end_processing\28\29 +992:hb_draw_funcs_t::emit_quadratic_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\2c\20float\2c\20float\29 +993:flutter::DlPath::~DlPath\28\29 +994:flutter::DisplayListBuilder::checkForDeferredSave\28\29 +995:crc32_z +996:WebPSafeCalloc +997:VP8YuvToRgba4444 +998:VP8YuvToRgba +999:VP8YuvToRgb565 +1000:VP8YuvToBgra +1001:VP8YuvToArgb +1002:T_CString_toLowerCase_74 +1003:SkTSect::SkTSect\28SkTCurve\20const&\29 +1004:SkString::equals\28SkString\20const&\29\20const +1005:SkSL::String::Separator\28\29 +1006:SkSL::RP::Generator::pushIntrinsic\28SkSL::RP::BuilderOp\2c\20SkSL::Expression\20const&\29 +1007:SkSL::ProgramConfig::strictES2Mode\28\29\20const +1008:SkSL::Parser::layoutInt\28\29 +1009:SkRegion::setEmpty\28\29 +1010:SkRRect::MakeOval\28SkRect\20const&\29 +1011:SkRGBA4f<\28SkAlphaType\293>::FromColor\28unsigned\20int\29 +1012:SkPathRef::Editor::Editor\28sk_sp*\2c\20int\2c\20int\2c\20int\29 +1013:SkMipmap::ComputeLevelCount\28int\2c\20int\29 +1014:SkMatrix::isSimilarity\28float\29\20const +1015:SkImageInfo::Make\28int\2c\20int\2c\20SkColorType\2c\20SkAlphaType\29 +1016:SkIRect::makeOffset\28int\2c\20int\29\20const +1017:SkDQuad::ptAtT\28double\29\20const +1018:SkDLine::nearPoint\28SkDPoint\20const&\2c\20bool*\29\20const +1019:SkDConic::ptAtT\28double\29\20const +1020:SkChopQuadAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +1021:SkBaseShadowTessellator::appendTriangle\28unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +1022:SkAutoCanvasRestore::~SkAutoCanvasRestore\28\29 +1023:SafeDecodeSymbol +1024:OT::cmap::find_subtable\28unsigned\20int\2c\20unsigned\20int\29\20const +1025:GrTriangulator::EdgeList::remove\28GrTriangulator::Edge*\29 +1026:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_4::operator\28\29\28char\20const*\29\20const +1027:GrSimpleMeshDrawOpHelper::isCompatible\28GrSimpleMeshDrawOpHelper\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +1028:GrShaderVar::GrShaderVar\28GrShaderVar\20const&\29 +1029:GrQuad::writeVertex\28int\2c\20skgpu::VertexWriter&\29\20const +1030:GrOpFlushState::bindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +1031:GrGLSLShaderBuilder::getMangledFunctionName\28char\20const*\29 +1032:GrGLSLShaderBuilder::appendTextureLookup\28GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +1033:GrGLGpu::getErrorAndCheckForOOM\28\29 +1034:GrColorInfo::GrColorInfo\28SkColorInfo\20const&\29 +1035:GrAAConvexTessellator::addTri\28int\2c\20int\2c\20int\29 +1036:FT_Get_Module +1037:AlmostBequalUlps\28double\2c\20double\29 +1038:AAT::StateTable::EntryData>::get_entry\28int\2c\20unsigned\20int\29\20const +1039:u_strchr_74 +1040:tt_face_get_name +1041:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +1042:std::__2::vector>::push_back\5babi:ne180100\5d\28unsigned\20int\20const&\29 +1043:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1044:std::__2::shared_ptr::operator=\5babi:ne180100\5d\28std::__2::shared_ptr&&\29 +1045:std::__2::__variant_detail::__dtor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29 +1046:std::__2::__libcpp_locale_guard::~__libcpp_locale_guard\5babi:nn180100\5d\28\29 +1047:std::__2::__libcpp_locale_guard::__libcpp_locale_guard\5babi:nn180100\5d\28__locale_struct*&\29 +1048:skvx::Vec<4\2c\20float>&\20skvx::operator+=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.6381\29 +1049:skvx::Vec<2\2c\20float>\20skvx::max<2\2c\20float>\28skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +1050:skif::FilterResult::FilterResult\28skif::FilterResult\20const&\29 +1051:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Hash\28SkImageFilter\20const*\20const&\29 +1052:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +1053:skcpu::Draw::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29\20const +1054:sk_sp&\20skia_private::TArray\2c\20true>::emplace_back>\28sk_sp&&\29 +1055:round +1056:qsort +1057:powf_ +1058:icu_74::UnicodeString::setLength\28int\29 +1059:icu_74::UVector::~UVector\28\29 +1060:icu_74::Normalizer2Impl::getRawNorm16\28int\29\20const +1061:icu_74::Locale::Locale\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +1062:icu_74::CharString::CharString\28char\20const*\2c\20int\2c\20UErrorCode&\29 +1063:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +1064:hb_indic_would_substitute_feature_t::would_substitute\28unsigned\20int\20const*\2c\20unsigned\20int\2c\20hb_face_t*\29\20const +1065:hb_font_t::get_glyph_h_advance\28unsigned\20int\29 +1066:hb_cache_t<15u\2c\208u\2c\207u\2c\20true>::set\28unsigned\20int\2c\20unsigned\20int\29 +1067:getenv +1068:ft_module_get_service +1069:flutter::DlLinearToSrgbGammaColorFilter::type\28\29\20const +1070:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\29\20const +1071:__sindf +1072:__shlim +1073:__cosdf +1074:SkUTF::NextUTF8\28char\20const**\2c\20char\20const*\29 +1075:SkTDStorage::removeShuffle\28int\29 +1076:SkSurface_Base::getCachedCanvas\28\29 +1077:SkShaderBase::SkShaderBase\28\29 +1078:SkSL::evaluate_pairwise_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +1079:SkSL::StringStream::str\28\29\20const +1080:SkSL::RP::Generator::makeLValue\28SkSL::Expression\20const&\2c\20bool\29 +1081:SkSL::Parser::expressionOrPoison\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +1082:SkSL::GLSLCodeGenerator::writeIdentifier\28std::__2::basic_string_view>\29 +1083:SkSL::GLSLCodeGenerator::getTypeName\28SkSL::Type\20const&\29 +1084:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +1085:SkRect::round\28\29\20const +1086:SkPath::moveTo\28float\2c\20float\29 +1087:SkPath::isConvex\28\29\20const +1088:SkPaint::getAlpha\28\29\20const +1089:SkMatrix::setScaleTranslate\28float\2c\20float\2c\20float\2c\20float\29 +1090:SkMatrix::preScale\28float\2c\20float\29 +1091:SkMatrix::mapVector\28float\2c\20float\29\20const +1092:SkMatrix::RectToRectOrIdentity\28SkRect\20const&\2c\20SkRect\20const&\2c\20SkMatrix::ScaleToFit\29 +1093:SkImageFilter_Base::getChildInputLayerBounds\28int\2c\20skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +1094:SkIRect::offset\28int\2c\20int\29 +1095:SkIRect::join\28SkIRect\20const&\29 +1096:SkData::PrivateNewWithCopy\28void\20const*\2c\20unsigned\20long\29 +1097:SkData::MakeUninitialized\28unsigned\20long\29 +1098:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\29 +1099:SkCanvas::checkForDeferredSave\28\29 +1100:SkBitmap::peekPixels\28SkPixmap*\29\20const +1101:SkAAClip::Builder::addRun\28int\2c\20int\2c\20unsigned\20int\2c\20int\29 +1102:OT::hb_ot_apply_context_t::set_lookup_mask\28unsigned\20int\2c\20bool\29 +1103:OT::ClassDef::get_class\28unsigned\20int\29\20const +1104:GrTriangulator::Line::Line\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1105:GrTriangulator::Edge::isRightOf\28GrTriangulator::Vertex\20const&\29\20const +1106:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\29 +1107:GrStyle::SimpleFill\28\29 +1108:GrShape::setType\28GrShape::Type\29 +1109:GrPixmapBase::GrPixmapBase\28GrPixmapBase\20const&\29 +1110:GrMakeUncachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +1111:GrIORef::unref\28\29\20const +1112:GrGeometryProcessor::TextureSampler::reset\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +1113:GrGLGpu::deleteFramebuffer\28unsigned\20int\29 +1114:GrBackendFormats::MakeGL\28unsigned\20int\2c\20unsigned\20int\29 +1115:899 +1116:900 +1117:901 +1118:vsnprintf +1119:void\20AAT::Lookup>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +1120:ures_appendResPath\28UResourceBundle*\2c\20char\20const*\2c\20int\2c\20UErrorCode*\29 +1121:u_terminateChars_74 +1122:top12 +1123:std::__2::unique_ptr>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +1124:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Module\20const*\29 +1125:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1126:std::__2::to_string\28long\20long\29 +1127:std::__2::locale::use_facet\28std::__2::locale::id&\29\20const +1128:std::__2::enable_if\2c\20bool>::type\20impeller::TRect::IsFinite\28\29\20const +1129:std::__2::basic_string\2c\20std::__2::allocator>::operator=\5babi:nn180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +1130:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\2c\20std::__2::allocator>\28char\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +1131:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +1132:std::__2::__optional_destruct_base::__optional_destruct_base\5babi:ne180100\5d\28std::__2::in_place_t\2c\20SkPath&&\29 +1133:std::__2::__num_put_base::__identify_padding\28char*\2c\20char*\2c\20std::__2::ios_base\20const&\29 +1134:std::__2::__num_get_base::__get_base\28std::__2::ios_base&\29 +1135:std::__2::__libcpp_asprintf_l\28char**\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +1136:skvx::Vec<4\2c\20float>\20skvx::naive_if_then_else<4\2c\20float>\28skvx::Vec<4\2c\20skvx::Mask::type>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1137:skvx::Vec<4\2c\20float>\20skvx::abs<4>\28skvx::Vec<4\2c\20float>\20const&\29 +1138:skvx::Vec<2\2c\20float>\20skvx::min<2\2c\20float>\28skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +1139:sktext::gpu::BagOfBytes::allocateBytes\28int\2c\20int\29 +1140:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +1141:skia_private::TArray::~TArray\28\29 +1142:skia_private::TArray::checkRealloc\28int\2c\20double\29 +1143:skia_png_malloc_base +1144:skia::textlayout::TextLine::iterateThroughVisualRuns\28bool\2c\20std::__2::function\2c\20float*\29>\20const&\29\20const +1145:skgpu::ganesh::SurfaceFillContext::arenaAlloc\28\29 +1146:skgpu::ganesh::SurfaceDrawContext::numSamples\28\29\20const +1147:skgpu::AutoCallback::~AutoCallback\28\29 +1148:skcms_TransferFunction_getType +1149:skcms_GetTagBySignature +1150:sk_sp::operator=\28sk_sp\20const&\29 +1151:sk_sp::~sk_sp\28\29 +1152:operator==\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +1153:is_one_of\28hb_glyph_info_t\20const&\2c\20unsigned\20int\29 +1154:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1155:int\20std::__2::__get_up_to_n_digits\5babi:nn180100\5d>>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\2c\20int\29 +1156:inflateStateCheck +1157:icu_74::UnicodeString::setTo\28signed\20char\2c\20icu_74::ConstChar16Ptr\2c\20int\29 +1158:icu_74::UnicodeString::append\28icu_74::UnicodeString\20const&\29 +1159:icu_74::UnicodeSet::applyPattern\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +1160:icu_74::UnicodeSet::_appendToPat\28icu_74::UnicodeString&\2c\20int\2c\20signed\20char\29 +1161:icu_74::Normalizer2Impl::norm16HasCompBoundaryBefore\28unsigned\20short\29\20const +1162:icu_74::Locale::init\28char\20const*\2c\20signed\20char\29 +1163:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +1164:hb_lazy_loader_t\2c\20hb_face_t\2c\206u\2c\20hb_blob_t>::get\28\29\20const +1165:hb_font_t::has_glyph\28unsigned\20int\29 +1166:hb_cache_t<15u\2c\208u\2c\207u\2c\20true>::clear\28\29 +1167:bool\20hb_sanitize_context_t::check_array\28OT::HBGlyphID16\20const*\2c\20unsigned\20int\29\20const +1168:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1169:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1170:addPoint\28UBiDi*\2c\20int\2c\20int\29 +1171:_addExtensionToList\28ExtensionListEntry**\2c\20ExtensionListEntry*\2c\20signed\20char\29 +1172:__extenddftf2 +1173:\28anonymous\20namespace\29::extension_compare\28SkString\20const&\2c\20SkString\20const&\29 +1174:\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1175:\28anonymous\20namespace\29::colrv1_transform\28FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\2c\20SkCanvas*\2c\20SkMatrix*\29 +1176:SkUTF::NextUTF8WithReplacement\28char\20const**\2c\20char\20const*\29 +1177:SkTInternalLList::addToHead\28sktext::gpu::TextBlob*\29 +1178:SkString::reset\28\29 +1179:SkStrike::unlock\28\29 +1180:SkStrike::lock\28\29 +1181:SkSL::cast_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +1182:SkSL::StringStream::~StringStream\28\29 +1183:SkSL::RP::LValue::~LValue\28\29 +1184:SkSL::RP::Generator::pushIntrinsic\28SkSL::RP::Generator::TypedOps\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +1185:SkSL::InlineCandidateAnalyzer::visitExpression\28std::__2::unique_ptr>*\29 +1186:SkSL::GLSLCodeGenerator::writeType\28SkSL::Type\20const&\29 +1187:SkSL::Expression::isBoolLiteral\28\29\20const +1188:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29 +1189:SkRuntimeEffect::findUniform\28std::__2::basic_string_view>\29\20const +1190:SkRasterPipelineBlitter::appendLoadDst\28SkRasterPipeline*\29\20const +1191:SkRasterPipeline::run\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +1192:SkRRect::MakeRect\28SkRect\20const&\29 +1193:SkPoint::Distance\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1194:SkPath::injectMoveToIfNeeded\28\29 +1195:SkMatrix::preTranslate\28float\2c\20float\29 +1196:SkMatrix::postScale\28float\2c\20float\29 +1197:SkMatrix::mapVectors\28SkSpan\29\20const +1198:SkIntersections::removeOne\28int\29 +1199:SkImage_Ganesh::SkImage_Ganesh\28sk_sp\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20SkColorInfo\29 +1200:SkImageFilter_Base::getChildOutput\28int\2c\20skif::Context\20const&\29\20const +1201:SkGlyph::iRect\28\29\20const +1202:SkFindUnitQuadRoots\28float\2c\20float\2c\20float\2c\20float*\29 +1203:SkColorSpaceXformSteps::Flags::mask\28\29\20const +1204:SkCanvas::~SkCanvas\28\29 +1205:SkCanvas::translate\28float\2c\20float\29 +1206:SkCanvas::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +1207:SkCanvas::drawImage\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +1208:SkBlurEngine::SigmaToRadius\28float\29 +1209:SkBlockAllocator::BlockIter::Item::operator++\28\29 +1210:SkBitmapCache::Rec::getKey\28\29\20const +1211:SkBitmap::installPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\29 +1212:SkAAClipBlitterWrapper::init\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1213:SkAAClip::freeRuns\28\29 +1214:OT::VarSizedBinSearchArrayOf>::get_length\28\29\20const +1215:OT::Offset\2c\20true>::is_null\28\29\20const +1216:GrWindowRectangles::~GrWindowRectangles\28\29 +1217:GrTriangulator::Edge::isLeftOf\28GrTriangulator::Vertex\20const&\29\20const +1218:GrSimpleMeshDrawOpHelper::createProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +1219:GrResourceAllocator::addInterval\28GrSurfaceProxy*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20GrResourceAllocator::ActualUse\2c\20GrResourceAllocator::AllowRecycling\29 +1220:GrRenderTask::makeClosed\28GrRecordingContext*\29 +1221:GrGLGpu::prepareToDraw\28GrPrimitiveType\29 +1222:GrBackendFormatToCompressionType\28GrBackendFormat\20const&\29 +1223:FT_Stream_Read +1224:FT_Outline_Get_CBox +1225:Cr_z_adler32 +1226:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::end\28\29\20const +1227:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::begin\28\29\20const +1228:AlmostDequalUlps\28double\2c\20double\29 +1229:write_tag_size\28SkWriteBuffer&\2c\20unsigned\20int\2c\20unsigned\20long\29 +1230:void\20std::__2::unique_ptr::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot*\2c\200>\28skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Slot*\29 +1231:void\20skgpu::VertexWriter::writeQuad\2c\20skgpu::VertexColor\2c\20skgpu::VertexWriter::Conditional>\28skgpu::VertexWriter::TriFan\20const&\2c\20skgpu::VertexColor\20const&\2c\20skgpu::VertexWriter::Conditional\20const&\29 +1232:ures_open_74 +1233:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +1234:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +1235:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +1236:unsigned\20int\20std::__2::__sort3\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +1237:ulocimp_getLanguage_74\28char\20const*\2c\20char\20const**\2c\20UErrorCode&\29 +1238:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1239:std::__2::unique_ptr>::operator=\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +1240:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1241:std::__2::unique_ptr>\20GrSkSLFP::Make<>\28SkRuntimeEffect\20const*\2c\20char\20const*\2c\20std::__2::unique_ptr>\2c\20GrSkSLFP::OptFlags\29 +1242:std::__2::unique_ptr>\20GrBlendFragmentProcessor::Make<\28SkBlendMode\2913>\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +1243:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +1244:std::__2::time_get>>::get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\20const*\2c\20char\20const*\29\20const +1245:std::__2::shared_ptr::operator=\5babi:ne180100\5d\28std::__2::shared_ptr\20const&\29 +1246:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::AddTrianglesWhenChopping\2c\20skgpu::tess::DiscardFlatCurves>::writeTriangleStack\28skgpu::tess::MiddleOutPolygonTriangulator::PoppedTriangleStack&&\29 +1247:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +1248:std::__2::basic_string\2c\20std::__2::allocator>::~basic_string\28\29 +1249:std::__2::basic_ios>::setstate\5babi:nn180100\5d\28unsigned\20int\29 +1250:std::__2::__tuple_impl\2c\20GrSurfaceProxyView\2c\20sk_sp>::~__tuple_impl\28\29 +1251:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator>=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29\20\28.6368\29 +1252:skif::RoundOut\28SkRect\29 +1253:skia_private::TArray::push_back\28SkSL::SwitchCase\20const*\20const&\29 +1254:skia_private::TArray::push_back_n\28int\2c\20SkPoint\20const*\29 +1255:skia::textlayout::Run::placeholderStyle\28\29\20const +1256:skgpu::skgpu_init_static_unique_key_once\28SkAlignedSTStorage<1\2c\20skgpu::UniqueKey>*\29 +1257:skgpu::ganesh::\28anonymous\20namespace\29::update_degenerate_test\28skgpu::ganesh::\28anonymous\20namespace\29::DegenerateTestData*\2c\20SkPoint\20const&\29 +1258:skgpu::VertexWriter&\20skgpu::operator<<\28skgpu::VertexWriter&\2c\20skgpu::VertexColor\20const&\29 +1259:skgpu::ResourceKey::ResourceKey\28\29 +1260:skcms_TransferFunction_eval +1261:sk_sp::~sk_sp\28\29 +1262:sk_sp::reset\28GrThreadSafeCache::VertexData*\29 +1263:scalbn +1264:rowcol3\28float\20const*\2c\20float\20const*\29 +1265:ps_parser_skip_spaces +1266:non-virtual\20thunk\20to\20GrOpFlushState::allocator\28\29 +1267:is_joiner\28hb_glyph_info_t\20const&\29 +1268:impeller::Matrix::IsInvertible\28\29\20const +1269:icu_74::UVector::adoptElement\28void*\2c\20UErrorCode&\29 +1270:icu_74::UVector32::popi\28\29 +1271:icu_74::ReorderingBuffer::~ReorderingBuffer\28\29 +1272:icu_74::LocalUResourceBundlePointer::adoptInstead\28UResourceBundle*\29 +1273:icu_74::LSR::~LSR\28\29 +1274:icu_74::Edits::addReplace\28int\2c\20int\29 +1275:icu_74::BytesTrie::next\28int\29 +1276:hb_paint_funcs_t::push_translate\28void*\2c\20float\2c\20float\29 +1277:hb_lazy_loader_t\2c\20hb_face_t\2c\2022u\2c\20hb_blob_t>::get\28\29\20const +1278:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\2c\20hb_pair_t>>::operator--\28int\29 +1279:hb_aat_map_t::range_flags_t*\20hb_vector_t::push\28hb_aat_map_t::range_flags_t&&\29 +1280:get_gsubgpos_table\28hb_face_t*\2c\20unsigned\20int\29 +1281:flutter::DlRuntimeEffectColorSource::type\28\29\20const +1282:flutter::DisplayListMatrixClipState::adjustCullRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1283:flutter::DisplayListBuilder::ClipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1284:emscripten_longjmp +1285:cff2_path_procs_extents_t::line\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\2c\20CFF::point_t\20const&\29 +1286:cff2_path_param_t::line_to\28CFF::point_t\20const&\29 +1287:cff1_path_procs_extents_t::line\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\29 +1288:cff1_path_param_t::line_to\28CFF::point_t\20const&\29 +1289:cf2_stack_pushInt +1290:cf2_buf_readByte +1291:bool\20hb_bsearch_impl\28unsigned\20int*\2c\20unsigned\20int\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\29\29 +1292:_hb_draw_funcs_set_preamble\28hb_draw_funcs_t*\2c\20bool\2c\20void**\2c\20void\20\28**\29\28void*\29\29 +1293:\28anonymous\20namespace\29::init_resb_result\28UResourceDataEntry*\2c\20unsigned\20int\2c\20char\20const*\2c\20int\2c\20UResourceBundle\20const*\2c\20UResourceBundle*\2c\20UErrorCode*\29 +1294:\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29 +1295:WebPRescalerInit +1296:VP8LIsEndOfStream +1297:VP8GetSignedValue +1298:SkWriter32::write\28void\20const*\2c\20unsigned\20long\29 +1299:SkWStream::writeDecAsText\28int\29 +1300:SkTDStorage::append\28void\20const*\2c\20int\29 +1301:SkSurface_Base::refCachedImage\28\29 +1302:SkStrikeSpec::SkStrikeSpec\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +1303:SkSL::compile_and_shrink\28SkSL::Compiler*\2c\20SkSL::ProgramKind\2c\20SkSL::ModuleType\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::Module\20const*\29 +1304:SkSL::RP::Builder::lastInstructionOnAnyStack\28int\29 +1305:SkSL::ProgramUsage::get\28SkSL::Variable\20const&\29\20const +1306:SkSL::Parser::expectIdentifier\28SkSL::Token*\29 +1307:SkSL::Parser::AutoDepth::increase\28\29 +1308:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29::$_3::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +1309:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29::$_2::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +1310:SkSL::GLSLCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +1311:SkSL::GLSLCodeGenerator::finishLine\28\29 +1312:SkSL::ConstructorSplat::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1313:SkSL::ConstructorScalarCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1314:SkRuntimeEffect::Uniform::sizeInBytes\28\29\20const +1315:SkRegion::setRegion\28SkRegion\20const&\29 +1316:SkRegion::SkRegion\28SkIRect\20const&\29 +1317:SkRect::Bounds\28SkSpan\29 +1318:SkRasterPipeline_<256ul>::~SkRasterPipeline_\28\29 +1319:SkRasterPipeline_<256ul>::SkRasterPipeline_\28\29 +1320:SkRasterPipeline::appendTransferFunction\28skcms_TransferFunction\20const&\29 +1321:SkRRect::checkCornerContainment\28float\2c\20float\29\20const +1322:SkPointPriv::DistanceToLineSegmentBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +1323:SkPoint::setLength\28float\29 +1324:SkPathRef::isFinite\28\29\20const +1325:SkPathPriv::Raw\28SkPath\20const&\29 +1326:SkPathPriv::AllPointsEq\28SkSpan\29 +1327:SkPath::lineTo\28float\2c\20float\29 +1328:SkPath::isRect\28SkRect*\2c\20bool*\2c\20SkPathDirection*\29\20const +1329:SkPath::getLastPt\28\29\20const +1330:SkOpCoincidence::release\28SkCoincidentSpans*\2c\20SkCoincidentSpans*\29 +1331:SkJSONWriter::appendCString\28char\20const*\2c\20char\20const*\29 +1332:SkIntersections::hasT\28double\29\20const +1333:SkImages::RasterFromBitmap\28SkBitmap\20const&\29 +1334:SkImageInfo::makeAlphaType\28SkAlphaType\29\20const +1335:SkImageInfo::computeByteSize\28unsigned\20long\29\20const +1336:SkImageInfo::SkImageInfo\28SkImageInfo\20const&\29 +1337:SkImageFilter_Base::SkImageFilter_Base\28sk_sp\20const*\2c\20int\2c\20std::__2::optional\29 +1338:SkDLine::ptAtT\28double\29\20const +1339:SkColorSpace::MakeRGB\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +1340:SkColorSpace::Equals\28SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +1341:SkCodecPriv::GetEndianInt\28unsigned\20char\20const*\2c\20bool\29 +1342:SkCanvas::saveLayer\28SkRect\20const*\2c\20SkPaint\20const*\29 +1343:SkCanvas::restoreToCount\28int\29 +1344:SkCachedData::unref\28\29\20const +1345:SkAutoSMalloc<1024ul>::~SkAutoSMalloc\28\29 +1346:SkArenaAlloc::SkArenaAlloc\28unsigned\20long\29 +1347:SkAAClipBlitterWrapper::SkAAClipBlitterWrapper\28SkRasterClip\20const&\2c\20SkBlitter*\29 +1348:OT::MVAR::get_var\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29\20const +1349:OT::CmapSubtable::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +1350:MaskAdditiveBlitter::getRow\28int\29 +1351:GrTextureEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20GrCaps\20const&\2c\20float\20const*\29 +1352:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\29 +1353:GrTessellationShader::MakeProgram\28GrTessellationShader::ProgramArgs\20const&\2c\20GrTessellationShader\20const*\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +1354:GrScissorState::enabled\28\29\20const +1355:GrRecordingContextPriv::recordTimeAllocator\28\29 +1356:GrQuad::bounds\28\29\20const +1357:GrProxyProvider::createProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\29 +1358:GrPixmapBase::operator=\28GrPixmapBase&&\29 +1359:GrOpFlushState::detachAppliedClip\28\29 +1360:GrGLGpu::disableWindowRectangles\28\29 +1361:GrGLGpu::bindFramebuffer\28unsigned\20int\2c\20unsigned\20int\29 +1362:GrGLFormatFromGLEnum\28unsigned\20int\29 +1363:GrFragmentProcessor::~GrFragmentProcessor\28\29 +1364:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29 +1365:GrBackendTexture::getBackendFormat\28\29\20const +1366:CFF::interp_env_t::fetch_op\28\29 +1367:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::setIndices\28\29 +1368:AlmostEqualUlps\28double\2c\20double\29 +1369:void\20sktext::gpu::fill3D\28SkZip\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28float\2c\20float\29::operator\28\29\28float\2c\20float\29\20const +1370:ures_openDirect_74 +1371:ures_getString_74 +1372:ulocimp_getScript_74\28char\20const*\2c\20char\20const**\2c\20UErrorCode&\29 +1373:tt_face_lookup_table +1374:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1375:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1376:std::__2::moneypunct::negative_sign\5babi:nn180100\5d\28\29\20const +1377:std::__2::moneypunct::neg_format\5babi:nn180100\5d\28\29\20const +1378:std::__2::moneypunct::frac_digits\5babi:nn180100\5d\28\29\20const +1379:std::__2::moneypunct::do_pos_format\28\29\20const +1380:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20std::__2::random_access_iterator_tag\29 +1381:std::__2::function::operator\28\29\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\20const +1382:std::__2::enable_if\2c\20impeller::TRect>::type\20impeller::TRect::RoundOut\28impeller::TRect\20const&\29 +1383:std::__2::ctype::widen\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +1384:std::__2::char_traits::copy\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20unsigned\20long\29 +1385:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1386:std::__2::basic_string\2c\20std::__2::allocator>::end\5babi:nn180100\5d\28\29 +1387:std::__2::basic_string\2c\20std::__2::allocator>::__set_size\5babi:nn180100\5d\28unsigned\20long\29 +1388:std::__2::__split_buffer&>::~__split_buffer\28\29 +1389:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +1390:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +1391:std::__2::__itoa::__append2\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +1392:skvx::Vec<4\2c\20unsigned\20int>\20\28anonymous\20namespace\29::shift_right>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20int\29 +1393:sktext::gpu::BagOfBytes::~BagOfBytes\28\29 +1394:skif::\28anonymous\20namespace\29::is_nearly_integer_translation\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29 +1395:skif::FilterResult::FilterResult\28sk_sp\2c\20skif::LayerSpace\20const&\29 +1396:skia_private::TArray\2c\20true>::destroyAll\28\29 +1397:skia_private::TArray::push_back\28float\20const&\29 +1398:skia_png_gamma_correct +1399:skia_png_gamma_8bit_correct +1400:skia::textlayout::TextStyle::operator=\28skia::textlayout::TextStyle\20const&\29 +1401:skia::textlayout::Run::positionX\28unsigned\20long\29\20const +1402:skia::textlayout::ParagraphImpl::codeUnitHasProperty\28unsigned\20long\2c\20SkUnicode::CodeUnitFlags\29\20const +1403:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20std::__2::basic_string_view>\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1404:skgpu::UniqueKey::UniqueKey\28skgpu::UniqueKey\20const&\29 +1405:sk_sp::~sk_sp\28\29 +1406:sk_sp::operator=\28sk_sp&&\29 +1407:sk_sp::reset\28GrSurfaceProxy*\29 +1408:sk_sp::operator=\28sk_sp&&\29 +1409:sk_realloc_throw\28void*\2c\20unsigned\20long\29 +1410:scalar_to_alpha\28float\29 +1411:png_read_buffer +1412:path_lineTo +1413:operator!=\28SkIRect\20const&\2c\20SkIRect\20const&\29 +1414:locale_getKeywordsStart_74 +1415:interp_cubic_coords\28double\20const*\2c\20double\29 +1416:int\20_hb_cmp_method>\28void\20const*\2c\20void\20const*\29 +1417:impeller::TRect::TransformAndClipBounds\28impeller::Matrix\20const&\29\20const +1418:impeller::RoundRect::IsRect\28\29\20const +1419:impeller::RoundRect::IsOval\28\29\20const +1420:icu_74::UnicodeString::moveIndex32\28int\2c\20int\29\20const +1421:icu_74::UnicodeString::doAppend\28char16_t\20const*\2c\20int\2c\20int\29 +1422:icu_74::UVector::removeElementAt\28int\29 +1423:icu_74::UVector::removeAllElements\28\29 +1424:icu_74::UVector32::ensureCapacity\28int\2c\20UErrorCode&\29 +1425:icu_74::UVector32::UVector32\28UErrorCode&\29 +1426:icu_74::UCharsTrieElement::charAt\28int\2c\20icu_74::UnicodeString\20const&\29\20const +1427:icu_74::SimpleFilteredSentenceBreakIterator::operator==\28icu_74::BreakIterator\20const&\29\20const +1428:icu_74::RuleCharacterIterator::next\28int\2c\20signed\20char&\2c\20UErrorCode&\29 +1429:icu_74::CharString::appendInvariantChars\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +1430:icu_74::CharString::CharString\28icu_74::StringPiece\2c\20UErrorCode&\29 +1431:hb_paint_funcs_t::push_transform\28void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +1432:hb_lazy_loader_t\2c\20hb_face_t\2c\2025u\2c\20OT::GSUB_accelerator_t>::get_stored\28\29\20const +1433:hb_font_t::scale_glyph_extents\28hb_glyph_extents_t*\29 +1434:hb_font_t::parent_scale_y_distance\28int\29 +1435:hb_font_t::parent_scale_x_distance\28int\29 +1436:hb_face_t::get_upem\28\29\20const +1437:flutter::DlGradientColorSourceBase::store_color_stops\28void*\2c\20flutter::DlColor\20const*\2c\20float\20const*\29 +1438:double_to_clamped_scalar\28double\29 +1439:conic_eval_numerator\28double\20const*\2c\20float\2c\20double\29 +1440:cff_index_init +1441:bool\20std::__2::operator!=\5babi:nn180100\5d\28std::__2::__wrap_iter\20const&\2c\20std::__2::__wrap_iter\20const&\29 +1442:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\29\20const +1443:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1444:_emscripten_yield +1445:__memset +1446:__isspace +1447:\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16::Compact\28skvx::Vec<4\2c\20float>\20const&\29 +1448:\28anonymous\20namespace\29::ColorTypeFilter_F16F16::Compact\28skvx::Vec<4\2c\20float>\20const&\29 +1449:\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16::Compact\28skvx::Vec<4\2c\20float>\20const&\29 +1450:\28anonymous\20namespace\29::ColorTypeFilter_8888::Compact\28skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +1451:\28anonymous\20namespace\29::ColorTypeFilter_16161616::Compact\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +1452:\28anonymous\20namespace\29::ColorTypeFilter_1010102::Compact\28unsigned\20long\20long\29 +1453:WebPRescalerExportRow +1454:TT_MulFix14 +1455:SkWriter32::writeBool\28bool\29 +1456:SkTDStorage::append\28int\29 +1457:SkTDPQueue::setIndex\28int\29 +1458:SkTDArray::push_back\28void*\20const&\29 +1459:SkTCopyOnFirstWrite::writable\28\29 +1460:SkSpotShadowTessellator::addToClip\28SkPoint\20const&\29 +1461:SkShaderUtils::GLSLPrettyPrint::newline\28\29 +1462:SkShaderUtils::GLSLPrettyPrint::hasToken\28char\20const*\29 +1463:SkSL::Type::MakeTextureType\28char\20const*\2c\20SpvDim_\2c\20bool\2c\20bool\2c\20bool\2c\20SkSL::Type::TextureAccess\29 +1464:SkSL::Type::MakeSpecialType\28char\20const*\2c\20char\20const*\2c\20SkSL::Type::TypeKind\29 +1465:SkSL::Swizzle::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29 +1466:SkSL::RP::Builder::push_slots_or_immutable\28SkSL::RP::SlotRange\2c\20SkSL::RP::BuilderOp\29 +1467:SkSL::RP::Builder::push_duplicates\28int\29 +1468:SkSL::RP::Builder::push_constant_f\28float\29 +1469:SkSL::RP::Builder::push_clone\28int\2c\20int\29 +1470:SkSL::Parser::statementOrNop\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +1471:SkSL::Literal::Make\28SkSL::Position\2c\20double\2c\20SkSL::Type\20const*\29 +1472:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mul\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +1473:SkSL::InlineCandidateAnalyzer::visitStatement\28std::__2::unique_ptr>*\2c\20bool\29 +1474:SkSL::GLSLCodeGenerator::writeModifiers\28SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20bool\29 +1475:SkSL::Expression::isIntLiteral\28\29\20const +1476:SkSL::ConstructorCompound::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +1477:SkSL::ConstantFolder::IsConstantSplat\28SkSL::Expression\20const&\2c\20double\29 +1478:SkSL::Analysis::IsSameExpressionTree\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +1479:SkSL::AliasType::resolve\28\29\20const +1480:SkResourceCache::Find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +1481:SkResourceCache::Add\28SkResourceCache::Rec*\2c\20void*\29 +1482:SkRectPriv::HalfWidth\28SkRect\20const&\29 +1483:SkRect::round\28SkIRect*\29\20const +1484:SkRasterPipeline::appendConstantColor\28SkArenaAlloc*\2c\20float\20const*\29 +1485:SkRasterClip::quickContains\28SkIRect\20const&\29\20const +1486:SkRRect::setRect\28SkRect\20const&\29 +1487:SkPixmap::computeByteSize\28\29\20const +1488:SkPathWriter::isClosed\28\29\20const +1489:SkPathStroker::addDegenerateLine\28SkQuadConstruct\20const*\29 +1490:SkPathRef::growForVerb\28SkPathVerb\2c\20float\29 +1491:SkPathBuilder::moveTo\28float\2c\20float\29 +1492:SkPathBuilder::ensureMove\28\29 +1493:SkPath::getGenerationID\28\29\20const +1494:SkOpSegment::existing\28double\2c\20SkOpSegment\20const*\29\20const +1495:SkOpSegment::addT\28double\29 +1496:SkOpSegment::addCurveTo\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkPathWriter*\29\20const +1497:SkOpPtT::find\28SkOpSegment\20const*\29\20const +1498:SkOpContourBuilder::flush\28\29 +1499:SkNVRefCnt::unref\28\29\20const +1500:SkNVRefCnt::unref\28\29\20const +1501:SkMipmap::getLevel\28int\2c\20SkMipmap::Level*\29\20const +1502:SkMakeImageFromRasterBitmap\28SkBitmap\20const&\2c\20SkCopyPixelsMode\29 +1503:SkImageInfoIsValid\28SkImageInfo\20const&\29 +1504:SkImageFilter_Base::flatten\28SkWriteBuffer&\29\20const +1505:SkGoodHash::operator\28\29\28SkString\20const&\29\20const +1506:SkGlyph::imageSize\28\29\20const +1507:SkDrawTiler::~SkDrawTiler\28\29 +1508:SkDrawTiler::next\28\29 +1509:SkDrawTiler::SkDrawTiler\28SkBitmapDevice*\2c\20SkRect\20const*\29 +1510:SkData::MakeEmpty\28\29 +1511:SkConvertPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +1512:SkColorSpaceXformSteps::apply\28SkRasterPipeline*\29\20const +1513:SkColorFilterBase::affectsTransparentBlack\28\29\20const +1514:SkCodec::fillIncompleteImage\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::ZeroInitialized\2c\20int\2c\20int\29 +1515:SkCanvas::restore\28\29 +1516:SkCanvas::predrawNotify\28bool\29 +1517:SkCanvas::getTotalMatrix\28\29\20const +1518:SkCanvas::aboutToDraw\28SkPaint\20const&\2c\20SkRect\20const*\2c\20SkEnumBitMask\29 +1519:SkBlurMaskFilterImpl::computeXformedSigma\28SkMatrix\20const&\29\20const +1520:SkBlockAllocator::SkBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\2c\20unsigned\20long\29 +1521:SkBlockAllocator::BlockIter::begin\28\29\20const +1522:SkBitmap::reset\28\29 +1523:SkBitmap::installPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29 +1524:OT::VarSizedBinSearchArrayOf>::operator\5b\5d\28int\29\20const +1525:OT::Layout::GSUB_impl::SubstLookupSubTable\20const&\20OT::Lookup::get_subtable\28unsigned\20int\29\20const +1526:OT::Layout::GSUB_impl::SubstLookupSubTable*\20hb_serialize_context_t::push\28\29 +1527:OT::ArrayOf\2c\20true>\2c\20OT::IntType>*\20hb_serialize_context_t::extend_size\2c\20true>\2c\20OT::IntType>>\28OT::ArrayOf\2c\20true>\2c\20OT::IntType>*\2c\20unsigned\20long\2c\20bool\29 +1528:GrTriangulator::makeConnectingEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\2c\20int\29 +1529:GrTriangulator::appendPointToContour\28SkPoint\20const&\2c\20GrTriangulator::VertexList*\29\20const +1530:GrSurface::ComputeSize\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20bool\29 +1531:GrStyledShape::writeUnstyledKey\28unsigned\20int*\29\20const +1532:GrStyledShape::unstyledKeySize\28\29\20const +1533:GrStyle::operator=\28GrStyle\20const&\29 +1534:GrStyle::GrStyle\28SkStrokeRec\20const&\2c\20sk_sp\29 +1535:GrStyle::GrStyle\28SkPaint\20const&\29 +1536:GrSimpleMesh::setIndexed\28sk_sp\2c\20int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20GrPrimitiveRestart\2c\20sk_sp\2c\20int\29 +1537:GrRecordingContextPriv::makeSFCWithFallback\28GrImageInfo\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +1538:GrRecordingContextPriv::makeSC\28GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +1539:GrQuad::MakeFromSkQuad\28SkPoint\20const*\2c\20SkMatrix\20const&\29 +1540:GrProcessorSet::visitProxies\28std::__2::function\20const&\29\20const +1541:GrProcessorSet::finalize\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrCaps\20const&\2c\20GrClampType\2c\20SkRGBA4f<\28SkAlphaType\292>*\29 +1542:GrGpuResource::gpuMemorySize\28\29\20const +1543:GrGpuBuffer::updateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +1544:GrGetColorTypeDesc\28GrColorType\29 +1545:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\29 +1546:GrGLSLShaderBuilder::~GrGLSLShaderBuilder\28\29 +1547:GrGLSLShaderBuilder::declAppend\28GrShaderVar\20const&\29 +1548:GrGLGpu::flushScissorTest\28GrScissorTest\29 +1549:GrGLGpu::didDrawTo\28GrRenderTarget*\29 +1550:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int*\29 +1551:GrGLCaps::maxRenderTargetSampleCount\28GrGLFormat\29\20const +1552:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\29 +1553:GrDefaultGeoProcFactory::Make\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +1554:GrCaps::validateSurfaceParams\28SkISize\20const&\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20GrTextureType\29\20const +1555:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29::$_0::operator\28\29\28SkIRect\2c\20SkIRect\29\20const +1556:GrBackendTexture::~GrBackendTexture\28\29 +1557:GrAppliedClip::GrAppliedClip\28GrAppliedClip&&\29 +1558:GrAAConvexTessellator::Ring::origEdgeID\28int\29\20const +1559:FT_GlyphLoader_CheckPoints +1560:FT_Get_Sfnt_Table +1561:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::end\28\29\20const +1562:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::Item::operator++\28\29 +1563:AAT::StateTable::EntryData>::get_entry\28int\2c\20unsigned\20int\29\20const +1564:AAT::StateTable::EntryData>::get_entry\28int\2c\20unsigned\20int\29\20const +1565:AAT::Lookup>::get_class\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +1566:AAT::InsertionSubtable::is_actionable\28AAT::Entry::EntryData>\20const&\29\20const +1567:wuffs_base__pixel_format__bits_per_pixel\28wuffs_base__pixel_format__struct\20const*\29 +1568:void\20std::__2::reverse\5babi:nn180100\5d\28char*\2c\20char*\29 +1569:void\20std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__rehash\28unsigned\20long\29 +1570:void\20SkSafeUnref\28GrThreadSafeCache::VertexData*\29 +1571:utf8_nextCharSafeBody_74 +1572:ures_getNextResource_74 +1573:uprv_realloc_74 +1574:ultag_isUnicodeLocaleKey_74 +1575:ultag_isUnicodeLocaleAttribute_74 +1576:uhash_open_74 +1577:u_getUnicodeProperties_74 +1578:u_UCharsToChars_74 +1579:std::__2::vector>\2c\20std::__2::allocator>>>::push_back\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +1580:std::__2::vector\2c\20std::__2::allocator>>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +1581:std::__2::vector\2c\20std::__2::allocator>>::push_back\5babi:ne180100\5d\28impeller::TRect\20const&\29 +1582:std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20std::__2::default_delete\2c\20std::__2::allocator>>>::~unique_ptr\5babi:ne180100\5d\28\29 +1583:std::__2::unique_ptr\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap\20\28*\29\28SkReadBuffer&\29\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +1584:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1585:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1586:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::SymbolTable*\29 +1587:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1588:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1589:std::__2::unique_lock::owns_lock\5babi:nn180100\5d\28\29\20const +1590:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ios_base&\2c\20wchar_t\29 +1591:std::__2::ostreambuf_iterator>\20std::__2::__pad_and_output\5babi:nn180100\5d>\28std::__2::ostreambuf_iterator>\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ios_base&\2c\20char\29 +1592:std::__2::hash::operator\28\29\5babi:ne180100\5d\28GrFragmentProcessor\20const*\29\20const +1593:std::__2::char_traits::to_int_type\5babi:nn180100\5d\28char\29 +1594:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +1595:std::__2::basic_string\2c\20std::__2::allocator>::append\28char\20const*\2c\20unsigned\20long\29 +1596:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1597:std::__2::basic_string\2c\20std::__2::allocator>::__get_long_cap\5babi:nn180100\5d\28\29\20const +1598:std::__2::allocator>::allocate\5babi:ne180100\5d\28unsigned\20long\29 +1599:std::__2::__split_buffer\2c\20std::__2::allocator>&>::~__split_buffer\28\29 +1600:std::__2::__split_buffer\2c\20std::__2::allocator>&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator>&\29 +1601:skvx::Vec<4\2c\20unsigned\20short>\20\28anonymous\20namespace\29::add_121>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +1602:skvx::Vec<4\2c\20unsigned\20int>\20\28anonymous\20namespace\29::add_121>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +1603:skvx::Vec<4\2c\20float>\20unchecked_mix<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1604:skvx::Vec<4\2c\20float>\20skvx::operator/<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1605:skvx::Vec<4\2c\20float>\20skvx::min<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1606:skvx::Vec<4\2c\20float>&\20skvx::operator*=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +1607:skvx::Vec<2\2c\20float>\20skvx::naive_if_then_else<2\2c\20float>\28skvx::Vec<2\2c\20skvx::Mask::type>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +1608:skip_spaces +1609:skif::FilterResult::resolve\28skif::Context\20const&\2c\20skif::LayerSpace\2c\20bool\29\20const +1610:skia_private::THashMap::find\28SkSL::Variable\20const*\20const&\29\20const +1611:skia_private::TArray::TArray\28skia_private::TArray&&\29 +1612:skia_private::TArray::TArray\28skia_private::TArray&&\29 +1613:skia_private::TArray\2c\20true>::preallocateNewData\28int\2c\20double\29 +1614:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +1615:skia_private::TArray::checkRealloc\28int\2c\20double\29 +1616:skia_private::TArray::push_back\28SkPathVerb&&\29 +1617:skia_private::FixedArray<4\2c\20signed\20char>::FixedArray\28std::initializer_list\29 +1618:skia_private::AutoTMalloc::AutoTMalloc\28unsigned\20long\29 +1619:skia_private::AutoSTMalloc<4ul\2c\20int\2c\20void>::AutoSTMalloc\28unsigned\20long\29 +1620:skia_png_safecat +1621:skia_png_malloc +1622:skia_png_colorspace_sync +1623:skia_png_chunk_warning +1624:skia::textlayout::TextWrapper::TextStretch::extend\28skia::textlayout::TextWrapper::TextStretch&\29 +1625:skia::textlayout::TextLine::iterateThroughSingleRunByStyles\28skia::textlayout::TextLine::TextAdjustment\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::StyleType\2c\20std::__2::function\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\20const&\29\20const +1626:skia::textlayout::ParagraphStyle::~ParagraphStyle\28\29 +1627:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29 +1628:skgpu::ganesh::SurfaceFillContext::fillWithFP\28std::__2::unique_ptr>\29 +1629:skgpu::ganesh::SurfaceDrawContext::drawRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const*\29 +1630:skgpu::ganesh::OpsTask::OpChain::List::popHead\28\29 +1631:skgpu::SkSLToGLSL\28SkSL::ShaderCaps\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::NativeShader*\2c\20SkSL::ProgramInterface*\2c\20skgpu::ShaderErrorHandler*\29 +1632:skgpu::ResourceKey::reset\28\29 +1633:skcms_Transform::$_2::operator\28\29\28skcms_Curve\20const*\2c\20int\29\20const +1634:sk_sp::reset\28SkString::Rec*\29 +1635:sk_doubles_nearly_equal_ulps\28double\2c\20double\2c\20unsigned\20char\29 +1636:res_getTableItemByKey_74 +1637:path_conicTo +1638:operator!=\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +1639:is_halant\28hb_glyph_info_t\20const&\29 +1640:impeller::\28anonymous\20namespace\29::RoundSuperellipseBuilder::AddQuadrant\28impeller::RoundSuperellipseParam::Quadrant\20const&\2c\20bool\2c\20impeller::TPoint\29 +1641:impeller::Matrix::Invert\28\29\20const +1642:icu_74::UnicodeString::pinIndex\28int&\29\20const +1643:icu_74::UnicodeString::operator=\28icu_74::UnicodeString&&\29 +1644:icu_74::UnicodeString::operator==\28icu_74::UnicodeString\20const&\29\20const +1645:icu_74::UnicodeString::indexOf\28char16_t\29\20const +1646:icu_74::UnicodeString::getBuffer\28int\29 +1647:icu_74::UnicodeString::cloneArrayIfNeeded\28int\2c\20int\2c\20signed\20char\2c\20int**\2c\20signed\20char\29 +1648:icu_74::UnicodeSet::ensureCapacity\28int\29 +1649:icu_74::UVector::UVector\28void\20\28*\29\28void*\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20int\2c\20UErrorCode&\29 +1650:icu_74::UVector::UVector\28void\20\28*\29\28void*\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +1651:icu_74::RuleBasedBreakIterator::handleNext\28\29 +1652:icu_74::ResourceTable::findValue\28char\20const*\2c\20icu_74::ResourceValue&\29\20const +1653:icu_74::Normalizer2Impl::getFCD16\28int\29\20const +1654:icu_74::MaybeStackArray::resize\28int\2c\20int\29 +1655:icu_74::Locale::setToBogus\28\29 +1656:icu_74::Hashtable::put\28icu_74::UnicodeString\20const&\2c\20void*\2c\20UErrorCode&\29 +1657:icu_74::CharStringMap::~CharStringMap\28\29 +1658:icu_74::CharStringMap::CharStringMap\28int\2c\20UErrorCode&\29 +1659:icu_74::CharString::operator==\28icu_74::StringPiece\29\20const +1660:icu_74::CharString::extract\28char*\2c\20int\2c\20UErrorCode&\29\20const +1661:hb_zip_iter_t\2c\20hb_array_t>::__next__\28\29 +1662:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +1663:hb_serialize_context_t::pop_pack\28bool\29 +1664:hb_lazy_loader_t\2c\20hb_face_t\2c\2011u\2c\20hb_blob_t>::get\28\29\20const +1665:hb_lazy_loader_t\2c\20hb_face_t\2c\204u\2c\20hb_blob_t>::get\28\29\20const +1666:hb_lazy_loader_t\2c\20hb_face_t\2c\2024u\2c\20OT::GDEF_accelerator_t>::get_stored\28\29\20const +1667:hb_glyf_scratch_t::~hb_glyf_scratch_t\28\29 +1668:hb_extents_t::add_point\28float\2c\20float\29 +1669:hb_buffer_t::reverse_range\28unsigned\20int\2c\20unsigned\20int\29 +1670:hb_buffer_t::merge_out_clusters\28unsigned\20int\2c\20unsigned\20int\29 +1671:hb_buffer_destroy +1672:hb_buffer_append +1673:hb_bit_page_t::get\28unsigned\20int\29\20const +1674:flutter::DlColor::argb\28\29\20const +1675:flutter::DisplayListBuilder::Restore\28\29 +1676:flutter::DisplayListBuilder::ClipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1677:flutter::DisplayListBuilder::AccumulateOpBounds\28impeller::TRect&\2c\20flutter::DisplayListAttributeFlags\29 +1678:cos +1679:compare_edges\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29 +1680:cleanup_program\28GrGLGpu*\2c\20unsigned\20int\2c\20SkTDArray\20const&\29 +1681:classify\28skcms_TransferFunction\20const&\2c\20TF_PQish*\2c\20TF_HLGish*\29 +1682:cff_index_done +1683:cf2_glyphpath_curveTo +1684:bool\20hb_buffer_t::replace_glyphs\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\20const*\29 +1685:auto\20std::__2::__unwrap_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\29 +1686:atan2f +1687:afm_parser_read_vals +1688:afm_parser_next_key +1689:__lshrti3 +1690:__letf2 +1691:\28anonymous\20namespace\29::skhb_position\28float\29 +1692:WebPRescalerImport +1693:SkWriter32::reservePad\28unsigned\20long\29 +1694:SkTSpan::removeBounded\28SkTSpan\20const*\29 +1695:SkTSpan::initBounds\28SkTCurve\20const&\29 +1696:SkTSpan::addBounded\28SkTSpan*\2c\20SkArenaAlloc*\29 +1697:SkTSect::tail\28\29 +1698:SkTDStorage::reset\28\29 +1699:SkString::printf\28char\20const*\2c\20...\29 +1700:SkString::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +1701:SkShaders::Color\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\29 +1702:SkShader::makeWithLocalMatrix\28SkMatrix\20const&\29\20const +1703:SkSamplingOptions::operator==\28SkSamplingOptions\20const&\29\20const +1704:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_5::operator\28\29\28int\2c\20int\29\20const +1705:SkSL::is_constant_value\28SkSL::Expression\20const&\2c\20double\29 +1706:SkSL::\28anonymous\20namespace\29::ReturnsOnAllPathsVisitor::visitStatement\28SkSL::Statement\20const&\29 +1707:SkSL::Type::MakeScalarType\28std::__2::basic_string_view>\2c\20char\20const*\2c\20SkSL::Type::NumberKind\2c\20signed\20char\2c\20signed\20char\29 +1708:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Context\20const&\2c\20SkSL::Symbol*\29 +1709:SkSL::RP::Generator::push\28SkSL::RP::LValue&\29 +1710:SkSL::PipelineStage::PipelineStageCodeGenerator::writeLine\28std::__2::basic_string_view>\29 +1711:SkSL::Parser::statement\28bool\29 +1712:SkSL::ModifierFlags::description\28\29\20const +1713:SkSL::Layout::paddedDescription\28\29\20const +1714:SkSL::ConstructorCompoundCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1715:SkSL::Analysis::UpdateVariableRefKind\28SkSL::Expression*\2c\20SkSL::VariableRefKind\2c\20SkSL::ErrorReporter*\29 +1716:SkRegion::Iterator::next\28\29 +1717:SkRect::makeSorted\28\29\20const +1718:SkRect::intersects\28SkRect\20const&\29\20const +1719:SkRect::center\28\29\20const +1720:SkReadBuffer::readInt\28\29 +1721:SkReadBuffer::readBool\28\29 +1722:SkRasterClip::updateCacheAndReturnNonEmpty\28bool\29 +1723:SkRasterClip::setRect\28SkIRect\20const&\29 +1724:SkRasterClip::quickReject\28SkIRect\20const&\29\20const +1725:SkRRect::transform\28SkMatrix\20const&\29\20const +1726:SkPixmap::addr\28int\2c\20int\29\20const +1727:SkPathIter::next\28\29 +1728:SkPathBuilder::reset\28\29 +1729:SkPath::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +1730:SkPath::Polygon\28SkSpan\2c\20bool\2c\20SkPathFillType\2c\20bool\29 +1731:SkPaint*\20SkRecordCanvas::copy\28SkPaint\20const*\29 +1732:SkOpSegment::ptAtT\28double\29\20const +1733:SkOpSegment::dPtAtT\28double\29\20const +1734:SkNoPixelsDevice::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +1735:SkMemoryStream::getPosition\28\29\20const +1736:SkMatrixPriv::MapRect\28SkM44\20const&\2c\20SkRect\20const&\29 +1737:SkMatrix::mapRadius\28float\29\20const +1738:SkMask::getAddr8\28int\2c\20int\29\20const +1739:SkIntersectionHelper::segmentType\28\29\20const +1740:SkImageInfo::makeColorType\28SkColorType\29\20const +1741:SkIRect::outset\28int\2c\20int\29 +1742:SkGlyph::rect\28\29\20const +1743:SkFont::SkFont\28sk_sp\2c\20float\29 +1744:SkEmptyFontStyleSet::createTypeface\28int\29 +1745:SkDynamicMemoryWStream::detachAsData\28\29 +1746:SkDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +1747:SkDescriptor::operator==\28SkDescriptor\20const&\29\20const +1748:SkDQuad::RootsValidT\28double\2c\20double\2c\20double\2c\20double*\29 +1749:SkColorFilter::makeComposed\28sk_sp\29\20const +1750:SkCanvas::drawImageRect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +1751:SkCanvas::AutoUpdateQRBounds::~AutoUpdateQRBounds\28\29 +1752:SkCachedData::ref\28\29\20const +1753:SkBulkGlyphMetrics::~SkBulkGlyphMetrics\28\29 +1754:SkBulkGlyphMetrics::SkBulkGlyphMetrics\28SkStrikeSpec\20const&\29 +1755:SkBitmap::setPixelRef\28sk_sp\2c\20int\2c\20int\29 +1756:SkAutoPixmapStorage::~SkAutoPixmapStorage\28\29 +1757:SkAlphaRuns::Break\28short*\2c\20unsigned\20char*\2c\20int\2c\20int\29 +1758:ReadSymbol +1759:ReadLE24s +1760:OT::ItemVariationStore::get_delta\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +1761:OT::GSUBGPOS::get_lookup\28unsigned\20int\29\20const +1762:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +1763:IDecError +1764:GrTriangulator::EdgeList::insert\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +1765:GrSurfaceProxyView::mipmapped\28\29\20const +1766:GrSurfaceProxy::backingStoreBoundsRect\28\29\20const +1767:GrStyledShape::knownToBeConvex\28\29\20const +1768:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +1769:GrSimpleMeshDrawOpHelperWithStencil::isCompatible\28GrSimpleMeshDrawOpHelperWithStencil\20const&\2c\20GrCaps\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20bool\29\20const +1770:GrShape::asPath\28bool\29\20const +1771:GrScissorState::set\28SkIRect\20const&\29 +1772:GrRenderTask::~GrRenderTask\28\29 +1773:GrPixmap::Allocate\28GrImageInfo\20const&\29 +1774:GrImageInfo::makeColorType\28GrColorType\29\20const +1775:GrGpuResource::CacheAccess::release\28\29 +1776:GrGpuBuffer::map\28\29 +1777:GrGpu::didWriteToSurface\28GrSurface*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const*\2c\20unsigned\20int\29\20const +1778:GrGeometryProcessor::TextureSampler::TextureSampler\28\29 +1779:GrGeometryProcessor::AttributeSet::begin\28\29\20const +1780:GrGeometryProcessor::AttributeSet::Iter::operator++\28\29 +1781:GrGLSLShaderBuilder::emitFunction\28SkSLType\2c\20char\20const*\2c\20SkSpan\2c\20char\20const*\29 +1782:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20int\2c\20int\2c\20int\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +1783:GrConvertPixels\28GrPixmap\20const&\2c\20GrCPixmap\20const&\2c\20bool\29 +1784:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +1785:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +1786:GrAtlasManager::getAtlas\28skgpu::MaskFormat\29\20const +1787:FT_Get_Char_Index +1788:1572 +1789:write_buf +1790:wrapper_cmp +1791:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d\2c\20std::__2::tuple\2c\20GrFragmentProcessor\20const*\2c\20GrGeometryProcessor::ProgramImpl::TransformInfo\2c\200ul\2c\201ul>\28std::__2::tuple&\2c\20std::__2::tuple&&\2c\20std::__2::__tuple_types\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +1792:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\29 +1793:void\20icu_74::\28anonymous\20namespace\29::MixedBlocks::extend\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\29 +1794:void\20AAT::Lookup>::collect_glyphs_filtered\28hb_bit_set_t&\2c\20unsigned\20int\2c\20hb_bit_page_t\20const&\29\20const +1795:void\20AAT::ClassTable>::collect_glyphs_filtered\28hb_bit_set_t&\2c\20unsigned\20int\2c\20hb_bit_page_t\20const&\29\20const +1796:void\20AAT::ClassTable>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +1797:utf8_prevCharSafeBody_74 +1798:ures_getStringWithAlias\28UResourceBundle\20const*\2c\20unsigned\20int\2c\20int\2c\20int*\2c\20UErrorCode*\29 +1799:ures_getStringByKeyWithFallback_74 +1800:ulocimp_getCountry_74\28char\20const*\2c\20char\20const**\2c\20UErrorCode&\29 +1801:ulocimp_forLanguageTag_74 +1802:udata_getMemory_74 +1803:ucptrie_openFromBinary_74 +1804:u_charType_74 +1805:toupper +1806:top12_301 +1807:tanf +1808:strcmpAfterPrefix\28char\20const*\2c\20char\20const*\2c\20int*\29 +1809:store\28unsigned\20char*\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20int\29 +1810:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +1811:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +1812:std::__2::unique_ptr::~unique_ptr\5babi:ne180100\5d\28\29 +1813:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skia::textlayout::Run*\29 +1814:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1815:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1816:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +1817:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28SkPath\20const&\29 +1818:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1819:std::__2::numpunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +1820:std::__2::istreambuf_iterator>::istreambuf_iterator\5babi:nn180100\5d\28std::__2::basic_istream>&\29 +1821:std::__2::istreambuf_iterator>::istreambuf_iterator\5babi:nn180100\5d\28\29 +1822:std::__2::function::operator\28\29\28int\2c\20skia::textlayout::Paragraph::VisitorInfo\20const*\29\20const +1823:std::__2::enable_if::value\2c\20sk_sp>::type\20GrResourceProvider::findByUniqueKey\28skgpu::UniqueKey\20const&\29 +1824:std::__2::deque>::end\5babi:ne180100\5d\28\29 +1825:std::__2::ctype::narrow\5babi:nn180100\5d\28wchar_t\2c\20char\29\20const +1826:std::__2::ctype::narrow\5babi:nn180100\5d\28char\2c\20char\29\20const +1827:std::__2::basic_string\2c\20std::__2::allocator>::__recommend\5babi:nn180100\5d\28unsigned\20long\29 +1828:std::__2::basic_string\2c\20std::__2::allocator>\20std::__2::operator+\5babi:ne180100\5d\2c\20std::__2::allocator>\28std::__2::basic_string\2c\20std::__2::allocator>&&\2c\20char\29 +1829:std::__2::basic_streambuf>::sputn\5babi:nn180100\5d\28char\20const*\2c\20long\29 +1830:std::__2::basic_streambuf>::setg\5babi:nn180100\5d\28char*\2c\20char*\2c\20char*\29 +1831:std::__2::__tree\2c\20std::__2::__map_value_compare\2c\20std::__2::less\2c\20true>\2c\20std::__2::allocator>>::destroy\28std::__2::__tree_node\2c\20void*>*\29 +1832:std::__2::__shared_ptr_pointer>::__on_zero_shared\28\29 +1833:std::__2::__num_get::__stage2_int_loop\28wchar_t\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20wchar_t\20const*\29 +1834:std::__2::__num_get::__stage2_int_loop\28char\2c\20int\2c\20char*\2c\20char*&\2c\20unsigned\20int&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20char\20const*\29 +1835:std::__2::__next_prime\28unsigned\20long\29 +1836:std::__2::__exception_guard_exceptions>::__destroy_vector>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +1837:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1838:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::allocator&\2c\20unsigned\20long\29 +1839:src_p\28unsigned\20char\2c\20unsigned\20char\29 +1840:sort_r_swap\28char*\2c\20char*\2c\20unsigned\20long\29 +1841:skvx::Vec<4\2c\20float>\20skvx::operator+<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +1842:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20int\2c\20void>\28int\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.7666\29 +1843:sktext::SkStrikePromise::SkStrikePromise\28sktext::SkStrikePromise&&\29 +1844:skif::LayerSpace::mapRect\28skif::LayerSpace\20const&\29\20const +1845:skif::LayerSpace::relevantSubset\28skif::LayerSpace\2c\20SkTileMode\29\20const +1846:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::resize\28int\29 +1847:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Hash\28std::__2::basic_string_view>\20const&\29 +1848:skia_private::THashTable::AdaptedTraits>::Hash\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +1849:skia_private::THashSet::contains\28SkSL::Variable\20const*\20const&\29\20const +1850:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +1851:skia_private::TArray\2c\20true>::~TArray\28\29 +1852:skia_private::TArray::push_back_raw\28int\29 +1853:skia_private::TArray::copy\28float\20const*\29 +1854:skia_private::TArray::push_back\28SkSL::Variable*&&\29 +1855:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +1856:skia_private::TArray::resize_back\28int\29 +1857:skia_private::AutoSTArray<4\2c\20float>::reset\28int\29 +1858:skia_png_free_data +1859:skia::textlayout::Run::Run\28skia::textlayout::ParagraphImpl*\2c\20SkShaper::RunHandler::RunInfo\20const&\2c\20unsigned\20long\2c\20float\2c\20bool\2c\20float\2c\20unsigned\20long\2c\20float\29 +1860:skia::textlayout::InternalLineMetrics::delta\28\29\20const +1861:skia::textlayout::Cluster::Cluster\28skia::textlayout::ParagraphImpl*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkSpan\2c\20float\2c\20float\29 +1862:skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::chopAndWriteCubics\28skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20skvx::Vec<2\2c\20float>\2c\20int\29 +1863:skgpu::ganesh::SurfaceDrawContext::fillRectToRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +1864:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::RawElement\20const&\29\20const +1865:skgpu::VertexWriter&\20skgpu::operator<<<4\2c\20SkPoint>\28skgpu::VertexWriter&\2c\20skgpu::VertexWriter::RepeatDesc<4\2c\20SkPoint>\20const&\29 +1866:skgpu::TAsyncReadResult::addCpuPlane\28sk_sp\2c\20unsigned\20long\29 +1867:skgpu::Swizzle::RGB1\28\29 +1868:skcpu::Draw::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29\20const +1869:skcms_Matrix3x3_concat +1870:sk_sp::reset\28SkMeshPriv::VB\20const*\29 +1871:sk_malloc_throw\28unsigned\20long\29 +1872:sbrk +1873:res_getArrayItem_74 +1874:read_curves\28unsigned\20char\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skcms_Curve*\29 +1875:quick_div\28int\2c\20int\29 +1876:processPropertySeq\28UBiDi*\2c\20LevState*\2c\20unsigned\20char\2c\20int\2c\20int\29 +1877:memchr +1878:left\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1879:inversion\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::Comparator\20const&\29 +1880:interp_quad_coords\28double\20const*\2c\20double\29 +1881:init_entry\28char\20const*\2c\20char\20const*\2c\20UErrorCode*\29 +1882:impeller::Vector4::operator==\28impeller::Vector4\20const&\29\20const +1883:impeller::TRect::GetPositive\28\29\20const +1884:icu_74::umtx_initImplPreInit\28icu_74::UInitOnce&\29 +1885:icu_74::umtx_initImplPostInit\28icu_74::UInitOnce&\29 +1886:icu_74::\28anonymous\20namespace\29::appendUnchanged\28char16_t*\2c\20int\2c\20int\2c\20char16_t\20const*\2c\20int\2c\20unsigned\20int\2c\20icu_74::Edits*\29 +1887:icu_74::UnicodeString::truncate\28int\29 +1888:icu_74::UnicodeString::releaseBuffer\28int\29 +1889:icu_74::UnicodeString::releaseArray\28\29 +1890:icu_74::UnicodeString::doReplace\28int\2c\20int\2c\20char16_t\20const*\2c\20int\2c\20int\29 +1891:icu_74::UnicodeString::UnicodeString\28char\20const*\2c\20int\2c\20icu_74::UnicodeString::EInvariant\29 +1892:icu_74::UnicodeSetStringSpan::~UnicodeSetStringSpan\28\29 +1893:icu_74::UnicodeSet::setToBogus\28\29 +1894:icu_74::UnicodeSet::operator=\28icu_74::UnicodeSet\20const&\29 +1895:icu_74::UnicodeSet::clear\28\29 +1896:icu_74::UVector::ensureCapacity\28int\2c\20UErrorCode&\29 +1897:icu_74::UVector32::UVector32\28int\2c\20UErrorCode&\29 +1898:icu_74::UCharsTrieElement::getString\28icu_74::UnicodeString\20const&\29\20const +1899:icu_74::ReorderingBuffer::append\28int\2c\20unsigned\20char\2c\20UErrorCode&\29 +1900:icu_74::PossibleWord::backUp\28UText*\29 +1901:icu_74::PossibleWord::acceptMarked\28UText*\29 +1902:icu_74::Normalizer2Factory::getNFCImpl\28UErrorCode&\29 +1903:icu_74::Locale::Locale\28\29 +1904:icu_74::LocalPointer::~LocalPointer\28\29 +1905:icu_74::LSR::indexForRegion\28char\20const*\29 +1906:icu_74::LSR::LSR\28char\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20int\2c\20UErrorCode&\29 +1907:icu_74::DictionaryBreakEngine::DictionaryBreakEngine\28\29 +1908:icu_74::CharacterProperties::getInclusionsForProperty\28UProperty\2c\20UErrorCode&\29 +1909:hb_serialize_context_t::object_t::fini\28\29 +1910:hb_sanitize_context_t::init\28hb_blob_t*\29 +1911:hb_ot_map_builder_t::add_feature\28hb_ot_map_feature_t\20const&\29 +1912:hb_buffer_t::ensure\28unsigned\20int\29 +1913:hb_blob_ptr_t::destroy\28\29 +1914:hb_bit_set_t::page_for\28unsigned\20int\2c\20bool\29 +1915:hairquad\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +1916:fmt_u +1917:flutter::DlImage::Make\28SkImage\20const*\29 +1918:flutter::DlColor::toC\28float\29 +1919:flutter::DisplayListMatrixClipState::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1920:flutter::DisplayListBuilder::Translate\28float\2c\20float\29 +1921:flutter::DisplayListBuilder::Save\28\29 +1922:flutter::DisplayListBuilder::GetEffectiveColor\28flutter::DlPaint\20const&\2c\20flutter::DisplayListAttributeFlags\29 +1923:flutter::DisplayListBuilder::ClipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +1924:flutter::AccumulationRect::accumulate\28impeller::TRect\29 +1925:float*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29 +1926:expf +1927:duplicate_pt\28SkPoint\20const&\2c\20SkPoint\20const&\29 +1928:decltype\28u_hasBinaryProperty_74\28std::forward\28fp\29\2c\20std::forward\28fp\29\29\29\20sk_u_hasBinaryProperty\28int&\2c\20UProperty&&\29 +1929:compute_quad_level\28SkPoint\20const*\29 +1930:compute_ULong_sum +1931:char*\20const&\20std::__2::max\5babi:nn180100\5d\28char*\20const&\2c\20char*\20const&\29 +1932:cff2_extents_param_t::update_bounds\28CFF::point_t\20const&\29 +1933:cf2_glyphpath_hintPoint +1934:cf2_arrstack_getPointer +1935:cbrtf +1936:can_add_curve\28SkPath::Verb\2c\20SkPoint*\29 +1937:call_hline_blitter\28SkBlitter*\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\29 +1938:bounds_t::update\28CFF::point_t\20const&\29 +1939:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\29\20const +1940:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1941:bool\20OT::OffsetTo\2c\20OT::Layout::GPOS_impl::CursivePosFormat1\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::CursivePosFormat1\20const*\29\20const +1942:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +1943:af_shaper_get_cluster +1944:_uhash_find\28UHashtable\20const*\2c\20UElement\2c\20int\29 +1945:_hb_ot_metrics_get_position_common\28hb_font_t*\2c\20hb_ot_metrics_tag_t\2c\20int*\29 +1946:__wasi_syscall_ret +1947:__tandf +1948:__syscall_ret +1949:__floatunsitf +1950:__cxa_allocate_exception +1951:_ZZNK6sktext3gpu12VertexFiller14fillVertexDataEii6SkSpanIPKNS0_5GlyphEERK8SkRGBA4fIL11SkAlphaType2EERK8SkMatrix7SkIRectPvENK3$_0clIPA4_NS0_12Mask2DVertexEEEDaT_ +1952:\28anonymous\20namespace\29::subtract\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +1953:\28anonymous\20namespace\29::MeshOp::fixedFunctionFlags\28\29\20const +1954:\28anonymous\20namespace\29::DrawAtlasOpImpl::fixedFunctionFlags\28\29\20const +1955:VP8LFillBitWindow +1956:Update_Max +1957:TT_Get_MM_Var +1958:Skwasm::createDlMatrixFrom3x3\28float\20const*\29 +1959:SkWriteBuffer::writeDataAsByteArray\28SkData\20const*\29 +1960:SkUTF::UTF8ToUTF16\28unsigned\20short*\2c\20int\2c\20char\20const*\2c\20unsigned\20long\29 +1961:SkTextBlob::RunRecord::textSize\28\29\20const +1962:SkTSpan::resetBounds\28SkTCurve\20const&\29 +1963:SkTSect::removeSpan\28SkTSpan*\29 +1964:SkTSect::BinarySearch\28SkTSect*\2c\20SkTSect*\2c\20SkIntersections*\29 +1965:SkTInternalLList::remove\28skgpu::Plot*\29 +1966:SkTInternalLList>\2c\20SkGoodHash\2c\20SkNoOpPurge>::Entry>::remove\28SkLRUCache>\2c\20SkGoodHash\2c\20SkNoOpPurge>::Entry*\29 +1967:SkTDArray::append\28\29 +1968:SkTConic::operator\5b\5d\28int\29\20const +1969:SkTBlockList::~SkTBlockList\28\29 +1970:SkStrokeRec::needToApply\28\29\20const +1971:SkStrokeRec::SkStrokeRec\28SkPaint\20const&\2c\20float\29 +1972:SkString::set\28char\20const*\2c\20unsigned\20long\29 +1973:SkStrikeSpec::findOrCreateStrike\28\29\20const +1974:SkStrike::digestFor\28skglyph::ActionType\2c\20SkPackedGlyphID\29 +1975:SkShaders::MatrixRec::applyForFragmentProcessor\28SkMatrix\20const&\29\20const +1976:SkScan::FillRect\28SkRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +1977:SkScalerContext_FreeType::setupSize\28\29 +1978:SkSampler::Fill\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::ZeroInitialized\29 +1979:SkSL::type_is_valid_for_color\28SkSL::Type\20const&\29 +1980:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_4::operator\28\29\28int\29\20const +1981:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_3::operator\28\29\28int\29\20const +1982:SkSL::optimize_comparison\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20bool\20\28*\29\28double\2c\20double\29\29 +1983:SkSL::VariableReference::Make\28SkSL::Position\2c\20SkSL::Variable\20const*\2c\20SkSL::VariableRefKind\29 +1984:SkSL::Variable*\20SkSL::SymbolTable::add\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +1985:SkSL::Type::coercionCost\28SkSL::Type\20const&\29\20const +1986:SkSL::SymbolTable::addArrayDimension\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20int\29 +1987:SkSL::String::appendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20...\29 +1988:SkSL::RP::VariableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +1989:SkSL::RP::Program::appendCopySlotsUnmasked\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +1990:SkSL::RP::Generator::pushBinaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +1991:SkSL::RP::Generator::emitTraceLine\28SkSL::Position\29 +1992:SkSL::RP::AutoStack::enter\28\29 +1993:SkSL::PipelineStage::PipelineStageCodeGenerator::writeStatement\28SkSL::Statement\20const&\29 +1994:SkSL::Operator::determineBinaryType\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\2c\20SkSL::Type\20const**\29\20const +1995:SkSL::NativeShader::~NativeShader\28\29 +1996:SkSL::GLSLCodeGenerator::getTypePrecision\28SkSL::Type\20const&\29 +1997:SkSL::ExpressionStatement::Make\28SkSL::Context\20const&\2c\20std::__2::unique_ptr>\29 +1998:SkSL::ConstructorDiagonalMatrix::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +1999:SkSL::ConstructorArrayCast::~ConstructorArrayCast\28\29 +2000:SkSL::ConstantFolder::MakeConstantValueForVariable\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +2001:SkSBlockAllocator<64ul>::SkSBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\29 +2002:SkRuntimeEffectBuilder::writableUniformData\28\29 +2003:SkRuntimeEffect::uniformSize\28\29\20const +2004:SkResourceCache::Key::init\28void*\2c\20unsigned\20long\20long\2c\20unsigned\20long\29 +2005:SkRegion::op\28SkRegion\20const&\2c\20SkRegion::Op\29 +2006:SkRect::toQuad\28SkPathDirection\29\20const +2007:SkRect::isFinite\28\29\20const +2008:SkRasterPipelineBlitter::appendStore\28SkRasterPipeline*\29\20const +2009:SkRasterPipeline::compile\28\29\20const +2010:SkRasterPipeline::appendClampIfNormalized\28SkImageInfo\20const&\29 +2011:SkRasterClipStack::writable_rc\28\29 +2012:SkRasterClip::SkRasterClip\28SkIRect\20const&\29 +2013:SkRRect::setRectRadii\28SkRect\20const&\2c\20SkPoint\20const*\29 +2014:SkPointPriv::EqualsWithinTolerance\28SkPoint\20const&\2c\20SkPoint\20const&\29 +2015:SkPoint::Length\28float\2c\20float\29 +2016:SkPixmap::operator=\28SkPixmap&&\29 +2017:SkPathWriter::matchedLast\28SkOpPtT\20const*\29\20const +2018:SkPathWriter::finishContour\28\29 +2019:SkPathEdgeIter::next\28\29 +2020:SkPathBuilder::addRect\28SkRect\20const&\2c\20SkPathDirection\29 +2021:SkPathBuilder::addRRect\28SkRRect\20const&\2c\20SkPathDirection\29 +2022:SkPath::getPoint\28int\29\20const +2023:SkPath::close\28\29 +2024:SkPaint::operator=\28SkPaint\20const&\29 +2025:SkPaint::nothingToDraw\28\29\20const +2026:SkPaint::isSrcOver\28\29\20const +2027:SkOpSpanBase::contains\28SkOpSegment\20const*\29\20const +2028:SkOpSegment::updateWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +2029:SkOpAngle::linesOnOriginalSide\28SkOpAngle\20const*\29 +2030:SkNoPixelsDevice::writableClip\28\29 +2031:SkNextID::ImageID\28\29 +2032:SkMatrix::setConcat\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +2033:SkMatrix::isFinite\28\29\20const +2034:SkMatrix::decomposeScale\28SkSize*\2c\20SkMatrix*\29\20const +2035:SkMaskBuilder::AllocImage\28unsigned\20long\2c\20SkMaskBuilder::AllocType\29 +2036:SkMask::computeImageSize\28\29\20const +2037:SkMask::AlphaIter<\28SkMask::Format\294>::operator*\28\29\20const +2038:SkM44::SkM44\28SkMatrix\20const&\29 +2039:SkLocalMatrixImageFilter::~SkLocalMatrixImageFilter\28\29 +2040:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_2D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +2041:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_blur_1D_shader\28int\2c\20SkKnownRuntimeEffects::StableKey\29 +2042:SkKnownRuntimeEffects::GetKnownRuntimeEffect\28SkKnownRuntimeEffects::StableKey\29 +2043:SkJSONWriter::endObject\28\29 +2044:SkJSONWriter::beginObject\28char\20const*\2c\20bool\29 +2045:SkJSONWriter::appendName\28char\20const*\29 +2046:SkIntersections::flip\28\29 +2047:SkImageInfo::MakeUnknown\28int\2c\20int\29 +2048:SkImageFilter::getInput\28int\29\20const +2049:SkFont::unicharToGlyph\28int\29\20const +2050:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29 +2051:SkDrawable::draw\28SkCanvas*\2c\20SkMatrix\20const*\29 +2052:SkDevice::setLocalToDevice\28SkM44\20const&\29 +2053:SkData::MakeWithoutCopy\28void\20const*\2c\20unsigned\20long\29 +2054:SkData::MakeWithProc\28void\20const*\2c\20unsigned\20long\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +2055:SkDRect::add\28SkDPoint\20const&\29 +2056:SkConic::chopAt\28float\2c\20SkConic*\29\20const +2057:SkColorSpace::gammaIsLinear\28\29\20const +2058:SkChopCubicAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +2059:SkCanvas::concat\28SkM44\20const&\29 +2060:SkCanvas::computeDeviceClipBounds\28bool\29\20const +2061:SkBlockAllocator::ByteRange\20SkBlockAllocator::allocate<4ul\2c\200ul>\28unsigned\20long\29 +2062:SkBitmap::operator=\28SkBitmap\20const&\29 +2063:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29 +2064:SkAutoSMalloc<1024ul>::SkAutoSMalloc\28unsigned\20long\29 +2065:RunBasedAdditiveBlitter::checkY\28int\29 +2066:RoughlyEqualUlps\28double\2c\20double\29 +2067:Read255UShort +2068:PS_Conv_ToFixed +2069:OT::post::accelerator_t::cmp_gids\28void\20const*\2c\20void\20const*\2c\20void*\29 +2070:OT::hmtxvmtx::accelerator_t::get_advance_without_var_unscaled\28unsigned\20int\29\20const +2071:OT::Layout::GPOS_impl::ValueFormat::apply_value\28OT::hb_ot_apply_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\2c\20hb_glyph_position_t&\29\20const +2072:GrTriangulator::VertexList::remove\28GrTriangulator::Vertex*\29 +2073:GrTriangulator::Vertex*\20SkArenaAlloc::make\28SkPoint&\2c\20int&&\29 +2074:GrTriangulator::Poly::addEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Side\2c\20GrTriangulator*\29 +2075:GrTextureEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20float\20const*\2c\20bool\29 +2076:GrSurface::invokeReleaseProc\28\29 +2077:GrSurface::GrSurface\28GrGpu*\2c\20SkISize\20const&\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +2078:GrStyledShape::operator=\28GrStyledShape\20const&\29 +2079:GrSimpleMeshDrawOpHelperWithStencil::createProgramInfoWithStencil\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +2080:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrGeometryProcessor*\2c\20GrProcessorSet&&\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrPipeline::InputFlags\2c\20GrUserStencilSettings\20const*\29 +2081:GrShape::setRRect\28SkRRect\20const&\29 +2082:GrShape::reset\28GrShape::Type\29 +2083:GrResourceProvider::findOrCreatePatternedIndexBuffer\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\2c\20skgpu::UniqueKey\20const&\29 +2084:GrResourceProvider::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\2c\20GrResourceProvider::ZeroInit\29 +2085:GrResourceProvider::assignUniqueKeyToResource\28skgpu::UniqueKey\20const&\2c\20GrGpuResource*\29 +2086:GrRenderTask::addDependency\28GrRenderTask*\29 +2087:GrRenderTask::GrRenderTask\28\29 +2088:GrRenderTarget::onRelease\28\29 +2089:GrQuadUtils::TessellationHelper::Vertices::asGrQuads\28GrQuad*\2c\20GrQuad::Type\2c\20GrQuad*\2c\20GrQuad::Type\29\20const +2090:GrProxyProvider::findOrCreateProxyByUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxy::UseAllocator\29 +2091:GrProxyProvider::assignUniqueKeyToProxy\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\29 +2092:GrPaint::setCoverageFragmentProcessor\28std::__2::unique_ptr>\29 +2093:GrMeshDrawOp::QuadHelper::QuadHelper\28GrMeshDrawTarget*\2c\20unsigned\20long\2c\20int\29 +2094:GrMakeCachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\29 +2095:GrIsStrokeHairlineOrEquivalent\28GrStyle\20const&\2c\20SkMatrix\20const&\2c\20float*\29 +2096:GrImageInfo::minRowBytes\28\29\20const +2097:GrGpuResource::CacheAccess::isUsableAsScratch\28\29\20const +2098:GrGeometryProcessor::ProgramImpl::setupUniformColor\28GrGLSLFPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20GrResourceHandle*\29 +2099:GrGLSLUniformHandler::addUniformArray\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20int\2c\20char\20const**\29 +2100:GrGLSLShaderBuilder::code\28\29 +2101:GrGLOpsRenderPass::bindVertexBuffer\28GrBuffer\20const*\2c\20int\29 +2102:GrGLGpu::unbindSurfaceFBOForPixelOps\28GrSurface*\2c\20int\2c\20unsigned\20int\29 +2103:GrGLGpu::flushRenderTarget\28GrGLRenderTarget*\2c\20bool\29 +2104:GrGLGpu::bindSurfaceFBOForPixelOps\28GrSurface*\2c\20int\2c\20unsigned\20int\2c\20GrGLGpu::TempFBOTarget\29 +2105:GrGLCompileAndAttachShader\28GrGLContext\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkSL::NativeShader\20const&\2c\20bool\2c\20GrThreadSafePipelineBuilder::Stats*\2c\20skgpu::ShaderErrorHandler*\29 +2106:GrFragmentProcessors::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkColorFilter\20const*\2c\20std::__2::unique_ptr>\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +2107:GrFragmentProcessor::visitTextureEffects\28std::__2::function\20const&\29\20const +2108:GrFragmentProcessor::MakeColor\28SkRGBA4f<\28SkAlphaType\292>\29 +2109:GrDirectContextPriv::flushSurface\28GrSurfaceProxy*\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +2110:GrBlendFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkBlendMode\2c\20bool\29 +2111:GrBackendFormat::operator=\28GrBackendFormat\20const&\29 +2112:GrAAConvexTessellator::addPt\28SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20GrAAConvexTessellator::CurveState\29 +2113:GetHtreeGroupForPos +2114:FilterLoop26_C +2115:FilterLoop24_C +2116:FT_Outline_Transform +2117:ExtensionListEntry*\20icu_74::MemoryPool::create<>\28\29 +2118:CFF::parsed_values_t::add_op\28unsigned\20int\2c\20CFF::byte_str_ref_t\20const&\2c\20CFF::op_str_t\20const&\29 +2119:CFF::dict_opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +2120:CFF::cs_opset_t\2c\20cff2_extents_param_t\2c\20cff2_path_procs_extents_t>::process_post_move\28unsigned\20int\2c\20CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\29 +2121:CFF::cs_opset_t::process_post_move\28unsigned\20int\2c\20CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\29 +2122:CFF::cs_interp_env_t>>::determine_hintmask_size\28\29 +2123:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::begin\28\29\20const +2124:AlmostBetweenUlps\28double\2c\20double\2c\20double\29 +2125:ActiveEdgeList::SingleRotation\28ActiveEdge*\2c\20int\29 +2126:AAT::hb_aat_apply_context_t::replace_glyph_inplace\28unsigned\20int\2c\20unsigned\20int\29 +2127:1911 +2128:1912 +2129:1913 +2130:1914 +2131:void\20std::__2::__stable_sort\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +2132:void\20std::__2::__split_buffer&>::__construct_at_end\2c\200>\28std::__2::move_iterator\2c\20std::__2::move_iterator\29 +2133:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d>&>\2c\20std::__2::tuple>>\2c\20bool\2c\20std::__2::unique_ptr>\2c\200ul\2c\201ul>\28std::__2::tuple>&>&\2c\20std::__2::tuple>>&&\2c\20std::__2::__tuple_types>>\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +2134:void\20extend_pts<\28SkPaint::Cap\292>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +2135:void\20extend_pts<\28SkPaint::Cap\291>\28std::__2::optional\2c\20std::__2::optional\2c\20SkSpan\29 +2136:void\20SkSafeUnref\28SkTextBlob*\29 +2137:void\20SkSafeUnref\28SkIcuBreakIteratorCache::BreakIteratorRef*\29 +2138:void\20SkSafeUnref\28GrTextureProxy*\29 +2139:utext_setup_74 +2140:utext_openUChars_74 +2141:utext_close_74 +2142:utext_char32At_74 +2143:ures_getStringByKey_74 +2144:unsigned\20int*\20SkRecordCanvas::copy\28unsigned\20int\20const*\2c\20unsigned\20long\29 +2145:ulocimp_getKeywordValue_74 +2146:udata_openChoice_74 +2147:ucptrie_internalSmallU8Index_74 +2148:ucptrie_get_74 +2149:ucptrie_getRange_74 +2150:ubrk_close_74 +2151:u_charsToUChars_74 +2152:tt_cmap14_ensure +2153:std::__2::vector>\2c\20std::__2::allocator>>>::push_back\5babi:ne180100\5d\28std::__2::unique_ptr>&&\29 +2154:std::__2::vector>\2c\20std::__2::allocator>>>::~vector\5babi:ne180100\5d\28\29 +2155:std::__2::vector>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +2156:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +2157:std::__2::vector\2c\20std::__2::allocator>>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +2158:std::__2::vector>::resize\28unsigned\20long\29 +2159:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +2160:std::__2::unique_ptr>\20\5b\5d\2c\20std::__2::default_delete>\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2161:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2162:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2163:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2164:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2165:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrDrawOpAtlas*\29 +2166:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char8_t*\2c\20char8_t*\2c\20char8_t*&\29\20const +2167:std::__2::basic_string\2c\20std::__2::allocator>::clear\5babi:ne180100\5d\28\29 +2168:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28char\20const*\29 +2169:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20char\20const*\29 +2170:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +2171:std::__2::basic_string\2c\20std::__2::allocator>::__assign_external\28char\20const*\29 +2172:std::__2::basic_string\2c\20std::__2::allocator>::__throw_length_error\5babi:ne180100\5d\28\29\20const +2173:std::__2::basic_ostream>::sentry::~sentry\28\29 +2174:std::__2::basic_ostream>::sentry::sentry\28std::__2::basic_ostream>&\29 +2175:std::__2::basic_ios>::~basic_ios\28\29 +2176:std::__2::array\2c\204ul>::~array\28\29 +2177:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +2178:std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>::__copy_constructor\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29 +2179:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +2180:std::__2::__optional_copy_base::__optional_copy_base\5babi:ne180100\5d\28std::__2::__optional_copy_base\20const&\29 +2181:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20wchar_t&\29 +2182:std::__2::__num_get::__do_widen\28std::__2::ios_base&\2c\20wchar_t*\29\20const +2183:std::__2::__num_get::__stage2_int_prep\28std::__2::ios_base&\2c\20char&\29 +2184:std::__2::__itoa::__append1\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2185:std::__2::__function::__value_func::operator=\5babi:ne180100\5d\28std::__2::__function::__value_func&&\29 +2186:std::__2::__function::__value_func::operator\28\29\5babi:ne180100\5d\28SkIRect\20const&\29\20const +2187:sqrtf +2188:skvx::Vec<4\2c\20unsigned\20int>&\20skvx::operator-=<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +2189:skvx::Vec<4\2c\20unsigned\20int>&\20skvx::operator+=<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +2190:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator><4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +2191:skvx::Vec<4\2c\20float>\20skvx::operator+<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29\20\28.6379\29 +2192:skvx::Vec<4\2c\20float>\20skvx::operator+<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.1038\29 +2193:skvx::Vec<4\2c\20float>\20skvx::max<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.8219\29 +2194:skvx::Vec<4\2c\20float>\20skvx::max<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +2195:sktext::gpu::SubRunList::append\28std::__2::unique_ptr\29 +2196:skif::\28anonymous\20namespace\29::draw_tiled_border\28SkCanvas*\2c\20SkTileMode\2c\20SkPaint\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::LayerSpace\2c\20skif::LayerSpace\29::$_0::operator\28\29\28SkRect\20const&\2c\20SkRect\20const&\29\20const +2197:skif::LayerSpace::inverseMapRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29\20const +2198:skif::FilterResult::analyzeBounds\28skif::LayerSpace\20const&\2c\20skif::FilterResult::BoundsScope\29\20const +2199:skif::FilterResult::AutoSurface::snap\28\29 +2200:skif::FilterResult::AutoSurface::AutoSurface\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult::PixelBoundary\2c\20bool\2c\20SkSurfaceProps\20const*\29 +2201:skia_private::THashTable::AdaptedTraits>::findOrNull\28skgpu::UniqueKey\20const&\29\20const +2202:skia_private::TArray::reset\28int\29 +2203:skia_private::TArray::reserve_exact\28int\29 +2204:skia_private::TArray::push_back\28\29 +2205:skia_private::TArray::checkRealloc\28int\2c\20double\29 +2206:skia_private::TArray::push_back_raw\28int\29 +2207:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +2208:skia_private::TArray::checkRealloc\28int\2c\20double\29 +2209:skia_private::AutoSTArray<8\2c\20unsigned\20int>::reset\28int\29 +2210:skia_private::AutoSTArray<24\2c\20unsigned\20int>::~AutoSTArray\28\29 +2211:skia_png_reciprocal2 +2212:skia_png_benign_error +2213:skia::textlayout::TextStyle::TextStyle\28\29 +2214:skia::textlayout::Run::~Run\28\29 +2215:skia::textlayout::Run::posX\28unsigned\20long\29\20const +2216:skia::textlayout::ParagraphStyle::ParagraphStyle\28skia::textlayout::ParagraphStyle\20const&\29 +2217:skia::textlayout::InternalLineMetrics::height\28\29\20const +2218:skia::textlayout::InternalLineMetrics::add\28skia::textlayout::Run*\29 +2219:skia::textlayout::FontCollection::findTypefaces\28std::__2::vector>\20const&\2c\20SkFontStyle\2c\20std::__2::optional\20const&\29 +2220:skgpu::ganesh::TextureOp::BatchSizeLimiter::createOp\28GrTextureSetEntry*\2c\20int\2c\20GrAAType\29 +2221:skgpu::ganesh::SurfaceFillContext::fillRectWithFP\28SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +2222:skgpu::ganesh::SurfaceFillContext::fillRectToRectWithFP\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +2223:skgpu::ganesh::SurfaceDrawContext::drawShape\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\29 +2224:skgpu::ganesh::SurfaceDrawContext::drawShapeUsingPathRenderer\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20GrStyledShape&&\2c\20bool\29 +2225:skgpu::ganesh::SurfaceDrawContext::drawRRect\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20GrStyle\20const&\29 +2226:skgpu::ganesh::SurfaceDrawContext::drawFilledQuad\28GrClip\20const*\2c\20GrPaint&&\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\29 +2227:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29::$_0::~$_0\28\29 +2228:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29 +2229:skgpu::ganesh::SurfaceContext::PixelTransferResult::PixelTransferResult\28skgpu::ganesh::SurfaceContext::PixelTransferResult&&\29 +2230:skgpu::ganesh::SoftwarePathRenderer::DrawNonAARect\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const&\29 +2231:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::vertexSize\28\29\20const +2232:skgpu::ganesh::OpsTask::OpChain::List::List\28skgpu::ganesh::OpsTask::OpChain::List&&\29 +2233:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29::$_0::operator\28\29\28GrSurfaceProxyView\20const&\29\20const +2234:skgpu::ganesh::Device::targetProxy\28\29 +2235:skgpu::ganesh::ClipStack::getConservativeBounds\28\29\20const +2236:skgpu::UniqueKeyInvalidatedMessage::UniqueKeyInvalidatedMessage\28skgpu::UniqueKeyInvalidatedMessage\20const&\29 +2237:skgpu::UniqueKey::operator=\28skgpu::UniqueKey\20const&\29 +2238:skgpu::TAsyncReadResult::addTransferResult\28skgpu::ganesh::SurfaceContext::PixelTransferResult\20const&\2c\20SkISize\2c\20unsigned\20long\2c\20skgpu::TClientMappedBufferManager*\29 +2239:skgpu::Swizzle::asString\28\29\20const +2240:skgpu::GetApproxSize\28SkISize\29 +2241:skcms_Matrix3x3_invert +2242:sk_srgb_linear_singleton\28\29 +2243:sk_sp::reset\28SkVertices*\29 +2244:sk_sp::operator=\28sk_sp\20const&\29 +2245:sk_sp::reset\28SkPathRef*\29 +2246:sk_sp::reset\28GrGpuBuffer*\29 +2247:sk_sp\20sk_make_sp\28\29 +2248:sfnt_get_name_id +2249:set_glyph\28hb_glyph_info_t&\2c\20hb_font_t*\29 +2250:roundf +2251:res_getTableItemByIndex_74 +2252:remove_node\28OffsetEdge\20const*\2c\20OffsetEdge**\29 +2253:read_curve\28unsigned\20char\20const*\2c\20unsigned\20int\2c\20skcms_Curve*\2c\20unsigned\20int*\29 +2254:ps_parser_to_token +2255:precisely_between\28double\2c\20double\2c\20double\29 +2256:path_quadraticBezierTo +2257:path_cubicTo +2258:next_char\28hb_buffer_t*\2c\20unsigned\20int\29 +2259:log2f +2260:log +2261:less_or_equal_ulps\28float\2c\20float\2c\20int\29 +2262:is_consonant\28hb_glyph_info_t\20const&\29 +2263:impeller::\28anonymous\20namespace\29::CornerContains\28impeller::RoundSuperellipseParam::Quadrant\20const&\2c\20impeller::TPoint\20const&\2c\20bool\29 +2264:impeller::\28anonymous\20namespace\29::ComputeQuadrant\28impeller::TPoint\2c\20impeller::TPoint\2c\20impeller::TSize\2c\20impeller::TSize\29 +2265:impeller::TRect::Intersection\28impeller::TRect\20const&\29\20const +2266:impeller::Matrix::HasPerspective2D\28\29\20const +2267:icu_74::\28anonymous\20namespace\29::codePointFromValidUTF8\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\29 +2268:icu_74::\28anonymous\20namespace\29::MutableCodePointTrie::get\28int\29\20const +2269:icu_74::\28anonymous\20namespace\29::MixedBlocks::init\28int\2c\20int\29 +2270:icu_74::\28anonymous\20namespace\29::AliasReplacer::same\28char\20const*\2c\20char\20const*\29 +2271:icu_74::\28anonymous\20namespace\29::AliasReplacer::replaceLanguage\28bool\2c\20bool\2c\20bool\2c\20icu_74::UVector&\2c\20UErrorCode&\29 +2272:icu_74::\28anonymous\20namespace\29::AliasDataBuilder::readAlias\28UResourceBundle*\2c\20icu_74::UniqueCharStrings*\2c\20icu_74::LocalMemory&\2c\20icu_74::LocalMemory&\2c\20int&\2c\20void\20\28*\29\28char\20const*\29\2c\20void\20\28*\29\28char16_t\20const*\29\2c\20UErrorCode&\29 +2273:icu_74::UnicodeString::tempSubString\28int\2c\20int\29\20const +2274:icu_74::UnicodeString::countChar32\28int\2c\20int\29\20const +2275:icu_74::UnicodeString::append\28int\29 +2276:icu_74::UnicodeString::append\28icu_74::ConstChar16Ptr\2c\20int\29 +2277:icu_74::UnicodeString::UnicodeString\28char16_t\20const*\2c\20int\29 +2278:icu_74::UnicodeSetStringSpan::UnicodeSetStringSpan\28icu_74::UnicodeSet\20const&\2c\20icu_74::UVector\20const&\2c\20unsigned\20int\29 +2279:icu_74::UnicodeSet::applyFilter\28signed\20char\20\28*\29\28int\2c\20void*\29\2c\20void*\2c\20icu_74::UnicodeSet\20const*\2c\20UErrorCode&\29 +2280:icu_74::UVector::contains\28void*\29\20const +2281:icu_74::UVector32::~UVector32\28\29 +2282:icu_74::UVector32::setSize\28int\29 +2283:icu_74::UCharsTrieBuilder::write\28char16_t\20const*\2c\20int\29 +2284:icu_74::ReorderingBuffer::resize\28int\2c\20UErrorCode&\29 +2285:icu_74::Normalizer2Impl::compose\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20signed\20char\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +2286:icu_74::LocaleUtility::initLocaleFromName\28icu_74::UnicodeString\20const&\2c\20icu_74::Locale&\29 +2287:icu_74::LocalUEnumerationPointer::~LocalUEnumerationPointer\28\29 +2288:icu_74::LSR::LSR\28icu_74::StringPiece\2c\20icu_74::StringPiece\2c\20icu_74::StringPiece\2c\20int\2c\20UErrorCode&\29 +2289:icu_74::Edits::addUnchanged\28int\29 +2290:icu_74::DictionaryBreakEngine::~DictionaryBreakEngine\28\29 +2291:icu_74::BytesTrie::~BytesTrie\28\29 +2292:icu_74::BytesTrie::getValue\28\29\20const +2293:icu_74::BreakIterator::createInstance\28icu_74::Locale\20const&\2c\20int\2c\20UErrorCode&\29 +2294:icu_74::BreakIterator::buildInstance\28icu_74::Locale\20const&\2c\20char\20const*\2c\20UErrorCode&\29 +2295:hb_unicode_funcs_destroy +2296:hb_serialize_context_t::pop_discard\28\29 +2297:hb_paint_funcs_t::pop_clip\28void*\29 +2298:hb_ot_map_t::feature_map_t\20const*\20hb_vector_t::bsearch\28unsigned\20int\20const&\2c\20hb_ot_map_t::feature_map_t\20const*\29\20const +2299:hb_lazy_loader_t\2c\20hb_face_t\2c\2015u\2c\20OT::glyf_accelerator_t>::get_stored\28\29\20const +2300:hb_indic_would_substitute_feature_t::init\28hb_ot_map_t\20const*\2c\20unsigned\20int\2c\20bool\29 +2301:hb_hashmap_t::alloc\28unsigned\20int\29 +2302:hb_font_t::get_glyph_v_advance\28unsigned\20int\29 +2303:hb_font_t::get_glyph_extents\28unsigned\20int\2c\20hb_glyph_extents_t*\29 +2304:hb_draw_funcs_t::emit_cubic_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +2305:hb_buffer_t::replace_glyph\28unsigned\20int\29 +2306:hb_buffer_t::output_glyph\28unsigned\20int\29 +2307:hb_buffer_t::make_room_for\28unsigned\20int\2c\20unsigned\20int\29 +2308:hb_buffer_t::_set_glyph_flags\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +2309:hb_buffer_create_similar +2310:gray_set_cell +2311:ft_service_list_lookup +2312:fseek +2313:flutter::ToSk\28impeller::Matrix\20const*\2c\20SkMatrix&\29 +2314:flutter::ToSk\28flutter::DlImageFilter\20const*\29 +2315:flutter::ToSkRRect\28impeller::RoundRect\20const&\29 +2316:flutter::DlTextSkia::GetTextFrame\28\29\20const +2317:flutter::DlSkCanvasDispatcher::safe_paint\28bool\29 +2318:flutter::DlPath::DlPath\28SkPath\20const&\29 +2319:flutter::DisplayListBuilder::drawRect\28impeller::TRect\20const&\29 +2320:flutter::DisplayListBuilder::drawOval\28impeller::TRect\20const&\29 +2321:flutter::DisplayListBuilder::UpdateCurrentOpacityCompatibility\28\29 +2322:flutter::DisplayListBuilder::TransformReset\28\29 +2323:flutter::DisplayListBuilder::TransformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +2324:flutter::DisplayListBuilder::Transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +2325:flutter::DisplayListBuilder::DrawRect\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +2326:flutter::DisplayListBuilder::DrawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +2327:flutter::DisplayListBuilder::ClipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +2328:flutter::DisplayListBuilder::AccumulateUnbounded\28\29 +2329:find_table +2330:findBasename\28char\20const*\29 +2331:fillcheckrect\28int\2c\20int\2c\20int\2c\20int\2c\20SkBlitter*\29 +2332:fflush +2333:fclose +2334:expm1 +2335:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker\2c\20float&>\28float&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2336:crc_word +2337:choose_bmp_texture_colortype\28GrCaps\20const*\2c\20SkBitmap\20const&\29 +2338:char*\20sktext::gpu::BagOfBytes::allocateBytesFor\28int\29 +2339:cff_parse_fixed +2340:cf2_interpT2CharString +2341:cf2_hintmap_insertHint +2342:cf2_hintmap_build +2343:cf2_glyphpath_moveTo +2344:cf2_glyphpath_lineTo +2345:bool\20std::__2::operator==\5babi:ne180100\5d>\28std::__2::vector>\20const&\2c\20std::__2::vector>\20const&\29 +2346:bool\20std::__2::__less::operator\28\29\5babi:nn180100\5d\28unsigned\20int\20const&\2c\20unsigned\20long\20const&\29\20const +2347:bool\20optional_eq\28std::__2::optional\2c\20SkPathVerb\29 +2348:bool\20SkIsFinite\28float\20const*\2c\20int\29 +2349:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +2350:blit_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +2351:afm_tokenize +2352:af_glyph_hints_reload +2353:adjustPointer\28UText*\2c\20void\20const**\2c\20UText\20const*\29 +2354:_isVariantSubtag\28char\20const*\2c\20int\29 +2355:_isTKey\28char\20const*\2c\20int\29 +2356:_isSepListOf\28signed\20char\20\28*\29\28char\20const*\2c\20int\29\2c\20char\20const*\2c\20int\29 +2357:_isAlphaNumericStringLimitedLength\28char\20const*\2c\20int\2c\20int\2c\20int\29 +2358:_hb_glyph_info_set_unicode_props\28hb_glyph_info_t*\2c\20hb_buffer_t*\29 +2359:_hb_draw_funcs_set_middle\28hb_draw_funcs_t*\2c\20void*\2c\20void\20\28*\29\28void*\29\29 +2360:__wasm_setjmp +2361:__sin +2362:__cos +2363:\28anonymous\20namespace\29::valid_unit_divide\28float\2c\20float\2c\20float*\29 +2364:\28anonymous\20namespace\29::getValue\28UCPTrieData\2c\20UCPTrieValueWidth\2c\20int\29 +2365:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_1::operator\28\29\28SkSpan\29\20const +2366:\28anonymous\20namespace\29::draw_stencil_rect\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrHardClip\20const&\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +2367:\28anonymous\20namespace\29::can_reorder\28SkRect\20const&\2c\20SkRect\20const&\29 +2368:\28anonymous\20namespace\29::FillRectOpImpl::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +2369:TransformDC_C +2370:Skwasm::makeCurrent\28unsigned\20long\29 +2371:SkWriter32::writeSampling\28SkSamplingOptions\20const&\29 +2372:SkWriter32::writePad\28void\20const*\2c\20unsigned\20long\29 +2373:SkTextBlobRunIterator::next\28\29 +2374:SkTextBlobBuilder::make\28\29 +2375:SkTSect::addOne\28\29 +2376:SkTMultiMap::remove\28skgpu::ScratchKey\20const&\2c\20GrGpuResource\20const*\29 +2377:SkTDArray::append\28\29 +2378:SkTDArray::append\28\29 +2379:SkSurfaces::RenderTarget\28GrRecordingContext*\2c\20skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20int\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const*\2c\20bool\2c\20bool\29 +2380:SkStrokeRec::isFillStyle\28\29\20const +2381:SkString::appendU32\28unsigned\20int\29 +2382:SkString::SkString\28std::__2::basic_string_view>\29 +2383:SkSpecialImages::MakeFromRaster\28SkIRect\20const&\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\29 +2384:SkShaders::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +2385:SkShaderUtils::GLSLPrettyPrint::appendChar\28char\29 +2386:SkScopeExit::~SkScopeExit\28\29 +2387:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\29 +2388:SkSTArenaAlloc<1024ul>::SkSTArenaAlloc\28unsigned\20long\29 +2389:SkSL::is_scalar_op_matrix\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +2390:SkSL::evaluate_n_way_intrinsic\28SkSL::Context\20const&\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +2391:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitType\28SkSL::Type\20const&\29 +2392:SkSL::Variable::initialValue\28\29\20const +2393:SkSL::Variable*\20SkSL::SymbolTable::takeOwnershipOfSymbol\28std::__2::unique_ptr>\29 +2394:SkSL::Type::canCoerceTo\28SkSL::Type\20const&\2c\20bool\29\20const +2395:SkSL::SymbolTable::takeOwnershipOfString\28std::__2::basic_string\2c\20std::__2::allocator>\29 +2396:SkSL::RP::pack_nybbles\28SkSpan\29 +2397:SkSL::RP::Generator::foldComparisonOp\28SkSL::Operator\2c\20int\29 +2398:SkSL::RP::Generator::emitTraceScope\28int\29 +2399:SkSL::RP::Generator::createStack\28\29 +2400:SkSL::RP::Builder::trace_var\28int\2c\20SkSL::RP::SlotRange\29 +2401:SkSL::RP::Builder::jump\28int\29 +2402:SkSL::RP::Builder::dot_floats\28int\29 +2403:SkSL::RP::Builder::branch_if_no_lanes_active\28int\29 +2404:SkSL::RP::AutoStack::~AutoStack\28\29 +2405:SkSL::RP::AutoStack::pushClone\28int\29 +2406:SkSL::Position::rangeThrough\28SkSL::Position\29\20const +2407:SkSL::PipelineStage::PipelineStageCodeGenerator::AutoOutputBuffer::~AutoOutputBuffer\28\29 +2408:SkSL::Parser::type\28SkSL::Modifiers*\29 +2409:SkSL::Parser::parseArrayDimensions\28SkSL::Position\2c\20SkSL::Type\20const**\29 +2410:SkSL::Parser::modifiers\28\29 +2411:SkSL::Parser::assignmentExpression\28\29 +2412:SkSL::Parser::arraySize\28long\20long*\29 +2413:SkSL::ModifierFlags::paddedDescription\28\29\20const +2414:SkSL::Literal::MakeBool\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20bool\29 +2415:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29::$_2::operator\28\29\28SkSL::ExpressionArray\20const&\29\20const +2416:SkSL::IRHelpers::Swizzle\28std::__2::unique_ptr>\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29\20const +2417:SkSL::GLSLCodeGenerator::writeTypePrecision\28SkSL::Type\20const&\29 +2418:SkSL::FunctionDeclaration::getMainCoordsParameter\28\29\20const +2419:SkSL::ExpressionArray::clone\28\29\20const +2420:SkSL::ConstantFolder::GetConstantValue\28SkSL::Expression\20const&\2c\20double*\29 +2421:SkSL::ConstantFolder::GetConstantInt\28SkSL::Expression\20const&\2c\20long\20long*\29 +2422:SkSL::Compiler::~Compiler\28\29 +2423:SkSL::Compiler::errorText\28bool\29 +2424:SkSL::Compiler::Compiler\28\29 +2425:SkSL::Analysis::IsTrivialExpression\28SkSL::Expression\20const&\29 +2426:SkRuntimeEffectPriv::TransformUniforms\28SkSpan\2c\20sk_sp\2c\20SkColorSpace\20const*\29 +2427:SkRuntimeEffectBuilder::~SkRuntimeEffectBuilder\28\29 +2428:SkRuntimeEffectBuilder::makeShader\28SkMatrix\20const*\29\20const +2429:SkRuntimeEffectBuilder::SkRuntimeEffectBuilder\28sk_sp\29 +2430:SkRuntimeEffectBuilder::BuilderChild&\20SkRuntimeEffectBuilder::BuilderChild::operator=\28sk_sp\29 +2431:SkRuntimeEffect::findChild\28std::__2::basic_string_view>\29\20const +2432:SkRegion::setPath\28SkPath\20const&\2c\20SkRegion\20const&\29 +2433:SkRegion::Iterator::Iterator\28SkRegion\20const&\29 +2434:SkReduceOrder::Quad\28SkPoint\20const*\2c\20SkPoint*\29 +2435:SkRect::joinPossiblyEmptyRect\28SkRect\20const&\29 +2436:SkRasterPipelineContexts::BinaryOpCtx*\20SkArenaAlloc::make\28SkRasterPipelineContexts::BinaryOpCtx\20const&\29 +2437:SkRasterPipelineBlitter::appendClipScale\28SkRasterPipeline*\29\20const +2438:SkRasterPipelineBlitter::appendClipLerp\28SkRasterPipeline*\29\20const +2439:SkRRect::MakeRectXY\28SkRect\20const&\2c\20float\2c\20float\29 +2440:SkRGBA4f<\28SkAlphaType\293>::toSkColor\28\29\20const +2441:SkRGBA4f<\28SkAlphaType\292>::toBytes_RGBA\28\29\20const +2442:SkRGBA4f<\28SkAlphaType\292>::fitsInBytes\28\29\20const +2443:SkPointPriv::EqualsWithinTolerance\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\29 +2444:SkPoint*\20SkRecordCanvas::copy\28SkPoint\20const*\2c\20unsigned\20long\29 +2445:SkPoint*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29 +2446:SkPixmap::reset\28\29 +2447:SkPictureRecord::addImage\28SkImage\20const*\29 +2448:SkPathRaw::iter\28\29\20const +2449:SkPathBuilder::incReserve\28int\29 +2450:SkPathBuilder::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +2451:SkPath::isLine\28SkPoint*\29\20const +2452:SkParsePath::ToSVGString\28SkPath\20const&\2c\20SkParsePath::PathEncoding\29::$_0::operator\28\29\28char\2c\20SkPoint\20const*\2c\20unsigned\20long\29\20const +2453:SkPaintPriv::ComputeLuminanceColor\28SkPaint\20const&\29 +2454:SkPaint::SkPaint\28SkPaint&&\29 +2455:SkOpSpan::release\28SkOpPtT\20const*\29 +2456:SkOpContourBuilder::addCurve\28SkPath::Verb\2c\20SkPoint\20const*\2c\20float\29 +2457:SkMipmap::Build\28SkPixmap\20const&\2c\20SkDiscardableMemory*\20\28*\29\28unsigned\20long\29\2c\20bool\29 +2458:SkMeshSpecification::Varying::Varying\28SkMeshSpecification::Varying&&\29 +2459:SkMatrix::mapOrigin\28\29\20const +2460:SkMaskFilter::MakeBlur\28SkBlurStyle\2c\20float\2c\20bool\29 +2461:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29 +2462:SkJSONWriter::endArray\28\29 +2463:SkJSONWriter::beginValue\28bool\29 +2464:SkJSONWriter::beginArray\28char\20const*\2c\20bool\29 +2465:SkIntersections::insertNear\28double\2c\20double\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29 +2466:SkImageShader::Make\28sk_sp\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +2467:SkImageGenerator::onRefEncodedData\28\29 +2468:SkIRect::inset\28int\2c\20int\29 +2469:SkIRect::MakeXYWH\28int\2c\20int\2c\20int\2c\20int\29 +2470:SkIDChangeListener::List::changed\28\29 +2471:SkGradientBaseShader::flatten\28SkWriteBuffer&\29\20const +2472:SkGlyph::setPath\28SkArenaAlloc*\2c\20SkPath\20const*\2c\20bool\2c\20bool\29 +2473:SkFont::getMetrics\28SkFontMetrics*\29\20const +2474:SkFont::SkFont\28\29 +2475:SkFindQuadMaxCurvature\28SkPoint\20const*\29 +2476:SkFDot6Div\28int\2c\20int\29 +2477:SkEvalQuadAt\28SkPoint\20const*\2c\20float\29 +2478:SkEvalCubicAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29 +2479:SkEdgeClipper::appendVLine\28float\2c\20float\2c\20float\2c\20bool\29 +2480:SkDrawShadowMetrics::GetSpotParams\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float*\2c\20float*\2c\20SkPoint*\29 +2481:SkDevice::setGlobalCTM\28SkM44\20const&\29 +2482:SkDevice::accessPixels\28SkPixmap*\29 +2483:SkDLine::exactPoint\28SkDPoint\20const&\29\20const +2484:SkDCubic::FindExtrema\28double\20const*\2c\20double*\29 +2485:SkConic::TransformW\28SkPoint\20const*\2c\20float\2c\20SkMatrix\20const&\29 +2486:SkColorSpace::MakeSRGBLinear\28\29 +2487:SkColorInfo::isOpaque\28\29\20const +2488:SkColorFilters::Blend\28unsigned\20int\2c\20SkBlendMode\29 +2489:SkCodec::dimensionsSupported\28SkISize\20const&\29 +2490:SkCanvas::getLocalClipBounds\28\29\20const +2491:SkCanvas::drawIRect\28SkIRect\20const&\2c\20SkPaint\20const&\29 +2492:SkBulkGlyphMetrics::glyphs\28SkSpan\29 +2493:SkBlockAllocator::releaseBlock\28SkBlockAllocator::Block*\29 +2494:SkBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +2495:SkBlendMode_AppendStages\28SkBlendMode\2c\20SkRasterPipeline*\29 +2496:SkBitmap::tryAllocPixels\28SkBitmap::Allocator*\29 +2497:SkBitmap::operator=\28SkBitmap&&\29 +2498:SkBitmap::notifyPixelsChanged\28\29\20const +2499:SkBitmap::getAddr\28int\2c\20int\29\20const +2500:SkBinaryWriteBuffer::writeByteArray\28void\20const*\2c\20unsigned\20long\29 +2501:SkAutoPixmapStorage::SkAutoPixmapStorage\28\29 +2502:SkAutoDeviceTransformRestore::~SkAutoDeviceTransformRestore\28\29 +2503:SkAutoDeviceTransformRestore::SkAutoDeviceTransformRestore\28SkDevice*\2c\20SkM44\20const&\29 +2504:SkAutoCanvasRestore::SkAutoCanvasRestore\28SkCanvas*\2c\20bool\29 +2505:SkAutoBlitterChoose::SkAutoBlitterChoose\28skcpu::Draw\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const&\2c\20SkRect\20const&\2c\20SkDrawCoverage\29 +2506:SkAAClipBlitter::~SkAAClipBlitter\28\29 +2507:SkAAClip::setRegion\28SkRegion\20const&\29::$_0::operator\28\29\28unsigned\20char\2c\20int\29\20const +2508:SkAAClip::findX\28unsigned\20char\20const*\2c\20int\2c\20int*\29\20const +2509:SkAAClip::findRow\28int\2c\20int*\29\20const +2510:SkAAClip::Builder::Blitter::~Blitter\28\29 +2511:SaveErrorCode +2512:RoughlyEqualUlps\28float\2c\20float\29 +2513:R.12762 +2514:R +2515:PS_Conv_ToInt +2516:OT::hmtxvmtx::accelerator_t::get_leading_bearing_without_var_unscaled\28unsigned\20int\2c\20int*\29\20const +2517:OT::hb_ot_apply_context_t::replace_glyph\28unsigned\20int\29 +2518:OT::fvar::get_axes\28\29\20const +2519:OT::Layout::GPOS_impl::ValueFormat::sanitize_values_stride_unsafe\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +2520:OT::DeltaSetIndexMap::map\28unsigned\20int\29\20const +2521:OT::CFFIndex>\20const&\20CFF::StructAtOffsetOrNull>>\28void\20const*\2c\20int\2c\20hb_sanitize_context_t&\29 +2522:OT::CFFIndex>::offset_at\28unsigned\20int\29\20const +2523:Normalize +2524:Ins_Goto_CodeRange +2525:GrTriangulator::setBottom\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +2526:GrTriangulator::VertexList::append\28GrTriangulator::VertexList\20const&\29 +2527:GrTriangulator::Line::normalize\28\29 +2528:GrTriangulator::Edge::disconnect\28\29 +2529:GrThreadSafeCache::find\28skgpu::UniqueKey\20const&\29 +2530:GrThreadSafeCache::add\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +2531:GrTextureEffect::texture\28\29\20const +2532:GrSurfaceProxyView::Copy\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\29 +2533:GrSurfaceProxyPriv::doLazyInstantiation\28GrResourceProvider*\29 +2534:GrSurface::~GrSurface\28\29 +2535:GrStyledShape::simplify\28\29 +2536:GrStyle::applies\28\29\20const +2537:GrSimpleMeshDrawOpHelperWithStencil::fixedFunctionFlags\28\29\20const +2538:GrSimpleMeshDrawOpHelper::finalizeProcessors\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrClampType\2c\20GrProcessorAnalysisCoverage\2c\20GrProcessorAnalysisColor*\29 +2539:GrSimpleMeshDrawOpHelper::detachProcessorSet\28\29 +2540:GrSimpleMeshDrawOpHelper::CreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrPipeline\20const*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrGeometryProcessor*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\2c\20GrUserStencilSettings\20const*\29 +2541:GrSimpleMesh::setIndexedPatterned\28sk_sp\2c\20int\2c\20int\2c\20int\2c\20sk_sp\2c\20int\2c\20int\29 +2542:GrShape::setRect\28SkRect\20const&\29 +2543:GrShape::GrShape\28GrShape\20const&\29 +2544:GrShaderVar::addModifier\28char\20const*\29 +2545:GrSWMaskHelper::~GrSWMaskHelper\28\29 +2546:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20void\20const*\2c\20skgpu::UniqueKey\20const&\29 +2547:GrResourceProvider::findOrMakeStaticBuffer\28GrGpuBufferType\2c\20unsigned\20long\2c\20skgpu::UniqueKey\20const&\2c\20void\20\28*\29\28skgpu::VertexWriter\2c\20unsigned\20long\29\29 +2548:GrResourceCache::purgeAsNeeded\28\29 +2549:GrRenderTask::addDependency\28GrDrawingManager*\2c\20GrSurfaceProxy*\2c\20skgpu::Mipmapped\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +2550:GrRecordingContextPriv::makeSFC\28GrImageInfo\2c\20std::__2::basic_string_view>\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +2551:GrQuad::asRect\28SkRect*\29\20const +2552:GrProcessorSet::operator!=\28GrProcessorSet\20const&\29\20const +2553:GrPixmapBase::GrPixmapBase\28GrImageInfo\2c\20void\20const*\2c\20unsigned\20long\29 +2554:GrPipeline::getXferProcessor\28\29\20const +2555:GrNativeRect::asSkIRect\28\29\20const +2556:GrGpuResource::isPurgeable\28\29\20const +2557:GrGeometryProcessor::ProgramImpl::~ProgramImpl\28\29 +2558:GrGeometryProcessor::ProgramImpl::WriteOutputPosition\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\2c\20char\20const*\2c\20SkMatrix\20const&\2c\20GrResourceHandle*\29 +2559:GrGLSLShaderBuilder::defineConstant\28char\20const*\2c\20float\29 +2560:GrGLSLShaderBuilder::addFeature\28unsigned\20int\2c\20char\20const*\29 +2561:GrGLSLProgramBuilder::nameVariable\28char\2c\20char\20const*\2c\20bool\29 +2562:GrGLSLColorSpaceXformHelper::setData\28GrGLSLProgramDataManager\20const&\2c\20GrColorSpaceXform\20const*\29 +2563:GrGLSLColorSpaceXformHelper::emitCode\28GrGLSLUniformHandler*\2c\20GrColorSpaceXform\20const*\2c\20unsigned\20int\29 +2564:GrGLGpu::flushColorWrite\28bool\29 +2565:GrGLGpu::bindTexture\28int\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20GrGLTexture*\29 +2566:GrFragmentProcessors::Make\28SkShader\20const*\2c\20GrFPArgs\20const&\2c\20SkMatrix\20const&\29 +2567:GrFragmentProcessor::visitWithImpls\28std::__2::function\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\20const +2568:GrFragmentProcessor::visitProxies\28std::__2::function\20const&\29\20const +2569:GrFragmentProcessor::ColorMatrix\28std::__2::unique_ptr>\2c\20float\20const*\2c\20bool\2c\20bool\2c\20bool\29 +2570:GrDstProxyView::operator=\28GrDstProxyView\20const&\29 +2571:GrDrawingManager::closeActiveOpsTask\28\29 +2572:GrDrawingManager::appendTask\28sk_sp\29 +2573:GrColorSpaceXformEffect::Make\28std::__2::unique_ptr>\2c\20sk_sp\29 +2574:GrColorSpaceXform::XformKey\28GrColorSpaceXform\20const*\29 +2575:GrColorSpaceXform::Make\28GrColorInfo\20const&\2c\20GrColorInfo\20const&\29 +2576:GrColorInfo::GrColorInfo\28GrColorInfo\20const&\29 +2577:GrCaps::isFormatCompressed\28GrBackendFormat\20const&\29\20const +2578:GrBufferAllocPool::~GrBufferAllocPool\28\29 +2579:GrBufferAllocPool::putBack\28unsigned\20long\29 +2580:GrBlurUtils::convolve_gaussian\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20SkIRect\2c\20SkIRect\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkBackingFit\29::$_1::operator\28\29\28SkIRect\29\20const +2581:GrAAConvexTessellator::lineTo\28SkPoint\20const&\2c\20GrAAConvexTessellator::CurveState\29 +2582:FwDCubicEvaluator::restart\28int\29 +2583:FT_Vector_Transform +2584:FT_Select_Charmap +2585:FT_Lookup_Renderer +2586:FT_Get_Module_Interface +2587:DecodeImageStream +2588:CFF::opset_t::process_op\28unsigned\20int\2c\20CFF::interp_env_t&\29 +2589:CFF::arg_stack_t::push_int\28int\29 +2590:Bounder::Bounder\28SkRect\20const&\2c\20SkPaint\20const&\29 +2591:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::operator++\28\29 +2592:ActiveEdge::intersect\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29\20const +2593:AAT::hb_aat_apply_context_t::setup_buffer_glyph_set\28\29 +2594:AAT::hb_aat_apply_context_t::buffer_intersects_machine\28\29\20const +2595:AAT::SubtableGlyphCoverage::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +2596:2380 +2597:2381 +2598:2382 +2599:2383 +2600:2384 +2601:2385 +2602:2386 +2603:2387 +2604:2388 +2605:2389 +2606:2390 +2607:wuffs_gif__decoder__skip_blocks +2608:wmemchr +2609:void\20std::__2::unique_ptr>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot*\2c\200>\28skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot*\29 +2610:void\20std::__2::reverse\5babi:nn180100\5d\28unsigned\20int*\2c\20unsigned\20int*\29 +2611:void\20std::__2::__variant_detail::__assignment>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29 +2612:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d>\28std::__2::__optional_move_assign_base&&\29 +2613:void\20icu_74::\28anonymous\20namespace\29::MixedBlocks::extend\28unsigned\20int\20const*\2c\20int\2c\20int\2c\20int\29 +2614:void\20hb_serialize_context_t::add_link\2c\20void\2c\20true>>\28OT::OffsetTo\2c\20void\2c\20true>&\2c\20unsigned\20int\2c\20hb_serialize_context_t::whence_t\2c\20unsigned\20int\29 +2615:void\20hb_sanitize_context_t::set_object\28AAT::KerxSubTable\20const*\29 +2616:void\20SkSafeUnref\28sktext::gpu::TextStrike*\29 +2617:void\20SkSafeUnref\28GrArenas*\29 +2618:void\20SkSL::RP::unpack_nybbles_to_offsets\28unsigned\20int\2c\20SkSpan\29 +2619:void\20AAT::Lookup::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +2620:void\20AAT::ClassTable>::collect_glyphs\28hb_bit_set_t&\2c\20unsigned\20int\29\20const +2621:void*\20flutter::DisplayListBuilder::Push\28unsigned\20long\29 +2622:void*\20flutter::DisplayListBuilder::Push\28unsigned\20long\29 +2623:void*\20flutter::DisplayListBuilder::Push\28unsigned\20long\29 +2624:utrie2_enum_74 +2625:utext_clone_74 +2626:ustr_hashUCharsN_74 +2627:ures_getValueWithFallback_74 +2628:ures_freeResPath\28UResourceBundle*\29 +2629:umutablecptrie_set_74 +2630:ultag_isScriptSubtag_74 +2631:ultag_isRegionSubtag_74 +2632:ultag_isLanguageSubtag_74 +2633:ulocimp_canonicalize_74 +2634:uloc_getVariant_74 +2635:ucase_toFullUpper_74 +2636:ubidi_setPara_74 +2637:ubidi_getCustomizedClass_74 +2638:u_strstr_74 +2639:u_strFindFirst_74 +2640:u_getPropertyValueEnum_74 +2641:tt_set_mm_blend +2642:tt_face_get_ps_name +2643:trinkle +2644:t1_builder_check_points +2645:surface_getThreadId +2646:subdivide\28SkConic\20const&\2c\20SkPoint*\2c\20int\29 +2647:strtox.12174 +2648:strrchr +2649:std::__2::vector>\2c\20std::__2::allocator>>>::__swap_out_circular_buffer\28std::__2::__split_buffer>\2c\20std::__2::allocator>>&>&\29 +2650:std::__2::vector>\2c\20std::__2::allocator>>>::__clear\5babi:ne180100\5d\28\29 +2651:std::__2::vector>\2c\20std::__2::allocator>>>::~vector\5babi:ne180100\5d\28\29 +2652:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +2653:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +2654:std::__2::vector\2c\20std::__2::allocator>>::push_back\5babi:ne180100\5d\28sk_sp\20const&\29 +2655:std::__2::vector\2c\20std::__2::allocator>>::__swap_out_circular_buffer\28std::__2::__split_buffer\2c\20std::__2::allocator>&>&\29 +2656:std::__2::vector>::push_back\5babi:ne180100\5d\28float&&\29 +2657:std::__2::vector>::__move_assign\28std::__2::vector>&\2c\20std::__2::integral_constant\29 +2658:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +2659:std::__2::unordered_map\2c\20std::__2::equal_to\2c\20std::__2::allocator>>::operator\5b\5d\28GrTriangulator::Vertex*\20const&\29 +2660:std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2661:std::__2::unique_ptr::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2662:std::__2::unique_ptr::Traits>::Slot\20\5b\5d\2c\20std::__2::default_delete::Traits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2663:std::__2::unique_ptr::AdaptedTraits>::Slot\20\5b\5d\2c\20std::__2::default_delete::AdaptedTraits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2664:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skgpu::ganesh::SurfaceDrawContext*\29 +2665:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2666:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skgpu::ganesh::PathRendererChain*\29 +2667:std::__2::unique_ptr\20\5b\5d\2c\20std::__2::default_delete\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +2668:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28hb_face_t*\29 +2669:std::__2::unique_ptr::release\5babi:nn180100\5d\28\29 +2670:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2671:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2672:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2673:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2674:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2675:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2676:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2677:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +2678:std::__2::moneypunct::do_decimal_point\28\29\20const +2679:std::__2::moneypunct::pos_format\5babi:nn180100\5d\28\29\20const +2680:std::__2::moneypunct::do_decimal_point\28\29\20const +2681:std::__2::locale::locale\28std::__2::locale\20const&\29 +2682:std::__2::locale::classic\28\29 +2683:std::__2::function::operator\28\29\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +2684:std::__2::enable_if\2c\20int>::type\20impeller::saturated::Sub\28int\2c\20int\29 +2685:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:nn180100\5d\28unsigned\20int&\2c\20unsigned\20int&\29 +2686:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:ne180100\5d\28SkAnimatedImage::Frame&\2c\20SkAnimatedImage::Frame&\29 +2687:std::__2::enable_if\28\29\20==\20std::declval\28\29\29\2c\20bool>\2c\20bool>::type\20std::__2::operator==\5babi:ne180100\5d\28std::__2::optional\20const&\2c\20std::__2::optional\20const&\29 +2688:std::__2::deque>::pop_front\28\29 +2689:std::__2::deque>::begin\5babi:ne180100\5d\28\29 +2690:std::__2::ctype::toupper\5babi:nn180100\5d\28char\29\20const +2691:std::__2::chrono::duration>::duration\5babi:nn180100\5d\28long\20long\20const&\29 +2692:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29 +2693:std::__2::basic_stringbuf\2c\20std::__2::allocator>::str\5babi:ne180100\5d\28\29\20const\20& +2694:std::__2::basic_string_view>::find\5babi:ne180100\5d\28char\2c\20unsigned\20long\29\20const +2695:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2696:std::__2::basic_string\2c\20std::__2::allocator>::operator\5b\5d\5babi:nn180100\5d\28unsigned\20long\29\20const +2697:std::__2::basic_string\2c\20std::__2::allocator>::__fits_in_sso\5babi:nn180100\5d\28unsigned\20long\29 +2698:std::__2::basic_string\2c\20std::__2::allocator>\20const*\20std::__2::__scan_keyword\5babi:nn180100\5d>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype>\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::ctype\20const&\2c\20unsigned\20int&\2c\20bool\29 +2699:std::__2::basic_string\2c\20std::__2::allocator>::pop_back\5babi:ne180100\5d\28\29 +2700:std::__2::basic_string\2c\20std::__2::allocator>::operator=\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +2701:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28char*\2c\20char*\2c\20std::__2::allocator\20const&\29 +2702:std::__2::basic_string\2c\20std::__2::allocator>::__get_short_size\5babi:nn180100\5d\28\29\20const +2703:std::__2::basic_string\2c\20std::__2::allocator>::__assign_external\28char\20const*\2c\20unsigned\20long\29 +2704:std::__2::basic_streambuf>::__pbump\5babi:nn180100\5d\28long\29 +2705:std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29 +2706:std::__2::basic_iostream>::~basic_iostream\28\29 +2707:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::OperatorKind&&\2c\20std::__2::unique_ptr>&&\29 +2708:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>\28sk_sp&&\29 +2709:std::__2::__tuple_impl\2c\20sk_sp\2c\20sk_sp>::~__tuple_impl\28\29 +2710:std::__2::__tuple_impl\2c\20GrFragmentProcessor\20const*\2c\20GrGeometryProcessor::ProgramImpl::TransformInfo>::__tuple_impl\28std::__2::__tuple_impl\2c\20GrFragmentProcessor\20const*\2c\20GrGeometryProcessor::ProgramImpl::TransformInfo>&&\29 +2711:std::__2::__tree\2c\20std::__2::__map_value_compare\2c\20std::__2::less\2c\20true>\2c\20std::__2::allocator>>::~__tree\28\29 +2712:std::__2::__throw_bad_variant_access\5babi:ne180100\5d\28\29 +2713:std::__2::__split_buffer>\2c\20std::__2::allocator>>&>::~__split_buffer\28\29 +2714:std::__2::__split_buffer>::push_front\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +2715:std::__2::__split_buffer>::push_back\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\20const&\29 +2716:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +2717:std::__2::__shared_weak_count::__release_shared\5babi:ne180100\5d\28\29 +2718:std::__2::__shared_count::__release_shared\5babi:nn180100\5d\28\29 +2719:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +2720:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +2721:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +2722:std::__2::__num_put_base::__format_int\28char*\2c\20char\20const*\2c\20bool\2c\20unsigned\20int\29 +2723:std::__2::__num_put_base::__format_float\28char*\2c\20char\20const*\2c\20unsigned\20int\29 +2724:std::__2::__itoa::__append8\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +2725:std::__2::__function::__value_func::operator\28\29\5babi:ne180100\5d\28\29\20const +2726:std::__2::__function::__value_func::operator\28\29\5babi:ne180100\5d\28SkSL::Variable\20const&\29\20const +2727:skvx::Vec<8\2c\20unsigned\20short>\20skvx::operator+<8\2c\20unsigned\20short\2c\20unsigned\20short\2c\20void>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20short\29 +2728:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator&<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +2729:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator>=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +2730:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20double\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20double\29 +2731:skvx::Vec<2\2c\20unsigned\20char>\20skvx::cast\28skvx::Vec<2\2c\20float>\20const&\29 +2732:sktext::gpu::SubRun::~SubRun\28\29 +2733:sktext::gpu::GlyphVector::~GlyphVector\28\29 +2734:sktext::SkStrikePromise::strike\28\29 +2735:skif::\28anonymous\20namespace\29::draw_tiled_border\28SkCanvas*\2c\20SkTileMode\2c\20SkPaint\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::LayerSpace\2c\20skif::LayerSpace\29::$_1::operator\28\29\28SkPoint\20const&\2c\20SkPoint\20const&\29\20const +2736:skif::\28anonymous\20namespace\29::downscale_step_count\28float\29 +2737:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +2738:skif::LayerSpace\20skif::Mapping::paramToLayer\28skif::ParameterSpace\20const&\29\20const +2739:skif::LayerSpace::postConcat\28skif::LayerSpace\20const&\29 +2740:skif::LayerSpace\20skif::Mapping::deviceToLayer\28skif::DeviceSpace\20const&\29\20const +2741:skif::FilterResult::subset\28skif::LayerSpace\20const&\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +2742:skif::FilterResult::getAnalyzedShaderView\28skif::Context\20const&\2c\20SkSamplingOptions\20const&\2c\20SkEnumBitMask\29\20const +2743:skif::FilterResult::applyTransform\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkSamplingOptions\20const&\29\20const +2744:skif::FilterResult::applyCrop\28skif::Context\20const&\2c\20skif::LayerSpace\20const&\2c\20SkTileMode\29\20const +2745:skif::FilterResult::analyzeBounds\28SkMatrix\20const&\2c\20SkIRect\20const&\2c\20skif::FilterResult::BoundsScope\29\20const +2746:skif::FilterResult::Builder::add\28skif::FilterResult\20const&\2c\20std::__2::optional>\2c\20SkEnumBitMask\2c\20SkSamplingOptions\20const&\29 +2747:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +2748:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +2749:skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair&&\29 +2750:skia_private::THashTable::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +2751:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair&&\29 +2752:skia_private::THashTable::Pair\2c\20SkSL::Analysis::SpecializedCallKey\2c\20skia_private::THashMap::Pair>::Hash\28SkSL::Analysis::SpecializedCallKey\20const&\29 +2753:skia_private::THashTable::Traits>::uncheckedSet\28long\20long&&\29 +2754:skia_private::THashTable::Traits>::uncheckedSet\28int&&\29 +2755:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::resize\28int\29 +2756:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::find\28unsigned\20int\20const&\29\20const +2757:skia_private::THashMap::find\28unsigned\20int\20const&\29\20const +2758:skia_private::THashMap::operator\5b\5d\28SkSL::Variable\20const*\20const&\29 +2759:skia_private::TArray>\2c\20true>::destroyAll\28\29 +2760:skia_private::TArray>\2c\20true>::push_back\28std::__2::unique_ptr>&&\29 +2761:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2762:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +2763:skia_private::TArray::~TArray\28\29 +2764:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2765:skia_private::TArray::~TArray\28\29 +2766:skia_private::TArray\2c\20true>::~TArray\28\29 +2767:skia_private::TArray::push_back_n\28int\2c\20int\20const&\29 +2768:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +2769:skia_private::TArray<\28anonymous\20namespace\29::MeshOp::Mesh\2c\20true>::preallocateNewData\28int\2c\20double\29 +2770:skia_private::TArray<\28anonymous\20namespace\29::MeshOp::Mesh\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +2771:skia_private::TArray::clear\28\29 +2772:skia_private::TArray::operator=\28skia_private::TArray&&\29 +2773:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +2774:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2775:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +2776:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +2777:skia_private::TArray::push_back\28GrRenderTask*&&\29 +2778:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +2779:skia_private::AutoSTMalloc<4ul\2c\20SkFontArguments::Palette::Override\2c\20void>::AutoSTMalloc\28unsigned\20long\29 +2780:skia_private::AutoSTArray<24\2c\20unsigned\20int>::reset\28int\29 +2781:skia_png_zstream_error +2782:skia_png_read_data +2783:skia_png_get_int_32 +2784:skia_png_chunk_unknown_handling +2785:skia_png_calloc +2786:skia::textlayout::TextWrapper::getClustersTrimmedWidth\28\29 +2787:skia::textlayout::TextWrapper::TextStretch::startFrom\28skia::textlayout::Cluster*\2c\20unsigned\20long\29 +2788:skia::textlayout::TextWrapper::TextStretch::extend\28skia::textlayout::Cluster*\29 +2789:skia::textlayout::TextLine::measureTextInsideOneRun\28skia::textlayout::SkRange\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20float\2c\20bool\2c\20skia::textlayout::TextLine::TextAdjustment\29\20const +2790:skia::textlayout::TextLine::isLastLine\28\29\20const +2791:skia::textlayout::Run::Run\28skia::textlayout::Run\20const&\29 +2792:skia::textlayout::ParagraphImpl::getLineNumberAt\28unsigned\20long\29\20const +2793:skia::textlayout::ParagraphImpl::findPreviousGraphemeBoundary\28unsigned\20long\29\20const +2794:skia::textlayout::ParagraphCacheKey::~ParagraphCacheKey\28\29 +2795:skia::textlayout::ParagraphBuilderImpl::startStyledBlock\28\29 +2796:skia::textlayout::OneLineShaper::RunBlock&\20std::__2::vector>::emplace_back\28skia::textlayout::OneLineShaper::RunBlock&\29 +2797:skia::textlayout::InternalLineMetrics::updateLineMetrics\28skia::textlayout::InternalLineMetrics&\29 +2798:skia::textlayout::InternalLineMetrics::runTop\28skia::textlayout::Run\20const*\2c\20skia::textlayout::LineMetricStyle\29\20const +2799:skia::textlayout::FontCollection::getFontManagerOrder\28\29\20const +2800:skia::textlayout::Decorations::calculateGaps\28skia::textlayout::TextLine::ClipContext\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\29 +2801:skia::textlayout::Cluster::runOrNull\28\29\20const +2802:skgpu::tess::PatchStride\28skgpu::tess::PatchAttribs\29 +2803:skgpu::tess::MiddleOutPolygonTriangulator::MiddleOutPolygonTriangulator\28int\2c\20SkPoint\29 +2804:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::fixedFunctionFlags\28\29\20const +2805:skgpu::ganesh::SurfaceFillContext::~SurfaceFillContext\28\29 +2806:skgpu::ganesh::SurfaceFillContext::replaceOpsTask\28\29 +2807:skgpu::ganesh::SurfaceDrawContext::fillQuadWithEdgeAA\28GrClip\20const*\2c\20GrPaint&&\2c\20GrQuadAAFlags\2c\20SkMatrix\20const&\2c\20SkPoint\20const*\2c\20SkPoint\20const*\29 +2808:skgpu::ganesh::SurfaceDrawContext::fillPixelsWithLocalMatrix\28GrClip\20const*\2c\20GrPaint&&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\29 +2809:skgpu::ganesh::SurfaceDrawContext::drawPaint\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\29 +2810:skgpu::ganesh::SurfaceDrawContext::MakeWithFallback\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20SkBackingFit\2c\20SkISize\2c\20SkSurfaceProps\20const&\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20skgpu::Budgeted\29 +2811:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29 +2812:skgpu::ganesh::SurfaceContext::transferPixels\28GrColorType\2c\20SkIRect\20const&\29::$_0::$_0\28$_0&&\29 +2813:skgpu::ganesh::SurfaceContext::PixelTransferResult::operator=\28skgpu::ganesh::SurfaceContext::PixelTransferResult&&\29 +2814:skgpu::ganesh::SupportedTextureFormats\28GrImageContext\20const&\29::$_0::operator\28\29\28SkYUVAPixmapInfo::DataType\2c\20int\29\20const +2815:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +2816:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::coverageMode\28\29\20const +2817:skgpu::ganesh::PathInnerTriangulateOp::pushFanFillProgram\28GrTessellationShader::ProgramArgs\20const&\2c\20GrUserStencilSettings\20const*\29 +2818:skgpu::ganesh::OpsTask::deleteOps\28\29 +2819:skgpu::ganesh::OpsTask::OpChain::List::operator=\28skgpu::ganesh::OpsTask::OpChain::List&&\29 +2820:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29::$_0::operator\28\29\28int\29\20const +2821:skgpu::ganesh::ClipStack::clipRect\28SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrAA\2c\20SkClipOp\29 +2822:skgpu::TClientMappedBufferManager::BufferFinishedMessage::BufferFinishedMessage\28skgpu::TClientMappedBufferManager::BufferFinishedMessage&&\29 +2823:skgpu::Swizzle::Concat\28skgpu::Swizzle\20const&\2c\20skgpu::Swizzle\20const&\29 +2824:skgpu::Swizzle::CToI\28char\29 +2825:skcpu::Recorder::TODO\28\29 +2826:skcpu::Draw::drawPathCoverage\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkBlitter*\29\20const +2827:sk_sp::operator=\28sk_sp&&\29 +2828:sk_sp::reset\28SkMipmap*\29 +2829:sk_sp::~sk_sp\28\29 +2830:sk_sp::reset\28SkColorSpace*\29 +2831:sk_sp::~sk_sp\28\29 +2832:sk_sp::~sk_sp\28\29 +2833:skData_getSize +2834:shr +2835:shl +2836:sect_with_horizontal\28SkPoint\20const*\2c\20float\29 +2837:roughly_between\28double\2c\20double\2c\20double\29 +2838:res_unload_74 +2839:res_findResource_74 +2840:pt_to_line\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +2841:psh_calc_max_height +2842:ps_mask_set_bit +2843:ps_dimension_set_mask_bits +2844:ps_builder_check_points +2845:ps_builder_add_point +2846:png_colorspace_endpoints_match +2847:path_is_trivial\28SkPath\20const&\29::Trivializer::addTrivialContourPoint\28SkPoint\20const&\29 +2848:output_char\28hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +2849:operator!=\28SkRect\20const&\2c\20SkRect\20const&\29 +2850:nearly_equal\28double\2c\20double\29 +2851:mbrtowc +2852:mask_gamma_cache_mutex\28\29 +2853:map_rect_perspective\28SkRect\20const&\2c\20float\20const*\29::$_0::operator\28\29\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20const +2854:lineMetrics_getEndIndex +2855:is_smooth_enough\28SkAnalyticEdge*\2c\20SkAnalyticEdge*\2c\20int\29 +2856:is_ICC_signature_char +2857:interpolate_local\28float\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float*\2c\20float*\2c\20float*\29 +2858:int\20_hb_cmp_method>\28void\20const*\2c\20void\20const*\29 +2859:init\28\29 +2860:impeller::\28anonymous\20namespace\29::RoundSuperellipseBuilder::AddOctant\28impeller::RoundSuperellipseParam::Octant\20const&\2c\20bool\2c\20bool\2c\20impeller::Matrix\20const&\29 +2861:impeller::Vector4::operator!=\28impeller::Vector4\20const&\29\20const +2862:impeller::TRect::IntersectsWithRect\28impeller::TRect\20const&\29\20const +2863:impeller::TRect::ClipAndInsert\28impeller::TPoint*\2c\20int\2c\20impeller::Vector3\20const&\2c\20impeller::Vector3\20const&\2c\20impeller::Vector3\20const&\29 +2864:impeller::TPoint::Normalize\28\29\20const +2865:impeller::NormalizeEmptyToZero\28impeller::TSize&\29 +2866:impeller::Matrix::TransformHomogenous\28impeller::TPoint\20const&\29\20const +2867:ilogbf +2868:icu_74::UnicodeString::getChar32Start\28int\29\20const +2869:icu_74::UnicodeString::fromUTF8\28icu_74::StringPiece\29 +2870:icu_74::UnicodeString::extract\28int\2c\20int\2c\20char*\2c\20int\2c\20icu_74::UnicodeString::EInvariant\29\20const +2871:icu_74::UnicodeString::doReplace\28int\2c\20int\2c\20icu_74::UnicodeString\20const&\2c\20int\2c\20int\29 +2872:icu_74::UnicodeSet::span\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +2873:icu_74::UnicodeSet::removeAllStrings\28\29 +2874:icu_74::UnicodeSet::freeze\28\29 +2875:icu_74::UnicodeSet::complement\28\29 +2876:icu_74::UnicodeSet::UnicodeSet\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +2877:icu_74::UnicodeSet::UnicodeSet\28icu_74::UnicodeSet\20const&\29 +2878:icu_74::UVector::addElement\28void*\2c\20UErrorCode&\29 +2879:icu_74::UStack::push\28void*\2c\20UErrorCode&\29 +2880:icu_74::TrieFunc8\28UCPTrie\20const*\2c\20int\29 +2881:icu_74::StringTrieBuilder::writeNode\28int\2c\20int\2c\20int\29 +2882:icu_74::RuleCharacterIterator::_advance\28int\29 +2883:icu_74::RuleBasedBreakIterator::BreakCache::seek\28int\29 +2884:icu_74::RuleBasedBreakIterator::BreakCache::previous\28UErrorCode&\29 +2885:icu_74::RuleBasedBreakIterator::BreakCache::populateNear\28int\2c\20UErrorCode&\29 +2886:icu_74::RuleBasedBreakIterator::BreakCache::addFollowing\28int\2c\20int\2c\20icu_74::RuleBasedBreakIterator::BreakCache::UpdatePositionValues\29 +2887:icu_74::ResourceDataValue::getBinary\28int&\2c\20UErrorCode&\29\20const +2888:icu_74::ResourceDataValue::getArray\28UErrorCode&\29\20const +2889:icu_74::ResourceArray::getValue\28int\2c\20icu_74::ResourceValue&\29\20const +2890:icu_74::ReorderingBuffer::removeSuffix\28int\29 +2891:icu_74::ReorderingBuffer::init\28int\2c\20UErrorCode&\29 +2892:icu_74::PatternProps::isWhiteSpace\28int\29 +2893:icu_74::OffsetList::~OffsetList\28\29 +2894:icu_74::OffsetList::shift\28int\29 +2895:icu_74::OffsetList::setMaxLength\28int\29 +2896:icu_74::OffsetList::popMinimum\28\29 +2897:icu_74::Normalizer2Impl::singleLeadMightHaveNonZeroFCD16\28int\29\20const +2898:icu_74::Normalizer2Impl::norm16HasDecompBoundaryBefore\28unsigned\20short\29\20const +2899:icu_74::Normalizer2Impl::makeFCD\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer*\2c\20UErrorCode&\29\20const +2900:icu_74::Normalizer2Impl::hasCompBoundaryBefore\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\29\20const +2901:icu_74::Normalizer2Impl::hasCompBoundaryBefore\28char16_t\20const*\2c\20char16_t\20const*\29\20const +2902:icu_74::Normalizer2Impl::getFCD16FromNormData\28int\29\20const +2903:icu_74::Normalizer2Impl::decomposeShort\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::Normalizer2Impl::StopAt\2c\20signed\20char\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +2904:icu_74::Normalizer2Impl::addPropertyStarts\28USetAdder\20const*\2c\20UErrorCode&\29\20const +2905:icu_74::Norm2AllModes::getNFCInstance\28UErrorCode&\29 +2906:icu_74::MemoryPool::~MemoryPool\28\29 +2907:icu_74::MemoryPool::~MemoryPool\28\29 +2908:icu_74::LocaleKeyFactory::~LocaleKeyFactory\28\29 +2909:icu_74::LocaleBuilder::~LocaleBuilder\28\29 +2910:icu_74::Locale::getKeywordValue\28icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20UErrorCode&\29\20const +2911:icu_74::LocalPointer::~LocalPointer\28\29 +2912:icu_74::Hashtable::Hashtable\28UErrorCode&\29 +2913:icu_74::Edits::append\28int\29 +2914:icu_74::CharString::ensureCapacity\28int\2c\20int\2c\20UErrorCode&\29 +2915:icu_74::Array1D::assign\28icu_74::ReadArray1D\20const&\29 +2916:icu_74::Array1D::Array1D\28int\2c\20UErrorCode&\29 +2917:hb_vector_t\2c\20false>::fini\28\29 +2918:hb_unicode_funcs_t::compose\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +2919:hb_syllabic_insert_dotted_circles\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +2920:hb_shape_full +2921:hb_serialize_context_t::~hb_serialize_context_t\28\29 +2922:hb_serialize_context_t::hb_serialize_context_t\28void*\2c\20unsigned\20int\29 +2923:hb_serialize_context_t::end_serialize\28\29 +2924:hb_paint_funcs_t::push_scale\28void*\2c\20float\2c\20float\29 +2925:hb_paint_funcs_t::push_font_transform\28void*\2c\20hb_font_t\20const*\29 +2926:hb_paint_funcs_t::push_clip_rectangle\28void*\2c\20float\2c\20float\2c\20float\2c\20float\29 +2927:hb_paint_extents_context_t::paint\28\29 +2928:hb_ot_map_builder_t::disable_feature\28unsigned\20int\29 +2929:hb_map_iter_t\2c\20OT::IntType\2c\20void\2c\20true>\20const>\2c\20hb_partial_t<2u\2c\20$_10\20const*\2c\20OT::ChainRuleSet\20const*>\2c\20\28hb_function_sortedness_t\290\2c\20\28void*\290>::__item__\28\29\20const +2930:hb_lazy_loader_t\2c\20hb_face_t\2c\2012u\2c\20OT::vmtx_accelerator_t>::get_stored\28\29\20const +2931:hb_lazy_loader_t\2c\20hb_face_t\2c\2038u\2c\20OT::sbix_accelerator_t>::do_destroy\28OT::sbix_accelerator_t*\29 +2932:hb_lazy_loader_t\2c\20hb_face_t\2c\2023u\2c\20OT::kern_accelerator_t>::get_stored\28\29\20const +2933:hb_lazy_loader_t\2c\20hb_face_t\2c\205u\2c\20OT::hmtx_accelerator_t>::do_destroy\28OT::hmtx_accelerator_t*\29 +2934:hb_lazy_loader_t\2c\20hb_face_t\2c\2016u\2c\20OT::cff1_accelerator_t>::get_stored\28\29\20const +2935:hb_lazy_loader_t\2c\20hb_face_t\2c\2025u\2c\20OT::GSUB_accelerator_t>::do_destroy\28OT::GSUB_accelerator_t*\29 +2936:hb_lazy_loader_t\2c\20hb_face_t\2c\2026u\2c\20OT::GPOS_accelerator_t>::get_stored\28\29\20const +2937:hb_lazy_loader_t\2c\20hb_face_t\2c\2028u\2c\20AAT::morx_accelerator_t>::do_destroy\28AAT::morx_accelerator_t*\29 +2938:hb_lazy_loader_t\2c\20hb_face_t\2c\2030u\2c\20AAT::kerx_accelerator_t>::do_destroy\28AAT::kerx_accelerator_t*\29 +2939:hb_lazy_loader_t\2c\20hb_face_t\2c\2034u\2c\20hb_blob_t>::get\28\29\20const +2940:hb_language_from_string +2941:hb_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>\2c\20OT::HBGlyphID16&>::operator*\28\29 +2942:hb_hashmap_t::alloc\28unsigned\20int\29 +2943:hb_font_t::parent_scale_position\28int*\2c\20int*\29 +2944:hb_font_t::get_h_extents_with_fallback\28hb_font_extents_t*\29 +2945:hb_font_t::changed\28\29 +2946:hb_decycler_node_t::~hb_decycler_node_t\28\29 +2947:hb_buffer_t::copy_glyph\28\29 +2948:hb_buffer_t::clear_positions\28\29 +2949:hb_blob_create_sub_blob +2950:hb_blob_create +2951:hb_bit_set_t::~hb_bit_set_t\28\29 +2952:hb_bit_set_t::union_\28hb_bit_set_t\20const&\29 +2953:hb_bit_set_t::resize\28unsigned\20int\2c\20bool\2c\20bool\29 +2954:get_cache\28\29 +2955:getShortestSubtagLength\28char\20const*\29 +2956:ftell +2957:ft_var_readpackedpoints +2958:ft_glyphslot_free_bitmap +2959:flutter::ToSk\28flutter::DlColorSource\20const*\29::$_0::operator\28\29\28flutter::DlGradientColorSourceBase\20const*\29\20const +2960:flutter::DlRuntimeEffectColorSource::~DlRuntimeEffectColorSource\28\29 +2961:flutter::DlGradientColorSourceBase::base_equals_\28flutter::DlGradientColorSourceBase\20const*\29\20const +2962:flutter::DlComposeImageFilter::type\28\29\20const +2963:flutter::DlColorFilterImageFilter::size\28\29\20const +2964:flutter::DlBlurMaskFilter::size\28\29\20const +2965:flutter::DisplayListMatrixClipState::mapAndClipRect\28impeller::TRect\20const&\2c\20impeller::TRect*\29\20const +2966:flutter::DisplayListMatrixClipState::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +2967:flutter::DisplayListMatrixClipState::GetLocalCorners\28impeller::TPoint*\2c\20impeller::TRect\20const&\2c\20impeller::Matrix\20const&\29 +2968:flutter::DisplayListBuilder::~DisplayListBuilder\28\29 +2969:flutter::DisplayListBuilder::drawImage\28sk_sp\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20bool\29 +2970:flutter::DisplayListBuilder::drawImageRect\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20bool\2c\20flutter::DlSrcRectConstraint\29 +2971:flutter::DisplayListBuilder::drawImageNine\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20bool\29 +2972:flutter::DisplayListBuilder::drawAtlas\28sk_sp\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20bool\29 +2973:flutter::DisplayListBuilder::UpdateLayerResult\28flutter::DisplayListBuilder::OpResult\2c\20impeller::BlendMode\29 +2974:flutter::DisplayListBuilder::Transform\28impeller::Matrix\20const&\29 +2975:flutter::DisplayListBuilder::Skew\28float\2c\20float\29 +2976:flutter::DisplayListBuilder::Scale\28float\2c\20float\29 +2977:flutter::DisplayListBuilder::Rotate\28float\29 +2978:flutter::DisplayListBuilder::GetLocalClipCoverage\28\29\20const +2979:flutter::DisplayListBuilder::DrawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +2980:flutter::DisplayListBuilder::DrawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +2981:flutter::DisplayListBuilder::DrawPath\28flutter::DlPath\20const&\2c\20flutter::DlPaint\20const&\29 +2982:flutter::DisplayListBuilder::DrawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlPaint\20const&\29 +2983:flutter::DisplayListBuilder::DrawDisplayList\28sk_sp\2c\20float\29 +2984:flutter::DisplayListBuilder::ClipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +2985:float\20const*\20std::__2::min_element\5babi:ne180100\5d>\28float\20const*\2c\20float\20const*\2c\20std::__2::__less\29 +2986:float\20const*\20std::__2::max_element\5babi:ne180100\5d>\28float\20const*\2c\20float\20const*\2c\20std::__2::__less\29 +2987:filter_to_gl_mag_filter\28SkFilterMode\29 +2988:extract_mask_subset\28SkMask\20const&\2c\20SkIRect\2c\20int\2c\20int\29 +2989:exp +2990:equal_ulps\28float\2c\20float\2c\20int\2c\20int\29 +2991:dispose_chunk +2992:direct_blur_y\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +2993:derivative_at_t\28double\20const*\2c\20double\29 +2994:decltype\28ubrk_setUText_74\28std::forward\28fp\29\2c\20std::forward\28fp\29\2c\20std::forward\28fp\29\29\29\20sk_ubrk_setUText\28UBreakIterator*&&\2c\20UText*&&\2c\20UErrorCode*&&\29 +2995:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkShaderBase&\2c\20bool\20const&\29::'lambda'\28void*\29>\28SkTransformShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +2996:cubic_delta_from_line\28int\2c\20int\2c\20int\2c\20int\29 +2997:crop_rect_edge\28SkRect\20const&\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float*\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +2998:createPath\28char\20const*\2c\20int\2c\20char\20const*\2c\20int\2c\20char\20const*\2c\20icu_74::CharString&\2c\20UErrorCode*\29 +2999:cleanup_program\28GrGLGpu*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +3000:clean_paint_for_drawVertices\28SkPaint\29 +3001:clean_paint_for_drawImage\28SkPaint\20const*\29 +3002:chopLocale\28char*\29 +3003:check_edge_against_rect\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkRect\20const&\2c\20SkPathDirection\29 +3004:checkOnCurve\28float\2c\20float\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +3005:char*\20sktext::gpu::BagOfBytes::allocateBytesFor\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +3006:cff_strcpy +3007:cff_size_get_globals_funcs +3008:cff_index_forget_element +3009:cf2_stack_setReal +3010:cf2_hint_init +3011:cf2_doStems +3012:cf2_doFlex +3013:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_4::operator\28\29\28float\29\20const +3014:buffer_verify_error\28hb_buffer_t*\2c\20hb_font_t*\2c\20char\20const*\2c\20...\29 +3015:bool\20hb_array_t::sanitize\28hb_sanitize_context_t*\29\20const +3016:bool\20flutter::Equals\28flutter::DlImageFilter\20const*\2c\20flutter::DlImageFilter\20const*\29 +3017:bool\20OT::would_match_input>\28OT::hb_would_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\29 +3018:bool\20OT::match_input>\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +3019:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +3020:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +3021:bool\20AAT::hb_aat_apply_context_t::output_glyphs\28unsigned\20int\2c\20OT::HBGlyphID16\20const*\29 +3022:blur_y_rect\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20unsigned\20short*\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +3023:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29::$_0::operator\28\29\28unsigned\20char*\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29\20const +3024:blit_clipped_mask\28SkBlitter*\2c\20SkMask\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29 +3025:approx_arc_length\28SkPoint\20const*\2c\20int\29 +3026:antifillrect\28SkIRect\20const&\2c\20SkBlitter*\29 +3027:animatedImage_getFrameCount +3028:afm_parser_read_int +3029:af_sort_pos +3030:af_latin_hints_compute_segments +3031:acosf +3032:_isPrivateuseValueSubtag\28char\20const*\2c\20int\29 +3033:_isAlphaString\28char\20const*\2c\20int\29 +3034:_hb_glyph_info_get_lig_num_comps\28hb_glyph_info_t\20const*\29 +3035:_getDisplayNameForComponent\28char\20const*\2c\20char\20const*\2c\20char16_t*\2c\20int\2c\20int\20\28*\29\28char\20const*\2c\20char*\2c\20int\2c\20UErrorCode*\29\2c\20char\20const*\2c\20UErrorCode*\29 +3036:_findIndex\28char\20const*\20const*\2c\20char\20const*\29 +3037:__uselocale +3038:__math_xflow +3039:__cxxabiv1::__base_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +3040:\28anonymous\20namespace\29::make_vertices_spec\28bool\2c\20bool\29 +3041:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +3042:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28unsigned\20int\20const*\29::operator\28\29\28unsigned\20int\20const*\29\20const +3043:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +3044:\28anonymous\20namespace\29::SkBlurImageFilter::kernelBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\29\20const +3045:\28anonymous\20namespace\29::RunIteratorQueue::insert\28SkShaper::RunIterator*\2c\20int\29 +3046:\28anonymous\20namespace\29::RunIteratorQueue::CompareEntry\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29 +3047:\28anonymous\20namespace\29::PathSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +3048:\28anonymous\20namespace\29::PathGeoBuilder::ensureSpace\28int\2c\20int\2c\20SkPoint\20const*\29 +3049:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMangledName\28char\20const*\29 +3050:\28anonymous\20namespace\29::FillRectOpImpl::vertexSpec\28\29\20const +3051:\28anonymous\20namespace\29::CacheImpl::removeInternal\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +3052:\28anonymous\20namespace\29::A8Pass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29::'lambda'\28unsigned\20int\29::operator\28\29\28unsigned\20int\29\20const +3053:WriteRingBuffer +3054:VP8YUVToR +3055:VP8YUVToG +3056:VP8YUVToB +3057:VP8LoadNewBytes +3058:VP8LHuffmanTablesDeallocate +3059:TT_Load_Context +3060:Skwasm::createDlRRect\28float\20const*\29 +3061:SkipCode +3062:SkYUVAPixmaps::~SkYUVAPixmaps\28\29 +3063:SkYUVAPixmaps::operator=\28SkYUVAPixmaps\20const&\29 +3064:SkYUVAPixmaps::SkYUVAPixmaps\28\29 +3065:SkWuffsCodec::frame\28int\29\20const +3066:SkWriter32::writeRRect\28SkRRect\20const&\29 +3067:SkWriter32::writeMatrix\28SkMatrix\20const&\29 +3068:SkWriter32::snapshotAsData\28\29\20const +3069:SkWBuffer::write\28void\20const*\2c\20unsigned\20long\29 +3070:SkVertices::approximateSize\28\29\20const +3071:SkUnicode::convertUtf8ToUtf16\28char\20const*\2c\20int\29 +3072:SkTiff::ImageFileDirectory::getEntryValuesGeneric\28unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20int\2c\20void*\29\20const +3073:SkTiff::ImageFileDirectory::getEntryUnsignedShort\28unsigned\20short\2c\20unsigned\20int\2c\20unsigned\20short*\29\20const +3074:SkTextBlobBuilder::~SkTextBlobBuilder\28\29 +3075:SkTextBlob::RunRecord::textBuffer\28\29\20const +3076:SkTextBlob::RunRecord::clusterBuffer\28\29\20const +3077:SkTextBlob::RunRecord::StorageSize\28unsigned\20int\2c\20unsigned\20int\2c\20SkTextBlob::GlyphPositioning\2c\20SkSafeMath*\29 +3078:SkTextBlob::RunRecord::Next\28SkTextBlob::RunRecord\20const*\29 +3079:SkTSpan::oppT\28double\29\20const +3080:SkTSpan::closestBoundedT\28SkDPoint\20const&\29\20const +3081:SkTSect::updateBounded\28SkTSpan*\2c\20SkTSpan*\2c\20SkTSpan*\29 +3082:SkTSect::trim\28SkTSpan*\2c\20SkTSect*\29 +3083:SkTSect::removeSpanRange\28SkTSpan*\2c\20SkTSpan*\29 +3084:SkTSect::removeCoincident\28SkTSpan*\2c\20bool\29 +3085:SkTSect::deleteEmptySpans\28\29 +3086:SkTInternalLList::Entry>::remove\28SkLRUCache::Entry*\29 +3087:SkTInternalLList>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry>::remove\28SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\29 +3088:SkTInternalLList>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry>::remove\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\29 +3089:SkTDStorage::insert\28int\2c\20int\2c\20void\20const*\29 +3090:SkTDStorage::insert\28int\29 +3091:SkTDStorage::erase\28int\2c\20int\29 +3092:SkTDArray::push_back\28int\20const&\29 +3093:SkTBlockList::pushItem\28\29 +3094:SkStrokeRec::applyToPath\28SkPathBuilder*\2c\20SkPath\20const&\29\20const +3095:SkString::set\28char\20const*\29 +3096:SkString::SkString\28unsigned\20long\29 +3097:SkString::Rec::Make\28char\20const*\2c\20unsigned\20long\29 +3098:SkStrikeSpec::MakeCanonicalized\28SkFont\20const&\2c\20SkPaint\20const*\29 +3099:SkStrikeCache::GlobalStrikeCache\28\29 +3100:SkStrike::glyph\28SkPackedGlyphID\29 +3101:SkSpriteBlitter::~SkSpriteBlitter\28\29 +3102:SkSpecialImages::MakeDeferredFromGpu\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20unsigned\20int\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +3103:SkSpecialImages::AsBitmap\28SkSpecialImage\20const*\2c\20SkBitmap*\29 +3104:SkShadowTessellator::MakeSpot\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkPoint3\20const&\2c\20float\2c\20bool\2c\20bool\29 +3105:SkShaders::MatrixRec::apply\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +3106:SkShaderBlurAlgorithm::renderBlur\28SkRuntimeEffectBuilder*\2c\20SkFilterMode\2c\20SkISize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::$_0::operator\28\29\28SkIRect\20const&\29\20const +3107:SkShaderBase::appendRootStages\28SkStageRec\20const&\2c\20SkMatrix\20const&\29\20const +3108:SkSemaphore::signal\28int\29 +3109:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +3110:SkScalerContext_FreeType::emboldenIfNeeded\28FT_FaceRec_*\2c\20FT_GlyphSlotRec_*\2c\20unsigned\20short\29 +3111:SkScalerContextRec::getMatrixFrom2x2\28\29\20const +3112:SkScaleToSides::AdjustRadii\28double\2c\20double\2c\20float*\2c\20float*\29 +3113:SkSamplingOptions::operator!=\28SkSamplingOptions\20const&\29\20const +3114:SkSL::write_stringstream\28SkSL::StringStream\20const&\2c\20SkSL::OutputStream&\29 +3115:SkSL::evaluate_3_way_intrinsic\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +3116:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29 +3117:SkSL::calculate_count\28double\2c\20double\2c\20double\2c\20bool\2c\20bool\29 +3118:SkSL::append_rtadjust_fixup_to_vertex_main\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::Block&\29::AppendRTAdjustFixupHelper::Pos\28\29\20const +3119:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +3120:SkSL::VarDeclaration::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\2c\20std::__2::unique_ptr>\29 +3121:SkSL::Type::priority\28\29\20const +3122:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20double\2c\20SkSL::Position\29\20const +3123:SkSL::Transform::EliminateDeadFunctions\28SkSL::Program&\29::$_0::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +3124:SkSL::SymbolTable::lookup\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +3125:SkSL::SymbolTable::isType\28std::__2::basic_string_view>\29\20const +3126:SkSL::Swizzle::MaskString\28skia_private::FixedArray<4\2c\20signed\20char>\20const&\29 +3127:SkSL::RP::SlotManager::mapVariableToSlots\28SkSL::Variable\20const&\2c\20SkSL::RP::SlotRange\29 +3128:SkSL::RP::Program::appendStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkSL::RP::Callbacks*\2c\20SkSpan\29\20const::$_0::operator\28\29\28\29\20const +3129:SkSL::RP::Program::appendCopy\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20std::byte*\2c\20SkSL::RP::ProgramOp\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29\20const +3130:SkSL::RP::Generator::store\28SkSL::RP::LValue&\29 +3131:SkSL::RP::Generator::popToSlotRangeUnmasked\28SkSL::RP::SlotRange\29 +3132:SkSL::RP::Builder::ternary_op\28SkSL::RP::BuilderOp\2c\20int\29 +3133:SkSL::RP::Builder::simplifyPopSlotsUnmasked\28SkSL::RP::SlotRange*\29 +3134:SkSL::RP::Builder::push_zeros\28int\29 +3135:SkSL::RP::Builder::push_loop_mask\28\29 +3136:SkSL::RP::Builder::pad_stack\28int\29 +3137:SkSL::RP::Builder::exchange_src\28\29 +3138:SkSL::ProgramVisitor::visit\28SkSL::Program\20const&\29 +3139:SkSL::ProgramUsage::remove\28SkSL::Statement\20const*\29 +3140:SkSL::PrefixExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29 +3141:SkSL::PipelineStage::PipelineStageCodeGenerator::typedVariable\28SkSL::Type\20const&\2c\20std::__2::basic_string_view>\29 +3142:SkSL::PipelineStage::PipelineStageCodeGenerator::typeName\28SkSL::Type\20const&\29 +3143:SkSL::Parser::parseInitializer\28SkSL::Position\2c\20std::__2::unique_ptr>*\29 +3144:SkSL::Parser::nextRawToken\28\29 +3145:SkSL::Parser::arrayType\28SkSL::Type\20const*\2c\20int\2c\20SkSL::Position\29 +3146:SkSL::Parser::AutoSymbolTable::AutoSymbolTable\28SkSL::Parser*\2c\20std::__2::unique_ptr>*\2c\20bool\29 +3147:SkSL::MethodReference::~MethodReference\28\29_7090 +3148:SkSL::MethodReference::~MethodReference\28\29 +3149:SkSL::LiteralType::priority\28\29\20const +3150:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sub\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +3151:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_dot\28std::__2::array\20const&\29 +3152:SkSL::InterfaceBlock::arraySize\28\29\20const +3153:SkSL::IndexExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3154:SkSL::GLSLCodeGenerator::writeExtension\28std::__2::basic_string_view>\2c\20bool\29 +3155:SkSL::FieldAccess::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20int\2c\20SkSL::FieldAccessOwnerKind\29 +3156:SkSL::ConstructorArray::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +3157:SkSL::Compiler::convertProgram\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::ProgramSettings\20const&\29 +3158:SkSL::Block::isEmpty\28\29\20const +3159:SkSL::Block::Make\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +3160:SkSL::Block::MakeBlock\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +3161:SkSL::Analysis::DetectVarDeclarationWithoutScope\28SkSL::Statement\20const&\2c\20SkSL::ErrorReporter*\29 +3162:SkRuntimeEffect::Result::~Result\28\29 +3163:SkResourceCache::remove\28SkResourceCache::Rec*\29 +3164:SkRegion::writeToMemory\28void*\29\20const +3165:SkRegion::SkRegion\28SkRegion\20const&\29 +3166:SkRect::sort\28\29 +3167:SkRect::setBoundsCheck\28SkSpan\29 +3168:SkRect::offset\28SkPoint\20const&\29 +3169:SkRect::inset\28float\2c\20float\29 +3170:SkRecords::Optional::~Optional\28\29 +3171:SkRecords::NoOp*\20SkRecord::replace\28int\29 +3172:SkReadBuffer::skip\28unsigned\20long\29 +3173:SkRasterPipeline::tailPointer\28\29 +3174:SkRasterPipeline::appendStore\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +3175:SkRasterPipeline::appendMatrix\28SkArenaAlloc*\2c\20SkMatrix\20const&\29 +3176:SkRasterPipeline::addMemoryContext\28SkRasterPipelineContexts::MemoryCtx*\2c\20int\2c\20bool\2c\20bool\29 +3177:SkRRect::setOval\28SkRect\20const&\29 +3178:SkRRect::initializeRect\28SkRect\20const&\29 +3179:SkRGBA4f<\28SkAlphaType\293>::operator==\28SkRGBA4f<\28SkAlphaType\293>\20const&\29\20const +3180:SkQuads::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +3181:SkPixelRef::~SkPixelRef\28\29 +3182:SkPixelRef::SkPixelRef\28int\2c\20int\2c\20void*\2c\20unsigned\20long\29 +3183:SkPictureRecorder::~SkPictureRecorder\28\29 +3184:SkPictureRecorder::SkPictureRecorder\28\29 +3185:SkPictureRecord::~SkPictureRecord\28\29 +3186:SkPictureRecord::recordRestoreOffsetPlaceholder\28\29 +3187:SkPathStroker::quadStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +3188:SkPathStroker::preJoinTo\28SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\2c\20bool\29 +3189:SkPathStroker::intersectRay\28SkQuadConstruct*\2c\20SkPathStroker::IntersectRayType\29\20const +3190:SkPathStroker::cubicStroke\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +3191:SkPathStroker::cubicPerpRay\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +3192:SkPathStroker::conicStroke\28SkConic\20const&\2c\20SkQuadConstruct*\29 +3193:SkPathRef::computeBounds\28\29\20const +3194:SkPathRef::SkPathRef\28int\2c\20int\2c\20int\29 +3195:SkPathPriv::IsRectContour\28SkSpan\2c\20SkSpan\2c\20bool\29 +3196:SkPathBuilder::transform\28SkMatrix\20const&\29 +3197:SkPathBuilder::addRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +3198:SkPathBuilder::addPath\28SkPath\20const&\2c\20SkPath::AddPathMode\29 +3199:SkPathBuilder::SkPathBuilder\28SkPathFillType\29 +3200:SkPath::reset\28\29 +3201:SkPath::quadTo\28float\2c\20float\2c\20float\2c\20float\29 +3202:SkPath::makeFillType\28SkPathFillType\29\20const +3203:SkPaint::operator=\28SkPaint&&\29 +3204:SkPaint::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +3205:SkPaint::canComputeFastBounds\28\29\20const +3206:SkOpSpanBase::mergeMatches\28SkOpSpanBase*\29 +3207:SkOpSpanBase::addOpp\28SkOpSpanBase*\29 +3208:SkOpSegment::updateOppWinding\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\29\20const +3209:SkOpSegment::subDivide\28SkOpSpanBase\20const*\2c\20SkOpSpanBase\20const*\2c\20SkDCurve*\29\20const +3210:SkOpSegment::setUpWindings\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\2c\20int*\2c\20int*\2c\20int*\2c\20int*\2c\20int*\29 +3211:SkOpSegment::nextChase\28SkOpSpanBase**\2c\20int*\2c\20SkOpSpan**\2c\20SkOpSpanBase**\29\20const +3212:SkOpSegment::markAndChaseDone\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpSpanBase**\29 +3213:SkOpSegment::isSimple\28SkOpSpanBase**\2c\20int*\29\20const +3214:SkOpSegment::init\28SkPoint*\2c\20float\2c\20SkOpContour*\2c\20SkPath::Verb\29 +3215:SkOpEdgeBuilder::complete\28\29 +3216:SkOpContour::appendSegment\28\29 +3217:SkOpCoincidence::overlap\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20double*\2c\20double*\29\20const +3218:SkOpCoincidence::add\28SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\2c\20SkOpPtT*\29 +3219:SkOpCoincidence::addIfMissing\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20double\2c\20double\2c\20SkOpSegment*\2c\20SkOpSegment*\2c\20bool*\29 +3220:SkOpCoincidence::addExpanded\28\29 +3221:SkOpCoincidence::addEndMovedSpans\28SkOpPtT\20const*\29 +3222:SkOpCoincidence::TRange\28SkOpPtT\20const*\2c\20double\2c\20SkOpSegment\20const*\29 +3223:SkOpAngle::set\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +3224:SkOpAngle::loopCount\28\29\20const +3225:SkOpAngle::insert\28SkOpAngle*\29 +3226:SkOpAngle*\20SkArenaAlloc::make\28\29 +3227:SkNoPixelsDevice::ClipState::op\28SkClipOp\2c\20SkM44\20const&\2c\20SkRect\20const&\2c\20bool\2c\20bool\29 +3228:SkMipmap*\20SkSafeRef\28SkMipmap*\29 +3229:SkMeshSpecification::Varying::Varying\28SkMeshSpecification::Varying\20const&\29 +3230:SkMatrixPriv::DifferentialAreaScale\28SkMatrix\20const&\2c\20SkPoint\20const&\29 +3231:SkMatrix::setRotate\28float\29 +3232:SkMatrix::preservesRightAngles\28float\29\20const +3233:SkMatrix::mapRectToQuad\28SkPoint*\2c\20SkRect\20const&\29\20const +3234:SkMatrix::mapPointPerspective\28SkPoint\29\20const +3235:SkM44::setConcat\28SkM44\20const&\2c\20SkM44\20const&\29::$_0::operator\28\29\28skvx::Vec<4\2c\20float>\29\20const +3236:SkM44::normalizePerspective\28\29 +3237:SkM44::invert\28SkM44*\29\20const +3238:SkLineClipper::IntersectLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\29 +3239:SkImage_Ganesh::makeView\28GrRecordingContext*\29\20const +3240:SkImage_Base::~SkImage_Base\28\29 +3241:SkImage_Base::isGaneshBacked\28\29\20const +3242:SkImage_Base::SkImage_Base\28SkImageInfo\20const&\2c\20unsigned\20int\29 +3243:SkImageInfo::validRowBytes\28unsigned\20long\29\20const +3244:SkImageGenerator::~SkImageGenerator\28\29 +3245:SkImageFilters::Crop\28SkRect\20const&\2c\20SkTileMode\2c\20sk_sp\29 +3246:SkImageFilter_Base::~SkImageFilter_Base\28\29 +3247:SkIRect::makeInset\28int\2c\20int\29\20const +3248:SkHalfToFloat\28unsigned\20short\29 +3249:SkGradientBaseShader::commonAsAGradient\28SkShaderBase::GradientInfo*\29\20const +3250:SkGradientBaseShader::ValidGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\29 +3251:SkGradientBaseShader::SkGradientBaseShader\28SkGradientBaseShader::Descriptor\20const&\2c\20SkMatrix\20const&\29 +3252:SkGradientBaseShader::MakeDegenerateGradient\28SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20float\20const*\2c\20int\2c\20sk_sp\2c\20SkTileMode\29 +3253:SkGetPolygonWinding\28SkPoint\20const*\2c\20int\29 +3254:SkFontMgr::RefEmpty\28\29 +3255:SkFont::setTypeface\28sk_sp\29 +3256:SkFont::getBounds\28SkSpan\2c\20SkSpan\2c\20SkPaint\20const*\29\20const +3257:SkEmptyFontMgr::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +3258:SkEdgeBuilder::~SkEdgeBuilder\28\29 +3259:SkDevice::~SkDevice\28\29 +3260:SkDevice::scalerContextFlags\28\29\20const +3261:SkDQuad::RootsReal\28double\2c\20double\2c\20double\2c\20double*\29 +3262:SkDPoint::distance\28SkDPoint\20const&\29\20const +3263:SkDLine::NearPointV\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +3264:SkDLine::NearPointH\28SkDPoint\20const&\2c\20double\2c\20double\2c\20double\29 +3265:SkDCubic::RootsValidT\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +3266:SkConicalGradient::~SkConicalGradient\28\29 +3267:SkComputeRadialSteps\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float*\2c\20float*\2c\20int*\29 +3268:SkColorFilterPriv::MakeGaussian\28\29 +3269:SkColorFilter::filterColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkColorSpace*\2c\20SkColorSpace*\29\20const +3270:SkColorConverter::SkColorConverter\28unsigned\20int\20const*\2c\20int\29 +3271:SkCoincidentSpans::correctOneEnd\28SkOpPtT\20const*\20\28SkCoincidentSpans::*\29\28\29\20const\2c\20void\20\28SkCoincidentSpans::*\29\28SkOpPtT\20const*\29\29 +3272:SkCodec::skipScanlines\28int\29 +3273:SkCodec::handleFrameIndex\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20std::__2::function\29 +3274:SkClosestRecord::findEnd\28SkTSpan\20const*\2c\20SkTSpan\20const*\2c\20int\2c\20int\29 +3275:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\20const*\2c\20int\29 +3276:SkChopCubicAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +3277:SkCanvas::setMatrix\28SkM44\20const&\29 +3278:SkCanvas::init\28sk_sp\29 +3279:SkCanvas::drawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +3280:SkCanvas::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +3281:SkCanvas::clipRect\28SkRect\20const&\2c\20bool\29 +3282:SkCanvas::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +3283:SkCanvas::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +3284:SkCanvas::canAttemptBlurredRRectDraw\28SkPaint\20const&\29\20const +3285:SkCanvas::attemptBlurredRRectDraw\28SkRRect\20const&\2c\20SkBlurMaskFilterImpl\20const*\2c\20SkPaint\20const&\2c\20SkEnumBitMask\29 +3286:SkCanvas::SkCanvas\28SkBitmap\20const&\29 +3287:SkCachedData::detachFromCacheAndUnref\28\29\20const +3288:SkCachedData::attachToCacheAndRef\28\29\20const +3289:SkBitmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +3290:SkBitmap::pixelRefOrigin\28\29\20const +3291:SkBitmap::getGenerationID\28\29\20const +3292:SkBitmap::extractSubset\28SkBitmap*\2c\20SkIRect\20const&\29\20const +3293:SkBitmap::allocPixels\28SkImageInfo\20const&\29 +3294:SkBitmap::SkBitmap\28SkBitmap&&\29 +3295:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29 +3296:SkAutoPixmapStorage::tryAlloc\28SkImageInfo\20const&\29 +3297:SkArenaAllocWithReset::SkArenaAllocWithReset\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +3298:SkAndroidCodec::getSampledDimensions\28int\29\20const +3299:SkAAClip::setPath\28SkPath\20const&\2c\20SkIRect\20const&\2c\20bool\29 +3300:SkAAClip::quickContains\28SkIRect\20const&\29\20const +3301:SkAAClip::op\28SkAAClip\20const&\2c\20SkClipOp\29 +3302:SkAAClip::Builder::flushRowH\28SkAAClip::Builder::Row*\29 +3303:SkAAClip::Builder::Blitter::checkForYGap\28int\29 +3304:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29 +3305:Rescale +3306:ReadHuffmanCode.11868 +3307:Put8x8uv +3308:Put16 +3309:OT::post::accelerator_t::find_glyph_name\28unsigned\20int\29\20const +3310:OT::hb_ot_layout_lookup_accelerator_t::fini\28\29 +3311:OT::hb_ot_layout_lookup_accelerator_t::apply\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20bool\29\20const +3312:OT::hb_ot_apply_context_t::skipping_iterator_t::match\28hb_glyph_info_t&\29 +3313:OT::hb_ot_apply_context_t::_set_glyph_class\28unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\29 +3314:OT::glyf_accelerator_t::glyph_for_gid\28unsigned\20int\2c\20bool\29\20const +3315:OT::cff1::accelerator_templ_t>::std_code_to_glyph\28unsigned\20int\29\20const +3316:OT::apply_lookup\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20OT::LookupRecord\20const*\2c\20unsigned\20int\29 +3317:OT::VarRegionList::evaluate\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +3318:OT::Lookup::get_props\28\29\20const +3319:OT::Layout::GSUB_impl::SubstLookup*\20hb_serialize_context_t::copy\28\29\20const +3320:OT::Layout::GPOS_impl::ValueFormat::get_device\28OT::IntType\20const*\2c\20bool*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20hb_sanitize_context_t&\29 +3321:OT::Layout::GPOS_impl::Anchor::get_anchor\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20float*\2c\20float*\29\20const +3322:OT::ItemVariationStore::create_cache\28\29\20const +3323:OT::IntType*\20hb_serialize_context_t::extend_min>\28OT::IntType*\29 +3324:OT::GSUBGPOS::get_script\28unsigned\20int\29\20const +3325:OT::GSUBGPOS::get_feature_tag\28unsigned\20int\29\20const +3326:OT::GSUBGPOS::find_script_index\28unsigned\20int\2c\20unsigned\20int*\29\20const +3327:OT::GDEF::get_glyph_props\28unsigned\20int\29\20const +3328:OT::ClassDef::cost\28\29\20const +3329:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +3330:OT::CFFIndex>::operator\5b\5d\28unsigned\20int\29\20const +3331:OT::CFFIndex>::offset_at\28unsigned\20int\29\20const +3332:OT::ArrayOf>*\20hb_serialize_context_t::extend_size>>\28OT::ArrayOf>*\2c\20unsigned\20long\2c\20bool\29 +3333:Move_Zp2_Point +3334:Modify_CVT_Check +3335:GrYUVATextureProxies::operator=\28GrYUVATextureProxies&&\29 +3336:GrYUVATextureProxies::GrYUVATextureProxies\28\29 +3337:GrXPFactory::FromBlendMode\28SkBlendMode\29 +3338:GrWindowRectangles::operator=\28GrWindowRectangles\20const&\29 +3339:GrTriangulator::~GrTriangulator\28\29 +3340:GrTriangulator::simplify\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +3341:GrTriangulator::setTop\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +3342:GrTriangulator::mergeCollinearEdges\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +3343:GrTriangulator::mergeCoincidentVertices\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29\20const +3344:GrTriangulator::emitTriangle\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20skgpu::VertexWriter\29\20const +3345:GrTriangulator::allocateEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20GrTriangulator::EdgeType\29 +3346:GrTriangulator::FindEnclosingEdges\28GrTriangulator::Vertex\20const&\2c\20GrTriangulator::EdgeList\20const&\2c\20GrTriangulator::Edge**\2c\20GrTriangulator::Edge**\29 +3347:GrTriangulator::Edge::dist\28SkPoint\20const&\29\20const +3348:GrTriangulator::Edge::Edge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20int\2c\20GrTriangulator::EdgeType\29 +3349:GrThreadSafeCache::remove\28skgpu::UniqueKey\20const&\29 +3350:GrThreadSafeCache::internalFind\28skgpu::UniqueKey\20const&\29 +3351:GrThreadSafeCache::internalAdd\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29 +3352:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +3353:GrTextureEffect::GrTextureEffect\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20GrTextureEffect::Sampling\20const&\29 +3354:GrTessellationShader::MakePipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedClip&&\2c\20GrProcessorSet&&\29 +3355:GrSurfaceProxyView::operator!=\28GrSurfaceProxyView\20const&\29\20const +3356:GrSurfaceProxyView::concatSwizzle\28skgpu::Swizzle\29 +3357:GrSurfaceProxy::~GrSurfaceProxy\28\29 +3358:GrSurfaceProxy::isFunctionallyExact\28\29\20const +3359:GrSurfaceProxy::gpuMemorySize\28\29\20const +3360:GrSurfaceProxy::createSurfaceImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\29\20const +3361:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkIRect\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20GrSurfaceProxy::RectsMustMatch\2c\20sk_sp*\29 +3362:GrSurfaceProxy::Copy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20std::__2::basic_string_view>\2c\20sk_sp*\29 +3363:GrStyledShape::hasUnstyledKey\28\29\20const +3364:GrStyledShape::GrStyledShape\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +3365:GrStyle::GrStyle\28GrStyle\20const&\29 +3366:GrSkSLFP::setInput\28std::__2::unique_ptr>\29 +3367:GrSimpleMeshDrawOpHelper::CreatePipeline\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20skgpu::Swizzle\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrProcessorSet&&\2c\20GrPipeline::InputFlags\29 +3368:GrSimpleMesh::set\28sk_sp\2c\20int\2c\20int\29 +3369:GrShape::simplifyRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20unsigned\20int\29 +3370:GrShape::simplifyRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20unsigned\20int\29 +3371:GrShape::simplifyPoint\28SkPoint\20const&\2c\20unsigned\20int\29 +3372:GrShape::simplifyLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\29 +3373:GrShape::setInverted\28bool\29 +3374:GrSWMaskHelper::init\28SkIRect\20const&\29 +3375:GrSWMaskHelper::GrSWMaskHelper\28SkAutoPixmapStorage*\29 +3376:GrResourceProvider::refNonAAQuadIndexBuffer\28\29 +3377:GrRenderTask::addTarget\28GrDrawingManager*\2c\20sk_sp\29 +3378:GrRenderTarget::~GrRenderTarget\28\29 +3379:GrQuadUtils::WillUseHairline\28GrQuad\20const&\2c\20GrAAType\2c\20GrQuadAAFlags\29 +3380:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::unpackQuad\28GrQuad::Type\2c\20float\20const*\2c\20GrQuad*\29\20const +3381:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::MetadataIter::next\28\29 +3382:GrProxyProvider::processInvalidUniqueKey\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\2c\20GrProxyProvider::InvalidateGPUResource\29 +3383:GrProxyProvider::createMippedProxyFromBitmap\28SkBitmap\20const&\2c\20skgpu::Budgeted\29::$_0::~$_0\28\29 +3384:GrProgramInfo::GrProgramInfo\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrGeometryProcessor\20const*\2c\20GrPrimitiveType\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +3385:GrPipeline::visitProxies\28std::__2::function\20const&\29\20const +3386:GrPathUtils::scaleToleranceToSrc\28float\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +3387:GrPathUtils::generateQuadraticPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +3388:GrPathUtils::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint**\2c\20unsigned\20int\29 +3389:GrPathUtils::cubicPointCount\28SkPoint\20const*\2c\20float\29 +3390:GrPaint::GrPaint\28GrPaint\20const&\29 +3391:GrOpsRenderPass::prepareToDraw\28\29 +3392:GrOpFlushState::~GrOpFlushState\28\29 +3393:GrOpFlushState::drawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +3394:GrOpFlushState::bindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const&\2c\20GrPipeline\20const&\29 +3395:GrOp::uniqueID\28\29\20const +3396:GrNativeRect::MakeIRectRelativeTo\28GrSurfaceOrigin\2c\20int\2c\20SkIRect\29 +3397:GrMeshDrawOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +3398:GrMapRectPoints\28SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkPoint*\2c\20int\29 +3399:GrMakeKeyFromImageID\28skgpu::UniqueKey*\2c\20unsigned\20int\2c\20SkIRect\20const&\29 +3400:GrGradientShader::MakeGradientFP\28SkGradientBaseShader\20const&\2c\20GrFPArgs\20const&\2c\20SkShaders::MatrixRec\20const&\2c\20std::__2::unique_ptr>\2c\20SkMatrix\20const*\29 +3401:GrGpuResource::setUniqueKey\28skgpu::UniqueKey\20const&\29 +3402:GrGpuResource::registerWithCache\28skgpu::Budgeted\29 +3403:GrGpu::writePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +3404:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +3405:GrGLTexture::onSetLabel\28\29 +3406:GrGLTexture::onAbandon\28\29 +3407:GrGLTexture::backendFormat\28\29\20const +3408:GrGLSLVaryingHandler::appendDecls\28SkTBlockList\20const&\2c\20SkString*\29\20const +3409:GrGLSLUniformHandler::addInputSampler\28skgpu::Swizzle\20const&\2c\20char\20const*\29 +3410:GrGLSLShaderBuilder::newTmpVarName\28char\20const*\29 +3411:GrGLSLShaderBuilder::definitionAppend\28char\20const*\29 +3412:GrGLSLProgramBuilder::invokeFP\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +3413:GrGLSLProgramBuilder::advanceStage\28\29 +3414:GrGLSLFragmentShaderBuilder::dstColor\28\29 +3415:GrGLRenderTarget::bindInternal\28unsigned\20int\2c\20bool\29 +3416:GrGLGpu::unbindXferBuffer\28GrGpuBufferType\29 +3417:GrGLGpu::resolveRenderFBOs\28GrGLRenderTarget*\2c\20SkIRect\20const&\2c\20GrGLRenderTarget::ResolveDirection\2c\20bool\29 +3418:GrGLGpu::flushBlendAndColorWrite\28skgpu::BlendInfo\20const&\2c\20skgpu::Swizzle\20const&\29 +3419:GrGLGpu::currentProgram\28\29 +3420:GrGLGpu::SamplerObjectCache::Sampler::~Sampler\28\29 +3421:GrGLGpu::HWVertexArrayState::setVertexArrayID\28GrGLGpu*\2c\20unsigned\20int\29 +3422:GrGLGetVersionFromString\28char\20const*\29 +3423:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\29 +3424:GrGLFunction::GrGLFunction\28unsigned\20char\20const*\20\28*\29\28unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\29 +3425:GrGLFinishCallbacks::callAll\28bool\29 +3426:GrGLCheckLinkStatus\28GrGLGpu\20const*\2c\20unsigned\20int\2c\20bool\2c\20skgpu::ShaderErrorHandler*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const**\2c\20SkSL::NativeShader\20const*\29 +3427:GrGLAttribArrayState::set\28GrGLGpu*\2c\20int\2c\20GrBuffer\20const*\2c\20GrVertexAttribType\2c\20SkSLType\2c\20int\2c\20unsigned\20long\2c\20int\29 +3428:GrFragmentProcessors::Make\28SkBlenderBase\20const*\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20GrFPArgs\20const&\29 +3429:GrFragmentProcessor::isEqual\28GrFragmentProcessor\20const&\29\20const +3430:GrFragmentProcessor::Rect\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRect\29 +3431:GrFragmentProcessor::ModulateRGBA\28std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3432:GrDstProxyView::setProxyView\28GrSurfaceProxyView\29 +3433:GrDrawingManager::removeRenderTasks\28\29 +3434:GrDrawingManager::getPathRenderer\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\2c\20bool\2c\20skgpu::ganesh::PathRendererChain::DrawType\2c\20skgpu::ganesh::PathRenderer::StencilSupport*\29 +3435:GrDrawingManager::getLastRenderTask\28GrSurfaceProxy\20const*\29\20const +3436:GrDrawOpAtlas::updatePlot\28GrDeferredUploadTarget*\2c\20skgpu::AtlasLocator*\2c\20skgpu::Plot*\29::'lambda'\28std::__2::function&\29::\28'lambda'\28std::__2::function&\29\20const&\29 +3437:GrDrawOpAtlas::processEvictionAndResetRects\28skgpu::Plot*\29 +3438:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29 +3439:GrDeferredProxyUploader::wait\28\29 +3440:GrCpuBuffer::Make\28unsigned\20long\29 +3441:GrContext_Base::~GrContext_Base\28\29 +3442:GrColorSpaceXform::Make\28SkColorSpace*\2c\20SkAlphaType\2c\20SkColorSpace*\2c\20SkAlphaType\29 +3443:GrColorInfo::operator=\28GrColorInfo\20const&\29 +3444:GrClip::IsPixelAligned\28SkRect\20const&\29 +3445:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29::'lambda0'\28float\29::operator\28\29\28float\29\20const +3446:GrClip::GetPixelIBounds\28SkRect\20const&\2c\20GrAA\2c\20GrClip::BoundsType\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3447:GrCaps::supportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +3448:GrCaps::getFallbackColorTypeAndFormat\28GrColorType\2c\20int\29\20const +3449:GrCaps::areColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +3450:GrBufferAllocPool::~GrBufferAllocPool\28\29_9694 +3451:GrBufferAllocPool::makeSpace\28unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\29 +3452:GrBufferAllocPool::GrBufferAllocPool\28GrGpu*\2c\20GrGpuBufferType\2c\20sk_sp\29 +3453:GrBlurUtils::DrawShapeWithMaskFilter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\29 +3454:GrBackendTexture::GrBackendTexture\28GrBackendTexture\20const&\29 +3455:GrBackendRenderTarget::getBackendFormat\28\29\20const +3456:GrAAConvexTessellator::createOuterRing\28GrAAConvexTessellator::Ring\20const&\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring*\29 +3457:GrAAConvexTessellator::createInsetRings\28GrAAConvexTessellator::Ring&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20GrAAConvexTessellator::Ring**\29 +3458:GrAAConvexTessellator::Ring::init\28GrAAConvexTessellator\20const&\29 +3459:GetCopyDistance +3460:FwDCubicEvaluator::FwDCubicEvaluator\28SkPoint\20const*\29 +3461:FT_Stream_ReadAt +3462:FT_Stream_Free +3463:FT_Set_Charmap +3464:FT_New_Size +3465:FT_Load_Sfnt_Table +3466:FT_List_Find +3467:FT_GlyphLoader_Add +3468:FT_Get_Next_Char +3469:FT_Get_Color_Glyph_Layer +3470:FT_CMap_New +3471:FT_Activate_Size +3472:DoFilter2_C +3473:Current_Ratio +3474:Compute_Funcs +3475:CircleOp::Circle&\20skia_private::TArray::emplace_back\28CircleOp::Circle&&\29 +3476:CFF::path_procs_t\2c\20cff2_path_param_t>::curve2\28CFF::cff2_cs_interp_env_t&\2c\20cff2_path_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3477:CFF::path_procs_t\2c\20cff2_extents_param_t>::curve2\28CFF::cff2_cs_interp_env_t&\2c\20cff2_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3478:CFF::path_procs_t::curve2\28CFF::cff1_cs_interp_env_t&\2c\20cff1_path_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3479:CFF::path_procs_t::curve2\28CFF::cff1_cs_interp_env_t&\2c\20cff1_extents_param_t&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\2c\20CFF::point_t\20const&\29 +3480:CFF::parsed_values_t::operator=\28CFF::parsed_values_t&&\29 +3481:CFF::cs_interp_env_t>>::return_from_subr\28\29 +3482:CFF::cs_interp_env_t>>::call_subr\28CFF::biased_subrs_t>>\20const&\2c\20CFF::cs_type_t\29 +3483:CFF::cs_interp_env_t>>::call_subr\28CFF::biased_subrs_t>>\20const&\2c\20CFF::cs_type_t\29 +3484:CFF::cff2_cs_interp_env_t::~cff2_cs_interp_env_t\28\29 +3485:CFF::byte_str_ref_t::operator\5b\5d\28int\29 +3486:CFF::arg_stack_t::push_fixed_from_substr\28CFF::byte_str_ref_t&\29 +3487:AsGaneshRecorder\28SkRecorder*\29 +3488:ApplyAlphaMultiply_C +3489:AlmostLessOrEqualUlps\28float\2c\20float\29 +3490:AlmostEqualUlps_Pin\28double\2c\20double\29 +3491:ActiveEdge::intersect\28ActiveEdge\20const*\29 +3492:AAT::hb_aat_apply_context_t::~hb_aat_apply_context_t\28\29 +3493:AAT::hb_aat_apply_context_t::hb_aat_apply_context_t\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20hb_blob_t*\29 +3494:AAT::TrackTableEntry::get_value\28float\2c\20void\20const*\2c\20hb_array_t\2c\2016u>\20const>\29\20const +3495:AAT::StateTable::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int*\29\20const +3496:AAT::StateTable::get_class\28unsigned\20int\2c\20unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +3497:AAT::StateTable::get_entry\28int\2c\20unsigned\20int\29\20const +3498:AAT::Lookup::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +3499:AAT::ClassTable>::get_class\28unsigned\20int\2c\20unsigned\20int\29\20const +3500:3284 +3501:3285 +3502:3286 +3503:3287 +3504:3288 +3505:3289 +3506:3290 +3507:3291 +3508:xyz_almost_equal\28skcms_Matrix3x3\20const&\2c\20skcms_Matrix3x3\20const&\29 +3509:wuffs_gif__decoder__decode_image_config +3510:wuffs_gif__decoder__decode_frame_config +3511:week_num +3512:wcrtomb +3513:wchar_t\20const*\20std::__2::find\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const&\29 +3514:void\20std::__2::vector>::__construct_at_end\28skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20unsigned\20long\29 +3515:void\20std::__2::vector>::__construct_at_end\28SkString*\2c\20SkString*\2c\20unsigned\20long\29 +3516:void\20std::__2::__sort4\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +3517:void\20std::__2::__sort4\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +3518:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +3519:void\20std::__2::__sort4\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +3520:void\20std::__2::__inplace_merge\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\2c\20long\29 +3521:void\20skgpu::ganesh::SurfaceFillContext::clear<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\20const&\29 +3522:void\20skgpu::VertexWriter::writeQuad\28GrQuad\20const&\29 +3523:void\20portable::memsetT\28unsigned\20short*\2c\20unsigned\20short\2c\20int\29 +3524:void\20portable::memsetT\28unsigned\20long\20long*\2c\20unsigned\20long\20long\2c\20int\29 +3525:void\20portable::memsetT\28unsigned\20int*\2c\20unsigned\20int\2c\20int\29 +3526:void\20merge_sort<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +3527:void\20merge_sort<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\29 +3528:void\20hb_stable_sort\2c\20unsigned\20int>\28OT::HBGlyphID16*\2c\20unsigned\20int\2c\20int\20\28*\29\28OT::IntType\20const*\2c\20OT::IntType\20const*\29\2c\20unsigned\20int*\29 +3529:void\20hb_buffer_t::collect_codepoints\28hb_set_digest_t&\29\20const +3530:void\20SkSafeUnref\28SkMeshSpecification*\29 +3531:void\20SkSafeUnref\28SkMeshPriv::VB\20const*\29 +3532:void\20SkSafeUnref\28GrTexture*\29\20\28.4970\29 +3533:void\20SkSafeUnref\28GrCpuBuffer*\29 +3534:vfprintf +3535:valid_args\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20unsigned\20long*\29 +3536:utf8_back1SafeBody_74 +3537:uscript_getShortName_74 +3538:uscript_getScript_74 +3539:ures_openWithType\28UResourceBundle*\2c\20char\20const*\2c\20char\20const*\2c\20UResOpenType\2c\20UErrorCode*\29 +3540:uprv_strnicmp_74 +3541:uprv_strdup_74 +3542:uprv_sortArray_74 +3543:uprv_isInvariantUString_74 +3544:uprv_compareASCIIPropertyNames_74 +3545:update_offset_to_base\28char\20const*\2c\20long\29 +3546:unsigned\20long\20std::__2::__str_find\5babi:ne180100\5d\2c\204294967295ul>\28char\20const*\2c\20unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +3547:unsigned\20long\20const&\20std::__2::min\5babi:nn180100\5d\28unsigned\20long\20const&\2c\20unsigned\20long\20const&\29 +3548:unsigned\20int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::makeHashCode\28unsigned\20int\20const*\2c\20int\29\20const +3549:unsigned\20int\20hb_buffer_t::group_end\28unsigned\20int\2c\20bool\20\20const\28&\29\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29\29\20const +3550:ultag_isPrivateuseValueSubtags_74 +3551:ulocimp_getKeywords_74 +3552:uloc_openKeywords_74 +3553:uhash_puti_74 +3554:uhash_nextElement_74 +3555:uhash_hashChars_74 +3556:uhash_compareChars_74 +3557:uenum_next_74 +3558:ucstrTextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +3559:ucase_getType_74 +3560:ucase_getTypeOrIgnorable_74 +3561:ubidi_getRuns_74 +3562:u_strToUTF8WithSub_74 +3563:u_strCompare_74 +3564:u_getIntPropertyValue_74 +3565:u_getDataDirectory_74 +3566:u_charMirror_74 +3567:tt_size_reset +3568:tt_sbit_decoder_load_metrics +3569:tt_glyphzone_done +3570:tt_face_get_location +3571:tt_face_find_bdf_prop +3572:tt_delta_interpolate +3573:tt_cmap14_find_variant +3574:tt_cmap14_char_map_nondef_binary +3575:tt_cmap14_char_map_def_binary +3576:tolower +3577:t1_cmap_unicode_done +3578:subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +3579:subQuickSort\28char*\2c\20int\2c\20int\2c\20int\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\2c\20void\20const*\29\2c\20void\20const*\2c\20void*\2c\20void*\29 +3580:strtox +3581:strtoull_l +3582:strtod +3583:strcat +3584:std::logic_error::~logic_error\28\29_18423 +3585:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +3586:std::__2::vector>::reserve\28unsigned\20long\29 +3587:std::__2::vector>\2c\20std::__2::allocator>>>::erase\28std::__2::__wrap_iter>\20const*>\2c\20std::__2::__wrap_iter>\20const*>\29 +3588:std::__2::vector\2c\20std::__2::allocator>>::vector\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29 +3589:std::__2::vector>::__alloc\5babi:nn180100\5d\28\29 +3590:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +3591:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +3592:std::__2::vector\2c\20std::__2::allocator>>::vector\5babi:ne180100\5d\28std::__2::vector\2c\20std::__2::allocator>>&&\29 +3593:std::__2::vector>::push_back\5babi:ne180100\5d\28int\20const&\29 +3594:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +3595:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +3596:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +3597:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +3598:std::__2::vector>::push_back\5babi:ne180100\5d\28SkString\20const&\29 +3599:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +3600:std::__2::vector>::push_back\5babi:ne180100\5d\28SkMeshSpecification::Attribute&&\29 +3601:std::__2::unique_ptr\2c\20void*>\2c\20std::__2::__hash_node_destructor\2c\20void*>>>>::~unique_ptr\5babi:ne180100\5d\28\29 +3602:std::__2::unique_ptr::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3603:std::__2::unique_ptr\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3604:std::__2::unique_ptr>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3605:std::__2::unique_ptr::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +3606:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3607:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3608:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkTypeface_FreeType::FaceRec*\29 +3609:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkStrikeSpec*\29 +3610:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3611:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3612:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Pool*\29 +3613:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Block*\29 +3614:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkEncodedInfo::ICCProfile*\29 +3615:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkDrawableList*\29 +3616:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3617:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkContourMeasureIter::Impl*\29 +3618:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3619:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3620:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3621:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrGLGpu::SamplerObjectCache*\29 +3622:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28std::nullptr_t\29 +3623:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3624:std::__2::unique_ptr>\20GrBlendFragmentProcessor::Make<\28SkBlendMode\296>\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +3625:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrDrawingManager*\29 +3626:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrClientMappedBufferManager*\29 +3627:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +3628:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28FT_FaceRec_*\29 +3629:std::__2::tuple&\20std::__2::tuple::operator=\5babi:ne180100\5d\28std::__2::pair&&\29 +3630:std::__2::time_put>>::~time_put\28\29 +3631:std::__2::pair\20std::__2::minmax\5babi:ne180100\5d>\28std::initializer_list\2c\20std::__2::__less\29 +3632:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28char\29 +3633:std::__2::optional::value\5babi:ne180100\5d\28\29\20& +3634:std::__2::optional::value\5babi:ne180100\5d\28\29\20& +3635:std::__2::locale::locale\28\29 +3636:std::__2::locale::__imp::acquire\28\29 +3637:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\29 +3638:std::__2::ios_base::~ios_base\28\29 +3639:std::__2::ios_base::setstate\5babi:ne180100\5d\28unsigned\20int\29 +3640:std::__2::hash>::operator\28\29\5babi:ne180100\5d\28std::__2::optional\20const&\29\20const +3641:std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::operator\28\29\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29\20const +3642:std::__2::function\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const +3643:std::__2::fpos<__mbstate_t>::fpos\5babi:nn180100\5d\28long\20long\29 +3644:std::__2::enable_if::value\2c\20SkRuntimeEffectBuilder::BuilderUniform&>::type\20SkRuntimeEffectBuilder::BuilderUniform::operator=\28SkV2\20const&\29 +3645:std::__2::deque>::__back_spare\5babi:ne180100\5d\28\29\20const +3646:std::__2::default_delete::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::_EnableIfConvertible::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot>::type\20std::__2::default_delete::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot>\28skia_private::THashTable::Pair\2c\20char\20const*\2c\20skia_private::THashMap::Pair>::Slot*\29\20const +3647:std::__2::default_delete::Traits>::Slot\20\5b\5d>::_EnableIfConvertible::Traits>::Slot>::type\20std::__2::default_delete::Traits>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Traits>::Slot>\28skia_private::THashTable::Traits>::Slot*\29\20const +3648:std::__2::chrono::__libcpp_steady_clock_now\28\29 +3649:std::__2::char_traits::move\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20unsigned\20long\29 +3650:std::__2::char_traits::assign\5babi:nn180100\5d\28char*\2c\20unsigned\20long\2c\20char\29 +3651:std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_17373 +3652:std::__2::basic_string\2c\20std::__2::allocator>::push_back\28wchar_t\29 +3653:std::__2::basic_string\2c\20std::__2::allocator>::capacity\5babi:nn180100\5d\28\29\20const +3654:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d<0>\28wchar_t\20const*\29 +3655:std::__2::basic_string\2c\20std::__2::allocator>::resize\28unsigned\20long\2c\20char\29 +3656:std::__2::basic_string\2c\20std::__2::allocator>::__make_iterator\5babi:nn180100\5d\28char*\29 +3657:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +3658:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +3659:std::__2::basic_streambuf>::~basic_streambuf\28\29 +3660:std::__2::basic_streambuf>::setp\5babi:nn180100\5d\28char*\2c\20char*\29 +3661:std::__2::basic_ostream>::~basic_ostream\28\29 +3662:std::__2::basic_ostream>::flush\28\29 +3663:std::__2::basic_istream>::~basic_istream\28\29 +3664:std::__2::basic_istream>::sentry::sentry\28std::__2::basic_istream>&\2c\20bool\29 +3665:std::__2::basic_iostream>::~basic_iostream\28\29_17275 +3666:std::__2::array\20skgpu::ganesh::SurfaceFillContext::adjustColorAlphaType<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\29\20const +3667:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +3668:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +3669:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +3670:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +3671:std::__2::__wrap_iter::operator+\5babi:nn180100\5d\28long\29\20const +3672:std::__2::__wrap_iter::operator++\5babi:nn180100\5d\28\29 +3673:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28GrRecordingContext*&&\2c\20GrSurfaceProxyView&&\2c\20GrSurfaceProxyView&&\2c\20GrColorInfo\20const&\29 +3674:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28GrRecordingContext*&\2c\20skgpu::ganesh::PathRendererChain::Options&\29 +3675:std::__2::__unique_if>::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\2c\20GrDirectContext::DirectContextID>\28GrDirectContext::DirectContextID&&\29 +3676:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::SymbolTable*&\2c\20bool&\29 +3677:std::__2::__tuple_impl\2c\20GrSurfaceProxyView\2c\20sk_sp>::~__tuple_impl\28\29 +3678:std::__2::__split_buffer>::__destruct_at_end\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock**\2c\20std::__2::integral_constant\29 +3679:std::__2::__split_buffer&>::~__split_buffer\28\29 +3680:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +3681:std::__2::__split_buffer&>::~__split_buffer\28\29 +3682:std::__2::__optional_destruct_base>\2c\20false>::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3683:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3684:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +3685:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3686:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +3687:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +3688:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20wchar_t*\2c\20wchar_t&\2c\20wchar_t&\29 +3689:std::__2::__num_get::__stage2_float_loop\28wchar_t\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20wchar_t*\29 +3690:std::__2::__num_get::__stage2_float_prep\28std::__2::ios_base&\2c\20char*\2c\20char&\2c\20char&\29 +3691:std::__2::__num_get::__stage2_float_loop\28char\2c\20bool&\2c\20char&\2c\20char*\2c\20char*&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int*\2c\20unsigned\20int*&\2c\20unsigned\20int&\2c\20char*\29 +3692:std::__2::__murmur2_or_cityhash::operator\28\29\5babi:ne180100\5d\28void\20const*\2c\20unsigned\20long\29\20const +3693:std::__2::__libcpp_wcrtomb_l\5babi:nn180100\5d\28char*\2c\20wchar_t\2c\20__mbstate_t*\2c\20__locale_struct*\29 +3694:std::__2::__itoa::__base_10_u32\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +3695:std::__2::__itoa::__append6\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +3696:std::__2::__itoa::__append4\5babi:nn180100\5d\28char*\2c\20unsigned\20int\29 +3697:std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::~__hash_table\28\29 +3698:std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::~__hash_table\28\29 +3699:std::__2::__function::__value_func\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\5babi:ne180100\5d\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const +3700:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28std::__2::__function::__base*\29\20const +3701:skvx::Vec<4\2c\20unsigned\20short>\20skvx::to_half<4>\28skvx::Vec<4\2c\20float>\20const&\29 +3702:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator~<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +3703:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator|<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +3704:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +3705:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator<=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +3706:skvx::Vec<4\2c\20int>\20skvx::operator~<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\29 +3707:skvx::Vec<4\2c\20int>\20skvx::operator&<4\2c\20int\2c\20int\2c\20void>\28skvx::Vec<4\2c\20int>\20const&\2c\20int\29 +3708:skvx::Vec<4\2c\20float>&\20skvx::operator+=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +3709:sktext::gpu::VertexFiller::flatten\28SkWriteBuffer&\29\20const +3710:sktext::gpu::VertexFiller::deviceRectAndCheckTransform\28SkMatrix\20const&\29\20const +3711:sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry::find\28sktext::gpu::TextBlob::Key\20const&\29\20const +3712:sktext::gpu::SubRunAllocator::SubRunAllocator\28char*\2c\20int\2c\20int\29 +3713:sktext::gpu::GlyphVector::flatten\28SkWriteBuffer&\29\20const +3714:sktext::gpu::GlyphVector::Make\28sktext::SkStrikePromise&&\2c\20SkSpan\2c\20sktext::gpu::SubRunAllocator*\29 +3715:sktext::gpu::BagOfBytes::PlatformMinimumSizeWithOverhead\28int\2c\20int\29 +3716:sktext::gpu::AtlasSubRun::AtlasSubRun\28sktext::gpu::VertexFiller&&\2c\20sktext::gpu::GlyphVector&&\29 +3717:sktext::SkStrikePromise::flatten\28SkWriteBuffer&\29\20const +3718:sktext::GlyphRunList::sourceBoundsWithOrigin\28\29\20const +3719:skpaint_to_grpaint_impl\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::optional>>\2c\20SkBlender*\2c\20GrPaint*\29 +3720:skip_literal_string +3721:skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11461 +3722:skif::LayerSpace::ceil\28\29\20const +3723:skif::LayerSpace\20skif::Mapping::paramToLayer\28skif::ParameterSpace\20const&\29\20const +3724:skif::LayerSpace::inverseMapRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29\20const +3725:skif::LayerSpace::inset\28skif::LayerSpace\20const&\29 +3726:skif::FilterResult::operator=\28skif::FilterResult\20const&\29 +3727:skif::FilterResult::insetByPixel\28\29\20const +3728:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20bool\2c\20SkBlender\20const*\29\20const +3729:skif::FilterResult::applyColorFilter\28skif::Context\20const&\2c\20sk_sp\29\20const +3730:skif::FilterResult::FilterResult\28sk_sp\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult::PixelBoundary\29 +3731:skif::FilterResult::Builder::~Builder\28\29 +3732:skif::Context::withNewSource\28skif::FilterResult\20const&\29\20const +3733:skif::Context::operator=\28skif::Context&&\29 +3734:skif::Backend::~Backend\28\29 +3735:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot::reset\28\29 +3736:skia_private::THashTable::Pair\2c\20SkSL::Symbol\20const*\2c\20skia_private::THashMap::Pair>::firstPopulatedSlot\28\29\20const +3737:skia_private::THashTable::Pair\2c\20SkSL::Symbol\20const*\2c\20skia_private::THashMap::Pair>::Iter>::operator++\28\29 +3738:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +3739:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot::reset\28\29 +3740:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot::reset\28\29 +3741:skia_private::THashTable::Traits>::Hash\28long\20long\20const&\29 +3742:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::Hash\28SkImageFilterCacheKey\20const&\29 +3743:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::findOrNull\28skgpu::ScratchKey\20const&\29\20const +3744:skia_private::THashTable::Traits>::set\28SkSL::Variable\20const*\29 +3745:skia_private::THashTable::Entry*\2c\20unsigned\20int\2c\20SkLRUCache::Traits>::uncheckedSet\28SkLRUCache::Entry*&&\29 +3746:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +3747:skia_private::THashTable::Traits>::Hash\28FT_Opaque_Paint_\20const&\29 +3748:skia_private::THashMap\2c\20SkGoodHash>::find\28SkString\20const&\29\20const +3749:skia_private::THashMap>\2c\20SkGoodHash>::set\28SkSL::Variable\20const*\2c\20std::__2::unique_ptr>\29 +3750:skia_private::THashMap::operator\5b\5d\28SkSL::SymbolTable::SymbolKey\20const&\29 +3751:skia_private::THashMap::find\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +3752:skia_private::THashMap::find\28SkSL::IRNode\20const*\20const&\29\20const +3753:skia_private::THashMap::set\28SkSL::FunctionDeclaration\20const*\2c\20SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::FunctionState\29 +3754:skia_private::THashMap>\2c\20SkGoodHash>::find\28SkImageFilter\20const*\20const&\29\20const +3755:skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::set\28SkIcuBreakIteratorCache::Request\2c\20sk_sp\29 +3756:skia_private::TArray::resize_back\28int\29 +3757:skia_private::TArray::push_back_raw\28int\29 +3758:skia_private::TArray::operator==\28skia_private::TArray\20const&\29\20const +3759:skia_private::TArray\2c\20true>::push_back\28std::__2::array&&\29 +3760:skia_private::TArray\2c\20false>::~TArray\28\29 +3761:skia_private::TArray::clear\28\29 +3762:skia_private::TArray::clear\28\29 +3763:skia_private::TArray::TArray\28skia_private::TArray\20const&\29 +3764:skia_private::TArray::TArray\28skia_private::TArray\20const&\29 +3765:skia_private::TArray::~TArray\28\29 +3766:skia_private::TArray::move\28void*\29 +3767:skia_private::TArray::BufferFinishedMessage\2c\20false>::~TArray\28\29 +3768:skia_private::TArray::BufferFinishedMessage\2c\20false>::move\28void*\29 +3769:skia_private::TArray\2c\20true>::~TArray\28\29 +3770:skia_private::TArray\2c\20true>::push_back\28sk_sp&&\29 +3771:skia_private::TArray::reserve_exact\28int\29 +3772:skia_private::TArray\2c\20true>::Allocate\28int\2c\20double\29 +3773:skia_private::TArray::reserve_exact\28int\29 +3774:skia_private::TArray::Allocate\28int\2c\20double\29 +3775:skia_private::TArray::reserve_exact\28int\29 +3776:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +3777:skia_private::TArray::~TArray\28\29 +3778:skia_private::TArray::move\28void*\29 +3779:skia_private::AutoSTMalloc<8ul\2c\20unsigned\20int\2c\20void>::reset\28unsigned\20long\29 +3780:skia_private::AutoSTArray<6\2c\20SkResourceCache::Key>::reset\28int\29 +3781:skia_private::AutoSTArray<20\2c\20SkGlyph\20const*>::reset\28int\29 +3782:skia_private::AutoSTArray<16\2c\20SkRect>::reset\28int\29 +3783:skia_png_sig_cmp +3784:skia_png_set_text_2 +3785:skia_png_realloc_array +3786:skia_png_get_uint_31 +3787:skia_png_check_fp_string +3788:skia_png_check_fp_number +3789:skia_png_app_warning +3790:skia_png_app_error +3791:skia::textlayout::\28anonymous\20namespace\29::intersected\28skia::textlayout::SkRange\20const&\2c\20skia::textlayout::SkRange\20const&\29 +3792:skia::textlayout::\28anonymous\20namespace\29::draw_line_as_rect\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +3793:skia::textlayout::TypefaceFontStyleSet::createTypeface\28int\29 +3794:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29 +3795:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::$_0::operator\28\29\28sk_sp\2c\20sk_sp\29\20const +3796:skia::textlayout::TextLine::iterateThroughSingleRunByStyles\28skia::textlayout::TextLine::TextAdjustment\2c\20skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::StyleType\2c\20std::__2::function\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\20const&\29\20const::$_0::operator\28\29\28skia::textlayout::SkRange\2c\20float\29\20const +3797:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const +3798:skia::textlayout::TextBox&\20std::__2::vector>::emplace_back\28SkRect&\2c\20skia::textlayout::TextDirection&&\29 +3799:skia::textlayout::StrutStyle::StrutStyle\28skia::textlayout::StrutStyle\20const&\29 +3800:skia::textlayout::Run::isResolved\28\29\20const +3801:skia::textlayout::Run::copyTo\28SkTextBlobBuilder&\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +3802:skia::textlayout::Run::calculateWidth\28unsigned\20long\2c\20unsigned\20long\2c\20bool\29\20const +3803:skia::textlayout::Run::calculateHeight\28skia::textlayout::LineMetricStyle\2c\20skia::textlayout::LineMetricStyle\29\20const +3804:skia::textlayout::ParagraphStyle::ParagraphStyle\28skia::textlayout::ParagraphStyle&&\29 +3805:skia::textlayout::ParagraphImpl::getGlyphPositionAtCoordinate\28float\2c\20float\29 +3806:skia::textlayout::ParagraphImpl::findNextGraphemeBoundary\28unsigned\20long\29\20const +3807:skia::textlayout::ParagraphImpl::findAllBlocks\28skia::textlayout::SkRange\29 +3808:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29::$_0::operator\28\29\28\29\20const::'lambda'\28unsigned\20long\29::operator\28\29\28unsigned\20long\29\20const +3809:skia::textlayout::ParagraphImpl::buildClusterTable\28\29 +3810:skia::textlayout::ParagraphCacheKey::operator==\28skia::textlayout::ParagraphCacheKey\20const&\29\20const +3811:skia::textlayout::ParagraphBuilderImpl::endRunIfNeeded\28\29 +3812:skia::textlayout::OneLineShaper::~OneLineShaper\28\29 +3813:skia::textlayout::OneLineShaper::FontKey::~FontKey\28\29 +3814:skia::textlayout::LineMetrics::LineMetrics\28\29 +3815:skia::textlayout::FontCollection::FamilyKey::~FamilyKey\28\29 +3816:skia::textlayout::FontArguments::CloneTypeface\28sk_sp\20const&\29\20const +3817:skia::textlayout::Cluster::isSoftBreak\28\29\20const +3818:skia::textlayout::Block::Block\28skia::textlayout::Block\20const&\29 +3819:skgpu::tess::AffineMatrix::AffineMatrix\28SkMatrix\20const&\29 +3820:skgpu::ganesh::\28anonymous\20namespace\29::add_quad_segment\28SkPoint\20const*\2c\20skia_private::TArray*\29 +3821:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::Entry::Entry\28skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::Entry&&\29 +3822:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::~Impl\28\29 +3823:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::programInfo\28\29 +3824:skgpu::ganesh::SurfaceFillContext::internalClear\28SkIRect\20const*\2c\20std::__2::array\2c\20bool\29 +3825:skgpu::ganesh::SurfaceFillContext::discard\28\29 +3826:skgpu::ganesh::SurfaceFillContext::addOp\28std::__2::unique_ptr>\29 +3827:skgpu::ganesh::SurfaceDrawContext::wrapsVkSecondaryCB\28\29\20const +3828:skgpu::ganesh::SurfaceDrawContext::stencilRect\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const*\29 +3829:skgpu::ganesh::SurfaceDrawContext::drawPath\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrStyle\20const&\29 +3830:skgpu::ganesh::SurfaceDrawContext::attemptQuadOptimization\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20DrawQuad*\2c\20GrPaint*\29 +3831:skgpu::ganesh::SurfaceDrawContext::Make\28GrRecordingContext*\2c\20GrColorType\2c\20sk_sp\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +3832:skgpu::ganesh::SurfaceContext::rescale\28GrImageInfo\20const&\2c\20GrSurfaceOrigin\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29 +3833:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29::$_0::operator\28\29\28GrSurfaceProxyView\2c\20SkIRect\29\20const +3834:skgpu::ganesh::SurfaceContext::SurfaceContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +3835:skgpu::ganesh::SmallPathShapeDataKey::operator==\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29\20const +3836:skgpu::ganesh::QuadPerEdgeAA::MinColorType\28SkRGBA4f<\28SkAlphaType\292>\29 +3837:skgpu::ganesh::PathTessellator::~PathTessellator\28\29 +3838:skgpu::ganesh::PathCurveTessellator::draw\28GrOpFlushState*\29\20const +3839:skgpu::ganesh::OpsTask::~OpsTask\28\29 +3840:skgpu::ganesh::OpsTask::recordOp\28std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const*\2c\20GrCaps\20const&\29 +3841:skgpu::ganesh::MakeFragmentProcessorFromView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +3842:skgpu::ganesh::FilterAndMipmapHaveNoEffect\28GrQuad\20const&\2c\20GrQuad\20const&\29 +3843:skgpu::ganesh::FillRectOp::MakeNonAARect\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +3844:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::can_use_hw_derivatives_with_coverage\28skvx::Vec<2\2c\20float>\20const&\2c\20skvx::Vec<2\2c\20float>\20const&\29 +3845:skgpu::ganesh::FillRRectOp::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20SkRect\20const&\2c\20GrAA\29 +3846:skgpu::ganesh::Device::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +3847:skgpu::ganesh::Device::drawImageQuadDirect\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +3848:skgpu::ganesh::Device::Make\28std::__2::unique_ptr>\2c\20SkAlphaType\2c\20skgpu::ganesh::Device::InitContents\29 +3849:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::setup_dashed_rect\28SkRect\20const&\2c\20skgpu::VertexWriter&\2c\20SkMatrix\20const&\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashCap\29 +3850:skgpu::ganesh::ClipStack::~ClipStack\28\29 +3851:skgpu::ganesh::ClipStack::writableSaveRecord\28bool*\29 +3852:skgpu::ganesh::ClipStack::end\28\29\20const +3853:skgpu::ganesh::ClipStack::clip\28skgpu::ganesh::ClipStack::RawElement&&\29 +3854:skgpu::ganesh::ClipStack::clipState\28\29\20const +3855:skgpu::ganesh::ClipStack::SaveRecord::invalidateMasks\28GrProxyProvider*\2c\20SkTBlockList*\29 +3856:skgpu::ganesh::ClipStack::SaveRecord::genID\28\29\20const +3857:skgpu::ganesh::ClipStack::RawElement::operator=\28skgpu::ganesh::ClipStack::RawElement&&\29 +3858:skgpu::ganesh::ClipStack::RawElement::contains\28skgpu::ganesh::ClipStack::SaveRecord\20const&\29\20const +3859:skgpu::ganesh::ClipStack::RawElement::RawElement\28SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\2c\20SkClipOp\29 +3860:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +3861:skgpu::Swizzle::apply\28SkRasterPipeline*\29\20const +3862:skgpu::Swizzle::applyTo\28std::__2::array\29\20const +3863:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29 +3864:skgpu::ScratchKey::GenerateResourceType\28\29 +3865:skgpu::RectanizerSkyline::reset\28\29 +3866:skgpu::Plot::addSubImage\28int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +3867:skgpu::AutoCallback::AutoCallback\28skgpu::AutoCallback&&\29 +3868:skcpu::make_paint_with_image\28SkPaint\20const&\2c\20SkBitmap\20const&\2c\20SkSamplingOptions\20const&\2c\20SkMatrix*\29 +3869:skcpu::DrawTreatAAStrokeAsHairline\28float\2c\20SkMatrix\20const&\2c\20float*\29 +3870:skcpu::Draw::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +3871:skcpu::Draw::drawDevicePoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\2c\20SkDevice*\29\20const +3872:skcpu::Draw::drawBitmap\28SkBitmap\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29\20const +3873:skcpu::Draw::Draw\28skcpu::Draw\20const&\29 +3874:skcms_Transform +3875:skcms_AreApproximateInverses +3876:sk_sp::~sk_sp\28\29 +3877:sk_sp::operator=\28sk_sp&&\29 +3878:sk_sp::reset\28GrTextureProxy*\29 +3879:sk_sp::reset\28GrTexture*\29 +3880:sk_sp::operator=\28sk_sp&&\29 +3881:sk_sp::reset\28GrCpuBuffer*\29 +3882:sk_sp&\20sk_sp::operator=\28sk_sp&&\29 +3883:sk_sp&\20sk_sp::operator=\28sk_sp\20const&\29 +3884:sk_ft_free\28FT_MemoryRec_*\2c\20void*\29 +3885:sift +3886:shallowTextClone\28UText*\2c\20UText\20const*\2c\20UErrorCode*\29 +3887:set_initial_texture_params\28GrGLInterface\20const*\2c\20GrGLCaps\20const&\2c\20unsigned\20int\29 +3888:setLevelsOutsideIsolates\28UBiDi*\2c\20int\2c\20int\2c\20unsigned\20char\29 +3889:sect_with_vertical\28SkPoint\20const*\2c\20float\29 +3890:sampler_key\28GrTextureType\2c\20skgpu::Swizzle\20const&\2c\20GrCaps\20const&\29 +3891:round\28SkPoint*\29 +3892:res_getResource_74 +3893:read_tag_xyz\28skcms_ICCTag\20const*\2c\20float*\2c\20float*\2c\20float*\29 +3894:read_color_line +3895:quick_inverse\28int\29 +3896:quad_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3897:puts +3898:psh_globals_set_scale +3899:ps_tofixedarray +3900:ps_parser_skip_PS_token +3901:ps_mask_test_bit +3902:ps_mask_table_alloc +3903:ps_mask_ensure +3904:ps_dimension_reset_mask +3905:ps_builder_init +3906:ps_builder_done +3907:pow +3908:portable::parametric_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3909:portable::hsl_to_rgb_k\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3910:portable::gamma__k\28float\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3911:portable::PQish_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3912:portable::HLGish_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3913:portable::HLGinvish_k\28skcms_TransferFunction\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20std::byte*&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\2c\20float&\29::'lambda'\28float\29::operator\28\29\28float\29\20const +3914:points_are_colinear_and_b_is_middle\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float*\29 +3915:png_zlib_inflate +3916:png_inflate_read +3917:png_inflate_claim +3918:png_build_8bit_table +3919:png_build_16bit_table +3920:performFallbackLookup\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20int\20const*\2c\20int\29 +3921:operator==\28SkPath\20const&\2c\20SkPath\20const&\29 +3922:operator!=\28SkString\20const&\2c\20SkString\20const&\29 +3923:normalize +3924:non-virtual\20thunk\20to\20GrOpFlushState::deferredUploadTarget\28\29 +3925:nextafterf +3926:mv_mul\28skcms_Matrix3x3\20const*\2c\20skcms_Vector3\20const*\29 +3927:move_nearby\28SkOpContourHead*\29 +3928:mayHaveParent\28char*\29 +3929:make_unpremul_effect\28std::__2::unique_ptr>\29 +3930:machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>::operator==\28machine_index_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\20const&\29\20const +3931:long\20std::__2::__libcpp_atomic_refcount_decrement\5babi:nn180100\5d\28long&\29 +3932:long\20const&\20std::__2::min\5babi:nn180100\5d\28long\20const&\2c\20long\20const&\29 +3933:log1p +3934:load_truetype_glyph +3935:load\28unsigned\20char\20const*\2c\20int\2c\20void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\29 +3936:loadParentsExceptRoot\28UResourceDataEntry*&\2c\20char*\2c\20int\2c\20signed\20char\2c\20char*\2c\20UErrorCode*\29 +3937:line_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +3938:lineMetrics_getStartIndex +3939:just_solid_color\28SkPaint\20const&\29 +3940:is_reflex_vertex\28SkPoint\20const*\2c\20int\2c\20float\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +3941:isMatchAtCPBoundary\28char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*\29 +3942:inner_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +3943:inflate_table +3944:impeller::TRect::GetCenter\28\29\20const +3945:impeller::TRect::Contains\28impeller::TRect\20const&\29\20const +3946:impeller::TRect::Contains\28impeller::TPoint\20const&\29\20const +3947:impeller::TPoint::GetLength\28\29\20const +3948:impeller::TPoint::GetDistanceSquared\28impeller::TPoint\20const&\29\20const +3949:impeller::RoundingRadii::AreAllCornersSame\28float\29\20const +3950:impeller::RoundRect::MakeRectRadii\28impeller::TRect\20const&\2c\20impeller::RoundingRadii\20const&\29 +3951:impeller::Matrix::operator==\28impeller::Matrix\20const&\29\20const +3952:impeller::Matrix::IsIdentity\28\29\20const +3953:impeller::Matrix::IsFinite\28\29\20const +3954:image_getWidth +3955:image_filter_color_type\28SkColorInfo\20const&\29 +3956:icu_74::ures_getUnicodeString\28UResourceBundle\20const*\2c\20UErrorCode*\29 +3957:icu_74::umtx_initOnce\28icu_74::UInitOnce&\2c\20void\20\28*\29\28\29\29 +3958:icu_74::makeBogusLocale\28\29 +3959:icu_74::\28anonymous\20namespace\29::appendResult\28char16_t*\2c\20int\2c\20int\2c\20int\2c\20char16_t\20const*\2c\20int\2c\20unsigned\20int\2c\20icu_74::Edits*\29 +3960:icu_74::\28anonymous\20namespace\29::AliasReplacer::replace\28icu_74::Locale\20const&\2c\20icu_74::CharString&\2c\20UErrorCode&\29::$_0::__invoke\28UElement\2c\20UElement\29 +3961:icu_74::XLikelySubtagsData::readStrings\28icu_74::ResourceTable\20const&\2c\20char\20const*\2c\20icu_74::ResourceValue&\2c\20icu_74::LocalMemory&\2c\20int&\2c\20UErrorCode&\29 +3962:icu_74::XLikelySubtags::trieNext\28icu_74::BytesTrie&\2c\20icu_74::StringPiece\2c\20int\29 +3963:icu_74::Vectorizer::stringToIndex\28char16_t\20const*\29\20const +3964:icu_74::UniqueCharStrings::add\28char16_t\20const*\2c\20UErrorCode&\29 +3965:icu_74::UniqueCharStrings::addByValue\28icu_74::UnicodeString\2c\20UErrorCode&\29 +3966:icu_74::UnicodeString::setTo\28char16_t\20const*\2c\20int\29 +3967:icu_74::UnicodeString::remove\28int\2c\20int\29 +3968:icu_74::UnicodeString::isBufferWritable\28\29\20const +3969:icu_74::UnicodeString::indexOf\28char16_t\2c\20int\29\20const +3970:icu_74::UnicodeString::getTerminatedBuffer\28\29 +3971:icu_74::UnicodeString::doExtract\28int\2c\20int\2c\20icu_74::UnicodeString&\29\20const +3972:icu_74::UnicodeString::doAppend\28icu_74::UnicodeString\20const&\2c\20int\2c\20int\29 +3973:icu_74::UnicodeString::copyFrom\28icu_74::UnicodeString\20const&\2c\20signed\20char\29 +3974:icu_74::UnicodeString::allocate\28int\29 +3975:icu_74::UnicodeSet::swapBuffers\28\29 +3976:icu_74::UnicodeSet::spanUTF8\28char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +3977:icu_74::UnicodeSet::spanBack\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +3978:icu_74::UnicodeSet::spanBackUTF8\28char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +3979:icu_74::UnicodeSet::setPattern\28char16_t\20const*\2c\20int\29 +3980:icu_74::UnicodeSet::retain\28int\20const*\2c\20int\2c\20signed\20char\29 +3981:icu_74::UnicodeSet::remove\28int\2c\20int\29 +3982:icu_74::UnicodeSet::ensureBufferCapacity\28int\29 +3983:icu_74::UnicodeSet::applyIntPropertyValue\28UProperty\2c\20int\2c\20UErrorCode&\29 +3984:icu_74::UnicodeSet::allocateStrings\28UErrorCode&\29 +3985:icu_74::UnicodeSet::addAll\28icu_74::UnicodeSet\20const&\29 +3986:icu_74::UnicodeSet::_appendToPat\28icu_74::UnicodeString&\2c\20int\2c\20int\2c\20signed\20char\29 +3987:icu_74::UVector::sort\28int\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +3988:icu_74::UVector::insertElementAt\28void*\2c\20int\2c\20UErrorCode&\29 +3989:icu_74::UVector::indexOf\28UElement\2c\20int\2c\20signed\20char\29\20const +3990:icu_74::UStringSet::~UStringSet\28\29_14084 +3991:icu_74::UMemory::operator\20delete\28void*\29 +3992:icu_74::UCharsTrieBuilder::add\28icu_74::UnicodeString\20const&\2c\20int\2c\20UErrorCode&\29 +3993:icu_74::UCharsTrie::readValue\28char16_t\20const*\2c\20int\29 +3994:icu_74::UCharsTrie::next\28int\29 +3995:icu_74::StringPiece::compare\28icu_74::StringPiece\29 +3996:icu_74::StringEnumeration::~StringEnumeration\28\29 +3997:icu_74::SimpleFilteredSentenceBreakIterator::resetState\28UErrorCode&\29 +3998:icu_74::SimpleFilteredSentenceBreakIterator::internalNext\28int\29 +3999:icu_74::SimpleFilteredSentenceBreakIterator::breakExceptionAt\28int\29 +4000:icu_74::RuleBasedBreakIterator::DictionaryCache::following\28int\2c\20int*\2c\20int*\29 +4001:icu_74::RuleBasedBreakIterator::BreakCache::next\28\29 +4002:icu_74::RuleBasedBreakIterator::BreakCache::current\28\29 +4003:icu_74::RuleBasedBreakIterator::BreakCache::addPreceding\28int\2c\20int\2c\20icu_74::RuleBasedBreakIterator::BreakCache::UpdatePositionValues\29 +4004:icu_74::ResourceDataValue::getTable\28UErrorCode&\29\20const +4005:icu_74::ResourceDataValue::getString\28int&\2c\20UErrorCode&\29\20const +4006:icu_74::ResourceArray::internalGetResource\28ResourceData\20const*\2c\20int\29\20const +4007:icu_74::ReorderingBuffer::previousCC\28\29 +4008:icu_74::ReorderingBuffer::insert\28int\2c\20unsigned\20char\29 +4009:icu_74::ReorderingBuffer::append\28char16_t\20const*\2c\20int\2c\20signed\20char\2c\20unsigned\20char\2c\20unsigned\20char\2c\20UErrorCode&\29 +4010:icu_74::ReorderingBuffer::appendBMP\28char16_t\2c\20unsigned\20char\2c\20UErrorCode&\29 +4011:icu_74::Normalizer2Impl::~Normalizer2Impl\28\29 +4012:icu_74::Normalizer2Impl::norm16HasDecompBoundaryAfter\28unsigned\20short\29\20const +4013:icu_74::Normalizer2Impl::hasCompBoundaryAfter\28int\2c\20signed\20char\29\20const +4014:icu_74::Normalizer2Impl::getCC\28unsigned\20short\29\20const +4015:icu_74::Normalizer2Impl::decompose\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer*\2c\20UErrorCode&\29\20const +4016:icu_74::Normalizer2Impl::decomposeShort\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20signed\20char\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +4017:icu_74::Normalizer2Impl::copyLowPrefixFromNulTerminated\28char16_t\20const*\2c\20int\2c\20icu_74::ReorderingBuffer*\2c\20UErrorCode&\29\20const +4018:icu_74::Norm2AllModes::getNFKCInstance\28UErrorCode&\29 +4019:icu_74::Locale::setKeywordValue\28char\20const*\2c\20char\20const*\2c\20UErrorCode&\29 +4020:icu_74::Locale::operator=\28icu_74::Locale\20const&\29 +4021:icu_74::Locale::Locale\28icu_74::Locale\20const&\29 +4022:icu_74::LocalPointer::adoptInsteadAndCheckErrorCode\28icu_74::UVector*\2c\20UErrorCode&\29 +4023:icu_74::LocalMemory::allocateInsteadAndCopy\28int\2c\20int\29 +4024:icu_74::LSTMData::~LSTMData\28\29 +4025:icu_74::ICU_Utility::skipWhitespace\28icu_74::UnicodeString\20const&\2c\20int&\2c\20signed\20char\29 +4026:icu_74::ICUServiceKey::~ICUServiceKey\28\29 +4027:icu_74::ICUServiceKey::prefix\28icu_74::UnicodeString&\29\20const +4028:icu_74::ICUResourceBundleFactory::~ICUResourceBundleFactory\28\29 +4029:icu_74::ICULocaleService::~ICULocaleService\28\29 +4030:icu_74::Hashtable::remove\28icu_74::UnicodeString\20const&\29 +4031:icu_74::Hangul::decompose\28int\2c\20char16_t*\29 +4032:icu_74::EmojiProps::getSingleton\28UErrorCode&\29 +4033:icu_74::CharString::appendInvariantChars\28char16_t\20const*\2c\20int\2c\20UErrorCode&\29 +4034:icu_74::CharString*\20icu_74::MemoryPool::create<>\28\29 +4035:icu_74::BytesTrie::getState64\28\29\20const +4036:icu_74::ByteSinkUtil::appendChange\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20char16_t\20const*\2c\20int\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29 +4037:icu_74::BreakIterator::makeInstance\28icu_74::Locale\20const&\2c\20int\2c\20UErrorCode&\29 +4038:icu_74::BMPSet::findCodePoint\28int\2c\20int\2c\20int\29\20const +4039:icu_74::Array1D::sigmoid\28\29 +4040:icu_74::Array1D::addDotProduct\28icu_74::ReadArray1D\20const&\2c\20icu_74::ReadArray2D\20const&\29 +4041:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +4042:hb_vector_t::push\28\29 +4043:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +4044:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +4045:hb_vector_t::push\28\29 +4046:hb_vector_t::extend\28hb_array_t\29 +4047:hb_vector_t\2c\20false>::shrink_vector\28unsigned\20int\29 +4048:hb_vector_t::push\28\29 +4049:hb_utf8_t::next\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20int*\2c\20unsigned\20int\29 +4050:hb_shape_plan_destroy +4051:hb_set_digest_t::add\28unsigned\20int\29 +4052:hb_script_get_horizontal_direction +4053:hb_pool_t::alloc\28\29 +4054:hb_paint_funcs_t::push_clip_glyph\28void*\2c\20unsigned\20int\2c\20hb_font_t*\29 +4055:hb_paint_funcs_t::image\28void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\29 +4056:hb_paint_funcs_t::color\28void*\2c\20int\2c\20unsigned\20int\29 +4057:hb_paint_extents_context_t::push_clip\28hb_extents_t\29 +4058:hb_lazy_loader_t\2c\20hb_face_t\2c\202u\2c\20hb_blob_t>::get\28\29\20const +4059:hb_lazy_loader_t\2c\20hb_face_t\2c\201u\2c\20hb_blob_t>::get\28\29\20const +4060:hb_lazy_loader_t\2c\20hb_face_t\2c\2018u\2c\20hb_blob_t>::get\28\29\20const +4061:hb_lazy_loader_t\2c\20hb_face_t\2c\203u\2c\20OT::cmap_accelerator_t>::get_stored\28\29\20const +4062:hb_lazy_loader_t\2c\20hb_face_t\2c\2032u\2c\20hb_blob_t>::get\28\29\20const +4063:hb_lazy_loader_t\2c\20hb_face_t\2c\2028u\2c\20AAT::morx_accelerator_t>::get_stored\28\29\20const +4064:hb_lazy_loader_t\2c\20hb_face_t\2c\2029u\2c\20AAT::mort_accelerator_t>::get_stored\28\29\20const +4065:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>>\2c\20hb_pair_t>>::operator-\28unsigned\20int\29\20const +4066:hb_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>\2c\20OT::HBGlyphID16&>::end\28\29\20const +4067:hb_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>\2c\20hb_pair_t>::operator++\28\29\20& +4068:hb_hashmap_t::item_t::operator==\28hb_serialize_context_t::object_t\20const*\20const&\29\20const +4069:hb_font_t::has_glyph_h_origin_func\28\29 +4070:hb_font_t::has_func\28unsigned\20int\29 +4071:hb_font_t::get_nominal_glyphs\28unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\29 +4072:hb_font_t::get_glyph_v_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +4073:hb_font_t::get_glyph_v_advances\28unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\29 +4074:hb_font_t::get_glyph_h_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +4075:hb_font_t::get_glyph_h_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +4076:hb_font_t::get_glyph_h_advances\28unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\29 +4077:hb_font_t::get_glyph_contour_point_for_origin\28unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20int*\2c\20int*\29 +4078:hb_font_funcs_destroy +4079:hb_draw_cubic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +4080:hb_decycler_node_t::hb_decycler_node_t\28hb_decycler_t&\29 +4081:hb_buffer_t::output_info\28hb_glyph_info_t\20const&\29 +4082:hb_buffer_t::_infos_set_glyph_flags\28hb_glyph_info_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +4083:hb_buffer_t::_infos_find_min_cluster\28hb_glyph_info_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +4084:hb_buffer_set_length +4085:hb_buffer_create +4086:hb_bounds_t*\20hb_vector_t::push\28hb_bounds_t&&\29 +4087:hb_bit_set_t::fini\28\29 +4088:hb_bit_page_t::add_range\28unsigned\20int\2c\20unsigned\20int\29 +4089:haircubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkRect\20const*\2c\20SkRect\20const*\2c\20SkBlitter*\2c\20int\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +4090:gray_render_line +4091:gl_target_to_gr_target\28unsigned\20int\29 +4092:gl_target_to_binding_index\28unsigned\20int\29 +4093:get_vendor\28char\20const*\29 +4094:get_renderer\28char\20const*\2c\20GrGLExtensions\20const&\29 +4095:get_layer_mapping_and_bounds\28SkSpan>\2c\20SkM44\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\2c\20float\29 +4096:get_joining_type\28unsigned\20int\2c\20hb_unicode_general_category_t\29 +4097:get_child_table_pointer +4098:getDefaultScript\28icu_74::CharString\20const&\2c\20icu_74::CharString\20const&\29 +4099:generate_distance_field_from_image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\29 +4100:gaussianIntegral\28float\29 +4101:ft_var_readpackeddeltas +4102:ft_var_done_item_variation_store +4103:ft_glyphslot_alloc_bitmap +4104:ft_face_get_mm_service +4105:freelocale +4106:free_entry\28UResourceDataEntry*\29 +4107:fputc +4108:fp_barrierf +4109:flutter::ToSkColor4f\28flutter::DlColor\29 +4110:flutter::DlSkPaintDispatchHelper::save_opacity\28float\29 +4111:flutter::DlSkCanvasDispatcher::~DlSkCanvasDispatcher\28\29 +4112:flutter::DlSkCanvasDispatcher::save\28\29 +4113:flutter::DlSkCanvasDispatcher::drawDisplayList\28sk_sp\2c\20float\29 +4114:flutter::DlRuntimeEffectColorSource::DlRuntimeEffectColorSource\28sk_sp\2c\20std::__2::vector\2c\20std::__2::allocator>>\2c\20std::__2::shared_ptr>>\29 +4115:flutter::DlPath::WillRenderSkPath\28\29\20const +4116:flutter::DlPaint::DlPaint\28flutter::DlPaint&&\29 +4117:flutter::DlLocalMatrixImageFilter::type\28\29\20const +4118:flutter::DlComposeImageFilter::~DlComposeImageFilter\28\29 +4119:flutter::DlColorSource::MakeSweep\28impeller::TPoint\2c\20float\2c\20float\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +4120:flutter::DlColorSource::MakeRadial\28impeller::TPoint\2c\20float\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +4121:flutter::DlColorSource::MakeLinear\28impeller::TPoint\2c\20impeller::TPoint\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +4122:flutter::DlColorSource::MakeConical\28impeller::TPoint\2c\20float\2c\20impeller::TPoint\2c\20float\2c\20unsigned\20int\2c\20flutter::DlColor\20const*\2c\20float\20const*\2c\20flutter::DlTileMode\2c\20impeller::Matrix\20const*\29 +4123:flutter::DlColor::withColorSpace\28flutter::DlColorSpace\29\20const +4124:flutter::DlColor::operator==\28flutter::DlColor\20const&\29\20const +4125:flutter::DisplayListMatrixClipState::mapRect\28impeller::TRect\20const&\2c\20impeller::TRect*\29\20const +4126:flutter::DisplayListMatrixClipState::TransformedRectCoversBounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect\20const&\29 +4127:flutter::DisplayListMatrixClipState::TransformedOvalCoversBounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect\20const&\29 +4128:flutter::DisplayListMatrixClipState::DisplayListMatrixClipState\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\29 +4129:flutter::DisplayListBuilder::setStrokeWidth\28float\29 +4130:flutter::DisplayListBuilder::setStrokeMiter\28float\29 +4131:flutter::DisplayListBuilder::setStrokeJoin\28flutter::DlStrokeJoin\29 +4132:flutter::DisplayListBuilder::setStrokeCap\28flutter::DlStrokeCap\29 +4133:flutter::DisplayListBuilder::setMaskFilter\28flutter::DlMaskFilter\20const*\29 +4134:flutter::DisplayListBuilder::setInvertColors\28bool\29 +4135:flutter::DisplayListBuilder::setImageFilter\28flutter::DlImageFilter\20const*\29 +4136:flutter::DisplayListBuilder::setDrawStyle\28flutter::DlDrawStyle\29 +4137:flutter::DisplayListBuilder::setColor\28flutter::DlColor\29 +4138:flutter::DisplayListBuilder::setColorSource\28flutter::DlColorSource\20const*\29 +4139:flutter::DisplayListBuilder::setColorFilter\28flutter::DlColorFilter\20const*\29 +4140:flutter::DisplayListBuilder::setBlendMode\28impeller::BlendMode\29 +4141:flutter::DisplayListBuilder::setAntiAlias\28bool\29 +4142:flutter::DisplayListBuilder::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +4143:flutter::DisplayListBuilder::drawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\29 +4144:flutter::DisplayListBuilder::drawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\29 +4145:flutter::DisplayListBuilder::drawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\29 +4146:flutter::DisplayListBuilder::drawRoundRect\28impeller::RoundRect\20const&\29 +4147:flutter::DisplayListBuilder::drawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\29 +4148:flutter::DisplayListBuilder::drawPath\28flutter::DlPath\20const&\29 +4149:flutter::DisplayListBuilder::drawPaint\28\29 +4150:flutter::DisplayListBuilder::drawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +4151:flutter::DisplayListBuilder::drawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\29 +4152:flutter::DisplayListBuilder::drawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\29 +4153:flutter::DisplayListBuilder::drawCircle\28impeller::TPoint\20const&\2c\20float\29 +4154:flutter::DisplayListBuilder::drawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\29 +4155:flutter::DisplayListBuilder::SaveLayer\28std::__2::optional>\20const&\2c\20flutter::DlPaint\20const*\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +4156:flutter::DisplayListBuilder::RestoreToCount\28int\29 +4157:flutter::DisplayListBuilder::QuickReject\28impeller::TRect\20const&\29\20const +4158:flutter::DisplayListBuilder::GetBaseLayerDimensions\28\29\20const +4159:flutter::DisplayListBuilder::DrawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\2c\20flutter::DlPaint\20const&\29 +4160:flutter::DisplayListBuilder::DrawRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +4161:flutter::DisplayListBuilder::DrawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\2c\20flutter::DlPaint\20const&\29 +4162:flutter::DisplayListBuilder::DrawPaint\28flutter::DlPaint\20const&\29 +4163:flutter::DisplayListBuilder::DrawOval\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +4164:flutter::DisplayListBuilder::DrawImage\28sk_sp\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\29 +4165:flutter::DisplayListBuilder::DrawImageRect\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\2c\20flutter::DlSrcRectConstraint\29 +4166:flutter::DisplayListBuilder::DrawImageNine\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20flutter::DlPaint\20const*\29 +4167:flutter::DisplayListBuilder::DrawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +4168:flutter::DisplayListBuilder::DrawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +4169:flutter::DisplayListBuilder::DrawCircle\28impeller::TPoint\20const&\2c\20float\2c\20flutter::DlPaint\20const&\29 +4170:flutter::DisplayListBuilder::DrawAtlas\28sk_sp\20const&\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20flutter::DlPaint\20const*\29 +4171:flutter::DisplayListBuilder::DrawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20flutter::DlPaint\20const&\29 +4172:flutter::AccumulationRect::accumulate\28float\2c\20float\29 +4173:flutter::AccumulationRect::GetBounds\28\29\20const +4174:fixN0c\28BracketData*\2c\20int\2c\20int\2c\20unsigned\20char\29 +4175:findFirstExisting\28char\20const*\2c\20char*\2c\20char\20const*\2c\20UResOpenType\2c\20signed\20char*\2c\20signed\20char*\2c\20signed\20char*\2c\20UErrorCode*\29 +4176:filter_to_gl_min_filter\28SkFilterMode\2c\20SkMipmapMode\29 +4177:fill_buffer\28wuffs_base__io_buffer__struct*\2c\20SkStream*\29 +4178:expm1f +4179:exp2 +4180:eval_curve\28skcms_Curve\20const*\2c\20float\29 +4181:entryClose\28UResourceDataEntry*\29 +4182:dquad_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4183:do_scanline\28int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20SkBlitter*\29 +4184:do_anti_hairline\28int\2c\20int\2c\20int\2c\20int\2c\20SkIRect\20const*\2c\20SkBlitter*\29 +4185:dline_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4186:directionFromFlags\28UBiDi*\29 +4187:destroy_face +4188:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0>\28skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::DashOp::AAMode\2c\20SkMatrix\20const&\2c\20bool\29::$_0&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4189:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrCaps\20const&\2c\20GrSurfaceProxyView\20const&\2c\20bool&\2c\20GrPipeline*&\2c\20GrUserStencilSettings\20const*&&\2c\20\28anonymous\20namespace\29::DrawAtlasPathShader*&\2c\20GrPrimitiveType&&\2c\20GrXferBarrierFlags&\2c\20GrLoadOp&\29::'lambda'\28void*\29>\28GrProgramInfo&&\29::'lambda'\28char*\29::__invoke\28char*\29 +4190:dcubic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4191:dconic_dxdy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +4192:cubic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4193:conic_intersect_ray\28SkPoint\20const*\2c\20float\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +4194:cleanup_shaders\28GrGLGpu*\2c\20SkTDArray\20const&\29 +4195:chop_mono_cubic_at_y\28SkPoint*\2c\20float\2c\20SkPoint*\29 +4196:check_inverse_on_empty_return\28SkRegion*\2c\20SkPath\20const&\2c\20SkRegion\20const&\29 +4197:check_intersection\28SkAnalyticEdge\20const*\2c\20int\2c\20int*\29 +4198:char*\20std::__2::find\5babi:nn180100\5d\28char*\2c\20char*\2c\20char\20const&\29 +4199:cff_parse_real +4200:cff_parse_integer +4201:cff_index_read_offset +4202:cff_index_get_pointers +4203:cff_index_access_element +4204:cff2_path_param_t::move_to\28CFF::point_t\20const&\29 +4205:cff1_path_param_t::move_to\28CFF::point_t\20const&\29 +4206:cf2_hintmap_map +4207:cf2_glyphpath_pushPrevElem +4208:cf2_glyphpath_computeOffset +4209:cf2_glyphpath_closeOpenPath +4210:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_1::operator\28\29\28SkSpan\29\20const +4211:calc_dot_cross_cubic\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +4212:bracketProcessBoundary\28BracketData*\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +4213:bracketAddOpening\28BracketData*\2c\20char16_t\2c\20int\29 +4214:bool\20std::__2::equal\5babi:ne180100\5d\28float\20const*\2c\20float\20const*\2c\20float\20const*\2c\20std::__2::__equal_to\29 +4215:bool\20std::__2::__is_pointer_in_range\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char\20const*\29 +4216:bool\20icu_74::\28anonymous\20namespace\29::equalBlocks\28unsigned\20short\20const*\2c\20unsigned\20short\20const*\2c\20int\29 +4217:bool\20hb_sanitize_context_t::check_array>\28OT::IntType\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +4218:bool\20flutter::Equals\28std::__2::shared_ptr\20const&\2c\20std::__2::shared_ptr\20const&\29 +4219:bool\20SkIsFinite\28float\20const*\2c\20int\29\20\28.1005\29 +4220:bool\20OT::match_lookahead>\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +4221:bool\20OT::match_backtrack>\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20OT::IntType\20const*\2c\20bool\20\28*\29\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29\2c\20void\20const*\2c\20unsigned\20int*\29 +4222:bool\20OT::glyf_impl::Glyph::get_points\28hb_font_t*\2c\20OT::glyf_accelerator_t\20const&\2c\20contour_point_vector_t&\2c\20hb_glyf_scratch_t&\2c\20contour_point_vector_t*\2c\20head_maxp_info_t*\2c\20unsigned\20int*\2c\20bool\2c\20bool\2c\20bool\2c\20hb_array_t\2c\20unsigned\20int\2c\20unsigned\20int*\29\20const +4223:bool\20OT::glyf_accelerator_t::get_points\28hb_font_t*\2c\20unsigned\20int\2c\20OT::glyf_accelerator_t::points_aggregator_t\2c\20hb_array_t\2c\20hb_glyf_scratch_t&\29\20const +4224:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +4225:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +4226:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +4227:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +4228:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +4229:bool\20OT::Condition::evaluate\28int\20const*\2c\20unsigned\20int\2c\20OT::ItemVarStoreInstancer*\29\20const +4230:blitrect\28SkBlitter*\2c\20SkIRect\20const&\29 +4231:blit_single_alpha\28AdditiveBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +4232:blit_aaa_trapezoid_row\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +4233:atan +4234:append_index_uv_varyings\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20int\2c\20char\20const*\2c\20char\20const*\2c\20GrGLSLVarying*\2c\20GrGLSLVarying*\2c\20GrGLSLVarying*\29 +4235:antifillrect\28SkRect\20const&\2c\20SkBlitter*\29 +4236:af_property_get_face_globals +4237:af_latin_hints_link_segments +4238:af_latin_compute_stem_width +4239:af_latin_align_linked_edge +4240:af_iup_interp +4241:af_glyph_hints_save +4242:af_glyph_hints_done +4243:af_cjk_align_linked_edge +4244:add_stop_color\28SkRasterPipelineContexts::GradientCtx*\2c\20unsigned\20long\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +4245:add_quad\28SkPoint\20const*\2c\20skia_private::TArray*\29 +4246:add_const_color\28SkRasterPipelineContexts::GradientCtx*\2c\20unsigned\20long\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +4247:acos +4248:aaa_fill_path\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20AdditiveBlitter*\2c\20int\2c\20int\2c\20bool\2c\20bool\2c\20bool\29 +4249:_res_findTableItem\28ResourceData\20const*\2c\20unsigned\20short\20const*\2c\20int\2c\20char\20const*\2c\20char\20const**\29 +4250:_iup_worker_interpolate +4251:_hb_head_t\29&>\28fp\29\2c\20std::forward>\28fp0\29\2c\20\28hb_priority<16u>\29\28\29\29\29>::type\20$_22::operator\28\29\29&\2c\20hb_pair_t>\28find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29&\2c\20hb_pair_t&&\29\20const +4252:_hb_font_adopt_var_coords\28hb_font_t*\2c\20int*\2c\20float*\2c\20unsigned\20int\29 +4253:_get_path\28OT::cff1::accelerator_t\20const*\2c\20hb_font_t*\2c\20unsigned\20int\2c\20hb_draw_session_t&\2c\20bool\2c\20CFF::point_t*\29 +4254:_get_bounds\28OT::cff1::accelerator_t\20const*\2c\20unsigned\20int\2c\20bounds_t&\2c\20bool\29 +4255:_getVariant\28char\20const*\2c\20char\2c\20icu_74::ByteSink&\2c\20signed\20char\29 +4256:_getStringOrCopyKey\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +4257:_enumPropertyStartsRange\28void\20const*\2c\20int\2c\20int\2c\20unsigned\20int\29 +4258:_canonicalize\28char\20const*\2c\20icu_74::ByteSink&\2c\20unsigned\20int\2c\20UErrorCode*\29 +4259:_appendUTF8\28unsigned\20char*\2c\20int\29 +4260:__trunctfdf2 +4261:__towrite +4262:__toread +4263:__subtf3 +4264:__strchrnul +4265:__rem_pio2f +4266:__rem_pio2 +4267:__overflow +4268:__math_uflowf +4269:__math_oflowf +4270:__fwritex +4271:__cxxabiv1::__class_type_info::process_static_type_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\29\20const +4272:__cxxabiv1::__class_type_info::process_static_type_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\29\20const +4273:__cxxabiv1::__class_type_info::process_found_base_class\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +4274:__cxxabiv1::__base_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +4275:\28anonymous\20namespace\29::subdivide_cubic_to\28SkPathBuilder*\2c\20SkPoint\20const*\2c\20int\29 +4276:\28anonymous\20namespace\29::split_conic\28SkPoint\20const*\2c\20SkConic*\2c\20float\29 +4277:\28anonymous\20namespace\29::single_pass_shape\28GrStyledShape\20const&\29 +4278:\28anonymous\20namespace\29::shift_left\28skvx::Vec<4\2c\20float>\20const&\2c\20int\29 +4279:\28anonymous\20namespace\29::shape_contains_rect\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkMatrix\20const&\2c\20bool\29 +4280:\28anonymous\20namespace\29::set_gl_stencil\28GrGLInterface\20const*\2c\20GrStencilSettings::Face\20const&\2c\20unsigned\20int\29 +4281:\28anonymous\20namespace\29::make_blend\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\2c\20std::__2::optional\2c\20bool\29::$_0::operator\28\29\28sk_sp\29\20const +4282:\28anonymous\20namespace\29::init_resb_result\28UResourceDataEntry*\2c\20unsigned\20int\2c\20char\20const*\2c\20int\2c\20UResourceDataEntry*\2c\20char\20const*\2c\20int\2c\20UResourceBundle*\2c\20UErrorCode*\29 +4283:\28anonymous\20namespace\29::get_tile_count\28SkIRect\20const&\2c\20int\29 +4284:\28anonymous\20namespace\29::getRange\28void\20const*\2c\20int\2c\20unsigned\20int\20\28*\29\28void\20const*\2c\20unsigned\20int\29\2c\20void\20const*\2c\20unsigned\20int*\29 +4285:\28anonymous\20namespace\29::generateGlyphPathStatic\28FT_FaceRec_*\2c\20SkPathBuilder*\29 +4286:\28anonymous\20namespace\29::generateFacePathCOLRv1\28FT_FaceRec_*\2c\20unsigned\20short\2c\20SkMatrix\20const*\29 +4287:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_0::operator\28\29\28SkPoint\20const*\2c\20bool\29\20const +4288:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads_with_constraint\28SkPoint\20const*\2c\20float\2c\20SkPathFirstDirection\2c\20skia_private::TArray*\2c\20int\29 +4289:\28anonymous\20namespace\29::convert_noninflect_cubic_to_quads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\2c\20int\2c\20bool\2c\20bool\29 +4290:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const +4291:\28anonymous\20namespace\29::bloat_quad\28SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkMatrix\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +4292:\28anonymous\20namespace\29::TriangulatingPathOp::CreateMesh\28GrMeshDrawTarget*\2c\20sk_sp\2c\20int\2c\20int\29 +4293:\28anonymous\20namespace\29::TransformedMaskSubRun::~TransformedMaskSubRun\28\29 +4294:\28anonymous\20namespace\29::TransformedMaskSubRun::testingOnly_packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29\20const +4295:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29 +4296:\28anonymous\20namespace\29::SkwasmParagraphPainter::toDlPaint\28skia::textlayout::ParagraphPainter::DecorationStyle\20const&\2c\20flutter::DlDrawStyle\29 +4297:\28anonymous\20namespace\29::SkMorphologyImageFilter::radii\28skif::Mapping\20const&\29\20const +4298:\28anonymous\20namespace\29::SkFTGeometrySink::goingTo\28FT_Vector_\20const*\29 +4299:\28anonymous\20namespace\29::SkCropImageFilter::cropRect\28skif::Mapping\20const&\29\20const +4300:\28anonymous\20namespace\29::ShapedRun::~ShapedRun\28\29 +4301:\28anonymous\20namespace\29::MemoryPoolAccessor::pool\28\29\20const +4302:\28anonymous\20namespace\29::DrawAtlasOpImpl::visitProxies\28std::__2::function\20const&\29\20const +4303:\28anonymous\20namespace\29::DrawAtlasOpImpl::programInfo\28\29 +4304:\28anonymous\20namespace\29::DrawAtlasOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +4305:WebPMultARGBRow_C +4306:WebPGetFeaturesInternal +4307:WebPFreeDecBuffer +4308:WebPDemuxGetFrame +4309:VP8LInitBitReader +4310:VP8LDelete +4311:VP8LClear +4312:VP8InitBitReader +4313:VP8ExitCritical +4314:UDataMemory_createNewInstance_74 +4315:TrueMotion +4316:TransformOne_C +4317:T_CString_toUpperCase_74 +4318:TT_Vary_Apply_Glyph_Deltas +4319:TT_Set_Var_Design +4320:TT_Get_VMetrics +4321:Skwasm::Surface::_resizeSurface\28int\2c\20int\29 +4322:SkWuffsCodec::updateNumFullyReceivedFrames\28\29 +4323:SkWriter32::writeRegion\28SkRegion\20const&\29 +4324:SkWebpCodec::FrameHolder::~FrameHolder\28\29 +4325:SkVertices::Sizes::Sizes\28SkVertices::Desc\20const&\29 +4326:SkVertices::MakeCopy\28SkVertices::VertexMode\2c\20int\2c\20SkPoint\20const*\2c\20SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20short\20const*\29 +4327:SkVertices::Builder::~Builder\28\29 +4328:SkVertices::Builder::detach\28\29 +4329:SkUnitScalarClampToByte\28float\29 +4330:SkUnicode_icu::getUtf8Words\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29::'lambda'\28unsigned\20long\29::operator\28\29\28unsigned\20long\29\20const +4331:SkUnicode_icu::extractPositions\28char\20const*\2c\20int\2c\20SkUnicode::BreakType\2c\20char\20const*\2c\20std::__2::function\20const&\29 +4332:SkUTF::ToUTF16\28int\2c\20unsigned\20short*\29 +4333:SkTypeface_FreeType::~SkTypeface_FreeType\28\29 +4334:SkTiff::ImageFileDirectory::getEntryUnsignedLong\28unsigned\20short\2c\20unsigned\20int\2c\20unsigned\20int*\29\20const +4335:SkTiff::ImageFileDirectory::MakeFromOffset\28sk_sp\2c\20bool\2c\20unsigned\20int\2c\20bool\29 +4336:SkTextBlobBuilder::allocInternal\28SkFont\20const&\2c\20SkTextBlob::GlyphPositioning\2c\20int\2c\20int\2c\20SkPoint\2c\20SkRect\20const*\29 +4337:SkTextBlob::RunRecord::textSizePtr\28\29\20const +4338:SkTSpan::markCoincident\28\29 +4339:SkTSect::markSpanGone\28SkTSpan*\29 +4340:SkTSect::computePerpendiculars\28SkTSect*\2c\20SkTSpan*\2c\20SkTSpan*\29 +4341:SkTMultiMap::insert\28skgpu::ScratchKey\20const&\2c\20GrGpuResource*\29 +4342:SkTDStorage::moveTail\28int\2c\20int\2c\20int\29 +4343:SkTDStorage::calculateSizeOrDie\28int\29 +4344:SkTDArray::append\28int\29 +4345:SkTDArray::append\28\29 +4346:SkTConic::hullIntersects\28SkDConic\20const&\2c\20bool*\29\20const +4347:SkTBlockList::pop_back\28\29 +4348:SkSurfaces::Raster\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const*\29 +4349:SkSurface_Base::~SkSurface_Base\28\29 +4350:SkSurface_Base::aboutToDraw\28SkSurface::ContentChangeMode\29 +4351:SkSurfaceValidateRasterInfo\28SkImageInfo\20const&\2c\20unsigned\20long\29 +4352:SkStrokeRec::init\28SkPaint\20const&\2c\20SkPaint::Style\2c\20float\29 +4353:SkStrokeRec::getInflationRadius\28\29\20const +4354:SkString::printVAList\28char\20const*\2c\20void*\29 +4355:SkStrikeSpec::SkStrikeSpec\28SkStrikeSpec&&\29 +4356:SkStrikeSpec::MakeWithNoDevice\28SkFont\20const&\2c\20SkPaint\20const*\29 +4357:SkStrikeSpec::MakePath\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\29 +4358:SkStrikeCache::findOrCreateStrike\28SkStrikeSpec\20const&\29 +4359:SkStrike::prepareForPath\28SkGlyph*\29 +4360:SkSpriteBlitter::SkSpriteBlitter\28SkPixmap\20const&\29 +4361:SkSpecialImage::~SkSpecialImage\28\29 +4362:SkSpecialImage::makeSubset\28SkIRect\20const&\29\20const +4363:SkSpecialImage::makePixelOutset\28\29\20const +4364:SkShapers::HB::ScriptRunIterator\28char\20const*\2c\20unsigned\20long\29 +4365:SkShaper::TrivialRunIterator::endOfCurrentRun\28\29\20const +4366:SkShaper::TrivialRunIterator::consume\28\29 +4367:SkShaper::TrivialRunIterator::atEnd\28\29\20const +4368:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29 +4369:SkShaders::MatrixRec::MatrixRec\28SkMatrix\20const&\29 +4370:SkShaderUtils::GLSLPrettyPrint::tabString\28\29 +4371:SkShaderBlurAlgorithm::Compute1DBlurKernel\28float\2c\20int\2c\20SkSpan\29 +4372:SkScanClipper::~SkScanClipper\28\29 +4373:SkScanClipper::SkScanClipper\28SkBlitter*\2c\20SkRegion\20const*\2c\20SkIRect\20const&\2c\20bool\2c\20bool\29 +4374:SkScan::HairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +4375:SkScan::FillTriangle\28SkPoint\20const*\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4376:SkScan::FillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4377:SkScan::FillIRect\28SkIRect\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4378:SkScan::AntiHairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +4379:SkScan::AntiHairLineRgn\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +4380:SkScan::AntiFillXRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +4381:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRegion\20const&\2c\20SkBlitter*\2c\20bool\29 +4382:SkScalerContext_FreeType::updateGlyphBoundsIfSubpixel\28SkGlyph\20const&\2c\20SkRect*\2c\20bool\29 +4383:SkScalerContextRec::CachedMaskGamma\28unsigned\20char\2c\20unsigned\20char\29 +4384:SkScalerContextFTUtils::drawSVGGlyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +4385:SkScalerContext::~SkScalerContext\28\29 +4386:SkSTArenaAlloc<3332ul>::SkSTArenaAlloc\28unsigned\20long\29 +4387:SkSTArenaAlloc<2736ul>::SkSTArenaAlloc\28unsigned\20long\29 +4388:SkSTArenaAlloc<2048ul>::SkSTArenaAlloc\28unsigned\20long\29 +4389:SkSL::type_is_valid_for_coords\28SkSL::Type\20const&\29 +4390:SkSL::simplify_negation\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\29 +4391:SkSL::simplify_matrix_multiplication\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +4392:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +4393:SkSL::replace_empty_with_nop\28std::__2::unique_ptr>\2c\20bool\29 +4394:SkSL::find_generic_index\28SkSL::Type\20const&\2c\20SkSL::Type\20const&\2c\20bool\29 +4395:SkSL::evaluate_intrinsic_numeric\28SkSL::Context\20const&\2c\20std::__2::array\20const&\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\29 +4396:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29 +4397:SkSL::coalesce_n_way_vector\28SkSL::Expression\20const*\2c\20SkSL::Expression\20const*\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +4398:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_0::operator\28\29\28int\29\20const +4399:SkSL::build_argument_type_list\28SkSpan>\20const>\29 +4400:SkSL::\28anonymous\20namespace\29::SwitchCaseContainsExit::visitStatement\28SkSL::Statement\20const&\29 +4401:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::returnsInputAlpha\28SkSL::Expression\20const&\29 +4402:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29 +4403:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29 +4404:SkSL::\28anonymous\20namespace\29::ConstantExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +4405:SkSL::Variable::~Variable\28\29 +4406:SkSL::Variable::Make\28SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20std::__2::basic_string_view>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20bool\2c\20SkSL::VariableStorage\29 +4407:SkSL::Variable::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20SkSL::VariableStorage\29 +4408:SkSL::VarDeclaration::~VarDeclaration\28\29 +4409:SkSL::VarDeclaration::Make\28SkSL::Context\20const&\2c\20SkSL::Variable*\2c\20SkSL::Type\20const*\2c\20int\2c\20std::__2::unique_ptr>\29 +4410:SkSL::Type::isStorageTexture\28\29\20const +4411:SkSL::Type::convertArraySize\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20long\20long\29\20const +4412:SkSL::Type::MakeSamplerType\28char\20const*\2c\20SkSL::Type\20const&\29 +4413:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29 +4414:SkSL::Transform::EliminateDeadGlobalVariables\28SkSL::Program&\29::$_2::operator\28\29\28SkSL::ProgramElement\20const&\29\20const +4415:SkSL::TernaryExpression::~TernaryExpression\28\29 +4416:SkSL::SymbolTable::SymbolKey::operator==\28SkSL::SymbolTable::SymbolKey\20const&\29\20const +4417:SkSL::StructType::slotCount\28\29\20const +4418:SkSL::SingleArgumentConstructor::~SingleArgumentConstructor\28\29 +4419:SkSL::RP::UnownedLValueSlice::~UnownedLValueSlice\28\29 +4420:SkSL::RP::SlotManager::createSlots\28std::__2::basic_string\2c\20std::__2::allocator>\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20bool\29 +4421:SkSL::RP::SlotManager::addSlotDebugInfoForGroup\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20SkSL::Type\20const&\2c\20SkSL::Position\2c\20int*\2c\20bool\29 +4422:SkSL::RP::Program::makeStages\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSpan\2c\20SkSL::RP::Program::SlotData\20const&\29\20const::$_4::operator\28\29\28\29\20const +4423:SkSL::RP::Program::makeStages\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSpan\2c\20SkSL::RP::Program::SlotData\20const&\29\20const::$_1::operator\28\29\28int\29\20const +4424:SkSL::RP::Program::appendCopySlotsMasked\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +4425:SkSL::RP::LValueSlice::~LValueSlice\28\29 +4426:SkSL::RP::Generator::pushTraceScopeMask\28\29 +4427:SkSL::RP::Generator::pushTernaryExpression\28SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +4428:SkSL::RP::Generator::pushStructuredComparison\28SkSL::RP::LValue*\2c\20SkSL::Operator\2c\20SkSL::RP::LValue*\2c\20SkSL::Type\20const&\29 +4429:SkSL::RP::Generator::pushPrefixExpression\28SkSL::Operator\2c\20SkSL::Expression\20const&\29 +4430:SkSL::RP::Generator::pushMatrixMultiply\28SkSL::RP::LValue*\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +4431:SkSL::RP::Generator::pushAbsFloatIntrinsic\28int\29 +4432:SkSL::RP::Generator::needsReturnMask\28SkSL::FunctionDefinition\20const*\29 +4433:SkSL::RP::Generator::needsFunctionResultSlots\28SkSL::FunctionDefinition\20const*\29 +4434:SkSL::RP::Generator::foldWithMultiOp\28SkSL::RP::BuilderOp\2c\20int\29 +4435:SkSL::RP::Generator::GetTypedOp\28SkSL::Type\20const&\2c\20SkSL::RP::Generator::TypedOps\20const&\29 +4436:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29 +4437:SkSL::RP::Builder::select\28int\29 +4438:SkSL::RP::Builder::push_uniform\28SkSL::RP::SlotRange\29 +4439:SkSL::RP::Builder::pop_loop_mask\28\29 +4440:SkSL::RP::Builder::merge_condition_mask\28\29 +4441:SkSL::RP::Builder::branch_if_no_active_lanes_on_stack_top_equal\28int\2c\20int\29 +4442:SkSL::RP::AutoStack&\20std::__2::optional::emplace\5babi:ne180100\5d\28SkSL::RP::Generator*&\29 +4443:SkSL::ProgramUsage::add\28SkSL::ProgramElement\20const&\29 +4444:SkSL::PipelineStage::PipelineStageCodeGenerator::modifierString\28SkSL::ModifierFlags\29 +4445:SkSL::PipelineStage::ConvertProgram\28SkSL::Program\20const&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20SkSL::PipelineStage::Callbacks*\29 +4446:SkSL::Parser::unsizedArrayType\28SkSL::Type\20const*\2c\20SkSL::Position\29 +4447:SkSL::Parser::unaryExpression\28\29 +4448:SkSL::Parser::swizzle\28SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::basic_string_view>\2c\20SkSL::Position\29 +4449:SkSL::Parser::poison\28SkSL::Position\29 +4450:SkSL::Parser::checkIdentifier\28SkSL::Token*\29 +4451:SkSL::Parser::block\28bool\2c\20std::__2::unique_ptr>*\29 +4452:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29 +4453:SkSL::Operator::getBinaryPrecedence\28\29\20const +4454:SkSL::MultiArgumentConstructor::~MultiArgumentConstructor\28\29 +4455:SkSL::ModuleLoader::loadGPUModule\28SkSL::Compiler*\29 +4456:SkSL::ModifierFlags::checkPermittedFlags\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\29\20const +4457:SkSL::Mangler::uniqueName\28std::__2::basic_string_view>\2c\20SkSL::SymbolTable*\29 +4458:SkSL::LiteralType::slotType\28unsigned\20long\29\20const +4459:SkSL::Literal::MakeFloat\28SkSL::Position\2c\20float\2c\20SkSL::Type\20const*\29 +4460:SkSL::Literal::MakeBool\28SkSL::Position\2c\20bool\2c\20SkSL::Type\20const*\29 +4461:SkSL::Layout::checkPermittedLayout\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkEnumBitMask\29\20const +4462:SkSL::IfStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +4463:SkSL::IRHelpers::Binary\28std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\29\20const +4464:SkSL::GlobalVarDeclaration::~GlobalVarDeclaration\28\29_6573 +4465:SkSL::GlobalVarDeclaration::~GlobalVarDeclaration\28\29 +4466:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29 +4467:SkSL::GLSLCodeGenerator::writeLiteral\28SkSL::Literal\20const&\29 +4468:SkSL::GLSLCodeGenerator::writeFunctionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +4469:SkSL::GLSLCodeGenerator::shouldRewriteVoidTypedFunctions\28SkSL::FunctionDeclaration\20const*\29\20const +4470:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29 +4471:SkSL::ForStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +4472:SkSL::Expression::isIncomplete\28SkSL::Context\20const&\29\20const +4473:SkSL::Expression::compareConstant\28SkSL::Expression\20const&\29\20const +4474:SkSL::DoStatement::~DoStatement\28\29 +4475:SkSL::DebugTracePriv::~DebugTracePriv\28\29 +4476:SkSL::ConstructorArrayCast::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +4477:SkSL::ConstructorArray::~ConstructorArray\28\29 +4478:SkSL::ConstantFolder::GetConstantValueOrNull\28SkSL::Expression\20const&\29 +4479:SkSL::Compiler::runInliner\28SkSL::Inliner*\2c\20std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\29 +4480:SkSL::Block::~Block\28\29 +4481:SkSL::BinaryExpression::~BinaryExpression\28\29 +4482:SkSL::BinaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\2c\20std::__2::unique_ptr>\2c\20SkSL::Type\20const*\29 +4483:SkSL::Analysis::GetReturnComplexity\28SkSL::FunctionDefinition\20const&\29 +4484:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29 +4485:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29 +4486:SkSL::Analysis::CallsColorTransformIntrinsics\28SkSL::Program\20const&\29 +4487:SkSL::AliasType::bitWidth\28\29\20const +4488:SkRuntimeShader::uniformData\28SkColorSpace\20const*\29\20const +4489:SkRuntimeEffectPriv::VarAsUniform\28SkSL::Variable\20const&\2c\20SkSL::Context\20const&\2c\20unsigned\20long*\29 +4490:SkRuntimeEffect::makeShader\28sk_sp\2c\20SkSpan\2c\20SkMatrix\20const*\29\20const +4491:SkRuntimeEffect::MakeForShader\28SkString\29 +4492:SkRgnBuilder::~SkRgnBuilder\28\29 +4493:SkResourceCache::~SkResourceCache\28\29 +4494:SkResourceCache::purgeAsNeeded\28bool\29 +4495:SkResourceCache::checkMessages\28\29 +4496:SkResourceCache::Key::operator==\28SkResourceCache::Key\20const&\29\20const +4497:SkRegion::translate\28int\2c\20int\2c\20SkRegion*\29\20const +4498:SkRegion::quickReject\28SkIRect\20const&\29\20const +4499:SkRegion::op\28SkRegion\20const&\2c\20SkIRect\20const&\2c\20SkRegion::Op\29 +4500:SkRegion::getBoundaryPath\28\29\20const +4501:SkRegion::RunHead::findScanline\28int\29\20const +4502:SkRegion::RunHead::Alloc\28int\29 +4503:SkReduceOrder::Cubic\28SkPoint\20const*\2c\20SkPoint*\29 +4504:SkRect::offset\28float\2c\20float\29 +4505:SkRect*\20SkRecordCanvas::copy\28SkRect\20const*\29 +4506:SkRecords::PreCachedPath::PreCachedPath\28SkPath\20const&\29 +4507:SkRecords::FillBounds::pushSaveBlock\28SkPaint\20const*\2c\20bool\29 +4508:SkRecordDraw\28SkRecord\20const&\2c\20SkCanvas*\2c\20SkPicture\20const*\20const*\2c\20SkDrawable*\20const*\2c\20int\2c\20SkBBoxHierarchy\20const*\2c\20SkPicture::AbortCallback*\29 +4509:SkRecordCanvas::~SkRecordCanvas\28\29 +4510:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29 +4511:SkRasterPipelineBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +4512:SkRasterPipelineBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29::$_0::operator\28\29\28int\2c\20SkRasterPipelineContexts::MemoryCtx*\29\20const +4513:SkRasterPipelineBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +4514:SkRasterPipeline::appendLoad\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +4515:SkRasterClip::op\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkClipOp\2c\20bool\29 +4516:SkRasterClip::convertToAA\28\29 +4517:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29::$_1::operator\28\29\28SkRect\20const&\2c\20SkRRect::Corner\29\20const +4518:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29 +4519:SkRGBA4f<\28SkAlphaType\292>*\20SkArenaAlloc::makeArray>\28unsigned\20long\29 +4520:SkQuadConstruct::initWithStart\28SkQuadConstruct*\29 +4521:SkQuadConstruct::initWithEnd\28SkQuadConstruct*\29 +4522:SkPointPriv::DistanceToLineBetweenSqd\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPointPriv::Side*\29 +4523:SkPoint::setNormalize\28float\2c\20float\29 +4524:SkPoint::setLength\28float\2c\20float\2c\20float\29 +4525:SkPixmap::setColorSpace\28sk_sp\29 +4526:SkPixmap::rowBytesAsPixels\28\29\20const +4527:SkPixelRef::getGenerationID\28\29\20const +4528:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20SkBBHFactory*\29 +4529:SkPicture::~SkPicture\28\29 +4530:SkPerlinNoiseShader::PaintingData::random\28\29 +4531:SkPathWriter::~SkPathWriter\28\29 +4532:SkPathWriter::update\28SkOpPtT\20const*\29 +4533:SkPathWriter::lineTo\28\29 +4534:SkPathWriter::SkPathWriter\28SkPathFillType\29 +4535:SkPathStroker::strokeCloseEnough\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20SkQuadConstruct*\29\20const +4536:SkPathStroker::setRayPts\28SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +4537:SkPathStroker::quadPerpRay\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +4538:SkPathStroker::finishContour\28bool\2c\20bool\29 +4539:SkPathStroker::conicPerpRay\28SkConic\20const&\2c\20float\2c\20SkPoint*\2c\20SkPoint*\2c\20SkPoint*\29\20const +4540:SkPathRef::isRRect\28\29\20const +4541:SkPathRef::isOval\28\29\20const +4542:SkPathRawShapes::Rect::Rect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4543:SkPathRawShapes::RRect::RRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4544:SkPathPriv::ComputeFirstDirection\28SkPath\20const&\29 +4545:SkPathPriv::AddGenIDChangeListener\28SkPath\20const&\2c\20sk_sp\29 +4546:SkPathDirection_ToConvexity\28SkPathDirection\29 +4547:SkPathBuilder::privateReversePathTo\28SkPath\20const&\29 +4548:SkPathBuilder::operator=\28SkPath\20const&\29 +4549:SkPathBuilder::incReserve\28int\2c\20int\2c\20int\29 +4550:SkPathBuilder::computeBounds\28\29\20const +4551:SkPathBuilder::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29::$_0::operator\28\29\28SkPoint\20const&\29\20const +4552:SkPathBuilder::addRaw\28SkPathRaw\20const&\29 +4553:SkPathBuilder::addPolygon\28SkSpan\2c\20bool\29 +4554:SkPathBuilder::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +4555:SkPathBuilder::addOval\28SkRect\20const&\2c\20SkPathDirection\29 +4556:SkPath::transform\28SkMatrix\20const&\2c\20SkPath*\29\20const +4557:SkPath::isRRect\28SkRRect*\29\20const +4558:SkPath::isOval\28SkRect*\29\20const +4559:SkPath::isLastContourClosed\28\29\20const +4560:SkPath::cubicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +4561:SkPath::contains\28float\2c\20float\29\20const +4562:SkPath::conicTo\28float\2c\20float\2c\20float\2c\20float\2c\20float\29 +4563:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29::$_0::operator\28\29\28SkPoint\20const&\29\20const +4564:SkPath::addRaw\28SkPathRaw\20const&\29 +4565:SkPath::addOval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +4566:SkPath::Iter::autoClose\28SkPoint*\29 +4567:SkPath&\20std::__2::optional::emplace\5babi:ne180100\5d\28SkPath&&\29 +4568:SkPaintToGrPaintReplaceShader\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20std::__2::unique_ptr>\2c\20GrPaint*\29 +4569:SkPaint::getBlendMode_or\28SkBlendMode\29\20const +4570:SkPaint*\20SkOptAddressOrNull\28std::__2::optional&\29 +4571:SkPackedGlyphID::PackIDSkPoint\28unsigned\20short\2c\20SkPoint\2c\20SkIPoint\29 +4572:SkOpSpanBase::checkForCollapsedCoincidence\28\29 +4573:SkOpSpan::setWindSum\28int\29 +4574:SkOpSegment::updateWindingReverse\28SkOpAngle\20const*\29 +4575:SkOpSegment::match\28SkOpPtT\20const*\2c\20SkOpSegment\20const*\2c\20double\2c\20SkPoint\20const&\29\20const +4576:SkOpSegment::markWinding\28SkOpSpan*\2c\20int\2c\20int\29 +4577:SkOpSegment::markAngle\28int\2c\20int\2c\20int\2c\20int\2c\20SkOpAngle\20const*\2c\20SkOpSpanBase**\29 +4578:SkOpSegment::markAngle\28int\2c\20int\2c\20SkOpAngle\20const*\2c\20SkOpSpanBase**\29 +4579:SkOpSegment::markAndChaseWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int\2c\20int\2c\20SkOpSpanBase**\29 +4580:SkOpSegment::markAllDone\28\29 +4581:SkOpSegment::dSlopeAtT\28double\29\20const +4582:SkOpSegment::addT\28double\2c\20SkPoint\20const&\29 +4583:SkOpSegment::activeWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\29 +4584:SkOpPtT::oppPrev\28SkOpPtT\20const*\29\20const +4585:SkOpPtT::contains\28SkOpSegment\20const*\29\20const +4586:SkOpPtT::Overlaps\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const**\2c\20SkOpPtT\20const**\29 +4587:SkOpEdgeBuilder::closeContour\28SkPoint\20const&\2c\20SkPoint\20const&\29 +4588:SkOpCoincidence::expand\28\29 +4589:SkOpCoincidence::Ordered\28SkOpSegment\20const*\2c\20SkOpSegment\20const*\29 +4590:SkOpCoincidence::Ordered\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\29 +4591:SkOpAngle::orderable\28SkOpAngle*\29 +4592:SkOpAngle::lineOnOneSide\28SkDPoint\20const&\2c\20SkDVector\20const&\2c\20SkOpAngle\20const*\2c\20bool\29\20const +4593:SkOpAngle::computeSector\28\29 +4594:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\2c\20sk_sp\29 +4595:SkMipmapAccessor::SkMipmapAccessor\28SkImage_Base\20const*\2c\20SkMatrix\20const&\2c\20SkMipmapMode\29::$_0::operator\28\29\28\29\20const +4596:SkMessageBus::Get\28\29 +4597:SkMessageBus::Get\28\29 +4598:SkMessageBus::BufferFinishedMessage\2c\20GrDirectContext::DirectContextID\2c\20false>::Get\28\29 +4599:SkMessageBus::Get\28\29 +4600:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_3727 +4601:SkMatrixPriv::InverseMapRect\28SkMatrix\20const&\2c\20SkRect*\2c\20SkRect\20const&\29 +4602:SkMatrix::mapPointsToHomogeneous\28SkSpan\2c\20SkSpan\29\20const +4603:SkMatrix::getMinMaxScales\28float*\29\20const +4604:SkMatrix::PolyToPoly\28SkSpan\2c\20SkSpan\29 +4605:SkMaskBuilder::PrepareDestination\28int\2c\20int\2c\20SkMask\20const&\29 +4606:SkM44::preTranslate\28float\2c\20float\2c\20float\29 +4607:SkM44::preConcat\28SkMatrix\20const&\29::$_0::operator\28\29\28float\2c\20float\2c\20float\29\20const +4608:SkM44::preConcat\28SkMatrix\20const&\29 +4609:SkM44::postConcat\28SkM44\20const&\29 +4610:SkLineParameters::cubicEndPoints\28SkDCubic\20const&\2c\20int\2c\20int\29 +4611:SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry::~Entry\28\29 +4612:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::reset\28\29 +4613:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry::~Entry\28\29 +4614:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29 +4615:SkJSONWriter::separator\28bool\29 +4616:SkJSONWriter::appendString\28char\20const*\2c\20unsigned\20long\29 +4617:SkJSONWriter::appendS32\28char\20const*\2c\20int\29 +4618:SkInvert4x4Matrix\28float\20const*\2c\20float*\29 +4619:SkIntersections::intersectRay\28SkDQuad\20const&\2c\20SkDLine\20const&\29 +4620:SkIntersections::intersectRay\28SkDLine\20const&\2c\20SkDLine\20const&\29 +4621:SkIntersections::intersectRay\28SkDCubic\20const&\2c\20SkDLine\20const&\29 +4622:SkIntersections::intersectRay\28SkDConic\20const&\2c\20SkDLine\20const&\29 +4623:SkIntersections::computePoints\28SkDLine\20const&\2c\20int\29 +4624:SkIntersections::cleanUpParallelLines\28bool\29 +4625:SkImage_Raster::SkImage_Raster\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20int\29 +4626:SkImage_Lazy::~SkImage_Lazy\28\29_5469 +4627:SkImage_Lazy::Validator::~Validator\28\29 +4628:SkImage_Lazy::Validator::Validator\28sk_sp\2c\20SkColorType\20const*\2c\20sk_sp\29 +4629:SkImage_Lazy::SkImage_Lazy\28SkImage_Lazy::Validator*\29 +4630:SkImage_Ganesh::~SkImage_Ganesh\28\29 +4631:SkImage_Ganesh::ProxyChooser::chooseProxy\28GrRecordingContext*\29 +4632:SkImage_Base::isYUVA\28\29\20const +4633:SkImageShader::MakeSubset\28sk_sp\2c\20SkRect\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20bool\29 +4634:SkImageShader::CubicResamplerMatrix\28float\2c\20float\29 +4635:SkImageInfo::minRowBytes64\28\29\20const +4636:SkImageInfo::MakeN32Premul\28SkISize\29 +4637:SkImageGenerator::getPixels\28SkPixmap\20const&\29 +4638:SkImageFilters::Blend\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +4639:SkImageFilter_Base::getCTMCapability\28\29\20const +4640:SkImageFilter_Base::filterImage\28skif::Context\20const&\29\20const +4641:SkImageFilter_Base::affectsTransparentBlack\28\29\20const +4642:SkImageFilterCacheKey::operator==\28SkImageFilterCacheKey\20const&\29\20const +4643:SkImage::readPixels\28GrDirectContext*\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +4644:SkIcuBreakIteratorCache::makeBreakIterator\28SkUnicode::BreakType\2c\20char\20const*\29::'lambda'\28UBreakIterator\20const*\29::operator\28\29\28UBreakIterator\20const*\29\20const +4645:SkIcuBreakIteratorCache::makeBreakIterator\28SkUnicode::BreakType\2c\20char\20const*\29 +4646:SkIcuBreakIteratorCache::get\28\29 +4647:SkIRect\20skif::Mapping::map\28SkIRect\20const&\2c\20SkMatrix\20const&\29 +4648:SkIDChangeListener::List::~List\28\29 +4649:SkIDChangeListener::List::add\28sk_sp\29 +4650:SkGradientShader::MakeSweep\28float\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20float\2c\20float\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +4651:SkGradientShader::MakeRadial\28SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +4652:SkGradientBaseShader::AppendInterpolatedToDstStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20bool\2c\20SkGradientShader::Interpolation\20const&\2c\20SkColorSpace\20const*\2c\20SkColorSpace\20const*\29 +4653:SkGlyph::mask\28\29\20const +4654:SkFontScanner_FreeType::openFace\28SkStreamAsset*\2c\20int\2c\20FT_StreamRec_*\29\20const +4655:SkFontPriv::ApproximateTransformedTextSize\28SkFont\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\20const&\29 +4656:SkFontMgr::matchFamily\28char\20const*\29\20const +4657:SkFont::getWidthsBounds\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20SkPaint\20const*\29\20const +4658:SkFindCubicMaxCurvature\28SkPoint\20const*\2c\20float*\29 +4659:SkFILEStream::SkFILEStream\28std::__2::shared_ptr<_IO_FILE>\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +4660:SkEmptyFontMgr::onMatchFamilyStyleCharacter\28char\20const*\2c\20SkFontStyle\20const&\2c\20char\20const**\2c\20int\2c\20int\29\20const +4661:SkEdgeClipper::appendQuad\28SkPoint\20const*\2c\20bool\29 +4662:SkEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkIRect\20const*\29 +4663:SkDevice::drawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +4664:SkDevice::SkDevice\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +4665:SkData::MakeZeroInitialized\28unsigned\20long\29 +4666:SkDashPathEffect::Make\28SkSpan\2c\20float\29 +4667:SkDQuad::dxdyAtT\28double\29\20const +4668:SkDCubic::subDivide\28double\2c\20double\29\20const +4669:SkDCubic::searchRoots\28double*\2c\20int\2c\20double\2c\20SkDCubic::SearchAxis\2c\20double*\29\20const +4670:SkDCubic::findInflections\28double*\29\20const +4671:SkDCubic::dxdyAtT\28double\29\20const +4672:SkDConic::dxdyAtT\28double\29\20const +4673:SkContourMeasure_segTo\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20float\2c\20SkPathBuilder*\29 +4674:SkContourMeasureIter::next\28\29 +4675:SkContourMeasureIter::Impl::compute_quad_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +4676:SkContourMeasureIter::Impl::compute_cubic_segs\28SkPoint\20const*\2c\20float\2c\20int\2c\20int\2c\20unsigned\20int\2c\20int\29 +4677:SkContourMeasureIter::Impl::compute_conic_segs\28SkConic\20const&\2c\20float\2c\20int\2c\20SkPoint\20const&\2c\20int\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20int\29 +4678:SkContourMeasure::distanceToSegment\28float\2c\20float*\29\20const +4679:SkConic::evalAt\28float\2c\20SkPoint*\2c\20SkPoint*\29\20const +4680:SkConic::evalAt\28float\29\20const +4681:SkConic::BuildUnitArc\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPathDirection\2c\20SkMatrix\20const*\2c\20SkConic*\29 +4682:SkCompressedDataSize\28SkTextureCompressionType\2c\20SkISize\2c\20skia_private::TArray*\2c\20bool\29 +4683:SkColorSpacePrimaries::toXYZD50\28skcms_Matrix3x3*\29\20const +4684:SkColorSpace::serialize\28\29\20const +4685:SkColorInfo::operator=\28SkColorInfo&&\29 +4686:SkColorFilters::Blend\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20sk_sp\2c\20SkBlendMode\29 +4687:SkCoincidentSpans::extend\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\2c\20SkOpPtT\20const*\29 +4688:SkCodec::~SkCodec\28\29 +4689:SkCodec::getScanlines\28void*\2c\20int\2c\20unsigned\20long\29 +4690:SkCodec::getScaledDimensions\28float\29\20const +4691:SkCodec::getPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const*\29 +4692:SkChopQuadAtYExtrema\28SkPoint\20const*\2c\20SkPoint*\29 +4693:SkCapabilities::RasterBackend\28\29 +4694:SkCanvas::scale\28float\2c\20float\29 +4695:SkCanvas::saveLayer\28SkCanvas::SaveLayerRec\20const&\29 +4696:SkCanvas::onResetClip\28\29 +4697:SkCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +4698:SkCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +4699:SkCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +4700:SkCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +4701:SkCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +4702:SkCanvas::internalSave\28\29 +4703:SkCanvas::internalRestore\28\29 +4704:SkCanvas::internalDrawDeviceWithFilter\28SkDevice*\2c\20SkDevice*\2c\20SkSpan>\2c\20SkPaint\20const&\2c\20SkCanvas::DeviceCompatibleWithFilter\2c\20SkColorInfo\20const&\2c\20float\2c\20SkTileMode\2c\20bool\29 +4705:SkCanvas::drawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +4706:SkCanvas::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +4707:SkCanvas::drawColor\28unsigned\20int\2c\20SkBlendMode\29 +4708:SkCanvas::drawColor\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +4709:SkCanvas::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +4710:SkCanvas::clear\28unsigned\20int\29 +4711:SkCanvas::clear\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +4712:SkCanvas::SkCanvas\28sk_sp\29 +4713:SkCachedData::~SkCachedData\28\29 +4714:SkBlitterClipper::~SkBlitterClipper\28\29 +4715:SkBlitter::blitRegion\28SkRegion\20const&\29 +4716:SkBitmapDevice::SkBitmapDevice\28SkBitmap\20const&\2c\20SkSurfaceProps\20const&\2c\20void*\29 +4717:SkBitmapDevice::Create\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\2c\20SkRasterHandleAllocator*\29 +4718:SkBitmapDevice::BDDraw::BDDraw\28SkBitmapDevice*\29 +4719:SkBitmap::writePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +4720:SkBitmap::setPixels\28void*\29 +4721:SkBitmap::readPixels\28SkPixmap\20const&\2c\20int\2c\20int\29\20const +4722:SkBitmap::allocPixels\28\29 +4723:SkBinaryWriteBuffer::writeScalarArray\28SkSpan\29 +4724:SkBinaryWriteBuffer::writeInt\28int\29 +4725:SkBaseShadowTessellator::~SkBaseShadowTessellator\28\29_5776 +4726:SkBaseShadowTessellator::handleLine\28SkPoint\20const&\29 +4727:SkAutoPixmapStorage::freeStorage\28\29 +4728:SkAutoMalloc::reset\28unsigned\20long\2c\20SkAutoMalloc::OnShrink\29 +4729:SkAutoDescriptor::free\28\29 +4730:SkArenaAllocWithReset::reset\28\29 +4731:SkAnimatedImage::decodeNextFrame\28\29::$_0::operator\28\29\28SkAnimatedImage::Frame\20const&\29\20const +4732:SkAnimatedImage::Frame::copyTo\28SkAnimatedImage::Frame*\29\20const +4733:SkAnimatedImage::Frame::Frame\28\29 +4734:SkAnalyticQuadraticEdge::updateQuadratic\28\29 +4735:SkAnalyticEdge::goY\28int\29 +4736:SkAnalyticCubicEdge::updateCubic\28\29 +4737:SkAAClipBlitter::ensureRunsAndAA\28\29 +4738:SkAAClip::setRegion\28SkRegion\20const&\29 +4739:SkAAClip::setRect\28SkIRect\20const&\29 +4740:SkAAClip::quickContains\28int\2c\20int\2c\20int\2c\20int\29\20const +4741:SkAAClip::RunHead::Alloc\28int\2c\20unsigned\20long\29 +4742:SkAAClip::Builder::AppendRun\28SkTDArray&\2c\20unsigned\20int\2c\20int\29 +4743:Sk4f_toL32\28skvx::Vec<4\2c\20float>\20const&\29 +4744:SSVertex*\20SkArenaAlloc::make\28GrTriangulator::Vertex*&\29 +4745:RunBasedAdditiveBlitter::flush\28\29 +4746:ReconstructRow +4747:OT::sbix::get_strike\28unsigned\20int\29\20const +4748:OT::hb_paint_context_t::get_color\28unsigned\20int\2c\20float\2c\20int*\29 +4749:OT::hb_ot_apply_context_t::skipping_iterator_t::prev\28unsigned\20int*\29 +4750:OT::hb_ot_apply_context_t::check_glyph_property\28hb_glyph_info_t\20const*\2c\20unsigned\20int\29\20const +4751:OT::glyf_impl::CompositeGlyphRecord::translate\28contour_point_t\20const&\2c\20hb_array_t\29 +4752:OT::glyf_accelerator_t::points_aggregator_t::contour_bounds_t::add\28contour_point_t\20const&\29 +4753:OT::Script::get_lang_sys\28unsigned\20int\29\20const +4754:OT::PaintSkew::sanitize\28hb_sanitize_context_t*\29\20const +4755:OT::OpenTypeOffsetTable::sanitize\28hb_sanitize_context_t*\29\20const +4756:OT::OpenTypeFontFile::sanitize\28hb_sanitize_context_t*\29\20const +4757:OT::OS2::has_data\28\29\20const +4758:OT::Layout::GSUB_impl::SubstLookup::serialize_ligature\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20hb_sorted_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\2c\20hb_array_t\29 +4759:OT::Layout::GPOS_impl::MarkArray::apply\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20OT::Layout::GPOS_impl::AnchorMatrix\20const&\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +4760:OT::Layout::Common::Coverage::get_coverage\28unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +4761:OT::Layout::Common::Coverage::cost\28\29\20const +4762:OT::ItemVariationStore::sanitize\28hb_sanitize_context_t*\29\20const +4763:OT::HVARVVAR::sanitize\28hb_sanitize_context_t*\29\20const +4764:OT::GSUBGPOS::get_lookup_count\28\29\20const +4765:OT::GSUBGPOS::get_feature_list\28\29\20const +4766:OT::GSUBGPOS::accelerator_t::get_accel\28unsigned\20int\29\20const +4767:OT::Device::get_y_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +4768:OT::Device::get_x_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +4769:OT::ClipList::get_extents\28unsigned\20int\2c\20hb_glyph_extents_t*\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +4770:OT::COLR::paint_glyph\28hb_font_t*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20hb_colr_scratch_t&\29\20const +4771:OT::COLR::get_clip_list\28\29\20const +4772:OT::COLR::accelerator_t::release_scratch\28hb_colr_scratch_t*\29\20const +4773:OT::CFFIndex>::get_size\28\29\20const +4774:OT::CFFIndex>::sanitize\28hb_sanitize_context_t*\29\20const +4775:OT::ArrayOf>::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20bool\29 +4776:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29 +4777:LineQuadraticIntersections::uniqueAnswer\28double\2c\20SkDPoint\20const&\29 +4778:LineQuadraticIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineQuadraticIntersections::PinTPoint\29 +4779:LineQuadraticIntersections::checkCoincident\28\29 +4780:LineQuadraticIntersections::addLineNearEndPoints\28\29 +4781:LineCubicIntersections::uniqueAnswer\28double\2c\20SkDPoint\20const&\29 +4782:LineCubicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineCubicIntersections::PinTPoint\29 +4783:LineCubicIntersections::checkCoincident\28\29 +4784:LineCubicIntersections::addLineNearEndPoints\28\29 +4785:LineConicIntersections::validT\28double*\2c\20double\2c\20double*\29 +4786:LineConicIntersections::uniqueAnswer\28double\2c\20SkDPoint\20const&\29 +4787:LineConicIntersections::pinTs\28double*\2c\20double*\2c\20SkDPoint*\2c\20LineConicIntersections::PinTPoint\29 +4788:LineConicIntersections::checkCoincident\28\29 +4789:LineConicIntersections::addLineNearEndPoints\28\29 +4790:HorizontalUnfilter_C +4791:HandleInnerJoin\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +4792:GrVertexChunkBuilder::~GrVertexChunkBuilder\28\29 +4793:GrTriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +4794:GrTriangulator::splitEdge\28GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +4795:GrTriangulator::pathToPolys\28float\2c\20SkRect\20const&\2c\20bool*\29 +4796:GrTriangulator::makePoly\28GrTriangulator::Poly**\2c\20GrTriangulator::Vertex*\2c\20int\29\20const +4797:GrTriangulator::generateCubicPoints\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20GrTriangulator::VertexList*\2c\20int\29\20const +4798:GrTriangulator::checkForIntersection\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +4799:GrTriangulator::applyFillType\28int\29\20const +4800:GrTriangulator::SortMesh\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +4801:GrTriangulator::MonotonePoly::addEdge\28GrTriangulator::Edge*\29 +4802:GrTriangulator::GrTriangulator\28SkPath\20const&\2c\20SkArenaAlloc*\29 +4803:GrTriangulator::Edge::insertBelow\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +4804:GrTriangulator::Edge::insertAbove\28GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +4805:GrTriangulator::BreadcrumbTriangleList::append\28SkArenaAlloc*\2c\20SkPoint\2c\20SkPoint\2c\20SkPoint\2c\20int\29 +4806:GrThreadSafeCache::recycleEntry\28GrThreadSafeCache::Entry*\29 +4807:GrThreadSafeCache::dropAllRefs\28\29 +4808:GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10694 +4809:GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +4810:GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +4811:GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +4812:GrTextureRenderTargetProxy::callbackDesc\28\29\20const +4813:GrTextureProxy::~GrTextureProxy\28\29 +4814:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::$_0::operator\28\29\28int\2c\20GrSamplerState::WrapMode\29\20const +4815:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29 +4816:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_3::operator\28\29\28bool\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +4817:GrTexture::GrTexture\28GrGpu*\2c\20SkISize\20const&\2c\20skgpu::Protected\2c\20GrTextureType\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +4818:GrTexture::ComputeScratchKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20skgpu::ScratchKey*\29 +4819:GrSurfaceProxyView::asTextureProxyRef\28\29\20const +4820:GrSurfaceProxy::instantiateImpl\28GrResourceProvider*\2c\20int\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::UniqueKey\20const*\29 +4821:GrSurfaceProxy::GrSurfaceProxy\28sk_sp\2c\20SkBackingFit\2c\20GrSurfaceProxy::UseAllocator\29 +4822:GrStyledShape::styledBounds\28\29\20const +4823:GrStyledShape::addGenIDChangeListener\28sk_sp\29\20const +4824:GrStyledShape::GrStyledShape\28SkRect\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +4825:GrStyledShape::GrStyledShape\28SkRRect\20const&\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +4826:GrStyle::isSimpleHairline\28\29\20const +4827:GrStyle::initPathEffect\28sk_sp\29 +4828:GrStencilSettings::Face::reset\28GrTStencilFaceSettings\20const&\2c\20bool\2c\20int\29 +4829:GrSimpleMeshDrawOpHelper::fixedFunctionFlags\28\29\20const +4830:GrShape::setPath\28SkPath\20const&\29 +4831:GrShape::segmentMask\28\29\20const +4832:GrShape::operator=\28GrShape\20const&\29 +4833:GrShape::convex\28bool\29\20const +4834:GrShaderVar::GrShaderVar\28SkString\2c\20SkSLType\2c\20int\29 +4835:GrResourceProvider::findResourceByUniqueKey\28skgpu::UniqueKey\20const&\29 +4836:GrResourceProvider::createPatternedIndexBuffer\28unsigned\20short\20const*\2c\20int\2c\20int\2c\20int\2c\20skgpu::UniqueKey\20const*\29 +4837:GrResourceCache::removeUniqueKey\28GrGpuResource*\29 +4838:GrResourceCache::getNextTimestamp\28\29 +4839:GrResourceCache::findAndRefScratchResource\28skgpu::ScratchKey\20const&\29 +4840:GrRenderTask::dependsOn\28GrRenderTask\20const*\29\20const +4841:GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +4842:GrRenderTargetProxy::canUseStencil\28GrCaps\20const&\29\20const +4843:GrRecordingContextPriv::createDevice\28skgpu::Budgeted\2c\20SkImageInfo\20const&\2c\20SkBackingFit\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\2c\20skgpu::ganesh::Device::InitContents\29 +4844:GrRecordingContextPriv::addOnFlushCallbackObject\28GrOnFlushCallbackObject*\29 +4845:GrRecordingContext::~GrRecordingContext\28\29 +4846:GrQuadUtils::TessellationHelper::reset\28GrQuad\20const&\2c\20GrQuad\20const*\29 +4847:GrQuadUtils::TessellationHelper::getEdgeEquations\28\29 +4848:GrQuadUtils::TessellationHelper::Vertices::moveAlong\28GrQuadUtils::TessellationHelper::EdgeVectors\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +4849:GrQuadUtils::ResolveAAType\28GrAAType\2c\20GrQuadAAFlags\2c\20GrQuad\20const&\2c\20GrAAType*\2c\20GrQuadAAFlags*\29 +4850:GrQuadUtils::CropToRect\28SkRect\20const&\2c\20GrAA\2c\20DrawQuad*\2c\20bool\29 +4851:GrQuadBuffer<\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA>::append\28GrQuad\20const&\2c\20\28anonymous\20namespace\29::FillRectOpImpl::ColorAndAA&&\2c\20GrQuad\20const*\29 +4852:GrQuad::setQuadType\28GrQuad::Type\29 +4853:GrPorterDuffXPFactory::SimpleSrcOverXP\28\29 +4854:GrPipeline*\20SkArenaAlloc::make\28GrPipeline::InitArgs&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29 +4855:GrPersistentCacheUtils::UnpackCachedShaders\28SkReadBuffer*\2c\20SkSL::NativeShader*\2c\20bool\2c\20SkSL::ProgramInterface*\2c\20int\2c\20GrPersistentCacheUtils::ShaderMetadata*\29 +4856:GrPathUtils::quadraticPointCount\28SkPoint\20const*\2c\20float\29 +4857:GrPathUtils::convertCubicToQuads\28SkPoint\20const*\2c\20float\2c\20skia_private::TArray*\29 +4858:GrPathTessellationShader::Make\28GrShaderCaps\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::tess::PatchAttribs\29 +4859:GrPathTessellationShader::MakeSimpleTriangleShader\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +4860:GrOvalOpFactory::MakeOvalOp\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\2c\20GrShaderCaps\20const*\29 +4861:GrOpsRenderPass::drawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +4862:GrOpFlushState::draw\28int\2c\20int\29 +4863:GrOp::chainConcat\28std::__2::unique_ptr>\29 +4864:GrNonAtomicRef::unref\28\29\20const +4865:GrModulateAtlasCoverageEffect::GrModulateAtlasCoverageEffect\28GrModulateAtlasCoverageEffect\20const&\29 +4866:GrMipLevel::operator=\28GrMipLevel&&\29 +4867:GrMeshDrawOp::PatternHelper::PatternHelper\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +4868:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29 +4869:GrImageInfo::makeDimensions\28SkISize\29\20const +4870:GrGpuResource::~GrGpuResource\28\29 +4871:GrGpuResource::removeScratchKey\28\29 +4872:GrGpuResource::registerWithCacheWrapped\28GrWrapCacheable\29 +4873:GrGpuResource::getResourceName\28\29\20const +4874:GrGpuResource::dumpMemoryStatisticsPriv\28SkTraceMemoryDump*\2c\20SkString\20const&\2c\20char\20const*\2c\20unsigned\20long\29\20const +4875:GrGpuResource::CreateUniqueID\28\29 +4876:GrGpuBuffer::onGpuMemorySize\28\29\20const +4877:GrGpu::resolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +4878:GrGpu::executeFlushInfo\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20std::__2::optional\2c\20skgpu::MutableTextureState\20const*\29 +4879:GrGeometryProcessor::TextureSampler::TextureSampler\28GrSamplerState\2c\20GrBackendFormat\20const&\2c\20skgpu::Swizzle\20const&\29 +4880:GrGeometryProcessor::TextureSampler::TextureSampler\28GrGeometryProcessor::TextureSampler&&\29 +4881:GrGeometryProcessor::ProgramImpl::TransformInfo::TransformInfo\28GrGeometryProcessor::ProgramImpl::TransformInfo\20const&\29 +4882:GrGeometryProcessor::ProgramImpl::AddMatrixKeys\28GrShaderCaps\20const&\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\29 +4883:GrGeometryProcessor::Attribute::size\28\29\20const +4884:GrGLUniformHandler::~GrGLUniformHandler\28\29 +4885:GrGLUniformHandler::getUniformVariable\28GrResourceHandle\29\20const +4886:GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_13139 +4887:GrGLTextureRenderTarget::onRelease\28\29 +4888:GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +4889:GrGLTextureRenderTarget::onAbandon\28\29 +4890:GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +4891:GrGLTexture::~GrGLTexture\28\29 +4892:GrGLTexture::onRelease\28\29 +4893:GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +4894:GrGLTexture::TextureTypeFromTarget\28unsigned\20int\29 +4895:GrGLSemaphore::Make\28GrGLGpu*\2c\20bool\29 +4896:GrGLSLVaryingHandler::~GrGLSLVaryingHandler\28\29 +4897:GrGLSLUniformHandler::UniformInfo::~UniformInfo\28\29 +4898:GrGLSLShaderBuilder::appendTextureLookup\28SkString*\2c\20GrResourceHandle\2c\20char\20const*\29\20const +4899:GrGLSLShaderBuilder::appendColorGamutXform\28char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +4900:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +4901:GrGLSLProgramDataManager::setSkMatrix\28GrResourceHandle\2c\20SkMatrix\20const&\29\20const +4902:GrGLSLProgramBuilder::writeFPFunction\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +4903:GrGLSLProgramBuilder::nameExpression\28SkString*\2c\20char\20const*\29 +4904:GrGLSLProgramBuilder::fragmentProcessorHasCoordsParam\28GrFragmentProcessor\20const*\29\20const +4905:GrGLSLProgramBuilder::emitSampler\28GrBackendFormat\20const&\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\29 +4906:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_11389 +4907:GrGLRenderTarget::~GrGLRenderTarget\28\29 +4908:GrGLRenderTarget::onRelease\28\29 +4909:GrGLRenderTarget::onAbandon\28\29 +4910:GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +4911:GrGLProgramDataManager::~GrGLProgramDataManager\28\29 +4912:GrGLProgramBuilder::~GrGLProgramBuilder\28\29 +4913:GrGLProgramBuilder::computeCountsAndStrides\28unsigned\20int\2c\20GrGeometryProcessor\20const&\2c\20bool\29 +4914:GrGLProgramBuilder::addInputVars\28SkSL::ProgramInterface\20const&\29 +4915:GrGLOpsRenderPass::dmsaaLoadStoreBounds\28\29\20const +4916:GrGLOpsRenderPass::bindInstanceBuffer\28GrBuffer\20const*\2c\20int\29 +4917:GrGLGpu::insertSemaphore\28GrSemaphore*\29 +4918:GrGLGpu::flushViewport\28SkIRect\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +4919:GrGLGpu::flushScissor\28GrScissorState\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +4920:GrGLGpu::flushClearColor\28std::__2::array\29 +4921:GrGLGpu::disableStencil\28\29 +4922:GrGLGpu::deleteSync\28__GLsync*\29 +4923:GrGLGpu::createTexture\28SkISize\2c\20GrGLFormat\2c\20unsigned\20int\2c\20skgpu::Renderable\2c\20GrGLTextureParameters::SamplerOverriddenState*\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +4924:GrGLGpu::copySurfaceAsDraw\28GrSurface*\2c\20bool\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +4925:GrGLGpu::HWVertexArrayState::bindInternalVertexArray\28GrGLGpu*\2c\20GrBuffer\20const*\29 +4926:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20char\2c\20int\2c\20void\20const*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20char\2c\20int\2c\20void\20const*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20char\2c\20int\2c\20void\20const*\29 +4927:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\29 +4928:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +4929:GrGLFunction::GrGLFunction\28unsigned\20char\20const*\20\28*\29\28unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\29 +4930:GrGLContextInfo::~GrGLContextInfo\28\29 +4931:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrGLFormat\29\20const +4932:GrGLCaps::canCopyAsDraw\28GrGLFormat\2c\20bool\2c\20bool\29\20const +4933:GrGLBuffer::~GrGLBuffer\28\29 +4934:GrGLBuffer::Make\28GrGLGpu*\2c\20unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +4935:GrGLBackendTextureData::GrGLBackendTextureData\28GrGLTextureInfo\20const&\2c\20sk_sp\29 +4936:GrGLAttribArrayState::invalidate\28\29 +4937:GrGLAttribArrayState::enableVertexArrays\28GrGLGpu\20const*\2c\20int\2c\20GrPrimitiveRestart\29 +4938:GrGLAttachment::GrGLAttachment\28GrGpu*\2c\20unsigned\20int\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20GrGLFormat\2c\20std::__2::basic_string_view>\29 +4939:GrFragmentProcessors::make_effect_fp\28sk_sp\2c\20char\20const*\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkSpan\2c\20GrFPArgs\20const&\29 +4940:GrFragmentProcessors::IsSupported\28SkMaskFilter\20const*\29 +4941:GrFragmentProcessor::makeProgramImpl\28\29\20const +4942:GrFragmentProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +4943:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +4944:GrFragmentProcessor::ProgramImpl::~ProgramImpl\28\29 +4945:GrFragmentProcessor::MulInputByChildAlpha\28std::__2::unique_ptr>\29 +4946:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +4947:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29 +4948:GrEagerDynamicVertexAllocator::lock\28unsigned\20long\2c\20int\29 +4949:GrDynamicAtlas::makeNode\28GrDynamicAtlas::Node*\2c\20int\2c\20int\2c\20int\2c\20int\29 +4950:GrDstProxyView::GrDstProxyView\28GrDstProxyView\20const&\29 +4951:GrDrawingManager::setLastRenderTask\28GrSurfaceProxy\20const*\2c\20GrRenderTask*\29 +4952:GrDrawingManager::insertTaskBeforeLast\28sk_sp\29 +4953:GrDrawingManager::flushSurfaces\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20GrFlushInfo\20const&\2c\20skgpu::MutableTextureState\20const*\29 +4954:GrDrawOpAtlas::makeMRU\28skgpu::Plot*\2c\20unsigned\20int\29 +4955:GrDefaultGeoProcFactory::MakeForDeviceSpace\28SkArenaAlloc*\2c\20GrDefaultGeoProcFactory::Color\20const&\2c\20GrDefaultGeoProcFactory::Coverage\20const&\2c\20GrDefaultGeoProcFactory::LocalCoords\20const&\2c\20SkMatrix\20const&\29 +4956:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29 +4957:GrColorTypeClampType\28GrColorType\29 +4958:GrColorSpaceXform::Equals\28GrColorSpaceXform\20const*\2c\20GrColorSpaceXform\20const*\29 +4959:GrBufferAllocPool::unmap\28\29 +4960:GrBufferAllocPool::reset\28\29 +4961:GrBlurUtils::extract_draw_rect_from_data\28SkData*\2c\20SkIRect\20const&\29 +4962:GrBlurUtils::can_filter_mask\28SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect*\29 +4963:GrBlurUtils::GaussianBlur\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20float\2c\20float\2c\20SkTileMode\2c\20SkBackingFit\29 +4964:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +4965:GrBicubicEffect::GrBicubicEffect\28std::__2::unique_ptr>\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrBicubicEffect::Clamp\29 +4966:GrBackendTextures::MakeGL\28int\2c\20int\2c\20skgpu::Mipmapped\2c\20GrGLTextureInfo\20const&\2c\20sk_sp\2c\20std::__2::basic_string_view>\29 +4967:GrBackendFormatStencilBits\28GrBackendFormat\20const&\29 +4968:GrBackendFormat::operator==\28GrBackendFormat\20const&\29\20const +4969:GrAtlasManager::resolveMaskFormat\28skgpu::MaskFormat\29\20const +4970:GrAATriangulator::~GrAATriangulator\28\29 +4971:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrAATriangulator::EventList*\29\20const +4972:GrAATriangulator::connectSSEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29 +4973:GrAAConvexTessellator::terminate\28GrAAConvexTessellator::Ring\20const&\29 +4974:GrAAConvexTessellator::movable\28int\29\20const +4975:GrAAConvexTessellator::computePtAlongBisector\28int\2c\20SkPoint\20const&\2c\20int\2c\20float\2c\20SkPoint*\29\20const +4976:GrAAConvexTessellator::computeNormals\28\29::$_0::operator\28\29\28SkPoint\29\20const +4977:GrAAConvexTessellator::CandidateVerts::originatingIdx\28int\29\20const +4978:GrAAConvexTessellator::CandidateVerts::fuseWithPrior\28int\29 +4979:GrAAConvexTessellator::CandidateVerts::addNewPt\28SkPoint\20const&\2c\20int\2c\20int\2c\20bool\29 +4980:GetVariationDesignPosition\28FT_FaceRec_*\2c\20SkSpan\29 +4981:GetAxes\28FT_FaceRec_*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\29 +4982:FT_Set_Transform +4983:FT_Set_Char_Size +4984:FT_Select_Metrics +4985:FT_Request_Metrics +4986:FT_List_Remove +4987:FT_List_Finalize +4988:FT_Hypot +4989:FT_GlyphLoader_CreateExtra +4990:FT_GlyphLoader_Adjust_Points +4991:FT_Get_Paint +4992:FT_Get_MM_Var +4993:FT_Get_Color_Glyph_Paint +4994:FT_Done_GlyphSlot +4995:FT_Done_Face +4996:ExtractPalettedAlphaRows +4997:EllipticalRRectOp::~EllipticalRRectOp\28\29 +4998:EdgeLT::operator\28\29\28Edge\20const&\2c\20Edge\20const&\29\20const +4999:DecodeImageData +5000:DAffineMatrix::mapPoint\28\28anonymous\20namespace\29::DPoint\20const&\29\20const +5001:DAffineMatrix::mapPoint\28SkPoint\20const&\29\20const +5002:Cr_z_inflate_table +5003:CopyFromCompoundDictionary +5004:Compute_Point_Displacement +5005:CircularRRectOp::~CircularRRectOp\28\29 +5006:CFF::cff_stack_t::push\28\29 +5007:CFF::UnsizedByteStr\20const&\20CFF::StructAtOffsetOrNull\28void\20const*\2c\20int\2c\20hb_sanitize_context_t&\2c\20unsigned\20int&\29 +5008:BuildHuffmanTable +5009:BrotliWarmupBitReader +5010:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block*\2c\20int\29>::Item::operator++\28\29 +5011:ApplyAlphaMultiply_16b_C +5012:AddFrame +5013:ActiveEdgeList::DoubleRotation\28ActiveEdge*\2c\20int\29 +5014:AAT::kerxTupleKern\28int\2c\20unsigned\20int\2c\20void\20const*\2c\20AAT::hb_aat_apply_context_t*\29 +5015:AAT::kern_accelerator_data_t::~kern_accelerator_data_t\28\29 +5016:AAT::hb_aat_scratch_t::~hb_aat_scratch_t\28\29 +5017:AAT::hb_aat_scratch_t::destroy_buffer_glyph_set\28hb_bit_set_t*\29\20const +5018:AAT::hb_aat_scratch_t::create_buffer_glyph_set\28\29\20const +5019:AAT::hb_aat_apply_context_t::delete_glyph\28\29 +5020:AAT::feat::get_feature\28hb_aat_layout_feature_type_t\29\20const +5021:AAT::Lookup::sanitize\28hb_sanitize_context_t*\29\20const +5022:AAT::ClassTable>::get_class\28unsigned\20int\2c\20unsigned\20int\29\20const +5023:4807 +5024:4808 +5025:4809 +5026:4810 +5027:4811 +5028:4812 +5029:4813 +5030:4814 +5031:4815 +5032:4816 +5033:4817 +5034:4818 +5035:4819 +5036:4820 +5037:4821 +5038:4822 +5039:4823 +5040:4824 +5041:4825 +5042:4826 +5043:4827 +5044:4828 +5045:4829 +5046:4830 +5047:4831 +5048:4832 +5049:4833 +5050:4834 +5051:4835 +5052:4836 +5053:4837 +5054:4838 +5055:4839 +5056:4840 +5057:4841 +5058:4842 +5059:4843 +5060:4844 +5061:4845 +5062:4846 +5063:4847 +5064:4848 +5065:4849 +5066:4850 +5067:4851 +5068:4852 +5069:4853 +5070:4854 +5071:4855 +5072:4856 +5073:4857 +5074:4858 +5075:4859 +5076:4860 +5077:4861 +5078:zeroinfnan +5079:zero_mark_widths_by_gdef\28hb_buffer_t*\2c\20bool\29 +5080:xyzd50_to_lab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +5081:wuffs_lzw__decoder__workbuf_len +5082:wuffs_lzw__decoder__transform_io +5083:wuffs_gif__decoder__restart_frame +5084:wuffs_gif__decoder__num_animation_loops +5085:wuffs_gif__decoder__frame_dirty_rect +5086:wuffs_gif__decoder__decode_up_to_id_part1 +5087:wuffs_gif__decoder__decode_frame +5088:wuffs_base__poke_u64le__no_bounds_check +5089:wuffs_base__pixel_swizzler__swap_rgbx_bgrx +5090:wuffs_base__color_u32__as__color_u64 +5091:write_vertex_position\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\2c\20GrShaderCaps\20const&\2c\20GrShaderVar\20const&\2c\20SkMatrix\20const&\2c\20char\20const*\2c\20GrShaderVar*\2c\20GrResourceHandle*\29 +5092:write_passthrough_vertex_position\28GrGLSLVertexBuilder*\2c\20GrShaderVar\20const&\2c\20GrShaderVar*\29 +5093:winding_mono_quad\28SkSpan\2c\20float\2c\20float\2c\20int*\29 +5094:winding_mono_conic\28SkConic\20const&\2c\20float\2c\20float\2c\20int*\29 +5095:wctomb +5096:wchar_t*\20std::__2::copy\5babi:nn180100\5d\2c\20wchar_t*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20wchar_t*\29 +5097:wchar_t*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28wchar_t*\2c\20wchar_t\20const*\2c\20std::__2::__element_count\29 +5098:walk_simple_edges\28SkEdge*\2c\20SkBlitter*\2c\20int\2c\20int\29 +5099:vsscanf +5100:void\20std::__2::unique_ptr::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot*\2c\200>\28skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot*\29 +5101:void\20std::__2::unique_ptr\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot*\2c\200>\28skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot*\29 +5102:void\20std::__2::unique_ptr>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot*\2c\200>\28skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot*\29 +5103:void\20std::__2::unique_ptr::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot*\2c\200>\28skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot*\29 +5104:void\20std::__2::unique_ptr\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d>>::reset\5babi:ne180100\5d\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot*\2c\200>\28skia_private::THashTable\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot*\29 +5105:void\20std::__2::replace\5babi:ne180100\5d\28char*\2c\20char*\2c\20char\20const&\2c\20char\20const&\29 +5106:void\20std::__2::call_once\5babi:ne180100\5d\28std::__2::once_flag&\2c\20void\20\28&\29\28\29\29 +5107:void\20std::__2::__variant_detail::__impl\2c\20std::__2::unique_ptr>>::__assign\5babi:ne180100\5d<0ul\2c\20sk_sp>\28sk_sp&&\29 +5108:void\20std::__2::__variant_detail::__impl::__assign\5babi:ne180100\5d<1ul\2c\20int&>\28int&\29 +5109:void\20std::__2::__variant_detail::__impl::__assign\5babi:ne180100\5d<0ul\2c\20SkPaint>\28SkPaint&&\29 +5110:void\20std::__2::__variant_detail::__assignment>::__assign_alt\5babi:ne180100\5d<0ul\2c\20SkPaint\2c\20SkPaint>\28std::__2::__variant_detail::__alt<0ul\2c\20SkPaint>&\2c\20SkPaint&&\29 +5111:void\20std::__2::__tree_right_rotate\5babi:ne180100\5d*>\28std::__2::__tree_node_base*\29 +5112:void\20std::__2::__tree_left_rotate\5babi:ne180100\5d*>\28std::__2::__tree_node_base*\29 +5113:void\20std::__2::__stable_sort_move\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>\28std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20std::__2::__wrap_iter<\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::'lambda'\28\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\2c\20\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop\20const&\29&\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::difference_type\2c\20std::__2::iterator_traits\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29::$_0::operator\28\29\28FT_ColorStopIterator_\20const&\2c\20std::__2::vector>&\2c\20std::__2::vector\2c\20std::__2::allocator>>&\29\20const::ColorStop*>>::value_type*\29 +5114:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +5115:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**\2c\200>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +5116:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +5117:void\20std::__2::__sort5_maybe_branchless\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +5118:void\20std::__2::__sift_up\5babi:ne180100\5d*>>\28std::__2::__wrap_iter*>\2c\20std::__2::__wrap_iter*>\2c\20GrGeometryProcessor::ProgramImpl::emitTransformCode\28GrGLSLVertexBuilder*\2c\20GrGLSLUniformHandler*\29::$_1&\2c\20std::__2::iterator_traits*>>::difference_type\29 +5119:void\20std::__2::__sift_up\5babi:ne180100\5d>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20GrAATriangulator::EventComparator&\2c\20std::__2::iterator_traits>::difference_type\29 +5120:void\20std::__2::__optional_storage_base::__construct\5babi:ne180100\5d\28skia::textlayout::FontArguments\20const&\29 +5121:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d\20const&>\28std::__2::__optional_copy_assign_base\20const&\29 +5122:void\20std::__2::__optional_storage_base::__construct\5babi:ne180100\5d\28flutter::DlPaint\20const&\29 +5123:void\20std::__2::__optional_storage_base::__assign_from\5babi:ne180100\5d\20const&>\28std::__2::__optional_copy_assign_base\20const&\29 +5124:void\20std::__2::__optional_storage_base::__construct\5babi:ne180100\5d\28AutoLayerForImageFilter&&\29 +5125:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d&\2c\20int&>\2c\20std::__2::tuple\2c\20unsigned\20long>\2c\20sk_sp\2c\20unsigned\20long\2c\200ul\2c\201ul>\28std::__2::tuple&\2c\20int&>&\2c\20std::__2::tuple\2c\20unsigned\20long>&&\2c\20std::__2::__tuple_types\2c\20unsigned\20long>\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +5126:void\20std::__2::__memberwise_forward_assign\5babi:ne180100\5d&>\2c\20std::__2::tuple>\2c\20GrSurfaceProxyView\2c\20sk_sp\2c\200ul\2c\201ul>\28std::__2::tuple&>&\2c\20std::__2::tuple>&&\2c\20std::__2::__tuple_types>\2c\20std::__2::__tuple_indices<0ul\2c\201ul>\29 +5127:void\20std::__2::__list_imp>::__delete_node\5babi:ne180100\5d<>\28std::__2::__list_node*\29 +5128:void\20std::__2::__introsort\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +5129:void\20std::__2::__introsort\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**\2c\20false>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20std::__2::iterator_traits\20const**>::difference_type\2c\20bool\29 +5130:void\20std::__2::__introsort\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +5131:void\20std::__2::__introsort\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\2c\20std::__2::iterator_traits::difference_type\2c\20bool\29 +5132:void\20std::__2::__forward_list_base\2c\20std::__2::allocator>>::__delete_node\5babi:ne180100\5d<>\28std::__2::__forward_list_node\2c\20void*>*\29 +5133:void\20std::__2::__double_or_nothing\5babi:nn180100\5d\28std::__2::unique_ptr&\2c\20char*&\2c\20char*&\29 +5134:void\20sorted_merge<&sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +5135:void\20sorted_merge<&sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29>\28GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::VertexList*\29 +5136:void\20sort_r_simple\28void*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\2c\20void*\29\2c\20void*\29 +5137:void\20sktext::gpu::fillDirectClipped\28SkZip\2c\20unsigned\20int\2c\20SkPoint\2c\20SkIRect*\29 +5138:void\20skgpu::ganesh::SurfaceFillContext::clearAtLeast<\28SkAlphaType\292>\28SkIRect\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +5139:void\20icu_74::umtx_initOnce\28icu_74::UInitOnce&\2c\20void\20\28*\29\28char\20const*\2c\20UErrorCode&\29\2c\20char\20const*\2c\20UErrorCode&\29 +5140:void\20hb_sanitize_context_t::set_object>\28OT::KernSubTable\20const*\29 +5141:void\20hair_path<\28SkPaint::Cap\292>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +5142:void\20hair_path<\28SkPaint::Cap\291>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +5143:void\20hair_path<\28SkPaint::Cap\290>\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +5144:void\20\28anonymous\20namespace\29::copyFT2LCD16\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\29 +5145:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int*\2c\20int\29 +5146:void\20\28anonymous\20namespace\29::Pass::blur\28int\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20unsigned\20char*\2c\20int\29 +5147:void\20SkTQSort\28double*\2c\20double*\29 +5148:void\20SkTIntroSort\28int\2c\20int*\2c\20int\2c\20DistanceLessThan\20const&\29 +5149:void\20SkTIntroSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29>\28int\2c\20float*\2c\20int\2c\20void\20SkTQSort\28float*\2c\20float*\29::'lambda'\28float\20const&\2c\20float\20const&\29\20const&\29 +5150:void\20SkTIntroSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29>\28int\2c\20double*\2c\20int\2c\20void\20SkTQSort\28double*\2c\20double*\29::'lambda'\28double\20const&\2c\20double\20const&\29\20const&\29 +5151:void\20SkTIntroSort\28int\2c\20SkString*\2c\20int\2c\20bool\20\20const\28&\29\28SkString\20const&\2c\20SkString\20const&\29\29 +5152:void\20SkTIntroSort\28int\2c\20SkOpRayHit**\2c\20int\2c\20bool\20\20const\28&\29\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29\29 +5153:void\20SkTIntroSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29>\28int\2c\20SkOpContour*\2c\20int\2c\20void\20SkTQSort\28SkOpContour**\2c\20SkOpContour**\29::'lambda'\28SkOpContour\20const*\2c\20SkOpContour\20const*\29\20const&\29 +5154:void\20SkTIntroSort\28int\2c\20SkEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkEdge\20const*\2c\20SkEdge\20const*\29\29 +5155:void\20SkTIntroSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29>\28int\2c\20SkClosestRecord\20const*\2c\20int\2c\20void\20SkTQSort\28SkClosestRecord\20const**\2c\20SkClosestRecord\20const**\29::'lambda'\28SkClosestRecord\20const*\2c\20SkClosestRecord\20const*\29\20const&\29 +5156:void\20SkTIntroSort\28int\2c\20SkAnalyticEdge**\2c\20int\2c\20bool\20\20const\28&\29\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge\20const*\29\29 +5157:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\20const\28&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +5158:void\20SkTIntroSort\28int\2c\20GrGpuResource**\2c\20int\2c\20bool\20\28*\20const&\29\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29\29 +5159:void\20SkTIntroSort\28int\2c\20Edge*\2c\20int\2c\20EdgeLT\20const&\29 +5160:void\20SkSafeUnref\28GrWindowRectangles::Rec\20const*\29 +5161:void\20SkSafeUnref\28GrSurface::RefCntedReleaseProc*\29 +5162:void\20SkSafeUnref\28GrBufferAllocPool::CpuBufferCache*\29 +5163:void\20SkRecords::FillBounds::trackBounds\28SkRecords::NoOp\20const&\29 +5164:void\20GrGLProgramDataManager::setMatrices<4>\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +5165:void\20GrGLProgramDataManager::setMatrices<3>\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +5166:void\20GrGLProgramDataManager::setMatrices<2>\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +5167:void\20A8_row_aa\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\20\28*\29\28unsigned\20char\2c\20unsigned\20char\29\2c\20bool\29 +5168:void*\20flutter::DisplayListBuilder::Push\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool\2c\20bool&>\28unsigned\20long\2c\20sk_sp\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool&&\2c\20bool&\29 +5169:void*\20flutter::DisplayListBuilder::Push\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool\2c\20impeller::TRect\20const&\2c\20bool&>\28unsigned\20long\2c\20sk_sp\20const&\2c\20int&\2c\20impeller::BlendMode&\2c\20flutter::DlImageSampling&\2c\20bool&&\2c\20impeller::TRect\20const&\2c\20bool&\29 +5170:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +5171:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +5172:virtual\20thunk\20to\20GrGLTexture::onSetLabel\28\29 +5173:virtual\20thunk\20to\20GrGLTexture::backendFormat\28\29\20const +5174:vfiprintf +5175:validate_texel_levels\28SkISize\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20GrCaps\20const*\29 +5176:valid_divs\28int\20const*\2c\20int\2c\20int\2c\20int\29 +5177:utf8_byte_type\28unsigned\20char\29 +5178:utf8TextClose\28UText*\29 +5179:utf8TextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +5180:utext_openConstUnicodeString_74 +5181:utext_openCharacterIterator_74 +5182:utext_moveIndex32_74 +5183:utext_getPreviousNativeIndex_74 +5184:ustrcase_mapWithOverlap_74 +5185:use_tiled_rendering\28GrGLCaps\20const&\2c\20GrOpsRenderPass::StencilLoadAndStoreInfo\20const&\29 +5186:ures_getInt_74 +5187:ures_getIntVector_74 +5188:ures_copyResb_74 +5189:ures_closeBundle\28UResourceBundle*\2c\20signed\20char\29 +5190:uprv_stricmp_74 +5191:uprv_mapFile_74 +5192:uprv_compareInvAscii_74 +5193:upropsvec_addPropertyStarts_74 +5194:uprops_getSource_74 +5195:uprops_addPropertyStarts_74 +5196:update_edge\28SkEdge*\2c\20int\29 +5197:unsigned\20short\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +5198:unsigned\20short\20sk_saturate_cast\28float\29 +5199:unsigned\20long\20long\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +5200:unsigned\20long&\20std::__2::vector>::emplace_back\28unsigned\20long&\29 +5201:unsigned\20int\20std::__2::__num_get_unsigned_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +5202:unsigned\20int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::makeHashCode\28unsigned\20short\20const*\2c\20int\29\20const +5203:unsigned\20int\20const*\20std::__2::lower_bound\5babi:nn180100\5d\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20unsigned\20long\20const&\29 +5204:unsigned\20char\20pack_distance_field_val<4>\28float\29 +5205:unorm_getFCD16_74 +5206:uniformData_getPointer +5207:uniformData_dispose +5208:umutablecptrie_close_74 +5209:ultag_isUnicodeLocaleType_74 +5210:ultag_isExtensionSubtags_74 +5211:ultag_getVariantsSize\28ULanguageTag\20const*\29 +5212:ultag_getTKeyStart_74 +5213:ultag_getExtensionsSize\28ULanguageTag\20const*\29 +5214:ulocimp_toBcpType_74 +5215:uloc_toUnicodeLocaleType_74 +5216:uloc_toUnicodeLocaleKey_74 +5217:uloc_setKeywordValue_74 +5218:uloc_getTableStringWithFallback_74 +5219:uloc_getScript_74 +5220:uloc_getName_74 +5221:uloc_getLanguage_74 +5222:uloc_getDisplayName_74 +5223:uloc_getCountry_74 +5224:uloc_canonicalize_74 +5225:uhash_init_74 +5226:uenum_close_74 +5227:udata_open_74 +5228:udata_getHashTable\28UErrorCode&\29 +5229:udata_findCachedData\28char\20const*\2c\20UErrorCode&\29 +5230:udata_checkCommonData_74 +5231:ucptrie_internalU8PrevIndex_74 +5232:uchar_addPropertyStarts_74 +5233:ucase_toFullTitle_74 +5234:ucase_toFullLower_74 +5235:ucase_toFullFolding_74 +5236:ucase_addPropertyStarts_74 +5237:ubrk_setText_74 +5238:ubrk_close_wrapper\28UBreakIterator*\29 +5239:ubidi_getVisualRun_74 +5240:ubidi_getPairedBracketType_74 +5241:ubidi_getClass_74 +5242:ubidi_countRuns_74 +5243:ubidi_close_74 +5244:u_unescapeAt_74 +5245:u_strToUTF8_74 +5246:u_memrchr_74 +5247:u_memcmp_74 +5248:u_memchr_74 +5249:u_isgraphPOSIX_74 +5250:u_getPropertyEnum_74 +5251:u8_lerp\28unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char\29 +5252:tt_size_select +5253:tt_size_run_prep +5254:tt_size_done_bytecode +5255:tt_sbit_decoder_load_image +5256:tt_prepare_zone +5257:tt_loader_set_pp +5258:tt_loader_init +5259:tt_loader_done +5260:tt_hvadvance_adjust +5261:tt_face_vary_cvt +5262:tt_face_palette_set +5263:tt_face_load_generic_header +5264:tt_face_load_cvt +5265:tt_face_goto_table +5266:tt_face_get_metrics +5267:tt_done_blend +5268:tt_cmap4_set_range +5269:tt_cmap4_next +5270:tt_cmap4_char_map_linear +5271:tt_cmap4_char_map_binary +5272:tt_cmap2_get_subheader +5273:tt_cmap14_get_nondef_chars +5274:tt_cmap14_get_def_chars +5275:tt_cmap14_def_char_count +5276:tt_cmap13_next +5277:tt_cmap13_init +5278:tt_cmap13_char_map_binary +5279:tt_cmap12_next +5280:tt_cmap12_char_map_binary +5281:tt_apply_mvar +5282:top_collinear\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +5283:to_stablekey\28int\2c\20unsigned\20int\29 +5284:toUpperOrTitle\28int\2c\20int\20\28*\29\28void*\2c\20signed\20char\29\2c\20void*\2c\20char16_t\20const**\2c\20int\2c\20signed\20char\29 +5285:throw_on_failure\28unsigned\20long\2c\20void*\29 +5286:thai_pua_shape\28unsigned\20int\2c\20thai_action_t\2c\20hb_font_t*\29 +5287:t1_lookup_glyph_by_stdcharcode_ps +5288:t1_cmap_std_init +5289:t1_cmap_std_char_index +5290:t1_builder_init +5291:t1_builder_close_contour +5292:t1_builder_add_point1 +5293:t1_builder_add_point +5294:t1_builder_add_contour +5295:sweep_lt_vert\28SkPoint\20const&\2c\20SkPoint\20const&\29 +5296:sweep_lt_horiz\28SkPoint\20const&\2c\20SkPoint\20const&\29 +5297:swap\28hb_bit_set_t&\2c\20hb_bit_set_t&\29 +5298:strutStyle_setFontSize +5299:strtoull +5300:strtoul +5301:strtoll_l +5302:strtol +5303:strspn +5304:strcspn +5305:store_int +5306:std::logic_error::~logic_error\28\29 +5307:std::logic_error::logic_error\28char\20const*\29 +5308:std::exception::exception\5babi:nn180100\5d\28\29 +5309:std::__2::vector>\2c\20std::__2::allocator>>>::__base_destruct_at_end\5babi:ne180100\5d\28std::__2::unique_ptr>*\29 +5310:std::__2::vector\2c\20std::__2::allocator>>::__base_destruct_at_end\5babi:ne180100\5d\28std::__2::tuple*\29 +5311:std::__2::vector>::max_size\28\29\20const +5312:std::__2::vector>::capacity\5babi:nn180100\5d\28\29\20const +5313:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +5314:std::__2::vector>::__clear\5babi:nn180100\5d\28\29 +5315:std::__2::vector\2c\20std::__2::allocator>\2c\20std::__2::allocator\2c\20std::__2::allocator>>>::__clear\5babi:ne180100\5d\28\29 +5316:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +5317:std::__2::vector>::vector\28std::__2::vector>\20const&\29 +5318:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +5319:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +5320:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +5321:std::__2::vector>::operator=\5babi:ne180100\5d\28std::__2::vector>\20const&\29 +5322:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +5323:std::__2::vector>::__base_destruct_at_end\5babi:ne180100\5d\28skia::textlayout::FontFeature*\29 +5324:std::__2::vector\2c\20std::__2::allocator>>::vector\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29 +5325:std::__2::vector\2c\20std::__2::allocator>>::reserve\28unsigned\20long\29 +5326:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +5327:std::__2::vector>::push_back\5babi:ne180100\5d\28flutter::DlPaint\20const&\29 +5328:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +5329:std::__2::vector>::__recommend\5babi:ne180100\5d\28unsigned\20long\29\20const +5330:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +5331:std::__2::vector>::pop_back\28\29 +5332:std::__2::vector>::__base_destruct_at_end\5babi:ne180100\5d\28flutter::DisplayListBuilder::SaveInfo*\29 +5333:std::__2::vector>::insert\28std::__2::__wrap_iter\2c\20float&&\29 +5334:std::__2::vector>::__construct_at_end\28unsigned\20long\29 +5335:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +5336:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +5337:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +5338:std::__2::vector>::vector\5babi:ne180100\5d\28std::initializer_list\29 +5339:std::__2::vector>::reserve\28unsigned\20long\29 +5340:std::__2::vector>::operator=\5babi:ne180100\5d\28std::__2::vector>\20const&\29 +5341:std::__2::vector>::__vdeallocate\28\29 +5342:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +5343:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +5344:std::__2::vector>::__base_destruct_at_end\5babi:ne180100\5d\28SkString*\29 +5345:std::__2::vector>::push_back\5babi:ne180100\5d\28SkSL::TraceInfo&&\29 +5346:std::__2::vector>::push_back\5babi:ne180100\5d\28SkSL::SymbolTable*\20const&\29 +5347:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +5348:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +5349:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\2c\20SkSL::ProgramElement\20const**\29 +5350:std::__2::vector>::__move_range\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\29 +5351:std::__2::vector>::push_back\5babi:ne180100\5d\28SkRuntimeEffect::Uniform&&\29 +5352:std::__2::vector>::push_back\5babi:ne180100\5d\28SkRuntimeEffect::Child&&\29 +5353:std::__2::vector>::~vector\5babi:ne180100\5d\28\29 +5354:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +5355:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +5356:std::__2::vector>::reserve\28unsigned\20long\29 +5357:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +5358:std::__2::vector>::push_back\5babi:ne180100\5d\28SkMeshSpecification::Varying&&\29 +5359:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +5360:std::__2::vector>::reserve\28unsigned\20long\29 +5361:std::__2::vector>::__swap_out_circular_buffer\28std::__2::__split_buffer&>&\29 +5362:std::__2::vector>::__destroy_vector::operator\28\29\5babi:ne180100\5d\28\29 +5363:std::__2::vector>::__vallocate\5babi:ne180100\5d\28unsigned\20long\29 +5364:std::__2::vector>::__clear\5babi:ne180100\5d\28\29 +5365:std::__2::unique_ptr::unique_ptr\5babi:nn180100\5d\28unsigned\20char*\2c\20std::__2::__dependent_type\2c\20true>::__good_rval_ref_type\29 +5366:std::__2::unique_ptr::operator=\5babi:ne180100\5d\28std::__2::unique_ptr&&\29 +5367:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5368:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::gpu::TextBlobRedrawCoordinator*\29 +5369:std::__2::unique_ptr::~unique_ptr\5babi:ne180100\5d\28\29 +5370:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5371:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::gpu::SubRunAllocator*\29 +5372:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5373:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::gpu::StrikeCache*\29 +5374:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5375:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28sktext::GlyphRunBuilder*\29 +5376:std::__2::unique_ptr\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5377:std::__2::unique_ptr\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5378:std::__2::unique_ptr\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5379:std::__2::unique_ptr>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5380:std::__2::unique_ptr\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5381:std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5382:std::__2::unique_ptr::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5383:std::__2::unique_ptr>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5384:std::__2::unique_ptr\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5385:std::__2::unique_ptr\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5386:std::__2::unique_ptr\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot\20\5b\5d\2c\20std::__2::default_delete\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5387:std::__2::unique_ptr::Slot\20\5b\5d\2c\20std::__2::default_delete::Slot\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5388:std::__2::unique_ptr\2c\20std::__2::default_delete>>::reset\5babi:ne180100\5d\28skia_private::TArray*\29 +5389:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5390:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5391:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28skgpu::ganesh::SmallPathAtlasMgr*\29 +5392:std::__2::unique_ptr\20\5b\5d\2c\20std::__2::default_delete\20\5b\5d>>::~unique_ptr\5babi:ne180100\5d\28\29 +5393:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28hb_font_t*\29 +5394:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5395:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28hb_blob_t*\29 +5396:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5397:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28flutter::DisplayListBuilder*\29 +5398:std::__2::unique_ptr::operator=\5babi:nn180100\5d\28std::__2::unique_ptr&&\29 +5399:std::__2::unique_ptr<\28anonymous\20namespace\29::SoftwarePathData\2c\20std::__2::default_delete<\28anonymous\20namespace\29::SoftwarePathData>>::reset\5babi:ne180100\5d\28\28anonymous\20namespace\29::SoftwarePathData*\29 +5400:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5401:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28WebPDemuxer*\29 +5402:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5403:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkTaskGroup*\29 +5404:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5405:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5406:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::RP::Program*\29 +5407:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5408:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::Program*\29 +5409:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::ProgramUsage*\29 +5410:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5411:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5412:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkSL::MemoryPool*\29 +5413:std::__2::unique_ptr>\20SkSL::coalesce_vector\28std::__2::array\20const&\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +5414:std::__2::unique_ptr>\20SkSL::coalesce_pairwise_vectors\28std::__2::array\20const&\2c\20double\2c\20SkSL::Type\20const&\2c\20double\20\28*\29\28double\2c\20double\2c\20double\29\2c\20double\20\28*\29\28double\29\29 +5415:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5416:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5417:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkRecordCanvas*\29 +5418:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkLatticeIter*\29 +5419:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkCanvas::Layer*\29 +5420:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5421:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkCanvas::BackImage*\29 +5422:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5423:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28SkArenaAlloc*\29 +5424:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5425:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrThreadSafeCache*\29 +5426:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5427:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrResourceProvider*\29 +5428:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5429:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrResourceCache*\29 +5430:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5431:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrProxyProvider*\29 +5432:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5433:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5434:std::__2::unique_ptr>::~unique_ptr\5babi:ne180100\5d\28\29 +5435:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28GrAuditTrail::OpNode*\29 +5436:std::__2::unique_ptr>::reset\5babi:ne180100\5d\28FT_SizeRec_*\29 +5437:std::__2::tuple::tuple\5babi:nn180100\5d\28std::__2::locale::id::__get\28\29::$_0&&\29 +5438:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda0'\28\29::operator\28\29\28\29\20const +5439:std::__2::tuple\2c\20int\2c\20sktext::gpu::SubRunAllocator>\20sktext::gpu::SubRunAllocator::AllocateClassMemoryAndArena\28int\29::'lambda'\28\29::operator\28\29\28\29\20const +5440:std::__2::tuple&\20std::__2::tuple::operator=\5babi:ne180100\5d\28std::__2::pair&&\29 +5441:std::__2::to_string\28unsigned\20long\29 +5442:std::__2::to_chars_result\20std::__2::__to_chars_itoa\5babi:nn180100\5d\28char*\2c\20char*\2c\20unsigned\20int\2c\20std::__2::integral_constant\29 +5443:std::__2::time_put>>::~time_put\28\29_18140 +5444:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +5445:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +5446:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +5447:std::__2::time_get>>::__get_year\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +5448:std::__2::time_get>>::__get_weekdayname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +5449:std::__2::time_get>>::__get_monthname\28int&\2c\20std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20unsigned\20int&\2c\20std::__2::ctype\20const&\29\20const +5450:std::__2::shared_ptr\20std::__2::make_shared\5babi:ne180100\5d\20const&\2c\20void>\28std::__2::shared_ptr\20const&\29 +5451:std::__2::shared_ptr::shared_ptr\5babi:ne180100\5d\28flutter::DisplayListBuilder::LayerInfo*\29 +5452:std::__2::reverse_iterator::operator++\5babi:nn180100\5d\28\29 +5453:std::__2::priority_queue>\2c\20GrAATriangulator::EventComparator>::push\28GrAATriangulator::Event*\20const&\29 +5454:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t*\29\20const +5455:std::__2::pair::pair\5babi:ne180100\5d\28std::__2::pair&&\29 +5456:std::__2::pair>::~pair\28\29 +5457:std::__2::pair\20std::__2::__unwrap_and_dispatch\5babi:ne180100\5d\2c\20std::__2::__copy_trivial>\2c\20skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\200>\28skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\2c\20skia::textlayout::FontFeature*\29 +5458:std::__2::pair\2c\20std::__2::allocator>>>::~pair\28\29 +5459:std::__2::pair\20std::__2::__copy_trivial::operator\28\29\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +5460:std::__2::pair::pair\5babi:nn180100\5d\28char\20const*&&\2c\20char*&&\29 +5461:std::__2::pair>::~pair\28\29 +5462:std::__2::pair\20std::__2::__unwrap_and_dispatch\5babi:ne180100\5d\2c\20std::__2::__copy_trivial>\2c\20SkString*\2c\20SkString*\2c\20SkString*\2c\200>\28SkString*\2c\20SkString*\2c\20SkString*\29 +5463:std::__2::pair>::~pair\28\29 +5464:std::__2::ostreambuf_iterator>::operator=\5babi:nn180100\5d\28wchar_t\29 +5465:std::__2::optional>\20impeller::TRect::MakePointBounds*>\28impeller::TPoint*\2c\20impeller::TPoint*\29 +5466:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28flutter::DlPaint&\29 +5467:std::__2::optional&\20std::__2::optional::operator=\5babi:ne180100\5d\28SkPaint\20const&\29 +5468:std::__2::optional::value\5babi:ne180100\5d\28\29\20& +5469:std::__2::numpunct::~numpunct\28\29 +5470:std::__2::numpunct::~numpunct\28\29 +5471:std::__2::num_put>>\20const&\20std::__2::use_facet\5babi:nn180100\5d>>>\28std::__2::locale\20const&\29 +5472:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +5473:std::__2::num_get>>\20const&\20std::__2::use_facet\5babi:nn180100\5d>>>\28std::__2::locale\20const&\29 +5474:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20int&\29\20const +5475:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +5476:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +5477:std::__2::moneypunct::do_negative_sign\28\29\20const +5478:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +5479:std::__2::moneypunct\20const&\20std::__2::use_facet\5babi:nn180100\5d>\28std::__2::locale\20const&\29 +5480:std::__2::moneypunct::do_negative_sign\28\29\20const +5481:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20wchar_t*&\2c\20wchar_t*\29 +5482:std::__2::money_get>>::__do_get\28std::__2::istreambuf_iterator>&\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::locale\20const&\2c\20unsigned\20int\2c\20unsigned\20int&\2c\20bool&\2c\20std::__2::ctype\20const&\2c\20std::__2::unique_ptr&\2c\20char*&\2c\20char*\29 +5483:std::__2::locale::operator=\28std::__2::locale\20const&\29 +5484:std::__2::locale::facet**\20std::__2::__construct_at\5babi:nn180100\5d\28std::__2::locale::facet**\29 +5485:std::__2::locale::__imp::~__imp\28\29 +5486:std::__2::locale::__imp::release\28\29 +5487:std::__2::list>::pop_front\28\29 +5488:std::__2::iterator_traits\2c\20std::__2::allocator>\20const*>::difference_type\20std::__2::distance\5babi:nn180100\5d\2c\20std::__2::allocator>\20const*>\28std::__2::basic_string\2c\20std::__2::allocator>\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const*\29 +5489:std::__2::iterator_traits::difference_type\20std::__2::distance\5babi:nn180100\5d\28char*\2c\20char*\29 +5490:std::__2::iterator_traits::difference_type\20std::__2::__distance\5babi:nn180100\5d\28char*\2c\20char*\2c\20std::__2::random_access_iterator_tag\29 +5491:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +5492:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +5493:std::__2::istreambuf_iterator>::operator++\5babi:nn180100\5d\28int\29 +5494:std::__2::istreambuf_iterator>::__test_for_eof\5babi:nn180100\5d\28\29\20const +5495:std::__2::ios_base::width\5babi:nn180100\5d\28long\29 +5496:std::__2::ios_base::clear\28unsigned\20int\29 +5497:std::__2::ios_base::__call_callbacks\28std::__2::ios_base::event\29 +5498:std::__2::function::operator\28\29\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29\20const +5499:std::__2::function::operator\28\29\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29\20const +5500:std::__2::function::operator\28\29\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29\20const +5501:std::__2::enable_if::type\20skgpu::tess::PatchWriter\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\294>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\298>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2964>\2c\20skgpu::tess::Optional<\28skgpu::tess::PatchAttribs\2932>\2c\20skgpu::tess::ReplicateLineEndPoints\2c\20skgpu::tess::TrackJoinControlPoints>::writeDeferredStrokePatch\28\29 +5502:std::__2::enable_if>::value\2c\20SkRuntimeEffectBuilder::BuilderUniform&>::type\20SkRuntimeEffectBuilder::BuilderUniform::operator=>\28std::__2::array\20const&\29 +5503:std::__2::enable_if::value\2c\20SkRuntimeEffectBuilder::BuilderUniform&>::type\20SkRuntimeEffectBuilder::BuilderUniform::operator=\28float\20const&\29 +5504:std::__2::enable_if\2c\20float>::type\20impeller::saturated::AverageScalar\28float\2c\20float\29 +5505:std::__2::enable_if>::value\20&&\20sizeof\20\28skia::textlayout::SkRange\29\20!=\204\2c\20unsigned\20int>::type\20SkGoodHash::operator\28\29>\28skia::textlayout::SkRange\20const&\29\20const +5506:std::__2::enable_if::value\20&&\20sizeof\20\28bool\29\20!=\204\2c\20unsigned\20int>::type\20SkGoodHash::operator\28\29\28bool\20const&\29\20const +5507:std::__2::enable_if\2c\20int>::type\20impeller::saturated::Add\28int\2c\20int\29 +5508:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:nn180100\5d\28char&\2c\20char&\29 +5509:std::__2::enable_if::value\20&&\20is_move_assignable::value\2c\20void>::type\20std::__2::swap\5babi:ne180100\5d\28SkBitmap&\2c\20SkBitmap&\29 +5510:std::__2::deque>::back\28\29 +5511:std::__2::deque>::__add_back_capacity\28\29 +5512:std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::_EnableIfConvertible::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot>::type\20std::__2::default_delete::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot>\28skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot*\29\20const +5513:std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot>::type\20std::__2::default_delete>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot>\28skia_private::THashTable>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair\2c\20std::__2::basic_string_view>\2c\20skia_private::THashMap>\2c\20SkSL::IntrinsicKind\2c\20SkGoodHash>::Pair>::Slot*\29\20const +5514:std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>::type\20std::__2::default_delete\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot>\28skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot*\29\20const +5515:std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot>::type\20std::__2::default_delete\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot>\28skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot*\29\20const +5516:std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot>::type\20std::__2::default_delete>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot>\28skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Slot*\29\20const +5517:std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::_EnableIfConvertible::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot>::type\20std::__2::default_delete::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot>\28skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot*\29\20const +5518:std::__2::default_delete\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d>::_EnableIfConvertible\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot>::type\20std::__2::default_delete\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot\20\5b\5d>::operator\28\29\5babi:ne180100\5d\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot>\28skia_private::THashTable\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot*\29\20const +5519:std::__2::default_delete\20\5b\5d>::_EnableIfConvertible>::type\20std::__2::default_delete\20\5b\5d>::operator\28\29\5babi:ne180100\5d>\28sk_sp*\29\20const +5520:std::__2::default_delete::_EnableIfConvertible::type\20std::__2::default_delete::operator\28\29\5babi:ne180100\5d\28GrGLCaps::ColorTypeInfo*\29\20const +5521:std::__2::ctype::~ctype\28\29 +5522:std::__2::codecvt::~codecvt\28\29 +5523:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +5524:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char32_t\20const*\2c\20char32_t\20const*\2c\20char32_t\20const*&\2c\20char8_t*\2c\20char8_t*\2c\20char8_t*&\29\20const +5525:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20unsigned\20long\29\20const +5526:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20char8_t\20const*&\2c\20char32_t*\2c\20char32_t*\2c\20char32_t*&\29\20const +5527:std::__2::codecvt::do_out\28__mbstate_t&\2c\20char16_t\20const*\2c\20char16_t\20const*\2c\20char16_t\20const*&\2c\20char8_t*\2c\20char8_t*\2c\20char8_t*&\29\20const +5528:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20unsigned\20long\29\20const +5529:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char8_t\20const*\2c\20char8_t\20const*\2c\20char8_t\20const*&\2c\20char16_t*\2c\20char16_t*\2c\20char16_t*&\29\20const +5530:std::__2::char_traits::eq_int_type\5babi:nn180100\5d\28int\2c\20int\29 +5531:std::__2::char_traits::not_eof\5babi:nn180100\5d\28int\29 +5532:std::__2::char_traits::find\5babi:ne180100\5d\28char\20const*\2c\20unsigned\20long\2c\20char\20const&\29 +5533:std::__2::basic_stringstream\2c\20std::__2::allocator>::basic_stringstream\5babi:ne180100\5d\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29 +5534:std::__2::basic_stringbuf\2c\20std::__2::allocator>::basic_stringbuf\5babi:ne180100\5d\28unsigned\20int\29 +5535:std::__2::basic_string_view>::substr\5babi:ne180100\5d\28unsigned\20long\2c\20unsigned\20long\29\20const +5536:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20wchar_t\29 +5537:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28wchar_t\20const*\2c\20wchar_t\20const*\29 +5538:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_without_replace\5babi:nn180100\5d\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29 +5539:std::__2::basic_string\2c\20std::__2::allocator>::__grow_by_and_replace\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20wchar_t\20const*\29 +5540:std::__2::basic_string\2c\20std::__2::allocator>::insert\28unsigned\20long\2c\20char\20const*\2c\20unsigned\20long\29 +5541:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:nn180100\5d\28unsigned\20long\2c\20char\29 +5542:std::__2::basic_string\2c\20std::__2::allocator>::basic_string\5babi:ne180100\5d\28std::__2::__uninitialized_size_tag\2c\20unsigned\20long\2c\20std::__2::allocator\20const&\29 +5543:std::__2::basic_string\2c\20std::__2::allocator>::__null_terminate_at\5babi:nn180100\5d\28char*\2c\20unsigned\20long\29 +5544:std::__2::basic_string\2c\20std::__2::allocator>::__init\28unsigned\20long\2c\20char\29 +5545:std::__2::basic_string\2c\20std::__2::allocator>&\20std::__2::basic_string\2c\20std::__2::allocator>::operator+=>\2c\200>\28std::__2::basic_string_view>\20const&\29 +5546:std::__2::basic_string\2c\20std::__2::allocator>&\20skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::emplace_back\28char\20const*&&\29 +5547:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +5548:std::__2::basic_streambuf>::sputc\5babi:nn180100\5d\28char\29 +5549:std::__2::basic_streambuf>::sgetc\5babi:nn180100\5d\28\29 +5550:std::__2::basic_streambuf>::sbumpc\5babi:nn180100\5d\28\29 +5551:std::__2::basic_streambuf>::pubsync\5babi:nn180100\5d\28\29 +5552:std::__2::basic_streambuf>::basic_streambuf\28\29 +5553:std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29_17378 +5554:std::__2::basic_ostream>::~basic_ostream\28\29_17261 +5555:std::__2::basic_ostream>::operator<<\28int\29 +5556:std::__2::basic_ostream>::operator<<\28float\29 +5557:std::__2::basic_ostream>&\20std::__2::__put_character_sequence\5babi:ne180100\5d>\28std::__2::basic_ostream>&\2c\20char\20const*\2c\20unsigned\20long\29 +5558:std::__2::basic_istream>::~basic_istream\28\29_17232 +5559:std::__2::basic_iostream>::basic_iostream\5babi:ne180100\5d\28std::__2::basic_streambuf>*\29 +5560:std::__2::basic_ios>::widen\5babi:ne180100\5d\28char\29\20const +5561:std::__2::basic_ios>::init\5babi:ne180100\5d\28std::__2::basic_streambuf>*\29 +5562:std::__2::basic_ios>::imbue\5babi:ne180100\5d\28std::__2::locale\20const&\29 +5563:std::__2::basic_ios>::fill\5babi:nn180100\5d\28\29\20const +5564:std::__2::allocator_traits>::deallocate\5babi:nn180100\5d\28std::__2::__sso_allocator&\2c\20std::__2::locale::facet**\2c\20unsigned\20long\29 +5565:std::__2::allocator::allocate\5babi:nn180100\5d\28unsigned\20long\29 +5566:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +5567:std::__2::allocator::allocate\5babi:ne180100\5d\28unsigned\20long\29 +5568:std::__2::__wrap_iter\20std::__2::vector>::insert\2c\200>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\29 +5569:std::__2::__unique_if\2c\20std::__2::allocator>>::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>>\28std::__2::basic_string\2c\20std::__2::allocator>&&\29 +5570:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>>\28SkSL::Position&\2c\20std::__2::unique_ptr>&&\2c\20std::__2::unique_ptr>&&\2c\20std::__2::unique_ptr>&&\29 +5571:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28\29 +5572:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28\29 +5573:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +5574:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +5575:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +5576:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +5577:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +5578:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +5579:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +5580:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>>\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>&&\29 +5581:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d\28SkSL::Position&\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray&&\29 +5582:std::__2::__unique_if::__unique_single\20std::__2::make_unique\5babi:ne180100\5d>\2c\20true>\2c\20SkSL::Block::Kind&\2c\20std::__2::unique_ptr>>\28SkSL::Position&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&&\2c\20SkSL::Block::Kind&\2c\20std::__2::unique_ptr>&&\29 +5583:std::__2::__tuple_impl\2c\20std::__2::locale::id::__get\28\29::$_0&&>::__tuple_impl\5babi:nn180100\5d<0ul\2c\20std::__2::locale::id::__get\28\29::$_0&&\2c\20std::__2::locale::id::__get\28\29::$_0>\28std::__2::__tuple_indices<0ul>\2c\20std::__2::__tuple_types\2c\20std::__2::__tuple_indices<...>\2c\20std::__2::__tuple_types<>\2c\20std::__2::locale::id::__get\28\29::$_0&&\29 +5584:std::__2::__time_put::__time_put\5babi:nn180100\5d\28\29 +5585:std::__2::__time_put::__do_put\28char*\2c\20char*&\2c\20tm\20const*\2c\20char\2c\20char\29\20const +5586:std::__2::__throw_length_error\5babi:ne180100\5d\28char\20const*\29 +5587:std::__2::__split_buffer&>::~__split_buffer\28\29 +5588:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +5589:std::__2::__split_buffer>::pop_back\5babi:ne180100\5d\28\29 +5590:std::__2::__split_buffer&>::push_back\28skia::textlayout::OneLineShaper::RunBlock*&&\29 +5591:std::__2::__split_buffer&>::~__split_buffer\28\29 +5592:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +5593:std::__2::__split_buffer&>::~__split_buffer\28\29 +5594:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +5595:std::__2::__split_buffer&>::~__split_buffer\28\29 +5596:std::__2::__split_buffer&>::~__split_buffer\28\29 +5597:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +5598:std::__2::__split_buffer&>::~__split_buffer\28\29 +5599:std::__2::__split_buffer&>::__split_buffer\28unsigned\20long\2c\20unsigned\20long\2c\20std::__2::allocator&\29 +5600:std::__2::__split_buffer&>::~__split_buffer\28\29 +5601:std::__2::__shared_count::__add_shared\5babi:nn180100\5d\28\29 +5602:std::__2::__optional_move_base::__optional_move_base\5babi:ne180100\5d\28std::__2::__optional_move_base&&\29 +5603:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +5604:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +5605:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +5606:std::__2::__optional_destruct_base::reset\5babi:ne180100\5d\28\29 +5607:std::__2::__optional_destruct_base::~__optional_destruct_base\5babi:ne180100\5d\28\29 +5608:std::__2::__optional_copy_base::__optional_copy_base\5babi:ne180100\5d\28std::__2::__optional_copy_base\20const&\29 +5609:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +5610:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20std::__2::locale\20const&\29 +5611:std::__2::__num_put::__widen_and_group_int\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +5612:std::__2::__num_put::__widen_and_group_float\28char*\2c\20char*\2c\20char*\2c\20char*\2c\20char*&\2c\20char*&\2c\20std::__2::locale\20const&\29 +5613:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20wchar_t&\2c\20wchar_t&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +5614:std::__2::__money_put::__format\28wchar_t*\2c\20wchar_t*&\2c\20wchar_t*&\2c\20unsigned\20int\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20wchar_t\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +5615:std::__2::__money_put::__gather_info\28bool\2c\20bool\2c\20std::__2::locale\20const&\2c\20std::__2::money_base::pattern&\2c\20char&\2c\20char&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\2c\20int&\29 +5616:std::__2::__money_put::__format\28char*\2c\20char*&\2c\20char*&\2c\20unsigned\20int\2c\20char\20const*\2c\20char\20const*\2c\20std::__2::ctype\20const&\2c\20bool\2c\20std::__2::money_base::pattern\20const&\2c\20char\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20int\29 +5617:std::__2::__libcpp_sscanf_l\28char\20const*\2c\20__locale_struct*\2c\20char\20const*\2c\20...\29 +5618:std::__2::__libcpp_mbrtowc_l\5babi:nn180100\5d\28wchar_t*\2c\20char\20const*\2c\20unsigned\20long\2c\20__mbstate_t*\2c\20__locale_struct*\29 +5619:std::__2::__libcpp_mb_cur_max_l\5babi:nn180100\5d\28__locale_struct*\29 +5620:std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__deallocate_node\28std::__2::__hash_node_base\2c\20void*>*>*\29 +5621:std::__2::__hash_table\2c\20std::__2::__unordered_map_hasher\2c\20std::__2::hash\2c\20std::__2::equal_to\2c\20true>\2c\20std::__2::__unordered_map_equal\2c\20std::__2::equal_to\2c\20std::__2::hash\2c\20true>\2c\20std::__2::allocator>>::__deallocate_node\28std::__2::__hash_node_base\2c\20void*>*>*\29 +5622:std::__2::__hash_table\2c\20std::__2::equal_to\2c\20std::__2::allocator>::__deallocate_node\28std::__2::__hash_node_base*>*\29 +5623:std::__2::__function::__value_func\2c\20sktext::gpu::RendererData\29>::operator\28\29\5babi:ne180100\5d\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29\20const +5624:std::__2::__function::__value_func\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::operator\28\29\5babi:ne180100\5d\28skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20float&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20SkPoint&&\2c\20SkPoint&&\2c\20skia::textlayout::InternalLineMetrics&&\2c\20bool&&\29\20const +5625:std::__2::__function::__value_func\29>::operator\28\29\5babi:ne180100\5d\28skia::textlayout::Block&&\2c\20skia_private::TArray&&\29\20const +5626:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29 +5627:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +5628:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +5629:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29 +5630:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +5631:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +5632:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29 +5633:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +5634:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +5635:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy_deallocate\28\29 +5636:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::destroy\28\29 +5637:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29 +5638:std::__2::__forward_list_base\2c\20std::__2::allocator>>::clear\28\29 +5639:std::__2::__exception_guard_exceptions>::__destroy_vector>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +5640:std::__2::__exception_guard_exceptions>::__destroy_vector>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +5641:std::__2::__exception_guard_exceptions\2c\20SkString*>>::~__exception_guard_exceptions\5babi:ne180100\5d\28\29 +5642:std::__2::__constexpr_wcslen\5babi:nn180100\5d\28wchar_t\20const*\29 +5643:std::__2::__compressed_pair_elem\2c\20int\29::$_0\2c\200\2c\20false>::__compressed_pair_elem\5babi:ne180100\5d\2c\20int\29::$_0\20const&\2c\200ul>\28std::__2::piecewise_construct_t\2c\20std::__2::tuple\2c\20int\29::$_0\20const&>\2c\20std::__2::__tuple_indices<0ul>\29 +5644:std::__2::__compressed_pair_elem::__compressed_pair_elem\5babi:ne180100\5d\28std::__2::piecewise_construct_t\2c\20std::__2::tuple\2c\20std::__2::__tuple_indices<0ul>\29 +5645:std::__2::__compressed_pair::__compressed_pair\5babi:nn180100\5d\28unsigned\20char*&\2c\20void\20\28*&&\29\28void*\29\29 +5646:std::__2::__call_once\28unsigned\20long\20volatile&\2c\20void*\2c\20void\20\28*\29\28void*\29\29 +5647:std::__2::__allocation_result>::pointer>\20std::__2::__allocate_at_least\5babi:nn180100\5d>\28std::__2::__sso_allocator&\2c\20unsigned\20long\29 +5648:srgb_to_hsl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +5649:spancpy\28SkSpan\2c\20SkSpan\29 +5650:sort_r_swap_blocks\28char*\2c\20unsigned\20long\2c\20unsigned\20long\29 +5651:sort_increasing_Y\28SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +5652:sort_edges\28SkEdge**\2c\20int\2c\20SkEdge**\29 +5653:sort_as_rect\28skvx::Vec<4\2c\20float>\20const&\29 +5654:small_blur\28double\2c\20double\2c\20SkMask\20const&\2c\20SkMaskBuilder*\29::$_0::operator\28\29\28SkGaussFilter\20const&\2c\20unsigned\20short*\29\20const +5655:skvx::Vec<8\2c\20unsigned\20short>\20skvx::operator&<8\2c\20unsigned\20short>\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +5656:skvx::Vec<8\2c\20unsigned\20int>\20skvx::cast\28skvx::Vec<8\2c\20unsigned\20short>\20const&\29 +5657:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator>><4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20int\29 +5658:skvx::Vec<4\2c\20unsigned\20short>\20skvx::operator<<<4\2c\20unsigned\20short>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\2c\20int\29 +5659:skvx::Vec<4\2c\20unsigned\20int>\20skvx::operator>><4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20int\29 +5660:skvx::Vec<4\2c\20unsigned\20int>\20skvx::operator*<4\2c\20unsigned\20int>\28skvx::Vec<4\2c\20unsigned\20int>\20const&\2c\20skvx::Vec<4\2c\20unsigned\20int>\20const&\29 +5661:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator!=<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +5662:skvx::Vec<4\2c\20skvx::Mask::type>\20skvx::operator!=<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5663:skvx::Vec<4\2c\20int>\20skvx::operator^<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +5664:skvx::Vec<4\2c\20int>\20skvx::operator>><4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20int\29 +5665:skvx::Vec<4\2c\20int>\20skvx::operator<<<4\2c\20int>\28skvx::Vec<4\2c\20int>\20const&\2c\20int\29 +5666:skvx::Vec<4\2c\20float>\20skvx::sqrt<4>\28skvx::Vec<4\2c\20float>\20const&\29 +5667:skvx::Vec<4\2c\20float>\20skvx::operator/<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +5668:skvx::Vec<4\2c\20float>\20skvx::operator/<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5669:skvx::Vec<4\2c\20float>\20skvx::operator-<4\2c\20float\2c\20float\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20float\29 +5670:skvx::Vec<4\2c\20float>\20skvx::operator-<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5671:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20int\2c\20void>\28skvx::Vec<4\2c\20float>\20const&\2c\20int\29 +5672:skvx::Vec<4\2c\20float>\20skvx::operator*<4\2c\20float\2c\20int\2c\20void>\28int\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5673:skvx::Vec<4\2c\20float>\20skvx::min<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5674:skvx::Vec<4\2c\20float>\20skvx::min<4\2c\20float>\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.6378\29 +5675:skvx::Vec<4\2c\20float>\20skvx::max<4\2c\20float\2c\20float\2c\20void>\28float\2c\20skvx::Vec<4\2c\20float>\20const&\29 +5676:skvx::Vec<4\2c\20float>\20skvx::from_half<4>\28skvx::Vec<4\2c\20unsigned\20short>\20const&\29 +5677:skvx::Vec<4\2c\20float>&\20skvx::operator*=<4\2c\20float>\28skvx::Vec<4\2c\20float>&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20\28.7285\29 +5678:skvx::ScaledDividerU32::divide\28skvx::Vec<4\2c\20unsigned\20int>\20const&\29\20const +5679:skvx::ScaledDividerU32::ScaledDividerU32\28unsigned\20int\29 +5680:sktext::gpu::build_distance_adjust_table\28float\29 +5681:sktext::gpu::VertexFiller::CanUseDirect\28SkMatrix\20const&\2c\20SkMatrix\20const&\29 +5682:sktext::gpu::TextBlobRedrawCoordinator::internalRemove\28sktext::gpu::TextBlob*\29 +5683:sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry::findBlobIndex\28sktext::gpu::TextBlob::Key\20const&\29\20const +5684:sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry::BlobIDCacheEntry\28sktext::gpu::TextBlobRedrawCoordinator::BlobIDCacheEntry&&\29 +5685:sktext::gpu::TextBlob::~TextBlob\28\29 +5686:sktext::gpu::SubRunControl::isSDFT\28float\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +5687:sktext::gpu::SubRunContainer::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20SkRefCnt\20const*\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +5688:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_2::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +5689:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29::$_0::operator\28\29\28SkZip\2c\20skgpu::MaskFormat\29\20const +5690:sktext::gpu::SubRunContainer::MakeInAlloc\28sktext::GlyphRunList\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkStrikeDeviceInfo\2c\20sktext::StrikeForGPUCacheInterface*\2c\20sktext::gpu::SubRunAllocator*\2c\20sktext::gpu::SubRunContainer::SubRunCreationBehavior\2c\20char\20const*\29 +5691:sktext::gpu::SubRunContainer::EstimateAllocSize\28sktext::GlyphRunList\20const&\29 +5692:sktext::gpu::SubRunAllocator::SubRunAllocator\28int\29 +5693:sktext::gpu::StrikeCache::internalPurge\28unsigned\20long\29 +5694:sktext::gpu::StrikeCache::freeAll\28\29 +5695:sktext::gpu::SlugImpl::~SlugImpl\28\29 +5696:sktext::gpu::GlyphVector::packedGlyphIDToGlyph\28sktext::gpu::StrikeCache*\29 +5697:sktext::gpu::AtlasSubRun::~AtlasSubRun\28\29 +5698:sktext::SkStrikePromise::resetStrike\28\29 +5699:sktext::GlyphRunList::maxGlyphRunSize\28\29\20const +5700:sktext::GlyphRunBuilder::~GlyphRunBuilder\28\29 +5701:sktext::GlyphRunBuilder::makeGlyphRunList\28sktext::GlyphRun\20const&\2c\20SkPaint\20const&\2c\20SkPoint\29 +5702:sktext::GlyphRunBuilder::blobToGlyphRunList\28SkTextBlob\20const&\2c\20SkPoint\29 +5703:sktext::GlyphRun*\20std::__2::construct_at\5babi:ne180100\5d&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20sktext::GlyphRun*>\28sktext::GlyphRun*\2c\20SkFont\20const&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\2c\20SkSpan&\29 +5704:skstd::to_string\28float\29 +5705:skip_string +5706:skip_procedure +5707:skip_comment +5708:skif::compatible_sampling\28SkSamplingOptions\20const&\2c\20bool\2c\20SkSamplingOptions*\2c\20bool\29 +5709:skif::\28anonymous\20namespace\29::decompose_transform\28SkMatrix\20const&\2c\20SkPoint\2c\20SkMatrix*\2c\20SkMatrix*\29 +5710:skif::\28anonymous\20namespace\29::are_axes_nearly_integer_aligned\28skif::LayerSpace\20const&\2c\20skif::LayerSpace*\29 +5711:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +5712:skif::Mapping::adjustLayerSpace\28SkM44\20const&\29 +5713:skif::LayerSpace\20skif::Mapping::paramToLayer\28skif::ParameterSpace\20const&\29\20const +5714:skif::LayerSpace::inset\28skif::LayerSpace\20const&\29 +5715:skif::LayerSpace::RectToRect\28skif::LayerSpace\20const&\2c\20skif::LayerSpace\20const&\29 +5716:skif::FilterResult::draw\28skif::Context\20const&\2c\20SkDevice*\2c\20SkBlender\20const*\29\20const +5717:skif::FilterResult::Builder::drawShader\28sk_sp\2c\20skif::LayerSpace\20const&\2c\20bool\29\20const +5718:skif::FilterResult::Builder::createInputShaders\28skif::LayerSpace\20const&\2c\20bool\29 +5719:skif::Context::Context\28sk_sp\2c\20skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20skif::FilterResult\20const&\2c\20SkColorSpace\20const*\2c\20skif::Stats*\29 +5720:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::uncheckedSet\28std::__2::basic_string_view>&&\29 +5721:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::set\28std::__2::basic_string_view>\29 +5722:skia_private::THashTable>\2c\20std::__2::basic_string_view>\2c\20skia_private::THashSet>\2c\20SkGoodHash>::Traits>::resize\28int\29 +5723:skia_private::THashTable::uncheckedSet\28sktext::gpu::Glyph*&&\29 +5724:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5725:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5726:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::removeIfExists\28unsigned\20int\20const&\29 +5727:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::Slot::emplace\28skia_private::THashMap::Pair&&\2c\20unsigned\20int\29 +5728:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5729:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::reset\28\29 +5730:skia_private::THashTable::Pair\2c\20unsigned\20int\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5731:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\29 +5732:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot::reset\28\29 +5733:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair&&\2c\20unsigned\20int\29 +5734:skia_private::THashTable\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair\2c\20skia::textlayout::OneLineShaper::FontKey\2c\20skia_private::THashMap\2c\20skia::textlayout::OneLineShaper::FontKey::Hasher>::Pair>::Hash\28skia::textlayout::OneLineShaper::FontKey\20const&\29 +5735:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair&&\29 +5736:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot::reset\28\29 +5737:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair&&\2c\20unsigned\20int\29 +5738:skia_private::THashTable\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair\2c\20skia::textlayout::FontCollection::FamilyKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>>\2c\20skia::textlayout::FontCollection::FamilyKey::Hasher>::Pair>::Hash\28skia::textlayout::FontCollection::FamilyKey\20const&\29 +5739:skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::uncheckedSet\28skia_private::THashMap>::Pair&&\29 +5740:skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::reset\28\29 +5741:skia_private::THashTable>::Pair\2c\20skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\2c\20skia_private::THashMap>::Pair>::Hash\28skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\20const&\29 +5742:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5743:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot::reset\28\29 +5744:skia_private::THashTable::Pair\2c\20skgpu::UniqueKey\2c\20skia_private::THashMap::Pair>::Slot::emplace\28skia_private::THashMap::Pair&&\2c\20unsigned\20int\29 +5745:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\29 +5746:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5747:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20int\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5748:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\29 +5749:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5750:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5751:skia_private::THashTable\2c\20SkGoodHash>::Pair\2c\20SkString\2c\20skia_private::THashMap\2c\20SkGoodHash>::Pair>::Hash\28SkString\20const&\29 +5752:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +5753:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5754:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5755:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5756:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5757:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5758:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5759:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::firstPopulatedSlot\28\29\20const +5760:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::Iter>::operator++\28\29 +5761:skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>::THashTable\28skia_private::THashTable::Pair\2c\20SkSL::Variable\20const*\2c\20skia_private::THashMap::Pair>\20const&\29 +5762:skia_private::THashTable::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5763:skia_private::THashTable::Pair\2c\20SkSL::SymbolTable::SymbolKey\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5764:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5765:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::set\28skia_private::THashMap::Pair\29 +5766:skia_private::THashTable::Pair\2c\20SkSL::IRNode\20const*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5767:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair&&\29 +5768:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot::reset\28\29 +5769:skia_private::THashTable\2c\20false>\2c\20SkGoodHash>::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5770:skia_private::THashTable::Pair\2c\20SkSL::FunctionDeclaration\20const*\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5771:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair&&\29 +5772:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot::reset\28\29 +5773:skia_private::THashTable\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair\2c\20SkSL::Analysis::SpecializedFunctionKey\2c\20skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkSL::Analysis::SpecializedFunctionKey::Hash>::Pair&&\2c\20unsigned\20int\29 +5774:skia_private::THashTable::Pair\2c\20SkSL::Analysis::SpecializedCallKey\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5775:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::uncheckedSet\28skia_private::THashMap::Pair&&\29 +5776:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot::reset\28\29 +5777:skia_private::THashTable::Pair\2c\20SkPath\2c\20skia_private::THashMap::Pair>::Slot::emplace\28skia_private::THashMap::Pair&&\2c\20unsigned\20int\29 +5778:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::uncheckedSet\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +5779:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::resize\28int\29 +5780:skia_private::THashTable>\2c\20SkGoodHash>::Pair\2c\20SkImageFilter\20const*\2c\20skia_private::THashMap>\2c\20SkGoodHash>::Pair>::Slot::emplace\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\2c\20unsigned\20int\29 +5781:skia_private::THashTable\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::uncheckedSet\28skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair&&\29 +5782:skia_private::THashTable\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot::reset\28\29 +5783:skia_private::THashTable\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair\2c\20SkIcuBreakIteratorCache::Request\2c\20skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair>::Slot::emplace\28skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::Pair&&\2c\20unsigned\20int\29 +5784:skia_private::THashTable::Pair\2c\20GrSurfaceProxy*\2c\20skia_private::THashMap::Pair>::resize\28int\29 +5785:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28skgpu::ganesh::SmallPathShapeData*&&\29 +5786:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5787:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +5788:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::uncheckedSet\28sk_sp&&\29 +5789:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::resize\28int\29 +5790:skia_private::THashTable\2c\20SkDescriptor\20const&\2c\20sktext::gpu::StrikeCache::HashTraits>::Slot::emplace\28sk_sp&&\2c\20unsigned\20int\29 +5791:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::uncheckedSet\28sk_sp&&\29 +5792:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::resize\28int\29 +5793:skia_private::THashTable\2c\20SkDescriptor\2c\20SkStrikeCache::StrikeTraits>::Slot::emplace\28sk_sp&&\2c\20unsigned\20int\29 +5794:skia_private::THashTable::Traits>::set\28int\29 +5795:skia_private::THashTable::Traits>::THashTable\28skia_private::THashTable::Traits>&&\29 +5796:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::uncheckedSet\28\28anonymous\20namespace\29::CacheImpl::Value*&&\29 +5797:skia_private::THashTable<\28anonymous\20namespace\29::CacheImpl::Value*\2c\20SkImageFilterCacheKey\2c\20SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::AdaptedTraits>::resize\28int\29 +5798:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +5799:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +5800:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::findOrNull\28skgpu::ScratchKey\20const&\29\20const +5801:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::uncheckedSet\28SkTMultiMap::ValueList*&&\29 +5802:skia_private::THashTable::ValueList*\2c\20skgpu::ScratchKey\2c\20SkTDynamicHash::ValueList\2c\20skgpu::ScratchKey\2c\20SkTMultiMap::ValueList>::AdaptedTraits>::resize\28int\29 +5803:skia_private::THashTable::Traits>::uncheckedSet\28SkSL::Variable\20const*&&\29 +5804:skia_private::THashTable::Traits>::resize\28int\29 +5805:skia_private::THashTable::Traits>::uncheckedSet\28SkSL::FunctionDeclaration\20const*&&\29 +5806:skia_private::THashTable::uncheckedSet\28SkResourceCache::Rec*&&\29 +5807:skia_private::THashTable::resize\28int\29 +5808:skia_private::THashTable::find\28SkResourceCache::Key\20const&\29\20const +5809:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::uncheckedSet\28SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*&&\29 +5810:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +5811:skia_private::THashTable>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\2c\20skia::textlayout::ParagraphCacheKey\2c\20SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Traits>::find\28skia::textlayout::ParagraphCacheKey\20const&\29\20const +5812:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::uncheckedSet\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*&&\29 +5813:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::resize\28int\29 +5814:skia_private::THashTable>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\2c\20GrProgramDesc\2c\20SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Traits>::find\28GrProgramDesc\20const&\29\20const +5815:skia_private::THashTable::uncheckedSet\28SkGlyphDigest&&\29 +5816:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrThreadSafeCache::Entry*&&\29 +5817:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5818:skia_private::THashTable::AdaptedTraits>::removeIfExists\28skgpu::UniqueKey\20const&\29 +5819:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrTextureProxy*&&\29 +5820:skia_private::THashTable::AdaptedTraits>::set\28GrTextureProxy*\29 +5821:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5822:skia_private::THashTable::AdaptedTraits>::findOrNull\28skgpu::UniqueKey\20const&\29\20const +5823:skia_private::THashTable::AdaptedTraits>::uncheckedSet\28GrGpuResource*&&\29 +5824:skia_private::THashTable::AdaptedTraits>::resize\28int\29 +5825:skia_private::THashTable::AdaptedTraits>::findOrNull\28skgpu::UniqueKey\20const&\29\20const +5826:skia_private::THashTable::Traits>::uncheckedSet\28FT_Opaque_Paint_&&\29 +5827:skia_private::THashTable::Traits>::resize\28int\29 +5828:skia_private::THashSet::contains\28int\20const&\29\20const +5829:skia_private::THashSet::contains\28FT_Opaque_Paint_\20const&\29\20const +5830:skia_private::THashSet::add\28FT_Opaque_Paint_\29 +5831:skia_private::THashMap::find\28unsigned\20int\20const&\29\20const +5832:skia_private::THashMap\2c\20SkGoodHash>::find\28int\20const&\29\20const +5833:skia_private::THashMap\2c\20std::__2::allocator>\2c\20SkGoodHash>::set\28SkSL::Variable\20const*\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +5834:skia_private::THashMap::operator\5b\5d\28SkSL::Variable\20const*\20const&\29 +5835:skia_private::THashMap::operator\5b\5d\28SkSL::Symbol\20const*\20const&\29 +5836:skia_private::THashMap\2c\20false>\2c\20SkGoodHash>::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +5837:skia_private::THashMap::set\28SkSL::FunctionDeclaration\20const*\2c\20int\29 +5838:skia_private::THashMap::operator\5b\5d\28SkSL::FunctionDeclaration\20const*\20const&\29 +5839:skia_private::THashMap::operator\5b\5d\28SkSL::Analysis::SpecializedCallKey\20const&\29 +5840:skia_private::THashMap::find\28SkSL::Analysis::SpecializedCallKey\20const&\29\20const +5841:skia_private::THashMap>\2c\20SkGoodHash>::remove\28SkImageFilter\20const*\20const&\29 +5842:skia_private::THashMap>\2c\20SkGoodHash>::Pair::Pair\28skia_private::THashMap>\2c\20SkGoodHash>::Pair&&\29 +5843:skia_private::THashMap\2c\20SkIcuBreakIteratorCache::Request::Hash>::find\28SkIcuBreakIteratorCache::Request\20const&\29\20const +5844:skia_private::THashMap::find\28GrSurfaceProxy*\20const&\29\20const +5845:skia_private::TArray::push_back_raw\28int\29 +5846:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5847:skia_private::TArray::push_back\28unsigned\20int\20const&\29 +5848:skia_private::TArray::operator=\28skia_private::TArray\20const&\29 +5849:skia_private::TArray::Allocate\28int\2c\20double\29 +5850:skia_private::TArray>\2c\20true>::~TArray\28\29 +5851:skia_private::TArray>\2c\20true>::clear\28\29 +5852:skia_private::TArray>\2c\20true>::operator=\28skia_private::TArray>\2c\20true>&&\29 +5853:skia_private::TArray>\2c\20true>::~TArray\28\29 +5854:skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +5855:skia_private::TArray\2c\20std::__2::allocator>\2c\20false>::checkRealloc\28int\2c\20double\29 +5856:skia_private::TArray\2c\20true>::preallocateNewData\28int\2c\20double\29 +5857:skia_private::TArray\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +5858:skia_private::TArray\2c\20false>::move\28void*\29 +5859:skia_private::TArray\2c\20false>::TArray\28skia_private::TArray\2c\20false>&&\29 +5860:skia_private::TArray\2c\20false>::Allocate\28int\2c\20double\29 +5861:skia_private::TArray::destroyAll\28\29 +5862:skia_private::TArray::destroyAll\28\29 +5863:skia_private::TArray\2c\20false>::~TArray\28\29 +5864:skia_private::TArray::~TArray\28\29 +5865:skia_private::TArray::destroyAll\28\29 +5866:skia_private::TArray::copy\28skia::textlayout::Run\20const*\29 +5867:skia_private::TArray::Allocate\28int\2c\20double\29 +5868:skia_private::TArray::destroyAll\28\29 +5869:skia_private::TArray::initData\28int\29 +5870:skia_private::TArray::destroyAll\28\29 +5871:skia_private::TArray::TArray\28skia_private::TArray&&\29 +5872:skia_private::TArray::Allocate\28int\2c\20double\29 +5873:skia_private::TArray::copy\28skia::textlayout::Cluster\20const*\29 +5874:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5875:skia_private::TArray::Allocate\28int\2c\20double\29 +5876:skia_private::TArray::initData\28int\29 +5877:skia_private::TArray::destroyAll\28\29 +5878:skia_private::TArray::TArray\28skia_private::TArray&&\29 +5879:skia_private::TArray::Allocate\28int\2c\20double\29 +5880:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5881:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5882:skia_private::TArray::push_back\28\29 +5883:skia_private::TArray::push_back\28\29 +5884:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5885:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5886:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5887:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5888:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5889:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5890:skia_private::TArray::destroyAll\28\29 +5891:skia_private::TArray::clear\28\29 +5892:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5893:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5894:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5895:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5896:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5897:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5898:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5899:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5900:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5901:skia_private::TArray::destroyAll\28\29 +5902:skia_private::TArray::clear\28\29 +5903:skia_private::TArray::Allocate\28int\2c\20double\29 +5904:skia_private::TArray::BufferFinishedMessage\2c\20false>::operator=\28skia_private::TArray::BufferFinishedMessage\2c\20false>&&\29 +5905:skia_private::TArray::BufferFinishedMessage\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +5906:skia_private::TArray::BufferFinishedMessage\2c\20false>::destroyAll\28\29 +5907:skia_private::TArray::BufferFinishedMessage\2c\20false>::clear\28\29 +5908:skia_private::TArray::Plane\2c\20false>::preallocateNewData\28int\2c\20double\29 +5909:skia_private::TArray::Plane\2c\20false>::installDataAndUpdateCapacity\28SkSpan\29 +5910:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +5911:skia_private::TArray\2c\20true>::~TArray\28\29 +5912:skia_private::TArray\2c\20true>::~TArray\28\29 +5913:skia_private::TArray\2c\20true>::preallocateNewData\28int\2c\20double\29 +5914:skia_private::TArray\2c\20true>::clear\28\29 +5915:skia_private::TArray::push_back_raw\28int\29 +5916:skia_private::TArray::push_back\28hb_feature_t&&\29 +5917:skia_private::TArray::resize_back\28int\29 +5918:skia_private::TArray::reset\28int\29 +5919:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5920:skia_private::TArray::initData\28int\29 +5921:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5922:skia_private::TArray<\28anonymous\20namespace\29::DrawAtlasOpImpl::Geometry\2c\20true>::checkRealloc\28int\2c\20double\29 +5923:skia_private::TArray<\28anonymous\20namespace\29::DefaultPathOp::PathData\2c\20true>::preallocateNewData\28int\2c\20double\29 +5924:skia_private::TArray<\28anonymous\20namespace\29::AAHairlineOp::PathData\2c\20true>::preallocateNewData\28int\2c\20double\29 +5925:skia_private::TArray<\28anonymous\20namespace\29::AAHairlineOp::PathData\2c\20true>::installDataAndUpdateCapacity\28SkSpan\29 +5926:skia_private::TArray::push_back_n\28int\2c\20SkUnicode::CodeUnitFlags\20const&\29 +5927:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5928:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5929:skia_private::TArray::destroyAll\28\29 +5930:skia_private::TArray::initData\28int\29 +5931:skia_private::TArray::TArray\28skia_private::TArray\20const&\29 +5932:skia_private::TArray\29::ReorderedArgument\2c\20false>::push_back\28SkSL::optimize_constructor_swizzle\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ConstructorCompound\20const&\2c\20skia_private::FixedArray<4\2c\20signed\20char>\29::ReorderedArgument&&\29 +5933:skia_private::TArray::reserve_exact\28int\29 +5934:skia_private::TArray::fromBack\28int\29 +5935:skia_private::TArray::TArray\28skia_private::TArray&&\29 +5936:skia_private::TArray::Allocate\28int\2c\20double\29 +5937:skia_private::TArray::push_back\28SkSL::Field&&\29 +5938:skia_private::TArray::initData\28int\29 +5939:skia_private::TArray::Allocate\28int\2c\20double\29 +5940:skia_private::TArray::~TArray\28\29 +5941:skia_private::TArray::destroyAll\28\29 +5942:skia_private::TArray\2c\20true>::push_back\28SkRGBA4f<\28SkAlphaType\292>&&\29 +5943:skia_private::TArray\2c\20true>::operator=\28skia_private::TArray\2c\20true>&&\29 +5944:skia_private::TArray\2c\20true>::checkRealloc\28int\2c\20double\29 +5945:skia_private::TArray::push_back\28SkPoint\20const&\29 +5946:skia_private::TArray::copy\28SkPoint\20const*\29 +5947:skia_private::TArray::~TArray\28\29 +5948:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5949:skia_private::TArray::destroyAll\28\29 +5950:skia_private::TArray::Allocate\28int\2c\20double\29 +5951:skia_private::TArray::~TArray\28\29 +5952:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5953:skia_private::TArray::destroyAll\28\29 +5954:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5955:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5956:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5957:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5958:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5959:skia_private::TArray::push_back\28\29 +5960:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5961:skia_private::TArray::push_back\28\29 +5962:skia_private::TArray::push_back_raw\28int\29 +5963:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5964:skia_private::TArray::~TArray\28\29 +5965:skia_private::TArray::operator=\28skia_private::TArray&&\29 +5966:skia_private::TArray::destroyAll\28\29 +5967:skia_private::TArray::clear\28\29 +5968:skia_private::TArray::Allocate\28int\2c\20double\29 +5969:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5970:skia_private::TArray::push_back\28\29 +5971:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5972:skia_private::TArray::pop_back\28\29 +5973:skia_private::TArray::checkRealloc\28int\2c\20double\29 +5974:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5975:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5976:skia_private::TArray::installDataAndUpdateCapacity\28SkSpan\29 +5977:skia_private::TArray::preallocateNewData\28int\2c\20double\29 +5978:skia_private::STArray<8\2c\20int\2c\20true>::STArray\28int\29 +5979:skia_private::AutoTMalloc::realloc\28unsigned\20long\29 +5980:skia_private::AutoTMalloc::reset\28unsigned\20long\29 +5981:skia_private::AutoTArray::AutoTArray\28unsigned\20long\29 +5982:skia_private::AutoTArray::AutoTArray\28unsigned\20long\29 +5983:skia_private::AutoSTMalloc<256ul\2c\20unsigned\20short\2c\20void>::AutoSTMalloc\28unsigned\20long\29 +5984:skia_private::AutoSTArray<6\2c\20SkResourceCache::Key>::~AutoSTArray\28\29 +5985:skia_private::AutoSTArray<64\2c\20TriangulationVertex>::reset\28int\29 +5986:skia_private::AutoSTArray<64\2c\20SkGlyph\20const*>::reset\28int\29 +5987:skia_private::AutoSTArray<4\2c\20unsigned\20char>::reset\28int\29 +5988:skia_private::AutoSTArray<4\2c\20GrResourceHandle>::reset\28int\29 +5989:skia_private::AutoSTArray<3\2c\20std::__2::unique_ptr>>::reset\28int\29 +5990:skia_private::AutoSTArray<32\2c\20unsigned\20short>::~AutoSTArray\28\29 +5991:skia_private::AutoSTArray<32\2c\20unsigned\20short>::reset\28int\29 +5992:skia_private::AutoSTArray<32\2c\20SkRect>::reset\28int\29 +5993:skia_private::AutoSTArray<32\2c\20SkPoint>::reset\28int\29 +5994:skia_private::AutoSTArray<2\2c\20sk_sp>::reset\28int\29 +5995:skia_private::AutoSTArray<16\2c\20SkRect>::~AutoSTArray\28\29 +5996:skia_private::AutoSTArray<16\2c\20GrMipLevel>::reset\28int\29 +5997:skia_private::AutoSTArray<15\2c\20GrMipLevel>::reset\28int\29 +5998:skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>::~AutoSTArray\28\29 +5999:skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>::reset\28int\29 +6000:skia_private::AutoSTArray<14\2c\20GrMipLevel>::~AutoSTArray\28\29 +6001:skia_private::AutoSTArray<14\2c\20GrMipLevel>::reset\28int\29 +6002:skia_private::AutoSTArray<128\2c\20unsigned\20short>::reset\28int\29 +6003:skia_png_set_longjmp_fn +6004:skia_png_read_finish_IDAT +6005:skia_png_read_chunk_header +6006:skia_png_read_IDAT_data +6007:skia_png_gamma_16bit_correct +6008:skia_png_do_strip_channel +6009:skia_png_do_gray_to_rgb +6010:skia_png_do_expand +6011:skia_png_destroy_gamma_table +6012:skia_png_colorspace_set_sRGB +6013:skia_png_check_IHDR +6014:skia_png_calculate_crc +6015:skia::textlayout::operator==\28skia::textlayout::FontArguments\20const&\2c\20skia::textlayout::FontArguments\20const&\29 +6016:skia::textlayout::\28anonymous\20namespace\29::littleRound\28float\29 +6017:skia::textlayout::\28anonymous\20namespace\29::LineBreakerWithLittleRounding::breakLine\28float\29\20const +6018:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29 +6019:skia::textlayout::TypefaceFontStyleSet::matchStyle\28SkFontStyle\20const&\29 +6020:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29 +6021:skia::textlayout::TypefaceFontProvider::registerTypeface\28sk_sp\2c\20SkString\20const&\29 +6022:skia::textlayout::TextWrapper::TextStretch::TextStretch\28skia::textlayout::Cluster*\2c\20skia::textlayout::Cluster*\2c\20bool\29 +6023:skia::textlayout::TextStyle::setForegroundPaintID\28int\29 +6024:skia::textlayout::TextStyle::setForegroundColor\28SkPaint\29 +6025:skia::textlayout::TextStyle::setBackgroundColor\28SkPaint\29 +6026:skia::textlayout::TextStyle::matchOneAttribute\28skia::textlayout::StyleType\2c\20skia::textlayout::TextStyle\20const&\29\20const +6027:skia::textlayout::TextStyle::equals\28skia::textlayout::TextStyle\20const&\29\20const +6028:skia::textlayout::TextShadow::operator!=\28skia::textlayout::TextShadow\20const&\29\20const +6029:skia::textlayout::TextLine::~TextLine\28\29 +6030:skia::textlayout::TextLine::spacesWidth\28\29\20const +6031:skia::textlayout::TextLine::shiftCluster\28skia::textlayout::Cluster\20const*\2c\20float\2c\20float\29 +6032:skia::textlayout::TextLine::iterateThroughClustersInGlyphsOrder\28bool\2c\20bool\2c\20std::__2::function\20const&\29\20const::$_0::operator\28\29\28unsigned\20long\20const&\29\20const::'lambda'\28skia::textlayout::Cluster&\29::operator\28\29\28skia::textlayout::Cluster&\29\20const +6033:skia::textlayout::TextLine::iterateThroughClustersInGlyphsOrder\28bool\2c\20bool\2c\20std::__2::function\20const&\29\20const +6034:skia::textlayout::TextLine::getRectsForRange\28skia::textlayout::SkRange\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkRect\29::operator\28\29\28SkRect\29\20const +6035:skia::textlayout::TextLine::getMetrics\28\29\20const +6036:skia::textlayout::TextLine::extendHeight\28skia::textlayout::TextLine::ClipContext\20const&\29\20const +6037:skia::textlayout::TextLine::ensureTextBlobCachePopulated\28\29 +6038:skia::textlayout::TextLine::endsWithHardLineBreak\28\29\20const +6039:skia::textlayout::TextLine::buildTextBlob\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +6040:skia::textlayout::TextLine::TextLine\28skia::textlayout::ParagraphImpl*\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20skia::textlayout::InternalLineMetrics\29 +6041:skia::textlayout::TextLine::TextBlobRecord::~TextBlobRecord\28\29 +6042:skia::textlayout::TextLine::TextBlobRecord*\20std::__2::construct_at\5babi:ne180100\5d\28skia::textlayout::TextLine::TextBlobRecord*\29 +6043:skia::textlayout::TextLine&\20skia_private::TArray::emplace_back&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&>\28skia::textlayout::ParagraphImpl*&&\2c\20SkPoint&\2c\20SkPoint&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20skia::textlayout::SkRange&\2c\20float&\2c\20skia::textlayout::InternalLineMetrics&\29 +6044:skia::textlayout::StrutStyle::StrutStyle\28\29 +6045:skia::textlayout::Run::shift\28skia::textlayout::Cluster\20const*\2c\20float\29 +6046:skia::textlayout::Run::newRunBuffer\28\29 +6047:skia::textlayout::Run::clusterIndex\28unsigned\20long\29\20const +6048:skia::textlayout::Run::calculateMetrics\28\29 +6049:skia::textlayout::ParagraphStyle::ellipsized\28\29\20const +6050:skia::textlayout::ParagraphPainter::DecorationStyle::DecorationStyle\28unsigned\20int\2c\20float\2c\20std::__2::optional\29 +6051:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29 +6052:skia::textlayout::ParagraphImpl::resolveStrut\28\29 +6053:skia::textlayout::ParagraphImpl::paint\28skia::textlayout::ParagraphPainter*\2c\20float\2c\20float\29 +6054:skia::textlayout::ParagraphImpl::getGlyphInfoAtUTF16Offset\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +6055:skia::textlayout::ParagraphImpl::getGlyphClusterAt\28unsigned\20long\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +6056:skia::textlayout::ParagraphImpl::ensureUTF16Mapping\28\29::$_0::operator\28\29\28\29\20const::'lambda0'\28unsigned\20long\29::operator\28\29\28unsigned\20long\29\20const +6057:skia::textlayout::ParagraphImpl::computeEmptyMetrics\28\29 +6058:skia::textlayout::ParagraphImpl::buildClusterTable\28\29::$_0::operator\28\29\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20float\2c\20float\29\20const +6059:skia::textlayout::ParagraphCacheKey::ParagraphCacheKey\28skia::textlayout::ParagraphImpl\20const*\29 +6060:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29 +6061:skia::textlayout::ParagraphBuilderImpl::finalize\28\29 +6062:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\2c\20bool\29 +6063:skia::textlayout::Paragraph::~Paragraph\28\29 +6064:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29 +6065:skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29::$_0::operator\28\29\28unsigned\20long\2c\20skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29::Dir\29\20const +6066:skia::textlayout::OneLineShaper::clusteredText\28skia::textlayout::SkRange&\29 +6067:skia::textlayout::OneLineShaper::FontKey::operator==\28skia::textlayout::OneLineShaper::FontKey\20const&\29\20const +6068:skia::textlayout::OneLineShaper::FontKey::FontKey\28skia::textlayout::OneLineShaper::FontKey&&\29 +6069:skia::textlayout::InternalLineMetrics::add\28skia::textlayout::InternalLineMetrics\29 +6070:skia::textlayout::FontFeature::operator==\28skia::textlayout::FontFeature\20const&\29\20const +6071:skia::textlayout::FontFeature::FontFeature\28skia::textlayout::FontFeature\20const&\29 +6072:skia::textlayout::FontFeature*\20std::__2::construct_at\5babi:ne180100\5d\28skia::textlayout::FontFeature*\2c\20SkString\20const&\2c\20int&\29 +6073:skia::textlayout::FontCollection::~FontCollection\28\29 +6074:skia::textlayout::FontCollection::matchTypeface\28SkString\20const&\2c\20SkFontStyle\29 +6075:skia::textlayout::FontCollection::defaultFallback\28int\2c\20SkFontStyle\2c\20SkString\20const&\2c\20std::__2::optional\20const&\29 +6076:skia::textlayout::FontCollection::FamilyKey::operator==\28skia::textlayout::FontCollection::FamilyKey\20const&\29\20const +6077:skia::textlayout::FontCollection::FamilyKey::FamilyKey\28skia::textlayout::FontCollection::FamilyKey&&\29 +6078:skia::textlayout::FontArguments::~FontArguments\28\29 +6079:skia::textlayout::Decoration::operator==\28skia::textlayout::Decoration\20const&\29\20const +6080:skia::textlayout::Cluster::trimmedWidth\28unsigned\20long\29\20const +6081:skgpu::tess::\28anonymous\20namespace\29::write_curve_index_buffer_base_index\28skgpu::VertexWriter\2c\20unsigned\20long\2c\20unsigned\20short\29 +6082:skgpu::tess::\28anonymous\20namespace\29::PathChopper::lineTo\28SkPoint\20const*\29 +6083:skgpu::tess::StrokeParams::set\28SkStrokeRec\20const&\29 +6084:skgpu::tess::StrokeIterator::finishOpenContour\28\29 +6085:skgpu::tess::PreChopPathCurves\28float\2c\20SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\29 +6086:skgpu::tess::LinearTolerances::setStroke\28skgpu::tess::StrokeParams\20const&\2c\20float\29 +6087:skgpu::tess::LinearTolerances::requiredResolveLevel\28\29\20const +6088:skgpu::tess::GetJoinType\28SkStrokeRec\20const&\29 +6089:skgpu::tess::FixedCountCurves::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +6090:skgpu::tess::CullTest::areVisible3\28SkPoint\20const*\29\20const +6091:skgpu::tess::ConicHasCusp\28SkPoint\20const*\29 +6092:skgpu::make_unnormalized_half_kernel\28float*\2c\20int\2c\20float\29 +6093:skgpu::ganesh::\28anonymous\20namespace\29::add_line_to_segment\28SkPoint\20const&\2c\20skia_private::TArray*\29 +6094:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29 +6095:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::flush\28GrMeshDrawTarget*\2c\20skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::FlushInfo*\29\20const +6096:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::addToAtlasWithRetry\28GrMeshDrawTarget*\2c\20skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::FlushInfo*\2c\20skgpu::ganesh::SmallPathAtlasMgr*\2c\20int\2c\20int\2c\20void\20const*\2c\20SkRect\20const&\2c\20int\2c\20skgpu::ganesh::SmallPathShapeData*\29\20const +6097:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::SmallPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20GrUserStencilSettings\20const*\29 +6098:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29 +6099:skgpu::ganesh::\28anonymous\20namespace\29::ChopPathIfNecessary\28SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20SkStrokeRec\20const&\2c\20SkPath*\29 +6100:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29 +6101:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::recordDraw\28GrMeshDrawTarget*\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20int\2c\20unsigned\20short*\29 +6102:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::PathData::PathData\28skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::PathData&&\29 +6103:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::AAFlatteningConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20float\2c\20SkStrokeRec::Style\2c\20SkPaint::Join\2c\20float\2c\20GrUserStencilSettings\20const*\29 +6104:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29 +6105:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::PathData::PathData\28skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::PathData&&\29 +6106:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::AAConvexPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrUserStencilSettings\20const*\29 +6107:skgpu::ganesh::TextureOp::Make\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20SkBlendMode\2c\20GrAAType\2c\20DrawQuad*\2c\20SkRect\20const*\29 +6108:skgpu::ganesh::TessellationPathRenderer::IsSupported\28GrCaps\20const&\29 +6109:skgpu::ganesh::SurfaceFillContext::fillRectToRectWithFP\28SkRect\20const&\2c\20SkIRect\20const&\2c\20std::__2::unique_ptr>\29 +6110:skgpu::ganesh::SurfaceFillContext::blitTexture\28GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\29 +6111:skgpu::ganesh::SurfaceFillContext::arenas\28\29 +6112:skgpu::ganesh::SurfaceFillContext::addDrawOp\28std::__2::unique_ptr>\29 +6113:skgpu::ganesh::SurfaceFillContext::SurfaceFillContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorInfo\20const&\29 +6114:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29_10845 +6115:skgpu::ganesh::SurfaceDrawContext::setNeedsStencil\28\29 +6116:skgpu::ganesh::SurfaceDrawContext::internalStencilClear\28SkIRect\20const*\2c\20bool\29 +6117:skgpu::ganesh::SurfaceDrawContext::fillRectWithEdgeAA\28GrClip\20const*\2c\20GrPaint&&\2c\20GrQuadAAFlags\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const*\29 +6118:skgpu::ganesh::SurfaceDrawContext::drawVertices\28GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20sk_sp\2c\20GrPrimitiveType*\2c\20bool\29 +6119:skgpu::ganesh::SurfaceDrawContext::drawTexturedQuad\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkBlendMode\2c\20DrawQuad*\2c\20SkRect\20const*\29 +6120:skgpu::ganesh::SurfaceDrawContext::drawTexture\28GrClip\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20SkBlendMode\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +6121:skgpu::ganesh::SurfaceDrawContext::drawStrokedLine\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkPoint\20const*\2c\20SkStrokeRec\20const&\29 +6122:skgpu::ganesh::SurfaceDrawContext::drawRegion\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrStyle\20const&\2c\20GrUserStencilSettings\20const*\29 +6123:skgpu::ganesh::SurfaceDrawContext::drawOval\28GrClip\20const*\2c\20GrPaint&&\2c\20GrAA\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20GrStyle\20const&\29 +6124:skgpu::ganesh::SurfaceDrawContext::attemptQuadOptimization\28GrClip\20const*\2c\20GrUserStencilSettings\20const*\2c\20DrawQuad*\2c\20GrPaint*\29::$_0::operator\28\29\28\29\20const +6125:skgpu::ganesh::SurfaceDrawContext::SurfaceDrawContext\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20sk_sp\2c\20SkSurfaceProps\20const&\29 +6126:skgpu::ganesh::SurfaceContext::writePixels\28GrDirectContext*\2c\20GrCPixmap\2c\20SkIPoint\29 +6127:skgpu::ganesh::SurfaceContext::rescaleInto\28skgpu::ganesh::SurfaceFillContext*\2c\20SkIRect\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\29 +6128:skgpu::ganesh::SurfaceContext::copy\28sk_sp\2c\20SkIRect\2c\20SkIPoint\29 +6129:skgpu::ganesh::SurfaceContext::copyScaled\28sk_sp\2c\20SkIRect\2c\20SkIRect\2c\20SkFilterMode\29 +6130:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +6131:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::FinishContext::~FinishContext\28\29 +6132:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +6133:skgpu::ganesh::StrokeTessellator::draw\28GrOpFlushState*\29\20const +6134:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29 +6135:skgpu::ganesh::StrokeTessellateOp::prePrepareTessellator\28GrTessellationShader::ProgramArgs&&\2c\20GrAppliedClip&&\29 +6136:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::allowed_stroke\28GrCaps\20const*\2c\20SkStrokeRec\20const&\2c\20GrAA\2c\20bool*\29 +6137:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29 +6138:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::NonAAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrSimpleMeshDrawOpHelper::InputFlags\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkStrokeRec\20const&\2c\20GrAAType\29 +6139:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29 +6140:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::ClassID\28\29 +6141:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::AAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::RectInfo\20const&\2c\20bool\29 +6142:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::AAStrokeRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const&\29 +6143:skgpu::ganesh::SoftwarePathRenderer::DrawAroundInvPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29 +6144:skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_12368 +6145:skgpu::ganesh::SmallPathAtlasMgr::reset\28\29 +6146:skgpu::ganesh::SmallPathAtlasMgr::findOrCreate\28skgpu::ganesh::SmallPathShapeDataKey\20const&\29 +6147:skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +6148:skgpu::ganesh::SmallPathAtlasMgr::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +6149:skgpu::ganesh::ShadowRRectOp::Make\28GrRecordingContext*\2c\20unsigned\20int\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20float\2c\20float\29 +6150:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29 +6151:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::RegionOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRegion\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +6152:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::primitiveType\28\29\20const +6153:skgpu::ganesh::QuadPerEdgeAA::VertexSpec::VertexSpec\28GrQuad::Type\2c\20skgpu::ganesh::QuadPerEdgeAA::ColorType\2c\20GrQuad::Type\2c\20bool\2c\20skgpu::ganesh::QuadPerEdgeAA::Subset\2c\20GrAAType\2c\20bool\2c\20skgpu::ganesh::QuadPerEdgeAA::IndexBufferOption\29 +6154:skgpu::ganesh::QuadPerEdgeAA::Tessellator::append\28GrQuad*\2c\20GrQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20GrQuadAAFlags\29 +6155:skgpu::ganesh::QuadPerEdgeAA::Tessellator::Tessellator\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29 +6156:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29 +6157:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::initializeAttrs\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29 +6158:skgpu::ganesh::QuadPerEdgeAA::IssueDraw\28GrCaps\20const&\2c\20GrOpsRenderPass*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20int\2c\20int\2c\20int\2c\20int\29 +6159:skgpu::ganesh::QuadPerEdgeAA::GetIndexBuffer\28GrMeshDrawTarget*\2c\20skgpu::ganesh::QuadPerEdgeAA::IndexBufferOption\29 +6160:skgpu::ganesh::PathWedgeTessellator::Make\28SkArenaAlloc*\2c\20bool\2c\20skgpu::tess::PatchAttribs\29 +6161:skgpu::ganesh::PathTessellator::PathTessellator\28bool\2c\20skgpu::tess::PatchAttribs\29 +6162:skgpu::ganesh::PathTessellator::PathDrawList*\20SkArenaAlloc::make\20const&>\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29 +6163:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29 +6164:skgpu::ganesh::PathTessellateOp::usesMSAA\28\29\20const +6165:skgpu::ganesh::PathTessellateOp::prepareTessellator\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +6166:skgpu::ganesh::PathTessellateOp::PathTessellateOp\28SkArenaAlloc*\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\2c\20SkRect\20const&\29 +6167:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29 +6168:skgpu::ganesh::PathStencilCoverOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +6169:skgpu::ganesh::PathStencilCoverOp::ClassID\28\29 +6170:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29 +6171:skgpu::ganesh::PathInnerTriangulateOp::pushFanStencilProgram\28GrTessellationShader::ProgramArgs\20const&\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +6172:skgpu::ganesh::PathInnerTriangulateOp::prePreparePrograms\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAppliedClip&&\29 +6173:skgpu::ganesh::PathCurveTessellator::~PathCurveTessellator\28\29 +6174:skgpu::ganesh::PathCurveTessellator::prepareWithTriangles\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20GrTriangulator::BreadcrumbTriangleList*\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +6175:skgpu::ganesh::PathCurveTessellator::Make\28SkArenaAlloc*\2c\20bool\2c\20skgpu::tess::PatchAttribs\29 +6176:skgpu::ganesh::OpsTask::setColorLoadOp\28GrLoadOp\2c\20std::__2::array\29 +6177:skgpu::ganesh::OpsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +6178:skgpu::ganesh::OpsTask::onExecute\28GrOpFlushState*\29 +6179:skgpu::ganesh::OpsTask::addSampledTexture\28GrSurfaceProxy*\29 +6180:skgpu::ganesh::OpsTask::addDrawOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0::operator\28\29\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\20const +6181:skgpu::ganesh::OpsTask::addDrawOp\28GrDrawingManager*\2c\20std::__2::unique_ptr>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29 +6182:skgpu::ganesh::OpsTask::OpsTask\28GrDrawingManager*\2c\20GrSurfaceProxyView\2c\20GrAuditTrail*\2c\20sk_sp\29 +6183:skgpu::ganesh::OpsTask::OpChain::tryConcat\28skgpu::ganesh::OpsTask::OpChain::List*\2c\20GrProcessorSet::Analysis\2c\20GrDstProxyView\20const&\2c\20GrAppliedClip\20const*\2c\20SkRect\20const&\2c\20GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrAuditTrail*\29 +6184:skgpu::ganesh::OpsTask::OpChain::OpChain\28std::__2::unique_ptr>\2c\20GrProcessorSet::Analysis\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const*\29 +6185:skgpu::ganesh::LockTextureProxyView\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20GrImageTexGenPolicy\2c\20skgpu::Mipmapped\29 +6186:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29 +6187:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::NonAALatticeOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20sk_sp\2c\20SkFilterMode\2c\20std::__2::unique_ptr>\2c\20SkRect\20const&\29 +6188:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29 +6189:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::can_use_hw_derivatives_with_coverage\28skvx::Vec<2\2c\20float>\20const&\2c\20SkPoint\20const&\29 +6190:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29 +6191:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::programInfo\28\29 +6192:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Make\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20GrAA\29 +6193:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::FillRRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20SkRRect\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::LocalCoords\20const&\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29 +6194:skgpu::ganesh::DrawableOp::~DrawableOp\28\29 +6195:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29 +6196:skgpu::ganesh::DrawAtlasPathOp::prepareProgram\28GrCaps\20const&\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6197:skgpu::ganesh::Device::~Device\28\29 +6198:skgpu::ganesh::Device::replaceBackingProxy\28SkSurface::ContentChangeMode\2c\20sk_sp\2c\20GrColorType\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20SkSurfaceProps\20const&\29 +6199:skgpu::ganesh::Device::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +6200:skgpu::ganesh::Device::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +6201:skgpu::ganesh::Device::drawEdgeAAImage\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20SkTileMode\29 +6202:skgpu::ganesh::Device::convertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +6203:skgpu::ganesh::Device::android_utils_clipAsRgn\28SkRegion*\29\20const +6204:skgpu::ganesh::DefaultPathRenderer::internalDrawPath\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrPaint&&\2c\20GrAAType\2c\20GrUserStencilSettings\20const&\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20bool\29 +6205:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +6206:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29 +6207:skgpu::ganesh::CopyView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\2c\20std::__2::basic_string_view>\29 +6208:skgpu::ganesh::ClipStack::clipPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrAA\2c\20SkClipOp\29 +6209:skgpu::ganesh::ClipStack::begin\28\29\20const +6210:skgpu::ganesh::ClipStack::SaveRecord::removeElements\28SkTBlockList*\29 +6211:skgpu::ganesh::ClipStack::RawElement::clipType\28\29\20const +6212:skgpu::ganesh::ClipStack::Mask::invalidate\28GrProxyProvider*\29 +6213:skgpu::ganesh::ClipStack::ElementIter::operator++\28\29 +6214:skgpu::ganesh::ClipStack::Element::Element\28skgpu::ganesh::ClipStack::Element\20const&\29 +6215:skgpu::ganesh::ClipStack::Draw::Draw\28SkRect\20const&\2c\20GrAA\29 +6216:skgpu::ganesh::ClearOp::ClearOp\28skgpu::ganesh::ClearOp::Buffer\2c\20GrScissorState\20const&\2c\20std::__2::array\2c\20bool\29 +6217:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29 +6218:skgpu::ganesh::AtlasTextOp::operator\20new\28unsigned\20long\29 +6219:skgpu::ganesh::AtlasTextOp::onPrepareDraws\28GrMeshDrawTarget*\29::$_0::operator\28\29\28\29\20const +6220:skgpu::ganesh::AtlasTextOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +6221:skgpu::ganesh::AtlasTextOp::Make\28skgpu::ganesh::SurfaceDrawContext*\2c\20sktext::gpu::AtlasSubRun\20const*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp&&\29 +6222:skgpu::ganesh::AtlasTextOp::ClassID\28\29 +6223:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29 +6224:skgpu::ganesh::AtlasRenderTask::stencilAtlasRect\28GrRecordingContext*\2c\20SkRect\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrUserStencilSettings\20const*\29 +6225:skgpu::ganesh::AtlasRenderTask::readView\28GrCaps\20const&\29\20const +6226:skgpu::ganesh::AtlasRenderTask::instantiate\28GrOnFlushResourceProvider*\2c\20sk_sp\29 +6227:skgpu::ganesh::AtlasRenderTask::addPath\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIPoint\2c\20int\2c\20int\2c\20bool\2c\20SkIPoint16*\29 +6228:skgpu::ganesh::AtlasRenderTask::addAtlasDrawOp\28std::__2::unique_ptr>\2c\20GrCaps\20const&\29 +6229:skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11657 +6230:skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +6231:skgpu::ganesh::AtlasPathRenderer::pathFitsInAtlas\28SkRect\20const&\2c\20GrAAType\29\20const +6232:skgpu::ganesh::AtlasPathRenderer::addPathToAtlas\28GrRecordingContext*\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRect\20const&\2c\20SkIRect*\2c\20SkIPoint16*\2c\20bool*\2c\20std::__2::function\20const&\29 +6233:skgpu::ganesh::AtlasPathRenderer::AtlasPathKey::operator==\28skgpu::ganesh::AtlasPathRenderer::AtlasPathKey\20const&\29\20const +6234:skgpu::ganesh::AsFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkImage\20const*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29 +6235:skgpu::TiledTextureUtils::OptimizeSampleArea\28SkISize\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkPoint\20const*\2c\20SkRect*\2c\20SkRect*\2c\20SkMatrix*\29 +6236:skgpu::TiledTextureUtils::CanDisableMipmap\28SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\29 +6237:skgpu::TClientMappedBufferManager::process\28\29 +6238:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29 +6239:skgpu::TAsyncReadResult::Plane::~Plane\28\29 +6240:skgpu::Swizzle::BGRA\28\29 +6241:skgpu::ScratchKey::ScratchKey\28skgpu::ScratchKey\20const&\29 +6242:skgpu::ResourceKey::operator=\28skgpu::ResourceKey\20const&\29 +6243:skgpu::RectanizerSkyline::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +6244:skgpu::RectanizerSkyline::RectanizerSkyline\28int\2c\20int\29 +6245:skgpu::Plot::~Plot\28\29 +6246:skgpu::Plot::resetRects\28bool\29 +6247:skgpu::Plot::Plot\28int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20SkColorType\2c\20unsigned\20long\29 +6248:skgpu::KeyBuilder::flush\28\29 +6249:skgpu::KeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +6250:skgpu::GetReducedBlendModeInfo\28SkBlendMode\29 +6251:skgpu::GetApproxSize\28SkISize\29::$_0::operator\28\29\28int\29\20const +6252:skgpu::CreateIntegralTable\28int\29 +6253:skgpu::ComputeIntegralTableWidth\28float\29 +6254:skgpu::AtlasLocator::updatePlotLocator\28skgpu::PlotLocator\29 +6255:skgpu::AtlasLocator::insetSrc\28int\29 +6256:skcpu::make_xrect\28SkRect\20const&\29 +6257:skcpu::draw_rect_as_path\28skcpu::Draw\20const&\2c\20SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\29 +6258:skcpu::compute_stroke_size\28SkPaint\20const&\2c\20SkMatrix\20const&\29 +6259:skcpu::clipHandlesSprite\28SkRasterClip\20const&\2c\20int\2c\20int\2c\20SkPixmap\20const&\29 +6260:skcpu::Recorder::makeBitmapSurface\28SkImageInfo\20const&\2c\20unsigned\20long\2c\20SkSurfaceProps\20const*\29 +6261:skcpu::DrawTreatAsHairline\28SkPaint\20const&\2c\20SkMatrix\20const&\2c\20float*\29 +6262:skcpu::DrawToMask\28SkPathRaw\20const&\2c\20SkIRect\20const&\2c\20SkMaskFilter\20const*\2c\20SkMatrix\20const*\2c\20SkMaskBuilder*\2c\20SkMaskBuilder::CreateMode\2c\20SkStrokeRec::InitStyle\29 +6263:skcpu::Draw::drawSprite\28SkBitmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29\20const +6264:skcpu::Draw::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkRect\20const*\29\20const +6265:skcpu::Draw::drawRRectNinePatch\28SkRRect\20const&\2c\20SkPaint\20const&\29\20const +6266:skcpu::Draw::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\2c\20SkDrawCoverage\2c\20SkBlitter*\29\20const +6267:skcpu::Draw::drawPaint\28SkPaint\20const&\29\20const +6268:skcpu::Draw::drawDevMask\28SkMask\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const*\29\20const +6269:skcms_private::baseline::exec_stages\28skcms_private::Op\20const*\2c\20void\20const**\2c\20char\20const*\2c\20char*\2c\20int\29 +6270:skcms_private::baseline::clut\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\2c\20float\20vector\5b4\5d*\29 +6271:skcms_ApproximatelyEqualProfiles +6272:sk_sp::~sk_sp\28\29 +6273:sk_sp::reset\28sktext::gpu::TextStrike*\29 +6274:sk_sp\20skgpu::RefCntedCallback::MakeImpl\28void\20\28*\29\28void*\29\2c\20void*\29 +6275:sk_sp<\28anonymous\20namespace\29::UniqueKeyInvalidator>\20sk_make_sp<\28anonymous\20namespace\29::UniqueKeyInvalidator\2c\20skgpu::UniqueKey&\2c\20unsigned\20int>\28skgpu::UniqueKey&\2c\20unsigned\20int&&\29 +6276:sk_sp<\28anonymous\20namespace\29::ShadowInvalidator>\20sk_make_sp<\28anonymous\20namespace\29::ShadowInvalidator\2c\20SkResourceCache::Key&>\28SkResourceCache::Key&\29 +6277:sk_sp::operator=\28sk_sp\20const&\29 +6278:sk_sp&\20std::__2::vector\2c\20std::__2::allocator>>::emplace_back>\28sk_sp&&\29 +6279:sk_sp\20sk_make_sp>\28sk_sp&&\29 +6280:sk_sp::~sk_sp\28\29 +6281:sk_sp::sk_sp\28sk_sp\20const&\29 +6282:sk_sp::operator=\28sk_sp&&\29 +6283:sk_sp::reset\28SkMeshSpecification*\29 +6284:sk_sp\20sk_make_sp>>\28std::__2::unique_ptr>&&\29 +6285:sk_sp::reset\28SkData\20const*\29 +6286:sk_sp::operator=\28sk_sp\20const&\29 +6287:sk_sp::operator=\28sk_sp\20const&\29 +6288:sk_sp::operator=\28sk_sp&&\29 +6289:sk_sp::~sk_sp\28\29 +6290:sk_sp::sk_sp\28sk_sp\20const&\29 +6291:sk_sp&\20sk_sp::operator=\28sk_sp&&\29 +6292:sk_sp::reset\28GrSurface::RefCntedReleaseProc*\29 +6293:sk_sp::operator=\28sk_sp&&\29 +6294:sk_sp::~sk_sp\28\29 +6295:sk_sp::operator=\28sk_sp&&\29 +6296:sk_sp::~sk_sp\28\29 +6297:sk_sp\20sk_make_sp\28\29 +6298:sk_sp::reset\28GrArenas*\29 +6299:sk_ft_alloc\28FT_MemoryRec_*\2c\20long\29 +6300:sk_fopen\28char\20const*\2c\20SkFILE_Flags\29 +6301:sk_fgetsize\28_IO_FILE*\29 +6302:sk_determinant\28float\20const*\2c\20int\29 +6303:sk_blit_below\28SkBlitter*\2c\20SkIRect\20const&\2c\20SkRegion\20const&\29 +6304:sk_blit_above\28SkBlitter*\2c\20SkIRect\20const&\2c\20SkRegion\20const&\29 +6305:sid_to_gid_t\20const*\20hb_sorted_array_t::bsearch\28unsigned\20int\20const&\2c\20sid_to_gid_t\20const*\29 +6306:short\20sk_saturate_cast\28float\29 +6307:sharp_angle\28SkPoint\20const*\29 +6308:sfnt_stream_close +6309:setup_masks_arabic_plan\28arabic_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_script_t\29 +6310:set_reference_pq_ish_trc\28skcms_TransferFunction*\29 +6311:set_points\28float*\2c\20int*\2c\20int\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20float\2c\20float\2c\20bool\29 +6312:set_ootf_Y\28SkColorSpace\20const*\2c\20float*\29 +6313:set_normal_unitnormal\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +6314:set_khr_debug_label\28GrGLGpu*\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +6315:set_as_rect\28SkPathRaw*\2c\20SkSpan\2c\20SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +6316:set_as_oval\28SkPathRaw*\2c\20SkSpan\2c\20SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +6317:setThrew +6318:setCommonICUData\28UDataMemory*\2c\20signed\20char\2c\20UErrorCode*\29 +6319:serialize_image\28SkImage\20const*\2c\20SkSerialProcs\29 +6320:select_curve_ops\28skcms_Curve\20const*\2c\20int\2c\20OpAndArg*\29 +6321:sect_clamp_with_vertical\28SkPoint\20const*\2c\20float\29 +6322:scanexp +6323:scalbnl +6324:scalbnf +6325:safe_picture_bounds\28SkRect\20const&\29 +6326:safe_int_addition +6327:rt_has_msaa_render_buffer\28GrGLRenderTarget\20const*\2c\20GrGLCaps\20const&\29 +6328:rrect_type_to_vert_count\28RRectType\29 +6329:row_is_all_zeros\28unsigned\20char\20const*\2c\20int\29 +6330:round_up_to_int\28float\29 +6331:round_down_to_int\28float\29 +6332:rotate\28SkDCubic\20const&\2c\20int\2c\20int\2c\20SkDCubic&\29 +6333:rewind_if_necessary\28GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29 +6334:resolveImplicitLevels\28UBiDi*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +6335:reset_and_decode_image_config\28wuffs_gif__decoder__struct*\2c\20wuffs_base__image_config__struct*\2c\20wuffs_base__io_buffer__struct*\2c\20SkStream*\29 +6336:res_countArrayItems_74 +6337:renderbuffer_storage_msaa\28GrGLGpu*\2c\20int\2c\20unsigned\20int\2c\20int\2c\20int\29 +6338:remove_edge_below\28GrTriangulator::Edge*\29 +6339:remove_edge_above\28GrTriangulator::Edge*\29 +6340:reductionLineCount\28SkDQuad\20const&\29 +6341:recursive_edge_intersect\28GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Line\20const&\2c\20SkPoint\2c\20SkPoint\2c\20SkPoint*\2c\20double*\2c\20double*\29 +6342:rect_exceeds\28SkRect\20const&\2c\20float\29 +6343:reclassify_vertex\28TriangulationVertex*\2c\20SkPoint\20const*\2c\20int\2c\20ReflexHash*\2c\20SkTInternalLList*\29 +6344:read_mft_common\28mft_CommonLayout\20const*\2c\20skcms_B2A*\29 +6345:read_mft_common\28mft_CommonLayout\20const*\2c\20skcms_A2B*\29 +6346:radii_are_nine_patch\28SkPoint\20const*\29 +6347:quad_type_for_transformed_rect\28SkMatrix\20const&\29 +6348:quad_to_tris\28SkPoint*\2c\20SkSpan\29 +6349:quad_in_line\28SkPoint\20const*\29 +6350:pt_to_tangent_line\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +6351:psh_hint_table_record +6352:psh_hint_table_init +6353:psh_hint_table_find_strong_points +6354:psh_hint_table_done +6355:psh_hint_table_activate_mask +6356:psh_hint_align +6357:psh_glyph_load_points +6358:psh_globals_scale_widths +6359:psh_compute_dir +6360:psh_blues_set_zones_0 +6361:psh_blues_set_zones +6362:ps_table_realloc +6363:ps_parser_to_token_array +6364:ps_parser_load_field +6365:ps_mask_table_last +6366:ps_mask_table_done +6367:ps_hints_stem +6368:ps_dimension_end +6369:ps_dimension_done +6370:ps_dimension_add_t1stem +6371:ps_builder_start_point +6372:ps_builder_close_contour +6373:ps_builder_add_point1 +6374:printf_core +6375:prepare_to_draw_into_mask\28SkRect\20const&\2c\20SkMaskBuilder*\29 +6376:position_cluster\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\29 +6377:portable::uniform_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6378:portable::set_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6379:portable::debug_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6380:portable::debug_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6381:portable::copy_from_indirect_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6382:portable::copy_2_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6383:portable::check_decal_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6384:portable::bilerp_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6385:pop_arg +6386:pointerTOCEntryCount\28UDataMemory\20const*\29 +6387:pointInTriangle\28SkDPoint\20const*\2c\20SkDPoint\20const&\29 +6388:pntz +6389:png_rtran_ok +6390:png_malloc_array_checked +6391:png_inflate +6392:png_format_buffer +6393:png_decompress_chunk +6394:png_colorspace_check_gamma +6395:png_cache_unknown_chunk +6396:pin_offset_s32\28int\2c\20int\2c\20int\29 +6397:path_key_from_data_size\28SkPath\20const&\29 +6398:parse_private_use_subtag\28char\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20char\20const*\2c\20unsigned\20char\20\28*\29\28unsigned\20char\29\29 +6399:paint_color_to_dst\28SkPaint\20const&\2c\20SkPixmap\20const&\29 +6400:pad4 +6401:operator_new_impl\28unsigned\20long\29 +6402:operator==\28SkRRect\20const&\2c\20SkRRect\20const&\29 +6403:operator==\28SkPaint\20const&\2c\20SkPaint\20const&\29 +6404:operator!=\28SkRRect\20const&\2c\20SkRRect\20const&\29 +6405:open_face +6406:openCommonData\28char\20const*\2c\20int\2c\20UErrorCode*\29 +6407:on_same_side\28SkPoint\20const*\2c\20int\2c\20int\29 +6408:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29_3733 +6409:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +6410:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::size\28\29\20const +6411:non-virtual\20thunk\20to\20SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +6412:move_multiples\28SkOpContourHead*\29 +6413:mono_cubic_closestT\28float\20const*\2c\20float\29 +6414:mbsrtowcs +6415:matchesEnd\28SkDPoint\20const*\2c\20SkDPoint\20const&\29 +6416:map_rect_perspective\28SkRect\20const&\2c\20float\20const*\29::$_0::operator\28\29\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29\20const::'lambda'\28skvx::Vec<4\2c\20float>\20const&\29::operator\28\29\28skvx::Vec<4\2c\20float>\20const&\29\20const +6417:map_quad_to_rect\28SkRSXform\20const&\2c\20SkRect\20const&\29 +6418:map_quad_general\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20SkMatrix\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +6419:make_tiled_gradient\28GrFPArgs\20const&\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20bool\2c\20bool\29 +6420:make_premul_effect\28std::__2::unique_ptr>\29 +6421:make_dual_interval_colorizer\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20float\29 +6422:make_clamped_gradient\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20bool\29 +6423:make_bmp_proxy\28GrProxyProvider*\2c\20SkBitmap\20const&\2c\20GrColorType\2c\20skgpu::Mipmapped\2c\20SkBackingFit\2c\20skgpu::Budgeted\29 +6424:long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +6425:long\20long\20std::__2::__num_get_signed_integral\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\2c\20int\29 +6426:long\20double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +6427:log2f_\28float\29 +6428:locale_canonKeywordName\28char*\2c\20char\20const*\2c\20UErrorCode*\29 +6429:load_post_names +6430:lineMetrics_getLineNumber +6431:lineMetrics_getHardBreak +6432:lin_srgb_to_oklab\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +6433:lang_find_or_insert\28char\20const*\29 +6434:isdigit +6435:is_zero_width_char\28hb_font_t*\2c\20unsigned\20int\29 +6436:is_simple_rect\28GrQuad\20const&\29 +6437:is_plane_config_compatible_with_subsampling\28SkYUVAInfo::PlaneConfig\2c\20SkYUVAInfo::Subsampling\29 +6438:is_overlap_edge\28GrTriangulator::Edge*\29 +6439:is_leap +6440:is_int\28float\29 +6441:is_halant_use\28hb_glyph_info_t\20const&\29 +6442:is_float_fp32\28GrGLContextInfo\20const&\2c\20GrGLInterface\20const*\2c\20unsigned\20int\29 +6443:isZeroLengthSincePoint\28SkSpan\2c\20int\29 +6444:isSpecialTypeRgKeyValue\28char\20const*\29 +6445:isSpecialTypeReorderCode\28char\20const*\29 +6446:isSpecialTypeCodepoints\28char\20const*\29 +6447:isIDCompatMathStart\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +6448:iprintf +6449:invalidate_buffer\28GrGLGpu*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20long\29 +6450:interp_cubic_coords\28double\20const*\2c\20double*\2c\20double\29 +6451:int\20icu_74::\28anonymous\20namespace\29::getOverlap\28unsigned\20short\20const*\2c\20int\2c\20unsigned\20short\20const*\2c\20int\2c\20int\29 +6452:int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::findEntry\28unsigned\20short\20const*\2c\20unsigned\20short\20const*\2c\20int\2c\20unsigned\20int\29\20const +6453:int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::findEntry\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29\20const +6454:int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::findBlock\28unsigned\20short\20const*\2c\20unsigned\20short\20const*\2c\20int\29\20const +6455:int\20icu_74::\28anonymous\20namespace\29::MixedBlocks::findBlock\28unsigned\20short\20const*\2c\20unsigned\20int\20const*\2c\20int\29\20const +6456:int\20SkRecords::Pattern>::matchFirst>\28SkRecords::Is*\2c\20SkRecord*\2c\20int\29 +6457:inside_triangle\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\29 +6458:insertRootBundle\28UResourceDataEntry*&\2c\20UErrorCode*\29 +6459:initCache\28UErrorCode*\29 +6460:inflateEnd +6461:impeller::\28anonymous\20namespace\29::OctantContains\28impeller::RoundSuperellipseParam::Octant\20const&\2c\20impeller::TPoint\20const&\29 +6462:impeller::\28anonymous\20namespace\29::ComputeOctant\28impeller::TPoint\2c\20float\2c\20float\29 +6463:impeller::TRect::Expand\28int\2c\20int\29\20const +6464:impeller::TRect::Union\28impeller::TRect\20const&\29\20const +6465:impeller::TRect::TransformBounds\28impeller::Matrix\20const&\29\20const +6466:impeller::TRect::InterpolateAndInsert\28impeller::TPoint*\2c\20int\2c\20impeller::Vector3\20const&\2c\20impeller::Vector3\20const&\29 +6467:impeller::TPoint::GetLengthSquared\28\29\20const +6468:impeller::RoundingRadii::Scaled\28impeller::TRect\20const&\29\20const +6469:impeller::RoundingRadii::AreAllCornersEmpty\28\29\20const +6470:impeller::RoundSuperellipseParam::MakeBoundsRadii\28impeller::TRect\20const&\2c\20impeller::RoundingRadii\20const&\29 +6471:impeller::Matrix::IsAligned2D\28float\29\20const +6472:impeller::Matrix::HasPerspective\28\29\20const +6473:image_getHeight +6474:icu_74::transform\28char*\2c\20int\29 +6475:icu_74::set32x64Bits\28unsigned\20int*\2c\20int\2c\20int\29 +6476:icu_74::res_getIntVector\28icu_74::ResourceTracer\20const&\2c\20ResourceData\20const*\2c\20unsigned\20int\2c\20int*\29 +6477:icu_74::matches8\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20int\29 +6478:icu_74::matches16CPB\28char16_t\20const*\2c\20int\2c\20int\2c\20char16_t\20const*\2c\20int\29 +6479:icu_74::enumGroupNames\28icu_74::UCharNames*\2c\20unsigned\20short\20const*\2c\20int\2c\20int\2c\20signed\20char\20\28*\29\28void*\2c\20int\2c\20UCharNameChoice\2c\20char\20const*\2c\20int\29\2c\20void*\2c\20UCharNameChoice\29 +6480:icu_74::compute\28int\2c\20icu_74::ReadArray2D\20const&\2c\20icu_74::ReadArray2D\20const&\2c\20icu_74::ReadArray1D\20const&\2c\20icu_74::ReadArray1D\20const&\2c\20icu_74::Array1D&\2c\20icu_74::Array1D&\2c\20icu_74::Array1D&\29 +6481:icu_74::compareUnicodeString\28UElement\2c\20UElement\29 +6482:icu_74::appendUTF8\28char16_t\20const*\2c\20int\2c\20unsigned\20char*\2c\20int\29 +6483:icu_74::\28anonymous\20namespace\29::writeBlock\28unsigned\20int*\2c\20unsigned\20int\29 +6484:icu_74::\28anonymous\20namespace\29::mungeCharName\28char*\2c\20char\20const*\2c\20int\29 +6485:icu_74::\28anonymous\20namespace\29::getJamoTMinusBase\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\29 +6486:icu_74::\28anonymous\20namespace\29::getCanonical\28icu_74::CharStringMap\20const&\2c\20char\20const*\29 +6487:icu_74::\28anonymous\20namespace\29::checkOverflowAndEditsError\28int\2c\20int\2c\20icu_74::Edits*\2c\20UErrorCode&\29 +6488:icu_74::\28anonymous\20namespace\29::allValuesSameAs\28unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +6489:icu_74::\28anonymous\20namespace\29::MutableCodePointTrie::~MutableCodePointTrie\28\29 +6490:icu_74::\28anonymous\20namespace\29::MutableCodePointTrie::getDataBlock\28int\29 +6491:icu_74::\28anonymous\20namespace\29::MutableCodePointTrie::allocDataBlock\28int\29 +6492:icu_74::\28anonymous\20namespace\29::AllSameBlocks::add\28int\2c\20int\2c\20unsigned\20int\29 +6493:icu_74::XLikelySubtagsData::readLSREncodedStrings\28icu_74::ResourceTable\20const&\2c\20char\20const*\2c\20icu_74::ResourceValue&\2c\20icu_74::ResourceArray\20const&\2c\20icu_74::LocalMemory&\2c\20int&\2c\20UErrorCode&\29 +6494:icu_74::XLikelySubtags::~XLikelySubtags\28\29 +6495:icu_74::XLikelySubtags::trieNext\28icu_74::BytesTrie&\2c\20char\20const*\2c\20int\29 +6496:icu_74::UniqueCharStrings::~UniqueCharStrings\28\29 +6497:icu_74::UniqueCharStrings::UniqueCharStrings\28UErrorCode&\29 +6498:icu_74::UnicodeString::setCharAt\28int\2c\20char16_t\29 +6499:icu_74::UnicodeString::reverse\28\29 +6500:icu_74::UnicodeString::operator!=\28icu_74::UnicodeString\20const&\29\20const +6501:icu_74::UnicodeString::indexOf\28char16_t\20const*\2c\20int\2c\20int\2c\20int\2c\20int\29\20const +6502:icu_74::UnicodeString::doIndexOf\28char16_t\2c\20int\2c\20int\29\20const +6503:icu_74::UnicodeString::doExtract\28int\2c\20int\2c\20char16_t*\2c\20int\29\20const +6504:icu_74::UnicodeString::doCompare\28int\2c\20int\2c\20icu_74::UnicodeString\20const&\2c\20int\2c\20int\29\20const +6505:icu_74::UnicodeString::compare\28icu_74::UnicodeString\20const&\29\20const +6506:icu_74::UnicodeSetStringSpan::span\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +6507:icu_74::UnicodeSetStringSpan::spanUTF8\28unsigned\20char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +6508:icu_74::UnicodeSetStringSpan::spanBack\28char16_t\20const*\2c\20int\2c\20USetSpanCondition\29\20const +6509:icu_74::UnicodeSetStringSpan::spanBackUTF8\28unsigned\20char\20const*\2c\20int\2c\20USetSpanCondition\29\20const +6510:icu_74::UnicodeSetStringSpan::addToSpanNotSet\28int\29 +6511:icu_74::UnicodeSet::~UnicodeSet\28\29_14834 +6512:icu_74::UnicodeSet::toPattern\28icu_74::UnicodeString&\2c\20signed\20char\29\20const +6513:icu_74::UnicodeSet::stringsContains\28icu_74::UnicodeString\20const&\29\20const +6514:icu_74::UnicodeSet::set\28int\2c\20int\29 +6515:icu_74::UnicodeSet::retainAll\28icu_74::UnicodeSet\20const&\29 +6516:icu_74::UnicodeSet::remove\28int\29 +6517:icu_74::UnicodeSet::nextCapacity\28int\29 +6518:icu_74::UnicodeSet::matches\28icu_74::Replaceable\20const&\2c\20int&\2c\20int\2c\20signed\20char\29 +6519:icu_74::UnicodeSet::matchesIndexValue\28unsigned\20char\29\20const +6520:icu_74::UnicodeSet::findCodePoint\28int\29\20const +6521:icu_74::UnicodeSet::copyFrom\28icu_74::UnicodeSet\20const&\2c\20signed\20char\29 +6522:icu_74::UnicodeSet::clone\28\29\20const +6523:icu_74::UnicodeSet::applyPattern\28icu_74::RuleCharacterIterator&\2c\20icu_74::SymbolTable\20const*\2c\20icu_74::UnicodeString&\2c\20unsigned\20int\2c\20icu_74::UnicodeSet&\20\28icu_74::UnicodeSet::*\29\28int\29\2c\20int\2c\20UErrorCode&\29 +6524:icu_74::UnicodeSet::add\28int\20const*\2c\20int\2c\20signed\20char\29 +6525:icu_74::UnicodeSet::add\28icu_74::UnicodeString\20const&\29 +6526:icu_74::UnicodeSet::_generatePattern\28icu_74::UnicodeString&\2c\20signed\20char\29\20const +6527:icu_74::UnicodeSet::_appendToPat\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\29 +6528:icu_74::UnicodeSet::_add\28icu_74::UnicodeString\20const&\29 +6529:icu_74::UnicodeSet::UnicodeSet\28int\2c\20int\29 +6530:icu_74::UnhandledEngine::~UnhandledEngine\28\29 +6531:icu_74::UVector::sortedInsert\28void*\2c\20int\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +6532:icu_74::UVector::setElementAt\28void*\2c\20int\29 +6533:icu_74::UVector::removeElement\28void*\29 +6534:icu_74::UVector::indexOf\28void*\2c\20int\29\20const +6535:icu_74::UVector::assign\28icu_74::UVector\20const&\2c\20void\20\28*\29\28UElement*\2c\20UElement*\29\2c\20UErrorCode&\29 +6536:icu_74::UVector::UVector\28UErrorCode&\29 +6537:icu_74::UVector32::_init\28int\2c\20UErrorCode&\29 +6538:icu_74::UStringSet::~UStringSet\28\29 +6539:icu_74::UStack::UStack\28void\20\28*\29\28void*\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +6540:icu_74::UDataPathIterator::next\28UErrorCode*\29 +6541:icu_74::UDataPathIterator::UDataPathIterator\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +6542:icu_74::UCharsTrieElement::getStringLength\28icu_74::UnicodeString\20const&\29\20const +6543:icu_74::UCharsTrieBuilder::~UCharsTrieBuilder\28\29 +6544:icu_74::UCharsTrieBuilder::ensureCapacity\28int\29 +6545:icu_74::UCharsTrieBuilder::build\28UStringTrieBuildOption\2c\20UErrorCode&\29 +6546:icu_74::UCharsTrie::readNodeValue\28char16_t\20const*\2c\20int\29 +6547:icu_74::UCharsTrie::nextImpl\28char16_t\20const*\2c\20int\29 +6548:icu_74::UCharsTrie::nextForCodePoint\28int\29 +6549:icu_74::UCharsTrie::jumpByDelta\28char16_t\20const*\29 +6550:icu_74::UCharsTrie::getValue\28\29\20const +6551:icu_74::UCharsTrie::Iterator::branchNext\28char16_t\20const*\2c\20int\2c\20UErrorCode&\29 +6552:icu_74::UCharsDictionaryMatcher::~UCharsDictionaryMatcher\28\29 +6553:icu_74::ThaiBreakEngine::~ThaiBreakEngine\28\29 +6554:icu_74::StringTrieBuilder::~StringTrieBuilder\28\29 +6555:icu_74::StringTrieBuilder::writeBranchSubNode\28int\2c\20int\2c\20int\2c\20int\29 +6556:icu_74::StringEnumeration::setChars\28char\20const*\2c\20int\2c\20UErrorCode&\29 +6557:icu_74::SimpleLocaleKeyFactory::~SimpleLocaleKeyFactory\28\29 +6558:icu_74::SimpleFilteredSentenceBreakIterator::~SimpleFilteredSentenceBreakIterator\28\29 +6559:icu_74::SimpleFilteredSentenceBreakIterator::internalPrev\28int\29 +6560:icu_74::SimpleFilteredSentenceBreakData::~SimpleFilteredSentenceBreakData\28\29 +6561:icu_74::SimpleFilteredBreakIteratorBuilder::~SimpleFilteredBreakIteratorBuilder\28\29 +6562:icu_74::SimpleFactory::~SimpleFactory\28\29 +6563:icu_74::ServiceEnumeration::~ServiceEnumeration\28\29 +6564:icu_74::ServiceEnumeration::upToDate\28UErrorCode&\29\20const +6565:icu_74::RuleCharacterIterator::skipIgnored\28int\29 +6566:icu_74::RuleCharacterIterator::lookahead\28icu_74::UnicodeString&\2c\20int\29\20const +6567:icu_74::RuleCharacterIterator::atEnd\28\29\20const +6568:icu_74::RuleCharacterIterator::_current\28\29\20const +6569:icu_74::RuleBasedBreakIterator::~RuleBasedBreakIterator\28\29 +6570:icu_74::RuleBasedBreakIterator::handleSafePrevious\28int\29 +6571:icu_74::RuleBasedBreakIterator::RuleBasedBreakIterator\28UErrorCode*\29 +6572:icu_74::RuleBasedBreakIterator::DictionaryCache::populateDictionary\28int\2c\20int\2c\20int\2c\20int\29 +6573:icu_74::RuleBasedBreakIterator::BreakCache::~BreakCache\28\29 +6574:icu_74::RuleBasedBreakIterator::BreakCache::populatePreceding\28UErrorCode&\29 +6575:icu_74::RuleBasedBreakIterator::BreakCache::populateFollowing\28\29 +6576:icu_74::ResourceDataValue::getIntVector\28int&\2c\20UErrorCode&\29\20const +6577:icu_74::ResourceBundle::~ResourceBundle\28\29 +6578:icu_74::ReorderingBuffer::equals\28unsigned\20char\20const*\2c\20unsigned\20char\20const*\29\20const +6579:icu_74::ReorderingBuffer::ReorderingBuffer\28icu_74::Normalizer2Impl\20const&\2c\20icu_74::UnicodeString&\2c\20UErrorCode&\29 +6580:icu_74::RBBIDataWrapper::removeReference\28\29 +6581:icu_74::PropNameData::getPropertyOrValueEnum\28int\2c\20char\20const*\29 +6582:icu_74::PropNameData::findProperty\28int\29 +6583:icu_74::Normalizer2WithImpl::normalizeSecondAndAppend\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29\20const +6584:icu_74::Normalizer2WithImpl::isNormalized\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +6585:icu_74::Normalizer2Impl::recompose\28icu_74::ReorderingBuffer&\2c\20int\2c\20signed\20char\29\20const +6586:icu_74::Normalizer2Impl::init\28int\20const*\2c\20UCPTrie\20const*\2c\20unsigned\20short\20const*\2c\20unsigned\20char\20const*\29 +6587:icu_74::Normalizer2Impl::hasCompBoundaryBefore\28int\2c\20unsigned\20short\29\20const +6588:icu_74::Normalizer2Impl::findNextFCDBoundary\28char16_t\20const*\2c\20char16_t\20const*\29\20const +6589:icu_74::Normalizer2Impl::ensureCanonIterData\28UErrorCode&\29\20const +6590:icu_74::Normalizer2Impl::decompose\28int\2c\20unsigned\20short\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +6591:icu_74::Normalizer2Impl::decomposeUTF8\28unsigned\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::ByteSink*\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +6592:icu_74::Normalizer2Impl::composeUTF8\28unsigned\20int\2c\20signed\20char\2c\20unsigned\20char\20const*\2c\20unsigned\20char\20const*\2c\20icu_74::ByteSink*\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +6593:icu_74::Normalizer2Impl::composeQuickCheck\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20UNormalizationCheckResult*\29\20const +6594:icu_74::Normalizer2Impl::combine\28unsigned\20short\20const*\2c\20int\29 +6595:icu_74::Normalizer2Factory::getNFKC_CFImpl\28UErrorCode&\29 +6596:icu_74::Normalizer2Factory::getInstance\28UNormalizationMode\2c\20UErrorCode&\29 +6597:icu_74::Normalizer2::getNFKCInstance\28UErrorCode&\29 +6598:icu_74::Normalizer2::getNFDInstance\28UErrorCode&\29 +6599:icu_74::Normalizer2::getNFCInstance\28UErrorCode&\29 +6600:icu_74::Norm2AllModes::createInstance\28icu_74::Normalizer2Impl*\2c\20UErrorCode&\29 +6601:icu_74::NoopNormalizer2::normalizeSecondAndAppend\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +6602:icu_74::NoopNormalizer2::isNormalized\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +6603:icu_74::MlBreakEngine::~MlBreakEngine\28\29 +6604:icu_74::MaybeStackArray::resize\28int\2c\20int\29 +6605:icu_74::LocaleUtility::initNameFromLocale\28icu_74::Locale\20const&\2c\20icu_74::UnicodeString&\29 +6606:icu_74::LocaleKey::~LocaleKey\28\29 +6607:icu_74::LocaleKey::createWithCanonicalFallback\28icu_74::UnicodeString\20const*\2c\20icu_74::UnicodeString\20const*\2c\20int\2c\20UErrorCode&\29 +6608:icu_74::LocaleDistanceData::~LocaleDistanceData\28\29 +6609:icu_74::LocaleBuilder::setScript\28icu_74::StringPiece\29 +6610:icu_74::LocaleBuilder::setLanguage\28icu_74::StringPiece\29 +6611:icu_74::LocaleBuilder::build\28UErrorCode&\29 +6612:icu_74::LocaleBased::setLocaleIDs\28char\20const*\2c\20char\20const*\29 +6613:icu_74::LocaleBased::getLocaleID\28ULocDataLocaleType\2c\20UErrorCode&\29\20const +6614:icu_74::Locale::operator=\28icu_74::Locale&&\29 +6615:icu_74::Locale::initBaseName\28UErrorCode&\29 +6616:icu_74::Locale::createKeywords\28UErrorCode&\29\20const +6617:icu_74::Locale::createFromName\28char\20const*\29 +6618:icu_74::Locale::Locale\28icu_74::Locale::ELocaleType\29 +6619:icu_74::LocalULanguageTagPointer::~LocalULanguageTagPointer\28\29 +6620:icu_74::LocalPointer::adoptInstead\28icu_74::UCharsTrie*\29 +6621:icu_74::LocalPointer::~LocalPointer\28\29 +6622:icu_74::LocalPointer::adoptInsteadAndCheckErrorCode\28icu_74::CharString*\2c\20UErrorCode&\29 +6623:icu_74::LoadedNormalizer2Impl::~LoadedNormalizer2Impl\28\29 +6624:icu_74::LaoBreakEngine::~LaoBreakEngine\28\29 +6625:icu_74::LaoBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +6626:icu_74::LSTMBreakEngine::~LSTMBreakEngine\28\29 +6627:icu_74::LSR::operator=\28icu_74::LSR&&\29 +6628:icu_74::KhmerBreakEngine::~KhmerBreakEngine\28\29 +6629:icu_74::KeywordEnumeration::~KeywordEnumeration\28\29 +6630:icu_74::KeywordEnumeration::KeywordEnumeration\28char\20const*\2c\20int\2c\20int\2c\20UErrorCode&\29 +6631:icu_74::ICU_Utility::shouldAlwaysBeEscaped\28int\29 +6632:icu_74::ICU_Utility::escape\28icu_74::UnicodeString&\2c\20int\29 +6633:icu_74::ICUServiceKey::parseSuffix\28icu_74::UnicodeString&\29 +6634:icu_74::ICUServiceKey::ICUServiceKey\28icu_74::UnicodeString\20const&\29 +6635:icu_74::ICUService::~ICUService\28\29 +6636:icu_74::ICUService::registerFactory\28icu_74::ICUServiceFactory*\2c\20UErrorCode&\29 +6637:icu_74::ICUService::getVisibleIDs\28icu_74::UVector&\2c\20UErrorCode&\29\20const +6638:icu_74::ICUNotifier::~ICUNotifier\28\29 +6639:icu_74::ICULocaleService::validateFallbackLocale\28\29\20const +6640:icu_74::ICULanguageBreakFactory::~ICULanguageBreakFactory\28\29 +6641:icu_74::ICULanguageBreakFactory::ensureEngines\28UErrorCode&\29 +6642:icu_74::ICUBreakIteratorFactory::~ICUBreakIteratorFactory\28\29_13959 +6643:icu_74::Hashtable::nextElement\28int&\29\20const +6644:icu_74::Hashtable::init\28int\20\28*\29\28UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20UErrorCode&\29 +6645:icu_74::Hashtable::Hashtable\28\29 +6646:icu_74::FCDNormalizer2::hasBoundaryBefore\28int\29\20const +6647:icu_74::FCDNormalizer2::hasBoundaryAfter\28int\29\20const +6648:icu_74::EmojiProps::~EmojiProps\28\29 +6649:icu_74::Edits::growArray\28\29 +6650:icu_74::DictionaryBreakEngine::setCharacters\28icu_74::UnicodeSet\20const&\29 +6651:icu_74::CjkBreakEngine::~CjkBreakEngine\28\29 +6652:icu_74::CjkBreakEngine::CjkBreakEngine\28icu_74::DictionaryMatcher*\2c\20icu_74::LanguageType\2c\20UErrorCode&\29 +6653:icu_74::CharString::cloneData\28UErrorCode&\29\20const +6654:icu_74::CharString*\20icu_74::MemoryPool::create\28char\20const*&\2c\20UErrorCode&\29 +6655:icu_74::CanonIterData::~CanonIterData\28\29 +6656:icu_74::CanonIterData::addToStartSet\28int\2c\20int\2c\20UErrorCode&\29 +6657:icu_74::CacheEntry::~CacheEntry\28\29 +6658:icu_74::BytesTrie::skipValue\28unsigned\20char\20const*\2c\20int\29 +6659:icu_74::BytesTrie::nextImpl\28unsigned\20char\20const*\2c\20int\29 +6660:icu_74::BytesDictionaryMatcher::~BytesDictionaryMatcher\28\29 +6661:icu_74::ByteSinkUtil::appendCodePoint\28int\2c\20int\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\29 +6662:icu_74::BurmeseBreakEngine::~BurmeseBreakEngine\28\29 +6663:icu_74::BreakIterator::getLocale\28ULocDataLocaleType\2c\20UErrorCode&\29\20const +6664:icu_74::BreakIterator::createCharacterInstance\28icu_74::Locale\20const&\2c\20UErrorCode&\29 +6665:icu_74::BreakEngineWrapper::~BreakEngineWrapper\28\29 +6666:icu_74::Array1D::~Array1D\28\29 +6667:icu_74::Array1D::tanh\28icu_74::Array1D\20const&\29 +6668:icu_74::Array1D::hadamardProduct\28icu_74::ReadArray1D\20const&\29 +6669:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +6670:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +6671:hb_vector_t\2c\20false>::shrink_vector\28unsigned\20int\29 +6672:hb_vector_t\2c\20false>::resize\28int\2c\20bool\2c\20bool\29 +6673:hb_vector_t\2c\20false>::fini\28\29 +6674:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +6675:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +6676:hb_vector_t::pop\28\29 +6677:hb_vector_t::clear\28\29 +6678:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +6679:hb_vector_t::push\28\29 +6680:hb_vector_t::alloc_exact\28unsigned\20int\29 +6681:hb_vector_t::alloc\28unsigned\20int\2c\20bool\29 +6682:hb_vector_t::resize\28int\2c\20bool\2c\20bool\29 +6683:hb_vector_t::clear\28\29 +6684:hb_vector_t\2c\20false>::shrink_vector\28unsigned\20int\29 +6685:hb_vector_t\2c\20false>::fini\28\29 +6686:hb_vector_t::shrink_vector\28unsigned\20int\29 +6687:hb_vector_t::fini\28\29 +6688:hb_vector_t::shrink_vector\28unsigned\20int\29 +6689:hb_unicode_mirroring_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +6690:hb_unicode_funcs_t::is_default_ignorable\28unsigned\20int\29 +6691:hb_unicode_funcs_get_default +6692:hb_tag_from_string +6693:hb_shape_plan_key_t::init\28bool\2c\20hb_face_t*\2c\20hb_segment_properties_t\20const*\2c\20hb_feature_t\20const*\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20char\20const*\20const*\29 +6694:hb_shape_plan_key_t::fini\28\29 +6695:hb_set_digest_t::union_\28hb_set_digest_t\20const&\29 +6696:hb_set_digest_t::may_intersect\28hb_set_digest_t\20const&\29\20const +6697:hb_serialize_context_t::object_t::hash\28\29\20const +6698:hb_serialize_context_t::fini\28\29 +6699:hb_sanitize_context_t::return_t\20OT::Context::dispatch\28hb_sanitize_context_t*\29\20const +6700:hb_sanitize_context_t::return_t\20OT::ChainContext::dispatch\28hb_sanitize_context_t*\29\20const +6701:hb_sanitize_context_t::hb_sanitize_context_t\28hb_blob_t*\29 +6702:hb_paint_funcs_t::sweep_gradient\28void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\29 +6703:hb_paint_funcs_t::radial_gradient\28void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6704:hb_paint_funcs_t::push_skew\28void*\2c\20float\2c\20float\29 +6705:hb_paint_funcs_t::push_rotate\28void*\2c\20float\29 +6706:hb_paint_funcs_t::push_inverse_font_transform\28void*\2c\20hb_font_t\20const*\29 +6707:hb_paint_funcs_t::push_group\28void*\29 +6708:hb_paint_funcs_t::pop_group\28void*\2c\20hb_paint_composite_mode_t\29 +6709:hb_paint_funcs_t::linear_gradient\28void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6710:hb_paint_extents_paint_linear_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +6711:hb_paint_extents_get_funcs\28\29 +6712:hb_paint_extents_context_t::~hb_paint_extents_context_t\28\29 +6713:hb_paint_extents_context_t::pop_clip\28\29 +6714:hb_paint_extents_context_t::clear\28\29 +6715:hb_ot_map_t::get_mask\28unsigned\20int\2c\20unsigned\20int*\29\20const +6716:hb_ot_map_t::fini\28\29 +6717:hb_ot_map_builder_t::add_pause\28unsigned\20int\2c\20bool\20\28*\29\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29\29 +6718:hb_ot_map_builder_t::add_lookups\28hb_ot_map_t&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20unsigned\20int\29 +6719:hb_ot_layout_has_substitution +6720:hb_ot_font_set_funcs +6721:hb_memcmp\28void\20const*\2c\20void\20const*\2c\20unsigned\20int\29 +6722:hb_lazy_loader_t\2c\20hb_face_t\2c\2038u\2c\20OT::sbix_accelerator_t>::get_stored\28\29\20const +6723:hb_lazy_loader_t\2c\20hb_face_t\2c\207u\2c\20OT::post_accelerator_t>::get_stored\28\29\20const +6724:hb_lazy_loader_t\2c\20hb_face_t\2c\207u\2c\20OT::post_accelerator_t>::do_destroy\28OT::post_accelerator_t*\29 +6725:hb_lazy_loader_t\2c\20hb_face_t\2c\205u\2c\20OT::hmtx_accelerator_t>::get_stored\28\29\20const +6726:hb_lazy_loader_t\2c\20hb_face_t\2c\2021u\2c\20OT::gvar_accelerator_t>::do_destroy\28OT::gvar_accelerator_t*\29 +6727:hb_lazy_loader_t\2c\20hb_face_t\2c\2015u\2c\20OT::glyf_accelerator_t>::do_destroy\28OT::glyf_accelerator_t*\29 +6728:hb_lazy_loader_t\2c\20hb_face_t\2c\203u\2c\20OT::cmap_accelerator_t>::do_destroy\28OT::cmap_accelerator_t*\29 +6729:hb_lazy_loader_t\2c\20hb_face_t\2c\2017u\2c\20OT::cff2_accelerator_t>::get_stored\28\29\20const +6730:hb_lazy_loader_t\2c\20hb_face_t\2c\2017u\2c\20OT::cff2_accelerator_t>::do_destroy\28OT::cff2_accelerator_t*\29 +6731:hb_lazy_loader_t\2c\20hb_face_t\2c\2016u\2c\20OT::cff1_accelerator_t>::do_destroy\28OT::cff1_accelerator_t*\29 +6732:hb_lazy_loader_t\2c\20hb_face_t\2c\2019u\2c\20hb_blob_t>::get\28\29\20const +6733:hb_lazy_loader_t\2c\20hb_face_t\2c\2024u\2c\20OT::GDEF_accelerator_t>::do_destroy\28OT::GDEF_accelerator_t*\29 +6734:hb_lazy_loader_t\2c\20hb_face_t\2c\2036u\2c\20hb_blob_t>::get\28\29\20const +6735:hb_lazy_loader_t\2c\20hb_face_t\2c\2035u\2c\20OT::COLR_accelerator_t>::get_stored\28\29\20const +6736:hb_lazy_loader_t\2c\20hb_face_t\2c\2035u\2c\20OT::COLR_accelerator_t>::do_destroy\28OT::COLR_accelerator_t*\29 +6737:hb_lazy_loader_t\2c\20hb_face_t\2c\2037u\2c\20OT::CBDT_accelerator_t>::get_stored\28\29\20const +6738:hb_lazy_loader_t\2c\20hb_face_t\2c\2037u\2c\20OT::CBDT_accelerator_t>::do_destroy\28OT::CBDT_accelerator_t*\29 +6739:hb_lazy_loader_t\2c\20hb_face_t\2c\2033u\2c\20hb_blob_t>::get\28\29\20const +6740:hb_lazy_loader_t\2c\20hb_face_t\2c\2030u\2c\20AAT::kerx_accelerator_t>::get_stored\28\29\20const +6741:hb_language_matches +6742:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>\2c\20hb_pair_t>>::operator-=\28unsigned\20int\29\20& +6743:hb_iter_t\2c\20hb_filter_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>>\2c\20hb_pair_t>>::operator+=\28unsigned\20int\29\20& +6744:hb_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20hb_pair_t>::operator++\28\29\20& +6745:hb_iter_t\2c\20hb_array_t>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_glyph_info_t\20const&\29\2c\20$_7\20const&\2c\20\28void*\290>\2c\20find_syllables_use\28hb_buffer_t*\29::'lambda'\28hb_pair_t\29\2c\20$_6\20const&\2c\20\28void*\290>\2c\20hb_pair_t>::operator--\28\29\20& +6746:hb_indic_get_categories\28unsigned\20int\29 +6747:hb_hashmap_t::fini\28\29 +6748:hb_hashmap_t::fetch_item\28hb_serialize_context_t::object_t\20const*\20const&\2c\20unsigned\20int\29\20const +6749:hb_font_t::synthetic_glyph_extents\28hb_glyph_extents_t*\29 +6750:hb_font_t::subtract_glyph_origin_for_direction\28unsigned\20int\2c\20hb_direction_t\2c\20int*\2c\20int*\29 +6751:hb_font_t::subtract_glyph_h_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +6752:hb_font_t::guess_v_origin_minus_h_origin\28unsigned\20int\2c\20int*\2c\20int*\29 +6753:hb_font_t::get_variation_glyph\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\29 +6754:hb_font_t::get_glyph_v_origin_with_fallback\28unsigned\20int\2c\20int*\2c\20int*\29 +6755:hb_font_t::get_glyph_v_kerning\28unsigned\20int\2c\20unsigned\20int\29 +6756:hb_font_t::get_glyph_h_kerning\28unsigned\20int\2c\20unsigned\20int\29 +6757:hb_font_t::get_glyph_contour_point\28unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\29 +6758:hb_font_t::get_font_h_extents\28hb_font_extents_t*\29 +6759:hb_font_t::draw_glyph\28unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\29 +6760:hb_font_set_variations +6761:hb_font_set_funcs +6762:hb_font_get_variation_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +6763:hb_font_get_font_h_extents_nil\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +6764:hb_font_funcs_set_variation_glyph_func +6765:hb_font_funcs_set_nominal_glyphs_func +6766:hb_font_funcs_set_nominal_glyph_func +6767:hb_font_funcs_set_glyph_h_advances_func +6768:hb_font_funcs_set_glyph_extents_func +6769:hb_font_funcs_create +6770:hb_font_destroy +6771:hb_face_destroy +6772:hb_face_create_for_tables +6773:hb_draw_move_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +6774:hb_draw_funcs_t::emit_move_to\28void*\2c\20hb_draw_state_t&\2c\20float\2c\20float\29 +6775:hb_draw_funcs_set_quadratic_to_func +6776:hb_draw_funcs_set_move_to_func +6777:hb_draw_funcs_set_line_to_func +6778:hb_draw_funcs_set_cubic_to_func +6779:hb_draw_funcs_destroy +6780:hb_draw_funcs_create +6781:hb_draw_extents_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +6782:hb_cache_t<24u\2c\2016u\2c\208u\2c\20true>::clear\28\29 +6783:hb_buffer_t::sort\28unsigned\20int\2c\20unsigned\20int\2c\20int\20\28*\29\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29\29 +6784:hb_buffer_t::safe_to_insert_tatweel\28unsigned\20int\2c\20unsigned\20int\29 +6785:hb_buffer_t::next_glyphs\28unsigned\20int\29 +6786:hb_buffer_t::message_impl\28hb_font_t*\2c\20char\20const*\2c\20void*\29 +6787:hb_buffer_t::delete_glyphs_inplace\28bool\20\28*\29\28hb_glyph_info_t\20const*\29\29 +6788:hb_buffer_t::clear\28\29 +6789:hb_buffer_t::add\28unsigned\20int\2c\20unsigned\20int\29 +6790:hb_buffer_get_glyph_positions +6791:hb_buffer_diff +6792:hb_buffer_clear_contents +6793:hb_buffer_add_utf8 +6794:hb_bounds_t::union_\28hb_bounds_t\20const&\29 +6795:hb_bounds_t::intersect\28hb_bounds_t\20const&\29 +6796:hb_blob_t::destroy_user_data\28\29 +6797:hb_array_t::hash\28\29\20const +6798:hb_array_t::cmp\28hb_array_t\20const&\29\20const +6799:hb_array_t>::qsort\28int\20\28*\29\28void\20const*\2c\20void\20const*\29\29 +6800:hb_array_t::__next__\28\29 +6801:hb_aat_map_builder_t::~hb_aat_map_builder_t\28\29 +6802:hb_aat_map_builder_t::feature_info_t\20const*\20hb_vector_t::bsearch\28hb_aat_map_builder_t::feature_info_t\20const&\2c\20hb_aat_map_builder_t::feature_info_t\20const*\29\20const +6803:hb_aat_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +6804:hb_aat_map_builder_t::feature_info_t::cmp\28hb_aat_map_builder_t::feature_info_t\20const&\29\20const +6805:hb_aat_map_builder_t::compile\28hb_aat_map_t&\29 +6806:hb_aat_layout_remove_deleted_glyphs\28hb_buffer_t*\29 +6807:hb_aat_layout_compile_map\28hb_aat_map_builder_t\20const*\2c\20hb_aat_map_t*\29 +6808:has_msaa_render_buffer\28GrSurfaceProxy\20const*\2c\20GrGLCaps\20const&\29 +6809:hair_cubic\28SkPoint\20const*\2c\20SkRegion\20const*\2c\20SkBlitter*\2c\20void\20\28*\29\28SkPoint\20const*\2c\20int\2c\20SkRegion\20const*\2c\20SkBlitter*\29\29 +6810:getint +6811:get_win_string +6812:get_paint\28GrAA\2c\20unsigned\20char\29 +6813:get_layer_mapping_and_bounds\28SkSpan>\2c\20SkM44\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\2c\20float\29::$_0::operator\28\29\28int\29\20const +6814:get_dst_swizzle_and_store\28GrColorType\2c\20SkRasterPipelineOp*\2c\20LumMode*\2c\20bool*\2c\20bool*\29 +6815:get_driver_and_version\28GrGLStandard\2c\20GrGLVendor\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +6816:get_apple_string +6817:getSingleRun\28UBiDi*\2c\20unsigned\20char\29 +6818:getScript\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +6819:getRunFromLogicalIndex\28UBiDi*\2c\20int\29 +6820:getMirror\28int\2c\20unsigned\20short\29 +6821:getFallbackData\28UResourceBundle\20const*\2c\20char\20const**\2c\20unsigned\20int*\2c\20UErrorCode*\29 +6822:getDotType\28int\29 +6823:getASCIIPropertyNameChar\28char\20const*\29 +6824:geometric_overlap\28SkRect\20const&\2c\20SkRect\20const&\29 +6825:geometric_contains\28SkRect\20const&\2c\20SkRect\20const&\29 +6826:gen_key\28skgpu::KeyBuilder*\2c\20GrProgramInfo\20const&\2c\20GrCaps\20const&\29 +6827:gen_fp_key\28GrFragmentProcessor\20const&\2c\20GrCaps\20const&\2c\20skgpu::KeyBuilder*\29 +6828:gather_uniforms_and_check_for_main\28SkSL::Program\20const&\2c\20std::__2::vector>*\2c\20std::__2::vector>*\2c\20SkRuntimeEffect::Uniform::Flags\2c\20unsigned\20long*\29 +6829:fwrite +6830:ft_var_to_normalized +6831:ft_var_load_item_variation_store +6832:ft_var_load_hvvar +6833:ft_var_load_avar +6834:ft_var_get_value_pointer +6835:ft_var_get_item_delta +6836:ft_var_apply_tuple +6837:ft_set_current_renderer +6838:ft_recompute_scaled_metrics +6839:ft_mem_strcpyn +6840:ft_mem_dup +6841:ft_hash_num_lookup +6842:ft_gzip_alloc +6843:ft_glyphslot_preset_bitmap +6844:ft_glyphslot_done +6845:ft_corner_orientation +6846:ft_corner_is_flat +6847:ft_cmap_done_internal +6848:frexp +6849:fread +6850:fputs +6851:fp_force_eval +6852:fp_barrier +6853:formulate_F1DotF2\28float\20const*\2c\20float*\29 +6854:formulate_F1DotF2\28double\20const*\2c\20double*\29 +6855:format_alignment\28SkMask::Format\29 +6856:format1_names\28unsigned\20int\29 +6857:fopen +6858:fold_opacity_layer_color_to_paint\28SkPaint\20const*\2c\20bool\2c\20SkPaint*\29 +6859:fmodl +6860:fmod +6861:flutter::\28anonymous\20namespace\29::transform\28flutter::DlColor\20const&\2c\20std::__2::array\20const&\2c\20flutter::DlColorSpace\29 +6862:flutter::\28anonymous\20namespace\29::RoundingRadiiSafeRects\28impeller::TRect\20const&\2c\20impeller::RoundingRadii\20const&\29 +6863:flutter::ToSk\28flutter::DlColorSource\20const*\29 +6864:flutter::ToSk\28flutter::DlColorFilter\20const*\29 +6865:flutter::ToApproximateSkRRect\28impeller::RoundSuperellipse\20const&\29 +6866:flutter::DlTextSkia::~DlTextSkia\28\29 +6867:flutter::DlTextSkia::Make\28sk_sp\20const&\29 +6868:flutter::DlSkPaintDispatchHelper::set_opacity\28float\29 +6869:flutter::DlSkPaintDispatchHelper::makeColorFilter\28\29\20const +6870:flutter::DlSkCanvasDispatcher::restore\28\29 +6871:flutter::DlRuntimeEffectSkia::~DlRuntimeEffectSkia\28\29_1709 +6872:flutter::DlRuntimeEffectSkia::~DlRuntimeEffectSkia\28\29 +6873:flutter::DlRuntimeEffectSkia::skia_runtime_effect\28\29\20const +6874:flutter::DlRegion::~DlRegion\28\29 +6875:flutter::DlRegion::Span&\20std::__2::vector>::emplace_back\28int&\2c\20int&\29 +6876:flutter::DlRTree::~DlRTree\28\29 +6877:flutter::DlRTree::search\28impeller::TRect\20const&\2c\20std::__2::vector>*\29\20const +6878:flutter::DlRTree::search\28flutter::DlRTree::Node\20const&\2c\20impeller::TRect\20const&\2c\20std::__2::vector>*\29\20const +6879:flutter::DlPath::IsRect\28impeller::TRect*\2c\20bool*\29\20const +6880:flutter::DlPaint::setColorSource\28std::__2::shared_ptr\29 +6881:flutter::DlPaint::operator=\28flutter::DlPaint\20const&\29 +6882:flutter::DlMatrixColorFilter::size\28\29\20const +6883:flutter::DlLinearGradientColorSource::size\28\29\20const +6884:flutter::DlLinearGradientColorSource::pod\28\29\20const +6885:flutter::DlImageFilter::outset_device_bounds\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29 +6886:flutter::DlImageFilter::map_vectors_affine\28impeller::Matrix\20const&\2c\20float\2c\20float\29 +6887:flutter::DlDilateImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6888:flutter::DlDilateImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6889:flutter::DlDilateImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +6890:flutter::DlConicalGradientColorSource::pod\28\29\20const +6891:flutter::DlComposeImageFilter::DlComposeImageFilter\28std::__2::shared_ptr\20const&\2c\20std::__2::shared_ptr\20const&\29 +6892:flutter::DlColorSource::MakeImage\28sk_sp\20const&\2c\20flutter::DlTileMode\2c\20flutter::DlTileMode\2c\20flutter::DlImageSampling\2c\20impeller::Matrix\20const*\29 +6893:flutter::DlColorFilterImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6894:flutter::DlBlurMaskFilter::shared\28\29\20const +6895:flutter::DlBlurImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +6896:flutter::DlBlendColorFilter::size\28\29\20const +6897:flutter::DisplayListStorage::realloc\28unsigned\20long\29 +6898:flutter::DisplayListStorage::operator=\28flutter::DisplayListStorage&&\29 +6899:flutter::DisplayListStorage::DisplayListStorage\28flutter::DisplayListStorage&&\29 +6900:flutter::DisplayListMatrixClipState::translate\28float\2c\20float\29 +6901:flutter::DisplayListMatrixClipState::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6902:flutter::DisplayListMatrixClipState::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6903:flutter::DisplayListMatrixClipState::skew\28float\2c\20float\29 +6904:flutter::DisplayListMatrixClipState::scale\28float\2c\20float\29 +6905:flutter::DisplayListMatrixClipState::rsuperellipse_covers_cull\28impeller::RoundSuperellipse\20const&\29\20const +6906:flutter::DisplayListMatrixClipState::rrect_covers_cull\28impeller::RoundRect\20const&\29\20const +6907:flutter::DisplayListMatrixClipState::rotate\28impeller::Radians\29 +6908:flutter::DisplayListMatrixClipState::oval_covers_cull\28impeller::TRect\20const&\29\20const +6909:flutter::DisplayListMatrixClipState::clipRSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +6910:flutter::DisplayListMatrixClipState::clipRRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +6911:flutter::DisplayListMatrixClipState::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +6912:flutter::DisplayListMatrixClipState::GetLocalCullCoverage\28\29\20const +6913:flutter::DisplayListBuilder::~DisplayListBuilder\28\29_1271 +6914:flutter::DisplayListBuilder::drawDisplayList\28sk_sp\2c\20float\29 +6915:flutter::DisplayListBuilder::SetTransform\28impeller::Matrix\20const&\29 +6916:flutter::DisplayListBuilder::SaveInfo::SaveInfo\28impeller::TRect\20const&\29 +6917:flutter::DisplayListBuilder::SaveInfo::AccumulateBoundsLocal\28impeller::TRect\20const&\29 +6918:flutter::DisplayListBuilder::SaveInfo*\20std::__2::construct_at\5babi:ne180100\5d&\2c\20unsigned\20long&\2c\20flutter::DisplayListBuilder::SaveInfo*>\28flutter::DisplayListBuilder::SaveInfo*\2c\20flutter::DisplayListBuilder::SaveInfo*&&\2c\20std::__2::shared_ptr&\2c\20unsigned\20long&\29 +6919:flutter::DisplayListBuilder::SaveInfo*\20std::__2::construct_at\5babi:ne180100\5d\28flutter::DisplayListBuilder::SaveInfo*\2c\20flutter::DisplayListBuilder::SaveInfo*&&\29 +6920:flutter::DisplayListBuilder::RTreeData::~RTreeData\28\29 +6921:flutter::DisplayListBuilder::LayerInfo::LayerInfo\28std::__2::shared_ptr\20const&\2c\20unsigned\20long\29 +6922:flutter::DisplayListBuilder::Init\28bool\29 +6923:flutter::DisplayListBuilder::GetImageInfo\28\29\20const +6924:flutter::DisplayListBuilder::FlagsForPointMode\28flutter::DlPointMode\29 +6925:flutter::DisplayListBuilder::DrawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlPaint\20const&\29 +6926:flutter::DisplayListBuilder::CheckLayerOpacityHairlineCompatibility\28\29 +6927:flutter::DisplayListBuilder::AccumulateUnbounded\28flutter::DisplayListBuilder::SaveInfo\20const&\29 +6928:flutter::DisplayList::~DisplayList\28\29 +6929:flutter::DisplayList::DisposeOps\28flutter::DisplayListStorage\20const&\2c\20std::__2::vector>\20const&\29 +6930:flutter::DisplayList::DispatchOneOp\28flutter::DlOpReceiver&\2c\20unsigned\20char\20const*\29\20const +6931:float\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +6932:first_axis_intersection\28double\20const*\2c\20bool\2c\20double\2c\20double*\29 +6933:fiprintf +6934:find_unicode_charmap +6935:find_diff_pt\28SkPoint\20const*\2c\20int\2c\20int\2c\20int\29 +6936:fillable\28SkRect\20const&\29 +6937:fileno +6938:expf_\28float\29 +6939:exp2f_\28float\29 +6940:eval_cubic_pts\28float\2c\20float\2c\20float\2c\20float\2c\20float\29 +6941:eval_cubic_derivative\28SkPoint\20const*\2c\20float\29 +6942:entryIncrease\28UResourceDataEntry*\29 +6943:emscripten_builtin_memalign +6944:emptyOnNull\28sk_sp&&\29 +6945:elliptical_effect_uses_scale\28GrShaderCaps\20const&\2c\20SkRRect\20const&\29 +6946:edges_too_close\28SkAnalyticEdge*\2c\20SkAnalyticEdge*\2c\20int\29 +6947:edge_line_needs_recursion\28SkPoint\20const&\2c\20SkPoint\20const&\29 +6948:eat_space_sep_strings\28skia_private::TArray*\2c\20char\20const*\29 +6949:draw_nine\28SkMask\20const&\2c\20SkIRect\20const&\2c\20SkIPoint\20const&\2c\20bool\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +6950:dquad_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6951:double\20std::__2::__num_get_float\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20unsigned\20int&\29 +6952:do_newlocale +6953:do_fixed +6954:doWriteReverse\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +6955:doWriteForward\28char16_t\20const*\2c\20int\2c\20char16_t*\2c\20int\2c\20unsigned\20short\2c\20UErrorCode*\29 +6956:doOpenChoice\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20signed\20char\20\28*\29\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29\2c\20void*\2c\20UErrorCode*\29 +6957:doLoadFromIndividualFiles\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20signed\20char\20\28*\29\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29\2c\20void*\2c\20UErrorCode*\2c\20UErrorCode*\29 +6958:doInsertionSort\28char*\2c\20int\2c\20int\2c\20int\20\28*\29\28void\20const*\2c\20void\20const*\2c\20void\20const*\29\2c\20void\20const*\2c\20void*\29 +6959:dline_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6960:distance_to_sentinel\28int\20const*\29 +6961:diff_to_shift\28int\2c\20int\2c\20int\29\20\28.685\29 +6962:diff_to_shift\28int\2c\20int\2c\20int\29 +6963:destroy_size +6964:destroy_charmaps +6965:decompose_current_character\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\29 +6966:decompose\28hb_ot_shape_normalize_context_t\20const*\2c\20bool\2c\20unsigned\20int\29 +6967:decltype\28utext_openUTF8_74\28std::forward\28fp\29\2c\20std::forward\28fp\29\2c\20std::forward\28fp\29\2c\20std::forward\28fp\29\29\29\20sk_utext_openUTF8\28std::nullptr_t&&\2c\20char\20const*&&\2c\20int&\2c\20UErrorCode*&&\29 +6968:decltype\28uloc_getDefault_74\28\29\29\20sk_uloc_getDefault<>\28\29 +6969:decltype\28ubrk_next_74\28std::forward\28fp\29\29\29\20sk_ubrk_next\28UBreakIterator*&&\29 +6970:decltype\28ubrk_first_74\28std::forward\28fp\29\29\29\20sk_ubrk_first\28UBreakIterator*&&\29 +6971:decltype\28ubrk_close_74\28std::forward\28fp\29\29\29\20sk_ubrk_close\28UBreakIterator*&\29 +6972:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::Make\28SkArenaAlloc*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6973:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&\2c\20skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathCurveTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6974:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::MeshGP::Make\28SkArenaAlloc*\2c\20sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6975:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::GaussianPass\2c\20int&\2c\20float*&\2c\20skvx::Vec<1\2c\20float>*&>\28int&\2c\20float*&\2c\20skvx::Vec<1\2c\20float>*&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::GaussianPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6976:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::A8Pass\2c\20unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&>\28unsigned\20long\20long&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20unsigned\20int*&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::A8Pass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6977:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::UniqueKey\20const&\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29>\28GrThreadSafeCache::Entry&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6978:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrRRectShadowGeoProc::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6979:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28GrQuadEffect::Make\28SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrCaps\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6980:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrPipeline::InitArgs&\2c\20GrProcessorSet&&\2c\20GrAppliedClip&&\29::'lambda'\28void*\29>\28GrPipeline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6981:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldA8TextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20float\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6982:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28CircleGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +6983:decltype\28fp0\28\28SkRecords::NoOp\29\28\29\29\29\20SkRecord::visit\28int\2c\20SkRecords::Draw&\29\20const +6984:decltype\28fp0\28\28SkRecords::NoOp*\29\28nullptr\29\29\29\20SkRecord::mutate\28int\2c\20SkRecord::Destroyer&\29 +6985:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +6986:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>>::__generic_construct\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__ctor\2c\20std::__2::unique_ptr>>>&\2c\20std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&>\28std::__2::__variant_detail::__move_constructor\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&&\29 +6987:dcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +6988:dcubic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6989:dconic_intersect_ray\28SkDCurve\20const&\2c\20SkDLine\20const&\2c\20SkIntersections*\29 +6990:data_destroy_arabic\28void*\29 +6991:data_create_arabic\28hb_ot_shape_plan_t\20const*\29 +6992:cycle +6993:crop_simple_rect\28SkRect\20const&\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +6994:crop_rect\28SkRect\20const&\2c\20float*\2c\20float*\2c\20float*\2c\20float*\2c\20float*\29 +6995:count_scalable_pixels\28int\20const*\2c\20int\2c\20bool\2c\20int\2c\20int\29 +6996:copysignl +6997:copy_mask_to_cacheddata\28SkMaskBuilder*\2c\20SkResourceCache*\29 +6998:conservative_round_to_int\28SkRect\20const&\29 +6999:conic_eval_tan\28double\20const*\2c\20float\2c\20double\29 +7000:conic_eval_numerator\28float\20const*\2c\20float\2c\20float\29 +7001:conic_deriv_coeff\28double\20const*\2c\20float\2c\20double*\29 +7002:compute_pos_tan\28SkPoint\20const*\2c\20unsigned\20int\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +7003:compute_normal\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20SkPoint*\29 +7004:compute_intersection\28OffsetSegment\20const&\2c\20OffsetSegment\20const&\2c\20SkPoint*\2c\20float*\2c\20float*\29 +7005:compute_anti_width\28short\20const*\29 +7006:compose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +7007:compare_offsets +7008:clip_to_limit\28SkRegion\20const&\2c\20SkRegion*\29 +7009:clip_line\28SkPoint*\2c\20SkRect\20const&\2c\20float\2c\20float\29 +7010:clean_sampling_for_constraint\28SkSamplingOptions\20const&\2c\20SkCanvas::SrcRectConstraint\29 +7011:clamp_to_zero\28SkPoint*\29 +7012:clamp\28SkPoint\2c\20SkPoint\2c\20SkPoint\2c\20GrTriangulator::Comparator\20const&\29 +7013:chop_mono_cubic_at_x\28SkPoint*\2c\20float\2c\20SkPoint*\29 +7014:chopMonoQuadAt\28float\2c\20float\2c\20float\2c\20float\2c\20float*\29 +7015:chopMonoQuadAtY\28SkPoint*\2c\20float\2c\20float*\29 +7016:chopMonoQuadAtX\28SkPoint*\2c\20float\2c\20float*\29 +7017:checkint +7018:check_write_and_transfer_input\28GrGLTexture*\29 +7019:check_name\28SkString\20const&\29 +7020:check_backend_texture\28GrBackendTexture\20const&\2c\20GrGLCaps\20const&\2c\20GrGLTexture::Desc*\2c\20bool\29 +7021:checkDataItem\28DataHeader\20const*\2c\20signed\20char\20\28*\29\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29\2c\20void*\2c\20char\20const*\2c\20char\20const*\2c\20UErrorCode*\2c\20UErrorCode*\29 +7022:charIterTextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +7023:char*\20std::__2::copy\5babi:nn180100\5d\2c\20char*>\28std::__2::__wrap_iter\2c\20std::__2::__wrap_iter\2c\20char*\29 +7024:char*\20std::__2::copy\5babi:nn180100\5d\28char\20const*\2c\20char\20const*\2c\20char*\29 +7025:char*\20std::__2::__constexpr_memmove\5babi:nn180100\5d\28char*\2c\20char\20const*\2c\20std::__2::__element_count\29 +7026:char*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29 +7027:cff_vstore_done +7028:cff_subfont_load +7029:cff_subfont_done +7030:cff_size_select +7031:cff_parser_run +7032:cff_parser_init +7033:cff_make_private_dict +7034:cff_load_private_dict +7035:cff_index_get_name +7036:cff_glyph_load +7037:cff_get_kerning +7038:cff_get_glyph_data +7039:cff_fd_select_get +7040:cff_charset_compute_cids +7041:cff_builder_init +7042:cff_builder_add_point1 +7043:cff_builder_add_point +7044:cff_builder_add_contour +7045:cff_blend_check_vector +7046:cff_blend_build_vector +7047:cff1_path_param_t::end_path\28\29 +7048:cf2_stack_pop +7049:cf2_hintmask_setCounts +7050:cf2_hintmask_read +7051:cf2_glyphpath_pushMove +7052:cf2_getSeacComponent +7053:cf2_freeSeacComponent +7054:cf2_computeDarkening +7055:cf2_arrstack_setNumElements +7056:cf2_arrstack_push +7057:cbrt +7058:canvas_translate +7059:canvas_skew +7060:canvas_scale +7061:canvas_save +7062:canvas_rotate +7063:canvas_restore +7064:canvas_getSaveCount +7065:can_use_hw_blend_equation\28skgpu::BlendEquation\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\29 +7066:can_proxy_use_scratch\28GrCaps\20const&\2c\20GrSurfaceProxy*\29 +7067:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_3::operator\28\29\28SkSpan\2c\20float\29\20const +7068:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_2::operator\28\29\28SkSpan\2c\20float\29\20const +7069:calculate_path_gap\28float\2c\20float\2c\20SkPath\20const&\29::$_0::operator\28\29\28SkSpan\2c\20float\29\20const +7070:build_key\28skgpu::ResourceKey::Builder*\2c\20GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\29 +7071:build_intervals\28int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const*\2c\20float\20const*\2c\20int\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20SkRGBA4f<\28SkAlphaType\292>*\2c\20float*\29 +7072:bracketProcessChar\28BracketData*\2c\20int\29 +7073:bracketInit\28UBiDi*\2c\20BracketData*\29 +7074:bounds_t::merge\28bounds_t\20const&\29 +7075:bottom_collinear\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\29 +7076:bool\20std::__2::operator==\5babi:ne180100\5d>\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +7077:bool\20std::__2::operator==\5babi:ne180100\5d\28std::__2::variant\20const&\2c\20std::__2::variant\20const&\29 +7078:bool\20std::__2::operator!=\5babi:ne180100\5d\28std::__2::variant\20const&\2c\20std::__2::variant\20const&\29 +7079:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::RunBlock*\2c\20skia::textlayout::OneLineShaper::finish\28skia::textlayout::Block\20const&\2c\20float\2c\20float&\29::$_0&\29 +7080:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\2c\20std::__2::allocator>>\20const&\29::$_0&\2c\20impeller::TRect\20const**>\28impeller::TRect\20const**\2c\20impeller::TRect\20const**\2c\20flutter::DlRegion::setRects\28std::__2::vector\2c\20std::__2::allocator>>\20const&\29::$_0&\29 +7081:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::ProgramElement\20const**\2c\20SkSL::ProgramElement\20const**\2c\20SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::sortNewElements\28\29::'lambda'\28SkSL::ProgramElement\20const*\2c\20SkSL::ProgramElement\20const*\29&\29 +7082:bool\20std::__2::__insertion_sort_incomplete\5babi:ne180100\5d\28SkSL::FunctionDefinition\20const**\2c\20SkSL::FunctionDefinition\20const**\2c\20SkSL::Transform::FindAndDeclareBuiltinFunctions\28SkSL::Program&\29::$_0&\29 +7083:bool\20set_point_length\28SkPoint*\2c\20float\2c\20float\2c\20float\2c\20float*\29 +7084:bool\20is_parallel\28SkDLine\20const&\2c\20SkTCurve\20const&\29 +7085:bool\20init_tables\28unsigned\20char\20const*\2c\20unsigned\20long\20long\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skcms_B2A*\29 +7086:bool\20init_tables\28unsigned\20char\20const*\2c\20unsigned\20long\20long\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20skcms_A2B*\29 +7087:bool\20icu_74::\28anonymous\20namespace\29::equalBlocks\28unsigned\20short\20const*\2c\20unsigned\20int\20const*\2c\20int\29 +7088:bool\20icu_74::\28anonymous\20namespace\29::equalBlocks\28unsigned\20int\20const*\2c\20unsigned\20int\20const*\2c\20int\29 +7089:bool\20hb_vector_t::bfind\28hb_bit_set_t::page_map_t\20const&\2c\20unsigned\20int*\2c\20hb_not_found_t\2c\20unsigned\20int\29\20const +7090:bool\20hb_sanitize_context_t::check_array\28OT::Index\20const*\2c\20unsigned\20int\29\20const +7091:bool\20hb_sanitize_context_t::check_array\28AAT::Feature\20const*\2c\20unsigned\20int\29\20const +7092:bool\20hb_sanitize_context_t::check_array>\28AAT::Entry\20const*\2c\20unsigned\20int\29\20const +7093:bool\20apply_string\28OT::hb_ot_apply_context_t*\2c\20GSUBProxy::Lookup\20const&\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\29 +7094:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7095:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7096:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7097:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7098:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7099:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7100:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7101:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7102:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7103:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7104:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7105:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7106:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7107:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7108:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +7109:bool\20OT::cmap::accelerator_t::get_glyph_from_ascii\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +7110:bool\20OT::TupleValues::decompile\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\2c\20bool\29 +7111:bool\20OT::Paint::sanitize<>\28hb_sanitize_context_t*\29\20const +7112:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7113:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7114:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7115:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7116:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\2c\20unsigned\20int&&\29\20const +7117:bool\20OT::OffsetTo\2c\20void\2c\20true>::serialize_serialize\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&>\28hb_serialize_context_t*\2c\20hb_map_iter_t\2c\20hb_array_t>\2c\20$_8\20const&\2c\20\28hb_function_sortedness_t\291\2c\20\28void*\290>&\29 +7118:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7119:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\2c\20unsigned\20int&&\29\20const +7120:bool\20OT::OffsetTo\2c\20OT::IntType\2c\20void\2c\20true>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7121:bool\20OT::OffsetTo\2c\20void\2c\20true>::sanitize\28hb_sanitize_context_t*\2c\20void\20const*\2c\20AAT::trak\20const*&&\29\20const +7122:bool\20OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize<>\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +7123:bool\20OT::GSUBGPOS::sanitize\28hb_sanitize_context_t*\29\20const +7124:bool\20OT::GSUBGPOS::sanitize\28hb_sanitize_context_t*\29\20const +7125:bool\20GrTTopoSort_Visit\28GrRenderTask*\2c\20unsigned\20int*\29 +7126:blur_column\28void\20\28*\29\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29\2c\20skvx::Vec<8\2c\20unsigned\20short>\20\28*\29\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29\2c\20int\2c\20int\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20unsigned\20char\20const*\2c\20unsigned\20long\2c\20int\2c\20unsigned\20char*\2c\20unsigned\20long\29 +7127:blit_two_alphas\28AdditiveBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +7128:blit_full_alpha\28AdditiveBlitter*\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20bool\29 +7129:blender_requires_shader\28SkBlender\20const*\29 +7130:bits_to_runs\28SkBlitter*\2c\20int\2c\20int\2c\20unsigned\20char\20const*\2c\20unsigned\20char\2c\20long\2c\20unsigned\20char\29 +7131:between_closed\28double\2c\20double\2c\20double\2c\20double\2c\20bool\29 +7132:barycentric_coords\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\2c\20skvx::Vec<4\2c\20float>*\29 +7133:auto\20std::__2::__tuple_compare_three_way\5babi:ne180100\5d\28std::__2::tuple\20const&\2c\20std::__2::tuple\20const&\2c\20std::__2::integer_sequence\29 +7134:auto&&\20std::__2::__generic_get\5babi:ne180100\5d<0ul\2c\20std::__2::variant\20const&>\28std::__2::variant\20const&\29 +7135:atanf +7136:are_radius_check_predicates_valid\28float\2c\20float\2c\20float\29 +7137:arabic_fallback_plan_destroy\28arabic_fallback_plan_t*\29 +7138:apply_forward\28OT::hb_ot_apply_context_t*\2c\20OT::hb_ot_layout_lookup_accelerator_t\20const&\2c\20unsigned\20int\29 +7139:apply_fill_type\28SkPathFillType\2c\20int\29 +7140:apply_fill_type\28SkPathFillType\2c\20GrTriangulator::Poly*\29 +7141:apply_alpha_and_colorfilter\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20SkPaint\20const&\29 +7142:append_texture_swizzle\28SkString*\2c\20skgpu::Swizzle\29 +7143:append_multitexture_lookup\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20int\2c\20GrGLSLVarying\20const&\2c\20char\20const*\2c\20char\20const*\29 +7144:append_color_output\28PorterDuffXferProcessor\20const&\2c\20GrGLSLXPFragmentBuilder*\2c\20skgpu::BlendFormula::OutputType\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29 +7145:antifilldot8\28int\2c\20int\2c\20int\2c\20int\2c\20SkBlitter*\2c\20bool\29 +7146:analysis_properties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\2c\20SkBlendMode\29 +7147:afm_stream_skip_spaces +7148:afm_stream_read_string +7149:afm_stream_read_one +7150:af_sort_and_quantize_widths +7151:af_shaper_get_elem +7152:af_loader_compute_darkening +7153:af_latin_metrics_scale_dim +7154:af_latin_hints_detect_features +7155:af_hint_normal_stem +7156:af_glyph_hints_align_weak_points +7157:af_glyph_hints_align_strong_points +7158:af_face_globals_new +7159:af_cjk_metrics_scale_dim +7160:af_cjk_metrics_scale +7161:af_cjk_metrics_init_widths +7162:af_cjk_metrics_check_digits +7163:af_cjk_hints_init +7164:af_cjk_hints_detect_features +7165:af_cjk_hints_compute_blue_edges +7166:af_cjk_hints_apply +7167:af_cjk_get_standard_widths +7168:af_cjk_compute_stem_width +7169:af_axis_hints_new_edge +7170:adjust_mipmapped\28skgpu::Mipmapped\2c\20SkBitmap\20const&\2c\20GrCaps\20const*\29 +7171:add_line\28SkPoint\20const*\2c\20skia_private::TArray*\29 +7172:a_ctz_32 +7173:_uhash_setElement\28UHashtable*\2c\20UHashElement*\2c\20int\2c\20UElement\2c\20UElement\2c\20signed\20char\29 +7174:_uhash_remove\28UHashtable*\2c\20UElement\29 +7175:_uhash_rehash\28UHashtable*\2c\20UErrorCode*\29 +7176:_uhash_put\28UHashtable*\2c\20UElement\2c\20UElement\2c\20signed\20char\2c\20UErrorCode*\29 +7177:_uhash_internalRemoveElement\28UHashtable*\2c\20UHashElement*\29 +7178:_uhash_init\28UHashtable*\2c\20int\20\28*\29\28UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20int\2c\20UErrorCode*\29 +7179:_uhash_create\28int\20\28*\29\28UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20signed\20char\20\28*\29\28UElement\2c\20UElement\29\2c\20int\2c\20UErrorCode*\29 +7180:_uhash_allocate\28UHashtable*\2c\20int\2c\20UErrorCode*\29 +7181:_sortVariants\28VariantListEntry*\29 +7182:_res_findTable32Item\28ResourceData\20const*\2c\20int\20const*\2c\20int\2c\20char\20const*\2c\20char\20const**\29 +7183:_pow10\28unsigned\20int\29 +7184:_isStatefulSepListOf\28signed\20char\20\28*\29\28int&\2c\20char\20const*\2c\20int\29\2c\20char\20const*\2c\20int\29 +7185:_isExtensionSubtag\28char\20const*\2c\20int\29 +7186:_isExtensionSingleton\28char\20const*\2c\20int\29 +7187:_isAlphaNumericString\28char\20const*\2c\20int\29 +7188:_hb_preprocess_text_vowel_constraints\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +7189:_hb_ot_shape +7190:_hb_options_init\28\29 +7191:_hb_font_create\28hb_face_t*\29 +7192:_hb_fallback_shape +7193:_glyf_get_advance_with_var_unscaled\28hb_font_t*\2c\20unsigned\20int\2c\20bool\29 +7194:_emscripten_timeout +7195:_addVariantToList\28VariantListEntry**\2c\20VariantListEntry*\29 +7196:_addAttributeToList\28AttributeListEntry**\2c\20AttributeListEntry*\29 +7197:__wasm_init_tls +7198:__vfprintf_internal +7199:__trunctfsf2 +7200:__tan +7201:__strftime_l +7202:__rem_pio2_large +7203:__nl_langinfo_l +7204:__munmap +7205:__mmap +7206:__math_xflowf +7207:__math_invalidf +7208:__loc_is_allocated +7209:__isxdigit_l +7210:__getf2 +7211:__get_locale +7212:__ftello_unlocked +7213:__fstatat +7214:__floatscan +7215:__expo2 +7216:__dynamic_cast +7217:__divtf3 +7218:__cxxabiv1::__base_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +7219:__cxxabiv1::\28anonymous\20namespace\29::GuardObject<__cxxabiv1::\28anonymous\20namespace\29::InitByteGlobalMutex<__cxxabiv1::\28anonymous\20namespace\29::LibcppMutex\2c\20__cxxabiv1::\28anonymous\20namespace\29::LibcppCondVar\2c\20__cxxabiv1::\28anonymous\20namespace\29::GlobalStatic<__cxxabiv1::\28anonymous\20namespace\29::LibcppMutex>::instance\2c\20__cxxabiv1::\28anonymous\20namespace\29::GlobalStatic<__cxxabiv1::\28anonymous\20namespace\29::LibcppCondVar>::instance\2c\20\28unsigned\20int\20\28*\29\28\29\290>>::GuardObject\28unsigned\20int*\29 +7220:_ZZN19GrGeometryProcessor11ProgramImpl17collectTransformsEP19GrGLSLVertexBuilderP20GrGLSLVaryingHandlerP20GrGLSLUniformHandler12GrShaderTypeRK11GrShaderVarSA_RK10GrPipelineEN3$_0clISE_EEvRT_RK19GrFragmentProcessorbPSJ_iNS0_9BaseCoordE +7221:_ZZN18GrGLProgramBuilder23computeCountsAndStridesEjRK19GrGeometryProcessorbENK3$_0clINS0_9AttributeEEEDaiRKT_ +7222:\28anonymous\20namespace\29::ulayout_ensureData\28\29 +7223:\28anonymous\20namespace\29::ulayout_ensureData\28UErrorCode&\29 +7224:\28anonymous\20namespace\29::texture_color\28SkRGBA4f<\28SkAlphaType\293>\2c\20float\2c\20GrColorType\2c\20GrColorInfo\20const&\29 +7225:\28anonymous\20namespace\29::supported_aa\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrAA\29 +7226:\28anonymous\20namespace\29::set_uv_quad\28SkPoint\20const*\2c\20\28anonymous\20namespace\29::BezierVertex*\29 +7227:\28anonymous\20namespace\29::safe_to_ignore_subset_rect\28GrAAType\2c\20SkFilterMode\2c\20DrawQuad\20const&\2c\20SkRect\20const&\29 +7228:\28anonymous\20namespace\29::rrect_type_to_vert_count\28\28anonymous\20namespace\29::RRectType\29 +7229:\28anonymous\20namespace\29::proxy_normalization_params\28GrSurfaceProxy\20const*\2c\20GrSurfaceOrigin\29 +7230:\28anonymous\20namespace\29::normalize_src_quad\28\28anonymous\20namespace\29::NormalizationParams\20const&\2c\20GrQuad*\29 +7231:\28anonymous\20namespace\29::normalize_and_inset_subset\28SkFilterMode\2c\20\28anonymous\20namespace\29::NormalizationParams\20const&\2c\20SkRect\20const*\29 +7232:\28anonymous\20namespace\29::next_gen_id\28\29 +7233:\28anonymous\20namespace\29::morphology_pass\28skif::Context\20const&\2c\20skif::FilterResult\20const&\2c\20\28anonymous\20namespace\29::MorphType\2c\20\28anonymous\20namespace\29::MorphDirection\2c\20int\29 +7234:\28anonymous\20namespace\29::make_non_convex_fill_op\28GrRecordingContext*\2c\20SkArenaAlloc*\2c\20skgpu::ganesh::FillPathFlags\2c\20GrAAType\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20GrPaint&&\29 +7235:\28anonymous\20namespace\29::make_morphology\28\28anonymous\20namespace\29::MorphType\2c\20SkSize\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +7236:\28anonymous\20namespace\29::is_visible\28SkRect\20const&\2c\20SkIRect\20const&\29 +7237:\28anonymous\20namespace\29::is_degen_quad_or_conic\28SkPoint\20const*\2c\20float*\29 +7238:\28anonymous\20namespace\29::init_vertices_paint\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkBlender*\2c\20bool\2c\20GrPaint*\29 +7239:\28anonymous\20namespace\29::get_hbFace_cache\28\29 +7240:\28anonymous\20namespace\29::getStringArray\28ResourceData\20const*\2c\20icu_74::ResourceArray\20const&\2c\20icu_74::UnicodeString*\2c\20int\2c\20UErrorCode&\29 +7241:\28anonymous\20namespace\29::getInclusionsForSource\28UPropertySource\2c\20UErrorCode&\29 +7242:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_3::operator\28\29\28SkPoint\20const*\2c\20SkPoint\20const*\2c\20bool\29\20const +7243:\28anonymous\20namespace\29::gather_lines_and_quads\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\2c\20skia_private::TArray*\29::$_2::operator\28\29\28SkSpan\29\20const +7244:\28anonymous\20namespace\29::draw_to_sw_mask\28GrSWMaskHelper*\2c\20skgpu::ganesh::ClipStack::Element\20const&\2c\20bool\29 +7245:\28anonymous\20namespace\29::draw_tiled_image\28SkCanvas*\2c\20std::__2::function\20\28SkIRect\29>\2c\20SkISize\2c\20int\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20SkIRect\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkCanvas::SrcRectConstraint\2c\20SkSamplingOptions\29 +7246:\28anonymous\20namespace\29::draw_path\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20skgpu::ganesh::PathRenderer*\2c\20GrHardClip\20const&\2c\20SkIRect\20const&\2c\20GrUserStencilSettings\20const*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20GrAA\29 +7247:\28anonymous\20namespace\29::determine_clipped_src_rect\28SkIRect\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkRect\20const*\29 +7248:\28anonymous\20namespace\29::create_data\28int\2c\20bool\2c\20float\29 +7249:\28anonymous\20namespace\29::copyFTBitmap\28FT_Bitmap_\20const&\2c\20SkMaskBuilder*\29 +7250:\28anonymous\20namespace\29::contains_scissor\28GrScissorState\20const&\2c\20GrScissorState\20const&\29 +7251:\28anonymous\20namespace\29::colrv1_start_glyph_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20unsigned\20short\2c\20FT_Color_Root_Transform_\2c\20skia_private::THashSet*\29 +7252:\28anonymous\20namespace\29::colrv1_start_glyph\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20unsigned\20short\2c\20FT_Color_Root_Transform_\2c\20skia_private::THashSet*\29 +7253:\28anonymous\20namespace\29::colrv1_draw_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_COLR_Paint_\20const&\29 +7254:\28anonymous\20namespace\29::colrv1_configure_skpaint\28FT_FaceRec_*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_COLR_Paint_\20const&\2c\20SkPaint*\29 +7255:\28anonymous\20namespace\29::can_use_draw_texture\28SkPaint\20const&\2c\20SkSamplingOptions\20const&\29 +7256:\28anonymous\20namespace\29::axis_aligned_quad_size\28GrQuad\20const&\29 +7257:\28anonymous\20namespace\29::_set_addString\28USet*\2c\20char16_t\20const*\2c\20int\29 +7258:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29 +7259:\28anonymous\20namespace\29::YUVPlanesKey::YUVPlanesKey\28unsigned\20int\29 +7260:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29 +7261:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29 +7262:\28anonymous\20namespace\29::TriangulatingPathOp::TriangulatingPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrAAType\2c\20GrUserStencilSettings\20const*\29 +7263:\28anonymous\20namespace\29::TriangulatingPathOp::Triangulate\28GrEagerVertexAllocator*\2c\20SkMatrix\20const&\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\2c\20float\2c\20bool*\29 +7264:\28anonymous\20namespace\29::TriangulatingPathOp::CreateKey\28skgpu::UniqueKey*\2c\20GrStyledShape\20const&\2c\20SkIRect\20const&\29 +7265:\28anonymous\20namespace\29::TransformedMaskSubRun::glyphParams\28\29\20const +7266:\28anonymous\20namespace\29::TransformedMaskSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +7267:\28anonymous\20namespace\29::TransformedMaskSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +7268:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29 +7269:\28anonymous\20namespace\29::TextureOpImpl::propagateCoverageAAThroughoutChain\28\29 +7270:\28anonymous\20namespace\29::TextureOpImpl::numChainedQuads\28\29\20const +7271:\28anonymous\20namespace\29::TextureOpImpl::characterize\28\28anonymous\20namespace\29::TextureOpImpl::Desc*\29\20const +7272:\28anonymous\20namespace\29::TextureOpImpl::appendQuad\28DrawQuad*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\29 +7273:\28anonymous\20namespace\29::TextureOpImpl::Make\28GrRecordingContext*\2c\20GrTextureSetEntry*\2c\20int\2c\20int\2c\20SkFilterMode\2c\20SkMipmapMode\2c\20skgpu::ganesh::TextureOp::Saturate\2c\20GrAAType\2c\20SkCanvas::SrcRectConstraint\2c\20SkMatrix\20const&\2c\20sk_sp\29 +7274:\28anonymous\20namespace\29::TextureOpImpl::FillInVertices\28GrCaps\20const&\2c\20\28anonymous\20namespace\29::TextureOpImpl*\2c\20\28anonymous\20namespace\29::TextureOpImpl::Desc*\2c\20char*\29 +7275:\28anonymous\20namespace\29::TextureOpImpl::Desc::totalSizeInBytes\28\29\20const +7276:\28anonymous\20namespace\29::TextureOpImpl::Desc*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc>\28\29 +7277:\28anonymous\20namespace\29::TextureOpImpl::ClassID\28\29 +7278:\28anonymous\20namespace\29::SpotVerticesFactory::makeVertices\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint*\29\20const +7279:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::hb_script_for_unichar\28int\29 +7280:\28anonymous\20namespace\29::SkQuadCoeff::SkQuadCoeff\28SkPoint\20const*\29 +7281:\28anonymous\20namespace\29::SkMorphologyImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\29\20const +7282:\28anonymous\20namespace\29::SkMorphologyImageFilter::kernelOutputBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\29\20const +7283:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +7284:\28anonymous\20namespace\29::SkEmptyTypeface::onMakeClone\28SkFontArguments\20const&\29\20const +7285:\28anonymous\20namespace\29::SkCropImageFilter::requiredInput\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\29\20const +7286:\28anonymous\20namespace\29::SkConicCoeff::SkConicCoeff\28SkConic\20const&\29 +7287:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29 +7288:\28anonymous\20namespace\29::SkBlurImageFilter::mapSigma\28skif::Mapping\20const&\29\20const +7289:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29 +7290:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29 +7291:\28anonymous\20namespace\29::ShaperHarfBuzz::~ShaperHarfBuzz\28\29 +7292:\28anonymous\20namespace\29::ShadowedPath::keyBytes\28\29\20const +7293:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29 +7294:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29 +7295:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29 +7296:\28anonymous\20namespace\29::RectsBlurKey::RectsBlurKey\28float\2c\20SkBlurStyle\2c\20SkSpan\29 +7297:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::maxSigma\28\29\20const +7298:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::'lambda'\28float\29::operator\28\29\28float\29\20const +7299:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const::'lambda'\28float\29::operator\28\29\28float\29\20const +7300:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29 +7301:\28anonymous\20namespace\29::RRectBlurKey::RRectBlurKey\28float\2c\20SkRRect\20const&\2c\20SkBlurStyle\29 +7302:\28anonymous\20namespace\29::RPBlender::blendLine\28void*\2c\20void\20const*\2c\20int\29 +7303:\28anonymous\20namespace\29::RPBlender::RPBlender\28SkColorType\2c\20SkColorType\2c\20SkAlphaType\2c\20bool\29 +7304:\28anonymous\20namespace\29::PlanGauss::PlanGauss\28double\29 +7305:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29 +7306:\28anonymous\20namespace\29::PathOpSubmitter::~PathOpSubmitter\28\29 +7307:\28anonymous\20namespace\29::PathGeoBuilder::createMeshAndPutBackReserve\28\29 +7308:\28anonymous\20namespace\29::PathGeoBuilder::allocNewBuffers\28\29 +7309:\28anonymous\20namespace\29::PathGeoBuilder::addQuad\28SkPoint\20const*\2c\20float\2c\20float\29 +7310:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29 +7311:\28anonymous\20namespace\29::MipMapKey::MipMapKey\28SkBitmapCacheDesc\20const&\29 +7312:\28anonymous\20namespace\29::MipLevelHelper::allocAndInit\28SkArenaAlloc*\2c\20SkSamplingOptions\20const&\2c\20SkTileMode\2c\20SkTileMode\29 +7313:\28anonymous\20namespace\29::MipLevelHelper::MipLevelHelper\28\29 +7314:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29 +7315:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29 +7316:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20sk_sp\2c\20GrPrimitiveType\20const*\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +7317:\28anonymous\20namespace\29::MeshOp::MeshOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMesh\20const&\2c\20skia_private::TArray>\2c\20true>\2c\20GrAAType\2c\20sk_sp\2c\20SkMatrix\20const&\29 +7318:\28anonymous\20namespace\29::MeshOp::Mesh::indices\28\29\20const +7319:\28anonymous\20namespace\29::MeshOp::Mesh::Mesh\28SkMesh\20const&\29 +7320:\28anonymous\20namespace\29::MeshOp::ClassID\28\29 +7321:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29 +7322:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29 +7323:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineStruct\28char\20const*\29 +7324:\28anonymous\20namespace\29::Iter::next\28\29 +7325:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29 +7326:\28anonymous\20namespace\29::FillRectOpImpl::tessellate\28skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20char*\29\20const +7327:\28anonymous\20namespace\29::FillRectOpImpl::FillRectOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\2c\20GrAAType\2c\20DrawQuad*\2c\20GrUserStencilSettings\20const*\2c\20GrSimpleMeshDrawOpHelper::InputFlags\29 +7328:\28anonymous\20namespace\29::ExternalWebGLTexture::~ExternalWebGLTexture\28\29 +7329:\28anonymous\20namespace\29::EllipticalRRectEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +7330:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29 +7331:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29 +7332:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29 +7333:\28anonymous\20namespace\29::DrawAtlasOpImpl::DrawAtlasOpImpl\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20GrAAType\2c\20int\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\29 +7334:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29 +7335:\28anonymous\20namespace\29::DefaultPathOp::programInfo\28\29 +7336:\28anonymous\20namespace\29::DefaultPathOp::primType\28\29\20const +7337:\28anonymous\20namespace\29::DefaultPathOp::PathData::PathData\28\28anonymous\20namespace\29::DefaultPathOp::PathData&&\29 +7338:\28anonymous\20namespace\29::DefaultPathOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +7339:\28anonymous\20namespace\29::DefaultPathOp::DefaultPathOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkPath\20const&\2c\20float\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20bool\2c\20GrAAType\2c\20SkRect\20const&\2c\20GrUserStencilSettings\20const*\29 +7340:\28anonymous\20namespace\29::ClipGeometry\20\28anonymous\20namespace\29::get_clip_geometry\28skgpu::ganesh::ClipStack::SaveRecord\20const&\2c\20skgpu::ganesh::ClipStack::Draw\20const&\29 +7341:\28anonymous\20namespace\29::CircularRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20unsigned\20int\2c\20SkRRect\20const&\29 +7342:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29 +7343:\28anonymous\20namespace\29::CachedTessellationsRec::CachedTessellationsRec\28SkResourceCache::Key\20const&\2c\20sk_sp<\28anonymous\20namespace\29::CachedTessellations>\29 +7344:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29 +7345:\28anonymous\20namespace\29::CachedTessellations::CachedTessellations\28\29 +7346:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29 +7347:\28anonymous\20namespace\29::BuilderReceiver::MoveTo\28impeller::TPoint\20const&\2c\20bool\29 +7348:\28anonymous\20namespace\29::BitmapKey::BitmapKey\28SkBitmapCacheDesc\20const&\29 +7349:\28anonymous\20namespace\29::AmbientVerticesFactory::makeVertices\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint*\29\20const +7350:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29 +7351:\28anonymous\20namespace\29::AAHairlineOp::PathData::PathData\28\28anonymous\20namespace\29::AAHairlineOp::PathData&&\29 +7352:\28anonymous\20namespace\29::AAHairlineOp::AAHairlineOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20unsigned\20char\2c\20SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkIRect\2c\20float\2c\20GrUserStencilSettings\20const*\29 +7353:WebPRescalerGetScaledDimensions +7354:WebPMultRows +7355:WebPMultARGBRows +7356:WebPIoInitFromOptions +7357:WebPInitUpsamplers +7358:WebPFlipBuffer +7359:WebPDemuxPartial\28WebPData\20const*\2c\20WebPDemuxState*\29 +7360:WebPDemuxGetChunk +7361:WebPDemuxDelete +7362:WebPDeallocateAlphaMemory +7363:WebPCheckCropDimensions +7364:WebPAllocateDecBuffer +7365:VP8RemapBitReader +7366:VP8LoadFinalBytes +7367:VP8LTransformColorInverse_C +7368:VP8LNew +7369:VP8LHuffmanTablesAllocate +7370:VP8LConvertFromBGRA +7371:VP8LConvertBGRAToRGBA_C +7372:VP8LConvertBGRAToRGBA4444_C +7373:VP8LColorCacheInit +7374:VP8LColorCacheClear +7375:VP8LBuildHuffmanTable +7376:VP8LBitReaderSetBuffer +7377:VP8GetInfo +7378:VP8CheckSignature +7379:TransformTwo_C +7380:ToUpperCase +7381:TextureSourceImageGenerator::~TextureSourceImageGenerator\28\29 +7382:TT_Set_Named_Instance +7383:TT_Save_Context +7384:TT_Hint_Glyph +7385:TT_DotFix14 +7386:TT_Done_Context +7387:StringBuffer\20apply_format_string<1024>\28char\20const*\2c\20void*\2c\20char\20\28&\29\20\5b1024\5d\2c\20SkString*\29 +7388:StoreFrame +7389:SortContourList\28SkOpContourHead**\2c\20bool\2c\20bool\29 +7390:Skwasm::createSkMatrix\28float\20const*\29 +7391:Skwasm::TextStyle::~TextStyle\28\29 +7392:Skwasm::TextStyle::populatePaintIds\28std::__2::vector>&\29 +7393:Skwasm::TextStyle::TextStyle\28\29 +7394:Skwasm::Surface::_init\28\29 +7395:SkWuffsFrame*\20std::__2::construct_at\5babi:ne180100\5d\28SkWuffsFrame*\2c\20wuffs_base__frame_config__struct*&&\29 +7396:SkWuffsCodec::~SkWuffsCodec\28\29 +7397:SkWuffsCodec::seekFrame\28int\29 +7398:SkWuffsCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +7399:SkWuffsCodec::onIncrementalDecode\28int*\29 +7400:SkWuffsCodec::decodeFrameConfig\28\29 +7401:SkWriter32::writeString\28char\20const*\2c\20unsigned\20long\29 +7402:SkWriter32::writePoint3\28SkPoint3\20const&\29 +7403:SkWebpCodec::~SkWebpCodec\28\29 +7404:SkWebpCodec::ensureAllData\28\29 +7405:SkWStream::writeScalarAsText\28float\29 +7406:SkWBuffer::padToAlign4\28\29 +7407:SkVertices::getSizes\28\29\20const +7408:SkVertices::Builder::init\28SkVertices::Desc\20const&\29 +7409:SkVertices::Builder::Builder\28SkVertices::VertexMode\2c\20int\2c\20int\2c\20unsigned\20int\29 +7410:SkUnicode_icu::~SkUnicode_icu\28\29 +7411:SkUnicode_icu::isHardLineBreak\28int\29 +7412:SkUnicode_icu::extractWords\28unsigned\20short*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +7413:SkUnicode::convertUtf16ToUtf8\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +7414:SkUnicode::convertUtf16ToUtf8\28char16_t\20const*\2c\20int\29 +7415:SkUnicode::BidiRegion&\20std::__2::vector>::emplace_back\28unsigned\20long&\2c\20unsigned\20long&\2c\20unsigned\20char&\29 +7416:SkUTF::UTF16ToUTF8\28char*\2c\20int\2c\20unsigned\20short\20const*\2c\20unsigned\20long\29 +7417:SkUTF::ToUTF8\28int\2c\20char*\29 +7418:SkUTF::NextUTF16\28unsigned\20short\20const**\2c\20unsigned\20short\20const*\29 +7419:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29 +7420:SkTypeface_FreeTypeStream::SkTypeface_FreeTypeStream\28std::__2::unique_ptr>\2c\20SkString\2c\20SkFontStyle\20const&\2c\20bool\29 +7421:SkTypeface_FreeType::getFaceRec\28\29\20const +7422:SkTypeface_FreeType::SkTypeface_FreeType\28SkFontStyle\20const&\2c\20bool\29 +7423:SkTypeface_FreeType::GetUnitsPerEm\28FT_FaceRec_*\29 +7424:SkTypeface_Custom::~SkTypeface_Custom\28\29 +7425:SkTypeface_Custom::onGetFamilyName\28SkString*\29\20const +7426:SkTypeface::onGetFixedPitch\28\29\20const +7427:SkTypeface::MakeEmpty\28\29 +7428:SkTreatAsSprite\28SkMatrix\20const&\2c\20SkISize\20const&\2c\20SkSamplingOptions\20const&\2c\20bool\29 +7429:SkTransformShader::update\28SkMatrix\20const&\29 +7430:SkTransformShader::SkTransformShader\28SkShaderBase\20const&\2c\20bool\29 +7431:SkTiff::ImageFileDirectory::getEntryUnsignedRational\28unsigned\20short\2c\20unsigned\20int\2c\20float*\29\20const +7432:SkTiff::ImageFileDirectory::getEntryTag\28unsigned\20short\29\20const +7433:SkTiff::ImageFileDirectory::getEntrySignedRational\28unsigned\20short\2c\20unsigned\20int\2c\20float*\29\20const +7434:SkTiff::ImageFileDirectory::getEntryRawData\28unsigned\20short\2c\20unsigned\20short*\2c\20unsigned\20short*\2c\20unsigned\20int*\2c\20unsigned\20char\20const**\2c\20unsigned\20long*\29\20const +7435:SkTextBlobBuilder::updateDeferredBounds\28\29 +7436:SkTextBlobBuilder::reserve\28unsigned\20long\29 +7437:SkTextBlobBuilder::allocRunPos\28SkFont\20const&\2c\20int\2c\20SkRect\20const*\29 +7438:SkTextBlobBuilder::TightRunBounds\28SkTextBlob::RunRecord\20const&\29 +7439:SkTextBlob::getIntercepts\28float\20const*\2c\20float*\2c\20SkPaint\20const*\29\20const +7440:SkTaskGroup::add\28std::__2::function\29 +7441:SkTSpan::split\28SkTSpan*\2c\20SkArenaAlloc*\29 +7442:SkTSpan::splitAt\28SkTSpan*\2c\20double\2c\20SkArenaAlloc*\29 +7443:SkTSpan::linearIntersects\28SkTCurve\20const&\29\20const +7444:SkTSpan::hullCheck\28SkTSpan\20const*\2c\20bool*\2c\20bool*\29 +7445:SkTSpan::contains\28double\29\20const +7446:SkTSect::unlinkSpan\28SkTSpan*\29 +7447:SkTSect::removeAllBut\28SkTSpan\20const*\2c\20SkTSpan*\2c\20SkTSect*\29 +7448:SkTSect::recoverCollapsed\28\29 +7449:SkTSect::intersects\28SkTSpan*\2c\20SkTSect*\2c\20SkTSpan*\2c\20int*\29 +7450:SkTSect::coincidentHasT\28double\29 +7451:SkTSect::boundsMax\28\29 +7452:SkTSect::addSplitAt\28SkTSpan*\2c\20double\29 +7453:SkTSect::addForPerp\28SkTSpan*\2c\20double\29 +7454:SkTSect::EndsEqual\28SkTSect\20const*\2c\20SkTSect\20const*\2c\20SkIntersections*\29 +7455:SkTMultiMap::reset\28\29 +7456:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29 +7457:SkTMaskGamma<3\2c\203\2c\203>::SkTMaskGamma\28float\2c\20float\29 +7458:SkTMaskGamma<3\2c\203\2c\203>::CanonicalColor\28unsigned\20int\29 +7459:SkTInternalLList::remove\28skgpu::ganesh::SmallPathShapeData*\29 +7460:SkTInternalLList<\28anonymous\20namespace\29::CacheImpl::Value>::remove\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +7461:SkTInternalLList<\28anonymous\20namespace\29::CacheImpl::Value>::addToHead\28\28anonymous\20namespace\29::CacheImpl::Value*\29 +7462:SkTInternalLList::remove\28TriangulationVertex*\29 +7463:SkTInternalLList::addToTail\28TriangulationVertex*\29 +7464:SkTInternalLList::Entry>::addToHead\28SkLRUCache::Entry*\29 +7465:SkTInternalLList>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry>::addToHead\28SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::Entry*\29 +7466:SkTInternalLList>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry>::addToHead\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\29 +7467:SkTDynamicHash<\28anonymous\20namespace\29::CacheImpl::Value\2c\20SkImageFilterCacheKey\2c\20\28anonymous\20namespace\29::CacheImpl::Value>::find\28SkImageFilterCacheKey\20const&\29\20const +7468:SkTDStorage::SkTDStorage\28SkTDStorage&&\29 +7469:SkTDPQueue<\28anonymous\20namespace\29::RunIteratorQueue::Entry\2c\20&\28anonymous\20namespace\29::RunIteratorQueue::CompareEntry\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\2c\20\28int*\20\28*\29\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\20const&\29\290>::insert\28\28anonymous\20namespace\29::RunIteratorQueue::Entry\29 +7470:SkTDPQueue::remove\28GrGpuResource*\29 +7471:SkTDPQueue::percolateUpIfNecessary\28int\29 +7472:SkTDPQueue::percolateDownIfNecessary\28int\29 +7473:SkTDPQueue::insert\28GrGpuResource*\29 +7474:SkTDArray::append\28int\29 +7475:SkTDArray::append\28int\29 +7476:SkTDArray::push_back\28SkRecords::FillBounds::SaveBounds\20const&\29 +7477:SkTDArray::push_back\28SkOpPtT\20const*\20const&\29 +7478:SkTCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +7479:SkTConic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +7480:SkTConic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +7481:SkTConic::controlsInside\28\29\20const +7482:SkTConic::collapsed\28\29\20const +7483:SkTBlockList::pushItem\28\29 +7484:SkTBlockList::pop_back\28\29 +7485:SkTBlockList::push_back\28skgpu::ganesh::ClipStack::RawElement&&\29 +7486:SkTBlockList::pushItem\28\29 +7487:SkTBlockList::~SkTBlockList\28\29 +7488:SkTBlockList::push_back\28GrGLProgramDataManager::GLUniformInfo\20const&\29 +7489:SkTBlockList::item\28int\29 +7490:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29 +7491:SkSurfaces::RenderTarget\28GrRecordingContext*\2c\20skgpu::Budgeted\2c\20SkImageInfo\20const&\29 +7492:SkSurface_Raster::~SkSurface_Raster\28\29 +7493:SkSurface_Raster::SkSurface_Raster\28skcpu::RecorderImpl*\2c\20SkImageInfo\20const&\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29 +7494:SkSurface_Ganesh::~SkSurface_Ganesh\28\29 +7495:SkSurface_Ganesh::onDiscard\28\29 +7496:SkSurface_Base::replaceBackendTexture\28GrBackendTexture\20const&\2c\20GrSurfaceOrigin\2c\20SkSurface::ContentChangeMode\2c\20void\20\28*\29\28void*\29\2c\20void*\29 +7497:SkSurface_Base::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +7498:SkSurface_Base::onCapabilities\28\29 +7499:SkStrokeRec::GetInflationRadius\28SkPaint::Join\2c\20float\2c\20SkPaint::Cap\2c\20float\29 +7500:SkString_from_UTF16BE\28unsigned\20char\20const*\2c\20unsigned\20long\2c\20SkString&\29 +7501:SkString::equals\28char\20const*\2c\20unsigned\20long\29\20const +7502:SkString::equals\28char\20const*\29\20const +7503:SkString::appendVAList\28char\20const*\2c\20void*\29 +7504:SkString::appendUnichar\28int\29 +7505:SkString::appendHex\28unsigned\20int\2c\20int\29 +7506:SkStrikeSpec::SkStrikeSpec\28SkStrikeSpec\20const&\29 +7507:SkStrikeSpec::ShouldDrawAsPath\28SkPaint\20const&\2c\20SkFont\20const&\2c\20SkMatrix\20const&\29::$_0::operator\28\29\28int\2c\20int\29\20const +7508:SkStrikeSpec::ShouldDrawAsPath\28SkPaint\20const&\2c\20SkFont\20const&\2c\20SkMatrix\20const&\29 +7509:SkStrikeSpec::MakeTransformMask\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\29 +7510:SkStrikeCache::~SkStrikeCache\28\29 +7511:SkStrike::~SkStrike\28\29 +7512:SkStrike::prepareForImage\28SkGlyph*\29 +7513:SkStrike::prepareForDrawable\28SkGlyph*\29 +7514:SkStrike::internalPrepare\28SkSpan\2c\20SkStrike::PathDetail\2c\20SkGlyph\20const**\29 +7515:SkStrSplit\28char\20const*\2c\20char\20const*\2c\20SkStrSplitMode\2c\20skia_private::TArray*\29 +7516:SkStrAppendU32\28char*\2c\20unsigned\20int\29 +7517:SkStrAppendS32\28char*\2c\20int\29 +7518:SkSpriteBlitter_Memcpy::~SkSpriteBlitter_Memcpy\28\29 +7519:SkSpecialImages::AsView\28GrRecordingContext*\2c\20SkSpecialImage\20const*\29 +7520:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29 +7521:SkSpecialImage_Raster::getROPixels\28SkBitmap*\29\20const +7522:SkSpecialImage_Raster::SkSpecialImage_Raster\28SkIRect\20const&\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\29 +7523:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29 +7524:SkSpecialImage::SkSpecialImage\28SkIRect\20const&\2c\20unsigned\20int\2c\20SkColorInfo\20const&\2c\20SkSurfaceProps\20const&\29 +7525:SkSize\20skif::Mapping::map\28SkSize\20const&\2c\20SkMatrix\20const&\29 +7526:SkShapers::unicode::BidiRunIterator\28sk_sp\2c\20char\20const*\2c\20unsigned\20long\2c\20unsigned\20char\29 +7527:SkShapers::HB::ShapeDontWrapOrReorder\28sk_sp\2c\20sk_sp\29 +7528:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29 +7529:SkShaper::MakeStdLanguageRunIterator\28char\20const*\2c\20unsigned\20long\29 +7530:SkShaper::MakeFontMgrRunIterator\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20sk_sp\29 +7531:SkShadowTessellator::MakeAmbient\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20bool\29 +7532:SkShaders::MatrixRec::totalMatrix\28\29\20const +7533:SkShaders::MatrixRec::concat\28SkMatrix\20const&\29\20const +7534:SkShaders::Empty\28\29 +7535:SkShaders::Color\28unsigned\20int\29 +7536:SkShaders::Blend\28sk_sp\2c\20sk_sp\2c\20sk_sp\29 +7537:SkShaderUtils::VisitLineByLine\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20std::__2::function\20const&\29 +7538:SkShaderUtils::GLSLPrettyPrint::undoNewlineAfter\28char\29 +7539:SkShaderUtils::GLSLPrettyPrint::parseUntil\28char\20const*\29 +7540:SkShaderUtils::GLSLPrettyPrint::parseUntilNewline\28\29 +7541:SkShaderBlurAlgorithm::renderBlur\28SkRuntimeEffectBuilder*\2c\20SkFilterMode\2c\20SkISize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +7542:SkShaderBlurAlgorithm::evalBlur1D\28float\2c\20int\2c\20SkV2\2c\20sk_sp\2c\20SkIRect\2c\20SkTileMode\2c\20SkIRect\29\20const +7543:SkShaderBlurAlgorithm::GetLinearBlur1DEffect\28int\29 +7544:SkShaderBlurAlgorithm::GetBlur2DEffect\28SkISize\20const&\29 +7545:SkShaderBlurAlgorithm::Compute2DBlurOffsets\28SkISize\2c\20std::__2::array&\29 +7546:SkShaderBlurAlgorithm::Compute2DBlurKernel\28SkSize\2c\20SkISize\2c\20std::__2::array&\29 +7547:SkShaderBlurAlgorithm::Compute2DBlurKernel\28SkSize\2c\20SkISize\2c\20SkSpan\29 +7548:SkShaderBlurAlgorithm::Compute1DBlurLinearKernel\28float\2c\20int\2c\20std::__2::array&\29 +7549:SkShader::makeWithColorFilter\28sk_sp\29\20const +7550:SkScan::PathRequiresTiling\28SkIRect\20const&\29 +7551:SkScan::HairLine\28SkPoint\20const*\2c\20int\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +7552:SkScan::FillXRect\28SkIRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +7553:SkScan::FillRect\28SkRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +7554:SkScan::AntiHairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +7555:SkScan::AntiFrameRect\28SkRect\20const&\2c\20SkPoint\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +7556:SkScan::AntiFillRect\28SkRect\20const&\2c\20SkRegion\20const*\2c\20SkBlitter*\29 +7557:SkScan::AntiFillPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +7558:SkScan::AAAFillPath\28SkPathRaw\20const&\2c\20SkBlitter*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +7559:SkScalingCodec::SkScalingCodec\28SkEncodedInfo&&\2c\20skcms_PixelFormat\2c\20std::__2::unique_ptr>\2c\20SkEncodedOrigin\29 +7560:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29 +7561:SkScalerContext_FreeType::shouldSubpixelBitmap\28SkGlyph\20const&\2c\20SkMatrix\20const&\29 +7562:SkScalerContext_FreeType::getCBoxForLetter\28char\2c\20FT_BBox_*\29 +7563:SkScalerContext_FreeType::getBoundsOfCurrentOutlineGlyph\28FT_GlyphSlotRec_*\2c\20SkRect*\29 +7564:SkScalerContextRec::setLuminanceColor\28unsigned\20int\29 +7565:SkScalerContextFTUtils::drawCOLRv1Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +7566:SkScalerContextFTUtils::drawCOLRv0Glyph\28FT_FaceRec_*\2c\20SkGlyph\20const&\2c\20unsigned\20int\2c\20SkSpan\2c\20SkCanvas*\29\20const +7567:SkScalerContext::makeGlyph\28SkPackedGlyphID\2c\20SkArenaAlloc*\29 +7568:SkScalerContext::internalGetPath\28SkGlyph&\2c\20SkArenaAlloc*\2c\20std::__2::optional&&\29 +7569:SkScalerContext::SkScalerContext\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +7570:SkScalerContext::SaturateGlyphBounds\28SkGlyph*\2c\20SkRect&&\29 +7571:SkScalerContext::MakeRecAndEffects\28SkFont\20const&\2c\20SkPaint\20const&\2c\20SkSurfaceProps\20const&\2c\20SkScalerContextFlags\2c\20SkMatrix\20const&\2c\20SkScalerContextRec*\2c\20SkScalerContextEffects*\29 +7572:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29 +7573:SkScalerContext::GeneratedPath::GeneratedPath\28SkScalerContext::GeneratedPath&&\29 +7574:SkScalerContext::AutoDescriptorGivenRecAndEffects\28SkScalerContextRec\20const&\2c\20SkScalerContextEffects\20const&\2c\20SkAutoDescriptor*\29 +7575:SkSampledCodec::accountForNativeScaling\28int*\2c\20int*\29\20const +7576:SkSTArenaAlloc<4096ul>::SkSTArenaAlloc\28unsigned\20long\29 +7577:SkSTArenaAlloc<256ul>::SkSTArenaAlloc\28unsigned\20long\29 +7578:SkSLCombinedSamplerTypeForTextureType\28GrTextureType\29 +7579:SkSL::type_to_sksltype\28SkSL::Context\20const&\2c\20SkSL::Type\20const&\2c\20SkSLType*\29 +7580:SkSL::stoi\28std::__2::basic_string_view>\2c\20long\20long*\29 +7581:SkSL::splat_scalar\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +7582:SkSL::simplify_constant_equality\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +7583:SkSL::short_circuit_boolean\28SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +7584:SkSL::remove_break_statements\28std::__2::unique_ptr>&\29::RemoveBreaksWriter::visitStatementPtr\28std::__2::unique_ptr>&\29 +7585:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_2::operator\28\29\28int\29\20const +7586:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_1::operator\28\29\28int\29\20const +7587:SkSL::optimize_intrinsic_call\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::IntrinsicKind\2c\20SkSL::ExpressionArray\20const&\2c\20SkSL::Type\20const&\29::$_0::operator\28\29\28int\29\20const +7588:SkSL::negate_expression\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Type\20const&\29 +7589:SkSL::make_reciprocal_expression\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29 +7590:SkSL::index_out_of_range\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20long\20long\2c\20SkSL::Expression\20const&\29 +7591:SkSL::hoist_vardecl_symbols_into_outer_scope\28SkSL::Context\20const&\2c\20SkSL::Block\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::SymbolTable*\29::SymbolHoister::visitStatement\28SkSL::Statement\20const&\29 +7592:SkSL::get_struct_definitions_from_module\28SkSL::Program&\2c\20SkSL::Module\20const&\2c\20std::__2::vector>*\29 +7593:SkSL::find_existing_declaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20SkSL::IntrinsicKind\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray>\2c\20true>&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration**\29::$_0::operator\28\29\28\29\20const +7594:SkSL::extract_matrix\28SkSL::Expression\20const*\2c\20float*\29 +7595:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +7596:SkSL::eliminate_no_op_boolean\28SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29 +7597:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_4::operator\28\29\28int\29\20const +7598:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_2::operator\28\29\28SkSL::Type\20const&\29\20const +7599:SkSL::check_main_signature\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20skia_private::TArray>\2c\20true>&\29::$_1::operator\28\29\28int\29\20const +7600:SkSL::argument_needs_scratch_variable\28SkSL::Expression\20const*\2c\20SkSL::Variable\20const*\2c\20SkSL::ProgramUsage\20const&\29 +7601:SkSL::argument_and_parameter_flags_match\28SkSL::Expression\20const&\2c\20SkSL::Variable\20const&\29 +7602:SkSL::apply_to_elements\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20double\20\28*\29\28double\29\29 +7603:SkSL::append_rtadjust_fixup_to_vertex_main\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::Block&\29::AppendRTAdjustFixupHelper::Adjust\28\29\20const +7604:SkSL::\28anonymous\20namespace\29::clone_with_ref_kind\28SkSL::Expression\20const&\2c\20SkSL::VariableRefKind\2c\20SkSL::Position\29 +7605:SkSL::\28anonymous\20namespace\29::check_valid_uniform_type\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Context\20const&\2c\20bool\29::$_0::operator\28\29\28\29\20const +7606:SkSL::\28anonymous\20namespace\29::caps_lookup_table\28\29 +7607:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +7608:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitStructFields\28SkSL::Type\20const&\29 +7609:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitStatement\28SkSL::Statement\20const&\29 +7610:SkSL::\28anonymous\20namespace\29::ProgramUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +7611:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitStatement\28SkSL::Statement\20const&\29 +7612:SkSL::\28anonymous\20namespace\29::IsAssignableVisitor::visitExpression\28SkSL::Expression&\2c\20SkSL::FieldAccess\20const*\29::'lambda'\28\29::operator\28\29\28\29\20const +7613:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +7614:SkSL::Variable::MakeScratchVariable\28SkSL::Context\20const&\2c\20SkSL::Mangler&\2c\20std::__2::basic_string_view>\2c\20SkSL::Type\20const*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>\29 +7615:SkSL::VarDeclaration::ErrorCheck\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Position\2c\20SkSL::Layout\20const&\2c\20SkSL::ModifierFlags\2c\20SkSL::Type\20const*\2c\20SkSL::Type\20const*\2c\20SkSL::VariableStorage\29 +7616:SkSL::TypeReference::description\28SkSL::OperatorPrecedence\29\20const +7617:SkSL::TypeReference::VerifyType\28SkSL::Context\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Position\29 +7618:SkSL::TypeReference::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\29 +7619:SkSL::Type::checkIfUsableInArray\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +7620:SkSL::Type::checkForOutOfRangeLiteral\28SkSL::Context\20const&\2c\20SkSL::Expression\20const&\29\20const +7621:SkSL::Type::MakeStructType\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20bool\29 +7622:SkSL::Type::MakeLiteralType\28char\20const*\2c\20SkSL::Type\20const&\2c\20signed\20char\29 +7623:SkSL::Transform::\28anonymous\20namespace\29::BuiltinVariableScanner::addDeclaringElement\28SkSL::Symbol\20const*\29 +7624:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::visitStatementPtr\28std::__2::unique_ptr>&\29 +7625:SkSL::Transform::EliminateDeadGlobalVariables\28SkSL::Program&\29::$_0::operator\28\29\28std::__2::unique_ptr>\20const&\29\20const +7626:SkSL::Transform::EliminateDeadFunctions\28SkSL::Program&\29 +7627:SkSL::TernaryExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +7628:SkSL::SymbolTable::moveSymbolTo\28SkSL::SymbolTable*\2c\20SkSL::Symbol*\2c\20SkSL::Context\20const&\29 +7629:SkSL::SymbolTable::isBuiltinType\28std::__2::basic_string_view>\29\20const +7630:SkSL::SymbolTable::insertNewParent\28\29 +7631:SkSL::SymbolTable::addWithoutOwnership\28SkSL::Symbol*\29 +7632:SkSL::Symbol::instantiate\28SkSL::Context\20const&\2c\20SkSL::Position\29\20const +7633:SkSL::SwitchStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +7634:SkSL::SwitchCase::Make\28SkSL::Position\2c\20long\20long\2c\20std::__2::unique_ptr>\29 +7635:SkSL::SwitchCase::MakeDefault\28SkSL::Position\2c\20std::__2::unique_ptr>\29 +7636:SkSL::StructType::StructType\28SkSL::Position\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20int\2c\20bool\2c\20bool\29 +7637:SkSL::String::vappendf\28std::__2::basic_string\2c\20std::__2::allocator>*\2c\20char\20const*\2c\20void*\29 +7638:SkSL::SingleArgumentConstructor::argumentSpan\28\29 +7639:SkSL::Setting::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20bool\20const\20SkSL::ShaderCaps::*\29 +7640:SkSL::RP::stack_usage\28SkSL::RP::Instruction\20const&\29 +7641:SkSL::RP::is_sliceable_swizzle\28SkSpan\29 +7642:SkSL::RP::is_immediate_op\28SkSL::RP::BuilderOp\29 +7643:SkSL::RP::UnownedLValueSlice::isWritable\28\29\20const +7644:SkSL::RP::UnownedLValueSlice::dynamicSlotRange\28\29 +7645:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29 +7646:SkSL::RP::ScratchLValue::~ScratchLValue\28\29 +7647:SkSL::RP::Program::appendStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkSL::RP::Callbacks*\2c\20SkSpan\29\20const +7648:SkSL::RP::Program::appendStackRewind\28skia_private::TArray*\29\20const +7649:SkSL::RP::Program::appendCopyImmutableUnmasked\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20std::byte*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +7650:SkSL::RP::Program::appendAdjacentNWayTernaryOp\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSL::RP::ProgramOp\2c\20std::byte*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +7651:SkSL::RP::Program::appendAdjacentNWayBinaryOp\28skia_private::TArray*\2c\20SkArenaAlloc*\2c\20SkSL::RP::ProgramOp\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int\29\20const +7652:SkSL::RP::ImmutableLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +7653:SkSL::RP::Generator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\29 +7654:SkSL::RP::Generator::writeFunction\28SkSL::IRNode\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSpan>\20const>\29 +7655:SkSL::RP::Generator::storeImmutableValueToSlots\28skia_private::TArray\20const&\2c\20SkSL::RP::SlotRange\29 +7656:SkSL::RP::Generator::returnComplexity\28SkSL::FunctionDefinition\20const*\29 +7657:SkSL::RP::Generator::pushVariableReferencePartial\28SkSL::VariableReference\20const&\2c\20SkSL::RP::SlotRange\29 +7658:SkSL::RP::Generator::pushLengthIntrinsic\28int\29 +7659:SkSL::RP::Generator::pushLValueOrExpression\28SkSL::RP::LValue*\2c\20SkSL::Expression\20const&\29 +7660:SkSL::RP::Generator::pushIntrinsic\28SkSL::RP::BuilderOp\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +7661:SkSL::RP::Generator::pushIntrinsic\28SkSL::IntrinsicKind\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\2c\20SkSL::Expression\20const&\29 +7662:SkSL::RP::Generator::pushImmutableData\28SkSL::Expression\20const&\29 +7663:SkSL::RP::Generator::getImmutableValueForExpression\28SkSL::Expression\20const&\2c\20skia_private::TArray*\29 +7664:SkSL::RP::Generator::getImmutableBitsForSlot\28SkSL::Expression\20const&\2c\20unsigned\20long\29 +7665:SkSL::RP::Generator::findPreexistingImmutableData\28skia_private::TArray\20const&\29 +7666:SkSL::RP::Generator::discardTraceScopeMask\28\29 +7667:SkSL::RP::DynamicIndexLValue::dynamicSlotRange\28\29 +7668:SkSL::RP::Builder::push_condition_mask\28\29 +7669:SkSL::RP::Builder::pop_slots_unmasked\28SkSL::RP::SlotRange\29 +7670:SkSL::RP::Builder::pop_condition_mask\28\29 +7671:SkSL::RP::Builder::pop_and_reenable_loop_mask\28\29 +7672:SkSL::RP::Builder::merge_loop_mask\28\29 +7673:SkSL::RP::Builder::merge_inv_condition_mask\28\29 +7674:SkSL::RP::Builder::mask_off_loop_mask\28\29 +7675:SkSL::RP::Builder::discard_stack\28int\2c\20int\29 +7676:SkSL::RP::Builder::copy_stack_to_slots_unmasked\28SkSL::RP::SlotRange\2c\20int\29 +7677:SkSL::RP::Builder::copy_stack_to_slots_unmasked\28SkSL::RP::SlotRange\29 +7678:SkSL::RP::Builder::copy_stack_to_slots\28SkSL::RP::SlotRange\29 +7679:SkSL::RP::Builder::branch_if_any_lanes_active\28int\29 +7680:SkSL::RP::AutoStack::pushClone\28SkSL::RP::SlotRange\2c\20int\29 +7681:SkSL::RP::AutoContinueMask::~AutoContinueMask\28\29 +7682:SkSL::RP::AutoContinueMask::exitLoopBody\28\29 +7683:SkSL::RP::AutoContinueMask::enterLoopBody\28\29 +7684:SkSL::RP::AutoContinueMask::enable\28\29 +7685:SkSL::ProgramUsage::remove\28SkSL::Expression\20const*\29 +7686:SkSL::ProgramUsage::get\28SkSL::FunctionDeclaration\20const&\29\20const +7687:SkSL::ProgramUsage::add\28SkSL::Statement\20const*\29 +7688:SkSL::ProgramUsage::add\28SkSL::Expression\20const*\29 +7689:SkSL::ProgramConfig::ProgramConfig\28\29 +7690:SkSL::Program::~Program\28\29 +7691:SkSL::PostfixExpression::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20SkSL::Operator\29 +7692:SkSL::PipelineStage::PipelineStageCodeGenerator::functionName\28SkSL::FunctionDeclaration\20const&\2c\20int\29 +7693:SkSL::PipelineStage::PipelineStageCodeGenerator::functionDeclaration\28SkSL::FunctionDeclaration\20const&\29 +7694:SkSL::PipelineStage::PipelineStageCodeGenerator::forEachSpecialization\28SkSL::FunctionDeclaration\20const&\2c\20std::__2::function\20const&\29 +7695:SkSL::Parser::~Parser\28\29 +7696:SkSL::Parser::varDeclarations\28\29 +7697:SkSL::Parser::varDeclarationsPrefix\28SkSL::Parser::VarDeclarationsPrefix*\29 +7698:SkSL::Parser::varDeclarationsOrExpressionStatement\28\29 +7699:SkSL::Parser::switchCaseBody\28SkSL::ExpressionArray*\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>*\2c\20std::__2::unique_ptr>\29 +7700:SkSL::Parser::shiftExpression\28\29 +7701:SkSL::Parser::relationalExpression\28\29 +7702:SkSL::Parser::multiplicativeExpression\28\29 +7703:SkSL::Parser::logicalXorExpression\28\29 +7704:SkSL::Parser::logicalAndExpression\28\29 +7705:SkSL::Parser::localVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +7706:SkSL::Parser::intLiteral\28long\20long*\29 +7707:SkSL::Parser::identifier\28std::__2::basic_string_view>*\29 +7708:SkSL::Parser::globalVarDeclarationEnd\28SkSL::Position\2c\20SkSL::Modifiers\20const&\2c\20SkSL::Type\20const*\2c\20SkSL::Token\29 +7709:SkSL::Parser::expressionStatement\28\29 +7710:SkSL::Parser::expectNewline\28\29 +7711:SkSL::Parser::equalityExpression\28\29 +7712:SkSL::Parser::directive\28bool\29 +7713:SkSL::Parser::declarations\28\29 +7714:SkSL::Parser::bitwiseXorExpression\28\29 +7715:SkSL::Parser::bitwiseOrExpression\28\29 +7716:SkSL::Parser::bitwiseAndExpression\28\29 +7717:SkSL::Parser::additiveExpression\28\29 +7718:SkSL::Parser::addGlobalVarDeclaration\28std::__2::unique_ptr>\29 +7719:SkSL::Parser::Parser\28SkSL::Compiler*\2c\20SkSL::ProgramSettings\20const&\2c\20SkSL::ProgramKind\2c\20std::__2::unique_ptr\2c\20std::__2::allocator>\2c\20std::__2::default_delete\2c\20std::__2::allocator>>>\29 +7720:SkSL::MultiArgumentConstructor::argumentSpan\28\29 +7721:SkSL::ModuleLoader::loadVertexModule\28SkSL::Compiler*\29 +7722:SkSL::ModuleLoader::loadSharedModule\28SkSL::Compiler*\29 +7723:SkSL::ModuleLoader::loadPublicModule\28SkSL::Compiler*\29 +7724:SkSL::ModuleLoader::loadFragmentModule\28SkSL::Compiler*\29 +7725:SkSL::ModuleLoader::Get\28\29 +7726:SkSL::Module::~Module\28\29 +7727:SkSL::MatrixType::bitWidth\28\29\20const +7728:SkSL::MakeRasterPipelineProgram\28SkSL::Program\20const&\2c\20SkSL::FunctionDefinition\20const&\2c\20SkSL::DebugTracePriv*\2c\20bool\29 +7729:SkSL::Layout::operator!=\28SkSL::Layout\20const&\29\20const +7730:SkSL::Layout::description\28\29\20const +7731:SkSL::Intrinsics::\28anonymous\20namespace\29::finalize_distance\28double\29 +7732:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_matrixCompMult\28double\2c\20double\2c\20double\29 +7733:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_length\28std::__2::array\20const&\29 +7734:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_add\28SkSL::Context\20const&\2c\20std::__2::array\20const&\29 +7735:SkSL::Inliner::inlineStatement\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Analysis::ReturnComplexity\2c\20SkSL::Statement\20const&\2c\20SkSL::ProgramUsage\20const&\2c\20bool\29 +7736:SkSL::Inliner::inlineExpression\28SkSL::Position\2c\20skia_private::THashMap>\2c\20SkGoodHash>*\2c\20SkSL::SymbolTable*\2c\20SkSL::Expression\20const&\29 +7737:SkSL::Inliner::buildCandidateList\28std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\2c\20SkSL::InlineCandidateList*\29::$_1::operator\28\29\28SkSL::InlineCandidate\20const&\29\20const +7738:SkSL::Inliner::buildCandidateList\28std::__2::vector>\2c\20std::__2::allocator>>>\20const&\2c\20SkSL::SymbolTable*\2c\20SkSL::ProgramUsage*\2c\20SkSL::InlineCandidateList*\29::$_0::operator\28\29\28SkSL::InlineCandidate\20const&\29\20const +7739:SkSL::Inliner::InlinedCall::~InlinedCall\28\29 +7740:SkSL::IndexExpression::~IndexExpression\28\29 +7741:SkSL::IfStatement::~IfStatement\28\29 +7742:SkSL::IRHelpers::Ref\28SkSL::Variable\20const*\29\20const +7743:SkSL::IRHelpers::Mul\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29\20const +7744:SkSL::IRHelpers::Assign\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29\20const +7745:SkSL::GLSLCodeGenerator::writeVarDeclaration\28SkSL::VarDeclaration\20const&\2c\20bool\29 +7746:SkSL::GLSLCodeGenerator::writeProgramElement\28SkSL::ProgramElement\20const&\29 +7747:SkSL::GLSLCodeGenerator::writeMinAbsHack\28SkSL::Expression&\2c\20SkSL::Expression&\29 +7748:SkSL::GLSLCodeGenerator::generateCode\28\29 +7749:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::visitStatementPtr\28std::__2::unique_ptr>&\29 +7750:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::addLocalVariable\28SkSL::Variable\20const*\2c\20SkSL::Position\29 +7751:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29_7209 +7752:SkSL::FunctionDeclaration::~FunctionDeclaration\28\29 +7753:SkSL::FunctionDeclaration::mangledName\28\29\20const +7754:SkSL::FunctionDeclaration::getMainInputColorParameter\28\29\20const +7755:SkSL::FunctionDeclaration::getMainDestColorParameter\28\29\20const +7756:SkSL::FunctionDeclaration::determineFinalTypes\28SkSL::ExpressionArray\20const&\2c\20skia_private::STArray<8\2c\20SkSL::Type\20const*\2c\20true>*\2c\20SkSL::Type\20const**\29\20const +7757:SkSL::FunctionDeclaration::FunctionDeclaration\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ModifierFlags\2c\20std::__2::basic_string_view>\2c\20skia_private::TArray\2c\20SkSL::Type\20const*\2c\20SkSL::IntrinsicKind\29 +7758:SkSL::FunctionCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +7759:SkSL::FunctionCall::FunctionCall\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::FunctionDeclaration\20const*\2c\20SkSL::ExpressionArray\2c\20SkSL::FunctionCall\20const*\29 +7760:SkSL::FunctionCall::FindBestFunctionForCall\28SkSL::Context\20const&\2c\20SkSL::FunctionDeclaration\20const*\2c\20SkSL::ExpressionArray\20const&\29 +7761:SkSL::FunctionCall::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20SkSL::ExpressionArray\29 +7762:SkSL::ForStatement::~ForStatement\28\29 +7763:SkSL::ForStatement::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +7764:SkSL::FindIntrinsicKind\28std::__2::basic_string_view>\29 +7765:SkSL::FieldAccess::~FieldAccess\28\29_7086 +7766:SkSL::FieldAccess::~FieldAccess\28\29 +7767:SkSL::FieldAccess::description\28SkSL::OperatorPrecedence\29\20const +7768:SkSL::FieldAccess::FieldAccess\28SkSL::Position\2c\20std::__2::unique_ptr>\2c\20int\2c\20SkSL::FieldAccessOwnerKind\29 +7769:SkSL::ExtendedVariable::~ExtendedVariable\28\29 +7770:SkSL::Expression::isFloatLiteral\28\29\20const +7771:SkSL::Expression::coercionCost\28SkSL::Type\20const&\29\20const +7772:SkSL::DoStatement::~DoStatement\28\29_7075 +7773:SkSL::DoStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +7774:SkSL::DiscardStatement::Make\28SkSL::Context\20const&\2c\20SkSL::Position\29 +7775:SkSL::ContinueStatement::Make\28SkSL::Position\29 +7776:SkSL::ConstructorStruct::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +7777:SkSL::ConstructorScalarCast::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +7778:SkSL::ConstructorMatrixResize::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20std::__2::unique_ptr>\29 +7779:SkSL::Constructor::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const&\2c\20SkSL::ExpressionArray\29 +7780:SkSL::Compiler::resetErrors\28\29 +7781:SkSL::Compiler::initializeContext\28SkSL::Module\20const*\2c\20SkSL::ProgramKind\2c\20SkSL::ProgramSettings\2c\20std::__2::basic_string_view>\2c\20SkSL::ModuleType\29 +7782:SkSL::Compiler::cleanupContext\28\29 +7783:SkSL::CoercionCost::operator<\28SkSL::CoercionCost\29\20const +7784:SkSL::ChildCall::~ChildCall\28\29_7014 +7785:SkSL::ChildCall::~ChildCall\28\29 +7786:SkSL::ChildCall::Make\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Variable\20const&\2c\20SkSL::ExpressionArray\29 +7787:SkSL::ChildCall::ChildCall\28SkSL::Position\2c\20SkSL::Type\20const*\2c\20SkSL::Variable\20const*\2c\20SkSL::ExpressionArray\29 +7788:SkSL::BreakStatement::Make\28SkSL::Position\29 +7789:SkSL::Block::Block\28SkSL::Position\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>\2c\20SkSL::Block::Kind\2c\20std::__2::unique_ptr>\29 +7790:SkSL::BinaryExpression::isAssignmentIntoVariable\28\29 +7791:SkSL::ArrayType::columns\28\29\20const +7792:SkSL::Analysis::\28anonymous\20namespace\29::LoopControlFlowVisitor::visitStatement\28SkSL::Statement\20const&\29 +7793:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29::IsDynamicallyUniformExpressionVisitor::visitExpression\28SkSL::Expression\20const&\29 +7794:SkSL::Analysis::IsDynamicallyUniformExpression\28SkSL::Expression\20const&\29 +7795:SkSL::Analysis::IsConstantExpression\28SkSL::Expression\20const&\29 +7796:SkSL::Analysis::IsCompileTimeConstant\28SkSL::Expression\20const&\29::IsCompileTimeConstantVisitor::visitExpression\28SkSL::Expression\20const&\29 +7797:SkSL::Analysis::IsAssignable\28SkSL::Expression&\2c\20SkSL::Analysis::AssignmentInfo*\2c\20SkSL::ErrorReporter*\29 +7798:SkSL::Analysis::HasSideEffects\28SkSL::Expression\20const&\29::HasSideEffectsVisitor::visitExpression\28SkSL::Expression\20const&\29 +7799:SkSL::Analysis::GetLoopUnrollInfo\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::ForLoopPositions\20const&\2c\20SkSL::Statement\20const*\2c\20std::__2::unique_ptr>*\2c\20SkSL::Expression\20const*\2c\20SkSL::Statement\20const*\2c\20SkSL::ErrorReporter*\29 +7800:SkSL::Analysis::GetLoopControlFlowInfo\28SkSL::Statement\20const&\29 +7801:SkSL::Analysis::ContainsVariable\28SkSL::Expression\20const&\2c\20SkSL::Variable\20const&\29::ContainsVariableVisitor::visitExpression\28SkSL::Expression\20const&\29 +7802:SkSL::Analysis::ContainsRTAdjust\28SkSL::Expression\20const&\29::ContainsRTAdjustVisitor::visitExpression\28SkSL::Expression\20const&\29 +7803:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +7804:SkSL::AliasType::numberKind\28\29\20const +7805:SkSL::AliasType::isOrContainsBool\28\29\20const +7806:SkSL::AliasType::isOrContainsAtomic\28\29\20const +7807:SkSL::AliasType::isAllowedInES2\28\29\20const +7808:SkSBlockAllocator<80ul>::SkSBlockAllocator\28SkBlockAllocator::GrowthPolicy\2c\20unsigned\20long\29 +7809:SkRuntimeShader::~SkRuntimeShader\28\29 +7810:SkRuntimeEffectPriv::VarAsChild\28SkSL::Variable\20const&\2c\20int\29 +7811:SkRuntimeEffect::~SkRuntimeEffect\28\29 +7812:SkRuntimeEffect::getRPProgram\28SkSL::DebugTracePriv*\29\20const +7813:SkRuntimeEffect::MakeForShader\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +7814:SkRuntimeEffect::ChildPtr::type\28\29\20const +7815:SkRuntimeEffect::ChildPtr::shader\28\29\20const +7816:SkRuntimeEffect::ChildPtr::colorFilter\28\29\20const +7817:SkRuntimeEffect::ChildPtr::blender\28\29\20const +7818:SkRgnBuilder::collapsWithPrev\28\29 +7819:SkResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +7820:SkResourceCache::setTotalByteLimit\28unsigned\20long\29 +7821:SkResourceCache::release\28SkResourceCache::Rec*\29 +7822:SkResourceCache::purgeAll\28\29 +7823:SkResourceCache::newCachedData\28unsigned\20long\29 +7824:SkResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +7825:SkResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +7826:SkResourceCache::dump\28\29\20const +7827:SkResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +7828:SkResourceCache::PostPurgeSharedID\28unsigned\20long\20long\29 +7829:SkResourceCache::NewCachedData\28unsigned\20long\29 +7830:SkResourceCache::GetDiscardableFactory\28\29 +7831:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29 +7832:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::rowBytes\28int\29\20const +7833:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +7834:SkRegion::quickContains\28SkIRect\20const&\29\20const +7835:SkRegion::op\28SkIRect\20const&\2c\20SkRegion::Op\29 +7836:SkRegion::getRuns\28int*\2c\20int*\29\20const +7837:SkRegion::addBoundaryPath\28SkPathBuilder*\29\20const +7838:SkRegion::Spanerator::Spanerator\28SkRegion\20const&\2c\20int\2c\20int\2c\20int\29 +7839:SkRegion::RunHead::ensureWritable\28\29 +7840:SkRegion::RunHead::computeRunBounds\28SkIRect*\29 +7841:SkRegion::RunHead::Alloc\28int\2c\20int\2c\20int\29 +7842:SkRegion::Oper\28SkRegion\20const&\2c\20SkRegion\20const&\2c\20SkRegion::Op\2c\20SkRegion*\29 +7843:SkRefCntBase::internal_dispose\28\29\20const +7844:SkReduceOrder::Conic\28SkConic\20const&\2c\20SkPoint*\29 +7845:SkRectPriv::Subtract\28SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkIRect*\29 +7846:SkRectPriv::QuadContainsRect\28SkM44\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20float\29 +7847:SkRectPriv::QuadContainsRectMask\28SkM44\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20float\29 +7848:SkRectPriv::FitsInFixed\28SkRect\20const&\29 +7849:SkRectClipBlitter::requestRowsPreserved\28\29\20const +7850:SkRectClipBlitter::allocBlitMemory\28unsigned\20long\29 +7851:SkRect::set\28SkPoint\20const&\2c\20SkPoint\20const&\29 +7852:SkRect::roundOut\28SkRect*\29\20const +7853:SkRect::roundIn\28\29\20const +7854:SkRect::roundIn\28SkIRect*\29\20const +7855:SkRect::makeOffset\28float\2c\20float\29\20const +7856:SkRect::joinNonEmptyArg\28SkRect\20const&\29 +7857:SkRect::intersect\28SkRect\20const&\2c\20SkRect\20const&\29 +7858:SkRect::contains\28float\2c\20float\29\20const +7859:SkRect::contains\28SkIRect\20const&\29\20const +7860:SkRect*\20SkRecord::alloc\28unsigned\20long\29 +7861:SkRecords::FillBounds::popSaveBlock\28\29 +7862:SkRecords::FillBounds::popControl\28SkRect\20const&\29 +7863:SkRecords::FillBounds::AdjustForPaint\28SkPaint\20const*\2c\20SkRect*\29 +7864:SkRecordedDrawable::~SkRecordedDrawable\28\29 +7865:SkRecordOptimize\28SkRecord*\29 +7866:SkRecordFillBounds\28SkRect\20const&\2c\20SkRecord\20const&\2c\20SkRect*\2c\20SkBBoxHierarchy::Metadata*\29 +7867:SkRecordCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +7868:SkRecordCanvas::baseRecorder\28\29\20const +7869:SkRecord::~SkRecord\28\29 +7870:SkReadBuffer::skipByteArray\28unsigned\20long*\29 +7871:SkReadBuffer::readPad32\28void*\2c\20unsigned\20long\29 +7872:SkReadBuffer::SkReadBuffer\28void\20const*\2c\20unsigned\20long\29 +7873:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29 +7874:SkRasterPipelineContexts::UniformColorCtx*\20SkArenaAlloc::make\28\29 +7875:SkRasterPipelineContexts::TileCtx*\20SkArenaAlloc::make\28\29 +7876:SkRasterPipelineContexts::RewindCtx*\20SkArenaAlloc::make\28\29 +7877:SkRasterPipelineContexts::DecalTileCtx*\20SkArenaAlloc::make\28\29 +7878:SkRasterPipelineContexts::CopyIndirectCtx*\20SkArenaAlloc::make\28\29 +7879:SkRasterPipelineContexts::Conical2PtCtx*\20SkArenaAlloc::make\28\29 +7880:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29 +7881:SkRasterPipeline::buildPipeline\28SkRasterPipelineStage*\29\20const +7882:SkRasterPipeline::appendSetRGB\28SkArenaAlloc*\2c\20float\20const*\29 +7883:SkRasterPipeline::appendLoadDst\28SkColorType\2c\20SkRasterPipelineContexts::MemoryCtx\20const*\29 +7884:SkRasterClipStack::Rec::Rec\28SkRasterClip\20const&\29 +7885:SkRasterClip::setEmpty\28\29 +7886:SkRasterClip::computeIsRect\28\29\20const +7887:SkRandom::nextULessThan\28unsigned\20int\29 +7888:SkRTree::~SkRTree\28\29 +7889:SkRTree::search\28SkRTree::Node*\2c\20SkRect\20const&\2c\20std::__2::vector>*\29\20const +7890:SkRTree::bulkLoad\28std::__2::vector>*\2c\20int\29 +7891:SkRTree::allocateNodeAtLevel\28unsigned\20short\29 +7892:SkRRectPriv::IsSimpleCircular\28SkRRect\20const&\29 +7893:SkRRectPriv::ConservativeIntersect\28SkRRect\20const&\2c\20SkRRect\20const&\29::$_2::operator\28\29\28SkRRect::Corner\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29\20const +7894:SkRRectPriv::AllCornersCircular\28SkRRect\20const&\2c\20float\29 +7895:SkRRect::scaleRadii\28\29 +7896:SkRRect::isValid\28\29\20const +7897:SkRRect::computeType\28\29 +7898:SkRRect::AreRectAndRadiiValid\28SkRect\20const&\2c\20SkPoint\20const*\29 +7899:SkRGBA4f<\28SkAlphaType\292>\20skgpu::Swizzle::applyTo<\28SkAlphaType\292>\28SkRGBA4f<\28SkAlphaType\292>\29\20const +7900:SkRGBA4f<\28SkAlphaType\292>::unpremul\28\29\20const +7901:SkQuads::Roots\28double\2c\20double\2c\20double\29 +7902:SkQuadraticEdge::nextSegment\28\29 +7903:SkQuadConstruct::init\28float\2c\20float\29 +7904:SkPtrSet::add\28void*\29 +7905:SkPoint::Normalize\28SkPoint*\29 +7906:SkPixmap::readPixels\28SkPixmap\20const&\29\20const +7907:SkPixmap::readPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\29\20const +7908:SkPixmap::erase\28unsigned\20int\29\20const +7909:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const +7910:SkPixelRef::callGenIDChangeListeners\28\29 +7911:SkPictureRecorder::finishRecordingAsPicture\28\29 +7912:SkPictureRecorder::beginRecording\28SkRect\20const&\2c\20sk_sp\29 +7913:SkPictureRecord::fillRestoreOffsetPlaceholdersForCurrentStackLevel\28unsigned\20int\29 +7914:SkPictureRecord::endRecording\28\29 +7915:SkPictureRecord::beginRecording\28\29 +7916:SkPictureRecord::addPath\28SkPath\20const&\29 +7917:SkPictureRecord::addPathToHeap\28SkPath\20const&\29 +7918:SkPictureRecord::SkPictureRecord\28SkIRect\20const&\2c\20unsigned\20int\29 +7919:SkPictureImageGenerator::~SkPictureImageGenerator\28\29 +7920:SkPictureData::~SkPictureData\28\29 +7921:SkPictureData::flatten\28SkWriteBuffer&\29\20const +7922:SkPictureData::SkPictureData\28SkPictureRecord\20const&\2c\20SkPictInfo\20const&\29 +7923:SkPicture::SkPicture\28\29 +7924:SkPathWriter::nativePath\28\29 +7925:SkPathWriter::moveTo\28\29 +7926:SkPathWriter::init\28\29 +7927:SkPathWriter::assemble\28\29 +7928:SkPathStroker::setQuadEndNormal\28SkPoint\20const*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint*\2c\20SkPoint*\29 +7929:SkPathStroker::cubicQuadEnds\28SkPoint\20const*\2c\20SkQuadConstruct*\29 +7930:SkPathRef::commonReset\28\29 +7931:SkPathRef::CreateEmpty\28\29 +7932:SkPathRawShapes::Oval::Oval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +7933:SkPathRaw::isRect\28\29\20const +7934:SkPathPriv::TransformDirAndStart\28SkMatrix\20const&\2c\20bool\2c\20SkPathDirection\2c\20unsigned\20int\29 +7935:SkPathPriv::Raw\28SkPathBuilder\20const&\29 +7936:SkPathPriv::PerspectiveClip\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath*\29 +7937:SkPathPriv::IsNestedFillRects\28SkPathRaw\20const&\2c\20SkRect*\2c\20SkPathDirection*\29 +7938:SkPathPriv::IsAxisAligned\28SkSpan\29 +7939:SkPathPriv::DeduceRRectFromContour\28SkRect\20const&\2c\20SkSpan\2c\20SkSpan\29 +7940:SkPathPriv::CreateDrawArcPath\28SkArc\20const&\2c\20bool\29 +7941:SkPathPriv::ComputeFirstDirection\28SkPathRaw\20const&\29 +7942:SkPathPriv::ComputeConvexity\28SkSpan\2c\20SkSpan\2c\20SkSpan\29 +7943:SkPathOpsBounds::Intersects\28SkPathOpsBounds\20const&\2c\20SkPathOpsBounds\20const&\29 +7944:SkPathMeasure::~SkPathMeasure\28\29 +7945:SkPathMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29 +7946:SkPathMeasure::SkPathMeasure\28SkPath\20const&\2c\20bool\2c\20float\29 +7947:SkPathEffectBase::PointData::~PointData\28\29 +7948:SkPathEdgeIter::next\28\29::'lambda'\28\29::operator\28\29\28\29\20const +7949:SkPathEdgeIter::SkPathEdgeIter\28SkPath\20const&\29 +7950:SkPathBuilder::setLastPt\28float\2c\20float\29 +7951:SkPathBuilder::rQuadTo\28float\2c\20float\2c\20float\2c\20float\29 +7952:SkPathBuilder::operator=\28SkPathBuilder\20const&\29 +7953:SkPathBuilder::computeFiniteBounds\28\29\20const +7954:SkPathBuilder::addRRect\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +7955:SkPathBuilder::addOval\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +7956:SkPathBuilder::addCircle\28float\2c\20float\2c\20float\2c\20SkPathDirection\29 +7957:SkPath::writeToMemory\28void*\29\20const +7958:SkPath::makeOffset\28float\2c\20float\29\20const +7959:SkPath::incReserve\28int\2c\20int\2c\20int\29 +7960:SkPath::getConvexity\28\29\20const +7961:SkPath::copyFields\28SkPath\20const&\29 +7962:SkPath::conservativelyContainsRect\28SkRect\20const&\29\20const +7963:SkPath::arcTo\28float\2c\20float\2c\20float\2c\20SkPath::ArcSize\2c\20SkPathDirection\2c\20float\2c\20float\29 +7964:SkPath::arcTo\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +7965:SkPath::addRect\28SkRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\29 +7966:SkPath::addPath\28SkPath\20const&\2c\20SkPath::AddPathMode\29 +7967:SkPath::addPath\28SkPath\20const&\2c\20SkMatrix\20const&\2c\20SkPath::AddPathMode\29 +7968:SkPath::RRect\28SkRRect\20const&\2c\20SkPathDirection\29 +7969:SkPath::Iter::next\28SkPoint*\29 +7970:SkPaintToGrPaintWithBlend\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkBlender*\2c\20GrPaint*\29 +7971:SkPaintPriv::ShouldDither\28SkPaint\20const&\2c\20SkColorType\29 +7972:SkOpSpanBase::merge\28SkOpSpan*\29 +7973:SkOpSpanBase::initBase\28SkOpSegment*\2c\20SkOpSpan*\2c\20double\2c\20SkPoint\20const&\29 +7974:SkOpSpan::sortableTop\28SkOpContour*\29 +7975:SkOpSpan::setOppSum\28int\29 +7976:SkOpSpan::insertCoincidence\28SkOpSpan*\29 +7977:SkOpSpan::insertCoincidence\28SkOpSegment\20const*\2c\20bool\2c\20bool\29 +7978:SkOpSpan::init\28SkOpSegment*\2c\20SkOpSpan*\2c\20double\2c\20SkPoint\20const&\29 +7979:SkOpSpan::containsCoincidence\28SkOpSegment\20const*\29\20const +7980:SkOpSpan::computeWindSum\28\29 +7981:SkOpSegment::updateOppWindingReverse\28SkOpAngle\20const*\29\20const +7982:SkOpSegment::ptsDisjoint\28double\2c\20SkPoint\20const&\2c\20double\2c\20SkPoint\20const&\29\20const +7983:SkOpSegment::markWinding\28SkOpSpan*\2c\20int\29 +7984:SkOpSegment::isClose\28double\2c\20SkOpSegment\20const*\29\20const +7985:SkOpSegment::computeSum\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkOpAngle::IncludeType\29 +7986:SkOpSegment::collapsed\28double\2c\20double\29\20const +7987:SkOpSegment::addExpanded\28double\2c\20SkOpSpanBase\20const*\2c\20bool*\29 +7988:SkOpSegment::activeWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\29 +7989:SkOpSegment::activeOp\28int\2c\20int\2c\20SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20SkPathOp\2c\20int*\2c\20int*\29 +7990:SkOpSegment::activeAngle\28SkOpSpanBase*\2c\20SkOpSpanBase**\2c\20SkOpSpanBase**\2c\20bool*\29 +7991:SkOpSegment::activeAngleInner\28SkOpSpanBase*\2c\20SkOpSpanBase**\2c\20SkOpSpanBase**\2c\20bool*\29 +7992:SkOpPtT::ptAlreadySeen\28SkOpPtT\20const*\29\20const +7993:SkOpEdgeBuilder::~SkOpEdgeBuilder\28\29 +7994:SkOpEdgeBuilder::preFetch\28\29 +7995:SkOpEdgeBuilder::finish\28\29 +7996:SkOpEdgeBuilder::SkOpEdgeBuilder\28SkPath\20const&\2c\20SkOpContourHead*\2c\20SkOpGlobalState*\29 +7997:SkOpContourBuilder::addQuad\28SkPoint*\29 +7998:SkOpContourBuilder::addLine\28SkPoint\20const*\29 +7999:SkOpContourBuilder::addCubic\28SkPoint*\29 +8000:SkOpContourBuilder::addConic\28SkPoint*\2c\20float\29 +8001:SkOpCoincidence::restoreHead\28\29 +8002:SkOpCoincidence::releaseDeleted\28SkCoincidentSpans*\29 +8003:SkOpCoincidence::mark\28\29 +8004:SkOpCoincidence::markCollapsed\28SkCoincidentSpans*\2c\20SkOpPtT*\29 +8005:SkOpCoincidence::fixUp\28SkCoincidentSpans*\2c\20SkOpPtT*\2c\20SkOpPtT\20const*\29 +8006:SkOpCoincidence::contains\28SkCoincidentSpans\20const*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\29\20const +8007:SkOpCoincidence::checkOverlap\28SkCoincidentSpans*\2c\20SkOpSegment\20const*\2c\20SkOpSegment\20const*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20SkTDArray*\29\20const +8008:SkOpCoincidence::addOrOverlap\28SkOpSegment*\2c\20SkOpSegment*\2c\20double\2c\20double\2c\20double\2c\20double\2c\20bool*\29 +8009:SkOpCoincidence::addMissing\28bool*\29 +8010:SkOpCoincidence::addEndMovedSpans\28SkOpSpan\20const*\2c\20SkOpSpanBase\20const*\29 +8011:SkOpAngle::tangentsDiverge\28SkOpAngle\20const*\2c\20double\29 +8012:SkOpAngle::setSpans\28\29 +8013:SkOpAngle::setSector\28\29 +8014:SkOpAngle::previous\28\29\20const +8015:SkOpAngle::midToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +8016:SkOpAngle::merge\28SkOpAngle*\29 +8017:SkOpAngle::loopContains\28SkOpAngle\20const*\29\20const +8018:SkOpAngle::lineOnOneSide\28SkOpAngle\20const*\2c\20bool\29 +8019:SkOpAngle::findSector\28SkPath::Verb\2c\20double\2c\20double\29\20const +8020:SkOpAngle::endToSide\28SkOpAngle\20const*\2c\20bool*\29\20const +8021:SkOpAngle::checkCrossesZero\28\29\20const +8022:SkOpAngle::alignmentSameSide\28SkOpAngle\20const*\2c\20int*\29\20const +8023:SkOpAngle::after\28SkOpAngle*\29 +8024:SkOffsetSimplePolygon\28SkPoint\20const*\2c\20int\2c\20SkRect\20const&\2c\20float\2c\20SkTDArray*\2c\20SkTDArray*\29 +8025:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29 +8026:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29 +8027:SkNullBlitter*\20SkArenaAlloc::make\28\29 +8028:SkNotifyBitmapGenIDIsStale\28unsigned\20int\29 +8029:SkNoPixelsDevice::~SkNoPixelsDevice\28\29 +8030:SkNoPixelsDevice::SkNoPixelsDevice\28SkIRect\20const&\2c\20SkSurfaceProps\20const&\29 +8031:SkNoDestructor::SkNoDestructor\2c\20sk_sp>\28sk_sp&&\2c\20sk_sp&&\29 +8032:SkNVRefCnt::unref\28\29\20const +8033:SkNVRefCnt::unref\28\29\20const +8034:SkNVRefCnt::unref\28\29\20const +8035:SkNVRefCnt::unref\28\29\20const +8036:SkNVRefCnt::unref\28\29\20const +8037:SkModifyPaintAndDstForDrawImageRect\28SkImage\20const*\2c\20SkSamplingOptions\20const&\2c\20SkRect\2c\20SkRect\2c\20bool\2c\20SkPaint*\29 +8038:SkMipmapAccessor::SkMipmapAccessor\28SkImage_Base\20const*\2c\20SkMatrix\20const&\2c\20SkMipmapMode\29::$_1::operator\28\29\28SkPixmap\20const&\29\20const +8039:SkMipmap::~SkMipmap\28\29 +8040:SkMessageBus::Get\28\29 +8041:SkMeshSpecification::Attribute::Attribute\28SkMeshSpecification::Attribute\20const&\29 +8042:SkMeshSpecification::Attribute::Attribute\28SkMeshSpecification::Attribute&&\29 +8043:SkMeshPriv::CpuBuffer::~CpuBuffer\28\29 +8044:SkMeshPriv::CpuBuffer::size\28\29\20const +8045:SkMeshPriv::CpuBuffer::peek\28\29\20const +8046:SkMeshPriv::CpuBuffer::onUpdate\28GrDirectContext*\2c\20void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\29 +8047:SkMemoryStream::~SkMemoryStream\28\29 +8048:SkMemoryStream::SkMemoryStream\28sk_sp\29 +8049:SkMatrixPriv::MapPointsWithStride\28SkMatrix\20const&\2c\20SkPoint*\2c\20unsigned\20long\2c\20int\29 +8050:SkMatrixPriv::IsScaleTranslateAsM33\28SkM44\20const&\29 +8051:SkMatrix::updateTranslateMask\28\29 +8052:SkMatrix::setScale\28float\2c\20float\29 +8053:SkMatrix::postSkew\28float\2c\20float\29 +8054:SkMatrix::mapVectors\28SkSpan\2c\20SkSpan\29\20const +8055:SkMatrix::mapRectScaleTranslate\28SkRect*\2c\20SkRect\20const&\29\20const +8056:SkMatrix::mapPointToHomogeneous\28SkPoint\29\20const +8057:SkMatrix::mapHomogeneousPoints\28SkSpan\2c\20SkSpan\29\20const +8058:SkMatrix::isTranslate\28\29\20const +8059:SkMatrix::getMinScale\28\29\20const +8060:SkMatrix::computeTypeMask\28\29\20const +8061:SkMatrix::ScaleTranslate\28float\2c\20float\2c\20float\2c\20float\29 +8062:SkMatrix::Rect2Rect\28SkRect\20const&\2c\20SkRect\20const&\2c\20SkMatrix::ScaleToFit\29 +8063:SkMatrix*\20SkRecord::alloc\28unsigned\20long\29 +8064:SkMaskFilterBase::filterRects\28SkSpan\2c\20SkMatrix\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\2c\20SkResourceCache*\29\20const +8065:SkMaskFilterBase::NinePatch::~NinePatch\28\29 +8066:SkMask*\20SkTLazy::init\28unsigned\20char\20const*&&\2c\20SkIRect\20const&\2c\20unsigned\20int\20const&\2c\20SkMask::Format\20const&\29 +8067:SkMask*\20SkTLazy::init\28SkMaskBuilder&\29 +8068:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29 +8069:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29 +8070:SkMakeBitmapShaderForPaint\28SkPaint\20const&\2c\20SkBitmap\20const&\2c\20SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\2c\20SkCopyPixelsMode\29 +8071:SkM44::preScale\28float\2c\20float\29 +8072:SkM44::preConcat\28SkM44\20const&\29 +8073:SkM44::postTranslate\28float\2c\20float\2c\20float\29 +8074:SkM44::isFinite\28\29\20const +8075:SkM44::RectToRect\28SkRect\20const&\2c\20SkRect\20const&\29 +8076:SkLinearColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +8077:SkLineParameters::normalize\28\29 +8078:SkLineParameters::cubicEndPoints\28SkDCubic\20const&\29 +8079:SkLineClipper::ClipLine\28SkPoint\20const*\2c\20SkRect\20const&\2c\20SkPoint*\2c\20bool\29 +8080:SkLatticeIter::~SkLatticeIter\28\29 +8081:SkLatticeIter::next\28SkIRect*\2c\20SkRect*\2c\20bool*\2c\20unsigned\20int*\29 +8082:SkLatticeIter::SkLatticeIter\28SkCanvas::Lattice\20const&\2c\20SkRect\20const&\29 +8083:SkLRUCache>\2c\20skia::textlayout::ParagraphCache::KeyHash\2c\20SkNoOpPurge>::find\28skia::textlayout::ParagraphCacheKey\20const&\29 +8084:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::insert\28SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::Entry*\29 +8085:SkLRUCache>\2c\20GrGLGpu::ProgramCache::DescHash\2c\20SkNoOpPurge>::find\28GrProgramDesc\20const&\29 +8086:SkKnownRuntimeEffects::\28anonymous\20namespace\29::make_matrix_conv_shader\28SkKnownRuntimeEffects::\28anonymous\20namespace\29::MatrixConvolutionImpl\2c\20SkKnownRuntimeEffects::StableKey\29::$_0::operator\28\29\28int\2c\20SkRuntimeEffect::Options\20const&\29\20const +8087:SkIsSimplePolygon\28SkPoint\20const*\2c\20int\29 +8088:SkIsConvexPolygon\28SkPoint\20const*\2c\20int\29 +8089:SkInvert3x3Matrix\28float\20const*\2c\20float*\29 +8090:SkIntersections::quadVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8091:SkIntersections::quadLine\28SkPoint\20const*\2c\20SkPoint\20const*\29 +8092:SkIntersections::quadHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8093:SkIntersections::mostOutside\28double\2c\20double\2c\20SkDPoint\20const&\29\20const +8094:SkIntersections::lineVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8095:SkIntersections::lineHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8096:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDQuad\20const&\29 +8097:SkIntersections::intersect\28SkDCubic\20const&\2c\20SkDConic\20const&\29 +8098:SkIntersections::intersect\28SkDConic\20const&\2c\20SkDQuad\20const&\29 +8099:SkIntersections::insertCoincident\28double\2c\20double\2c\20SkDPoint\20const&\29 +8100:SkIntersections::cubicVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8101:SkIntersections::cubicLine\28SkPoint\20const*\2c\20SkPoint\20const*\29 +8102:SkIntersections::cubicHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8103:SkIntersections::conicVertical\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8104:SkIntersections::conicLine\28SkPoint\20const*\2c\20float\2c\20SkPoint\20const*\29 +8105:SkIntersections::conicHorizontal\28SkPoint\20const*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20bool\29 +8106:SkImages::RasterFromPixmap\28SkPixmap\20const&\2c\20void\20\28*\29\28void\20const*\2c\20void*\29\2c\20void*\29 +8107:SkImages::RasterFromData\28SkImageInfo\20const&\2c\20sk_sp\2c\20unsigned\20long\29 +8108:SkImage_Raster::~SkImage_Raster\28\29 +8109:SkImage_Raster::onPeekMips\28\29\20const +8110:SkImage_Raster::onPeekBitmap\28\29\20const +8111:SkImage_Raster::SkImage_Raster\28SkBitmap\20const&\2c\20bool\29 +8112:SkImage_Picture::Make\28sk_sp\2c\20SkISize\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\2c\20SkImages::BitDepth\2c\20sk_sp\2c\20SkSurfaceProps\29 +8113:SkImage_Lazy::~SkImage_Lazy\28\29 +8114:SkImage_Lazy::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +8115:SkImage_GaneshBase::~SkImage_GaneshBase\28\29 +8116:SkImage_GaneshBase::SkImage_GaneshBase\28sk_sp\2c\20SkImageInfo\2c\20unsigned\20int\29 +8117:SkImage_Base::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +8118:SkImage_Base::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +8119:SkImageShader::~SkImageShader\28\29 +8120:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_3::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +8121:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const::$_1::operator\28\29\28\28anonymous\20namespace\29::MipLevelHelper\20const*\29\20const +8122:SkImageInfoValidConversion\28SkImageInfo\20const&\2c\20SkImageInfo\20const&\29 +8123:SkImageGenerator::SkImageGenerator\28SkImageInfo\20const&\2c\20unsigned\20int\29 +8124:SkImageFilters::Crop\28SkRect\20const&\2c\20sk_sp\29 +8125:SkImageFilters::Blur\28float\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkImageFilters::CropRect\20const&\29 +8126:SkImageFilter_Base::getInputBounds\28skif::Mapping\20const&\2c\20skif::DeviceSpace\20const&\2c\20std::__2::optional>\29\20const +8127:SkImageFilterCache::Get\28SkImageFilterCache::CreateIfNecessary\29 +8128:SkImageFilterCache::Create\28unsigned\20long\29 +8129:SkImage::~SkImage\28\29 +8130:SkImage::peekPixels\28SkPixmap*\29\20const +8131:SkImage::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const*\29\20const +8132:SkImage::makeRasterImage\28GrDirectContext*\2c\20SkImage::CachingHint\29\20const +8133:SkIcuBreakIteratorCache::purgeIfNeeded\28\29 +8134:SkIcuBreakIteratorCache::makeBreakIterator\28SkUnicode::BreakType\2c\20char\20const*\29::'lambda'\28SkIcuBreakIteratorCache::Request\20const&\29::operator\28\29\28SkIcuBreakIteratorCache::Request\20const&\29\20const +8135:SkIcuBreakIteratorCache::Request::operator==\28SkIcuBreakIteratorCache::Request\20const&\29\20const +8136:SkIcuBreakIteratorCache::Request::Request\28SkUnicode::BreakType\2c\20char\20const*\29 +8137:SkIRect::offset\28SkIPoint\20const&\29 +8138:SkIRect::containsNoEmptyCheck\28SkIRect\20const&\29\20const +8139:SkGradientShader::MakeTwoPointConical\28SkPoint\20const&\2c\20float\2c\20SkPoint\20const&\2c\20float\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +8140:SkGradientShader::MakeLinear\28SkPoint\20const*\2c\20SkRGBA4f<\28SkAlphaType\293>\20const*\2c\20sk_sp\2c\20float\20const*\2c\20int\2c\20SkTileMode\2c\20SkGradientShader::Interpolation\20const&\2c\20SkMatrix\20const*\29 +8141:SkGradientBaseShader::~SkGradientBaseShader\28\29 +8142:SkGradientBaseShader::getPos\28int\29\20const +8143:SkGradientBaseShader::AppendGradientFillStages\28SkRasterPipeline*\2c\20SkArenaAlloc*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const*\2c\20float\20const*\2c\20int\29 +8144:SkGlyph::mask\28SkPoint\29\20const +8145:SkGlyph::ensureIntercepts\28float\20const*\2c\20float\2c\20float\2c\20float*\2c\20int*\2c\20SkArenaAlloc*\29::$_1::operator\28\29\28SkGlyph::Intercept\20const*\2c\20float*\2c\20int*\29\20const +8146:SkGenerateDistanceFieldFromA8Image\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\2c\20int\2c\20unsigned\20long\29 +8147:SkGaussFilter::SkGaussFilter\28double\29 +8148:SkFrameHolder::setAlphaAndRequiredFrame\28SkFrame*\29 +8149:SkFrame::fillIn\28SkCodec::FrameInfo*\2c\20bool\29\20const +8150:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29 +8151:SkFontStyleSet::CreateEmpty\28\29 +8152:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29 +8153:SkFontScanner_FreeType::scanInstance\28SkStreamAsset*\2c\20int\2c\20int\2c\20SkString*\2c\20SkFontStyle*\2c\20bool*\2c\20skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>*\2c\20skia_private::STArray<4\2c\20SkFontArguments::VariationPosition::Coordinate\2c\20true>*\29\20const +8154:SkFontScanner_FreeType::computeAxisValues\28skia_private::STArray<4\2c\20SkFontParameters::Variation::Axis\2c\20true>\20const&\2c\20SkFontArguments::VariationPosition\2c\20SkFontArguments::VariationPosition\2c\20int*\2c\20SkString\20const&\2c\20SkFontStyle*\29 +8155:SkFontScanner_FreeType::SkFontScanner_FreeType\28\29 +8156:SkFontPriv::MakeTextMatrix\28float\2c\20float\2c\20float\29 +8157:SkFontPriv::GetFontBounds\28SkFont\20const&\29 +8158:SkFontMgr_Custom::~SkFontMgr_Custom\28\29 +8159:SkFontMgr_Custom::onMakeFromStreamArgs\28std::__2::unique_ptr>\2c\20SkFontArguments\20const&\29\20const +8160:SkFontDescriptor::SkFontStyleWidthForWidthAxisValue\28float\29 +8161:SkFontData::~SkFontData\28\29 +8162:SkFontData::SkFontData\28std::__2::unique_ptr>\2c\20int\2c\20int\2c\20int\20const*\2c\20int\2c\20SkFontArguments::Palette::Override\20const*\2c\20int\29 +8163:SkFont::operator==\28SkFont\20const&\29\20const +8164:SkFont::getPaths\28SkSpan\2c\20void\20\28*\29\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29\2c\20void*\29\20const +8165:SkFloatInterpFunc\28float\2c\20float\20const*\2c\20float\20const*\2c\20int\29 +8166:SkFindCubicInflections\28SkPoint\20const*\2c\20float*\29 +8167:SkFindCubicExtrema\28float\2c\20float\2c\20float\2c\20float\2c\20float*\29 +8168:SkFindBisector\28SkPoint\2c\20SkPoint\29 +8169:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda0'\28\29::operator\28\29\28\29\20const +8170:SkFibBlockSizes<4294967295u>::SkFibBlockSizes\28unsigned\20int\2c\20unsigned\20int\29::'lambda'\28\29::operator\28\29\28\29\20const +8171:SkFILEStream::~SkFILEStream\28\29 +8172:SkExif::parse_ifd\28SkExif::Metadata&\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20bool\2c\20bool\29 +8173:SkEvalQuadTangentAt\28SkPoint\20const*\2c\20float\29 +8174:SkEvalQuadAt\28SkPoint\20const*\2c\20float\2c\20SkPoint*\2c\20SkPoint*\29 +8175:SkEncodedInfo::makeImageInfo\28\29\20const +8176:SkEncodedInfo::Make\28int\2c\20int\2c\20SkEncodedInfo::Color\2c\20SkEncodedInfo::Alpha\2c\20int\2c\20std::__2::unique_ptr>\29 +8177:SkEdgeClipper::next\28SkPoint*\29 +8178:SkEdgeClipper::clipQuad\28SkPoint\20const*\2c\20SkRect\20const&\29 +8179:SkEdgeClipper::clipLine\28SkPoint\2c\20SkPoint\2c\20SkRect\20const&\29 +8180:SkEdgeClipper::appendCubic\28SkPoint\20const*\2c\20bool\29 +8181:SkEdgeClipper::ClipPath\28SkPathRaw\20const&\2c\20SkRect\20const&\2c\20bool\2c\20void\20\28*\29\28SkEdgeClipper*\2c\20bool\2c\20void*\29\2c\20void*\29 +8182:SkEdgeBuilder::build\28SkPathRaw\20const&\2c\20SkIRect\20const*\2c\20bool\29::$_1::operator\28\29\28SkPoint\20const*\29\20const +8183:SkEdgeBuilder::buildEdges\28SkPathRaw\20const&\2c\20SkIRect\20const*\29 +8184:SkEdgeBuilder::SkEdgeBuilder\28\29 +8185:SkEdge::updateLine\28int\2c\20int\2c\20int\2c\20int\29 +8186:SkDynamicMemoryWStream::reset\28\29 +8187:SkDynamicMemoryWStream::Block::append\28void\20const*\2c\20unsigned\20long\29 +8188:SkDrawableList::newDrawableSnapshot\28\29 +8189:SkDrawShadowMetrics::GetSpotShadowTransform\28SkPoint3\20const&\2c\20float\2c\20SkMatrix\20const&\2c\20SkPoint3\20const&\2c\20SkRect\20const&\2c\20bool\2c\20SkMatrix*\2c\20float*\29 +8190:SkDevice::setOrigin\28SkM44\20const&\2c\20int\2c\20int\29 +8191:SkDevice::setDeviceCoordinateSystem\28SkM44\20const&\2c\20SkM44\20const&\2c\20SkM44\20const&\2c\20int\2c\20int\29 +8192:SkDevice::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +8193:SkDevice::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +8194:SkDevice::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +8195:SkDevice::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +8196:SkDescriptor::addEntry\28unsigned\20int\2c\20unsigned\20long\2c\20void\20const*\29 +8197:SkDeque::push_back\28\29 +8198:SkDeque::allocateBlock\28int\29 +8199:SkDeque::Iter::Iter\28SkDeque\20const&\2c\20SkDeque::Iter::IterStart\29 +8200:SkData::shareSubset\28unsigned\20long\2c\20unsigned\20long\29::$_0::__invoke\28void\20const*\2c\20void*\29 +8201:SkDashPath::InternalFilter\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkSpan\2c\20float\2c\20int\2c\20float\2c\20float\2c\20SkDashPath::StrokeRecApplication\29 +8202:SkDashPath::CalcDashParameters\28float\2c\20SkSpan\2c\20float*\2c\20unsigned\20long*\2c\20float*\2c\20float*\29 +8203:SkDashImpl::~SkDashImpl\28\29 +8204:SkDRect::setBounds\28SkDQuad\20const&\2c\20SkDQuad\20const&\2c\20double\2c\20double\29 +8205:SkDRect::setBounds\28SkDCubic\20const&\2c\20SkDCubic\20const&\2c\20double\2c\20double\29 +8206:SkDRect::setBounds\28SkDConic\20const&\2c\20SkDConic\20const&\2c\20double\2c\20double\29 +8207:SkDQuad::subDivide\28double\2c\20double\29\20const +8208:SkDQuad::otherPts\28int\2c\20SkDPoint\20const**\29\20const +8209:SkDQuad::isLinear\28int\2c\20int\29\20const +8210:SkDQuad::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +8211:SkDQuad::FindExtrema\28double\20const*\2c\20double*\29 +8212:SkDQuad::AddValidTs\28double*\2c\20int\2c\20double*\29 +8213:SkDPoint::roughlyEqual\28SkDPoint\20const&\29\20const +8214:SkDPoint::approximatelyDEqual\28SkDPoint\20const&\29\20const +8215:SkDCurveSweep::setCurveHullSweep\28SkPath::Verb\29 +8216:SkDCubic::monotonicInY\28\29\20const +8217:SkDCubic::monotonicInX\28\29\20const +8218:SkDCubic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +8219:SkDCubic::hullIntersects\28SkDPoint\20const*\2c\20int\2c\20bool*\29\20const +8220:SkDCubic::Coefficients\28double\20const*\2c\20double*\2c\20double*\2c\20double*\2c\20double*\29 +8221:SkDConic::subDivide\28double\2c\20double\29\20const +8222:SkDConic::FindExtrema\28double\20const*\2c\20float\2c\20double*\29 +8223:SkCubics::RootsReal\28double\2c\20double\2c\20double\2c\20double\2c\20double*\29 +8224:SkCubicEdge::nextSegment\28\29 +8225:SkCubicClipper::ChopMonoAtY\28SkPoint\20const*\2c\20float\2c\20float*\29 +8226:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20SkArenaAlloc*\2c\20sk_sp\29 +8227:SkCreateRasterPipelineBlitter\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkMatrix\20const&\2c\20SkArenaAlloc*\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +8228:SkContourMeasureIter::SkContourMeasureIter\28SkPath\20const&\2c\20bool\2c\20float\29 +8229:SkContourMeasureIter::Impl::compute_line_seg\28SkPoint\2c\20SkPoint\2c\20float\2c\20unsigned\20int\29 +8230:SkContourMeasure::~SkContourMeasure\28\29 +8231:SkContourMeasure::getSegment\28float\2c\20float\2c\20SkPathBuilder*\2c\20bool\29\20const +8232:SkConicalGradient::getCenterX1\28\29\20const +8233:SkConic::evalTangentAt\28float\29\20const +8234:SkConic::chop\28SkConic*\29\20const +8235:SkConic::chopIntoQuadsPOW2\28SkPoint*\2c\20int\29\20const +8236:SkComposeColorFilter::~SkComposeColorFilter\28\29 +8237:SkColorTypeValidateAlphaType\28SkColorType\2c\20SkAlphaType\2c\20SkAlphaType*\29 +8238:SkColorToPMColor4f\28unsigned\20int\2c\20GrColorInfo\20const&\29 +8239:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29 +8240:SkColorSpaceSingletonFactory::Make\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +8241:SkColorSpaceLuminance::Fetch\28float\29 +8242:SkColorSpace::toProfile\28skcms_ICCProfile*\29\20const +8243:SkColorSpace::makeLinearGamma\28\29\20const +8244:SkColorSpace::gamutTransformTo\28SkColorSpace\20const*\2c\20skcms_Matrix3x3*\29\20const +8245:SkColorSpace::computeLazyDstFields\28\29\20const +8246:SkColorSpace::SkColorSpace\28skcms_TransferFunction\20const&\2c\20skcms_Matrix3x3\20const&\29 +8247:SkColorFilters::Matrix\28float\20const*\2c\20SkColorFilters::Clamp\29 +8248:SkColorFilterShader::~SkColorFilterShader\28\29 +8249:SkColorFilterShader::Make\28sk_sp\2c\20float\2c\20sk_sp\29 +8250:SkColor4fXformer::~SkColor4fXformer\28\29 +8251:SkColor4fXformer::SkColor4fXformer\28SkGradientBaseShader\20const*\2c\20SkColorSpace*\2c\20bool\29 +8252:SkCoincidentSpans::contains\28SkOpPtT\20const*\2c\20SkOpPtT\20const*\29\20const +8253:SkCodec::startScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const*\29 +8254:SkCodec::startIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const*\29 +8255:SkCodec::onGetYUVAPlanes\28SkYUVAPixmaps\20const&\29 +8256:SkCodec::initializeColorXform\28SkImageInfo\20const&\2c\20SkEncodedInfo::Alpha\2c\20bool\29 +8257:SkChopQuadAtMaxCurvature\28SkPoint\20const*\2c\20SkPoint*\29 +8258:SkChopQuadAtHalf\28SkPoint\20const*\2c\20SkPoint*\29 +8259:SkChopCubicAt\28SkPoint\20const*\2c\20SkPoint*\2c\20float\2c\20float\29 +8260:SkChopCubicAtInflections\28SkPoint\20const*\2c\20SkPoint*\29 +8261:SkChooseA8Blitter\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\29 +8262:SkCharToGlyphCache::reset\28\29 +8263:SkCharToGlyphCache::findGlyphIndex\28int\29\20const +8264:SkCanvasVirtualEnforcer::SkCanvasVirtualEnforcer\28SkIRect\20const&\29 +8265:SkCanvasPriv::WriteLattice\28void*\2c\20SkCanvas::Lattice\20const&\29 +8266:SkCanvasPriv::GetDstClipAndMatrixCounts\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20int*\2c\20int*\29 +8267:SkCanvas::setMatrix\28SkMatrix\20const&\29 +8268:SkCanvas::internalSaveLayer\28SkCanvas::SaveLayerRec\20const&\2c\20SkCanvas::SaveLayerStrategy\2c\20bool\29 +8269:SkCanvas::internalDrawPaint\28SkPaint\20const&\29 +8270:SkCanvas::experimental_DrawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +8271:SkCanvas::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +8272:SkCanvas::drawPicture\28sk_sp\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +8273:SkCanvas::drawPicture\28SkPicture\20const*\29 +8274:SkCanvas::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +8275:SkCanvas::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +8276:SkCanvas::drawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +8277:SkCanvas::didTranslate\28float\2c\20float\29 +8278:SkCanvas::clipPath\28SkPath\20const&\2c\20bool\29 +8279:SkCanvas::clipIRect\28SkIRect\20const&\2c\20SkClipOp\29 +8280:SkCachedData::setData\28void*\29 +8281:SkCachedData::internalUnref\28bool\29\20const +8282:SkCachedData::internalRef\28bool\29\20const +8283:SkCachedData::SkCachedData\28void*\2c\20unsigned\20long\29 +8284:SkCachedData::SkCachedData\28unsigned\20long\2c\20SkDiscardableMemory*\29 +8285:SkCTMShader::isOpaque\28\29\20const +8286:SkBulkGlyphMetricsAndPaths::glyphs\28SkSpan\29 +8287:SkBreakIterator_icu::~SkBreakIterator_icu\28\29 +8288:SkBlurMaskFilterImpl::filterRectMask\28SkMaskBuilder*\2c\20SkRect\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\2c\20SkMaskBuilder::CreateMode\29\20const +8289:SkBlurMask::ComputeBlurredScanline\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20unsigned\20int\2c\20float\29 +8290:SkBlockAllocator::addBlock\28int\2c\20int\29 +8291:SkBlockAllocator::BlockIter::Item::advance\28SkBlockAllocator::Block*\29 +8292:SkBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +8293:SkBlitter::blitRectRegion\28SkIRect\20const&\2c\20SkRegion\20const&\29 +8294:SkBlitter::Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +8295:SkBlitter::ChooseSprite\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkPixmap\20const&\2c\20int\2c\20int\2c\20SkArenaAlloc*\2c\20sk_sp\29 +8296:SkBlenderBase::affectsTransparentBlack\28\29\20const +8297:SkBlendShader::~SkBlendShader\28\29 +8298:SkBlendShader::SkBlendShader\28SkBlendMode\2c\20sk_sp\2c\20sk_sp\29 +8299:SkBitmapDevice::~SkBitmapDevice\28\29 +8300:SkBitmapDevice::onPeekPixels\28SkPixmap*\29 +8301:SkBitmapDevice::getRasterHandle\28\29\20const +8302:SkBitmapDevice::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +8303:SkBitmapDevice::SkBitmapDevice\28skcpu::RecorderImpl*\2c\20SkBitmap\20const&\2c\20SkSurfaceProps\20const&\2c\20void*\29 +8304:SkBitmapDevice::BDDraw::~BDDraw\28\29 +8305:SkBitmapCache::Rec::~Rec\28\29 +8306:SkBitmapCache::Rec::install\28SkBitmap*\29 +8307:SkBitmapCache::Rec::diagnostic_only_getDiscardable\28\29\20const +8308:SkBitmapCache::Find\28SkBitmapCacheDesc\20const&\2c\20SkBitmap*\29 +8309:SkBitmapCache::Alloc\28SkBitmapCacheDesc\20const&\2c\20SkImageInfo\20const&\2c\20SkPixmap*\29 +8310:SkBitmap::tryAllocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29 +8311:SkBitmap::readPixels\28SkPixmap\20const&\29\20const +8312:SkBitmap::makeShader\28SkTileMode\2c\20SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\29\20const +8313:SkBitmap::installPixels\28SkPixmap\20const&\29 +8314:SkBitmap::eraseColor\28unsigned\20int\29\20const +8315:SkBitmap::allocPixels\28SkImageInfo\20const&\2c\20unsigned\20long\29 +8316:SkBinaryWriteBuffer::writeFlattenable\28SkFlattenable\20const*\29 +8317:SkBinaryWriteBuffer::writeColor4f\28SkRGBA4f<\28SkAlphaType\293>\20const&\29 +8318:SkBigPicture::~SkBigPicture\28\29 +8319:SkBigPicture::cullRect\28\29\20const +8320:SkBigPicture::SnapshotArray::~SnapshotArray\28\29 +8321:SkBigPicture::SkBigPicture\28SkRect\20const&\2c\20sk_sp\2c\20std::__2::unique_ptr>\2c\20sk_sp\2c\20unsigned\20long\29 +8322:SkBidiFactory::MakeIterator\28unsigned\20short\20const*\2c\20int\2c\20SkBidiIterator::Direction\29\20const +8323:SkBezierCubic::Subdivide\28double\20const*\2c\20double\2c\20double*\29 +8324:SkBasicEdgeBuilder::~SkBasicEdgeBuilder\28\29 +8325:SkBasicEdgeBuilder::recoverClip\28SkIRect\20const&\29\20const +8326:SkBaseShadowTessellator::releaseVertices\28\29 +8327:SkBaseShadowTessellator::handleQuad\28SkPoint\20const*\29 +8328:SkBaseShadowTessellator::handleQuad\28SkMatrix\20const&\2c\20SkPoint*\29 +8329:SkBaseShadowTessellator::handleLine\28SkMatrix\20const&\2c\20SkPoint*\29 +8330:SkBaseShadowTessellator::handleCubic\28SkMatrix\20const&\2c\20SkPoint*\29 +8331:SkBaseShadowTessellator::handleConic\28SkMatrix\20const&\2c\20SkPoint*\2c\20float\29 +8332:SkBaseShadowTessellator::finishPathPolygon\28\29 +8333:SkBaseShadowTessellator::computeConvexShadow\28float\2c\20float\2c\20bool\29 +8334:SkBaseShadowTessellator::computeConcaveShadow\28float\2c\20float\29 +8335:SkBaseShadowTessellator::clipUmbraPoint\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint*\29 +8336:SkBaseShadowTessellator::checkConvexity\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\29 +8337:SkBaseShadowTessellator::appendQuad\28unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +8338:SkBaseShadowTessellator::addInnerPoint\28SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20int*\29 +8339:SkBaseShadowTessellator::addEdge\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20int\2c\20SkTDArray\20const&\2c\20bool\2c\20bool\29 +8340:SkBaseShadowTessellator::addArc\28SkPoint\20const&\2c\20float\2c\20bool\29 +8341:SkBaseShadowTessellator::accumulateCentroid\28SkPoint\20const&\2c\20SkPoint\20const&\29 +8342:SkAutoSMalloc<1024ul>::reset\28unsigned\20long\2c\20SkAutoMalloc::OnShrink\2c\20bool*\29 +8343:SkAutoPixmapStorage::reset\28SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\29 +8344:SkAutoMalloc::SkAutoMalloc\28unsigned\20long\29 +8345:SkAutoDescriptor::reset\28unsigned\20long\29 +8346:SkAutoDescriptor::reset\28SkDescriptor\20const&\29 +8347:SkAutoCanvasMatrixPaint::~SkAutoCanvasMatrixPaint\28\29 +8348:SkAutoCanvasMatrixPaint::SkAutoCanvasMatrixPaint\28SkCanvas*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\2c\20SkRect\20const&\29 +8349:SkAutoBlitterChoose::choose\28skcpu::Draw\20const&\2c\20SkMatrix\20const*\2c\20SkPaint\20const&\2c\20SkRect\20const&\2c\20SkDrawCoverage\29 +8350:SkArenaAlloc::ensureSpace\28unsigned\20int\2c\20unsigned\20int\29 +8351:SkAnimatedImage::~SkAnimatedImage\28\29 +8352:SkAnimatedImage::simple\28\29\20const +8353:SkAnimatedImage::getCurrentFrameSimple\28\29 +8354:SkAnimatedImage::decodeNextFrame\28\29 +8355:SkAnimatedImage::Make\28std::__2::unique_ptr>\2c\20SkImageInfo\20const&\2c\20SkIRect\2c\20sk_sp\29 +8356:SkAnimatedImage::Frame::operator=\28SkAnimatedImage::Frame&&\29 +8357:SkAnimatedImage::Frame::init\28SkImageInfo\20const&\2c\20SkAnimatedImage::Frame::OnInit\29 +8358:SkAndroidCodecAdapter::~SkAndroidCodecAdapter\28\29 +8359:SkAndroidCodec::~SkAndroidCodec\28\29 +8360:SkAndroidCodec::getAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const*\29 +8361:SkAnalyticEdgeBuilder::combineVertical\28SkAnalyticEdge\20const*\2c\20SkAnalyticEdge*\29 +8362:SkAnalyticEdge::update\28int\29 +8363:SkAnalyticEdge::updateLine\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +8364:SkAnalyticEdge::setLine\28SkPoint\20const&\2c\20SkPoint\20const&\29 +8365:SkAlphaRuns::BreakAt\28short*\2c\20unsigned\20char*\2c\20int\29 +8366:SkAAClip::operator=\28SkAAClip\20const&\29 +8367:SkAAClip::op\28SkIRect\20const&\2c\20SkClipOp\29 +8368:SkAAClip::isRect\28\29\20const +8369:SkAAClip::RunHead::Iterate\28SkAAClip\20const&\29 +8370:SkAAClip::Builder::~Builder\28\29 +8371:SkAAClip::Builder::flushRow\28bool\29 +8372:SkAAClip::Builder::finish\28SkAAClip*\29 +8373:SkAAClip::Builder::Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +8374:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29 +8375:SkA8_Coverage_Blitter*\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29 +8376:SkA8_Blitter::~SkA8_Blitter\28\29 +8377:SimpleVFilter16_C +8378:SimpleHFilter16_C +8379:ShiftBytes +8380:Shift +8381:SharedGenerator::Make\28std::__2::unique_ptr>\29 +8382:SetSuperRound +8383:RuntimeEffectRPCallbacks::applyColorSpaceXform\28SkColorSpaceXformSteps\20const&\2c\20void\20const*\29 +8384:RunBasedAdditiveBlitter::~RunBasedAdditiveBlitter\28\29_5041 +8385:RunBasedAdditiveBlitter::advanceRuns\28\29 +8386:RunBasedAdditiveBlitter::RunBasedAdditiveBlitter\28SkBlitter*\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20bool\29 +8387:RgnOper::addSpan\28int\2c\20int\20const*\2c\20int\20const*\29 +8388:ReflexHash::hash\28TriangulationVertex*\29\20const +8389:ReadImageInfo +8390:ReadHuffmanCode +8391:ReadBase128 +8392:PredictorAdd2_C +8393:PredictorAdd1_C +8394:PredictorAdd0_C +8395:PorterDuffXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +8396:PlaneCodeToDistance +8397:PathSegment::init\28\29 +8398:ParseSingleImage +8399:ParseHeadersInternal +8400:PS_Conv_Strtol +8401:PS_Conv_ASCIIHexDecode +8402:PDLCDXferProcessor::Make\28SkBlendMode\2c\20GrProcessorAnalysisColor\20const&\29 +8403:OffsetEdge::computeCrossingDistance\28OffsetEdge\20const*\29 +8404:OT::sbix::sanitize\28hb_sanitize_context_t*\29\20const +8405:OT::sbix::accelerator_t::reference_png\28hb_font_t*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20unsigned\20int*\29\20const +8406:OT::sbix::accelerator_t::has_data\28\29\20const +8407:OT::sbix::accelerator_t::get_png_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +8408:OT::post::sanitize\28hb_sanitize_context_t*\29\20const +8409:OT::maxp::sanitize\28hb_sanitize_context_t*\29\20const +8410:OT::kern::sanitize\28hb_sanitize_context_t*\29\20const +8411:OT::hmtxvmtx::accelerator_t::get_advance_with_var_unscaled\28unsigned\20int\2c\20hb_font_t*\2c\20float*\29\20const +8412:OT::head::sanitize\28hb_sanitize_context_t*\29\20const +8413:OT::hb_ot_layout_lookup_accelerator_t*\20OT::hb_ot_layout_lookup_accelerator_t::create\28OT::Layout::GSUB_impl::SubstLookup\20const&\29 +8414:OT::hb_ot_apply_context_t::skipping_iterator_t::may_skip\28hb_glyph_info_t\20const&\29\20const +8415:OT::hb_ot_apply_context_t::skipping_iterator_t::init\28OT::hb_ot_apply_context_t*\2c\20bool\29 +8416:OT::hb_ot_apply_context_t::matcher_t::may_skip\28OT::hb_ot_apply_context_t\20const*\2c\20hb_glyph_info_t\20const&\29\20const +8417:OT::hb_kern_machine_t::kern\28hb_font_t*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20bool\29\20const +8418:OT::hb_accelerate_subtables_context_t::return_t\20OT::Context::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +8419:OT::hb_accelerate_subtables_context_t::return_t\20OT::ChainContext::dispatch\28OT::hb_accelerate_subtables_context_t*\29\20const +8420:OT::gvar_GVAR\2c\201735811442u>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +8421:OT::gvar_GVAR\2c\201735811442u>::get_offset\28unsigned\20int\2c\20unsigned\20int\29\20const +8422:OT::gvar_GVAR\2c\201735811442u>::accelerator_t::infer_delta\28hb_array_t\2c\20hb_array_t\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\20contour_point_t::*\29 +8423:OT::glyf_impl::composite_iter_tmpl::set_current\28OT::glyf_impl::CompositeGlyphRecord\20const*\29 +8424:OT::glyf_impl::composite_iter_tmpl::__next__\28\29 +8425:OT::glyf_impl::SimpleGlyph::read_points\28OT::IntType\20const*&\2c\20hb_array_t\2c\20OT::IntType\20const*\2c\20float\20contour_point_t::*\2c\20OT::glyf_impl::SimpleGlyph::simple_glyph_flag_t\2c\20OT::glyf_impl::SimpleGlyph::simple_glyph_flag_t\29 +8426:OT::glyf_impl::Glyph::get_composite_iterator\28\29\20const +8427:OT::glyf_impl::CompositeGlyphRecord::transform\28float\20const\20\28&\29\20\5b4\5d\2c\20hb_array_t\29 +8428:OT::glyf_impl::CompositeGlyphRecord::get_transformation\28float\20\28&\29\20\5b4\5d\2c\20contour_point_t&\29\20const +8429:OT::glyf_accelerator_t::get_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\29\20const +8430:OT::fvar::sanitize\28hb_sanitize_context_t*\29\20const +8431:OT::cmap::sanitize\28hb_sanitize_context_t*\29\20const +8432:OT::cmap::accelerator_t::get_nominal_glyph\28unsigned\20int\2c\20unsigned\20int*\2c\20hb_cache_t<21u\2c\2016u\2c\208u\2c\20true>*\29\20const +8433:OT::cmap::accelerator_t::_cached_get\28unsigned\20int\2c\20unsigned\20int*\2c\20hb_cache_t<21u\2c\2016u\2c\208u\2c\20true>*\29\20const +8434:OT::cff2::sanitize\28hb_sanitize_context_t*\29\20const +8435:OT::cff2::accelerator_templ_t>::_fini\28\29 +8436:OT::cff1::sanitize\28hb_sanitize_context_t*\29\20const +8437:OT::cff1::accelerator_templ_t>::glyph_to_sid\28unsigned\20int\2c\20CFF::code_pair_t*\29\20const +8438:OT::cff1::accelerator_templ_t>::_fini\28\29 +8439:OT::cff1::accelerator_t::gname_t::cmp\28void\20const*\2c\20void\20const*\29 +8440:OT::avar::sanitize\28hb_sanitize_context_t*\29\20const +8441:OT::_hea::sanitize\28hb_sanitize_context_t*\29\20const +8442:OT::VariationDevice::get_delta\28hb_font_t*\2c\20OT::ItemVariationStore\20const&\2c\20float*\29\20const +8443:OT::VarSizedBinSearchArrayOf>>::operator\5b\5d\28int\29\20const +8444:OT::VarData::get_row_size\28\29\20const +8445:OT::VVAR::sanitize\28hb_sanitize_context_t*\29\20const +8446:OT::VORG::sanitize\28hb_sanitize_context_t*\29\20const +8447:OT::UnsizedArrayOf\2c\2014u>>\20const&\20OT::operator+\2c\201735811442u>>\2c\20\28void*\290>\28hb_blob_ptr_t\2c\201735811442u>>\20const&\2c\20OT::OffsetTo\2c\2014u>>\2c\20OT::IntType\2c\20void\2c\20false>\20const&\29 +8448:OT::TupleVariationHeader::get_size\28unsigned\20int\29\20const +8449:OT::TupleVariationData>::tuple_iterator_t::is_valid\28\29\20const +8450:OT::TupleVariationData>::decompile_points\28OT::IntType\20const*&\2c\20hb_vector_t&\2c\20OT::IntType\20const*\29 +8451:OT::SortedArrayOf\2c\20OT::IntType>::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\29 +8452:OT::SVG::sanitize\28hb_sanitize_context_t*\29\20const +8453:OT::STAT::sanitize\28hb_sanitize_context_t*\29\20const +8454:OT::RuleSet::would_apply\28OT::hb_would_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +8455:OT::RuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ContextApplyLookupContext\20const&\29\20const +8456:OT::ResourceMap::get_type_record\28unsigned\20int\29\20const +8457:OT::ResourceMap::get_type_count\28\29\20const +8458:OT::RecordArrayOf::find_index\28unsigned\20int\2c\20unsigned\20int*\29\20const +8459:OT::PaintTranslate::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8460:OT::PaintSolid::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8461:OT::PaintSkewAroundCenter::sanitize\28hb_sanitize_context_t*\29\20const +8462:OT::PaintSkewAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8463:OT::PaintSkew::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8464:OT::PaintScaleUniformAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8465:OT::PaintScaleUniform::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8466:OT::PaintScaleAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8467:OT::PaintScale::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8468:OT::PaintRotateAroundCenter::sanitize\28hb_sanitize_context_t*\29\20const +8469:OT::PaintRotateAroundCenter::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8470:OT::PaintRotate::sanitize\28hb_sanitize_context_t*\29\20const +8471:OT::PaintRotate::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8472:OT::OpenTypeFontFile::get_face\28unsigned\20int\2c\20unsigned\20int*\29\20const +8473:OT::OffsetTo>\2c\20OT::IntType\2c\20void\2c\20false>::sanitize_shallow\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +8474:OT::OffsetTo\2c\20void\2c\20true>::sanitize_shallow\28hb_sanitize_context_t*\2c\20void\20const*\29\20const +8475:OT::OS2::sanitize\28hb_sanitize_context_t*\29\20const +8476:OT::MVAR::sanitize\28hb_sanitize_context_t*\29\20const +8477:OT::Lookup::serialize\28hb_serialize_context_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +8478:OT::Lookup*\20hb_serialize_context_t::extend_size\28OT::Lookup*\2c\20unsigned\20long\2c\20bool\29 +8479:OT::Layout::propagate_attachment_offsets\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +8480:OT::Layout::GSUB_impl::LigatureSubstFormat1_2::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +8481:OT::Layout::GPOS_impl::reverse_cursive_minor_offset\28hb_glyph_position_t*\2c\20unsigned\20int\2c\20hb_direction_t\2c\20unsigned\20int\29 +8482:OT::Layout::GPOS_impl::ValueFormat::sanitize_value_devices\28hb_sanitize_context_t*\2c\20OT::Layout::GPOS_impl::ValueBase\20const*\2c\20OT::IntType\20const*\29\20const +8483:OT::Layout::GPOS_impl::PairPosFormat2_4::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +8484:OT::Layout::GPOS_impl::PairPosFormat1_3::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +8485:OT::Layout::GPOS_impl::Anchor::sanitize\28hb_sanitize_context_t*\29\20const +8486:OT::Layout::Common::RangeRecord\20const&\20OT::SortedArrayOf\2c\20OT::IntType>::bsearch\28unsigned\20int\20const&\2c\20OT::Layout::Common::RangeRecord\20const&\29\20const +8487:OT::Layout::Common::CoverageFormat2_4*\20hb_serialize_context_t::extend_min>\28OT::Layout::Common::CoverageFormat2_4*\29 +8488:OT::Layout::Common::Coverage::sanitize\28hb_sanitize_context_t*\29\20const +8489:OT::Layout::Common::Coverage::get_population\28\29\20const +8490:OT::LangSys::sanitize\28hb_sanitize_context_t*\2c\20OT::Record_sanitize_closure_t\20const*\29\20const +8491:OT::IndexSubtableRecord::get_image_data\28unsigned\20int\2c\20void\20const*\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +8492:OT::IndexArray::get_indexes\28unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +8493:OT::HintingDevice::get_delta\28unsigned\20int\2c\20int\29\20const +8494:OT::HVARVVAR::get_advance_delta_unscaled\28unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\2c\20float*\29\20const +8495:OT::GSUBGPOS::get_script_list\28\29\20const +8496:OT::GSUBGPOS::get_feature_variations\28\29\20const +8497:OT::GSUBGPOS::accelerator_t::get_accel\28unsigned\20int\29\20const +8498:OT::GDEF::sanitize\28hb_sanitize_context_t*\29\20const +8499:OT::GDEF::get_var_store\28\29\20const +8500:OT::GDEF::get_mark_glyph_sets\28\29\20const +8501:OT::GDEF::accelerator_t::get_glyph_props\28unsigned\20int\29\20const +8502:OT::Feature::sanitize\28hb_sanitize_context_t*\2c\20OT::Record_sanitize_closure_t\20const*\29\20const +8503:OT::ContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +8504:OT::Condition::sanitize\28hb_sanitize_context_t*\29\20const +8505:OT::ColorStop::get_color_stop\28OT::hb_paint_context_t*\2c\20hb_color_stop_t*\2c\20unsigned\20int\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +8506:OT::ColorLine::static_get_extend\28hb_color_line_t*\2c\20void*\2c\20void*\29 +8507:OT::CmapSubtableLongSegmented::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +8508:OT::CmapSubtableLongGroup\20const&\20OT::SortedArrayOf>::bsearch\28unsigned\20int\20const&\2c\20OT::CmapSubtableLongGroup\20const&\29\20const +8509:OT::CmapSubtableFormat4::accelerator_t::init\28OT::CmapSubtableFormat4\20const*\29 +8510:OT::CmapSubtableFormat4::accelerator_t::get_glyph\28unsigned\20int\2c\20unsigned\20int*\29\20const +8511:OT::ClipBoxFormat1::get_clip_box\28OT::ClipBoxData&\2c\20OT::ItemVarStoreInstancer\20const&\29\20const +8512:OT::ClassDef::get_class\28unsigned\20int\2c\20hb_cache_t<15u\2c\208u\2c\207u\2c\20true>*\29\20const +8513:OT::ChainRuleSet::would_apply\28OT::hb_would_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +8514:OT::ChainRuleSet::apply\28OT::hb_ot_apply_context_t*\2c\20OT::ChainContextApplyLookupContext\20const&\29\20const +8515:OT::ChainContextFormat2_5::_apply\28OT::hb_ot_apply_context_t*\2c\20bool\29\20const +8516:OT::CPAL::sanitize\28hb_sanitize_context_t*\29\20const +8517:OT::COLR::sanitize\28hb_sanitize_context_t*\29\20const +8518:OT::COLR::get_var_store_ptr\28\29\20const +8519:OT::COLR::get_delta_set_index_map_ptr\28\29\20const +8520:OT::COLR::get_base_glyph_paint\28unsigned\20int\29\20const +8521:OT::COLR::accelerator_t::has_data\28\29\20const +8522:OT::COLR::accelerator_t::acquire_scratch\28\29\20const +8523:OT::CBLC::sanitize\28hb_sanitize_context_t*\29\20const +8524:OT::CBLC::choose_strike\28hb_font_t*\29\20const +8525:OT::CBDT::sanitize\28hb_sanitize_context_t*\29\20const +8526:OT::CBDT::accelerator_t::get_extents\28hb_font_t*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20bool\29\20const +8527:OT::BitmapSizeTable::find_table\28unsigned\20int\2c\20void\20const*\2c\20void\20const**\29\20const +8528:OT::ArrayOf\2c\20void\2c\20true>\2c\20OT::IntType>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +8529:OT::ArrayOf>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +8530:OT::ArrayOf\2c\20OT::IntType>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +8531:OT::ArrayOf>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +8532:OT::ArrayOf>>::sanitize_shallow\28hb_sanitize_context_t*\29\20const +8533:OT::Affine2x3::paint_glyph\28OT::hb_paint_context_t*\2c\20unsigned\20int\29\20const +8534:NeedsFilter_C +8535:NeedsFilter2_C +8536:MaskValue*\20SkTLazy::init\28MaskValue\20const&\29 +8537:MakeRasterCopyPriv\28SkPixmap\20const&\2c\20unsigned\20int\29 +8538:Load_SBit_Png +8539:LineQuadraticIntersections::verticalIntersect\28double\2c\20double*\29 +8540:LineQuadraticIntersections::intersectRay\28double*\29 +8541:LineQuadraticIntersections::horizontalIntersect\28double\2c\20double*\29 +8542:LineCubicIntersections::intersectRay\28double*\29 +8543:LineCubicIntersections::VerticalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +8544:LineCubicIntersections::HorizontalIntersect\28SkDCubic\20const&\2c\20double\2c\20double*\29 +8545:LineConicIntersections::verticalIntersect\28double\2c\20double*\29 +8546:LineConicIntersections::intersectRay\28double*\29 +8547:LineConicIntersections::horizontalIntersect\28double\2c\20double*\29 +8548:Ins_UNKNOWN +8549:Ins_SxVTL +8550:InitializeCompoundDictionaryCopy +8551:Hev +8552:HandleCoincidence\28SkOpContourHead*\2c\20SkOpCoincidence*\29 +8553:GrWritePixelsTask::~GrWritePixelsTask\28\29 +8554:GrWindowRectsState::operator=\28GrWindowRectsState\20const&\29 +8555:GrWindowRectsState::operator==\28GrWindowRectsState\20const&\29\20const +8556:GrWindowRectangles::GrWindowRectangles\28GrWindowRectangles\20const&\29 +8557:GrWaitRenderTask::~GrWaitRenderTask\28\29 +8558:GrVertexBufferAllocPool::makeSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +8559:GrVertexBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +8560:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20SkPathFillType\2c\20skgpu::VertexWriter\29\20const +8561:GrTriangulator::polysToTriangles\28GrTriangulator::Poly*\2c\20GrEagerVertexAllocator*\29\20const +8562:GrTriangulator::mergeEdgesBelow\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +8563:GrTriangulator::mergeEdgesAbove\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::EdgeList*\2c\20GrTriangulator::Vertex**\2c\20GrTriangulator::Comparator\20const&\29\20const +8564:GrTriangulator::makeSortedVertex\28SkPoint\20const&\2c\20unsigned\20char\2c\20GrTriangulator::VertexList*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::Comparator\20const&\29\20const +8565:GrTriangulator::makeEdge\28GrTriangulator::Vertex*\2c\20GrTriangulator::Vertex*\2c\20GrTriangulator::EdgeType\2c\20GrTriangulator::Comparator\20const&\29 +8566:GrTriangulator::computeBisector\28GrTriangulator::Edge*\2c\20GrTriangulator::Edge*\2c\20GrTriangulator::Vertex*\29\20const +8567:GrTriangulator::appendQuadraticToContour\28SkPoint\20const*\2c\20float\2c\20GrTriangulator::VertexList*\29\20const +8568:GrTriangulator::allocateMonotonePoly\28GrTriangulator::Edge*\2c\20GrTriangulator::Side\2c\20int\29 +8569:GrTriangulator::Edge::recompute\28\29 +8570:GrTriangulator::Edge::intersect\28GrTriangulator::Edge\20const&\2c\20SkPoint*\2c\20unsigned\20char*\29\20const +8571:GrTriangulator::CountPoints\28GrTriangulator::Poly*\2c\20SkPathFillType\29 +8572:GrTriangulator::BreadcrumbTriangleList::concat\28GrTriangulator::BreadcrumbTriangleList&&\29 +8573:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29 +8574:GrThreadSafeCache::makeNewEntryMRU\28GrThreadSafeCache::Entry*\29 +8575:GrThreadSafeCache::makeExistingEntryMRU\28GrThreadSafeCache::Entry*\29 +8576:GrThreadSafeCache::findVertsWithData\28skgpu::UniqueKey\20const&\29 +8577:GrThreadSafeCache::addVertsWithData\28skgpu::UniqueKey\20const&\2c\20sk_sp\2c\20bool\20\28*\29\28SkData*\2c\20SkData*\29\29 +8578:GrThreadSafeCache::Trampoline::~Trampoline\28\29 +8579:GrThreadSafeCache::Entry::set\28skgpu::UniqueKey\20const&\2c\20sk_sp\29 +8580:GrThreadSafeCache::Entry::makeEmpty\28\29 +8581:GrThreadSafeCache::CreateLazyView\28GrDirectContext*\2c\20GrColorType\2c\20SkISize\2c\20GrSurfaceOrigin\2c\20SkBackingFit\29 +8582:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29 +8583:GrTextureRenderTargetProxy::initSurfaceFlags\28GrCaps\20const&\29 +8584:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29 +8585:GrTextureRenderTargetProxy::GrTextureRenderTargetProxy\28GrCaps\20const&\2c\20std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20int\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\2c\20std::__2::basic_string_view>\29 +8586:GrTextureProxy::~GrTextureProxy\28\29_10669 +8587:GrTextureProxy::~GrTextureProxy\28\29_10668 +8588:GrTextureProxy::setUniqueKey\28GrProxyProvider*\2c\20skgpu::UniqueKey\20const&\29 +8589:GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +8590:GrTextureProxy::instantiate\28GrResourceProvider*\29 +8591:GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +8592:GrTextureProxy::callbackDesc\28\29\20const +8593:GrTextureProxy::ProxiesAreCompatibleAsDynamicState\28GrSurfaceProxy\20const*\2c\20GrSurfaceProxy\20const*\29 +8594:GrTextureProxy::GrTextureProxy\28sk_sp\2c\20GrSurfaceProxy::UseAllocator\2c\20GrDDLProvider\29 +8595:GrTextureEffect::~GrTextureEffect\28\29 +8596:GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::$_1::operator\28\29\28int\2c\20GrSamplerState::WrapMode\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20GrTextureEffect::Sampling::Sampling\28GrSurfaceProxy\20const&\2c\20GrSamplerState\2c\20SkRect\20const&\2c\20SkRect\20const*\2c\20float\20const*\2c\20bool\2c\20GrCaps\20const&\2c\20SkPoint\29::Span\2c\20float\29\20const +8597:GrTextureEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29::$_0::operator\28\29\28float*\2c\20GrResourceHandle\29\20const +8598:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::$_2::operator\28\29\28GrTextureEffect::ShaderMode\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +8599:GrTexture::onGpuMemorySize\28\29\20const +8600:GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +8601:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29 +8602:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29 +8603:GrSurfaceProxyView::operator=\28GrSurfaceProxyView\20const&\29 +8604:GrSurfaceProxyView::operator==\28GrSurfaceProxyView\20const&\29\20const +8605:GrSurfaceProxyPriv::exactify\28\29 +8606:GrSurfaceProxyPriv::assign\28sk_sp\29 +8607:GrSurfaceProxy::GrSurfaceProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +8608:GrSurfaceProxy::GrSurfaceProxy\28GrBackendFormat\20const&\2c\20SkISize\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrInternalSurfaceFlags\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +8609:GrSurface::setRelease\28sk_sp\29 +8610:GrSurface::onRelease\28\29 +8611:GrStyledShape::setInheritedKey\28GrStyledShape\20const&\2c\20GrStyle::Apply\2c\20float\29 +8612:GrStyledShape::asRRect\28SkRRect*\2c\20bool*\29\20const +8613:GrStyledShape::asLine\28SkPoint*\2c\20bool*\29\20const +8614:GrStyledShape::GrStyledShape\28SkRRect\20const&\2c\20SkPathDirection\2c\20unsigned\20int\2c\20bool\2c\20GrStyle\20const&\2c\20GrStyledShape::DoSimplify\29 +8615:GrStyledShape::GrStyledShape\28SkPath\20const&\2c\20SkPaint\20const&\2c\20GrStyledShape::DoSimplify\29 +8616:GrStyle::resetToInitStyle\28SkStrokeRec::InitStyle\29 +8617:GrStyle::applyToPath\28SkPath*\2c\20SkStrokeRec::InitStyle*\2c\20SkPath\20const&\2c\20float\29\20const +8618:GrStyle::applyPathEffect\28SkPath*\2c\20SkStrokeRec*\2c\20SkPath\20const&\29\20const +8619:GrStyle::MatrixToScaleFactor\28SkMatrix\20const&\29 +8620:GrStyle::DashInfo::operator=\28GrStyle::DashInfo\20const&\29 +8621:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29 +8622:GrStrokeTessellationShader::Impl::~Impl\28\29 +8623:GrStagingBufferManager::detachBuffers\28\29 +8624:GrSkSLFP::~GrSkSLFP\28\29 +8625:GrSkSLFP::Impl::~Impl\28\29 +8626:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineStruct\28char\20const*\29 +8627:GrSimpleMesh::~GrSimpleMesh\28\29 +8628:GrShape::simplify\28unsigned\20int\29 +8629:GrShape::setArc\28SkArc\20const&\29 +8630:GrShape::conservativeContains\28SkRect\20const&\29\20const +8631:GrShape::closed\28\29\20const +8632:GrShape::GrShape\28SkRect\20const&\29 +8633:GrShape::GrShape\28SkRRect\20const&\29 +8634:GrShape::GrShape\28SkPath\20const&\29 +8635:GrShaderVar::GrShaderVar\28SkString\2c\20SkSLType\2c\20GrShaderVar::TypeModifier\2c\20int\2c\20SkString\2c\20SkString\29 +8636:GrScissorState::operator==\28GrScissorState\20const&\29\20const +8637:GrScissorState::intersect\28SkIRect\20const&\29 +8638:GrSWMaskHelper::toTextureView\28GrRecordingContext*\2c\20SkBackingFit\29 +8639:GrSWMaskHelper::drawShape\28GrStyledShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +8640:GrSWMaskHelper::drawShape\28GrShape\20const&\2c\20SkMatrix\20const&\2c\20GrAA\2c\20unsigned\20char\29 +8641:GrResourceProvider::writePixels\28sk_sp\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\29\20const +8642:GrResourceProvider::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +8643:GrResourceProvider::prepareLevels\28GrBackendFormat\20const&\2c\20GrColorType\2c\20SkISize\2c\20GrMipLevel\20const*\2c\20int\2c\20skia_private::AutoSTArray<14\2c\20GrMipLevel>*\2c\20skia_private::AutoSTArray<14\2c\20std::__2::unique_ptr>>*\29\20const +8644:GrResourceProvider::getExactScratch\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +8645:GrResourceProvider::findAndRefScratchTexture\28skgpu::ScratchKey\20const&\2c\20std::__2::basic_string_view>\29 +8646:GrResourceProvider::findAndRefScratchTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +8647:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +8648:GrResourceProvider::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20GrColorType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMipLevel\20const*\2c\20std::__2::basic_string_view>\29 +8649:GrResourceProvider::createBuffer\28void\20const*\2c\20unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +8650:GrResourceProvider::createApproxTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +8651:GrResourceCache::removeResource\28GrGpuResource*\29 +8652:GrResourceCache::removeFromNonpurgeableArray\28GrGpuResource*\29 +8653:GrResourceCache::releaseAll\28\29 +8654:GrResourceCache::refAndMakeResourceMRU\28GrGpuResource*\29 +8655:GrResourceCache::processFreedGpuResources\28\29 +8656:GrResourceCache::insertResource\28GrGpuResource*\29 +8657:GrResourceCache::findAndRefUniqueResource\28skgpu::UniqueKey\20const&\29 +8658:GrResourceCache::didChangeBudgetStatus\28GrGpuResource*\29 +8659:GrResourceCache::addToNonpurgeableArray\28GrGpuResource*\29 +8660:GrResourceAllocator::~GrResourceAllocator\28\29 +8661:GrResourceAllocator::planAssignment\28\29 +8662:GrResourceAllocator::expire\28unsigned\20int\29 +8663:GrResourceAllocator::Register*\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29 +8664:GrResourceAllocator::IntervalList::popHead\28\29 +8665:GrResourceAllocator::IntervalList::insertByIncreasingStart\28GrResourceAllocator::Interval*\29 +8666:GrRenderTask::makeSkippable\28\29 +8667:GrRenderTask::isUsed\28GrSurfaceProxy*\29\20const +8668:GrRenderTask::isInstantiated\28\29\20const +8669:GrRenderTargetProxy::~GrRenderTargetProxy\28\29_10516 +8670:GrRenderTargetProxy::~GrRenderTargetProxy\28\29_10514 +8671:GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +8672:GrRenderTargetProxy::isMSAADirty\28\29\20const +8673:GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +8674:GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +8675:GrRenderTargetProxy::callbackDesc\28\29\20const +8676:GrRenderTarget::GrRenderTarget\28GrGpu*\2c\20SkISize\20const&\2c\20int\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\2c\20sk_sp\29 +8677:GrRecordingContext::init\28\29 +8678:GrRecordingContext::destroyDrawingManager\28\29 +8679:GrRecordingContext::colorTypeSupportedAsSurface\28SkColorType\29\20const +8680:GrRecordingContext::abandoned\28\29 +8681:GrRecordingContext::abandonContext\28\29 +8682:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29 +8683:GrRRectEffect::Make\28std::__2::unique_ptr>\2c\20GrClipEdgeType\2c\20SkRRect\20const&\2c\20GrShaderCaps\20const&\29 +8684:GrQuadUtils::TessellationHelper::outset\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuad*\2c\20GrQuad*\29 +8685:GrQuadUtils::TessellationHelper::getOutsetRequest\28skvx::Vec<4\2c\20float>\20const&\29 +8686:GrQuadUtils::TessellationHelper::adjustVertices\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuadUtils::TessellationHelper::Vertices*\29 +8687:GrQuadUtils::TessellationHelper::adjustDegenerateVertices\28skvx::Vec<4\2c\20float>\20const&\2c\20GrQuadUtils::TessellationHelper::Vertices*\29 +8688:GrQuadUtils::TessellationHelper::Vertices::moveTo\28skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20float>\20const&\2c\20skvx::Vec<4\2c\20int>\20const&\29 +8689:GrQuadUtils::ClipToW0\28DrawQuad*\2c\20DrawQuad*\29 +8690:GrQuadBuffer<\28anonymous\20namespace\29::TextureOpImpl::ColorSubsetAndAA>::append\28GrQuad\20const&\2c\20\28anonymous\20namespace\29::TextureOpImpl::ColorSubsetAndAA&&\2c\20GrQuad\20const*\29 +8691:GrQuadBuffer<\28anonymous\20namespace\29::TextureOpImpl::ColorSubsetAndAA>::GrQuadBuffer\28int\2c\20bool\29 +8692:GrQuad::point\28int\29\20const +8693:GrQuad::bounds\28\29\20const::'lambda0'\28float\20const*\29::operator\28\29\28float\20const*\29\20const +8694:GrQuad::bounds\28\29\20const::'lambda'\28float\20const*\29::operator\28\29\28float\20const*\29\20const +8695:GrProxyProvider::removeUniqueKeyFromProxy\28GrTextureProxy*\29 +8696:GrProxyProvider::processInvalidUniqueKeyImpl\28skgpu::UniqueKey\20const&\2c\20GrTextureProxy*\2c\20GrProxyProvider::InvalidateGPUResource\2c\20GrProxyProvider::RemoveTableEntry\29 +8697:GrProxyProvider::createLazyProxy\28std::__2::function&&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20GrMipmapStatus\2c\20GrInternalSurfaceFlags\2c\20SkBackingFit\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20GrSurfaceProxy::UseAllocator\2c\20std::__2::basic_string_view>\29 +8698:GrProxyProvider::adoptUniqueKeyFromSurface\28GrTextureProxy*\2c\20GrSurface\20const*\29 +8699:GrProgramDesc::GrProgramDesc\28GrProgramDesc\20const&\29 +8700:GrProcessorSet::operator==\28GrProcessorSet\20const&\29\20const +8701:GrPorterDuffXPFactory::Get\28SkBlendMode\29 +8702:GrPixmap::GrPixmap\28SkPixmap\20const&\29 +8703:GrPipeline::peekDstTexture\28\29\20const +8704:GrPipeline::GrPipeline\28GrPipeline::InitArgs\20const&\2c\20sk_sp\2c\20GrAppliedHardClip\20const&\29 +8705:GrPersistentCacheUtils::ShaderMetadata::~ShaderMetadata\28\29 +8706:GrPersistentCacheUtils::GetType\28SkReadBuffer*\29 +8707:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29 +8708:GrPathUtils::QuadUVMatrix::set\28SkPoint\20const*\29 +8709:GrPathUtils::QuadUVMatrix::apply\28void*\2c\20int\2c\20unsigned\20long\2c\20unsigned\20long\29\20const +8710:GrPathTessellationShader::MakeStencilOnlyPipeline\28GrTessellationShader::ProgramArgs\20const&\2c\20GrAAType\2c\20GrAppliedHardClip\20const&\2c\20GrPipeline::InputFlags\29 +8711:GrPathTessellationShader::Impl::~Impl\28\29 +8712:GrOpsRenderPass::~GrOpsRenderPass\28\29 +8713:GrOpsRenderPass::resetActiveBuffers\28\29 +8714:GrOpsRenderPass::draw\28int\2c\20int\29 +8715:GrOpsRenderPass::drawIndexPattern\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +8716:GrOpFlushState::~GrOpFlushState\28\29_10297 +8717:GrOpFlushState::smallPathAtlasManager\28\29\20const +8718:GrOpFlushState::reset\28\29 +8719:GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +8720:GrOpFlushState::putBackIndices\28int\29 +8721:GrOpFlushState::executeDrawsAndUploadsForMeshDrawOp\28GrOp\20const*\2c\20SkRect\20const&\2c\20GrPipeline\20const*\2c\20GrUserStencilSettings\20const*\29 +8722:GrOpFlushState::drawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +8723:GrOpFlushState::doUpload\28std::__2::function&\29>&\2c\20bool\29 +8724:GrOpFlushState::allocator\28\29 +8725:GrOpFlushState::addASAPUpload\28std::__2::function&\29>&&\29 +8726:GrOpFlushState::OpArgs::OpArgs\28GrOp*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8727:GrOp::setTransformedBounds\28SkRect\20const&\2c\20SkMatrix\20const&\2c\20GrOp::HasAABloat\2c\20GrOp::IsHairline\29 +8728:GrOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8729:GrOp::combineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +8730:GrNonAtomicRef::unref\28\29\20const +8731:GrNonAtomicRef::unref\28\29\20const +8732:GrNonAtomicRef::unref\28\29\20const +8733:GrNativeRect::operator!=\28GrNativeRect\20const&\29\20const +8734:GrMeshDrawTarget::allocPrimProcProxyPtrs\28int\29 +8735:GrMeshDrawOp::PatternHelper::init\28GrMeshDrawTarget*\2c\20GrPrimitiveType\2c\20unsigned\20long\2c\20sk_sp\2c\20int\2c\20int\2c\20int\2c\20int\29 +8736:GrMemoryPool::allocate\28unsigned\20long\29 +8737:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29 +8738:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::changed\28\29 +8739:GrMakeCachedBitmapProxyView\28GrRecordingContext*\2c\20SkBitmap\20const&\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\29::$_0::operator\28\29\28GrTextureProxy*\29\20const +8740:GrIndexBufferAllocPool::makeSpace\28int\2c\20sk_sp*\2c\20int*\29 +8741:GrIndexBufferAllocPool::makeSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +8742:GrImageInfo::operator=\28GrImageInfo&&\29 +8743:GrImageInfo::GrImageInfo\28GrColorType\2c\20SkAlphaType\2c\20sk_sp\2c\20int\2c\20int\29 +8744:GrImageContext::abandonContext\28\29 +8745:GrHashMapWithCache::find\28unsigned\20int\20const&\29\20const +8746:GrGradientBitmapCache::release\28GrGradientBitmapCache::Entry*\29\20const +8747:GrGpuResource::setLabel\28std::__2::basic_string_view>\29 +8748:GrGpuResource::makeBudgeted\28\29 +8749:GrGpuResource::GrGpuResource\28GrGpu*\2c\20std::__2::basic_string_view>\29 +8750:GrGpuResource::CacheAccess::abandon\28\29 +8751:GrGpuBuffer::ComputeScratchKeyForDynamicBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20skgpu::ScratchKey*\29 +8752:GrGpu::~GrGpu\28\29 +8753:GrGpu::submitToGpu\28\29 +8754:GrGpu::submitToGpu\28GrSubmitInfo\20const&\29 +8755:GrGpu::regenerateMipMapLevels\28GrTexture*\29 +8756:GrGpu::createTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +8757:GrGpu::createTextureCommon\28SkISize\2c\20GrBackendFormat\20const&\2c\20GrTextureType\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +8758:GrGpu::createBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +8759:GrGpu::callSubmittedProcs\28bool\29 +8760:GrGeometryProcessor::AttributeSet::addToKey\28skgpu::KeyBuilder*\29\20const +8761:GrGeometryProcessor::AttributeSet::Iter::skipUninitialized\28\29 +8762:GrGeometryProcessor::Attribute&\20skia_private::TArray::emplace_back\28char\20const\20\28&\29\20\5b26\5d\2c\20GrVertexAttribType&&\2c\20SkSLType&&\29 +8763:GrGLTextureParameters::invalidate\28\29 +8764:GrGLTextureParameters::SamplerOverriddenState::SamplerOverriddenState\28\29 +8765:GrGLTexture::~GrGLTexture\28\29_13119 +8766:GrGLTexture::~GrGLTexture\28\29_13118 +8767:GrGLTexture::MakeWrapped\28GrGLGpu*\2c\20GrMipmapStatus\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrWrapCacheable\2c\20GrIOType\2c\20std::__2::basic_string_view>\29 +8768:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20skgpu::Budgeted\2c\20GrGLTexture::Desc\20const&\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +8769:GrGLTexture::GrGLTexture\28GrGLGpu*\2c\20GrGLTexture::Desc\20const&\2c\20sk_sp\2c\20GrMipmapStatus\2c\20std::__2::basic_string_view>\29 +8770:GrGLSemaphore::~GrGLSemaphore\28\29 +8771:GrGLSLVaryingHandler::addAttribute\28GrShaderVar\20const&\29 +8772:GrGLSLVarying::vsOutVar\28\29\20const +8773:GrGLSLVarying::fsInVar\28\29\20const +8774:GrGLSLUniformHandler::liftUniformToVertexShader\28GrProcessor\20const&\2c\20SkString\29 +8775:GrGLSLShaderBuilder::nextStage\28\29 +8776:GrGLSLShaderBuilder::finalize\28unsigned\20int\29 +8777:GrGLSLShaderBuilder::emitFunction\28char\20const*\2c\20char\20const*\29 +8778:GrGLSLShaderBuilder::emitFunctionPrototype\28char\20const*\29 +8779:GrGLSLShaderBuilder::appendTextureLookupAndBlend\28char\20const*\2c\20SkBlendMode\2c\20GrResourceHandle\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29 +8780:GrGLSLShaderBuilder::appendDecls\28SkTBlockList\20const&\2c\20SkString*\29\20const +8781:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_1::operator\28\29\28char\20const*\2c\20GrResourceHandle\29\20const +8782:GrGLSLShaderBuilder::appendColorGamutXform\28SkString*\2c\20char\20const*\2c\20GrGLSLColorSpaceXformHelper*\29::$_0::operator\28\29\28char\20const*\2c\20GrResourceHandle\2c\20skcms_TFType\29\20const +8783:GrGLSLShaderBuilder::GrGLSLShaderBuilder\28GrGLSLProgramBuilder*\29 +8784:GrGLSLProgramDataManager::setRuntimeEffectUniforms\28SkSpan\2c\20SkSpan\20const>\2c\20SkSpan\2c\20void\20const*\29\20const +8785:GrGLSLProgramBuilder::~GrGLSLProgramBuilder\28\29 +8786:GrGLSLFragmentShaderBuilder::onFinalize\28\29 +8787:GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +8788:GrGLSLColorSpaceXformHelper::isNoop\28\29\20const +8789:GrGLSLBlend::SetBlendModeUniformData\28GrGLSLProgramDataManager\20const&\2c\20GrResourceHandle\2c\20SkBlendMode\29 +8790:GrGLSLBlend::BlendExpression\28GrProcessor\20const*\2c\20GrGLSLUniformHandler*\2c\20GrResourceHandle*\2c\20char\20const*\2c\20char\20const*\2c\20SkBlendMode\29 +8791:GrGLRenderTarget::~GrGLRenderTarget\28\29_13089 +8792:GrGLRenderTarget::~GrGLRenderTarget\28\29_13088 +8793:GrGLRenderTarget::setFlags\28GrGLCaps\20const&\2c\20GrGLRenderTarget::IDs\20const&\29 +8794:GrGLRenderTarget::onGpuMemorySize\28\29\20const +8795:GrGLRenderTarget::bind\28bool\29 +8796:GrGLRenderTarget::backendFormat\28\29\20const +8797:GrGLRenderTarget::GrGLRenderTarget\28GrGLGpu*\2c\20SkISize\20const&\2c\20GrGLFormat\2c\20int\2c\20GrGLRenderTarget::IDs\20const&\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +8798:GrGLProgramDataManager::set4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +8799:GrGLProgramDataManager::set2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +8800:GrGLProgramBuilder::uniformHandler\28\29 +8801:GrGLProgramBuilder::compileAndAttachShaders\28SkSL::NativeShader\20const&\2c\20unsigned\20int\2c\20unsigned\20int\2c\20SkTDArray*\2c\20bool\2c\20skgpu::ShaderErrorHandler*\29 +8802:GrGLProgramBuilder::PrecompileProgram\28GrDirectContext*\2c\20GrGLPrecompiledProgram*\2c\20SkData\20const&\29::$_0::operator\28\29\28SkSL::ProgramKind\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\2c\20unsigned\20int\29\20const +8803:GrGLProgramBuilder::CreateProgram\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrGLPrecompiledProgram\20const*\29 +8804:GrGLProgram::~GrGLProgram\28\29 +8805:GrGLInterfaces::MakeWebGL\28\29 +8806:GrGLInterface::~GrGLInterface\28\29 +8807:GrGLGpu::~GrGLGpu\28\29 +8808:GrGLGpu::waitSemaphore\28GrSemaphore*\29 +8809:GrGLGpu::uploadTexData\28SkISize\2c\20unsigned\20int\2c\20SkIRect\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20long\2c\20GrMipLevel\20const*\2c\20int\29 +8810:GrGLGpu::uploadCompressedTexData\28SkTextureCompressionType\2c\20GrGLFormat\2c\20SkISize\2c\20skgpu::Mipmapped\2c\20unsigned\20int\2c\20void\20const*\2c\20unsigned\20long\29 +8811:GrGLGpu::uploadColorToTex\28GrGLFormat\2c\20SkISize\2c\20unsigned\20int\2c\20std::__2::array\2c\20unsigned\20int\29 +8812:GrGLGpu::readOrTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20int\29 +8813:GrGLGpu::onFBOChanged\28\29 +8814:GrGLGpu::getTimerQueryResult\28unsigned\20int\29 +8815:GrGLGpu::getCompatibleStencilIndex\28GrGLFormat\29 +8816:GrGLGpu::flushWireframeState\28bool\29 +8817:GrGLGpu::flushScissorRect\28SkIRect\20const&\2c\20int\2c\20GrSurfaceOrigin\29 +8818:GrGLGpu::flushProgram\28unsigned\20int\29 +8819:GrGLGpu::flushProgram\28sk_sp\29 +8820:GrGLGpu::flushFramebufferSRGB\28bool\29 +8821:GrGLGpu::flushConservativeRasterState\28bool\29 +8822:GrGLGpu::createRenderTargetObjects\28GrGLTexture::Desc\20const&\2c\20int\2c\20GrGLRenderTarget::IDs*\29 +8823:GrGLGpu::createCompressedTexture2D\28SkISize\2c\20SkTextureCompressionType\2c\20GrGLFormat\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrGLTextureParameters::SamplerOverriddenState*\29 +8824:GrGLGpu::bindVertexArray\28unsigned\20int\29 +8825:GrGLGpu::TextureUnitBindings::setBoundID\28unsigned\20int\2c\20GrGpuResource::UniqueID\29 +8826:GrGLGpu::TextureUnitBindings::invalidateAllTargets\28bool\29 +8827:GrGLGpu::TextureToCopyProgramIdx\28GrTexture*\29 +8828:GrGLGpu::ProgramCache::~ProgramCache\28\29 +8829:GrGLGpu::ProgramCache::findOrCreateProgramImpl\28GrDirectContext*\2c\20GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\2c\20GrThreadSafePipelineBuilder::Stats::ProgramCacheResult*\29 +8830:GrGLGpu::HWVertexArrayState::invalidate\28\29 +8831:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void\20const*\29 +8832:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\29 +8833:GrGLFinishCallbacks::check\28\29 +8834:GrGLContext::~GrGLContext\28\29_12827 +8835:GrGLCaps::~GrGLCaps\28\29 +8836:GrGLCaps::getTexSubImageExternalFormatAndType\28GrGLFormat\2c\20GrColorType\2c\20GrColorType\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +8837:GrGLCaps::getExternalFormat\28GrGLFormat\2c\20GrColorType\2c\20GrColorType\2c\20GrGLCaps::ExternalFormatUsage\2c\20unsigned\20int*\2c\20unsigned\20int*\29\20const +8838:GrGLCaps::canCopyTexSubImage\28GrGLFormat\2c\20bool\2c\20GrTextureType\20const*\2c\20GrGLFormat\2c\20bool\2c\20GrTextureType\20const*\29\20const +8839:GrGLCaps::canCopyAsBlit\28GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20GrGLFormat\2c\20int\2c\20GrTextureType\20const*\2c\20SkRect\20const&\2c\20bool\2c\20SkIRect\20const&\2c\20SkIRect\20const&\29\20const +8840:GrGLBuffer::~GrGLBuffer\28\29_12766 +8841:GrGLAttribArrayState::resize\28int\29 +8842:GrGLAttribArrayState::GrGLAttribArrayState\28int\29 +8843:GrFragmentProcessors::MakeChildFP\28SkRuntimeEffect::ChildPtr\20const&\2c\20GrFPArgs\20const&\29 +8844:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::Make\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29 +8845:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::Make\28\29 +8846:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::Make\28std::__2::unique_ptr>\29 +8847:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::DeviceSpace\28std::__2::unique_ptr>\29 +8848:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::Make\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +8849:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29 +8850:GrFragmentProcessor::ClampOutput\28std::__2::unique_ptr>\29 +8851:GrFixedClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +8852:GrFixedClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +8853:GrEagerDynamicVertexAllocator::unlock\28int\29 +8854:GrDynamicAtlas::~GrDynamicAtlas\28\29 +8855:GrDynamicAtlas::Node::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +8856:GrDrawingManager::closeAllTasks\28\29 +8857:GrDrawOpAtlas::uploadToPage\28unsigned\20int\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +8858:GrDrawOpAtlas::updatePlot\28GrDeferredUploadTarget*\2c\20skgpu::AtlasLocator*\2c\20skgpu::Plot*\29 +8859:GrDrawOpAtlas::setLastUseToken\28skgpu::AtlasLocator\20const&\2c\20skgpu::Token\29 +8860:GrDrawOpAtlas::processEviction\28skgpu::PlotLocator\29 +8861:GrDrawOpAtlas::hasID\28skgpu::PlotLocator\20const&\29 +8862:GrDrawOpAtlas::compact\28skgpu::Token\29 +8863:GrDrawOpAtlas::addToAtlas\28GrResourceProvider*\2c\20GrDeferredUploadTarget*\2c\20int\2c\20int\2c\20void\20const*\2c\20skgpu::AtlasLocator*\29 +8864:GrDrawOpAtlas::Make\28GrProxyProvider*\2c\20GrBackendFormat\20const&\2c\20SkColorType\2c\20unsigned\20long\2c\20int\2c\20int\2c\20int\2c\20int\2c\20skgpu::AtlasGenerationCounter*\2c\20GrDrawOpAtlas::AllowMultitexturing\2c\20skgpu::PlotEvictionCallback*\2c\20std::__2::basic_string_view>\29 +8865:GrDrawIndirectBufferAllocPool::putBack\28int\29 +8866:GrDrawIndirectBufferAllocPool::putBackIndexed\28int\29 +8867:GrDrawIndirectBufferAllocPool::makeSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +8868:GrDrawIndirectBufferAllocPool::makeIndexedSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +8869:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29 +8870:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29 +8871:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29 +8872:GrDistanceFieldA8TextGeoProc::onTextureSampler\28int\29\20const +8873:GrDisableColorXPFactory::MakeXferProcessor\28\29 +8874:GrDirectContextPriv::validPMUPMConversionExists\28\29 +8875:GrDirectContext::~GrDirectContext\28\29 +8876:GrDirectContext::syncAllOutstandingGpuWork\28bool\29 +8877:GrDirectContext::submit\28GrSyncCpu\29 +8878:GrDirectContext::flush\28SkSurface*\29 +8879:GrDirectContext::abandoned\28\29 +8880:GrDeferredProxyUploader::signalAndFreeData\28\29 +8881:GrDeferredProxyUploader::GrDeferredProxyUploader\28\29 +8882:GrCopyRenderTask::~GrCopyRenderTask\28\29 +8883:GrCopyRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +8884:GrCopyBaseMipMapToView\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20skgpu::Budgeted\29 +8885:GrCopyBaseMipMapToTextureProxy\28GrRecordingContext*\2c\20sk_sp\2c\20GrSurfaceOrigin\2c\20std::__2::basic_string_view>\2c\20skgpu::Budgeted\29 +8886:GrContext_Base::~GrContext_Base\28\29_9809 +8887:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29 +8888:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29 +8889:GrColorInfo::makeColorType\28GrColorType\29\20const +8890:GrColorInfo::isLinearlyBlended\28\29\20const +8891:GrColorFragmentProcessorAnalysis::GrColorFragmentProcessorAnalysis\28GrProcessorAnalysisColor\20const&\2c\20std::__2::unique_ptr>\20const*\2c\20int\29 +8892:GrCaps::~GrCaps\28\29 +8893:GrCaps::surfaceSupportsWritePixels\28GrSurface\20const*\29\20const +8894:GrCaps::getDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\2c\20bool\29\20const +8895:GrCPixmap::GrCPixmap\28GrPixmap\20const&\29 +8896:GrBufferAllocPool::resetCpuData\28unsigned\20long\29 +8897:GrBufferAllocPool::makeSpaceAtLeast\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20sk_sp*\2c\20unsigned\20long*\2c\20unsigned\20long*\29 +8898:GrBufferAllocPool::flushCpuData\28GrBufferAllocPool::BufferBlock\20const&\2c\20unsigned\20long\29 +8899:GrBufferAllocPool::destroyBlock\28\29 +8900:GrBufferAllocPool::deleteBlocks\28\29 +8901:GrBufferAllocPool::createBlock\28unsigned\20long\29 +8902:GrBufferAllocPool::CpuBufferCache::makeBuffer\28unsigned\20long\2c\20bool\29 +8903:GrBlurUtils::mask_release_proc\28void*\2c\20void*\29 +8904:GrBlurUtils::draw_shape_with_mask_filter\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkMaskFilterBase\20const*\2c\20GrStyledShape\20const&\29 +8905:GrBlurUtils::draw_mask\28skgpu::ganesh::SurfaceDrawContext*\2c\20GrClip\20const*\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20GrPaint&&\2c\20GrSurfaceProxyView\29 +8906:GrBlurUtils::create_data\28SkIRect\20const&\2c\20SkIRect\20const&\29 +8907:GrBlurUtils::convolve_gaussian_1d\28skgpu::ganesh::SurfaceFillContext*\2c\20GrSurfaceProxyView\2c\20SkIRect\20const&\2c\20SkIPoint\2c\20SkIRect\20const&\2c\20SkAlphaType\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\29 +8908:GrBlurUtils::convolve_gaussian\28GrRecordingContext*\2c\20GrSurfaceProxyView\2c\20GrColorType\2c\20SkAlphaType\2c\20SkIRect\2c\20SkIRect\2c\20GrBlurUtils::\28anonymous\20namespace\29::Direction\2c\20int\2c\20float\2c\20SkTileMode\2c\20sk_sp\2c\20SkBackingFit\29 +8909:GrBlurUtils::clip_bounds_quick_reject\28SkIRect\20const&\2c\20SkIRect\20const&\29 +8910:GrBlurUtils::\28anonymous\20namespace\29::make_texture_effect\28GrCaps\20const*\2c\20GrSurfaceProxyView\2c\20SkAlphaType\2c\20GrSamplerState\20const&\2c\20SkIRect\20const&\2c\20SkIRect\20const&\2c\20SkISize\20const&\29 +8911:GrBlurUtils::MakeRectBlur\28GrRecordingContext*\2c\20GrShaderCaps\20const&\2c\20SkRect\20const&\2c\20std::__2::optional\20const&\2c\20SkMatrix\20const&\2c\20float\29 +8912:GrBlurUtils::MakeRRectBlur\28GrRecordingContext*\2c\20float\2c\20float\2c\20SkRRect\20const&\2c\20SkRRect\20const&\29 +8913:GrBlurUtils::MakeCircleBlur\28GrRecordingContext*\2c\20SkRect\20const&\2c\20float\29 +8914:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29 +8915:GrBitmapTextGeoProc::addNewViews\28GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\29 +8916:GrBitmapTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29 +8917:GrBicubicEffect::Make\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +8918:GrBicubicEffect::MakeSubset\28GrSurfaceProxyView\2c\20SkAlphaType\2c\20SkMatrix\20const&\2c\20GrSamplerState::WrapMode\2c\20GrSamplerState::WrapMode\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkCubicResampler\2c\20GrBicubicEffect::Direction\2c\20GrCaps\20const&\29 +8919:GrBackendTexture::operator=\28GrBackendTexture\20const&\29 +8920:GrBackendTexture::GrBackendTexture\28int\2c\20int\2c\20std::__2::basic_string_view>\2c\20skgpu::Mipmapped\2c\20GrBackendApi\2c\20GrTextureType\2c\20GrGLBackendTextureData\20const&\29 +8921:GrBackendRenderTarget::isProtected\28\29\20const +8922:GrBackendFormatBytesPerBlock\28GrBackendFormat\20const&\29 +8923:GrBackendFormat::operator!=\28GrBackendFormat\20const&\29\20const +8924:GrBackendFormat::makeTexture2D\28\29\20const +8925:GrAuditTrail::opsCombined\28GrOp\20const*\2c\20GrOp\20const*\29 +8926:GrAttachment::ComputeSharedAttachmentUniqueKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\2c\20skgpu::UniqueKey*\29 +8927:GrAttachment::ComputeScratchKey\28GrCaps\20const&\2c\20GrBackendFormat\20const&\2c\20SkISize\2c\20GrAttachment::UsageFlags\2c\20int\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20GrMemoryless\2c\20skgpu::ScratchKey*\29 +8928:GrAtlasManager::~GrAtlasManager\28\29 +8929:GrAtlasManager::getViews\28skgpu::MaskFormat\2c\20unsigned\20int*\29 +8930:GrAtlasManager::atlasGeneration\28skgpu::MaskFormat\29\20const +8931:GrAppliedClip::visitProxies\28std::__2::function\20const&\29\20const +8932:GrAppliedClip::addCoverageFP\28std::__2::unique_ptr>\29 +8933:GrAATriangulator::makeEvent\28GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::SSEdge*\2c\20GrTriangulator::Vertex*\2c\20GrAATriangulator::EventList*\2c\20GrTriangulator::Comparator\20const&\29\20const +8934:GrAATriangulator::connectPartners\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\29 +8935:GrAATriangulator::collapseOverlapRegions\28GrTriangulator::VertexList*\2c\20GrTriangulator::Comparator\20const&\2c\20GrAATriangulator::EventComparator\29 +8936:GrAATriangulator::Event*\20SkArenaAlloc::make\28GrAATriangulator::SSEdge*&\2c\20SkPoint&\2c\20unsigned\20char&\29 +8937:GrAAConvexTessellator::~GrAAConvexTessellator\28\29 +8938:GrAAConvexTessellator::quadTo\28SkPoint\20const*\29 +8939:GrAAConvexTessellator::fanRing\28GrAAConvexTessellator::Ring\20const&\29 +8940:GetShortIns +8941:GetNextKey +8942:GetAlphaSourceRow +8943:FontMgrRunIterator::~FontMgrRunIterator\28\29 +8944:FontMgrRunIterator::endOfCurrentRun\28\29\20const +8945:FontMgrRunIterator::atEnd\28\29\20const +8946:FinishRow +8947:FinishDecoding +8948:FindSortableTop\28SkOpContourHead*\29 +8949:FillAlphaPlane +8950:FT_Vector_NormLen +8951:FT_Sfnt_Table_Info +8952:FT_Select_Size +8953:FT_Render_Glyph +8954:FT_Remove_Module +8955:FT_Outline_Get_Orientation +8956:FT_Outline_EmboldenXY +8957:FT_Outline_Decompose +8958:FT_Open_Face +8959:FT_New_Library +8960:FT_New_GlyphSlot +8961:FT_Match_Size +8962:FT_GlyphLoader_Reset +8963:FT_GlyphLoader_Prepare +8964:FT_GlyphLoader_CheckSubGlyphs +8965:FT_Get_Var_Design_Coordinates +8966:FT_Get_Postscript_Name +8967:FT_Get_Paint_Layers +8968:FT_Get_PS_Font_Info +8969:FT_Get_Glyph_Name +8970:FT_Get_FSType_Flags +8971:FT_Get_Color_Glyph_ClipBox +8972:FT_Done_Size +8973:FT_Done_Library +8974:FT_Bitmap_Done +8975:FT_Bitmap_Convert +8976:FT_Add_Default_Modules +8977:ErrorStatusLossless +8978:EllipticalRRectOp::~EllipticalRRectOp\28\29_12075 +8979:EllipticalRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +8980:EllipticalRRectOp::EllipticalRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20SkPoint\2c\20bool\29 +8981:EllipseOp::EllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20EllipseOp::DeviceSpaceParams\20const&\2c\20SkStrokeRec\20const&\29 +8982:EllipseGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +8983:Dot2AngleType\28float\29 +8984:DoUVTransform +8985:DoTransform +8986:Dither8x8 +8987:DispatchAlpha_C +8988:DecodeVarLenUint8 +8989:DecodeContextMap +8990:DIEllipseOp::~DIEllipseOp\28\29 +8991:DIEllipseOp::DIEllipseOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20DIEllipseOp::DeviceSpaceParams\20const&\2c\20SkMatrix\20const&\29 +8992:CustomXP::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +8993:CustomXP::makeProgramImpl\28\29\20const::Impl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +8994:Cr_z_inflateReset2 +8995:Cr_z_inflateReset +8996:CoverageSetOpXP::onIsEqual\28GrXferProcessor\20const&\29\20const +8997:CopyOrSwap +8998:Convexicator::close\28\29 +8999:Convexicator::addVec\28SkPoint\20const&\29 +9000:Convexicator::addPt\28SkPoint\20const&\29 +9001:ConvertToYUVA +9002:ContourIter::next\28\29 +9003:ColorIndexInverseTransform_C +9004:ClearMetadata +9005:CircularRRectOp::~CircularRRectOp\28\29_12052 +9006:CircularRRectOp::CircularRRectOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const&\2c\20float\2c\20float\2c\20bool\29 +9007:CircleOp::~CircleOp\28\29 +9008:CircleOp::Make\28GrRecordingContext*\2c\20GrPaint&&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +9009:CircleOp::CircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20GrStyle\20const&\2c\20CircleOp::ArcParams\20const*\29 +9010:CircleGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29 +9011:CircleGeometryProcessor::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +9012:CheckSizeArgumentsOverflow +9013:CheckDecBuffer +9014:ChangeState +9015:CFF::dict_interpreter_t\2c\20CFF::interp_env_t>::interpret\28CFF::cff1_private_dict_values_base_t&\29 +9016:CFF::cs_opset_t\2c\20cff2_path_param_t\2c\20cff2_path_procs_path_t>::process_op\28unsigned\20int\2c\20CFF::cff2_cs_interp_env_t&\2c\20cff2_path_param_t&\29 +9017:CFF::cff_stack_t::cff_stack_t\28\29 +9018:CFF::cff2_cs_interp_env_t::process_vsindex\28\29 +9019:CFF::cff2_cs_interp_env_t::process_blend\28\29 +9020:CFF::cff2_cs_interp_env_t::fetch_op\28\29 +9021:CFF::cff2_cs_interp_env_t::cff2_cs_interp_env_t\28hb_array_t\20const&\2c\20OT::cff2::accelerator_t\20const&\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29 +9022:CFF::cff2_cs_interp_env_t::blend_deltas\28hb_array_t\29\20const +9023:CFF::cff1_top_dict_values_t::init\28\29 +9024:CFF::cff1_cs_interp_env_t::cff1_cs_interp_env_t\28hb_array_t\20const&\2c\20OT::cff1::accelerator_t\20const&\2c\20unsigned\20int\2c\20int\20const*\2c\20unsigned\20int\29 +9025:CFF::biased_subrs_t>>::init\28CFF::Subrs>\20const*\29 +9026:CFF::biased_subrs_t>>::init\28CFF::Subrs>\20const*\29 +9027:CFF::Subrs>\20const&\20CFF::StructAtOffsetOrNull>>\28void\20const*\2c\20int\2c\20hb_sanitize_context_t&\29 +9028:CFF::FDSelect::get_fd\28unsigned\20int\29\20const +9029:CFF::FDSelect3_4\2c\20OT::IntType>::sentinel\28\29\20const +9030:CFF::FDSelect3_4\2c\20OT::IntType>::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +9031:CFF::FDSelect3_4\2c\20OT::IntType>::get_fd\28unsigned\20int\29\20const +9032:CFF::FDSelect0::sanitize\28hb_sanitize_context_t*\2c\20unsigned\20int\29\20const +9033:CFF::Charset::get_glyph\28unsigned\20int\2c\20unsigned\20int\29\20const +9034:CFF::CFF2FDSelect::get_fd\28unsigned\20int\29\20const +9035:ButtCapDashedCircleOp::ButtCapDashedCircleOp\28GrProcessorSet*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkPoint\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +9036:BrotliTransformDictionaryWord +9037:BrotliEnsureRingBuffer +9038:BrotliDecoderStateCleanupAfterMetablock +9039:BlockIndexIterator::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Decrement\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::begin\28\29\20const +9040:BlockIndexIterator::First\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Last\28SkBlockAllocator::Block\20const*\29\2c\20&SkTBlockList::Increment\28SkBlockAllocator::Block\20const*\2c\20int\29\2c\20&SkTBlockList::GetItem\28SkBlockAllocator::Block\20const*\2c\20int\29>::Item::operator++\28\29 +9041:AutoRestoreInverseness::~AutoRestoreInverseness\28\29 +9042:AutoRestoreInverseness::AutoRestoreInverseness\28GrShape*\2c\20GrStyle\20const&\29 +9043:AutoLayerForImageFilter::~AutoLayerForImageFilter\28\29 +9044:AutoLayerForImageFilter::operator=\28AutoLayerForImageFilter&&\29 +9045:AutoLayerForImageFilter::addMaskFilterLayer\28SkRect\20const*\29 +9046:AutoLayerForImageFilter::addLayer\28SkPaint\20const&\2c\20SkRect\20const*\2c\20bool\29 +9047:AttributeListEntry*\20icu_74::MemoryPool::create<>\28\29 +9048:ApplyInverseTransforms +9049:AngleWinding\28SkOpSpanBase*\2c\20SkOpSpanBase*\2c\20int*\2c\20bool*\29 +9050:AlphaApplyFilter +9051:AllocateInternalBuffers32b +9052:AddIntersectTs\28SkOpContour*\2c\20SkOpContour*\2c\20SkOpCoincidence*\29 +9053:ActiveEdgeList::replace\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\2c\20unsigned\20short\29 +9054:ActiveEdgeList::remove\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +9055:ActiveEdgeList::insert\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +9056:ActiveEdgeList::allocate\28SkPoint\20const&\2c\20SkPoint\20const&\2c\20unsigned\20short\2c\20unsigned\20short\29 +9057:ALPHDelete +9058:AAT::trak::sanitize\28hb_sanitize_context_t*\29\20const +9059:AAT::mortmorx::sanitize\28hb_sanitize_context_t*\29\20const +9060:AAT::mortmorx::sanitize\28hb_sanitize_context_t*\29\20const +9061:AAT::ltag::sanitize\28hb_sanitize_context_t*\29\20const +9062:AAT::ltag::get_language\28unsigned\20int\29\20const +9063:AAT::kern_subtable_accelerator_data_t::~kern_subtable_accelerator_data_t\28\29 +9064:AAT::kern_subtable_accelerator_data_t::kern_subtable_accelerator_data_t\28\29 +9065:AAT::kern_accelerator_data_t::operator=\28AAT::kern_accelerator_data_t&&\29 +9066:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +9067:AAT::hb_aat_apply_context_t::return_t\20AAT::ChainSubtable::dispatch\28AAT::hb_aat_apply_context_t*\29\20const +9068:AAT::hb_aat_apply_context_t::replace_glyph\28unsigned\20int\29 +9069:AAT::feat::sanitize\28hb_sanitize_context_t*\29\20const +9070:AAT::ankr::sanitize\28hb_sanitize_context_t*\29\20const +9071:AAT::ankr::get_anchor\28unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\20const +9072:AAT::TrackData::get_tracking\28void\20const*\2c\20float\2c\20float\29\20const +9073:AAT::Lookup>::get_value_or_null\28unsigned\20int\2c\20unsigned\20int\29\20const +9074:AAT::Lookup>::get_value\28unsigned\20int\2c\20unsigned\20int\29\20const +9075:AAT::Lookup>::get_value_or_null\28unsigned\20int\2c\20unsigned\20int\29\20const +9076:AAT::KerxTable::sanitize\28hb_sanitize_context_t*\29\20const +9077:AAT::KernPair\20const*\20hb_sorted_array_t::bsearch\28AAT::hb_glyph_pair_t\20const&\2c\20AAT::KernPair\20const*\29 +9078:AAT::KernPair\20const&\20OT::SortedArrayOf>>::bsearch\28AAT::hb_glyph_pair_t\20const&\2c\20AAT::KernPair\20const&\29\20const +9079:8863 +9080:8864 +9081:8865 +9082:8866 +9083:8867 +9084:8868 +9085:8869 +9086:8870 +9087:8871 +9088:8872 +9089:8873 +9090:8874 +9091:8875 +9092:8876 +9093:8877 +9094:8878 +9095:8879 +9096:8880 +9097:8881 +9098:8882 +9099:8883 +9100:8884 +9101:8885 +9102:8886 +9103:8887 +9104:8888 +9105:8889 +9106:8890 +9107:8891 +9108:8892 +9109:8893 +9110:8894 +9111:8895 +9112:8896 +9113:8897 +9114:8898 +9115:8899 +9116:8900 +9117:8901 +9118:8902 +9119:8903 +9120:8904 +9121:8905 +9122:8906 +9123:8907 +9124:8908 +9125:8909 +9126:8910 +9127:8911 +9128:8912 +9129:8913 +9130:8914 +9131:8915 +9132:8916 +9133:8917 +9134:8918 +9135:8919 +9136:8920 +9137:8921 +9138:8922 +9139:8923 +9140:8924 +9141:8925 +9142:8926 +9143:8927 +9144:8928 +9145:8929 +9146:8930 +9147:8931 +9148:8932 +9149:8933 +9150:8934 +9151:8935 +9152:8936 +9153:8937 +9154:8938 +9155:8939 +9156:8940 +9157:8941 +9158:8942 +9159:8943 +9160:8944 +9161:8945 +9162:8946 +9163:8947 +9164:8948 +9165:8949 +9166:8950 +9167:8951 +9168:8952 +9169:8953 +9170:8954 +9171:8955 +9172:8956 +9173:8957 +9174:8958 +9175:8959 +9176:8960 +9177:8961 +9178:8962 +9179:8963 +9180:8964 +9181:8965 +9182:8966 +9183:8967 +9184:xyzd50_to_hcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +9185:wuffs_gif__decoder__tell_me_more +9186:wuffs_gif__decoder__set_report_metadata +9187:wuffs_gif__decoder__set_quirk_enabled +9188:wuffs_gif__decoder__num_decoded_frames +9189:wuffs_gif__decoder__num_decoded_frame_configs +9190:wuffs_base__pixel_swizzler__xxxxxxxx__index_binary_alpha__src_over +9191:wuffs_base__pixel_swizzler__xxxxxxxx__index__src +9192:wuffs_base__pixel_swizzler__xxxx__index_binary_alpha__src_over +9193:wuffs_base__pixel_swizzler__xxxx__index__src +9194:wuffs_base__pixel_swizzler__xxx__index_binary_alpha__src_over +9195:wuffs_base__pixel_swizzler__xxx__index__src +9196:wuffs_base__pixel_swizzler__transparent_black_src_over +9197:wuffs_base__pixel_swizzler__transparent_black_src +9198:wuffs_base__pixel_swizzler__copy_1_1 +9199:wuffs_base__pixel_swizzler__bgr_565__index_binary_alpha__src_over +9200:wuffs_base__pixel_swizzler__bgr_565__index__src +9201:void\20std::__2::__call_once_proxy\5babi:nn180100\5d>\28void*\29 +9202:void\20std::__2::__call_once_proxy\5babi:ne180100\5d>\28void*\29 +9203:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +9204:void\20mergeT\28void\20const*\2c\20int\2c\20unsigned\20char\20const*\2c\20int\2c\20void*\29 +9205:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9206:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9207:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9208:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9209:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9210:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9211:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9212:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9213:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9214:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9215:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9216:void\20\28anonymous\20namespace\29::downsample_3_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9217:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9218:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9219:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9220:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9221:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9222:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9223:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9224:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9225:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9226:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9227:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9228:void\20\28anonymous\20namespace\29::downsample_3_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9229:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9230:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9231:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9232:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9233:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9234:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9235:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9236:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9237:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9238:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9239:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9240:void\20\28anonymous\20namespace\29::downsample_3_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9241:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9242:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9243:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9244:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9245:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9246:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9247:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9248:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9249:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9250:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9251:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9252:void\20\28anonymous\20namespace\29::downsample_2_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9253:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9254:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9255:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9256:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9257:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9258:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9259:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9260:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9261:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9262:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9263:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9264:void\20\28anonymous\20namespace\29::downsample_2_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9265:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9266:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9267:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9268:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9269:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9270:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9271:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9272:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9273:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9274:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9275:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9276:void\20\28anonymous\20namespace\29::downsample_2_1<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9277:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9278:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9279:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9280:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9281:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9282:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9283:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9284:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9285:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9286:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9287:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9288:void\20\28anonymous\20namespace\29::downsample_1_3<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9289:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_RGBA_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9290:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_F16F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9291:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_Alpha_F16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9292:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9293:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_88>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9294:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_8888>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9295:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_565>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9296:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_4444>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9297:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9298:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9299:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_16161616>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9300:void\20\28anonymous\20namespace\29::downsample_1_2<\28anonymous\20namespace\29::ColorTypeFilter_1010102>\28void*\2c\20void\20const*\2c\20unsigned\20long\2c\20int\29 +9301:void*\20OT::hb_accelerate_subtables_context_t::cache_func_to>\28void*\2c\20OT::hb_ot_lookup_cache_op_t\29 +9302:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_17377 +9303:virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +9304:virtual\20thunk\20to\20std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29_17380 +9305:virtual\20thunk\20to\20std::__2::basic_ostringstream\2c\20std::__2::allocator>::~basic_ostringstream\28\29 +9306:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29_17263 +9307:virtual\20thunk\20to\20std::__2::basic_ostream>::~basic_ostream\28\29 +9308:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29_17234 +9309:virtual\20thunk\20to\20std::__2::basic_istream>::~basic_istream\28\29 +9310:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_17279 +9311:virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +9312:virtual\20thunk\20to\20flutter::DisplayListBuilder::~DisplayListBuilder\28\29_1404 +9313:virtual\20thunk\20to\20flutter::DisplayListBuilder::~DisplayListBuilder\28\29 +9314:virtual\20thunk\20to\20flutter::DisplayListBuilder::translate\28float\2c\20float\29 +9315:virtual\20thunk\20to\20flutter::DisplayListBuilder::transformReset\28\29 +9316:virtual\20thunk\20to\20flutter::DisplayListBuilder::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +9317:virtual\20thunk\20to\20flutter::DisplayListBuilder::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +9318:virtual\20thunk\20to\20flutter::DisplayListBuilder::skew\28float\2c\20float\29 +9319:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeWidth\28float\29 +9320:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeMiter\28float\29 +9321:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeJoin\28flutter::DlStrokeJoin\29 +9322:virtual\20thunk\20to\20flutter::DisplayListBuilder::setStrokeCap\28flutter::DlStrokeCap\29 +9323:virtual\20thunk\20to\20flutter::DisplayListBuilder::setMaskFilter\28flutter::DlMaskFilter\20const*\29 +9324:virtual\20thunk\20to\20flutter::DisplayListBuilder::setInvertColors\28bool\29 +9325:virtual\20thunk\20to\20flutter::DisplayListBuilder::setImageFilter\28flutter::DlImageFilter\20const*\29 +9326:virtual\20thunk\20to\20flutter::DisplayListBuilder::setDrawStyle\28flutter::DlDrawStyle\29 +9327:virtual\20thunk\20to\20flutter::DisplayListBuilder::setColor\28flutter::DlColor\29 +9328:virtual\20thunk\20to\20flutter::DisplayListBuilder::setColorSource\28flutter::DlColorSource\20const*\29 +9329:virtual\20thunk\20to\20flutter::DisplayListBuilder::setColorFilter\28flutter::DlColorFilter\20const*\29 +9330:virtual\20thunk\20to\20flutter::DisplayListBuilder::setBlendMode\28impeller::BlendMode\29 +9331:virtual\20thunk\20to\20flutter::DisplayListBuilder::setAntiAlias\28bool\29 +9332:virtual\20thunk\20to\20flutter::DisplayListBuilder::scale\28float\2c\20float\29 +9333:virtual\20thunk\20to\20flutter::DisplayListBuilder::save\28\29 +9334:virtual\20thunk\20to\20flutter::DisplayListBuilder::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +9335:virtual\20thunk\20to\20flutter::DisplayListBuilder::rotate\28float\29 +9336:virtual\20thunk\20to\20flutter::DisplayListBuilder::restore\28\29 +9337:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\29 +9338:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\29 +9339:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +9340:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\29 +9341:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawRoundRect\28impeller::RoundRect\20const&\29 +9342:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawRect\28impeller::TRect\20const&\29 +9343:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\29 +9344:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawPath\28flutter::DlPath\20const&\29 +9345:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawPaint\28\29 +9346:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawOval\28impeller::TRect\20const&\29 +9347:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +9348:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawImage\28sk_sp\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20bool\29 +9349:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawImageRect\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20bool\2c\20flutter::DlSrcRectConstraint\29 +9350:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawImageNine\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20bool\29 +9351:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawDisplayList\28sk_sp\2c\20float\29 +9352:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\29 +9353:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\29 +9354:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +9355:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawCircle\28impeller::TPoint\20const&\2c\20float\29 +9356:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawAtlas\28sk_sp\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20bool\29 +9357:virtual\20thunk\20to\20flutter::DisplayListBuilder::drawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\29 +9358:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9359:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9360:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9361:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9362:virtual\20thunk\20to\20flutter::DisplayListBuilder::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9363:virtual\20thunk\20to\20flutter::DisplayListBuilder::Translate\28float\2c\20float\29 +9364:virtual\20thunk\20to\20flutter::DisplayListBuilder::Transform\28impeller::Matrix\20const&\29 +9365:virtual\20thunk\20to\20flutter::DisplayListBuilder::TransformReset\28\29 +9366:virtual\20thunk\20to\20flutter::DisplayListBuilder::TransformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +9367:virtual\20thunk\20to\20flutter::DisplayListBuilder::Transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +9368:virtual\20thunk\20to\20flutter::DisplayListBuilder::Skew\28float\2c\20float\29 +9369:virtual\20thunk\20to\20flutter::DisplayListBuilder::SetTransform\28impeller::Matrix\20const&\29 +9370:virtual\20thunk\20to\20flutter::DisplayListBuilder::Scale\28float\2c\20float\29 +9371:virtual\20thunk\20to\20flutter::DisplayListBuilder::Save\28\29 +9372:virtual\20thunk\20to\20flutter::DisplayListBuilder::SaveLayer\28std::__2::optional>\20const&\2c\20flutter::DlPaint\20const*\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +9373:virtual\20thunk\20to\20flutter::DisplayListBuilder::Rotate\28float\29 +9374:virtual\20thunk\20to\20flutter::DisplayListBuilder::Restore\28\29 +9375:virtual\20thunk\20to\20flutter::DisplayListBuilder::RestoreToCount\28int\29 +9376:virtual\20thunk\20to\20flutter::DisplayListBuilder::QuickReject\28impeller::TRect\20const&\29\20const +9377:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetSaveCount\28\29\20const +9378:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetMatrix\28\29\20const +9379:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetLocalClipCoverage\28\29\20const +9380:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetImageInfo\28\29\20const +9381:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetDestinationClipCoverage\28\29\20const +9382:virtual\20thunk\20to\20flutter::DisplayListBuilder::GetBaseLayerDimensions\28\29\20const +9383:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\2c\20flutter::DlPaint\20const&\29 +9384:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +9385:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +9386:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlPaint\20const&\29 +9387:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +9388:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawRect\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +9389:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\2c\20flutter::DlPaint\20const&\29 +9390:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawPath\28flutter::DlPath\20const&\2c\20flutter::DlPaint\20const&\29 +9391:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawPaint\28flutter::DlPaint\20const&\29 +9392:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawOval\28impeller::TRect\20const&\2c\20flutter::DlPaint\20const&\29 +9393:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlPaint\20const&\29 +9394:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawImage\28sk_sp\20const&\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\29 +9395:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawImageRect\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\2c\20flutter::DlSrcRectConstraint\29 +9396:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawImageNine\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20flutter::DlPaint\20const*\29 +9397:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawDisplayList\28sk_sp\2c\20float\29 +9398:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\2c\20flutter::DlPaint\20const&\29 +9399:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\2c\20flutter::DlPaint\20const&\29 +9400:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +9401:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawCircle\28impeller::TPoint\20const&\2c\20float\2c\20flutter::DlPaint\20const&\29 +9402:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawAtlas\28sk_sp\20const&\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20flutter::DlPaint\20const*\29 +9403:virtual\20thunk\20to\20flutter::DisplayListBuilder::DrawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20flutter::DlPaint\20const&\29 +9404:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9405:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9406:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9407:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9408:virtual\20thunk\20to\20flutter::DisplayListBuilder::ClipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +9409:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10702 +9410:virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +9411:virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +9412:virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +9413:virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +9414:virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +9415:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29_10674 +9416:virtual\20thunk\20to\20GrTextureProxy::~GrTextureProxy\28\29 +9417:virtual\20thunk\20to\20GrTextureProxy::onUninstantiatedGpuMemorySize\28\29\20const +9418:virtual\20thunk\20to\20GrTextureProxy::instantiate\28GrResourceProvider*\29 +9419:virtual\20thunk\20to\20GrTextureProxy::getUniqueKey\28\29\20const +9420:virtual\20thunk\20to\20GrTextureProxy::createSurface\28GrResourceProvider*\29\20const +9421:virtual\20thunk\20to\20GrTextureProxy::callbackDesc\28\29\20const +9422:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29\20const +9423:virtual\20thunk\20to\20GrTextureProxy::asTextureProxy\28\29 +9424:virtual\20thunk\20to\20GrTexture::onGpuMemorySize\28\29\20const +9425:virtual\20thunk\20to\20GrTexture::computeScratchKey\28skgpu::ScratchKey*\29\20const +9426:virtual\20thunk\20to\20GrTexture::asTexture\28\29\20const +9427:virtual\20thunk\20to\20GrTexture::asTexture\28\29 +9428:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29_10518 +9429:virtual\20thunk\20to\20GrRenderTargetProxy::~GrRenderTargetProxy\28\29 +9430:virtual\20thunk\20to\20GrRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +9431:virtual\20thunk\20to\20GrRenderTargetProxy::instantiate\28GrResourceProvider*\29 +9432:virtual\20thunk\20to\20GrRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +9433:virtual\20thunk\20to\20GrRenderTargetProxy::callbackDesc\28\29\20const +9434:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29\20const +9435:virtual\20thunk\20to\20GrRenderTargetProxy::asRenderTargetProxy\28\29 +9436:virtual\20thunk\20to\20GrRenderTarget::onRelease\28\29 +9437:virtual\20thunk\20to\20GrRenderTarget::onAbandon\28\29 +9438:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29\20const +9439:virtual\20thunk\20to\20GrRenderTarget::asRenderTarget\28\29 +9440:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_13157 +9441:virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +9442:virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +9443:virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +9444:virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +9445:virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +9446:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29_13126 +9447:virtual\20thunk\20to\20GrGLTexture::~GrGLTexture\28\29 +9448:virtual\20thunk\20to\20GrGLTexture::onRelease\28\29 +9449:virtual\20thunk\20to\20GrGLTexture::onAbandon\28\29 +9450:virtual\20thunk\20to\20GrGLTexture::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +9451:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_11400 +9452:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +9453:virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::onFinalize\28\29 +9454:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29_13099 +9455:virtual\20thunk\20to\20GrGLRenderTarget::~GrGLRenderTarget\28\29 +9456:virtual\20thunk\20to\20GrGLRenderTarget::onRelease\28\29 +9457:virtual\20thunk\20to\20GrGLRenderTarget::onGpuMemorySize\28\29\20const +9458:virtual\20thunk\20to\20GrGLRenderTarget::onAbandon\28\29 +9459:virtual\20thunk\20to\20GrGLRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +9460:virtual\20thunk\20to\20GrGLRenderTarget::backendFormat\28\29\20const +9461:vertices_dispose +9462:vertices_create +9463:utf8TextMapOffsetToNative\28UText\20const*\29 +9464:utf8TextMapIndexToUTF16\28UText\20const*\2c\20long\20long\29 +9465:utf8TextLength\28UText*\29 +9466:utf8TextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +9467:utf8TextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +9468:utext_openUTF8_74 +9469:ustrcase_internalToUpper_74 +9470:ustrcase_internalFold_74 +9471:ures_loc_resetLocales\28UEnumeration*\2c\20UErrorCode*\29 +9472:ures_loc_nextLocale\28UEnumeration*\2c\20int*\2c\20UErrorCode*\29 +9473:ures_loc_countLocales\28UEnumeration*\2c\20UErrorCode*\29 +9474:ures_loc_closeLocales\28UEnumeration*\29 +9475:ures_cleanup\28\29 +9476:unistrTextReplace\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t\20const*\2c\20int\2c\20UErrorCode*\29 +9477:unistrTextLength\28UText*\29 +9478:unistrTextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +9479:unistrTextCopy\28UText*\2c\20long\20long\2c\20long\20long\2c\20long\20long\2c\20signed\20char\2c\20UErrorCode*\29 +9480:unistrTextClose\28UText*\29 +9481:unistrTextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +9482:unistrTextAccess\28UText*\2c\20long\20long\2c\20signed\20char\29 +9483:uniformData_create +9484:unicodePositionBuffer_free +9485:unicodePositionBuffer_create +9486:uloc_kw_resetKeywords\28UEnumeration*\2c\20UErrorCode*\29 +9487:uloc_kw_nextKeyword\28UEnumeration*\2c\20int*\2c\20UErrorCode*\29 +9488:uloc_kw_countKeywords\28UEnumeration*\2c\20UErrorCode*\29 +9489:uloc_kw_closeKeywords\28UEnumeration*\29 +9490:uloc_key_type_cleanup\28\29 +9491:uloc_getDefault_74 +9492:uloc_forLanguageTag_74 +9493:uhash_hashUnicodeString_74 +9494:uhash_hashUChars_74 +9495:uhash_hashIChars_74 +9496:uhash_deleteHashtable_74 +9497:uhash_compareUnicodeString_74 +9498:uhash_compareUChars_74 +9499:uhash_compareLong_74 +9500:uhash_compareIChars_74 +9501:uenum_unextDefault_74 +9502:udata_initHashTable\28UErrorCode&\29 +9503:udata_cleanup\28\29 +9504:ucstrTextLength\28UText*\29 +9505:ucstrTextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +9506:ucstrTextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +9507:ubrk_setUText_74 +9508:ubrk_preceding_74 +9509:ubrk_open_74 +9510:ubrk_next_74 +9511:ubrk_getRuleStatus_74 +9512:ubrk_following_74 +9513:ubrk_first_74 +9514:ubrk_current_74 +9515:ubidi_reorderVisual_74 +9516:ubidi_openSized_74 +9517:ubidi_getLevelAt_74 +9518:ubidi_getLength_74 +9519:ubidi_getDirection_74 +9520:u_strToUpper_74 +9521:u_isspace_74 +9522:u_iscntrl_74 +9523:u_isWhitespace_74 +9524:u_hasBinaryProperty_74 +9525:u_errorName_74 +9526:typefaces_filterCoveredCodePoints +9527:typeface_dispose +9528:typeface_create +9529:tt_vadvance_adjust +9530:tt_slot_init +9531:tt_size_request +9532:tt_size_init +9533:tt_size_done +9534:tt_sbit_decoder_load_png +9535:tt_sbit_decoder_load_compound +9536:tt_sbit_decoder_load_byte_aligned +9537:tt_sbit_decoder_load_bit_aligned +9538:tt_property_set +9539:tt_property_get +9540:tt_name_ascii_from_utf16 +9541:tt_name_ascii_from_other +9542:tt_hadvance_adjust +9543:tt_glyph_load +9544:tt_get_var_blend +9545:tt_get_interface +9546:tt_get_glyph_name +9547:tt_get_cmap_info +9548:tt_get_advances +9549:tt_face_set_sbit_strike +9550:tt_face_load_strike_metrics +9551:tt_face_load_sbit_image +9552:tt_face_load_sbit +9553:tt_face_load_post +9554:tt_face_load_pclt +9555:tt_face_load_os2 +9556:tt_face_load_name +9557:tt_face_load_maxp +9558:tt_face_load_kern +9559:tt_face_load_hmtx +9560:tt_face_load_hhea +9561:tt_face_load_head +9562:tt_face_load_gasp +9563:tt_face_load_font_dir +9564:tt_face_load_cpal +9565:tt_face_load_colr +9566:tt_face_load_cmap +9567:tt_face_load_bhed +9568:tt_face_load_any +9569:tt_face_init +9570:tt_face_get_paint_layers +9571:tt_face_get_paint +9572:tt_face_get_kerning +9573:tt_face_get_colr_layer +9574:tt_face_get_colr_glyph_paint +9575:tt_face_get_colorline_stops +9576:tt_face_get_color_glyph_clipbox +9577:tt_face_free_sbit +9578:tt_face_free_ps_names +9579:tt_face_free_name +9580:tt_face_free_cpal +9581:tt_face_free_colr +9582:tt_face_done +9583:tt_face_colr_blend_layer +9584:tt_driver_init +9585:tt_cmap_unicode_init +9586:tt_cmap_unicode_char_next +9587:tt_cmap_unicode_char_index +9588:tt_cmap_init +9589:tt_cmap8_validate +9590:tt_cmap8_get_info +9591:tt_cmap8_char_next +9592:tt_cmap8_char_index +9593:tt_cmap6_validate +9594:tt_cmap6_get_info +9595:tt_cmap6_char_next +9596:tt_cmap6_char_index +9597:tt_cmap4_validate +9598:tt_cmap4_init +9599:tt_cmap4_get_info +9600:tt_cmap4_char_next +9601:tt_cmap4_char_index +9602:tt_cmap2_validate +9603:tt_cmap2_get_info +9604:tt_cmap2_char_next +9605:tt_cmap2_char_index +9606:tt_cmap14_variants +9607:tt_cmap14_variant_chars +9608:tt_cmap14_validate +9609:tt_cmap14_init +9610:tt_cmap14_get_info +9611:tt_cmap14_done +9612:tt_cmap14_char_variants +9613:tt_cmap14_char_var_isdefault +9614:tt_cmap14_char_var_index +9615:tt_cmap14_char_next +9616:tt_cmap13_validate +9617:tt_cmap13_get_info +9618:tt_cmap13_char_next +9619:tt_cmap13_char_index +9620:tt_cmap12_validate +9621:tt_cmap12_get_info +9622:tt_cmap12_char_next +9623:tt_cmap12_char_index +9624:tt_cmap10_validate +9625:tt_cmap10_get_info +9626:tt_cmap10_char_next +9627:tt_cmap10_char_index +9628:tt_cmap0_validate +9629:tt_cmap0_get_info +9630:tt_cmap0_char_next +9631:tt_cmap0_char_index +9632:textStyle_setWordSpacing +9633:textStyle_setTextBaseline +9634:textStyle_setLocale +9635:textStyle_setLetterSpacing +9636:textStyle_setHeight +9637:textStyle_setHalfLeading +9638:textStyle_setForeground +9639:textStyle_setFontVariations +9640:textStyle_setFontStyle +9641:textStyle_setFontSize +9642:textStyle_setDecorationStyle +9643:textStyle_setDecorationColor +9644:textStyle_setColor +9645:textStyle_setBackground +9646:textStyle_dispose +9647:textStyle_create +9648:textStyle_copy +9649:textStyle_clearFontFamilies +9650:textStyle_addShadow +9651:textStyle_addFontFeature +9652:textStyle_addFontFamilies +9653:textBoxList_getLength +9654:textBoxList_getBoxAtIndex +9655:textBoxList_dispose +9656:t2_hints_stems +9657:t2_hints_open +9658:t1_make_subfont +9659:t1_hints_stem +9660:t1_hints_open +9661:t1_decrypt +9662:t1_decoder_parse_metrics +9663:t1_decoder_init +9664:t1_decoder_done +9665:t1_cmap_unicode_init +9666:t1_cmap_unicode_char_next +9667:t1_cmap_unicode_char_index +9668:t1_cmap_std_done +9669:t1_cmap_std_char_next +9670:t1_cmap_standard_init +9671:t1_cmap_expert_init +9672:t1_cmap_custom_init +9673:t1_cmap_custom_done +9674:t1_cmap_custom_char_next +9675:t1_cmap_custom_char_index +9676:t1_builder_start_point +9677:swizzle_or_premul\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20SkColorSpaceXformSteps\20const&\29 +9678:surface_setResourceCacheLimitBytes +9679:surface_renderPicturesOnWorker +9680:surface_renderPictures +9681:surface_rasterizeImageOnWorker +9682:surface_rasterizeImage +9683:surface_onRenderComplete +9684:surface_onRasterizeComplete +9685:surface_dispose +9686:surface_destroy +9687:surface_create +9688:strutStyle_setLeading +9689:strutStyle_setHeight +9690:strutStyle_setHalfLeading +9691:strutStyle_setForceStrutHeight +9692:strutStyle_setFontStyle +9693:strutStyle_setFontFamilies +9694:strutStyle_dispose +9695:strutStyle_create +9696:string_read +9697:std::exception::what\28\29\20const +9698:std::bad_variant_access::what\28\29\20const +9699:std::bad_optional_access::what\28\29\20const +9700:std::bad_array_new_length::what\28\29\20const +9701:std::bad_alloc::what\28\29\20const +9702:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20tm\20const*\2c\20char\2c\20char\29\20const +9703:std::__2::time_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20tm\20const*\2c\20char\2c\20char\29\20const +9704:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9705:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9706:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9707:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9708:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9709:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +9710:std::__2::time_get>>::do_get_year\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9711:std::__2::time_get>>::do_get_weekday\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9712:std::__2::time_get>>::do_get_time\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9713:std::__2::time_get>>::do_get_monthname\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9714:std::__2::time_get>>::do_get_date\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\29\20const +9715:std::__2::time_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20tm*\2c\20char\2c\20char\29\20const +9716:std::__2::numpunct::~numpunct\28\29_18191 +9717:std::__2::numpunct::do_truename\28\29\20const +9718:std::__2::numpunct::do_grouping\28\29\20const +9719:std::__2::numpunct::do_falsename\28\29\20const +9720:std::__2::numpunct::~numpunct\28\29_18198 +9721:std::__2::numpunct::do_truename\28\29\20const +9722:std::__2::numpunct::do_thousands_sep\28\29\20const +9723:std::__2::numpunct::do_grouping\28\29\20const +9724:std::__2::numpunct::do_falsename\28\29\20const +9725:std::__2::numpunct::do_decimal_point\28\29\20const +9726:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20void\20const*\29\20const +9727:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\29\20const +9728:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20unsigned\20long\20long\29\20const +9729:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\29\20const +9730:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20long\29\20const +9731:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +9732:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20double\29\20const +9733:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20bool\29\20const +9734:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20void\20const*\29\20const +9735:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\29\20const +9736:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20unsigned\20long\20long\29\20const +9737:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\29\20const +9738:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20long\29\20const +9739:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +9740:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20double\29\20const +9741:std::__2::num_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20std::__2::ios_base&\2c\20char\2c\20bool\29\20const +9742:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +9743:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +9744:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +9745:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +9746:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +9747:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +9748:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +9749:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +9750:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +9751:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20void*&\29\20const +9752:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20short&\29\20const +9753:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20unsigned\20long\20long&\29\20const +9754:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20long&\29\20const +9755:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +9756:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long&\29\20const +9757:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20float&\29\20const +9758:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20double&\29\20const +9759:std::__2::num_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20bool&\29\20const +9760:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +9761:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20wchar_t\2c\20long\20double\29\20const +9762:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +9763:std::__2::money_put>>::do_put\28std::__2::ostreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20char\2c\20long\20double\29\20const +9764:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +9765:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +9766:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20std::__2::basic_string\2c\20std::__2::allocator>&\29\20const +9767:std::__2::money_get>>::do_get\28std::__2::istreambuf_iterator>\2c\20std::__2::istreambuf_iterator>\2c\20bool\2c\20std::__2::ios_base&\2c\20unsigned\20int&\2c\20long\20double&\29\20const +9768:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +9769:std::__2::messages::do_get\28long\2c\20int\2c\20int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\20const&\29\20const +9770:std::__2::locale::__imp::~__imp\28\29_18296 +9771:std::__2::ios_base::~ios_base\28\29_17399 +9772:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20wchar_t*\29\20const +9773:std::__2::ctype::do_toupper\28wchar_t\29\20const +9774:std::__2::ctype::do_toupper\28wchar_t*\2c\20wchar_t\20const*\29\20const +9775:std::__2::ctype::do_tolower\28wchar_t\29\20const +9776:std::__2::ctype::do_tolower\28wchar_t*\2c\20wchar_t\20const*\29\20const +9777:std::__2::ctype::do_scan_not\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +9778:std::__2::ctype::do_scan_is\28unsigned\20long\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +9779:std::__2::ctype::do_narrow\28wchar_t\2c\20char\29\20const +9780:std::__2::ctype::do_narrow\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20char\2c\20char*\29\20const +9781:std::__2::ctype::do_is\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20unsigned\20long*\29\20const +9782:std::__2::ctype::do_is\28unsigned\20long\2c\20wchar_t\29\20const +9783:std::__2::ctype::~ctype\28\29_18283 +9784:std::__2::ctype::do_widen\28char\20const*\2c\20char\20const*\2c\20char*\29\20const +9785:std::__2::ctype::do_toupper\28char\29\20const +9786:std::__2::ctype::do_toupper\28char*\2c\20char\20const*\29\20const +9787:std::__2::ctype::do_tolower\28char\29\20const +9788:std::__2::ctype::do_tolower\28char*\2c\20char\20const*\29\20const +9789:std::__2::ctype::do_narrow\28char\2c\20char\29\20const +9790:std::__2::ctype::do_narrow\28char\20const*\2c\20char\20const*\2c\20char\2c\20char*\29\20const +9791:std::__2::collate::do_transform\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +9792:std::__2::collate::do_hash\28wchar_t\20const*\2c\20wchar_t\20const*\29\20const +9793:std::__2::collate::do_compare\28wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*\29\20const +9794:std::__2::collate::do_transform\28char\20const*\2c\20char\20const*\29\20const +9795:std::__2::collate::do_hash\28char\20const*\2c\20char\20const*\29\20const +9796:std::__2::collate::do_compare\28char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\29\20const +9797:std::__2::codecvt::~codecvt\28\29_18243 +9798:std::__2::codecvt::do_unshift\28__mbstate_t&\2c\20char*\2c\20char*\2c\20char*&\29\20const +9799:std::__2::codecvt::do_out\28__mbstate_t&\2c\20wchar_t\20const*\2c\20wchar_t\20const*\2c\20wchar_t\20const*&\2c\20char*\2c\20char*\2c\20char*&\29\20const +9800:std::__2::codecvt::do_max_length\28\29\20const +9801:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +9802:std::__2::codecvt::do_in\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*&\2c\20wchar_t*\2c\20wchar_t*\2c\20wchar_t*&\29\20const +9803:std::__2::codecvt::do_encoding\28\29\20const +9804:std::__2::codecvt::do_length\28__mbstate_t&\2c\20char\20const*\2c\20char\20const*\2c\20unsigned\20long\29\20const +9805:std::__2::basic_stringbuf\2c\20std::__2::allocator>::~basic_stringbuf\28\29_17371 +9806:std::__2::basic_stringbuf\2c\20std::__2::allocator>::underflow\28\29 +9807:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +9808:std::__2::basic_stringbuf\2c\20std::__2::allocator>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +9809:std::__2::basic_stringbuf\2c\20std::__2::allocator>::pbackfail\28int\29 +9810:std::__2::basic_stringbuf\2c\20std::__2::allocator>::overflow\28int\29 +9811:std::__2::basic_streambuf>::~basic_streambuf\28\29_17209 +9812:std::__2::basic_streambuf>::xsputn\28char\20const*\2c\20long\29 +9813:std::__2::basic_streambuf>::xsgetn\28char*\2c\20long\29 +9814:std::__2::basic_streambuf>::uflow\28\29 +9815:std::__2::basic_streambuf>::setbuf\28char*\2c\20long\29 +9816:std::__2::basic_streambuf>::seekpos\28std::__2::fpos<__mbstate_t>\2c\20unsigned\20int\29 +9817:std::__2::basic_streambuf>::seekoff\28long\20long\2c\20std::__2::ios_base::seekdir\2c\20unsigned\20int\29 +9818:std::__2::bad_function_call::what\28\29\20const +9819:std::__2::__time_get_c_storage::__x\28\29\20const +9820:std::__2::__time_get_c_storage::__weeks\28\29\20const +9821:std::__2::__time_get_c_storage::__r\28\29\20const +9822:std::__2::__time_get_c_storage::__months\28\29\20const +9823:std::__2::__time_get_c_storage::__c\28\29\20const +9824:std::__2::__time_get_c_storage::__am_pm\28\29\20const +9825:std::__2::__time_get_c_storage::__X\28\29\20const +9826:std::__2::__time_get_c_storage::__x\28\29\20const +9827:std::__2::__time_get_c_storage::__weeks\28\29\20const +9828:std::__2::__time_get_c_storage::__r\28\29\20const +9829:std::__2::__time_get_c_storage::__months\28\29\20const +9830:std::__2::__time_get_c_storage::__c\28\29\20const +9831:std::__2::__time_get_c_storage::__am_pm\28\29\20const +9832:std::__2::__time_get_c_storage::__X\28\29\20const +9833:std::__2::__shared_ptr_pointer::__shared_ptr_default_delete\2c\20std::__2::allocator>::__on_zero_shared\28\29 +9834:std::__2::__shared_ptr_emplace>\2c\20std::__2::allocator>>>::~__shared_ptr_emplace\28\29_809 +9835:std::__2::__shared_ptr_emplace>\2c\20std::__2::allocator>>>::~__shared_ptr_emplace\28\29 +9836:std::__2::__shared_ptr_emplace>\2c\20std::__2::allocator>>>::__on_zero_shared\28\29 +9837:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_8169 +9838:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9839:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9840:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_8426 +9841:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9842:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9843:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1548 +9844:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9845:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9846:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1585 +9847:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9848:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1649 +9849:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9850:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9851:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_411 +9852:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9853:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9854:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1812 +9855:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9856:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1580 +9857:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9858:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1798 +9859:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9860:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9861:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1568 +9862:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9863:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1620 +9864:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9865:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9866:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1783 +9867:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9868:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1769 +9869:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9870:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1755 +9871:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9872:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9873:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1739 +9874:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9875:std::__2::__shared_ptr_emplace>::__on_zero_shared\28\29 +9876:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_450 +9877:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9878:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1723 +9879:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9880:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_1563 +9881:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9882:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29_6187 +9883:std::__2::__shared_ptr_emplace>::~__shared_ptr_emplace\28\29 +9884:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9885:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9886:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9887:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9888:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9889:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9890:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9891:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9892:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9893:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9894:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9895:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9896:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9897:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9898:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9899:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9900:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9901:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9902:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +9903:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +9904:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +9905:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::operator\28\29\28skia::textlayout::Cluster\20const*&&\2c\20unsigned\20long&&\2c\20bool&&\29 +9906:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +9907:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Cluster\20const*\2c\20unsigned\20long\2c\20bool\29>::__clone\28\29\20const +9908:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9909:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9910:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9911:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9912:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9913:std::__2::__function::__func\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\2c\20std::__2::vector>&\29\20const::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9914:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9915:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9916:std::__2::__function::__func>&\29::$_0\2c\20std::__2::allocator>&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9917:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9918:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9919:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9920:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9921:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9922:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9923:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9924:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9925:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9926:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9927:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9928:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9929:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9930:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9931:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9932:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9933:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9934:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9935:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9936:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9937:std::__2::__function::__func\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9938:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9939:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9940:std::__2::__function::__func\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9941:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::operator\28\29\28skia::textlayout::Run\20const*&&\2c\20float&&\2c\20skia::textlayout::SkRange&&\2c\20float*&&\29 +9942:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28std::__2::__function::__base\2c\20float*\29>*\29\20const +9943:std::__2::__function::__func\20const&\29::$_0\2c\20std::__2::allocator\20const&\29::$_0>\2c\20bool\20\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29>::__clone\28\29\20const +9944:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29 +9945:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>*\29\20const +9946:std::__2::__function::__func\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\2c\20std::__2::allocator\20const&\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29>::__clone\28\29\20const +9947:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20skia::textlayout::SkRange&&\2c\20float&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20SkPoint&&\2c\20SkPoint&&\2c\20skia::textlayout::InternalLineMetrics&&\2c\20bool&&\29 +9948:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28std::__2::__function::__base\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>*\29\20const +9949:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20skia::textlayout::SkRange\2c\20float\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkPoint\2c\20SkPoint\2c\20skia::textlayout::InternalLineMetrics\2c\20bool\29>::__clone\28\29\20const +9950:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::operator\28\29\28skia::textlayout::Cluster*&&\29 +9951:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28std::__2::__function::__base*\29\20const +9952:std::__2::__function::__func\2c\20void\20\28skia::textlayout::Cluster*\29>::__clone\28\29\20const +9953:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +9954:std::__2::__function::__func\2c\20void\20\28skia::textlayout::ParagraphImpl*\2c\20char\20const*\2c\20bool\29>::__clone\28\29\20const +9955:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::operator\28\29\28skia::textlayout::SkRange&&\2c\20SkSpan&&\2c\20float&\2c\20unsigned\20long&&\2c\20unsigned\20char&&\29 +9956:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28std::__2::__function::__base\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>*\29\20const +9957:std::__2::__function::__func\2c\20float\20\28skia::textlayout::SkRange\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29>::__clone\28\29\20const +9958:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::operator\28\29\28skia::textlayout::Block&&\2c\20skia_private::TArray&&\29 +9959:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28std::__2::__function::__base\29>*\29\20const +9960:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29>\2c\20void\20\28skia::textlayout::Block\2c\20skia_private::TArray\29>::__clone\28\29\20const +9961:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::operator\28\29\28sk_sp&&\29 +9962:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28std::__2::__function::__base\29>*\29\20const +9963:std::__2::__function::__func\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29\2c\20std::__2::allocator\2c\20SkSpan\2c\20float&\2c\20unsigned\20long\2c\20unsigned\20char\29\20const::'lambda'\28skia::textlayout::Block\2c\20skia_private::TArray\29::operator\28\29\28skia::textlayout::Block\2c\20skia_private::TArray\29\20const::'lambda'\28sk_sp\29>\2c\20skia::textlayout::OneLineShaper::Resolved\20\28sk_sp\29>::__clone\28\29\20const +9964:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::operator\28\29\28skia::textlayout::SkRange&&\29 +9965:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28std::__2::__function::__base\29>*\29\20const +9966:std::__2::__function::__func\2c\20void\20\28skia::textlayout::SkRange\29>::__clone\28\29\20const +9967:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +9968:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +9969:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +9970:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::~__func\28\29_10828 +9971:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::operator\28\29\28void*&&\2c\20void\20const*&&\29 +9972:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy_deallocate\28\29 +9973:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::destroy\28\29 +9974:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +9975:std::__2::__function::__func\2c\20void\20\28void*\2c\20void\20const*\29>::__clone\28\29\20const +9976:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +9977:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +9978:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +9979:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +9980:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +9981:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +9982:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +9983:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +9984:std::__2::__function::__func\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +9985:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +9986:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +9987:std::__2::__function::__func>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +9988:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::operator\28\29\28GrSurfaceProxy*&&\2c\20skgpu::Mipmapped&&\29 +9989:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +9990:std::__2::__function::__func>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0\2c\20std::__2::allocator>\2c\20bool\2c\20GrProcessorSet::Analysis\20const&\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrTextureResolveManager\2c\20GrCaps\20const&\29::$_0>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +9991:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::operator\28\29\28sktext::gpu::AtlasSubRun\20const*&&\2c\20SkPoint&&\2c\20SkPaint\20const&\2c\20sk_sp&&\2c\20sktext::gpu::RendererData&&\29 +9992:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28std::__2::__function::__base\2c\20sktext::gpu::RendererData\29>*\29\20const +9993:std::__2::__function::__func\2c\20void\20\28sktext::gpu::AtlasSubRun\20const*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20sktext::gpu::RendererData\29>::__clone\28\29\20const +9994:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::operator\28\29\28sktext::gpu::GlyphVector*&&\2c\20int&&\2c\20int&&\2c\20skgpu::MaskFormat&&\2c\20int&&\29 +9995:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28std::__2::__function::__base\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>*\29\20const +9996:std::__2::__function::__func\2c\20std::__2::tuple\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>::__clone\28\29\20const +9997:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::operator\28\29\28GrSurfaceProxy\20const*&&\29 +9998:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +9999:std::__2::__function::__func>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0\2c\20std::__2::allocator>\2c\20SkIRect\20const&\2c\20SkMatrix\20const&\2c\20SkPath\20const&\29::$_0>\2c\20bool\20\28GrSurfaceProxy\20const*\29>::__clone\28\29\20const +10000:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +10001:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +10002:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +10003:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::operator\28\29\28SkIRect&&\29 +10004:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28std::__2::__function::__base\20\28SkIRect\29>*\29\20const +10005:std::__2::__function::__func\2c\20sk_sp\20\28SkIRect\29>::__clone\28\29\20const +10006:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +10007:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +10008:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +10009:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +10010:std::__2::__function::__func\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrOp\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +10011:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28std::__2::__function::__base*\29\20const +10012:std::__2::__function::__func\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29\2c\20std::__2::allocator\28GrFragmentProcessor\20const*\2c\20GrSurfaceProxy\20const*\29::'lambda'\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>\2c\20void\20\28GrSurfaceProxy*\2c\20skgpu::Mipmapped\29>::__clone\28\29\20const +10013:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +10014:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10015:std::__2::__function::__func<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::render_sw_mask\28GrRecordingContext*\2c\20SkIRect\20const&\2c\20skgpu::ganesh::ClipStack::Element\20const**\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +10016:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::operator\28\29\28\29 +10017:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10018:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_1>\2c\20void\20\28\29>::__clone\28\29\20const +10019:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10020:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint_bounds\28SkMatrix*\2c\20SkRect*\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +10021:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10022:std::__2::__function::__func<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::colrv1_traverse_paint\28SkCanvas*\2c\20SkSpan\20const&\2c\20unsigned\20int\2c\20FT_FaceRec_*\2c\20FT_Opaque_Paint_\2c\20skia_private::THashSet*\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +10023:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +10024:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10025:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +10026:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +10027:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10028:std::__2::__function::__func<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +10029:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +10030:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10031:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::MeshGP\28sk_sp\2c\20sk_sp\2c\20SkMatrix\20const&\2c\20std::__2::optional>\20const&\2c\20bool\2c\20sk_sp\2c\20SkSpan>>\29::'lambda'\28GrTextureEffect\20const&\29>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +10032:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +10033:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +10034:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +10035:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +10036:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +10037:std::__2::__function::__func<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29\2c\20std::__2::allocator<\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29::'lambda'\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +10038:std::__2::__function::__func>*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator>*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::operator\28\29\28int&&\2c\20int&&\29 +10039:std::__2::__function::__func>*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator>*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +10040:std::__2::__function::__func>*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator>*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28\29\20const +10041:std::__2::__function::__func*\29::'lambda0'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda0'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::operator\28\29\28int&&\2c\20int&&\29 +10042:std::__2::__function::__func*\29::'lambda0'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda0'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +10043:std::__2::__function::__func*\29::'lambda0'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda0'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28\29\20const +10044:std::__2::__function::__func*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::operator\28\29\28int&&\2c\20int&&\29 +10045:std::__2::__function::__func*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +10046:std::__2::__function::__func*\29::'lambda'\28int\2c\20int\29\2c\20std::__2::allocator*\29::'lambda'\28int\2c\20int\29>\2c\20void\20\28int\2c\20int\29>::__clone\28\29\20const +10047:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::~__func\28\29_5315 +10048:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::operator\28\29\28\29 +10049:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy_deallocate\28\29 +10050:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::destroy\28\29 +10051:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10052:std::__2::__function::__func\2c\20int\29::$_0\2c\20std::__2::allocator\2c\20int\29::$_0>\2c\20void\20\28\29>::__clone\28\29\20const +10053:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::operator\28\29\28int&&\2c\20char\20const*&&\29 +10054:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +10055:std::__2::__function::__func\2c\20void\20\28int\2c\20char\20const*\29>::__clone\28\29\20const +10056:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +10057:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10058:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +10059:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +10060:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10061:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +10062:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::operator\28\29\28SkSL::Variable\20const&\29 +10063:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10064:std::__2::__function::__func\2c\20bool\20\28SkSL::Variable\20const&\29>::__clone\28\29\20const +10065:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::operator\28\29\28int&&\2c\20SkSL::Variable\20const*&&\2c\20SkSL::Expression\20const*&&\29 +10066:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28std::__2::__function::__base*\29\20const +10067:std::__2::__function::__func\2c\20void\20\28int\2c\20SkSL::Variable\20const*\2c\20SkSL::Expression\20const*\29>::__clone\28\29\20const +10068:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::operator\28\29\28unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\2c\20unsigned\20long&&\29 +10069:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +10070:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +10071:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +10072:std::__2::__function::__func\2c\20void\20\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\29>::__clone\28\29\20const +10073:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::operator\28\29\28SkVertices\20const*&&\2c\20SkBlendMode&&\2c\20SkPaint\20const&\2c\20float&&\2c\20float&&\2c\20bool&&\29 +10074:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28std::__2::__function::__base*\29\20const +10075:std::__2::__function::__func\2c\20void\20\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\2c\20float\2c\20float\2c\20bool\29>::__clone\28\29\20const +10076:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::operator\28\29\28SkIRect\20const&\29 +10077:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10078:std::__2::__function::__func\2c\20void\20\28SkIRect\20const&\29>::__clone\28\29\20const +10079:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::operator\28\29\28SkImageInfo\20const&\2c\20void*&&\2c\20unsigned\20long&&\2c\20SkCodec::Options\20const&\2c\20int&&\29 +10080:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::__clone\28std::__2::__function::__base*\29\20const +10081:std::__2::__function::__func\2c\20SkCodec::Result\20\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int\29>::__clone\28\29\20const +10082:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10732 +10083:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +10084:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +10085:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +10086:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10087:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +10088:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10457 +10089:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +10090:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +10091:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +10092:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10093:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +10094:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::~__func\28\29_10448 +10095:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +10096:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy_deallocate\28\29 +10097:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::destroy\28\29 +10098:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10099:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +10100:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::operator\28\29\28GrTextureProxy*&&\2c\20SkIRect&&\2c\20GrColorType&&\2c\20void\20const*&&\2c\20unsigned\20long&&\29 +10101:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28std::__2::__function::__base*\29\20const +10102:std::__2::__function::__func&\29>&\2c\20bool\29::$_0\2c\20std::__2::allocator&\29>&\2c\20bool\29::$_0>\2c\20bool\20\28GrTextureProxy*\2c\20SkIRect\2c\20GrColorType\2c\20void\20const*\2c\20unsigned\20long\29>::__clone\28\29\20const +10103:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::operator\28\29\28GrBackendTexture&&\29 +10104:std::__2::__function::__func*\29::$_0\2c\20std::__2::allocator*\29::$_0>\2c\20void\20\28GrBackendTexture\29>::__clone\28\29\20const +10105:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +10106:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +10107:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +10108:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::operator\28\29\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29 +10109:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28std::__2::__function::__base*\29\20const +10110:std::__2::__function::__func\2c\20void\20\28GrFragmentProcessor\20const&\2c\20GrFragmentProcessor::ProgramImpl&\29>::__clone\28\29\20const +10111:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +10112:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10113:std::__2::__function::__func\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +10114:std::__2::__function::__func\2c\20void\20\28\29>::operator\28\29\28\29 +10115:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28std::__2::__function::__base*\29\20const +10116:std::__2::__function::__func\2c\20void\20\28\29>::__clone\28\29\20const +10117:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::operator\28\29\28GrTextureEffect\20const&\29 +10118:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10119:std::__2::__function::__func\20const&\29\20const::$_0\2c\20std::__2::allocator\20const&\29\20const::$_0>\2c\20void\20\28GrTextureEffect\20const&\29>::__clone\28\29\20const +10120:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::operator\28\29\28GrResourceProvider*&&\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29 +10121:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28std::__2::__function::__base*\29\20const +10122:std::__2::__function::__func\2c\20GrSurfaceProxy::LazyCallbackResult\20\28GrResourceProvider*\2c\20GrSurfaceProxy::LazySurfaceDesc\20const&\29>::__clone\28\29\20const +10123:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9972 +10124:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +10125:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +10126:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::~__func\28\29_9984 +10127:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +10128:std::__2::__function::__func\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +10129:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::operator\28\29\28std::__2::function&\29 +10130:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28std::__2::__function::__base&\29>*\29\20const +10131:std::__2::__function::__func&\29\2c\20std::__2::allocator&\29>\2c\20void\20\28std::__2::function&\29>::__clone\28\29\20const +10132:srgb_to_hwb\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +10133:srcover_p\28unsigned\20char\2c\20unsigned\20char\29 +10134:sn_write +10135:skwasm_isMultiThreaded +10136:skwasm_isHeavy +10137:skwasm_getLiveObjectCounts +10138:sktext::gpu::post_purge_blob_message\28unsigned\20int\2c\20unsigned\20int\29 +10139:sktext::gpu::TextBlob::~TextBlob\28\29_13364 +10140:sktext::gpu::SlugImpl::~SlugImpl\28\29_13276 +10141:sktext::gpu::SlugImpl::sourceBounds\28\29\20const +10142:sktext::gpu::SlugImpl::sourceBoundsWithOrigin\28\29\20const +10143:sktext::gpu::SlugImpl::doFlatten\28SkWriteBuffer&\29\20const +10144:sktext::gpu::SDFMaskFilterImpl::getTypeName\28\29\20const +10145:sktext::gpu::SDFMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +10146:sktext::gpu::SDFMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +10147:skif::\28anonymous\20namespace\29::RasterBackend::~RasterBackend\28\29 +10148:skif::\28anonymous\20namespace\29::RasterBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +10149:skif::\28anonymous\20namespace\29::RasterBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +10150:skif::\28anonymous\20namespace\29::RasterBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +10151:skif::\28anonymous\20namespace\29::RasterBackend::getBlurEngine\28\29\20const +10152:skif::\28anonymous\20namespace\29::GaneshBackend::makeImage\28SkIRect\20const&\2c\20sk_sp\29\20const +10153:skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkISize\2c\20sk_sp\2c\20SkSurfaceProps\20const*\29\20const +10154:skif::\28anonymous\20namespace\29::GaneshBackend::getCachedBitmap\28SkBitmap\20const&\29\20const +10155:skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +10156:skia_png_zfree +10157:skia_png_zalloc +10158:skia_png_set_read_fn +10159:skia_png_set_expand_gray_1_2_4_to_8 +10160:skia_png_read_start_row +10161:skia_png_read_finish_row +10162:skia_png_handle_zTXt +10163:skia_png_handle_unknown +10164:skia_png_handle_tRNS +10165:skia_png_handle_tIME +10166:skia_png_handle_tEXt +10167:skia_png_handle_sRGB +10168:skia_png_handle_sPLT +10169:skia_png_handle_sCAL +10170:skia_png_handle_sBIT +10171:skia_png_handle_pHYs +10172:skia_png_handle_pCAL +10173:skia_png_handle_oFFs +10174:skia_png_handle_iTXt +10175:skia_png_handle_iCCP +10176:skia_png_handle_hIST +10177:skia_png_handle_gAMA +10178:skia_png_handle_cHRM +10179:skia_png_handle_bKGD +10180:skia_png_handle_PLTE +10181:skia_png_handle_IHDR +10182:skia_png_handle_IEND +10183:skia_png_get_IHDR +10184:skia_png_do_read_transformations +10185:skia_png_destroy_read_struct +10186:skia_png_default_read_data +10187:skia_png_create_png_struct +10188:skia_png_combine_row +10189:skia::textlayout::TypefaceFontStyleSet::~TypefaceFontStyleSet\28\29_8599 +10190:skia::textlayout::TypefaceFontStyleSet::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +10191:skia::textlayout::TypefaceFontProvider::~TypefaceFontProvider\28\29_8606 +10192:skia::textlayout::TypefaceFontProvider::onMatchFamily\28char\20const*\29\20const +10193:skia::textlayout::TypefaceFontProvider::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +10194:skia::textlayout::TypefaceFontProvider::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +10195:skia::textlayout::TypefaceFontProvider::onGetFamilyName\28int\2c\20SkString*\29\20const +10196:skia::textlayout::TypefaceFontProvider::onCreateStyleSet\28int\29\20const +10197:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::~ShapeHandler\28\29_8519 +10198:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +10199:skia::textlayout::TextLine::shapeEllipsis\28SkString\20const&\2c\20skia::textlayout::Cluster\20const*\29::ShapeHandler::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +10200:skia::textlayout::ParagraphImpl::~ParagraphImpl\28\29_8261 +10201:skia::textlayout::ParagraphImpl::visit\28std::__2::function\20const&\29 +10202:skia::textlayout::ParagraphImpl::updateTextAlign\28skia::textlayout::TextAlign\29 +10203:skia::textlayout::ParagraphImpl::updateForegroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +10204:skia::textlayout::ParagraphImpl::updateFontSize\28unsigned\20long\2c\20unsigned\20long\2c\20float\29 +10205:skia::textlayout::ParagraphImpl::updateBackgroundPaint\28unsigned\20long\2c\20unsigned\20long\2c\20SkPaint\29 +10206:skia::textlayout::ParagraphImpl::unresolvedGlyphs\28\29 +10207:skia::textlayout::ParagraphImpl::unresolvedCodepoints\28\29 +10208:skia::textlayout::ParagraphImpl::paint\28SkCanvas*\2c\20float\2c\20float\29 +10209:skia::textlayout::ParagraphImpl::markDirty\28\29 +10210:skia::textlayout::ParagraphImpl::lineNumber\28\29 +10211:skia::textlayout::ParagraphImpl::layout\28float\29 +10212:skia::textlayout::ParagraphImpl::getWordBoundary\28unsigned\20int\29 +10213:skia::textlayout::ParagraphImpl::getRectsForRange\28unsigned\20int\2c\20unsigned\20int\2c\20skia::textlayout::RectHeightStyle\2c\20skia::textlayout::RectWidthStyle\29 +10214:skia::textlayout::ParagraphImpl::getRectsForPlaceholders\28\29 +10215:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29::$_0::operator\28\29\28skia::textlayout::Run\20const*\2c\20float\2c\20skia::textlayout::SkRange\2c\20float*\29\20const::'lambda'\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29::operator\28\29\28skia::textlayout::SkRange\2c\20skia::textlayout::TextStyle\20const&\2c\20skia::textlayout::TextLine::ClipContext\20const&\29\20const::'lambda'\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +10216:skia::textlayout::ParagraphImpl::getPath\28int\2c\20SkPath*\29 +10217:skia::textlayout::ParagraphImpl::getLineNumberAtUTF16Offset\28unsigned\20long\29 +10218:skia::textlayout::ParagraphImpl::getLineMetrics\28std::__2::vector>&\29 +10219:skia::textlayout::ParagraphImpl::getLineMetricsAt\28int\2c\20skia::textlayout::LineMetrics*\29\20const +10220:skia::textlayout::ParagraphImpl::getFonts\28\29\20const +10221:skia::textlayout::ParagraphImpl::getFontAt\28unsigned\20long\29\20const +10222:skia::textlayout::ParagraphImpl::getFontAtUTF16Offset\28unsigned\20long\29 +10223:skia::textlayout::ParagraphImpl::getClosestUTF16GlyphInfoAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphInfo*\29 +10224:skia::textlayout::ParagraphImpl::getClosestGlyphClusterAt\28float\2c\20float\2c\20skia::textlayout::Paragraph::GlyphClusterInfo*\29 +10225:skia::textlayout::ParagraphImpl::getActualTextRange\28int\2c\20bool\29\20const +10226:skia::textlayout::ParagraphImpl::extendedVisit\28std::__2::function\20const&\29 +10227:skia::textlayout::ParagraphImpl::containsEmoji\28SkTextBlob*\29 +10228:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29::$_0::__invoke\28SkPath\20const*\2c\20SkMatrix\20const&\2c\20void*\29 +10229:skia::textlayout::ParagraphImpl::containsColorFontOrBitmap\28SkTextBlob*\29 +10230:skia::textlayout::ParagraphBuilderImpl::~ParagraphBuilderImpl\28\29_8181 +10231:skia::textlayout::ParagraphBuilderImpl::pushStyle\28skia::textlayout::TextStyle\20const&\29 +10232:skia::textlayout::ParagraphBuilderImpl::pop\28\29 +10233:skia::textlayout::ParagraphBuilderImpl::peekStyle\28\29 +10234:skia::textlayout::ParagraphBuilderImpl::getText\28\29 +10235:skia::textlayout::ParagraphBuilderImpl::getParagraphStyle\28\29\20const +10236:skia::textlayout::ParagraphBuilderImpl::addText\28std::__2::basic_string\2c\20std::__2::allocator>\20const&\29 +10237:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\2c\20unsigned\20long\29 +10238:skia::textlayout::ParagraphBuilderImpl::addText\28char\20const*\29 +10239:skia::textlayout::ParagraphBuilderImpl::addPlaceholder\28skia::textlayout::PlaceholderStyle\20const&\29 +10240:skia::textlayout::ParagraphBuilderImpl::Reset\28\29 +10241:skia::textlayout::ParagraphBuilderImpl::Build\28\29 +10242:skia::textlayout::Paragraph::FontInfo::~FontInfo\28\29_8346 +10243:skia::textlayout::OneLineShaper::~OneLineShaper\28\29_8161 +10244:skia::textlayout::OneLineShaper::runBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +10245:skia::textlayout::OneLineShaper::commitRunBuffer\28SkShaper::RunHandler::RunInfo\20const&\29 +10246:skia::textlayout::LangIterator::~LangIterator\28\29_8149 +10247:skia::textlayout::LangIterator::~LangIterator\28\29 +10248:skia::textlayout::LangIterator::endOfCurrentRun\28\29\20const +10249:skia::textlayout::LangIterator::currentLanguage\28\29\20const +10250:skia::textlayout::LangIterator::consume\28\29 +10251:skia::textlayout::LangIterator::atEnd\28\29\20const +10252:skia::textlayout::FontCollection::~FontCollection\28\29_8010 +10253:skia::textlayout::CanvasParagraphPainter::translate\28float\2c\20float\29 +10254:skia::textlayout::CanvasParagraphPainter::save\28\29 +10255:skia::textlayout::CanvasParagraphPainter::restore\28\29 +10256:skia::textlayout::CanvasParagraphPainter::drawTextShadow\28sk_sp\20const&\2c\20float\2c\20float\2c\20unsigned\20int\2c\20float\29 +10257:skia::textlayout::CanvasParagraphPainter::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20std::__2::variant\20const&\29 +10258:skia::textlayout::CanvasParagraphPainter::drawRect\28SkRect\20const&\2c\20std::__2::variant\20const&\29 +10259:skia::textlayout::CanvasParagraphPainter::drawPath\28SkPath\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +10260:skia::textlayout::CanvasParagraphPainter::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +10261:skia::textlayout::CanvasParagraphPainter::drawFilledRect\28SkRect\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +10262:skia::textlayout::CanvasParagraphPainter::clipRect\28SkRect\20const&\29 +10263:skgpu::tess::FixedCountWedges::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +10264:skgpu::tess::FixedCountWedges::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +10265:skgpu::tess::FixedCountStrokes::WriteVertexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +10266:skgpu::tess::FixedCountCurves::WriteIndexBuffer\28skgpu::VertexWriter\2c\20unsigned\20long\29 +10267:skgpu::ganesh::texture_proxy_view_from_planes\28GrRecordingContext*\2c\20SkImage_Lazy\20const*\2c\20skgpu::Budgeted\29::$_0::__invoke\28void*\2c\20void*\29 +10268:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::~SmallPathOp\28\29_12396 +10269:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::visitProxies\28std::__2::function\20const&\29\20const +10270:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10271:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10272:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10273:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::name\28\29\20const +10274:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::fixedFunctionFlags\28\29\20const +10275:skgpu::ganesh::\28anonymous\20namespace\29::SmallPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10276:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::name\28\29\20const +10277:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10278:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10279:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10280:skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10281:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::~HullShader\28\29_12261 +10282:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::name\28\29\20const +10283:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10284:skgpu::ganesh::\28anonymous\20namespace\29::HullShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10285:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::~AAFlatteningConvexPathOp\28\29_11634 +10286:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +10287:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10288:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10289:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10290:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10291:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::name\28\29\20const +10292:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::fixedFunctionFlags\28\29\20const +10293:skgpu::ganesh::\28anonymous\20namespace\29::AAFlatteningConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10294:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::~AAConvexPathOp\28\29_11539 +10295:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::visitProxies\28std::__2::function\20const&\29\20const +10296:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10297:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10298:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10299:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10300:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::name\28\29\20const +10301:skgpu::ganesh::\28anonymous\20namespace\29::AAConvexPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10302:skgpu::ganesh::TriangulatingPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10303:skgpu::ganesh::TriangulatingPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10304:skgpu::ganesh::TriangulatingPathRenderer::name\28\29\20const +10305:skgpu::ganesh::TessellationPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +10306:skgpu::ganesh::TessellationPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +10307:skgpu::ganesh::TessellationPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10308:skgpu::ganesh::TessellationPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10309:skgpu::ganesh::TessellationPathRenderer::name\28\29\20const +10310:skgpu::ganesh::SurfaceDrawContext::~SurfaceDrawContext\28\29 +10311:skgpu::ganesh::SurfaceDrawContext::willReplaceOpsTask\28skgpu::ganesh::OpsTask*\2c\20skgpu::ganesh::OpsTask*\29 +10312:skgpu::ganesh::SurfaceDrawContext::canDiscardPreviousOpsOnFullClear\28\29\20const +10313:skgpu::ganesh::SurfaceContext::~SurfaceContext\28\29_9932 +10314:skgpu::ganesh::SurfaceContext::asyncRescaleAndReadPixelsYUV420\28GrDirectContext*\2c\20SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +10315:skgpu::ganesh::SurfaceContext::asyncReadPixels\28GrDirectContext*\2c\20SkIRect\20const&\2c\20SkColorType\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::$_0::__invoke\28void*\29 +10316:skgpu::ganesh::StrokeTessellateOp::~StrokeTessellateOp\28\29_12456 +10317:skgpu::ganesh::StrokeTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +10318:skgpu::ganesh::StrokeTessellateOp::usesStencil\28\29\20const +10319:skgpu::ganesh::StrokeTessellateOp::onPrepare\28GrOpFlushState*\29 +10320:skgpu::ganesh::StrokeTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10321:skgpu::ganesh::StrokeTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10322:skgpu::ganesh::StrokeTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10323:skgpu::ganesh::StrokeTessellateOp::name\28\29\20const +10324:skgpu::ganesh::StrokeTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10325:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::~NonAAStrokeRectOp\28\29_12433 +10326:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +10327:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::programInfo\28\29 +10328:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10329:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10330:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10331:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::name\28\29\20const +10332:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::NonAAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10333:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::~AAStrokeRectOp\28\29_12443 +10334:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::visitProxies\28std::__2::function\20const&\29\20const +10335:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::programInfo\28\29 +10336:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10337:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10338:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10339:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10340:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::name\28\29\20const +10341:skgpu::ganesh::StrokeRectOp::\28anonymous\20namespace\29::AAStrokeRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10342:skgpu::ganesh::StencilClip::~StencilClip\28\29_10795 +10343:skgpu::ganesh::StencilClip::~StencilClip\28\29 +10344:skgpu::ganesh::StencilClip::preApply\28SkRect\20const&\2c\20GrAA\29\20const +10345:skgpu::ganesh::StencilClip::apply\28GrAppliedHardClip*\2c\20SkIRect*\29\20const +10346:skgpu::ganesh::SoftwarePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10347:skgpu::ganesh::SoftwarePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10348:skgpu::ganesh::SoftwarePathRenderer::name\28\29\20const +10349:skgpu::ganesh::SmallPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10350:skgpu::ganesh::SmallPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10351:skgpu::ganesh::SmallPathRenderer::name\28\29\20const +10352:skgpu::ganesh::SmallPathAtlasMgr::postFlush\28skgpu::Token\29 +10353:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::~RegionOpImpl\28\29_12343 +10354:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::visitProxies\28std::__2::function\20const&\29\20const +10355:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::programInfo\28\29 +10356:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +10357:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10358:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10359:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10360:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::name\28\29\20const +10361:skgpu::ganesh::RegionOp::\28anonymous\20namespace\29::RegionOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10362:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_quad_generic\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10363:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10364:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10365:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10366:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_cov_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10367:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv_strict\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10368:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color_uv\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10369:skgpu::ganesh::QuadPerEdgeAA::\28anonymous\20namespace\29::write_2d_color\28skgpu::VertexWriter*\2c\20skgpu::ganesh::QuadPerEdgeAA::VertexSpec\20const&\2c\20GrQuad\20const*\2c\20GrQuad\20const*\2c\20float\20const*\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkRect\20const&\2c\20SkRect\20const&\29 +10370:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::~QuadPerEdgeAAGeometryProcessor\28\29_12332 +10371:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::onTextureSampler\28int\29\20const +10372:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::name\28\29\20const +10373:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10374:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10375:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10376:skgpu::ganesh::QuadPerEdgeAA::QuadPerEdgeAAGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10377:skgpu::ganesh::PathWedgeTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +10378:skgpu::ganesh::PathTessellateOp::~PathTessellateOp\28\29_12316 +10379:skgpu::ganesh::PathTessellateOp::visitProxies\28std::__2::function\20const&\29\20const +10380:skgpu::ganesh::PathTessellateOp::usesStencil\28\29\20const +10381:skgpu::ganesh::PathTessellateOp::onPrepare\28GrOpFlushState*\29 +10382:skgpu::ganesh::PathTessellateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10383:skgpu::ganesh::PathTessellateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10384:skgpu::ganesh::PathTessellateOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10385:skgpu::ganesh::PathTessellateOp::name\28\29\20const +10386:skgpu::ganesh::PathTessellateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10387:skgpu::ganesh::PathStencilCoverOp::~PathStencilCoverOp\28\29_12306 +10388:skgpu::ganesh::PathStencilCoverOp::visitProxies\28std::__2::function\20const&\29\20const +10389:skgpu::ganesh::PathStencilCoverOp::onPrepare\28GrOpFlushState*\29 +10390:skgpu::ganesh::PathStencilCoverOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10391:skgpu::ganesh::PathStencilCoverOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10392:skgpu::ganesh::PathStencilCoverOp::name\28\29\20const +10393:skgpu::ganesh::PathStencilCoverOp::fixedFunctionFlags\28\29\20const +10394:skgpu::ganesh::PathStencilCoverOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10395:skgpu::ganesh::PathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +10396:skgpu::ganesh::PathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +10397:skgpu::ganesh::PathInnerTriangulateOp::~PathInnerTriangulateOp\28\29_12282 +10398:skgpu::ganesh::PathInnerTriangulateOp::visitProxies\28std::__2::function\20const&\29\20const +10399:skgpu::ganesh::PathInnerTriangulateOp::onPrepare\28GrOpFlushState*\29 +10400:skgpu::ganesh::PathInnerTriangulateOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10401:skgpu::ganesh::PathInnerTriangulateOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10402:skgpu::ganesh::PathInnerTriangulateOp::name\28\29\20const +10403:skgpu::ganesh::PathInnerTriangulateOp::fixedFunctionFlags\28\29\20const +10404:skgpu::ganesh::PathInnerTriangulateOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10405:skgpu::ganesh::PathCurveTessellator::prepare\28GrMeshDrawTarget*\2c\20SkMatrix\20const&\2c\20skgpu::ganesh::PathTessellator::PathDrawList\20const&\2c\20int\29 +10406:skgpu::ganesh::OpsTask::~OpsTask\28\29_12202 +10407:skgpu::ganesh::OpsTask::onPrepare\28GrOpFlushState*\29 +10408:skgpu::ganesh::OpsTask::onPrePrepare\28GrRecordingContext*\29 +10409:skgpu::ganesh::OpsTask::onMakeSkippable\28\29 +10410:skgpu::ganesh::OpsTask::onIsUsed\28GrSurfaceProxy*\29\20const +10411:skgpu::ganesh::OpsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +10412:skgpu::ganesh::OpsTask::endFlush\28GrDrawingManager*\29 +10413:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::~NonAALatticeOp\28\29_12171 +10414:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::visitProxies\28std::__2::function\20const&\29\20const +10415:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10416:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10417:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10418:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10419:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::name\28\29\20const +10420:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::NonAALatticeOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10421:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::~LatticeGP\28\29_12184 +10422:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::onTextureSampler\28int\29\20const +10423:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::name\28\29\20const +10424:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10425:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10426:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10427:skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10428:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::~FillRRectOpImpl\28\29_11988 +10429:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +10430:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +10431:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10432:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10433:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10434:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::name\28\29\20const +10435:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10436:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::clipToShape\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkClipOp\2c\20SkMatrix\20const&\2c\20GrShape\20const&\2c\20GrAA\29 +10437:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29_12006 +10438:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::~Processor\28\29 +10439:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::name\28\29\20const +10440:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10441:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +10442:skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10443:skgpu::ganesh::DrawableOp::~DrawableOp\28\29_11977 +10444:skgpu::ganesh::DrawableOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10445:skgpu::ganesh::DrawableOp::name\28\29\20const +10446:skgpu::ganesh::DrawAtlasPathOp::~DrawAtlasPathOp\28\29_11884 +10447:skgpu::ganesh::DrawAtlasPathOp::visitProxies\28std::__2::function\20const&\29\20const +10448:skgpu::ganesh::DrawAtlasPathOp::onPrepare\28GrOpFlushState*\29 +10449:skgpu::ganesh::DrawAtlasPathOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10450:skgpu::ganesh::DrawAtlasPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10451:skgpu::ganesh::DrawAtlasPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10452:skgpu::ganesh::DrawAtlasPathOp::name\28\29\20const +10453:skgpu::ganesh::DrawAtlasPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10454:skgpu::ganesh::Device::~Device\28\29_9289 +10455:skgpu::ganesh::Device::strikeDeviceInfo\28\29\20const +10456:skgpu::ganesh::Device::snapSpecial\28SkIRect\20const&\2c\20bool\29 +10457:skgpu::ganesh::Device::snapSpecialScaled\28SkIRect\20const&\2c\20SkISize\20const&\29 +10458:skgpu::ganesh::Device::replaceClip\28SkIRect\20const&\29 +10459:skgpu::ganesh::Device::pushClipStack\28\29 +10460:skgpu::ganesh::Device::popClipStack\28\29 +10461:skgpu::ganesh::Device::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +10462:skgpu::ganesh::Device::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +10463:skgpu::ganesh::Device::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +10464:skgpu::ganesh::Device::onClipShader\28sk_sp\29 +10465:skgpu::ganesh::Device::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +10466:skgpu::ganesh::Device::isClipWideOpen\28\29\20const +10467:skgpu::ganesh::Device::isClipRect\28\29\20const +10468:skgpu::ganesh::Device::isClipEmpty\28\29\20const +10469:skgpu::ganesh::Device::isClipAntiAliased\28\29\20const +10470:skgpu::ganesh::Device::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +10471:skgpu::ganesh::Device::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10472:skgpu::ganesh::Device::drawShadow\28SkCanvas*\2c\20SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +10473:skgpu::ganesh::Device::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +10474:skgpu::ganesh::Device::drawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +10475:skgpu::ganesh::Device::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +10476:skgpu::ganesh::Device::drawPaint\28SkPaint\20const&\29 +10477:skgpu::ganesh::Device::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +10478:skgpu::ganesh::Device::drawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +10479:skgpu::ganesh::Device::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10480:skgpu::ganesh::Device::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +10481:skgpu::ganesh::Device::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +10482:skgpu::ganesh::Device::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10483:skgpu::ganesh::Device::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +10484:skgpu::ganesh::Device::drawDevice\28SkDevice*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +10485:skgpu::ganesh::Device::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +10486:skgpu::ganesh::Device::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +10487:skgpu::ganesh::Device::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +10488:skgpu::ganesh::Device::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +10489:skgpu::ganesh::Device::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +10490:skgpu::ganesh::Device::drawArc\28SkArc\20const&\2c\20SkPaint\20const&\29 +10491:skgpu::ganesh::Device::devClipBounds\28\29\20const +10492:skgpu::ganesh::Device::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +10493:skgpu::ganesh::Device::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +10494:skgpu::ganesh::Device::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +10495:skgpu::ganesh::Device::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +10496:skgpu::ganesh::Device::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +10497:skgpu::ganesh::Device::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +10498:skgpu::ganesh::Device::baseRecorder\28\29\20const +10499:skgpu::ganesh::Device::android_utils_clipWithStencil\28\29 +10500:skgpu::ganesh::DefaultPathRenderer::onStencilPath\28skgpu::ganesh::PathRenderer::StencilPathArgs\20const&\29 +10501:skgpu::ganesh::DefaultPathRenderer::onGetStencilSupport\28GrStyledShape\20const&\29\20const +10502:skgpu::ganesh::DefaultPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10503:skgpu::ganesh::DefaultPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10504:skgpu::ganesh::DefaultPathRenderer::name\28\29\20const +10505:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::name\28\29\20const +10506:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10507:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10508:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingLineEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10509:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::name\28\29\20const +10510:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +10511:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +10512:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashingCircleEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +10513:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::~DashOpImpl\28\29_11781 +10514:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::visitProxies\28std::__2::function\20const&\29\20const +10515:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::programInfo\28\29 +10516:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +10517:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10518:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +10519:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10520:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::name\28\29\20const +10521:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::fixedFunctionFlags\28\29\20const +10522:skgpu::ganesh::DashOp::\28anonymous\20namespace\29::DashOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10523:skgpu::ganesh::DashLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10524:skgpu::ganesh::DashLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10525:skgpu::ganesh::DashLinePathRenderer::name\28\29\20const +10526:skgpu::ganesh::ClipStack::~ClipStack\28\29_9181 +10527:skgpu::ganesh::ClipStack::preApply\28SkRect\20const&\2c\20GrAA\29\20const +10528:skgpu::ganesh::ClipStack::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +10529:skgpu::ganesh::ClearOp::~ClearOp\28\29 +10530:skgpu::ganesh::ClearOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10531:skgpu::ganesh::ClearOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10532:skgpu::ganesh::ClearOp::name\28\29\20const +10533:skgpu::ganesh::AtlasTextOp::~AtlasTextOp\28\29_11716 +10534:skgpu::ganesh::AtlasTextOp::visitProxies\28std::__2::function\20const&\29\20const +10535:skgpu::ganesh::AtlasTextOp::onPrepareDraws\28GrMeshDrawTarget*\29 +10536:skgpu::ganesh::AtlasTextOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +10537:skgpu::ganesh::AtlasTextOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +10538:skgpu::ganesh::AtlasTextOp::name\28\29\20const +10539:skgpu::ganesh::AtlasTextOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +10540:skgpu::ganesh::AtlasRenderTask::~AtlasRenderTask\28\29_11702 +10541:skgpu::ganesh::AtlasRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +10542:skgpu::ganesh::AtlasRenderTask::onExecute\28GrOpFlushState*\29 +10543:skgpu::ganesh::AtlasPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10544:skgpu::ganesh::AtlasPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10545:skgpu::ganesh::AtlasPathRenderer::name\28\29\20const +10546:skgpu::ganesh::AALinearizingConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10547:skgpu::ganesh::AALinearizingConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10548:skgpu::ganesh::AALinearizingConvexPathRenderer::name\28\29\20const +10549:skgpu::ganesh::AAHairLinePathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10550:skgpu::ganesh::AAHairLinePathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10551:skgpu::ganesh::AAHairLinePathRenderer::name\28\29\20const +10552:skgpu::ganesh::AAConvexPathRenderer::onDrawPath\28skgpu::ganesh::PathRenderer::DrawPathArgs\20const&\29 +10553:skgpu::ganesh::AAConvexPathRenderer::onCanDrawPath\28skgpu::ganesh::PathRenderer::CanDrawPathArgs\20const&\29\20const +10554:skgpu::ganesh::AAConvexPathRenderer::name\28\29\20const +10555:skgpu::TAsyncReadResult::~TAsyncReadResult\28\29_10823 +10556:skgpu::TAsyncReadResult::rowBytes\28int\29\20const +10557:skgpu::TAsyncReadResult::data\28int\29\20const +10558:skgpu::StringKeyBuilder::~StringKeyBuilder\28\29_10422 +10559:skgpu::StringKeyBuilder::appendComment\28char\20const*\29 +10560:skgpu::StringKeyBuilder::addBits\28unsigned\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +10561:skgpu::ShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\2c\20bool\29 +10562:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29_13210 +10563:skgpu::RectanizerSkyline::~RectanizerSkyline\28\29 +10564:skgpu::RectanizerSkyline::percentFull\28\29\20const +10565:skgpu::RectanizerPow2::reset\28\29 +10566:skgpu::RectanizerPow2::percentFull\28\29\20const +10567:skgpu::RectanizerPow2::addRect\28int\2c\20int\2c\20SkIPoint16*\29 +10568:skgpu::Plot::~Plot\28\29_13201 +10569:skgpu::KeyBuilder::~KeyBuilder\28\29 +10570:skgpu::DefaultShaderErrorHandler\28\29::DefaultShaderErrorHandler::compileError\28char\20const*\2c\20char\20const*\29 +10571:skcpu::bw_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +10572:skcpu::bw_pt_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +10573:skcpu::bw_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +10574:skcpu::bw_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +10575:skcpu::aa_square_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +10576:skcpu::aa_poly_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +10577:skcpu::aa_line_hair_proc\28skcpu::PtProcRec\20const&\2c\20SkSpan\2c\20SkBlitter*\29 +10578:skcpu::Draw::paintMasks\28SkZip\2c\20SkPaint\20const&\29\20const +10579:sk_mmap_releaseproc\28void\20const*\2c\20void*\29 +10580:sk_ft_stream_io\28FT_StreamRec_*\2c\20unsigned\20long\2c\20unsigned\20char*\2c\20unsigned\20long\29 +10581:sk_ft_realloc\28FT_MemoryRec_*\2c\20long\2c\20long\2c\20void*\29 +10582:sk_fclose\28_IO_FILE*\29 +10583:skString_getData +10584:skString_free +10585:skString_allocate +10586:skString16_getData +10587:skString16_free +10588:skString16_allocate +10589:skData_dispose +10590:skData_create +10591:shader_dispose +10592:shader_createSweepGradient +10593:shader_createRuntimeEffectShader +10594:shader_createRadialGradient +10595:shader_createLinearGradient +10596:shader_createFromImage +10597:shader_createConicalGradient +10598:sfnt_table_info +10599:sfnt_load_face +10600:sfnt_is_postscript +10601:sfnt_is_alphanumeric +10602:sfnt_init_face +10603:sfnt_get_ps_name +10604:sfnt_get_name_index +10605:sfnt_get_interface +10606:sfnt_get_glyph_name +10607:sfnt_get_charset_id +10608:sfnt_done_face +10609:setup_syllables_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10610:setup_syllables_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10611:setup_syllables_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10612:setup_syllables_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10613:setup_masks_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10614:setup_masks_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10615:setup_masks_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10616:setup_masks_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10617:setup_masks_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10618:setup_masks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10619:service_cleanup\28\29 +10620:scriptGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +10621:runtimeEffect_getUniformSize +10622:runtimeEffect_dispose +10623:runtimeEffect_create +10624:reverse_hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +10625:reverse_hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +10626:reorder_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10627:reorder_myanmar\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10628:reorder_marks_hebrew\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +10629:reorder_marks_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20unsigned\20int\2c\20unsigned\20int\29 +10630:reorder_khmer\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10631:rect_memcpy\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20SkColorSpaceXformSteps\20const&\29 +10632:record_stch\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10633:record_rphf_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10634:record_pref_use\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +10635:read_data_from_FT_Stream +10636:rbbi_cleanup_74 +10637:quad_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10638:quad_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +10639:putil_cleanup\28\29 +10640:psnames_get_service +10641:pshinter_get_t2_funcs +10642:pshinter_get_t1_funcs +10643:psh_globals_new +10644:psh_globals_destroy +10645:psaux_get_glyph_name +10646:ps_table_release +10647:ps_table_new +10648:ps_table_done +10649:ps_table_add +10650:ps_property_set +10651:ps_property_get +10652:ps_parser_to_int +10653:ps_parser_to_fixed_array +10654:ps_parser_to_fixed +10655:ps_parser_to_coord_array +10656:ps_parser_to_bytes +10657:ps_parser_load_field_table +10658:ps_parser_init +10659:ps_hints_t2mask +10660:ps_hints_t2counter +10661:ps_hints_t1stem3 +10662:ps_hints_t1reset +10663:ps_hints_close +10664:ps_hints_apply +10665:ps_hinter_init +10666:ps_hinter_done +10667:ps_get_standard_strings +10668:ps_get_macintosh_name +10669:ps_decoder_init +10670:preprocess_text_use\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10671:preprocess_text_thai\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10672:preprocess_text_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10673:preprocess_text_hangul\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10674:premultiply_data +10675:premul_rgb\28SkRGBA4f<\28SkAlphaType\292>\29 +10676:premul_polar\28SkRGBA4f<\28SkAlphaType\292>\29 +10677:postprocess_glyphs_arabic\28hb_ot_shape_plan_t\20const*\2c\20hb_buffer_t*\2c\20hb_font_t*\29 +10678:portable::xy_to_unit_angle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10679:portable::xy_to_radius\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10680:portable::xy_to_2pt_conical_well_behaved\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10681:portable::xy_to_2pt_conical_strip\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10682:portable::xy_to_2pt_conical_smaller\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10683:portable::xy_to_2pt_conical_greater\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10684:portable::xy_to_2pt_conical_focal_on_circle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10685:portable::xor_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10686:portable::white_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10687:portable::unpremul_polar\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10688:portable::unpremul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10689:portable::uniform_color_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10690:portable::trace_var\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10691:portable::trace_scope\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10692:portable::trace_line\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10693:portable::trace_exit\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10694:portable::trace_enter\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10695:portable::tan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10696:portable::swizzle_copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10697:portable::swizzle_copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10698:portable::swizzle_copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10699:portable::swizzle_copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10700:portable::swizzle_copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10701:portable::swizzle_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10702:portable::swizzle_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10703:portable::swizzle_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10704:portable::swizzle_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10705:portable::swizzle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10706:portable::swap_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10707:portable::swap_rb_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10708:portable::swap_rb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10709:portable::sub_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10710:portable::sub_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10711:portable::sub_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10712:portable::sub_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10713:portable::sub_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10714:portable::sub_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10715:portable::sub_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10716:portable::sub_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10717:portable::sub_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10718:portable::sub_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10719:portable::store_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10720:portable::store_src_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10721:portable::store_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10722:portable::store_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10723:portable::store_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10724:portable::store_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10725:portable::store_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10726:portable::store_r8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10727:portable::store_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10728:portable::store_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10729:portable::store_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10730:portable::store_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10731:portable::store_device_xy01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10732:portable::store_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10733:portable::store_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10734:portable::store_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10735:portable::store_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10736:portable::store_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10737:portable::store_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10738:portable::store_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10739:portable::store_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10740:portable::store_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10741:portable::store_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10742:portable::store_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10743:portable::store_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10744:portable::start_pipeline\28unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20unsigned\20long\2c\20SkRasterPipelineStage*\2c\20SkSpan\2c\20unsigned\20char*\29 +10745:portable::stack_rewind\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10746:portable::stack_checkpoint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10747:portable::srcover_rgba_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10748:portable::srcover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10749:portable::srcout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10750:portable::srcin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10751:portable::srcatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10752:portable::sqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10753:portable::splat_4_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10754:portable::splat_3_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10755:portable::splat_2_constants\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10756:portable::softlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10757:portable::smoothstep_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10758:portable::sin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10759:portable::shuffle\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10760:portable::set_base_pointer\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10761:portable::seed_shader\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10762:portable::screen\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10763:portable::scale_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10764:portable::scale_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10765:portable::scale_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10766:portable::scale_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10767:portable::saturation\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10768:portable::rgb_to_hsl\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10769:portable::repeat_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10770:portable::repeat_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10771:portable::repeat_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10772:portable::refract_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10773:portable::reenable_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10774:portable::premul_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10775:portable::premul\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10776:portable::pow_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10777:portable::plus_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10778:portable::perlin_noise\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10779:portable::parametric\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10780:portable::overlay\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10781:portable::ootf\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10782:portable::negate_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10783:portable::multiply\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10784:portable::mul_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10785:portable::mul_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10786:portable::mul_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10787:portable::mul_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10788:portable::mul_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10789:portable::mul_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10790:portable::mul_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10791:portable::mul_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10792:portable::mul_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10793:portable::mul_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10794:portable::mul_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10795:portable::mul_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10796:portable::move_src_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10797:portable::move_dst_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10798:portable::modulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10799:portable::mod_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10800:portable::mod_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10801:portable::mod_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10802:portable::mod_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10803:portable::mod_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10804:portable::mix_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10805:portable::mix_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10806:portable::mix_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10807:portable::mix_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10808:portable::mix_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10809:portable::mix_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10810:portable::mix_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10811:portable::mix_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10812:portable::mix_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10813:portable::mix_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10814:portable::mirror_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10815:portable::mirror_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10816:portable::mirror_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10817:portable::mipmap_linear_update\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10818:portable::mipmap_linear_init\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10819:portable::mipmap_linear_finish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10820:portable::min_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10821:portable::min_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10822:portable::min_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10823:portable::min_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10824:portable::min_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10825:portable::min_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10826:portable::min_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10827:portable::min_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10828:portable::min_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10829:portable::min_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10830:portable::min_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10831:portable::min_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10832:portable::min_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10833:portable::min_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10834:portable::min_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10835:portable::min_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10836:portable::merge_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10837:portable::merge_inv_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10838:portable::merge_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10839:portable::max_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10840:portable::max_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10841:portable::max_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10842:portable::max_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10843:portable::max_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10844:portable::max_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10845:portable::max_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10846:portable::max_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10847:portable::max_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10848:portable::max_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10849:portable::max_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10850:portable::max_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10851:portable::max_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10852:portable::max_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10853:portable::max_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10854:portable::max_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10855:portable::matrix_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10856:portable::matrix_scale_translate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10857:portable::matrix_perspective\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10858:portable::matrix_multiply_4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10859:portable::matrix_multiply_3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10860:portable::matrix_multiply_2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10861:portable::matrix_4x5\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10862:portable::matrix_4x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10863:portable::matrix_3x4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10864:portable::matrix_3x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10865:portable::matrix_2x3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10866:portable::mask_off_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10867:portable::mask_off_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10868:portable::mask_2pt_conical_nan\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10869:portable::mask_2pt_conical_degenerates\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10870:portable::luminosity\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10871:portable::log_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10872:portable::log2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10873:portable::load_src_rg\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10874:portable::load_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10875:portable::load_rgf16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10876:portable::load_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10877:portable::load_rg88_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10878:portable::load_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10879:portable::load_rg1616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10880:portable::load_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10881:portable::load_return_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10882:portable::load_loop_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10883:portable::load_f32_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10884:portable::load_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10885:portable::load_f16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10886:portable::load_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10887:portable::load_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10888:portable::load_condition_mask\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10889:portable::load_af16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10890:portable::load_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10891:portable::load_a8_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10892:portable::load_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10893:portable::load_a16_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10894:portable::load_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10895:portable::load_8888_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10896:portable::load_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10897:portable::load_565_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10898:portable::load_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10899:portable::load_4444_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10900:portable::load_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10901:portable::load_16161616_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10902:portable::load_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10903:portable::load_10x6_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10904:portable::load_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10905:portable::load_1010102_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10906:portable::load_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10907:portable::load_1010102_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10908:portable::load_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10909:portable::load_10101010_xr_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10910:portable::load_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10911:portable::lighten\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10912:portable::lerp_u8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10913:portable::lerp_native\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10914:portable::lerp_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10915:portable::lerp_1_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10916:portable::just_return\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10917:portable::jump\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10918:portable::invsqrt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10919:portable::invsqrt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10920:portable::invsqrt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10921:portable::invsqrt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10922:portable::inverse_mat4\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10923:portable::inverse_mat3\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10924:portable::inverse_mat2\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10925:portable::init_lane_masks\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10926:portable::hue\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10927:portable::hsl_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10928:portable::hardlight\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10929:portable::gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10930:portable::gauss_a_to_rgba\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10931:portable::gather_rgf16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10932:portable::gather_rg88\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10933:portable::gather_rg1616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10934:portable::gather_f32\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10935:portable::gather_f16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10936:portable::gather_af16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10937:portable::gather_a8\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10938:portable::gather_a16\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10939:portable::gather_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10940:portable::gather_565\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10941:portable::gather_4444\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10942:portable::gather_16161616\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10943:portable::gather_10x6\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10944:portable::gather_1010102_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10945:portable::gather_1010102\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10946:portable::gather_10101010_xr\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10947:portable::gamma_\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10948:portable::force_opaque_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10949:portable::force_opaque\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10950:portable::floor_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10951:portable::floor_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10952:portable::floor_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10953:portable::floor_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10954:portable::exp_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10955:portable::exp2_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10956:portable::exclusion\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10957:portable::exchange_src\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10958:portable::evenly_spaced_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10959:portable::evenly_spaced_2_stop_gradient\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10960:portable::emboss\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10961:portable::dstover\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10962:portable::dstout\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10963:portable::dstin\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10964:portable::dstatop\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10965:portable::dot_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10966:portable::dot_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10967:portable::dot_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10968:portable::div_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10969:portable::div_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10970:portable::div_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10971:portable::div_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10972:portable::div_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10973:portable::div_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10974:portable::div_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10975:portable::div_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10976:portable::div_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10977:portable::div_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10978:portable::div_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10979:portable::div_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10980:portable::div_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10981:portable::div_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10982:portable::div_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10983:portable::dither\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10984:portable::difference\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10985:portable::decal_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10986:portable::decal_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10987:portable::decal_x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10988:portable::debug_r_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10989:portable::debug_g_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10990:portable::debug_b_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10991:portable::debug_b\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10992:portable::debug_a_255\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10993:portable::debug_a\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10994:portable::darken\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10995:portable::css_oklab_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10996:portable::css_oklab_gamut_map_to_linear_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10997:portable::css_lab_to_xyz\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10998:portable::css_hwb_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +10999:portable::css_hsl_to_srgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11000:portable::css_hcl_to_lab\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11001:portable::cos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11002:portable::copy_uniform\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11003:portable::copy_to_indirect_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11004:portable::copy_slot_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11005:portable::copy_slot_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11006:portable::copy_immutable_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11007:portable::copy_constant\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11008:portable::copy_4_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11009:portable::copy_4_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11010:portable::copy_4_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11011:portable::copy_4_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11012:portable::copy_3_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11013:portable::copy_3_slots_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11014:portable::copy_3_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11015:portable::copy_3_immutables_unmasked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11016:portable::copy_2_uniforms\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11017:portable::copy_2_slots_masked\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11018:portable::continue_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11019:portable::colordodge\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11020:portable::colorburn\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11021:portable::color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11022:portable::cmpne_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11023:portable::cmpne_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11024:portable::cmpne_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11025:portable::cmpne_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11026:portable::cmpne_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11027:portable::cmpne_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11028:portable::cmpne_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11029:portable::cmpne_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11030:portable::cmpne_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11031:portable::cmpne_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11032:portable::cmpne_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11033:portable::cmpne_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11034:portable::cmplt_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11035:portable::cmplt_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11036:portable::cmplt_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11037:portable::cmplt_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11038:portable::cmplt_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11039:portable::cmplt_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11040:portable::cmplt_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11041:portable::cmplt_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11042:portable::cmplt_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11043:portable::cmplt_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11044:portable::cmplt_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11045:portable::cmplt_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11046:portable::cmplt_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11047:portable::cmplt_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11048:portable::cmplt_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11049:portable::cmplt_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11050:portable::cmplt_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11051:portable::cmplt_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11052:portable::cmple_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11053:portable::cmple_n_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11054:portable::cmple_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11055:portable::cmple_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11056:portable::cmple_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11057:portable::cmple_imm_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11058:portable::cmple_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11059:portable::cmple_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11060:portable::cmple_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11061:portable::cmple_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11062:portable::cmple_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11063:portable::cmple_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11064:portable::cmple_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11065:portable::cmple_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11066:portable::cmple_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11067:portable::cmple_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11068:portable::cmple_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11069:portable::cmple_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11070:portable::cmpeq_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11071:portable::cmpeq_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11072:portable::cmpeq_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11073:portable::cmpeq_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11074:portable::cmpeq_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11075:portable::cmpeq_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11076:portable::cmpeq_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11077:portable::cmpeq_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11078:portable::cmpeq_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11079:portable::cmpeq_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11080:portable::cmpeq_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11081:portable::cmpeq_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11082:portable::clear\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11083:portable::clamp_x_and_y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11084:portable::clamp_x_1\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11085:portable::clamp_gamut\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11086:portable::clamp_a_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11087:portable::clamp_01\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11088:portable::ceil_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11089:portable::ceil_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11090:portable::ceil_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11091:portable::ceil_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11092:portable::cast_to_uint_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11093:portable::cast_to_uint_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11094:portable::cast_to_uint_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11095:portable::cast_to_uint_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11096:portable::cast_to_int_from_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11097:portable::cast_to_int_from_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11098:portable::cast_to_int_from_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11099:portable::cast_to_int_from_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11100:portable::cast_to_float_from_uint\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11101:portable::cast_to_float_from_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11102:portable::cast_to_float_from_4_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11103:portable::cast_to_float_from_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11104:portable::cast_to_float_from_3_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11105:portable::cast_to_float_from_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11106:portable::cast_to_float_from_2_uints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11107:portable::cast_to_float_from_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11108:portable::case_op\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11109:portable::callback\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11110:portable::byte_tables\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11111:portable::bt709_luminance_or_luma_to_rgb\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11112:portable::bt709_luminance_or_luma_to_alpha\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11113:portable::branch_if_no_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11114:portable::branch_if_no_active_lanes_eq\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11115:portable::branch_if_any_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11116:portable::branch_if_all_lanes_active\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11117:portable::blit_row_s32a_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +11118:portable::black_color\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11119:portable::bitwise_xor_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11120:portable::bitwise_xor_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11121:portable::bitwise_xor_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11122:portable::bitwise_xor_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11123:portable::bitwise_xor_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11124:portable::bitwise_xor_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11125:portable::bitwise_or_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11126:portable::bitwise_or_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11127:portable::bitwise_or_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11128:portable::bitwise_or_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11129:portable::bitwise_or_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11130:portable::bitwise_and_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11131:portable::bitwise_and_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11132:portable::bitwise_and_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11133:portable::bitwise_and_imm_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11134:portable::bitwise_and_imm_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11135:portable::bitwise_and_imm_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11136:portable::bitwise_and_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11137:portable::bitwise_and_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11138:portable::bitwise_and_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11139:portable::bilinear_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11140:portable::bilinear_py\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11141:portable::bilinear_px\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11142:portable::bilinear_ny\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11143:portable::bilinear_nx\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11144:portable::bicubic_setup\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11145:portable::bicubic_p3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11146:portable::bicubic_p3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11147:portable::bicubic_p1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11148:portable::bicubic_p1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11149:portable::bicubic_n3y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11150:portable::bicubic_n3x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11151:portable::bicubic_n1y\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11152:portable::bicubic_n1x\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11153:portable::bicubic_clamp_8888\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11154:portable::atan_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11155:portable::atan2_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11156:portable::asin_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11157:portable::alter_2pt_conical_unswap\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11158:portable::alter_2pt_conical_compensate_focal\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11159:portable::alpha_to_red_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11160:portable::alpha_to_red\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11161:portable::alpha_to_gray_dst\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11162:portable::alpha_to_gray\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11163:portable::add_n_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11164:portable::add_n_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11165:portable::add_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11166:portable::add_imm_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11167:portable::add_imm_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11168:portable::add_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11169:portable::add_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11170:portable::add_4_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11171:portable::add_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11172:portable::add_3_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11173:portable::add_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11174:portable::add_2_floats\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11175:portable::acos_float\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11176:portable::accumulate\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11177:portable::abs_int\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11178:portable::abs_4_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11179:portable::abs_3_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11180:portable::abs_2_ints\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11181:portable::RGBA_to_rgbA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +11182:portable::RGBA_to_bgrA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +11183:portable::RGBA_to_BGRA\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\29 +11184:portable::PQish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11185:portable::HLGish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11186:portable::HLGinvish\28portable::Params*\2c\20SkRasterPipelineStage*\2c\20float\2c\20float\2c\20float\2c\20float\29 +11187:pop_arg_long_double +11188:pointerTOCLookupFn\28UDataMemory\20const*\2c\20char\20const*\2c\20int*\2c\20UErrorCode*\29 +11189:png_read_filter_row_up +11190:png_read_filter_row_sub +11191:png_read_filter_row_paeth_multibyte_pixel +11192:png_read_filter_row_paeth_1byte_pixel +11193:png_read_filter_row_avg +11194:picture_getCullRect +11195:picture_dispose +11196:picture_approximateBytesUsed +11197:pictureRecorder_endRecording +11198:pictureRecorder_dispose +11199:pictureRecorder_create +11200:pictureRecorder_beginRecording +11201:path_transform +11202:path_setFillType +11203:path_reset +11204:path_relativeQuadraticBezierTo +11205:path_relativeMoveTo +11206:path_relativeLineTo +11207:path_relativeCubicTo +11208:path_relativeConicTo +11209:path_relativeArcToRotated +11210:path_moveTo +11211:path_getSvgString +11212:path_getFillType +11213:path_getBounds +11214:path_dispose +11215:path_create +11216:path_copy +11217:path_contains +11218:path_combine +11219:path_close +11220:path_arcToRotated +11221:path_arcToOval +11222:path_addRect +11223:path_addRRect +11224:path_addPolygon +11225:path_addPath +11226:path_addOval +11227:path_addArc +11228:paragraph_layout +11229:paragraph_getWordBoundary +11230:paragraph_getWidth +11231:paragraph_getUnresolvedCodePoints +11232:paragraph_getPositionForOffset +11233:paragraph_getMinIntrinsicWidth +11234:paragraph_getMaxIntrinsicWidth +11235:paragraph_getLongestLine +11236:paragraph_getLineNumberAt +11237:paragraph_getLineMetricsAtIndex +11238:paragraph_getLineCount +11239:paragraph_getIdeographicBaseline +11240:paragraph_getHeight +11241:paragraph_getGlyphInfoAt +11242:paragraph_getDidExceedMaxLines +11243:paragraph_getClosestGlyphInfoAtCoordinate +11244:paragraph_getBoxesForRange +11245:paragraph_getBoxesForPlaceholders +11246:paragraph_getAlphabeticBaseline +11247:paragraph_dispose +11248:paragraphStyle_setTextStyle +11249:paragraphStyle_setTextHeightBehavior +11250:paragraphStyle_setTextDirection +11251:paragraphStyle_setTextAlign +11252:paragraphStyle_setStrutStyle +11253:paragraphStyle_setMaxLines +11254:paragraphStyle_setHeight +11255:paragraphStyle_setEllipsis +11256:paragraphStyle_setApplyRoundingHack +11257:paragraphStyle_dispose +11258:paragraphStyle_create +11259:paragraphBuilder_setWordBreaksUtf16 +11260:paragraphBuilder_setLineBreaksUtf16 +11261:paragraphBuilder_setGraphemeBreaksUtf16 +11262:paragraphBuilder_pushStyle +11263:paragraphBuilder_pop +11264:paragraphBuilder_getUtf8Text +11265:paragraphBuilder_dispose +11266:paragraphBuilder_create +11267:paragraphBuilder_build +11268:paragraphBuilder_addText +11269:paragraphBuilder_addPlaceholder +11270:paint_setShader +11271:paint_setMaskFilter +11272:paint_setImageFilter +11273:paint_setColorFilter +11274:paint_dispose +11275:paint_create +11276:override_features_khmer\28hb_ot_shape_planner_t*\29 +11277:override_features_indic\28hb_ot_shape_planner_t*\29 +11278:override_features_hangul\28hb_ot_shape_planner_t*\29 +11279:offsetTOCLookupFn\28UDataMemory\20const*\2c\20char\20const*\2c\20int*\2c\20UErrorCode*\29 +11280:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29_17375 +11281:non-virtual\20thunk\20to\20std::__2::basic_stringstream\2c\20std::__2::allocator>::~basic_stringstream\28\29 +11282:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29_17277 +11283:non-virtual\20thunk\20to\20std::__2::basic_iostream>::~basic_iostream\28\29 +11284:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11473 +11285:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11472 +11286:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29_11470 +11287:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::~GaneshBackend\28\29 +11288:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::makeDevice\28SkImageInfo\20const&\29\20const +11289:non-virtual\20thunk\20to\20skif::\28anonymous\20namespace\29::GaneshBackend::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +11290:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29_12377 +11291:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::~SmallPathAtlasMgr\28\29 +11292:non-virtual\20thunk\20to\20skgpu::ganesh::SmallPathAtlasMgr::evict\28skgpu::PlotLocator\29 +11293:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29_11666 +11294:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::~AtlasPathRenderer\28\29 +11295:non-virtual\20thunk\20to\20skgpu::ganesh::AtlasPathRenderer::preFlush\28GrOnFlushResourceProvider*\29 +11296:non-virtual\20thunk\20to\20icu_74::UnicodeSet::~UnicodeSet\28\29_14846 +11297:non-virtual\20thunk\20to\20icu_74::UnicodeSet::~UnicodeSet\28\29 +11298:non-virtual\20thunk\20to\20icu_74::UnicodeSet::toPattern\28icu_74::UnicodeString&\2c\20signed\20char\29\20const +11299:non-virtual\20thunk\20to\20icu_74::UnicodeSet::matches\28icu_74::Replaceable\20const&\2c\20int&\2c\20int\2c\20signed\20char\29 +11300:non-virtual\20thunk\20to\20icu_74::UnicodeSet::matchesIndexValue\28unsigned\20char\29\20const +11301:non-virtual\20thunk\20to\20icu_74::UnicodeSet::addMatchSetTo\28icu_74::UnicodeSet&\29\20const +11302:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29_10697 +11303:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::~GrTextureRenderTargetProxy\28\29 +11304:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::onUninstantiatedGpuMemorySize\28\29\20const +11305:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::instantiate\28GrResourceProvider*\29 +11306:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::createSurface\28GrResourceProvider*\29\20const +11307:non-virtual\20thunk\20to\20GrTextureRenderTargetProxy::callbackDesc\28\29\20const +11308:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29_10339 +11309:non-virtual\20thunk\20to\20GrOpFlushState::~GrOpFlushState\28\29 +11310:non-virtual\20thunk\20to\20GrOpFlushState::writeView\28\29\20const +11311:non-virtual\20thunk\20to\20GrOpFlushState::usesMSAASurface\28\29\20const +11312:non-virtual\20thunk\20to\20GrOpFlushState::threadSafeCache\28\29\20const +11313:non-virtual\20thunk\20to\20GrOpFlushState::strikeCache\28\29\20const +11314:non-virtual\20thunk\20to\20GrOpFlushState::smallPathAtlasManager\28\29\20const +11315:non-virtual\20thunk\20to\20GrOpFlushState::sampledProxyArray\28\29 +11316:non-virtual\20thunk\20to\20GrOpFlushState::rtProxy\28\29\20const +11317:non-virtual\20thunk\20to\20GrOpFlushState::resourceProvider\28\29\20const +11318:non-virtual\20thunk\20to\20GrOpFlushState::renderPassBarriers\28\29\20const +11319:non-virtual\20thunk\20to\20GrOpFlushState::recordDraw\28GrGeometryProcessor\20const*\2c\20GrSimpleMesh\20const*\2c\20int\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPrimitiveType\29 +11320:non-virtual\20thunk\20to\20GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +11321:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndirectDraws\28int\29 +11322:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndices\28int\29 +11323:non-virtual\20thunk\20to\20GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +11324:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +11325:non-virtual\20thunk\20to\20GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +11326:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +11327:non-virtual\20thunk\20to\20GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +11328:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +11329:non-virtual\20thunk\20to\20GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +11330:non-virtual\20thunk\20to\20GrOpFlushState::dstProxyView\28\29\20const +11331:non-virtual\20thunk\20to\20GrOpFlushState::detachAppliedClip\28\29 +11332:non-virtual\20thunk\20to\20GrOpFlushState::colorLoadOp\28\29\20const +11333:non-virtual\20thunk\20to\20GrOpFlushState::caps\28\29\20const +11334:non-virtual\20thunk\20to\20GrOpFlushState::atlasManager\28\29\20const +11335:non-virtual\20thunk\20to\20GrOpFlushState::appliedClip\28\29\20const +11336:non-virtual\20thunk\20to\20GrGpuBuffer::unref\28\29\20const +11337:non-virtual\20thunk\20to\20GrGpuBuffer::ref\28\29\20const +11338:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29_13148 +11339:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::~GrGLTextureRenderTarget\28\29 +11340:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onSetLabel\28\29 +11341:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onRelease\28\29 +11342:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onGpuMemorySize\28\29\20const +11343:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::onAbandon\28\29 +11344:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +11345:non-virtual\20thunk\20to\20GrGLTextureRenderTarget::backendFormat\28\29\20const +11346:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29_11398 +11347:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +11348:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +11349:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded\28skgpu::BlendEquation\29 +11350:non-virtual\20thunk\20to\20GrGLSLFragmentShaderBuilder::dstColor\28\29 +11351:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29_12777 +11352:non-virtual\20thunk\20to\20GrGLBuffer::~GrGLBuffer\28\29 +11353:maskFilter_dispose +11354:maskFilter_createBlur +11355:locale_utility_init\28UErrorCode&\29 +11356:locale_cleanup\28\29 +11357:line_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +11358:line_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +11359:lineMetrics_getWidth +11360:lineMetrics_getUnscaledAscent +11361:lineMetrics_getLeft +11362:lineMetrics_getHeight +11363:lineMetrics_getDescent +11364:lineMetrics_getBaseline +11365:lineMetrics_getAscent +11366:lineMetrics_dispose +11367:lineMetrics_create +11368:lineBreakBuffer_free +11369:lineBreakBuffer_create +11370:lin_srgb_to_okhcl\28SkRGBA4f<\28SkAlphaType\292>\2c\20bool*\29 +11371:lcd_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +11372:layoutGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +11373:is_deleted_glyph\28hb_glyph_info_t\20const*\29 +11374:isRegionalIndicator\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11375:isPOSIX_xdigit\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11376:isPOSIX_print\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11377:isPOSIX_graph\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11378:isPOSIX_blank\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11379:isPOSIX_alnum\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11380:isNormInert\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11381:isMirrored\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11382:isJoinControl\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11383:isIDSUnaryOperator\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11384:isIDCompatMathContinue\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11385:isCanonSegmentStarter\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11386:isBidiControl\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11387:isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +11388:initial_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +11389:initFromResourceBundle\28UErrorCode&\29 +11390:image_ref +11391:image_dispose +11392:image_createFromTextureSource +11393:image_createFromPixels +11394:image_createFromPicture +11395:imageFilter_getFilterBounds +11396:imageFilter_dispose +11397:imageFilter_createMatrix +11398:imageFilter_createFromColorFilter +11399:imageFilter_createErode +11400:imageFilter_createDilate +11401:imageFilter_createBlur +11402:imageFilter_compose +11403:icu_74::uprv_normalizer2_cleanup\28\29 +11404:icu_74::uprv_loaded_normalizer2_cleanup\28\29 +11405:icu_74::unames_cleanup\28\29 +11406:icu_74::umtx_init\28\29 +11407:icu_74::sortComparator\28void\20const*\2c\20void\20const*\2c\20void\20const*\29 +11408:icu_74::segmentStarterMapper\28void\20const*\2c\20unsigned\20int\29 +11409:icu_74::rbbiInit\28\29 +11410:icu_74::loadCharNames\28UErrorCode&\29 +11411:icu_74::isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +11412:icu_74::initService\28\29 +11413:icu_74::initNoopSingleton\28UErrorCode&\29 +11414:icu_74::initNFCSingleton\28UErrorCode&\29 +11415:icu_74::initLanguageFactories\28UErrorCode&\29 +11416:icu_74::compareElementStrings\28void\20const*\2c\20void\20const*\2c\20void\20const*\29 +11417:icu_74::cacheDeleter\28void*\29 +11418:icu_74::\28anonymous\20namespace\29::versionFilter\28int\2c\20void*\29 +11419:icu_74::\28anonymous\20namespace\29::utf16_caseContextIterator\28void*\2c\20signed\20char\29 +11420:icu_74::\28anonymous\20namespace\29::scriptExtensionsFilter\28int\2c\20void*\29 +11421:icu_74::\28anonymous\20namespace\29::numericValueFilter\28int\2c\20void*\29 +11422:icu_74::\28anonymous\20namespace\29::loadKnownCanonicalized\28UErrorCode&\29 +11423:icu_74::\28anonymous\20namespace\29::intPropertyFilter\28int\2c\20void*\29 +11424:icu_74::\28anonymous\20namespace\29::initSingleton\28UErrorCode&\29 +11425:icu_74::\28anonymous\20namespace\29::generalCategoryMaskFilter\28int\2c\20void*\29 +11426:icu_74::\28anonymous\20namespace\29::emojiprops_cleanup\28\29 +11427:icu_74::\28anonymous\20namespace\29::cleanup\28\29 +11428:icu_74::\28anonymous\20namespace\29::cleanupKnownCanonicalized\28\29 +11429:icu_74::\28anonymous\20namespace\29::AliasReplacer::replace\28icu_74::Locale\20const&\2c\20icu_74::CharString&\2c\20UErrorCode&\29::$_1::__invoke\28void*\29 +11430:icu_74::\28anonymous\20namespace\29::AliasReplacer::AliasReplacer\28UErrorCode\29::'lambda'\28UElement\2c\20UElement\29::__invoke\28UElement\2c\20UElement\29 +11431:icu_74::\28anonymous\20namespace\29::AliasData::loadData\28UErrorCode&\29 +11432:icu_74::\28anonymous\20namespace\29::AliasData::cleanup\28\29 +11433:icu_74::XLikelySubtags::initLikelySubtags\28UErrorCode&\29 +11434:icu_74::UnicodeString::~UnicodeString\28\29_14909 +11435:icu_74::UnicodeString::handleReplaceBetween\28int\2c\20int\2c\20icu_74::UnicodeString\20const&\29 +11436:icu_74::UnicodeString::getLength\28\29\20const +11437:icu_74::UnicodeString::getDynamicClassID\28\29\20const +11438:icu_74::UnicodeString::getCharAt\28int\29\20const +11439:icu_74::UnicodeString::getChar32At\28int\29\20const +11440:icu_74::UnicodeString::extractBetween\28int\2c\20int\2c\20icu_74::UnicodeString&\29\20const +11441:icu_74::UnicodeString::copy\28int\2c\20int\2c\20int\29 +11442:icu_74::UnicodeString::clone\28\29\20const +11443:icu_74::UnicodeSet::getDynamicClassID\28\29\20const +11444:icu_74::UnicodeSet::addMatchSetTo\28icu_74::UnicodeSet&\29\20const +11445:icu_74::UnhandledEngine::~UnhandledEngine\28\29_13867 +11446:icu_74::UnhandledEngine::handles\28int\2c\20char\20const*\29\20const +11447:icu_74::UnhandledEngine::handleCharacter\28int\29 +11448:icu_74::UnhandledEngine::findBreaks\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +11449:icu_74::UVector::getDynamicClassID\28\29\20const +11450:icu_74::UVector32::~UVector32\28\29_15072 +11451:icu_74::UVector32::getDynamicClassID\28\29\20const +11452:icu_74::UStack::getDynamicClassID\28\29\20const +11453:icu_74::UCharsTrieBuilder::~UCharsTrieBuilder\28\29_14688 +11454:icu_74::UCharsTrieBuilder::write\28int\29 +11455:icu_74::UCharsTrieBuilder::writeValueAndType\28signed\20char\2c\20int\2c\20int\29 +11456:icu_74::UCharsTrieBuilder::writeValueAndFinal\28int\2c\20signed\20char\29 +11457:icu_74::UCharsTrieBuilder::writeElementUnits\28int\2c\20int\2c\20int\29 +11458:icu_74::UCharsTrieBuilder::writeDeltaTo\28int\29 +11459:icu_74::UCharsTrieBuilder::skipElementsBySomeUnits\28int\2c\20int\2c\20int\29\20const +11460:icu_74::UCharsTrieBuilder::indexOfElementWithNextUnit\28int\2c\20int\2c\20char16_t\29\20const +11461:icu_74::UCharsTrieBuilder::getMinLinearMatch\28\29\20const +11462:icu_74::UCharsTrieBuilder::getLimitOfLinearMatch\28int\2c\20int\2c\20int\29\20const +11463:icu_74::UCharsTrieBuilder::getElementValue\28int\29\20const +11464:icu_74::UCharsTrieBuilder::getElementUnit\28int\2c\20int\29\20const +11465:icu_74::UCharsTrieBuilder::getElementStringLength\28int\29\20const +11466:icu_74::UCharsTrieBuilder::createLinearMatchNode\28int\2c\20int\2c\20int\2c\20icu_74::StringTrieBuilder::Node*\29\20const +11467:icu_74::UCharsTrieBuilder::countElementUnits\28int\2c\20int\2c\20int\29\20const +11468:icu_74::UCharsTrieBuilder::UCTLinearMatchNode::write\28icu_74::StringTrieBuilder&\29 +11469:icu_74::UCharsTrieBuilder::UCTLinearMatchNode::operator==\28icu_74::StringTrieBuilder::Node\20const&\29\20const +11470:icu_74::UCharsDictionaryMatcher::~UCharsDictionaryMatcher\28\29_14067 +11471:icu_74::UCharsDictionaryMatcher::matches\28UText*\2c\20int\2c\20int\2c\20int*\2c\20int*\2c\20int*\2c\20int*\29\20const +11472:icu_74::UCharCharacterIterator::setIndex\28int\29 +11473:icu_74::UCharCharacterIterator::setIndex32\28int\29 +11474:icu_74::UCharCharacterIterator::previous\28\29 +11475:icu_74::UCharCharacterIterator::previous32\28\29 +11476:icu_74::UCharCharacterIterator::operator==\28icu_74::ForwardCharacterIterator\20const&\29\20const +11477:icu_74::UCharCharacterIterator::next\28\29 +11478:icu_74::UCharCharacterIterator::nextPostInc\28\29 +11479:icu_74::UCharCharacterIterator::next32\28\29 +11480:icu_74::UCharCharacterIterator::next32PostInc\28\29 +11481:icu_74::UCharCharacterIterator::move\28int\2c\20icu_74::CharacterIterator::EOrigin\29 +11482:icu_74::UCharCharacterIterator::move32\28int\2c\20icu_74::CharacterIterator::EOrigin\29 +11483:icu_74::UCharCharacterIterator::last\28\29 +11484:icu_74::UCharCharacterIterator::last32\28\29 +11485:icu_74::UCharCharacterIterator::hashCode\28\29\20const +11486:icu_74::UCharCharacterIterator::hasPrevious\28\29 +11487:icu_74::UCharCharacterIterator::hasNext\28\29 +11488:icu_74::UCharCharacterIterator::getText\28icu_74::UnicodeString&\29 +11489:icu_74::UCharCharacterIterator::getDynamicClassID\28\29\20const +11490:icu_74::UCharCharacterIterator::first\28\29 +11491:icu_74::UCharCharacterIterator::firstPostInc\28\29 +11492:icu_74::UCharCharacterIterator::first32\28\29 +11493:icu_74::UCharCharacterIterator::first32PostInc\28\29 +11494:icu_74::UCharCharacterIterator::current\28\29\20const +11495:icu_74::UCharCharacterIterator::current32\28\29\20const +11496:icu_74::UCharCharacterIterator::clone\28\29\20const +11497:icu_74::ThaiBreakEngine::~ThaiBreakEngine\28\29_14036 +11498:icu_74::ThaiBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +11499:icu_74::StringTrieBuilder::LinearMatchNode::markRightEdgesFirst\28int\29 +11500:icu_74::StringEnumeration::unext\28int*\2c\20UErrorCode&\29 +11501:icu_74::StringEnumeration::snext\28UErrorCode&\29 +11502:icu_74::StringEnumeration::operator==\28icu_74::StringEnumeration\20const&\29\20const +11503:icu_74::StringEnumeration::operator!=\28icu_74::StringEnumeration\20const&\29\20const +11504:icu_74::StringEnumeration::next\28int*\2c\20UErrorCode&\29 +11505:icu_74::SimpleLocaleKeyFactory::~SimpleLocaleKeyFactory\28\29_14635 +11506:icu_74::SimpleLocaleKeyFactory::updateVisibleIDs\28icu_74::Hashtable&\2c\20UErrorCode&\29\20const +11507:icu_74::SimpleLocaleKeyFactory::getDynamicClassID\28\29\20const +11508:icu_74::SimpleLocaleKeyFactory::create\28icu_74::ICUServiceKey\20const&\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +11509:icu_74::SimpleFilteredSentenceBreakIterator::~SimpleFilteredSentenceBreakIterator\28\29_14090 +11510:icu_74::SimpleFilteredSentenceBreakIterator::setText\28icu_74::UnicodeString\20const&\29 +11511:icu_74::SimpleFilteredSentenceBreakIterator::setText\28UText*\2c\20UErrorCode&\29 +11512:icu_74::SimpleFilteredSentenceBreakIterator::refreshInputText\28UText*\2c\20UErrorCode&\29 +11513:icu_74::SimpleFilteredSentenceBreakIterator::previous\28\29 +11514:icu_74::SimpleFilteredSentenceBreakIterator::preceding\28int\29 +11515:icu_74::SimpleFilteredSentenceBreakIterator::next\28int\29 +11516:icu_74::SimpleFilteredSentenceBreakIterator::next\28\29 +11517:icu_74::SimpleFilteredSentenceBreakIterator::last\28\29 +11518:icu_74::SimpleFilteredSentenceBreakIterator::isBoundary\28int\29 +11519:icu_74::SimpleFilteredSentenceBreakIterator::getUText\28UText*\2c\20UErrorCode&\29\20const +11520:icu_74::SimpleFilteredSentenceBreakIterator::getText\28\29\20const +11521:icu_74::SimpleFilteredSentenceBreakIterator::following\28int\29 +11522:icu_74::SimpleFilteredSentenceBreakIterator::first\28\29 +11523:icu_74::SimpleFilteredSentenceBreakIterator::current\28\29\20const +11524:icu_74::SimpleFilteredSentenceBreakIterator::createBufferClone\28void*\2c\20int&\2c\20UErrorCode&\29 +11525:icu_74::SimpleFilteredSentenceBreakIterator::clone\28\29\20const +11526:icu_74::SimpleFilteredSentenceBreakIterator::adoptText\28icu_74::CharacterIterator*\29 +11527:icu_74::SimpleFilteredSentenceBreakData::~SimpleFilteredSentenceBreakData\28\29_14088 +11528:icu_74::SimpleFilteredBreakIteratorBuilder::~SimpleFilteredBreakIteratorBuilder\28\29_14116 +11529:icu_74::SimpleFilteredBreakIteratorBuilder::unsuppressBreakAfter\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +11530:icu_74::SimpleFilteredBreakIteratorBuilder::suppressBreakAfter\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29 +11531:icu_74::SimpleFilteredBreakIteratorBuilder::build\28icu_74::BreakIterator*\2c\20UErrorCode&\29 +11532:icu_74::SimpleFactory::~SimpleFactory\28\29_14559 +11533:icu_74::SimpleFactory::updateVisibleIDs\28icu_74::Hashtable&\2c\20UErrorCode&\29\20const +11534:icu_74::SimpleFactory::getDynamicClassID\28\29\20const +11535:icu_74::SimpleFactory::getDisplayName\28icu_74::UnicodeString\20const&\2c\20icu_74::Locale\20const&\2c\20icu_74::UnicodeString&\29\20const +11536:icu_74::SimpleFactory::create\28icu_74::ICUServiceKey\20const&\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +11537:icu_74::ServiceEnumeration::~ServiceEnumeration\28\29_14619 +11538:icu_74::ServiceEnumeration::snext\28UErrorCode&\29 +11539:icu_74::ServiceEnumeration::reset\28UErrorCode&\29 +11540:icu_74::ServiceEnumeration::getDynamicClassID\28\29\20const +11541:icu_74::ServiceEnumeration::count\28UErrorCode&\29\20const +11542:icu_74::ServiceEnumeration::clone\28\29\20const +11543:icu_74::RuleBasedBreakIterator::~RuleBasedBreakIterator\28\29_14506 +11544:icu_74::RuleBasedBreakIterator::setText\28icu_74::UnicodeString\20const&\29 +11545:icu_74::RuleBasedBreakIterator::setText\28UText*\2c\20UErrorCode&\29 +11546:icu_74::RuleBasedBreakIterator::refreshInputText\28UText*\2c\20UErrorCode&\29 +11547:icu_74::RuleBasedBreakIterator::previous\28\29 +11548:icu_74::RuleBasedBreakIterator::preceding\28int\29 +11549:icu_74::RuleBasedBreakIterator::operator==\28icu_74::BreakIterator\20const&\29\20const +11550:icu_74::RuleBasedBreakIterator::next\28int\29 +11551:icu_74::RuleBasedBreakIterator::next\28\29 +11552:icu_74::RuleBasedBreakIterator::last\28\29 +11553:icu_74::RuleBasedBreakIterator::isBoundary\28int\29 +11554:icu_74::RuleBasedBreakIterator::hashCode\28\29\20const +11555:icu_74::RuleBasedBreakIterator::getUText\28UText*\2c\20UErrorCode&\29\20const +11556:icu_74::RuleBasedBreakIterator::getText\28\29\20const +11557:icu_74::RuleBasedBreakIterator::getRules\28\29\20const +11558:icu_74::RuleBasedBreakIterator::getRuleStatus\28\29\20const +11559:icu_74::RuleBasedBreakIterator::getRuleStatusVec\28int*\2c\20int\2c\20UErrorCode&\29 +11560:icu_74::RuleBasedBreakIterator::getDynamicClassID\28\29\20const +11561:icu_74::RuleBasedBreakIterator::getBinaryRules\28unsigned\20int&\29 +11562:icu_74::RuleBasedBreakIterator::following\28int\29 +11563:icu_74::RuleBasedBreakIterator::first\28\29 +11564:icu_74::RuleBasedBreakIterator::current\28\29\20const +11565:icu_74::RuleBasedBreakIterator::createBufferClone\28void*\2c\20int&\2c\20UErrorCode&\29 +11566:icu_74::RuleBasedBreakIterator::clone\28\29\20const +11567:icu_74::RuleBasedBreakIterator::adoptText\28icu_74::CharacterIterator*\29 +11568:icu_74::RuleBasedBreakIterator::BreakCache::~BreakCache\28\29_14490 +11569:icu_74::ResourceDataValue::~ResourceDataValue\28\29_15009 +11570:icu_74::ResourceDataValue::~ResourceDataValue\28\29 +11571:icu_74::ResourceDataValue::isNoInheritanceMarker\28\29\20const +11572:icu_74::ResourceDataValue::getUInt\28UErrorCode&\29\20const +11573:icu_74::ResourceDataValue::getType\28\29\20const +11574:icu_74::ResourceDataValue::getStringOrFirstOfArray\28UErrorCode&\29\20const +11575:icu_74::ResourceDataValue::getStringArray\28icu_74::UnicodeString*\2c\20int\2c\20UErrorCode&\29\20const +11576:icu_74::ResourceDataValue::getStringArrayOrStringAsArray\28icu_74::UnicodeString*\2c\20int\2c\20UErrorCode&\29\20const +11577:icu_74::ResourceDataValue::getInt\28UErrorCode&\29\20const +11578:icu_74::ResourceDataValue::getAliasString\28int&\2c\20UErrorCode&\29\20const +11579:icu_74::ResourceBundle::~ResourceBundle\28\29_14539 +11580:icu_74::ResourceBundle::getDynamicClassID\28\29\20const +11581:icu_74::ParsePosition::getDynamicClassID\28\29\20const +11582:icu_74::Normalizer2WithImpl::spanQuickCheckYes\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +11583:icu_74::Normalizer2WithImpl::quickCheck\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +11584:icu_74::Normalizer2WithImpl::normalize\28icu_74::UnicodeString\20const&\2c\20icu_74::UnicodeString&\2c\20UErrorCode&\29\20const +11585:icu_74::Normalizer2WithImpl::normalizeSecondAndAppend\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +11586:icu_74::Normalizer2WithImpl::getRawDecomposition\28int\2c\20icu_74::UnicodeString&\29\20const +11587:icu_74::Normalizer2WithImpl::getDecomposition\28int\2c\20icu_74::UnicodeString&\29\20const +11588:icu_74::Normalizer2WithImpl::getCombiningClass\28int\29\20const +11589:icu_74::Normalizer2WithImpl::composePair\28int\2c\20int\29\20const +11590:icu_74::Normalizer2WithImpl::append\28icu_74::UnicodeString&\2c\20icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +11591:icu_74::Normalizer2Impl::~Normalizer2Impl\28\29_14437 +11592:icu_74::Normalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +11593:icu_74::Normalizer2::isNormalizedUTF8\28icu_74::StringPiece\2c\20UErrorCode&\29\20const +11594:icu_74::NoopNormalizer2::spanQuickCheckYes\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +11595:icu_74::NoopNormalizer2::normalize\28icu_74::UnicodeString\20const&\2c\20icu_74::UnicodeString&\2c\20UErrorCode&\29\20const +11596:icu_74::NoopNormalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +11597:icu_74::MlBreakEngine::~MlBreakEngine\28\29_14337 +11598:icu_74::LocaleKeyFactory::~LocaleKeyFactory\28\29_14601 +11599:icu_74::LocaleKeyFactory::updateVisibleIDs\28icu_74::Hashtable&\2c\20UErrorCode&\29\20const +11600:icu_74::LocaleKeyFactory::handlesKey\28icu_74::ICUServiceKey\20const&\2c\20UErrorCode&\29\20const +11601:icu_74::LocaleKeyFactory::getDynamicClassID\28\29\20const +11602:icu_74::LocaleKeyFactory::getDisplayName\28icu_74::UnicodeString\20const&\2c\20icu_74::Locale\20const&\2c\20icu_74::UnicodeString&\29\20const +11603:icu_74::LocaleKeyFactory::create\28icu_74::ICUServiceKey\20const&\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +11604:icu_74::LocaleKey::~LocaleKey\28\29_14588 +11605:icu_74::LocaleKey::prefix\28icu_74::UnicodeString&\29\20const +11606:icu_74::LocaleKey::isFallbackOf\28icu_74::UnicodeString\20const&\29\20const +11607:icu_74::LocaleKey::getDynamicClassID\28\29\20const +11608:icu_74::LocaleKey::fallback\28\29 +11609:icu_74::LocaleKey::currentLocale\28icu_74::Locale&\29\20const +11610:icu_74::LocaleKey::currentID\28icu_74::UnicodeString&\29\20const +11611:icu_74::LocaleKey::currentDescriptor\28icu_74::UnicodeString&\29\20const +11612:icu_74::LocaleKey::canonicalLocale\28icu_74::Locale&\29\20const +11613:icu_74::LocaleKey::canonicalID\28icu_74::UnicodeString&\29\20const +11614:icu_74::LocaleBuilder::~LocaleBuilder\28\29_14136 +11615:icu_74::Locale::~Locale\28\29_14278 +11616:icu_74::Locale::getDynamicClassID\28\29\20const +11617:icu_74::LoadedNormalizer2Impl::~LoadedNormalizer2Impl\28\29_14129 +11618:icu_74::LoadedNormalizer2Impl::isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +11619:icu_74::LaoBreakEngine::~LaoBreakEngine\28\29_14041 +11620:icu_74::LSTMBreakEngine::~LSTMBreakEngine\28\29_14334 +11621:icu_74::LSTMBreakEngine::name\28\29\20const +11622:icu_74::LSTMBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +11623:icu_74::KhmerBreakEngine::~KhmerBreakEngine\28\29_14047 +11624:icu_74::KhmerBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +11625:icu_74::KeywordEnumeration::~KeywordEnumeration\28\29_14270 +11626:icu_74::KeywordEnumeration::snext\28UErrorCode&\29 +11627:icu_74::KeywordEnumeration::reset\28UErrorCode&\29 +11628:icu_74::KeywordEnumeration::next\28int*\2c\20UErrorCode&\29 +11629:icu_74::KeywordEnumeration::getDynamicClassID\28\29\20const +11630:icu_74::KeywordEnumeration::count\28UErrorCode&\29\20const +11631:icu_74::KeywordEnumeration::clone\28\29\20const +11632:icu_74::ICUServiceKey::~ICUServiceKey\28\29_14549 +11633:icu_74::ICUServiceKey::isFallbackOf\28icu_74::UnicodeString\20const&\29\20const +11634:icu_74::ICUServiceKey::getDynamicClassID\28\29\20const +11635:icu_74::ICUServiceKey::currentID\28icu_74::UnicodeString&\29\20const +11636:icu_74::ICUServiceKey::currentDescriptor\28icu_74::UnicodeString&\29\20const +11637:icu_74::ICUServiceKey::canonicalID\28icu_74::UnicodeString&\29\20const +11638:icu_74::ICUService::unregister\28void\20const*\2c\20UErrorCode&\29 +11639:icu_74::ICUService::reset\28\29 +11640:icu_74::ICUService::registerInstance\28icu_74::UObject*\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29 +11641:icu_74::ICUService::reInitializeFactories\28\29 +11642:icu_74::ICUService::notifyListener\28icu_74::EventListener&\29\20const +11643:icu_74::ICUService::isDefault\28\29\20const +11644:icu_74::ICUService::getKey\28icu_74::ICUServiceKey&\2c\20icu_74::UnicodeString*\2c\20UErrorCode&\29\20const +11645:icu_74::ICUService::createSimpleFactory\28icu_74::UObject*\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29 +11646:icu_74::ICUService::createKey\28icu_74::UnicodeString\20const*\2c\20UErrorCode&\29\20const +11647:icu_74::ICUService::clearCaches\28\29 +11648:icu_74::ICUService::acceptsListener\28icu_74::EventListener\20const&\29\20const +11649:icu_74::ICUResourceBundleFactory::handleCreate\28icu_74::Locale\20const&\2c\20int\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +11650:icu_74::ICUResourceBundleFactory::getSupportedIDs\28UErrorCode&\29\20const +11651:icu_74::ICUResourceBundleFactory::getDynamicClassID\28\29\20const +11652:icu_74::ICUNotifier::removeListener\28icu_74::EventListener\20const*\2c\20UErrorCode&\29 +11653:icu_74::ICUNotifier::notifyChanged\28\29 +11654:icu_74::ICUNotifier::addListener\28icu_74::EventListener\20const*\2c\20UErrorCode&\29 +11655:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::UnicodeString\20const&\2c\20signed\20char\2c\20UErrorCode&\29 +11656:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::Locale\20const&\2c\20int\2c\20int\2c\20UErrorCode&\29 +11657:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::Locale\20const&\2c\20int\2c\20UErrorCode&\29 +11658:icu_74::ICULocaleService::registerInstance\28icu_74::UObject*\2c\20icu_74::Locale\20const&\2c\20UErrorCode&\29 +11659:icu_74::ICULocaleService::getAvailableLocales\28\29\20const +11660:icu_74::ICULocaleService::createKey\28icu_74::UnicodeString\20const*\2c\20int\2c\20UErrorCode&\29\20const +11661:icu_74::ICULocaleService::createKey\28icu_74::UnicodeString\20const*\2c\20UErrorCode&\29\20const +11662:icu_74::ICULanguageBreakFactory::~ICULanguageBreakFactory\28\29_13880 +11663:icu_74::ICULanguageBreakFactory::loadEngineFor\28int\2c\20char\20const*\29 +11664:icu_74::ICULanguageBreakFactory::loadDictionaryMatcherFor\28UScriptCode\29 +11665:icu_74::ICULanguageBreakFactory::getEngineFor\28int\2c\20char\20const*\29 +11666:icu_74::ICULanguageBreakFactory::addExternalEngine\28icu_74::ExternalBreakEngine*\2c\20UErrorCode&\29 +11667:icu_74::ICUBreakIteratorService::~ICUBreakIteratorService\28\29_13963 +11668:icu_74::ICUBreakIteratorService::~ICUBreakIteratorService\28\29 +11669:icu_74::ICUBreakIteratorService::isDefault\28\29\20const +11670:icu_74::ICUBreakIteratorService::handleDefault\28icu_74::ICUServiceKey\20const&\2c\20icu_74::UnicodeString*\2c\20UErrorCode&\29\20const +11671:icu_74::ICUBreakIteratorService::cloneInstance\28icu_74::UObject*\29\20const +11672:icu_74::ICUBreakIteratorFactory::~ICUBreakIteratorFactory\28\29 +11673:icu_74::ICUBreakIteratorFactory::handleCreate\28icu_74::Locale\20const&\2c\20int\2c\20icu_74::ICUService\20const*\2c\20UErrorCode&\29\20const +11674:icu_74::GraphemeClusterVectorizer::vectorize\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20icu_74::UVector32&\2c\20UErrorCode&\29\20const +11675:icu_74::FCDNormalizer2::spanQuickCheckYes\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29\20const +11676:icu_74::FCDNormalizer2::normalize\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +11677:icu_74::FCDNormalizer2::normalizeAndAppend\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20icu_74::UnicodeString&\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +11678:icu_74::FCDNormalizer2::isInert\28int\29\20const +11679:icu_74::EmojiProps::isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +11680:icu_74::DictionaryBreakEngine::handles\28int\2c\20char\20const*\29\20const +11681:icu_74::DictionaryBreakEngine::findBreaks\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +11682:icu_74::DecomposeNormalizer2::spanQuickCheckYes\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29\20const +11683:icu_74::DecomposeNormalizer2::normalize\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +11684:icu_74::DecomposeNormalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +11685:icu_74::DecomposeNormalizer2::normalizeAndAppend\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20icu_74::UnicodeString&\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +11686:icu_74::DecomposeNormalizer2::isNormalizedUTF8\28icu_74::StringPiece\2c\20UErrorCode&\29\20const +11687:icu_74::DecomposeNormalizer2::isInert\28int\29\20const +11688:icu_74::DecomposeNormalizer2::getQuickCheck\28int\29\20const +11689:icu_74::ConstArray2D::get\28int\2c\20int\29\20const +11690:icu_74::ConstArray1D::get\28int\29\20const +11691:icu_74::ComposeNormalizer2::spanQuickCheckYes\28char16_t\20const*\2c\20char16_t\20const*\2c\20UErrorCode&\29\20const +11692:icu_74::ComposeNormalizer2::quickCheck\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +11693:icu_74::ComposeNormalizer2::normalize\28char16_t\20const*\2c\20char16_t\20const*\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +11694:icu_74::ComposeNormalizer2::normalizeUTF8\28unsigned\20int\2c\20icu_74::StringPiece\2c\20icu_74::ByteSink&\2c\20icu_74::Edits*\2c\20UErrorCode&\29\20const +11695:icu_74::ComposeNormalizer2::normalizeAndAppend\28char16_t\20const*\2c\20char16_t\20const*\2c\20signed\20char\2c\20icu_74::UnicodeString&\2c\20icu_74::ReorderingBuffer&\2c\20UErrorCode&\29\20const +11696:icu_74::ComposeNormalizer2::isNormalized\28icu_74::UnicodeString\20const&\2c\20UErrorCode&\29\20const +11697:icu_74::ComposeNormalizer2::isNormalizedUTF8\28icu_74::StringPiece\2c\20UErrorCode&\29\20const +11698:icu_74::ComposeNormalizer2::isInert\28int\29\20const +11699:icu_74::ComposeNormalizer2::hasBoundaryBefore\28int\29\20const +11700:icu_74::ComposeNormalizer2::hasBoundaryAfter\28int\29\20const +11701:icu_74::ComposeNormalizer2::getQuickCheck\28int\29\20const +11702:icu_74::CodePointsVectorizer::vectorize\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20icu_74::UVector32&\2c\20UErrorCode&\29\20const +11703:icu_74::CjkBreakEngine::~CjkBreakEngine\28\29_14053 +11704:icu_74::CjkBreakEngine::divideUpDictionaryRange\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +11705:icu_74::CheckedArrayByteSink::Reset\28\29 +11706:icu_74::CheckedArrayByteSink::GetAppendBuffer\28int\2c\20int\2c\20char*\2c\20int\2c\20int*\29 +11707:icu_74::CheckedArrayByteSink::Append\28char\20const*\2c\20int\29 +11708:icu_74::CharStringByteSink::GetAppendBuffer\28int\2c\20int\2c\20char*\2c\20int\2c\20int*\29 +11709:icu_74::CharStringByteSink::Append\28char\20const*\2c\20int\29 +11710:icu_74::BytesDictionaryMatcher::~BytesDictionaryMatcher\28\29_14073 +11711:icu_74::BytesDictionaryMatcher::matches\28UText*\2c\20int\2c\20int\2c\20int*\2c\20int*\2c\20int*\2c\20int*\29\20const +11712:icu_74::BurmeseBreakEngine::~BurmeseBreakEngine\28\29_14044 +11713:icu_74::BreakIterator::getRuleStatusVec\28int*\2c\20int\2c\20UErrorCode&\29 +11714:icu_74::BreakEngineWrapper::~BreakEngineWrapper\28\29_13927 +11715:icu_74::BreakEngineWrapper::handles\28int\2c\20char\20const*\29\20const +11716:icu_74::BreakEngineWrapper::findBreaks\28UText*\2c\20int\2c\20int\2c\20icu_74::UVector32&\2c\20signed\20char\2c\20UErrorCode&\29\20const +11717:icu_74::BMPSet::contains\28int\29\20const +11718:icu_74::Array1D::~Array1D\28\29_14310 +11719:icu_74::Array1D::get\28int\29\20const +11720:hit_compare_y\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +11721:hit_compare_x\28SkOpRayHit\20const*\2c\20SkOpRayHit\20const*\29 +11722:hb_unicode_script_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +11723:hb_unicode_general_category_nil\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +11724:hb_ucd_script\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +11725:hb_ucd_mirroring\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +11726:hb_ucd_general_category\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +11727:hb_ucd_decompose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +11728:hb_ucd_compose\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +11729:hb_ucd_combining_class\28hb_unicode_funcs_t*\2c\20unsigned\20int\2c\20void*\29 +11730:hb_syllabic_clear_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +11731:hb_paint_sweep_gradient_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11732:hb_paint_push_transform_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11733:hb_paint_push_clip_rectangle_nil\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11734:hb_paint_image_nil\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +11735:hb_paint_extents_push_transform\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11736:hb_paint_extents_push_group\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +11737:hb_paint_extents_push_clip_rectangle\28hb_paint_funcs_t*\2c\20void*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11738:hb_paint_extents_push_clip_glyph\28hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_font_t*\2c\20void*\29 +11739:hb_paint_extents_pop_transform\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +11740:hb_paint_extents_pop_group\28hb_paint_funcs_t*\2c\20void*\2c\20hb_paint_composite_mode_t\2c\20void*\29 +11741:hb_paint_extents_pop_clip\28hb_paint_funcs_t*\2c\20void*\2c\20void*\29 +11742:hb_paint_extents_paint_sweep_gradient\28hb_paint_funcs_t*\2c\20void*\2c\20hb_color_line_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11743:hb_paint_extents_paint_image\28hb_paint_funcs_t*\2c\20void*\2c\20hb_blob_t*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\2c\20hb_glyph_extents_t*\2c\20void*\29 +11744:hb_paint_extents_paint_color\28hb_paint_funcs_t*\2c\20void*\2c\20int\2c\20unsigned\20int\2c\20void*\29 +11745:hb_outline_recording_pen_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11746:hb_outline_recording_pen_move_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +11747:hb_outline_recording_pen_line_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +11748:hb_outline_recording_pen_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11749:hb_outline_recording_pen_close_path\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +11750:hb_ot_shape_normalize_context_t::decompose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +11751:hb_ot_shape_normalize_context_t::compose_unicode\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +11752:hb_ot_paint_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +11753:hb_ot_map_t::lookup_map_t::cmp\28void\20const*\2c\20void\20const*\29 +11754:hb_ot_map_t::feature_map_t::cmp\28void\20const*\2c\20void\20const*\29 +11755:hb_ot_map_builder_t::feature_info_t::cmp\28void\20const*\2c\20void\20const*\29 +11756:hb_ot_get_variation_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +11757:hb_ot_get_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +11758:hb_ot_get_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +11759:hb_ot_get_glyph_v_origin\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +11760:hb_ot_get_glyph_v_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +11761:hb_ot_get_glyph_name\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +11762:hb_ot_get_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +11763:hb_ot_get_glyph_from_name\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +11764:hb_ot_get_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +11765:hb_ot_get_font_v_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +11766:hb_ot_get_font_h_extents\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +11767:hb_ot_draw_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +11768:hb_font_paint_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +11769:hb_font_paint_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_paint_funcs_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +11770:hb_font_get_variation_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +11771:hb_font_get_nominal_glyphs_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +11772:hb_font_get_nominal_glyph_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +11773:hb_font_get_nominal_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +11774:hb_font_get_glyph_v_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +11775:hb_font_get_glyph_v_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +11776:hb_font_get_glyph_v_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +11777:hb_font_get_glyph_v_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +11778:hb_font_get_glyph_v_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +11779:hb_font_get_glyph_v_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +11780:hb_font_get_glyph_name_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +11781:hb_font_get_glyph_name_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20char*\2c\20unsigned\20int\2c\20void*\29 +11782:hb_font_get_glyph_h_origin_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +11783:hb_font_get_glyph_h_origin_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +11784:hb_font_get_glyph_h_kerning_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20void*\29 +11785:hb_font_get_glyph_h_advances_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +11786:hb_font_get_glyph_h_advance_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +11787:hb_font_get_glyph_h_advance_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +11788:hb_font_get_glyph_from_name_default\28hb_font_t*\2c\20void*\2c\20char\20const*\2c\20int\2c\20unsigned\20int*\2c\20void*\29 +11789:hb_font_get_glyph_extents_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +11790:hb_font_get_glyph_extents_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +11791:hb_font_get_glyph_contour_point_nil\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +11792:hb_font_get_glyph_contour_point_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20int*\2c\20int*\2c\20void*\29 +11793:hb_font_get_font_v_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +11794:hb_font_get_font_h_extents_default\28hb_font_t*\2c\20void*\2c\20hb_font_extents_t*\2c\20void*\29 +11795:hb_font_draw_glyph_default\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_draw_funcs_t*\2c\20void*\2c\20void*\29 +11796:hb_draw_quadratic_to_nil\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11797:hb_draw_quadratic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11798:hb_draw_move_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +11799:hb_draw_line_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20void*\29 +11800:hb_draw_extents_quadratic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11801:hb_draw_extents_cubic_to\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11802:hb_draw_cubic_to_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20void*\29 +11803:hb_draw_close_path_default\28hb_draw_funcs_t*\2c\20void*\2c\20hb_draw_state_t*\2c\20void*\29 +11804:hb_buffer_t::_cluster_group_func\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29 +11805:hb_aat_map_builder_t::feature_event_t::cmp\28void\20const*\2c\20void\20const*\29 +11806:hashEntry\28UElement\29 +11807:hasFullCompositionExclusion\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11808:hasEmojiProperty\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +11809:gray_raster_render +11810:gray_raster_new +11811:gray_raster_done +11812:gray_move_to +11813:gray_line_to +11814:gray_cubic_to +11815:gray_conic_to +11816:get_sfnt_table +11817:getVo\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11818:getTrailCombiningClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11819:getNumericType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11820:getNormQuickCheck\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11821:getLeadCombiningClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11822:getJoiningType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11823:getJoiningGroup\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11824:getInSC\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11825:getInPC\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11826:getHangulSyllableType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11827:getGeneralCategory\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11828:getCombiningClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11829:getBiDiPairedBracketType\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11830:getBiDiClass\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +11831:ft_smooth_transform +11832:ft_smooth_set_mode +11833:ft_smooth_render +11834:ft_smooth_overlap_spans +11835:ft_smooth_lcd_spans +11836:ft_smooth_init +11837:ft_smooth_get_cbox +11838:ft_gzip_free +11839:ft_ansi_stream_io +11840:ft_ansi_stream_close +11841:fquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +11842:fontCollection_registerTypeface +11843:fontCollection_dispose +11844:fontCollection_create +11845:fontCollection_clearCaches +11846:fmt_fp +11847:flutter::ToSk\28flutter::DlColorSource\20const*\29::$_1::__invoke\28void\20const*\2c\20void*\29 +11848:flutter::DlTextSkia::~DlTextSkia\28\29_1544 +11849:flutter::DlTextSkia::GetBounds\28\29\20const +11850:flutter::DlSweepGradientColorSource::shared\28\29\20const +11851:flutter::DlSweepGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +11852:flutter::DlSrgbToLinearGammaColorFilter::shared\28\29\20const +11853:flutter::DlSkPaintDispatchHelper::setStrokeWidth\28float\29 +11854:flutter::DlSkPaintDispatchHelper::setStrokeMiter\28float\29 +11855:flutter::DlSkPaintDispatchHelper::setStrokeJoin\28flutter::DlStrokeJoin\29 +11856:flutter::DlSkPaintDispatchHelper::setStrokeCap\28flutter::DlStrokeCap\29 +11857:flutter::DlSkPaintDispatchHelper::setMaskFilter\28flutter::DlMaskFilter\20const*\29 +11858:flutter::DlSkPaintDispatchHelper::setInvertColors\28bool\29 +11859:flutter::DlSkPaintDispatchHelper::setImageFilter\28flutter::DlImageFilter\20const*\29 +11860:flutter::DlSkPaintDispatchHelper::setDrawStyle\28flutter::DlDrawStyle\29 +11861:flutter::DlSkPaintDispatchHelper::setColor\28flutter::DlColor\29 +11862:flutter::DlSkPaintDispatchHelper::setColorSource\28flutter::DlColorSource\20const*\29 +11863:flutter::DlSkPaintDispatchHelper::setColorFilter\28flutter::DlColorFilter\20const*\29 +11864:flutter::DlSkPaintDispatchHelper::setBlendMode\28impeller::BlendMode\29 +11865:flutter::DlSkPaintDispatchHelper::setAntiAlias\28bool\29 +11866:flutter::DlSkCanvasDispatcher::translate\28float\2c\20float\29 +11867:flutter::DlSkCanvasDispatcher::transformReset\28\29 +11868:flutter::DlSkCanvasDispatcher::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11869:flutter::DlSkCanvasDispatcher::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11870:flutter::DlSkCanvasDispatcher::skew\28float\2c\20float\29 +11871:flutter::DlSkCanvasDispatcher::scale\28float\2c\20float\29 +11872:flutter::DlSkCanvasDispatcher::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +11873:flutter::DlSkCanvasDispatcher::rotate\28float\29 +11874:flutter::DlSkCanvasDispatcher::drawVertices\28std::__2::shared_ptr\20const&\2c\20impeller::BlendMode\29 +11875:flutter::DlSkCanvasDispatcher::drawText\28std::__2::shared_ptr\20const&\2c\20float\2c\20float\29 +11876:flutter::DlSkCanvasDispatcher::drawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +11877:flutter::DlSkCanvasDispatcher::drawRoundSuperellipse\28impeller::RoundSuperellipse\20const&\29 +11878:flutter::DlSkCanvasDispatcher::drawRoundRect\28impeller::RoundRect\20const&\29 +11879:flutter::DlSkCanvasDispatcher::drawRect\28impeller::TRect\20const&\29 +11880:flutter::DlSkCanvasDispatcher::drawPoints\28flutter::DlPointMode\2c\20unsigned\20int\2c\20impeller::TPoint\20const*\29 +11881:flutter::DlSkCanvasDispatcher::drawPath\28flutter::DlPath\20const&\29 +11882:flutter::DlSkCanvasDispatcher::drawPaint\28\29 +11883:flutter::DlSkCanvasDispatcher::drawOval\28impeller::TRect\20const&\29 +11884:flutter::DlSkCanvasDispatcher::drawLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +11885:flutter::DlSkCanvasDispatcher::drawImage\28sk_sp\2c\20impeller::TPoint\20const&\2c\20flutter::DlImageSampling\2c\20bool\29 +11886:flutter::DlSkCanvasDispatcher::drawImageRect\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20bool\2c\20flutter::DlSrcRectConstraint\29 +11887:flutter::DlSkCanvasDispatcher::drawImageNine\28sk_sp\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlFilterMode\2c\20bool\29 +11888:flutter::DlSkCanvasDispatcher::drawDiffRoundRect\28impeller::RoundRect\20const&\2c\20impeller::RoundRect\20const&\29 +11889:flutter::DlSkCanvasDispatcher::drawDashedLine\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\2c\20float\29 +11890:flutter::DlSkCanvasDispatcher::drawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +11891:flutter::DlSkCanvasDispatcher::drawCircle\28impeller::TPoint\20const&\2c\20float\29 +11892:flutter::DlSkCanvasDispatcher::drawAtlas\28sk_sp\2c\20impeller::RSTransform\20const*\2c\20impeller::TRect\20const*\2c\20flutter::DlColor\20const*\2c\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageSampling\2c\20impeller::TRect\20const*\2c\20bool\29 +11893:flutter::DlSkCanvasDispatcher::drawArc\28impeller::TRect\20const&\2c\20float\2c\20float\2c\20bool\29 +11894:flutter::DlSkCanvasDispatcher::clipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11895:flutter::DlSkCanvasDispatcher::clipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11896:flutter::DlSkCanvasDispatcher::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11897:flutter::DlSkCanvasDispatcher::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11898:flutter::DlSkCanvasDispatcher::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11899:flutter::DlRuntimeEffectColorSource::~DlRuntimeEffectColorSource\28\29_1643 +11900:flutter::DlRuntimeEffectColorSource::shared\28\29\20const +11901:flutter::DlRuntimeEffectColorSource::isUIThreadSafe\28\29\20const +11902:flutter::DlRuntimeEffectColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +11903:flutter::DlRadialGradientColorSource::size\28\29\20const +11904:flutter::DlRadialGradientColorSource::shared\28\29\20const +11905:flutter::DlRadialGradientColorSource::pod\28\29\20const +11906:flutter::DlRadialGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +11907:flutter::DlRTree::~DlRTree\28\29_1825 +11908:flutter::DlPath::~DlPath\28\29_8763 +11909:flutter::DlPath::IsConvex\28\29\20const +11910:flutter::DlPath::GetFillType\28\29\20const +11911:flutter::DlPath::GetBounds\28\29\20const +11912:flutter::DlPath::Dispatch\28impeller::PathReceiver&\29\20const +11913:flutter::DlOpReceiver::save\28unsigned\20int\29 +11914:flutter::DlOpReceiver::saveLayer\28impeller::TRect\20const*\2c\20flutter::SaveLayerOptions\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +11915:flutter::DlOpReceiver::saveLayer\28impeller::TRect\20const&\2c\20flutter::SaveLayerOptions\20const&\2c\20unsigned\20int\2c\20impeller::BlendMode\2c\20flutter::DlImageFilter\20const*\2c\20std::__2::optional\29 +11916:flutter::DlMatrixImageFilter::size\28\29\20const +11917:flutter::DlMatrixImageFilter::shared\28\29\20const +11918:flutter::DlMatrixImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +11919:flutter::DlMatrixImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +11920:flutter::DlMatrixImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +11921:flutter::DlMatrixImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +11922:flutter::DlMatrixColorFilter::shared\28\29\20const +11923:flutter::DlMatrixColorFilter::modifies_transparent_black\28\29\20const +11924:flutter::DlMatrixColorFilter::equals_\28flutter::DlColorFilter\20const&\29\20const +11925:flutter::DlMatrixColorFilter::can_commute_with_opacity\28\29\20const +11926:flutter::DlLocalMatrixImageFilter::~DlLocalMatrixImageFilter\28\29_1790 +11927:flutter::DlLocalMatrixImageFilter::~DlLocalMatrixImageFilter\28\29 +11928:flutter::DlLocalMatrixImageFilter::size\28\29\20const +11929:flutter::DlLocalMatrixImageFilter::shared\28\29\20const +11930:flutter::DlLocalMatrixImageFilter::modifies_transparent_black\28\29\20const +11931:flutter::DlLocalMatrixImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +11932:flutter::DlLocalMatrixImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +11933:flutter::DlLocalMatrixImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +11934:flutter::DlLocalMatrixImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +11935:flutter::DlLinearToSrgbGammaColorFilter::shared\28\29\20const +11936:flutter::DlLinearGradientColorSource::shared\28\29\20const +11937:flutter::DlLinearGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +11938:flutter::DlImageSkia::isTextureBacked\28\29\20const +11939:flutter::DlImageSkia::isOpaque\28\29\20const +11940:flutter::DlImageSkia::GetSize\28\29\20const +11941:flutter::DlImageSkia::GetApproximateByteSize\28\29\20const +11942:flutter::DlImageFilter::makeWithLocalMatrix\28impeller::Matrix\20const&\29\20const +11943:flutter::DlImageColorSource::~DlImageColorSource\28\29_1610 +11944:flutter::DlImageColorSource::~DlImageColorSource\28\29 +11945:flutter::DlImageColorSource::shared\28\29\20const +11946:flutter::DlImageColorSource::is_opaque\28\29\20const +11947:flutter::DlImageColorSource::isUIThreadSafe\28\29\20const +11948:flutter::DlImageColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +11949:flutter::DlImage::get_error\28\29\20const +11950:flutter::DlGradientColorSourceBase::is_opaque\28\29\20const +11951:flutter::DlErodeImageFilter::shared\28\29\20const +11952:flutter::DlErodeImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +11953:flutter::DlDilateImageFilter::shared\28\29\20const +11954:flutter::DlDilateImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +11955:flutter::DlConicalGradientColorSource::size\28\29\20const +11956:flutter::DlConicalGradientColorSource::shared\28\29\20const +11957:flutter::DlConicalGradientColorSource::equals_\28flutter::DlColorSource\20const&\29\20const +11958:flutter::DlComposeImageFilter::~DlComposeImageFilter\28\29_1746 +11959:flutter::DlComposeImageFilter::size\28\29\20const +11960:flutter::DlComposeImageFilter::shared\28\29\20const +11961:flutter::DlComposeImageFilter::modifies_transparent_black\28\29\20const +11962:flutter::DlComposeImageFilter::matrix_capability\28\29\20const +11963:flutter::DlComposeImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +11964:flutter::DlComposeImageFilter::map_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +11965:flutter::DlComposeImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +11966:flutter::DlComposeImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +11967:flutter::DlColorFilterImageFilter::~DlColorFilterImageFilter\28\29_1730 +11968:flutter::DlColorFilterImageFilter::~DlColorFilterImageFilter\28\29 +11969:flutter::DlColorFilterImageFilter::shared\28\29\20const +11970:flutter::DlColorFilterImageFilter::modifies_transparent_black\28\29\20const +11971:flutter::DlColorFilterImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +11972:flutter::DlColorFilterImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +11973:flutter::DlCanvas::DrawImageRect\28sk_sp\20const&\2c\20impeller::TRect\20const&\2c\20impeller::TRect\20const&\2c\20flutter::DlImageSampling\2c\20flutter::DlPaint\20const*\2c\20flutter::DlSrcRectConstraint\29 +11974:flutter::DlBlurMaskFilter::equals_\28flutter::DlMaskFilter\20const&\29\20const +11975:flutter::DlBlurImageFilter::shared\28\29\20const +11976:flutter::DlBlurImageFilter::map_local_bounds\28impeller::TRect\20const&\2c\20impeller::TRect&\29\20const +11977:flutter::DlBlurImageFilter::get_input_device_bounds\28impeller::TRect\20const&\2c\20impeller::Matrix\20const&\2c\20impeller::TRect&\29\20const +11978:flutter::DlBlurImageFilter::equals_\28flutter::DlImageFilter\20const&\29\20const +11979:flutter::DlBlendColorFilter::shared\28\29\20const +11980:flutter::DlBlendColorFilter::modifies_transparent_black\28\29\20const +11981:flutter::DlBlendColorFilter::equals_\28flutter::DlColorFilter\20const&\29\20const +11982:flutter::DlBlendColorFilter::can_commute_with_opacity\28\29\20const +11983:flutter::DisplayListBuilder::transformReset\28\29 +11984:flutter::DisplayListBuilder::transformFullPerspective\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11985:flutter::DisplayListBuilder::transform2DAffine\28float\2c\20float\2c\20float\2c\20float\2c\20float\2c\20float\29 +11986:flutter::DisplayListBuilder::drawShadow\28flutter::DlPath\20const&\2c\20flutter::DlColor\2c\20float\2c\20bool\2c\20float\29 +11987:flutter::DisplayListBuilder::drawColor\28flutter::DlColor\2c\20impeller::BlendMode\29 +11988:flutter::DisplayListBuilder::clipRoundSuperellipse\28impeller::RoundSuperellipse\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11989:flutter::DisplayListBuilder::clipRoundRect\28impeller::RoundRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11990:flutter::DisplayListBuilder::clipRect\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11991:flutter::DisplayListBuilder::clipPath\28flutter::DlPath\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11992:flutter::DisplayListBuilder::clipOval\28impeller::TRect\20const&\2c\20flutter::DlClipOp\2c\20bool\29 +11993:flutter::DisplayListBuilder::GetMatrix\28\29\20const +11994:flutter::DisplayListBuilder::GetDestinationClipCoverage\28\29\20const +11995:flutter::DisplayList::~DisplayList\28\29_1190 +11996:fline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +11997:final_reordering_indic\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +11998:fcubic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +11999:fconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +12000:error_callback +12001:emscripten_stack_get_current +12002:dquad_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +12003:dline_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +12004:dispose_external_texture\28void*\29 +12005:defaultGetValue\28IntProperty\20const&\2c\20int\2c\20UProperty\29 +12006:defaultGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +12007:defaultContains\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +12008:decompose_khmer\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +12009:decompose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\29 +12010:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::\28anonymous\20namespace\29::QuadEdgeEffect::Make\28SkArenaAlloc*\2c\20SkMatrix\20const&\2c\20bool\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12011:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\2c\20GrShaderCaps\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::\28anonymous\20namespace\29::HullShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12012:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator::PathStrokeList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12013:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::tess::PatchAttribs&\29::'lambda'\28void*\29>\28skgpu::ganesh::StrokeTessellator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12014:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&>\28SkMatrix\20const&\2c\20SkPath\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28skgpu::ganesh::PathTessellator::PathDrawList&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12015:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29>\28skgpu::ganesh::LatticeOp::\28anonymous\20namespace\29::LatticeGP::Make\28SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20sk_sp\2c\20SkFilterMode\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12016:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::Processor::Make\28SkArenaAlloc*\2c\20GrAAType\2c\20skgpu::ganesh::FillRRectOp::\28anonymous\20namespace\29::FillRRectOpImpl::ProcessorFlags\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12017:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerSkyline&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12018:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28int&\2c\20int&\29::'lambda'\28void*\29>\28skgpu::RectanizerPow2&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12019:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::ThreeBoxApproxPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::ThreeBoxApproxPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12020:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TextureOpImpl::Desc>\28\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TextureOpImpl::Desc&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12021:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass*\20SkArenaAlloc::make<\28anonymous\20namespace\29::TentPass\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&>\28skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20skvx::Vec<4\2c\20unsigned\20int>*&\2c\20int&\2c\20int&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::TentPass&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12022:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::SimpleTriangleShader\2c\20SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&>\28SkMatrix\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::SimpleTriangleShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12023:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::DrawAtlasPathShader\2c\20bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*\2c\20GrShaderCaps\20const&>\28bool&\2c\20skgpu::ganesh::AtlasInstancedHelper*&&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::DrawAtlasPathShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12024:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader*\20SkArenaAlloc::make<\28anonymous\20namespace\29::BoundingBoxShader\2c\20SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&>\28SkRGBA4f<\28SkAlphaType\292>&\2c\20GrShaderCaps\20const&\29::'lambda'\28void*\29>\28\28anonymous\20namespace\29::BoundingBoxShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12025:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20unsigned\20char&&\29::'lambda'\28void*\29>\28Sprite_D32_S32&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12026:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28bool&&\2c\20bool\20const&\29::'lambda'\28void*\29>\28SkTriColorShader&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12027:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTCubic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12028:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkTConic&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12029:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\29::'lambda'\28void*\29>\28SkSpriteBlitter_Memcpy&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12030:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&>\28SkPixmap\20const&\2c\20SkArenaAlloc*&\2c\20sk_sp&\29::'lambda'\28void*\29>\28SkRasterPipelineSpriteBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12031:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*&\29::'lambda'\28void*\29>\28SkRasterPipelineBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12032:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkNullBlitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12033:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkImage_Base\20const*&&\2c\20SkMatrix\20const&\2c\20SkMipmapMode&\29::'lambda'\28void*\29>\28SkMipmapAccessor&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12034:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::PathData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12035:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkGlyph::DrawableData&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12036:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12037:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28SkCubicEdge&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12038:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make&\29>>::Node*\20SkArenaAlloc::make&\29>>::Node\2c\20std::__2::function&\29>>\28std::__2::function&\29>&&\29::'lambda'\28void*\29>\28SkArenaAllocList&\29>>::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12039:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node\2c\20std::__2::function&\29>\2c\20skgpu::Token>\28std::__2::function&\29>&&\2c\20skgpu::Token&&\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12040:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make::Node*\20SkArenaAlloc::make::Node>\28\29::'lambda'\28void*\29>\28SkArenaAllocList::Node&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12041:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPixmap\20const&\2c\20SkPaint\20const&\29::'lambda'\28void*\29>\28SkA8_Coverage_Blitter&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12042:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28\29::'lambda'\28void*\29>\28GrSimpleMesh&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12043:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrSurfaceProxy*&\2c\20skgpu::ScratchKey&&\2c\20GrResourceProvider*&\29::'lambda'\28void*\29>\28GrResourceAllocator::Register&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12044:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28SkPath\20const&\2c\20SkArenaAlloc*\20const&\29::'lambda'\28void*\29>\28GrInnerFanTriangulator&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12045:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrDistanceFieldLCDTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20GrDistanceFieldLCDTextGeoProc::DistanceAdjust\2c\20unsigned\20int\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12046:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29>\28GrBitmapTextGeoProc::Make\28SkArenaAlloc*\2c\20GrShaderCaps\20const&\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20bool\2c\20sk_sp\2c\20GrSurfaceProxyView\20const*\2c\20int\2c\20GrSamplerState\2c\20skgpu::MaskFormat\2c\20SkMatrix\20const&\2c\20bool\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12047:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28GrAppliedClip&&\29::'lambda'\28void*\29>\28GrAppliedClip&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12048:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\28EllipseGeometryProcessor::Make\28SkArenaAlloc*\2c\20bool\2c\20bool\2c\20bool\2c\20SkMatrix\20const&\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12049:decltype\28fp\28nullptr\29\29\20SkArenaAlloc::make\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29>\28DefaultGeoProc::Make\28SkArenaAlloc*\2c\20unsigned\20int\2c\20SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkMatrix\20const&\2c\20SkMatrix\20const&\2c\20bool\2c\20unsigned\20char\29::'lambda'\28void*\29&&\29::'lambda'\28char*\29::__invoke\28char*\29 +12050:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +12051:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +12052:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul\2c\201ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +12053:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<1ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +12054:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_construct\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__ctor>&\2c\20std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_constructor\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +12055:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&&\29::'lambda'\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&>\28std::__2::__variant_detail::__move_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&&\29 +12056:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>::__generic_assign\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\29::'lambda'\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20auto&&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__copy_assignment\2c\20\28std::__2::__variant_detail::_Trait\291>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +12057:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +12058:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul\2c\200ul>::__dispatch\5babi:ne180100\5d>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&>\28std::__2::__variant_detail::__visitation::__variant::__value_visitor>>&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>\20const&\29 +12059:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20std::__2::unique_ptr>>\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20sk_sp\2c\20std::__2::unique_ptr>>&\29 +12060:decltype\28auto\29\20std::__2::__variant_detail::__visitation::__base::__dispatcher<0ul>::__dispatch\5babi:ne180100\5d\2c\20\28std::__2::__variant_detail::_Trait\291>::__destroy\5babi:ne180100\5d\28\29::'lambda'\28auto&\29&&\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&>\28auto\2c\20std::__2::__variant_detail::__base<\28std::__2::__variant_detail::_Trait\291\2c\20SkPaint\2c\20int>&\29 +12061:deallocate_buffer_var\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +12062:ddquad_xy_at_t\28SkDCurve\20const&\2c\20double\29 +12063:ddquad_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +12064:ddline_xy_at_t\28SkDCurve\20const&\2c\20double\29 +12065:ddline_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +12066:ddcubic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +12067:ddcubic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +12068:ddconic_xy_at_t\28SkDCurve\20const&\2c\20double\29 +12069:ddconic_dxdy_at_t\28SkDCurve\20const&\2c\20double\29 +12070:dconic_xy_at_t\28SkPoint\20const*\2c\20float\2c\20double\29 +12071:data_destroy_use\28void*\29 +12072:data_create_use\28hb_ot_shape_plan_t\20const*\29 +12073:data_create_khmer\28hb_ot_shape_plan_t\20const*\29 +12074:data_create_indic\28hb_ot_shape_plan_t\20const*\29 +12075:data_create_hangul\28hb_ot_shape_plan_t\20const*\29 +12076:dataDirectoryInitFn\28\29 +12077:cubic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +12078:cubic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +12079:createCache\28UErrorCode&\29 +12080:convert_to_alpha8\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageInfo\20const&\2c\20void\20const*\2c\20unsigned\20long\2c\20SkColorSpaceXformSteps\20const&\29 +12081:convert_bytes_to_data +12082:contourMeasure_length +12083:contourMeasure_isClosed +12084:contourMeasure_getSegment +12085:contourMeasure_getPosTan +12086:contourMeasure_dispose +12087:contourMeasureIter_next +12088:contourMeasureIter_dispose +12089:contourMeasureIter_create +12090:conic_intercept_v\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +12091:conic_intercept_h\28SkPoint\20const*\2c\20float\2c\20float\2c\20double*\29 +12092:compose_indic\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12093:compose_hebrew\28hb_ot_shape_normalize_context_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12094:compare_ppem +12095:compare_myanmar_order\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +12096:compare_combining_class\28hb_glyph_info_t\20const*\2c\20hb_glyph_info_t\20const*\29 +12097:compareKeywordStructs\28void\20const*\2c\20void\20const*\2c\20void\20const*\29 +12098:compareEntries\28UElement\2c\20UElement\29 +12099:colorFilter_dispose +12100:colorFilter_createSRGBToLinearGamma +12101:colorFilter_createMode +12102:colorFilter_createMatrix +12103:colorFilter_createLinearToSRGBGamma +12104:collect_features_use\28hb_ot_shape_planner_t*\29 +12105:collect_features_myanmar\28hb_ot_shape_planner_t*\29 +12106:collect_features_khmer\28hb_ot_shape_planner_t*\29 +12107:collect_features_indic\28hb_ot_shape_planner_t*\29 +12108:collect_features_hangul\28hb_ot_shape_planner_t*\29 +12109:collect_features_arabic\28hb_ot_shape_planner_t*\29 +12110:clip\28SkPath\20const&\2c\20SkHalfPlane\20const&\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +12111:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitStatement\28SkSL::Statement\20const&\29 +12112:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +12113:check_for_passthrough_local_coords_and_dead_varyings\28SkSL::Program\20const&\2c\20unsigned\20int*\29::Visitor::visitExpression\28SkSL::Expression\20const&\29 +12114:charIterTextLength\28UText*\29 +12115:charIterTextExtract\28UText*\2c\20long\20long\2c\20long\20long\2c\20char16_t*\2c\20int\2c\20UErrorCode*\29 +12116:charIterTextClose\28UText*\29 +12117:charIterTextClone\28UText*\2c\20UText\20const*\2c\20signed\20char\2c\20UErrorCode*\29 +12118:changesWhenNFKC_Casefolded\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +12119:changesWhenCasefolded\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +12120:cff_slot_init +12121:cff_slot_done +12122:cff_size_request +12123:cff_size_init +12124:cff_size_done +12125:cff_sid_to_glyph_name +12126:cff_set_var_design +12127:cff_set_mm_weightvector +12128:cff_set_mm_blend +12129:cff_set_instance +12130:cff_random +12131:cff_ps_has_glyph_names +12132:cff_ps_get_font_info +12133:cff_ps_get_font_extra +12134:cff_parse_vsindex +12135:cff_parse_private_dict +12136:cff_parse_multiple_master +12137:cff_parse_maxstack +12138:cff_parse_font_matrix +12139:cff_parse_font_bbox +12140:cff_parse_cid_ros +12141:cff_parse_blend +12142:cff_metrics_adjust +12143:cff_hadvance_adjust +12144:cff_get_var_design +12145:cff_get_var_blend +12146:cff_get_standard_encoding +12147:cff_get_ros +12148:cff_get_ps_name +12149:cff_get_name_index +12150:cff_get_mm_weightvector +12151:cff_get_mm_var +12152:cff_get_mm_blend +12153:cff_get_is_cid +12154:cff_get_interface +12155:cff_get_glyph_name +12156:cff_get_cmap_info +12157:cff_get_cid_from_glyph_index +12158:cff_get_advances +12159:cff_free_glyph_data +12160:cff_face_init +12161:cff_face_done +12162:cff_driver_init +12163:cff_done_blend +12164:cff_decoder_prepare +12165:cff_decoder_init +12166:cff_cmap_unicode_init +12167:cff_cmap_unicode_char_next +12168:cff_cmap_unicode_char_index +12169:cff_cmap_encoding_init +12170:cff_cmap_encoding_done +12171:cff_cmap_encoding_char_next +12172:cff_cmap_encoding_char_index +12173:cff_builder_start_point +12174:cf2_free_instance +12175:cf2_decoder_parse_charstrings +12176:cf2_builder_moveTo +12177:cf2_builder_lineTo +12178:cf2_builder_cubeTo +12179:caseBinaryPropertyContains\28BinaryProperty\20const&\2c\20int\2c\20UProperty\29 +12180:canvas_transform +12181:canvas_saveLayer +12182:canvas_restoreToCount +12183:canvas_quickReject +12184:canvas_getTransform +12185:canvas_getLocalClipBounds +12186:canvas_getDeviceClipBounds +12187:canvas_drawVertices +12188:canvas_drawShadow +12189:canvas_drawRect +12190:canvas_drawRRect +12191:canvas_drawPoints +12192:canvas_drawPicture +12193:canvas_drawPath +12194:canvas_drawParagraph +12195:canvas_drawPaint +12196:canvas_drawOval +12197:canvas_drawLine +12198:canvas_drawImageRect +12199:canvas_drawImageNine +12200:canvas_drawImage +12201:canvas_drawDRRect +12202:canvas_drawColor +12203:canvas_drawCircle +12204:canvas_drawAtlas +12205:canvas_drawArc +12206:canvas_clipRect +12207:canvas_clipRRect +12208:canvas_clipPath +12209:canvas_clear +12210:bw_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +12211:breakiterator_cleanup\28\29 +12212:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::SpotVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +12213:bool\20\28anonymous\20namespace\29::FindVisitor<\28anonymous\20namespace\29::AmbientVerticesFactory>\28SkResourceCache::Rec\20const&\2c\20void*\29 +12214:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12215:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12216:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12217:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12218:bool\20OT::hb_accelerate_subtables_context_t::apply_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12219:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12220:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12221:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12222:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12223:bool\20OT::hb_accelerate_subtables_context_t::apply_cached_to>\28void\20const*\2c\20OT::hb_ot_apply_context_t*\29 +12224:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12225:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12226:bool\20OT::cmap::accelerator_t::get_glyph_from_symbol\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12227:bool\20OT::cmap::accelerator_t::get_glyph_from_macroman\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12228:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12229:bool\20OT::cmap::accelerator_t::get_glyph_from\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +12230:blur_y_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12231:blur_y_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12232:blur_y_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12233:blur_y_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12234:blur_x_radius_4\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12235:blur_x_radius_3\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12236:blur_x_radius_2\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12237:blur_x_radius_1\28skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>\20const&\2c\20skvx::Vec<8\2c\20unsigned\20short>*\2c\20skvx::Vec<8\2c\20unsigned\20short>*\29 +12238:blit_row_s32a_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +12239:blit_row_s32_opaque\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +12240:blit_row_s32_blend\28unsigned\20int*\2c\20unsigned\20int\20const*\2c\20int\2c\20unsigned\20int\29 +12241:biDiGetMaxValue\28IntProperty\20const&\2c\20UProperty\29 +12242:argb32_to_a8\28unsigned\20char*\2c\20unsigned\20char\20const*\2c\20int\29 +12243:arabic_fallback_shape\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +12244:animatedImage_getRepetitionCount +12245:animatedImage_getCurrentFrameDurationMilliseconds +12246:animatedImage_getCurrentFrame +12247:animatedImage_dispose +12248:animatedImage_decodeNextFrame +12249:animatedImage_create +12250:afm_parser_parse +12251:afm_parser_init +12252:afm_parser_done +12253:afm_compare_kern_pairs +12254:af_property_set +12255:af_property_get +12256:af_latin_metrics_scale +12257:af_latin_metrics_init +12258:af_latin_hints_init +12259:af_latin_hints_apply +12260:af_latin_get_standard_widths +12261:af_indic_metrics_scale +12262:af_indic_metrics_init +12263:af_indic_hints_init +12264:af_indic_hints_apply +12265:af_get_interface +12266:af_face_globals_free +12267:af_dummy_hints_init +12268:af_dummy_hints_apply +12269:af_cjk_metrics_init +12270:af_autofitter_load_glyph +12271:af_autofitter_init +12272:action_terminate +12273:action_abort +12274:_isUnicodeExtensionSubtag\28int&\2c\20char\20const*\2c\20int\29 +12275:_isTransformedExtensionSubtag\28int&\2c\20char\20const*\2c\20int\29 +12276:_hb_ot_font_destroy\28void*\29 +12277:_hb_grapheme_group_func\28hb_glyph_info_t\20const&\2c\20hb_glyph_info_t\20const&\29 +12278:_hb_glyph_info_is_default_ignorable\28hb_glyph_info_t\20const*\29 +12279:_hb_face_for_data_reference_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +12280:_hb_face_for_data_get_table_tags\28hb_face_t\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int*\2c\20void*\29 +12281:_hb_face_for_data_closure_destroy\28void*\29 +12282:_hb_clear_substitution_flags\28hb_ot_shape_plan_t\20const*\2c\20hb_font_t*\2c\20hb_buffer_t*\29 +12283:_hb_blob_destroy\28void*\29 +12284:_emscripten_wasm_worker_initialize +12285:_emscripten_stack_restore +12286:_emscripten_stack_alloc +12287:__wasm_init_memory +12288:__wasm_call_ctors +12289:__stdio_write +12290:__stdio_seek +12291:__stdio_read +12292:__stdio_close +12293:__emscripten_stdout_seek +12294:__cxxabiv1::__vmi_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +12295:__cxxabiv1::__vmi_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +12296:__cxxabiv1::__vmi_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +12297:__cxxabiv1::__si_class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +12298:__cxxabiv1::__si_class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +12299:__cxxabiv1::__si_class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +12300:__cxxabiv1::__class_type_info::search_below_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +12301:__cxxabiv1::__class_type_info::search_above_dst\28__cxxabiv1::__dynamic_cast_info*\2c\20void\20const*\2c\20void\20const*\2c\20int\2c\20bool\29\20const +12302:__cxxabiv1::__class_type_info::has_unambiguous_public_base\28__cxxabiv1::__dynamic_cast_info*\2c\20void*\2c\20int\29\20const +12303:__cxxabiv1::__class_type_info::can_catch\28__cxxabiv1::__shim_type_info\20const*\2c\20void*&\29\20const +12304:\28anonymous\20namespace\29::uprops_cleanup\28\29 +12305:\28anonymous\20namespace\29::ulayout_load\28UErrorCode&\29 +12306:\28anonymous\20namespace\29::ulayout_isAcceptable\28void*\2c\20char\20const*\2c\20char\20const*\2c\20UDataInfo\20const*\29 +12307:\28anonymous\20namespace\29::skhb_nominal_glyphs\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20unsigned\20int\2c\20void*\29 +12308:\28anonymous\20namespace\29::skhb_nominal_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +12309:\28anonymous\20namespace\29::skhb_glyph_h_advances\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\20const*\2c\20unsigned\20int\2c\20int*\2c\20unsigned\20int\2c\20void*\29 +12310:\28anonymous\20namespace\29::skhb_glyph_h_advance\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20void*\29 +12311:\28anonymous\20namespace\29::skhb_glyph_extents\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20hb_glyph_extents_t*\2c\20void*\29 +12312:\28anonymous\20namespace\29::skhb_glyph\28hb_font_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20void*\29 +12313:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29::$_0::__invoke\28void*\29 +12314:\28anonymous\20namespace\29::skhb_get_table\28hb_face_t*\2c\20unsigned\20int\2c\20void*\29 +12315:\28anonymous\20namespace\29::create_sub_hb_font\28SkFont\20const&\2c\20std::__2::unique_ptr>\20const&\29::$_0::__invoke\28void*\29 +12316:\28anonymous\20namespace\29::characterproperties_cleanup\28\29 +12317:\28anonymous\20namespace\29::_set_add\28USet*\2c\20int\29 +12318:\28anonymous\20namespace\29::_set_addRange\28USet*\2c\20int\2c\20int\29 +12319:\28anonymous\20namespace\29::YUVPlanesRec::~YUVPlanesRec\28\29_5434 +12320:\28anonymous\20namespace\29::YUVPlanesRec::getCategory\28\29\20const +12321:\28anonymous\20namespace\29::YUVPlanesRec::diagnostic_only_getDiscardable\28\29\20const +12322:\28anonymous\20namespace\29::YUVPlanesRec::bytesUsed\28\29\20const +12323:\28anonymous\20namespace\29::YUVPlanesRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +12324:\28anonymous\20namespace\29::UniqueKeyInvalidator::~UniqueKeyInvalidator\28\29_12544 +12325:\28anonymous\20namespace\29::TriangulatingPathOp::~TriangulatingPathOp\28\29_12522 +12326:\28anonymous\20namespace\29::TriangulatingPathOp::visitProxies\28std::__2::function\20const&\29\20const +12327:\28anonymous\20namespace\29::TriangulatingPathOp::programInfo\28\29 +12328:\28anonymous\20namespace\29::TriangulatingPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12329:\28anonymous\20namespace\29::TriangulatingPathOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12330:\28anonymous\20namespace\29::TriangulatingPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12331:\28anonymous\20namespace\29::TriangulatingPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12332:\28anonymous\20namespace\29::TriangulatingPathOp::name\28\29\20const +12333:\28anonymous\20namespace\29::TriangulatingPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12334:\28anonymous\20namespace\29::TransformedMaskSubRun::unflattenSize\28\29\20const +12335:\28anonymous\20namespace\29::TransformedMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +12336:\28anonymous\20namespace\29::TransformedMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +12337:\28anonymous\20namespace\29::TransformedMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +12338:\28anonymous\20namespace\29::ThreeBoxApproxPass::startBlur\28\29 +12339:\28anonymous\20namespace\29::ThreeBoxApproxPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +12340:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +12341:\28anonymous\20namespace\29::ThreeBoxApproxPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +12342:\28anonymous\20namespace\29::TextureOpImpl::~TextureOpImpl\28\29_12496 +12343:\28anonymous\20namespace\29::TextureOpImpl::visitProxies\28std::__2::function\20const&\29\20const +12344:\28anonymous\20namespace\29::TextureOpImpl::programInfo\28\29 +12345:\28anonymous\20namespace\29::TextureOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +12346:\28anonymous\20namespace\29::TextureOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12347:\28anonymous\20namespace\29::TextureOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12348:\28anonymous\20namespace\29::TextureOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12349:\28anonymous\20namespace\29::TextureOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12350:\28anonymous\20namespace\29::TextureOpImpl::name\28\29\20const +12351:\28anonymous\20namespace\29::TextureOpImpl::fixedFunctionFlags\28\29\20const +12352:\28anonymous\20namespace\29::TextureOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12353:\28anonymous\20namespace\29::TentPass::startBlur\28\29 +12354:\28anonymous\20namespace\29::TentPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +12355:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +12356:\28anonymous\20namespace\29::TentPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +12357:\28anonymous\20namespace\29::StaticVertexAllocator::~StaticVertexAllocator\28\29_12548 +12358:\28anonymous\20namespace\29::StaticVertexAllocator::unlock\28int\29 +12359:\28anonymous\20namespace\29::StaticVertexAllocator::lock\28unsigned\20long\2c\20int\29 +12360:\28anonymous\20namespace\29::SkwasmParagraphPainter::translate\28float\2c\20float\29 +12361:\28anonymous\20namespace\29::SkwasmParagraphPainter::save\28\29 +12362:\28anonymous\20namespace\29::SkwasmParagraphPainter::restore\28\29 +12363:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawTextShadow\28sk_sp\20const&\2c\20float\2c\20float\2c\20unsigned\20int\2c\20float\29 +12364:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawTextBlob\28sk_sp\20const&\2c\20float\2c\20float\2c\20std::__2::variant\20const&\29 +12365:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawRect\28SkRect\20const&\2c\20std::__2::variant\20const&\29 +12366:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawPath\28SkPath\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +12367:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawLine\28float\2c\20float\2c\20float\2c\20float\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +12368:\28anonymous\20namespace\29::SkwasmParagraphPainter::drawFilledRect\28SkRect\20const&\2c\20skia::textlayout::ParagraphPainter::DecorationStyle\20const&\29 +12369:\28anonymous\20namespace\29::SkwasmParagraphPainter::clipRect\28SkRect\20const&\29 +12370:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::currentScript\28\29\20const +12371:\28anonymous\20namespace\29::SkUnicodeHbScriptRunIterator::consume\28\29 +12372:\28anonymous\20namespace\29::SkUbrkGetLocaleByType::getLocaleByType\28UBreakIterator\20const*\2c\20ULocDataLocaleType\2c\20UErrorCode*\29 +12373:\28anonymous\20namespace\29::SkUbrkClone::clone\28UBreakIterator\20const*\2c\20UErrorCode*\29 +12374:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +12375:\28anonymous\20namespace\29::SkMorphologyImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +12376:\28anonymous\20namespace\29::SkMorphologyImageFilter::onFilterImage\28skif::Context\20const&\29\20const +12377:\28anonymous\20namespace\29::SkMorphologyImageFilter::getTypeName\28\29\20const +12378:\28anonymous\20namespace\29::SkMorphologyImageFilter::flatten\28SkWriteBuffer&\29\20const +12379:\28anonymous\20namespace\29::SkMorphologyImageFilter::computeFastBounds\28SkRect\20const&\29\20const +12380:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +12381:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +12382:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::onFilterImage\28skif::Context\20const&\29\20const +12383:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::getTypeName\28\29\20const +12384:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::flatten\28SkWriteBuffer&\29\20const +12385:\28anonymous\20namespace\29::SkMatrixTransformImageFilter::computeFastBounds\28SkRect\20const&\29\20const +12386:\28anonymous\20namespace\29::SkFTGeometrySink::Quad\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +12387:\28anonymous\20namespace\29::SkFTGeometrySink::Move\28FT_Vector_\20const*\2c\20void*\29 +12388:\28anonymous\20namespace\29::SkFTGeometrySink::Line\28FT_Vector_\20const*\2c\20void*\29 +12389:\28anonymous\20namespace\29::SkFTGeometrySink::Cubic\28FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20FT_Vector_\20const*\2c\20void*\29 +12390:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +12391:\28anonymous\20namespace\29::SkEmptyTypeface::onGetFamilyName\28SkString*\29\20const +12392:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +12393:\28anonymous\20namespace\29::SkEmptyTypeface::onCreateFamilyNameIterator\28\29\20const +12394:\28anonymous\20namespace\29::SkEmptyTypeface::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +12395:\28anonymous\20namespace\29::SkCropImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +12396:\28anonymous\20namespace\29::SkCropImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +12397:\28anonymous\20namespace\29::SkCropImageFilter::onFilterImage\28skif::Context\20const&\29\20const +12398:\28anonymous\20namespace\29::SkCropImageFilter::onAffectsTransparentBlack\28\29\20const +12399:\28anonymous\20namespace\29::SkCropImageFilter::getTypeName\28\29\20const +12400:\28anonymous\20namespace\29::SkCropImageFilter::flatten\28SkWriteBuffer&\29\20const +12401:\28anonymous\20namespace\29::SkCropImageFilter::computeFastBounds\28SkRect\20const&\29\20const +12402:\28anonymous\20namespace\29::SkComposeImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +12403:\28anonymous\20namespace\29::SkComposeImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +12404:\28anonymous\20namespace\29::SkComposeImageFilter::onFilterImage\28skif::Context\20const&\29\20const +12405:\28anonymous\20namespace\29::SkComposeImageFilter::getTypeName\28\29\20const +12406:\28anonymous\20namespace\29::SkComposeImageFilter::computeFastBounds\28SkRect\20const&\29\20const +12407:\28anonymous\20namespace\29::SkColorFilterImageFilter::~SkColorFilterImageFilter\28\29_6030 +12408:\28anonymous\20namespace\29::SkColorFilterImageFilter::onIsColorFilterNode\28SkColorFilter**\29\20const +12409:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +12410:\28anonymous\20namespace\29::SkColorFilterImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +12411:\28anonymous\20namespace\29::SkColorFilterImageFilter::onFilterImage\28skif::Context\20const&\29\20const +12412:\28anonymous\20namespace\29::SkColorFilterImageFilter::onAffectsTransparentBlack\28\29\20const +12413:\28anonymous\20namespace\29::SkColorFilterImageFilter::getTypeName\28\29\20const +12414:\28anonymous\20namespace\29::SkColorFilterImageFilter::flatten\28SkWriteBuffer&\29\20const +12415:\28anonymous\20namespace\29::SkColorFilterImageFilter::computeFastBounds\28SkRect\20const&\29\20const +12416:\28anonymous\20namespace\29::SkBlurImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +12417:\28anonymous\20namespace\29::SkBlurImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +12418:\28anonymous\20namespace\29::SkBlurImageFilter::onFilterImage\28skif::Context\20const&\29\20const +12419:\28anonymous\20namespace\29::SkBlurImageFilter::getTypeName\28\29\20const +12420:\28anonymous\20namespace\29::SkBlurImageFilter::flatten\28SkWriteBuffer&\29\20const +12421:\28anonymous\20namespace\29::SkBlurImageFilter::computeFastBounds\28SkRect\20const&\29\20const +12422:\28anonymous\20namespace\29::SkBlendImageFilter::~SkBlendImageFilter\28\29_6002 +12423:\28anonymous\20namespace\29::SkBlendImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +12424:\28anonymous\20namespace\29::SkBlendImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +12425:\28anonymous\20namespace\29::SkBlendImageFilter::onFilterImage\28skif::Context\20const&\29\20const +12426:\28anonymous\20namespace\29::SkBlendImageFilter::onAffectsTransparentBlack\28\29\20const +12427:\28anonymous\20namespace\29::SkBlendImageFilter::getTypeName\28\29\20const +12428:\28anonymous\20namespace\29::SkBlendImageFilter::flatten\28SkWriteBuffer&\29\20const +12429:\28anonymous\20namespace\29::SkBlendImageFilter::computeFastBounds\28SkRect\20const&\29\20const +12430:\28anonymous\20namespace\29::SkBidiIterator_icu::~SkBidiIterator_icu\28\29_8617 +12431:\28anonymous\20namespace\29::SkBidiIterator_icu::getLevelAt\28int\29 +12432:\28anonymous\20namespace\29::SkBidiIterator_icu::getLength\28\29 +12433:\28anonymous\20namespace\29::SimpleTriangleShader::name\28\29\20const +12434:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12435:\28anonymous\20namespace\29::SimpleTriangleShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12436:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20float\2c\20SkShaper::RunHandler*\29\20const +12437:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::FontRunIterator&\2c\20SkShaper::BiDiRunIterator&\2c\20SkShaper::ScriptRunIterator&\2c\20SkShaper::LanguageRunIterator&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +12438:\28anonymous\20namespace\29::ShaperHarfBuzz::shape\28char\20const*\2c\20unsigned\20long\2c\20SkFont\20const&\2c\20bool\2c\20float\2c\20SkShaper::RunHandler*\29\20const +12439:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::~ShapeDontWrapOrReorder\28\29 +12440:\28anonymous\20namespace\29::ShapeDontWrapOrReorder::wrap\28char\20const*\2c\20unsigned\20long\2c\20SkShaper::BiDiRunIterator\20const&\2c\20SkShaper::LanguageRunIterator\20const&\2c\20SkShaper::ScriptRunIterator\20const&\2c\20SkShaper::FontRunIterator\20const&\2c\20\28anonymous\20namespace\29::RunIteratorQueue&\2c\20SkShaper::Feature\20const*\2c\20unsigned\20long\2c\20float\2c\20SkShaper::RunHandler*\29\20const +12441:\28anonymous\20namespace\29::ShadowInvalidator::~ShadowInvalidator\28\29_5848 +12442:\28anonymous\20namespace\29::ShadowInvalidator::changed\28\29 +12443:\28anonymous\20namespace\29::ShadowCircularRRectOp::~ShadowCircularRRectOp\28\29_12356 +12444:\28anonymous\20namespace\29::ShadowCircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +12445:\28anonymous\20namespace\29::ShadowCircularRRectOp::programInfo\28\29 +12446:\28anonymous\20namespace\29::ShadowCircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12447:\28anonymous\20namespace\29::ShadowCircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12448:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12449:\28anonymous\20namespace\29::ShadowCircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12450:\28anonymous\20namespace\29::ShadowCircularRRectOp::name\28\29\20const +12451:\28anonymous\20namespace\29::ShadowCircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12452:\28anonymous\20namespace\29::SDFTSubRun::unflattenSize\28\29\20const +12453:\28anonymous\20namespace\29::SDFTSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +12454:\28anonymous\20namespace\29::SDFTSubRun::glyphParams\28\29\20const +12455:\28anonymous\20namespace\29::SDFTSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +12456:\28anonymous\20namespace\29::SDFTSubRun::doFlatten\28SkWriteBuffer&\29\20const +12457:\28anonymous\20namespace\29::SDFTSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +12458:\28anonymous\20namespace\29::RectsBlurRec::~RectsBlurRec\28\29_3632 +12459:\28anonymous\20namespace\29::RectsBlurRec::getCategory\28\29\20const +12460:\28anonymous\20namespace\29::RectsBlurRec::diagnostic_only_getDiscardable\28\29\20const +12461:\28anonymous\20namespace\29::RectsBlurRec::bytesUsed\28\29\20const +12462:\28anonymous\20namespace\29::RectsBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +12463:\28anonymous\20namespace\29::RasterShaderBlurAlgorithm::makeDevice\28SkImageInfo\20const&\29\20const +12464:\28anonymous\20namespace\29::RasterBlurEngine::findAlgorithm\28SkSize\2c\20SkColorType\29\20const +12465:\28anonymous\20namespace\29::RasterA8BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +12466:\28anonymous\20namespace\29::Raster8888BlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +12467:\28anonymous\20namespace\29::RRectBlurRec::~RRectBlurRec\28\29_3626 +12468:\28anonymous\20namespace\29::RRectBlurRec::getCategory\28\29\20const +12469:\28anonymous\20namespace\29::RRectBlurRec::diagnostic_only_getDiscardable\28\29\20const +12470:\28anonymous\20namespace\29::RRectBlurRec::bytesUsed\28\29\20const +12471:\28anonymous\20namespace\29::RRectBlurRec::Visitor\28SkResourceCache::Rec\20const&\2c\20void*\29 +12472:\28anonymous\20namespace\29::PathSubRun::~PathSubRun\28\29_13324 +12473:\28anonymous\20namespace\29::PathSubRun::unflattenSize\28\29\20const +12474:\28anonymous\20namespace\29::PathSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +12475:\28anonymous\20namespace\29::PathSubRun::doFlatten\28SkWriteBuffer&\29\20const +12476:\28anonymous\20namespace\29::MipMapRec::~MipMapRec\28\29_2261 +12477:\28anonymous\20namespace\29::MipMapRec::getCategory\28\29\20const +12478:\28anonymous\20namespace\29::MipMapRec::diagnostic_only_getDiscardable\28\29\20const +12479:\28anonymous\20namespace\29::MipMapRec::bytesUsed\28\29\20const +12480:\28anonymous\20namespace\29::MipMapRec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +12481:\28anonymous\20namespace\29::MiddleOutShader::~MiddleOutShader\28\29_12572 +12482:\28anonymous\20namespace\29::MiddleOutShader::name\28\29\20const +12483:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::emitVertexCode\28GrShaderCaps\20const&\2c\20GrPathTessellationShader\20const&\2c\20GrGLSLVertexBuilder*\2c\20GrGLSLVaryingHandler*\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12484:\28anonymous\20namespace\29::MiddleOutShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12485:\28anonymous\20namespace\29::MiddleOutShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12486:\28anonymous\20namespace\29::MeshOp::~MeshOp\28\29_11897 +12487:\28anonymous\20namespace\29::MeshOp::visitProxies\28std::__2::function\20const&\29\20const +12488:\28anonymous\20namespace\29::MeshOp::programInfo\28\29 +12489:\28anonymous\20namespace\29::MeshOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12490:\28anonymous\20namespace\29::MeshOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12491:\28anonymous\20namespace\29::MeshOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12492:\28anonymous\20namespace\29::MeshOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12493:\28anonymous\20namespace\29::MeshOp::name\28\29\20const +12494:\28anonymous\20namespace\29::MeshOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12495:\28anonymous\20namespace\29::MeshGP::~MeshGP\28\29_11921 +12496:\28anonymous\20namespace\29::MeshGP::onTextureSampler\28int\29\20const +12497:\28anonymous\20namespace\29::MeshGP::name\28\29\20const +12498:\28anonymous\20namespace\29::MeshGP::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12499:\28anonymous\20namespace\29::MeshGP::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12500:\28anonymous\20namespace\29::MeshGP::Impl::~Impl\28\29_11927 +12501:\28anonymous\20namespace\29::MeshGP::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12502:\28anonymous\20namespace\29::MeshGP::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12503:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +12504:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +12505:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +12506:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +12507:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::getMainName\28\29 +12508:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +12509:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +12510:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +12511:\28anonymous\20namespace\29::MeshGP::Impl::MeshCallbacks::declareFunction\28char\20const*\29 +12512:\28anonymous\20namespace\29::HQDownSampler::buildLevel\28SkPixmap\20const&\2c\20SkPixmap\20const&\29 +12513:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +12514:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +12515:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +12516:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +12517:\28anonymous\20namespace\29::GaussianPass::startBlur\28\29 +12518:\28anonymous\20namespace\29::GaussianPass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +12519:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +12520:\28anonymous\20namespace\29::GaussianPass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +12521:\28anonymous\20namespace\29::FillRectOpImpl::~FillRectOpImpl\28\29_12017 +12522:\28anonymous\20namespace\29::FillRectOpImpl::visitProxies\28std::__2::function\20const&\29\20const +12523:\28anonymous\20namespace\29::FillRectOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +12524:\28anonymous\20namespace\29::FillRectOpImpl::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12525:\28anonymous\20namespace\29::FillRectOpImpl::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12526:\28anonymous\20namespace\29::FillRectOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12527:\28anonymous\20namespace\29::FillRectOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12528:\28anonymous\20namespace\29::FillRectOpImpl::name\28\29\20const +12529:\28anonymous\20namespace\29::FillRectOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12530:\28anonymous\20namespace\29::ExternalWebGLTexture::~ExternalWebGLTexture\28\29_613 +12531:\28anonymous\20namespace\29::ExternalWebGLTexture::getBackendTexture\28\29 +12532:\28anonymous\20namespace\29::ExternalWebGLTexture::dispose\28\29 +12533:\28anonymous\20namespace\29::EllipticalRRectEffect::onMakeProgramImpl\28\29\20const +12534:\28anonymous\20namespace\29::EllipticalRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12535:\28anonymous\20namespace\29::EllipticalRRectEffect::name\28\29\20const +12536:\28anonymous\20namespace\29::EllipticalRRectEffect::clone\28\29\20const +12537:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12538:\28anonymous\20namespace\29::EllipticalRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12539:\28anonymous\20namespace\29::DrawableSubRun::~DrawableSubRun\28\29_13332 +12540:\28anonymous\20namespace\29::DrawableSubRun::unflattenSize\28\29\20const +12541:\28anonymous\20namespace\29::DrawableSubRun::draw\28SkCanvas*\2c\20SkPoint\2c\20SkPaint\20const&\2c\20sk_sp\2c\20std::__2::function\2c\20sktext::gpu::RendererData\29>\20const&\29\20const +12542:\28anonymous\20namespace\29::DrawableSubRun::doFlatten\28SkWriteBuffer&\29\20const +12543:\28anonymous\20namespace\29::DrawAtlasPathShader::~DrawAtlasPathShader\28\29_11868 +12544:\28anonymous\20namespace\29::DrawAtlasPathShader::onTextureSampler\28int\29\20const +12545:\28anonymous\20namespace\29::DrawAtlasPathShader::name\28\29\20const +12546:\28anonymous\20namespace\29::DrawAtlasPathShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12547:\28anonymous\20namespace\29::DrawAtlasPathShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12548:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12549:\28anonymous\20namespace\29::DrawAtlasPathShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12550:\28anonymous\20namespace\29::DrawAtlasOpImpl::~DrawAtlasOpImpl\28\29_11845 +12551:\28anonymous\20namespace\29::DrawAtlasOpImpl::onPrepareDraws\28GrMeshDrawTarget*\29 +12552:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12553:\28anonymous\20namespace\29::DrawAtlasOpImpl::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12554:\28anonymous\20namespace\29::DrawAtlasOpImpl::name\28\29\20const +12555:\28anonymous\20namespace\29::DrawAtlasOpImpl::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12556:\28anonymous\20namespace\29::DirectMaskSubRun::unflattenSize\28\29\20const +12557:\28anonymous\20namespace\29::DirectMaskSubRun::regenerateAtlas\28int\2c\20int\2c\20std::__2::function\20\28sktext::gpu::GlyphVector*\2c\20int\2c\20int\2c\20skgpu::MaskFormat\2c\20int\29>\29\20const +12558:\28anonymous\20namespace\29::DirectMaskSubRun::doFlatten\28SkWriteBuffer&\29\20const +12559:\28anonymous\20namespace\29::DirectMaskSubRun::deviceRectAndNeedsTransform\28SkMatrix\20const&\29\20const +12560:\28anonymous\20namespace\29::DirectMaskSubRun::canReuse\28SkPaint\20const&\2c\20SkMatrix\20const&\29\20const +12561:\28anonymous\20namespace\29::DefaultPathOp::~DefaultPathOp\28\29_11820 +12562:\28anonymous\20namespace\29::DefaultPathOp::visitProxies\28std::__2::function\20const&\29\20const +12563:\28anonymous\20namespace\29::DefaultPathOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12564:\28anonymous\20namespace\29::DefaultPathOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12565:\28anonymous\20namespace\29::DefaultPathOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12566:\28anonymous\20namespace\29::DefaultPathOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12567:\28anonymous\20namespace\29::DefaultPathOp::name\28\29\20const +12568:\28anonymous\20namespace\29::DefaultPathOp::fixedFunctionFlags\28\29\20const +12569:\28anonymous\20namespace\29::DefaultPathOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12570:\28anonymous\20namespace\29::CircularRRectEffect::onMakeProgramImpl\28\29\20const +12571:\28anonymous\20namespace\29::CircularRRectEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +12572:\28anonymous\20namespace\29::CircularRRectEffect::name\28\29\20const +12573:\28anonymous\20namespace\29::CircularRRectEffect::clone\28\29\20const +12574:\28anonymous\20namespace\29::CircularRRectEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +12575:\28anonymous\20namespace\29::CircularRRectEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +12576:\28anonymous\20namespace\29::CachedTessellationsRec::~CachedTessellationsRec\28\29_5852 +12577:\28anonymous\20namespace\29::CachedTessellationsRec::getCategory\28\29\20const +12578:\28anonymous\20namespace\29::CachedTessellationsRec::bytesUsed\28\29\20const +12579:\28anonymous\20namespace\29::CachedTessellations::~CachedTessellations\28\29_5858 +12580:\28anonymous\20namespace\29::CacheImpl::~CacheImpl\28\29_3484 +12581:\28anonymous\20namespace\29::CacheImpl::set\28SkImageFilterCacheKey\20const&\2c\20SkImageFilter\20const*\2c\20skif::FilterResult\20const&\29 +12582:\28anonymous\20namespace\29::CacheImpl::purge\28\29 +12583:\28anonymous\20namespace\29::CacheImpl::purgeByImageFilter\28SkImageFilter\20const*\29 +12584:\28anonymous\20namespace\29::CacheImpl::get\28SkImageFilterCacheKey\20const&\2c\20skif::FilterResult*\29\20const +12585:\28anonymous\20namespace\29::BuilderReceiver::QuadTo\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +12586:\28anonymous\20namespace\29::BuilderReceiver::LineTo\28impeller::TPoint\20const&\29 +12587:\28anonymous\20namespace\29::BuilderReceiver::CubicTo\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\29 +12588:\28anonymous\20namespace\29::BuilderReceiver::ConicTo\28impeller::TPoint\20const&\2c\20impeller::TPoint\20const&\2c\20float\29 +12589:\28anonymous\20namespace\29::BuilderReceiver::Close\28\29 +12590:\28anonymous\20namespace\29::BoundingBoxShader::name\28\29\20const +12591:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +12592:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +12593:\28anonymous\20namespace\29::BoundingBoxShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +12594:\28anonymous\20namespace\29::AAHairlineOp::~AAHairlineOp\28\29_11592 +12595:\28anonymous\20namespace\29::AAHairlineOp::visitProxies\28std::__2::function\20const&\29\20const +12596:\28anonymous\20namespace\29::AAHairlineOp::onPrepareDraws\28GrMeshDrawTarget*\29 +12597:\28anonymous\20namespace\29::AAHairlineOp::onPrePrepareDraws\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12598:\28anonymous\20namespace\29::AAHairlineOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +12599:\28anonymous\20namespace\29::AAHairlineOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +12600:\28anonymous\20namespace\29::AAHairlineOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +12601:\28anonymous\20namespace\29::AAHairlineOp::name\28\29\20const +12602:\28anonymous\20namespace\29::AAHairlineOp::fixedFunctionFlags\28\29\20const +12603:\28anonymous\20namespace\29::AAHairlineOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +12604:\28anonymous\20namespace\29::A8Pass::startBlur\28\29 +12605:\28anonymous\20namespace\29::A8Pass::blurSegment\28int\2c\20void\20const*\2c\20int\2c\20void*\2c\20int\29 +12606:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::makePass\28void*\2c\20SkArenaAlloc*\29\20const +12607:\28anonymous\20namespace\29::A8Pass::MakeMaker\28float\2c\20SkArenaAlloc*\29::Maker::bufferSizeBytes\28\29\20const +12608:YuvToRgbaRow +12609:YuvToRgba4444Row +12610:YuvToRgbRow +12611:YuvToRgb565Row +12612:YuvToBgraRow +12613:YuvToBgrRow +12614:YuvToArgbRow +12615:Write_CVT_Stretched +12616:Write_CVT +12617:WebPYuv444ToRgba_C +12618:WebPYuv444ToRgba4444_C +12619:WebPYuv444ToRgb_C +12620:WebPYuv444ToRgb565_C +12621:WebPYuv444ToBgra_C +12622:WebPYuv444ToBgr_C +12623:WebPYuv444ToArgb_C +12624:WebPRescalerImportRowShrink_C +12625:WebPRescalerImportRowExpand_C +12626:WebPRescalerExportRowShrink_C +12627:WebPRescalerExportRowExpand_C +12628:Vertish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +12629:Vertish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +12630:VerticalUnfilter_C +12631:VertState::Triangles\28VertState*\29 +12632:VertState::TrianglesX\28VertState*\29 +12633:VertState::TriangleStrip\28VertState*\29 +12634:VertState::TriangleStripX\28VertState*\29 +12635:VertState::TriangleFan\28VertState*\29 +12636:VertState::TriangleFanX\28VertState*\29 +12637:VR4_C +12638:VLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +12639:VLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +12640:VL4_C +12641:VE8uv_C +12642:VE4_C +12643:VE16_C +12644:UpsampleRgbaLinePair_C +12645:UpsampleRgba4444LinePair_C +12646:UpsampleRgbLinePair_C +12647:UpsampleRgb565LinePair_C +12648:UpsampleBgraLinePair_C +12649:UpsampleBgrLinePair_C +12650:UpsampleArgbLinePair_C +12651:TransformUV_C +12652:TransformDCUV_C +12653:TimeZoneDataDirInitFn\28UErrorCode&\29 +12654:TextureSourceImageGenerator::~TextureSourceImageGenerator\28\29_594 +12655:TextureSourceImageGenerator::generateExternalTexture\28GrRecordingContext*\2c\20skgpu::Mipmapped\29 +12656:TT_Set_MM_Blend +12657:TT_RunIns +12658:TT_Load_Simple_Glyph +12659:TT_Load_Glyph_Header +12660:TT_Load_Composite_Glyph +12661:TT_Get_Var_Design +12662:TT_Get_MM_Blend +12663:TT_Forget_Glyph_Frame +12664:TT_Access_Glyph_Frame +12665:TOUPPER\28unsigned\20char\29 +12666:TOLOWER\28unsigned\20char\29 +12667:TM8uv_C +12668:TM4_C +12669:TM16_C +12670:SquareCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +12671:Sprite_D32_S32::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12672:Skwasm::Surface::Surface\28\29::$_0::__invoke\28\29 +12673:SkWuffsFrameHolder::onGetFrame\28int\29\20const +12674:SkWuffsCodec::~SkWuffsCodec\28\29_13735 +12675:SkWuffsCodec::onIsAnimated\28\29 +12676:SkWuffsCodec::onGetRepetitionCount\28\29 +12677:SkWuffsCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +12678:SkWuffsCodec::onGetFrameInfo\28int\2c\20SkCodec::FrameInfo*\29\20const +12679:SkWuffsCodec::onGetFrameCount\28\29 +12680:SkWuffsCodec::getFrameHolder\28\29\20const +12681:SkWuffsCodec::getEncodedData\28\29\20const +12682:SkWebpCodec::~SkWebpCodec\28\29_13466 +12683:SkWebpCodec::onIsAnimated\28\29 +12684:SkWebpCodec::onGetValidSubset\28SkIRect*\29\20const +12685:SkWebpCodec::onGetRepetitionCount\28\29 +12686:SkWebpCodec::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\2c\20int*\29 +12687:SkWebpCodec::onGetFrameInfo\28int\2c\20SkCodec::FrameInfo*\29\20const +12688:SkWebpCodec::onGetFrameCount\28\29 +12689:SkWebpCodec::getFrameHolder\28\29\20const +12690:SkWebpCodec::FrameHolder::~FrameHolder\28\29_13463 +12691:SkWebpCodec::FrameHolder::onGetFrame\28int\29\20const +12692:SkWeakRefCnt::internal_dispose\28\29\20const +12693:SkUnicode_icu::~SkUnicode_icu\28\29_8657 +12694:SkUnicode_icu::toUpper\28SkString\20const&\2c\20char\20const*\29 +12695:SkUnicode_icu::toUpper\28SkString\20const&\29 +12696:SkUnicode_icu::reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29 +12697:SkUnicode_icu::makeBreakIterator\28char\20const*\2c\20SkUnicode::BreakType\29 +12698:SkUnicode_icu::makeBreakIterator\28SkUnicode::BreakType\29 +12699:SkUnicode_icu::makeBidiIterator\28unsigned\20short\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +12700:SkUnicode_icu::makeBidiIterator\28char\20const*\2c\20int\2c\20SkBidiIterator::Direction\29 +12701:SkUnicode_icu::isWhitespace\28int\29 +12702:SkUnicode_icu::isTabulation\28int\29 +12703:SkUnicode_icu::isSpace\28int\29 +12704:SkUnicode_icu::isRegionalIndicator\28int\29 +12705:SkUnicode_icu::isIdeographic\28int\29 +12706:SkUnicode_icu::isHardBreak\28int\29 +12707:SkUnicode_icu::isEmoji\28int\29 +12708:SkUnicode_icu::isEmojiModifier\28int\29 +12709:SkUnicode_icu::isEmojiModifierBase\28int\29 +12710:SkUnicode_icu::isEmojiComponent\28int\29 +12711:SkUnicode_icu::isControl\28int\29 +12712:SkUnicode_icu::getWords\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +12713:SkUnicode_icu::getUtf8Words\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +12714:SkUnicode_icu::getSentences\28char\20const*\2c\20int\2c\20char\20const*\2c\20std::__2::vector>*\29 +12715:SkUnicode_icu::getBidiRegions\28char\20const*\2c\20int\2c\20SkUnicode::TextDirection\2c\20std::__2::vector>*\29 +12716:SkUnicode_icu::computeCodeUnitFlags\28char16_t*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +12717:SkUnicode_icu::computeCodeUnitFlags\28char*\2c\20int\2c\20bool\2c\20skia_private::TArray*\29 +12718:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29_15090 +12719:SkUnicodeBidiRunIterator::~SkUnicodeBidiRunIterator\28\29 +12720:SkUnicodeBidiRunIterator::endOfCurrentRun\28\29\20const +12721:SkUnicodeBidiRunIterator::currentLevel\28\29\20const +12722:SkUnicodeBidiRunIterator::consume\28\29 +12723:SkUnicodeBidiRunIterator::atEnd\28\29\20const +12724:SkTypeface_FreeTypeStream::~SkTypeface_FreeTypeStream\28\29_8937 +12725:SkTypeface_FreeTypeStream::onOpenStream\28int*\29\20const +12726:SkTypeface_FreeTypeStream::onMakeFontData\28\29\20const +12727:SkTypeface_FreeTypeStream::onMakeClone\28SkFontArguments\20const&\29\20const +12728:SkTypeface_FreeTypeStream::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +12729:SkTypeface_FreeType::onGlyphMaskNeedsCurrentColor\28\29\20const +12730:SkTypeface_FreeType::onGetVariationDesignPosition\28SkSpan\29\20const +12731:SkTypeface_FreeType::onGetVariationDesignParameters\28SkSpan\29\20const +12732:SkTypeface_FreeType::onGetUPEM\28\29\20const +12733:SkTypeface_FreeType::onGetTableTags\28SkSpan\29\20const +12734:SkTypeface_FreeType::onGetTableData\28unsigned\20int\2c\20unsigned\20long\2c\20unsigned\20long\2c\20void*\29\20const +12735:SkTypeface_FreeType::onGetPostScriptName\28SkString*\29\20const +12736:SkTypeface_FreeType::onGetKerningPairAdjustments\28SkSpan\2c\20SkSpan\29\20const +12737:SkTypeface_FreeType::onGetAdvancedMetrics\28\29\20const +12738:SkTypeface_FreeType::onFilterRec\28SkScalerContextRec*\29\20const +12739:SkTypeface_FreeType::onCreateScalerContext\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29\20const +12740:SkTypeface_FreeType::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +12741:SkTypeface_FreeType::onCreateFamilyNameIterator\28\29\20const +12742:SkTypeface_FreeType::onCountGlyphs\28\29\20const +12743:SkTypeface_FreeType::onCopyTableData\28unsigned\20int\29\20const +12744:SkTypeface_FreeType::onCharsToGlyphs\28SkSpan\2c\20SkSpan\29\20const +12745:SkTypeface_FreeType::getPostScriptGlyphNames\28SkString*\29\20const +12746:SkTypeface_FreeType::getGlyphToUnicodeMap\28SkSpan\29\20const +12747:SkTypeface_Empty::~SkTypeface_Empty\28\29 +12748:SkTypeface_Custom::onGetFontDescriptor\28SkFontDescriptor*\2c\20bool*\29\20const +12749:SkTypeface::onOpenExistingStream\28int*\29\20const +12750:SkTypeface::onCreateScalerContextAsProxyTypeface\28SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\2c\20SkTypeface*\29\20const +12751:SkTypeface::onCopyTableData\28unsigned\20int\29\20const +12752:SkTypeface::onComputeBounds\28SkRect*\29\20const +12753:SkTriColorShader::type\28\29\20const +12754:SkTriColorShader::isOpaque\28\29\20const +12755:SkTriColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +12756:SkTransformShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +12757:SkTQuad::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +12758:SkTQuad::setBounds\28SkDRect*\29\20const +12759:SkTQuad::ptAtT\28double\29\20const +12760:SkTQuad::make\28SkArenaAlloc&\29\20const +12761:SkTQuad::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +12762:SkTQuad::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +12763:SkTQuad::dxdyAtT\28double\29\20const +12764:SkTQuad::debugInit\28\29 +12765:SkTMaskGamma<3\2c\203\2c\203>::~SkTMaskGamma\28\29_4992 +12766:SkTCubic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +12767:SkTCubic::setBounds\28SkDRect*\29\20const +12768:SkTCubic::ptAtT\28double\29\20const +12769:SkTCubic::otherPts\28int\2c\20SkDPoint\20const**\29\20const +12770:SkTCubic::maxIntersections\28\29\20const +12771:SkTCubic::make\28SkArenaAlloc&\29\20const +12772:SkTCubic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +12773:SkTCubic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +12774:SkTCubic::hullIntersects\28SkDCubic\20const&\2c\20bool*\29\20const +12775:SkTCubic::dxdyAtT\28double\29\20const +12776:SkTCubic::debugInit\28\29 +12777:SkTCubic::controlsInside\28\29\20const +12778:SkTCubic::collapsed\28\29\20const +12779:SkTConic::subDivide\28double\2c\20double\2c\20SkTCurve*\29\20const +12780:SkTConic::setBounds\28SkDRect*\29\20const +12781:SkTConic::ptAtT\28double\29\20const +12782:SkTConic::make\28SkArenaAlloc&\29\20const +12783:SkTConic::intersectRay\28SkIntersections*\2c\20SkDLine\20const&\29\20const +12784:SkTConic::hullIntersects\28SkTCurve\20const&\2c\20bool*\29\20const +12785:SkTConic::hullIntersects\28SkDQuad\20const&\2c\20bool*\29\20const +12786:SkTConic::dxdyAtT\28double\29\20const +12787:SkTConic::debugInit\28\29 +12788:SkSynchronizedResourceCache::~SkSynchronizedResourceCache\28\29_5299 +12789:SkSynchronizedResourceCache::visitAll\28void\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +12790:SkSynchronizedResourceCache::setTotalByteLimit\28unsigned\20long\29 +12791:SkSynchronizedResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +12792:SkSynchronizedResourceCache::purgeAll\28\29 +12793:SkSynchronizedResourceCache::newCachedData\28unsigned\20long\29 +12794:SkSynchronizedResourceCache::getTotalBytesUsed\28\29\20const +12795:SkSynchronizedResourceCache::getTotalByteLimit\28\29\20const +12796:SkSynchronizedResourceCache::getSingleAllocationByteLimit\28\29\20const +12797:SkSynchronizedResourceCache::getEffectiveSingleAllocationByteLimit\28\29\20const +12798:SkSynchronizedResourceCache::find\28SkResourceCache::Key\20const&\2c\20bool\20\28*\29\28SkResourceCache::Rec\20const&\2c\20void*\29\2c\20void*\29 +12799:SkSynchronizedResourceCache::dump\28\29\20const +12800:SkSynchronizedResourceCache::discardableFactory\28\29\20const +12801:SkSynchronizedResourceCache::add\28SkResourceCache::Rec*\2c\20void*\29 +12802:SkSweepGradient::getTypeName\28\29\20const +12803:SkSweepGradient::flatten\28SkWriteBuffer&\29\20const +12804:SkSweepGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +12805:SkSweepGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +12806:SkSurface_Raster::~SkSurface_Raster\28\29_5552 +12807:SkSurface_Raster::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +12808:SkSurface_Raster::onRestoreBackingMutability\28\29 +12809:SkSurface_Raster::onNewSurface\28SkImageInfo\20const&\29 +12810:SkSurface_Raster::onNewImageSnapshot\28SkIRect\20const*\29 +12811:SkSurface_Raster::onNewCanvas\28\29 +12812:SkSurface_Raster::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +12813:SkSurface_Raster::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +12814:SkSurface_Raster::imageInfo\28\29\20const +12815:SkSurface_Ganesh::~SkSurface_Ganesh\28\29_12550 +12816:SkSurface_Ganesh::replaceBackendTexture\28GrBackendTexture\20const&\2c\20GrSurfaceOrigin\2c\20SkSurface::ContentChangeMode\2c\20void\20\28*\29\28void*\29\2c\20void*\29 +12817:SkSurface_Ganesh::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +12818:SkSurface_Ganesh::onWait\28int\2c\20GrBackendSemaphore\20const*\2c\20bool\29 +12819:SkSurface_Ganesh::onNewSurface\28SkImageInfo\20const&\29 +12820:SkSurface_Ganesh::onNewImageSnapshot\28SkIRect\20const*\29 +12821:SkSurface_Ganesh::onNewCanvas\28\29 +12822:SkSurface_Ganesh::onIsCompatible\28GrSurfaceCharacterization\20const&\29\20const +12823:SkSurface_Ganesh::onGetRecordingContext\28\29\20const +12824:SkSurface_Ganesh::onDraw\28SkCanvas*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +12825:SkSurface_Ganesh::onCopyOnWrite\28SkSurface::ContentChangeMode\29 +12826:SkSurface_Ganesh::onCharacterize\28GrSurfaceCharacterization*\29\20const +12827:SkSurface_Ganesh::onCapabilities\28\29 +12828:SkSurface_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +12829:SkSurface_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +12830:SkSurface_Ganesh::imageInfo\28\29\20const +12831:SkSurface_Base::onMakeTemporaryImage\28\29 +12832:SkSurface_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29 +12833:SkSurface::imageInfo\28\29\20const +12834:SkStrikeCache::~SkStrikeCache\28\29_5215 +12835:SkStrikeCache::findOrCreateScopedStrike\28SkStrikeSpec\20const&\29 +12836:SkStrike::~SkStrike\28\29_5200 +12837:SkStrike::strikePromise\28\29 +12838:SkStrike::roundingSpec\28\29\20const +12839:SkStrike::getDescriptor\28\29\20const +12840:SkSpriteBlitter_Memcpy::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +12841:SkSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +12842:SkSpriteBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +12843:SkSpriteBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +12844:SkSpriteBlitter::blitH\28int\2c\20int\2c\20int\29 +12845:SkSpecialImage_Raster::~SkSpecialImage_Raster\28\29_5138 +12846:SkSpecialImage_Raster::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +12847:SkSpecialImage_Raster::getSize\28\29\20const +12848:SkSpecialImage_Raster::backingStoreDimensions\28\29\20const +12849:SkSpecialImage_Raster::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +12850:SkSpecialImage_Raster::asImage\28\29\20const +12851:SkSpecialImage_Gpu::~SkSpecialImage_Gpu\28\29_11514 +12852:SkSpecialImage_Gpu::onMakeBackingStoreSubset\28SkIRect\20const&\29\20const +12853:SkSpecialImage_Gpu::getSize\28\29\20const +12854:SkSpecialImage_Gpu::backingStoreDimensions\28\29\20const +12855:SkSpecialImage_Gpu::asImage\28\29\20const +12856:SkSpecialImage::asShader\28SkTileMode\2c\20SkSamplingOptions\20const&\2c\20SkMatrix\20const&\2c\20bool\29\20const +12857:SkShaper::TrivialLanguageRunIterator::~TrivialLanguageRunIterator\28\29_15083 +12858:SkShaper::TrivialLanguageRunIterator::currentLanguage\28\29\20const +12859:SkShaper::TrivialFontRunIterator::~TrivialFontRunIterator\28\29_8155 +12860:SkShaper::TrivialBiDiRunIterator::currentLevel\28\29\20const +12861:SkShaderBlurAlgorithm::maxSigma\28\29\20const +12862:SkShaderBlurAlgorithm::blur\28SkSize\2c\20sk_sp\2c\20SkIRect\20const&\2c\20SkTileMode\2c\20SkIRect\20const&\29\20const +12863:SkScan::HairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +12864:SkScan::HairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +12865:SkScan::HairPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +12866:SkScan::AntiHairSquarePath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +12867:SkScan::AntiHairRoundPath\28SkPathRaw\20const&\2c\20SkRasterClip\20const&\2c\20SkBlitter*\29 +12868:SkScalingCodec::onGetScaledDimensions\28float\29\20const +12869:SkScalingCodec::onDimensionsSupported\28SkISize\20const&\29 +12870:SkScalerContext_FreeType::~SkScalerContext_FreeType\28\29_8873 +12871:SkScalerContext_FreeType::generatePath\28SkGlyph\20const&\29 +12872:SkScalerContext_FreeType::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +12873:SkScalerContext_FreeType::generateImage\28SkGlyph\20const&\2c\20void*\29 +12874:SkScalerContext_FreeType::generateFontMetrics\28SkFontMetrics*\29 +12875:SkScalerContext_FreeType::generateDrawable\28SkGlyph\20const&\29 +12876:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::~SkScalerContext_Empty\28\29 +12877:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generatePath\28SkGlyph\20const&\29 +12878:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateMetrics\28SkGlyph\20const&\2c\20SkArenaAlloc*\29 +12879:SkScalerContext::MakeEmpty\28SkTypeface&\2c\20SkScalerContextEffects\20const&\2c\20SkDescriptor\20const*\29::SkScalerContext_Empty::generateFontMetrics\28SkFontMetrics*\29 +12880:SkSampledCodec::onGetSampledDimensions\28int\29\20const +12881:SkSampledCodec::onGetAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +12882:SkSRGBColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +12883:SkSRGBColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +12884:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_3::__invoke\28double\2c\20double\29 +12885:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_2::__invoke\28double\2c\20double\29 +12886:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_1::__invoke\28double\2c\20double\29 +12887:SkSL::simplify_componentwise\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::Expression\20const&\2c\20SkSL::Operator\2c\20SkSL::Expression\20const&\29::$_0::__invoke\28double\2c\20double\29 +12888:SkSL::negate_value\28double\29 +12889:SkSL::eliminate_unreachable_code\28SkSpan>>\2c\20SkSL::ProgramUsage*\29::UnreachableCodeEliminator::~UnreachableCodeEliminator\28\29_7517 +12890:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::~DeadLocalVariableEliminator\28\29_7514 +12891:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitStatementPtr\28std::__2::unique_ptr>&\29 +12892:SkSL::eliminate_dead_local_variables\28SkSL::Context\20const&\2c\20SkSpan>>\2c\20SkSL::ProgramUsage*\29::DeadLocalVariableEliminator::visitExpressionPtr\28std::__2::unique_ptr>&\29 +12893:SkSL::count_returns_at_end_of_control_flow\28SkSL::FunctionDefinition\20const&\29::CountReturnsAtEndOfControlFlow::visitStatement\28SkSL::Statement\20const&\29 +12894:SkSL::bitwise_not_value\28double\29 +12895:SkSL::\28anonymous\20namespace\29::VariableWriteVisitor::visitExpression\28SkSL::Expression\20const&\29 +12896:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +12897:SkSL::\28anonymous\20namespace\29::SampleOutsideMainVisitor::visitExpression\28SkSL::Expression\20const&\29 +12898:SkSL::\28anonymous\20namespace\29::ReturnsNonOpaqueColorVisitor::visitStatement\28SkSL::Statement\20const&\29 +12899:SkSL::\28anonymous\20namespace\29::ReturnsInputAlphaVisitor::visitStatement\28SkSL::Statement\20const&\29 +12900:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +12901:SkSL::\28anonymous\20namespace\29::NodeCountVisitor::visitExpression\28SkSL::Expression\20const&\29 +12902:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitProgramElement\28SkSL::ProgramElement\20const&\29 +12903:SkSL::\28anonymous\20namespace\29::MergeSampleUsageVisitor::visitExpression\28SkSL::Expression\20const&\29 +12904:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::~FinalizationVisitor\28\29_6680 +12905:SkSL::\28anonymous\20namespace\29::FinalizationVisitor::visitExpression\28SkSL::Expression\20const&\29 +12906:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::~ES2IndexingVisitor\28\29_6703 +12907:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitStatement\28SkSL::Statement\20const&\29 +12908:SkSL::\28anonymous\20namespace\29::ES2IndexingVisitor::visitExpression\28SkSL::Expression\20const&\29 +12909:SkSL::VectorType::isOrContainsBool\28\29\20const +12910:SkSL::VectorType::isAllowedInUniform\28SkSL::Position*\29\20const +12911:SkSL::VectorType::isAllowedInES2\28\29\20const +12912:SkSL::VariableReference::clone\28SkSL::Position\29\20const +12913:SkSL::Variable::~Variable\28\29_7483 +12914:SkSL::Variable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +12915:SkSL::Variable::mangledName\28\29\20const +12916:SkSL::Variable::layout\28\29\20const +12917:SkSL::Variable::description\28\29\20const +12918:SkSL::VarDeclaration::~VarDeclaration\28\29_7481 +12919:SkSL::VarDeclaration::description\28\29\20const +12920:SkSL::TypeReference::clone\28SkSL::Position\29\20const +12921:SkSL::Type::minimumValue\28\29\20const +12922:SkSL::Type::maximumValue\28\29\20const +12923:SkSL::Type::matches\28SkSL::Type\20const&\29\20const +12924:SkSL::Type::isAllowedInUniform\28SkSL::Position*\29\20const +12925:SkSL::Type::fields\28\29\20const +12926:SkSL::Type::description\28\29\20const +12927:SkSL::Transform::HoistSwitchVarDeclarationsAtTopLevel\28SkSL::Context\20const&\2c\20skia_private::STArray<2\2c\20std::__2::unique_ptr>\2c\20true>&\2c\20SkSL::SymbolTable&\2c\20SkSL::Position\29::HoistSwitchVarDeclsVisitor::~HoistSwitchVarDeclsVisitor\28\29_7531 +12928:SkSL::Tracer::var\28int\2c\20int\29 +12929:SkSL::Tracer::scope\28int\29 +12930:SkSL::Tracer::line\28int\29 +12931:SkSL::Tracer::exit\28int\29 +12932:SkSL::Tracer::enter\28int\29 +12933:SkSL::TextureType::textureAccess\28\29\20const +12934:SkSL::TextureType::isMultisampled\28\29\20const +12935:SkSL::TextureType::isDepth\28\29\20const +12936:SkSL::TernaryExpression::~TernaryExpression\28\29_7296 +12937:SkSL::TernaryExpression::description\28SkSL::OperatorPrecedence\29\20const +12938:SkSL::TernaryExpression::clone\28SkSL::Position\29\20const +12939:SkSL::TProgramVisitor::visitExpression\28SkSL::Expression&\29 +12940:SkSL::Swizzle::description\28SkSL::OperatorPrecedence\29\20const +12941:SkSL::Swizzle::clone\28SkSL::Position\29\20const +12942:SkSL::SwitchStatement::description\28\29\20const +12943:SkSL::SwitchCase::description\28\29\20const +12944:SkSL::StructType::slotType\28unsigned\20long\29\20const +12945:SkSL::StructType::isOrContainsUnsizedArray\28\29\20const +12946:SkSL::StructType::isOrContainsBool\28\29\20const +12947:SkSL::StructType::isOrContainsAtomic\28\29\20const +12948:SkSL::StructType::isOrContainsArray\28\29\20const +12949:SkSL::StructType::isInterfaceBlock\28\29\20const +12950:SkSL::StructType::isBuiltin\28\29\20const +12951:SkSL::StructType::isAllowedInUniform\28SkSL::Position*\29\20const +12952:SkSL::StructType::isAllowedInES2\28\29\20const +12953:SkSL::StructType::fields\28\29\20const +12954:SkSL::StructDefinition::description\28\29\20const +12955:SkSL::StringStream::~StringStream\28\29_13398 +12956:SkSL::StringStream::write\28void\20const*\2c\20unsigned\20long\29 +12957:SkSL::StringStream::writeText\28char\20const*\29 +12958:SkSL::StringStream::write8\28unsigned\20char\29 +12959:SkSL::Setting::description\28SkSL::OperatorPrecedence\29\20const +12960:SkSL::Setting::clone\28SkSL::Position\29\20const +12961:SkSL::ScalarType::priority\28\29\20const +12962:SkSL::ScalarType::numberKind\28\29\20const +12963:SkSL::ScalarType::minimumValue\28\29\20const +12964:SkSL::ScalarType::maximumValue\28\29\20const +12965:SkSL::ScalarType::isOrContainsBool\28\29\20const +12966:SkSL::ScalarType::isAllowedInUniform\28SkSL::Position*\29\20const +12967:SkSL::ScalarType::isAllowedInES2\28\29\20const +12968:SkSL::ScalarType::bitWidth\28\29\20const +12969:SkSL::SamplerType::textureAccess\28\29\20const +12970:SkSL::SamplerType::isMultisampled\28\29\20const +12971:SkSL::SamplerType::isDepth\28\29\20const +12972:SkSL::SamplerType::isArrayedTexture\28\29\20const +12973:SkSL::SamplerType::dimensions\28\29\20const +12974:SkSL::ReturnStatement::description\28\29\20const +12975:SkSL::RP::VariableLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12976:SkSL::RP::VariableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12977:SkSL::RP::VariableLValue::isWritable\28\29\20const +12978:SkSL::RP::UnownedLValueSlice::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12979:SkSL::RP::UnownedLValueSlice::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12980:SkSL::RP::UnownedLValueSlice::fixedSlotRange\28SkSL::RP::Generator*\29 +12981:SkSL::RP::SwizzleLValue::~SwizzleLValue\28\29_6973 +12982:SkSL::RP::SwizzleLValue::swizzle\28\29 +12983:SkSL::RP::SwizzleLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12984:SkSL::RP::SwizzleLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12985:SkSL::RP::SwizzleLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +12986:SkSL::RP::ScratchLValue::~ScratchLValue\28\29_6869 +12987:SkSL::RP::ScratchLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12988:SkSL::RP::ScratchLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +12989:SkSL::RP::LValueSlice::~LValueSlice\28\29_6971 +12990:SkSL::RP::ImmutableLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12991:SkSL::RP::DynamicIndexLValue::~DynamicIndexLValue\28\29_6965 +12992:SkSL::RP::DynamicIndexLValue::store\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12993:SkSL::RP::DynamicIndexLValue::push\28SkSL::RP::Generator*\2c\20SkSL::RP::SlotRange\2c\20SkSL::RP::AutoStack*\2c\20SkSpan\29 +12994:SkSL::RP::DynamicIndexLValue::isWritable\28\29\20const +12995:SkSL::RP::DynamicIndexLValue::fixedSlotRange\28SkSL::RP::Generator*\29 +12996:SkSL::ProgramVisitor::visitStatementPtr\28std::__2::unique_ptr>\20const&\29 +12997:SkSL::ProgramVisitor::visitExpressionPtr\28std::__2::unique_ptr>\20const&\29 +12998:SkSL::PrefixExpression::~PrefixExpression\28\29_7256 +12999:SkSL::PrefixExpression::~PrefixExpression\28\29 +13000:SkSL::PrefixExpression::description\28SkSL::OperatorPrecedence\29\20const +13001:SkSL::PrefixExpression::clone\28SkSL::Position\29\20const +13002:SkSL::PostfixExpression::description\28SkSL::OperatorPrecedence\29\20const +13003:SkSL::PostfixExpression::clone\28SkSL::Position\29\20const +13004:SkSL::Poison::description\28SkSL::OperatorPrecedence\29\20const +13005:SkSL::Poison::clone\28SkSL::Position\29\20const +13006:SkSL::PipelineStage::Callbacks::getMainName\28\29 +13007:SkSL::Parser::Checkpoint::ForwardingErrorReporter::~ForwardingErrorReporter\28\29_6638 +13008:SkSL::Parser::Checkpoint::ForwardingErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +13009:SkSL::Nop::description\28\29\20const +13010:SkSL::ModifiersDeclaration::description\28\29\20const +13011:SkSL::MethodReference::description\28SkSL::OperatorPrecedence\29\20const +13012:SkSL::MethodReference::clone\28SkSL::Position\29\20const +13013:SkSL::MatrixType::slotCount\28\29\20const +13014:SkSL::MatrixType::rows\28\29\20const +13015:SkSL::MatrixType::isAllowedInES2\28\29\20const +13016:SkSL::LiteralType::minimumValue\28\29\20const +13017:SkSL::LiteralType::maximumValue\28\29\20const +13018:SkSL::LiteralType::isOrContainsBool\28\29\20const +13019:SkSL::Literal::getConstantValue\28int\29\20const +13020:SkSL::Literal::description\28SkSL::OperatorPrecedence\29\20const +13021:SkSL::Literal::compareConstant\28SkSL::Expression\20const&\29\20const +13022:SkSL::Literal::clone\28SkSL::Position\29\20const +13023:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_uintBitsToFloat\28double\2c\20double\2c\20double\29 +13024:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_trunc\28double\2c\20double\2c\20double\29 +13025:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tanh\28double\2c\20double\2c\20double\29 +13026:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_tan\28double\2c\20double\2c\20double\29 +13027:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sub\28double\2c\20double\2c\20double\29 +13028:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_step\28double\2c\20double\2c\20double\29 +13029:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sqrt\28double\2c\20double\2c\20double\29 +13030:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_smoothstep\28double\2c\20double\2c\20double\29 +13031:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sinh\28double\2c\20double\2c\20double\29 +13032:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sin\28double\2c\20double\2c\20double\29 +13033:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_sign\28double\2c\20double\2c\20double\29 +13034:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_saturate\28double\2c\20double\2c\20double\29 +13035:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_round\28double\2c\20double\2c\20double\29 +13036:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_radians\28double\2c\20double\2c\20double\29 +13037:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_pow\28double\2c\20double\2c\20double\29 +13038:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_opposite_sign\28double\2c\20double\2c\20double\29 +13039:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_not\28double\2c\20double\2c\20double\29 +13040:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mod\28double\2c\20double\2c\20double\29 +13041:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_mix\28double\2c\20double\2c\20double\29 +13042:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_min\28double\2c\20double\2c\20double\29 +13043:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_max\28double\2c\20double\2c\20double\29 +13044:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log\28double\2c\20double\2c\20double\29 +13045:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_log2\28double\2c\20double\2c\20double\29 +13046:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_inversesqrt\28double\2c\20double\2c\20double\29 +13047:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_intBitsToFloat\28double\2c\20double\2c\20double\29 +13048:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fract\28double\2c\20double\2c\20double\29 +13049:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_fma\28double\2c\20double\2c\20double\29 +13050:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floor\28double\2c\20double\2c\20double\29 +13051:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToUint\28double\2c\20double\2c\20double\29 +13052:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_floatBitsToInt\28double\2c\20double\2c\20double\29 +13053:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp\28double\2c\20double\2c\20double\29 +13054:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_exp2\28double\2c\20double\2c\20double\29 +13055:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_div\28double\2c\20double\2c\20double\29 +13056:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_degrees\28double\2c\20double\2c\20double\29 +13057:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cosh\28double\2c\20double\2c\20double\29 +13058:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_cos\28double\2c\20double\2c\20double\29 +13059:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_clamp\28double\2c\20double\2c\20double\29 +13060:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_ceil\28double\2c\20double\2c\20double\29 +13061:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atanh\28double\2c\20double\2c\20double\29 +13062:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan\28double\2c\20double\2c\20double\29 +13063:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_atan2\28double\2c\20double\2c\20double\29 +13064:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asinh\28double\2c\20double\2c\20double\29 +13065:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_asin\28double\2c\20double\2c\20double\29 +13066:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_add\28double\2c\20double\2c\20double\29 +13067:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acosh\28double\2c\20double\2c\20double\29 +13068:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_acos\28double\2c\20double\2c\20double\29 +13069:SkSL::Intrinsics::\28anonymous\20namespace\29::evaluate_abs\28double\2c\20double\2c\20double\29 +13070:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_notEqual\28double\2c\20double\29 +13071:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThan\28double\2c\20double\29 +13072:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_lessThanEqual\28double\2c\20double\29 +13073:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThan\28double\2c\20double\29 +13074:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_greaterThanEqual\28double\2c\20double\29 +13075:SkSL::Intrinsics::\28anonymous\20namespace\29::compare_equal\28double\2c\20double\29 +13076:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_length\28double\2c\20double\2c\20double\29 +13077:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_dot\28double\2c\20double\2c\20double\29 +13078:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_distance\28double\2c\20double\2c\20double\29 +13079:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_any\28double\2c\20double\2c\20double\29 +13080:SkSL::Intrinsics::\28anonymous\20namespace\29::coalesce_all\28double\2c\20double\2c\20double\29 +13081:SkSL::InterfaceBlock::~InterfaceBlock\28\29_7230 +13082:SkSL::InterfaceBlock::~InterfaceBlock\28\29 +13083:SkSL::InterfaceBlock::description\28\29\20const +13084:SkSL::IndexExpression::~IndexExpression\28\29_7226 +13085:SkSL::IndexExpression::description\28SkSL::OperatorPrecedence\29\20const +13086:SkSL::IndexExpression::clone\28SkSL::Position\29\20const +13087:SkSL::IfStatement::~IfStatement\28\29_7224 +13088:SkSL::IfStatement::description\28\29\20const +13089:SkSL::GlobalVarDeclaration::description\28\29\20const +13090:SkSL::GenericType::slotType\28unsigned\20long\29\20const +13091:SkSL::GenericType::coercibleTypes\28\29\20const +13092:SkSL::GLSLCodeGenerator::~GLSLCodeGenerator\28\29_13455 +13093:SkSL::FunctionReference::description\28SkSL::OperatorPrecedence\29\20const +13094:SkSL::FunctionReference::clone\28SkSL::Position\29\20const +13095:SkSL::FunctionPrototype::description\28\29\20const +13096:SkSL::FunctionDefinition::description\28\29\20const +13097:SkSL::FunctionDefinition::Convert\28SkSL::Context\20const&\2c\20SkSL::Position\2c\20SkSL::FunctionDeclaration\20const&\2c\20std::__2::unique_ptr>\29::Finalizer::~Finalizer\28\29_7219 +13098:SkSL::FunctionCall::description\28SkSL::OperatorPrecedence\29\20const +13099:SkSL::FunctionCall::clone\28SkSL::Position\29\20const +13100:SkSL::ForStatement::~ForStatement\28\29_7096 +13101:SkSL::ForStatement::description\28\29\20const +13102:SkSL::FieldSymbol::description\28\29\20const +13103:SkSL::FieldAccess::clone\28SkSL::Position\29\20const +13104:SkSL::Extension::description\28\29\20const +13105:SkSL::ExtendedVariable::~ExtendedVariable\28\29_7491 +13106:SkSL::ExtendedVariable::setInterfaceBlock\28SkSL::InterfaceBlock*\29 +13107:SkSL::ExtendedVariable::mangledName\28\29\20const +13108:SkSL::ExtendedVariable::layout\28\29\20const +13109:SkSL::ExtendedVariable::interfaceBlock\28\29\20const +13110:SkSL::ExtendedVariable::detachDeadInterfaceBlock\28\29 +13111:SkSL::ExpressionStatement::description\28\29\20const +13112:SkSL::Expression::getConstantValue\28int\29\20const +13113:SkSL::Expression::description\28\29\20const +13114:SkSL::EmptyExpression::description\28SkSL::OperatorPrecedence\29\20const +13115:SkSL::EmptyExpression::clone\28SkSL::Position\29\20const +13116:SkSL::DoStatement::description\28\29\20const +13117:SkSL::DiscardStatement::description\28\29\20const +13118:SkSL::DebugTracePriv::~DebugTracePriv\28\29_7501 +13119:SkSL::DebugTracePriv::dump\28SkWStream*\29\20const +13120:SkSL::CountReturnsWithLimit::visitStatement\28SkSL::Statement\20const&\29 +13121:SkSL::ContinueStatement::description\28\29\20const +13122:SkSL::ConstructorStruct::clone\28SkSL::Position\29\20const +13123:SkSL::ConstructorSplat::getConstantValue\28int\29\20const +13124:SkSL::ConstructorSplat::clone\28SkSL::Position\29\20const +13125:SkSL::ConstructorScalarCast::clone\28SkSL::Position\29\20const +13126:SkSL::ConstructorMatrixResize::getConstantValue\28int\29\20const +13127:SkSL::ConstructorMatrixResize::clone\28SkSL::Position\29\20const +13128:SkSL::ConstructorDiagonalMatrix::getConstantValue\28int\29\20const +13129:SkSL::ConstructorDiagonalMatrix::clone\28SkSL::Position\29\20const +13130:SkSL::ConstructorCompoundCast::clone\28SkSL::Position\29\20const +13131:SkSL::ConstructorCompound::clone\28SkSL::Position\29\20const +13132:SkSL::ConstructorArrayCast::clone\28SkSL::Position\29\20const +13133:SkSL::ConstructorArray::clone\28SkSL::Position\29\20const +13134:SkSL::Compiler::CompilerErrorReporter::handleError\28std::__2::basic_string_view>\2c\20SkSL::Position\29 +13135:SkSL::CodeGenerator::~CodeGenerator\28\29 +13136:SkSL::ChildCall::description\28SkSL::OperatorPrecedence\29\20const +13137:SkSL::ChildCall::clone\28SkSL::Position\29\20const +13138:SkSL::BreakStatement::description\28\29\20const +13139:SkSL::Block::~Block\28\29_7006 +13140:SkSL::Block::description\28\29\20const +13141:SkSL::BinaryExpression::~BinaryExpression\28\29_7000 +13142:SkSL::BinaryExpression::description\28SkSL::OperatorPrecedence\29\20const +13143:SkSL::BinaryExpression::clone\28SkSL::Position\29\20const +13144:SkSL::ArrayType::slotType\28unsigned\20long\29\20const +13145:SkSL::ArrayType::slotCount\28\29\20const +13146:SkSL::ArrayType::matches\28SkSL::Type\20const&\29\20const +13147:SkSL::ArrayType::isUnsizedArray\28\29\20const +13148:SkSL::ArrayType::isOrContainsUnsizedArray\28\29\20const +13149:SkSL::ArrayType::isBuiltin\28\29\20const +13150:SkSL::ArrayType::isAllowedInUniform\28SkSL::Position*\29\20const +13151:SkSL::AnyConstructor::getConstantValue\28int\29\20const +13152:SkSL::AnyConstructor::description\28SkSL::OperatorPrecedence\29\20const +13153:SkSL::AnyConstructor::compareConstant\28SkSL::Expression\20const&\29\20const +13154:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::~Searcher\28\29_6751 +13155:SkSL::Analysis::FindFunctionsToSpecialize\28SkSL::Program\20const&\2c\20SkSL::Analysis::SpecializationInfo*\2c\20std::__2::function\20const&\29::Searcher::visitExpression\28SkSL::Expression\20const&\29 +13156:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::~ProgramStructureVisitor\28\29_6674 +13157:SkSL::Analysis::CheckProgramStructure\28SkSL::Program\20const&\29::ProgramStructureVisitor::visitExpression\28SkSL::Expression\20const&\29 +13158:SkSL::AliasType::textureAccess\28\29\20const +13159:SkSL::AliasType::slotType\28unsigned\20long\29\20const +13160:SkSL::AliasType::slotCount\28\29\20const +13161:SkSL::AliasType::rows\28\29\20const +13162:SkSL::AliasType::priority\28\29\20const +13163:SkSL::AliasType::isVector\28\29\20const +13164:SkSL::AliasType::isUnsizedArray\28\29\20const +13165:SkSL::AliasType::isStruct\28\29\20const +13166:SkSL::AliasType::isScalar\28\29\20const +13167:SkSL::AliasType::isMultisampled\28\29\20const +13168:SkSL::AliasType::isMatrix\28\29\20const +13169:SkSL::AliasType::isLiteral\28\29\20const +13170:SkSL::AliasType::isInterfaceBlock\28\29\20const +13171:SkSL::AliasType::isDepth\28\29\20const +13172:SkSL::AliasType::isArrayedTexture\28\29\20const +13173:SkSL::AliasType::isArray\28\29\20const +13174:SkSL::AliasType::dimensions\28\29\20const +13175:SkSL::AliasType::componentType\28\29\20const +13176:SkSL::AliasType::columns\28\29\20const +13177:SkSL::AliasType::coercibleTypes\28\29\20const +13178:SkRuntimeShader::~SkRuntimeShader\28\29_5657 +13179:SkRuntimeShader::type\28\29\20const +13180:SkRuntimeShader::isOpaque\28\29\20const +13181:SkRuntimeShader::getTypeName\28\29\20const +13182:SkRuntimeShader::flatten\28SkWriteBuffer&\29\20const +13183:SkRuntimeShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13184:SkRuntimeEffect::~SkRuntimeEffect\28\29_4975 +13185:SkRuntimeEffect::MakeFromSource\28SkString\2c\20SkRuntimeEffect::Options\20const&\2c\20SkSL::ProgramKind\29 +13186:SkRuntimeEffect::MakeForColorFilter\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +13187:SkRuntimeEffect::MakeForBlender\28SkString\2c\20SkRuntimeEffect::Options\20const&\29 +13188:SkRgnClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13189:SkRgnClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13190:SkRgnClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +13191:SkRgnClipBlitter::blitH\28int\2c\20int\2c\20int\29 +13192:SkRgnClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +13193:SkRgnClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +13194:SkRgnBuilder::~SkRgnBuilder\28\29_4893 +13195:SkRgnBuilder::blitH\28int\2c\20int\2c\20int\29 +13196:SkResourceCache::~SkResourceCache\28\29_4905 +13197:SkResourceCache::setSingleAllocationByteLimit\28unsigned\20long\29 +13198:SkResourceCache::purgeSharedID\28unsigned\20long\20long\29 +13199:SkResourceCache::getSingleAllocationByteLimit\28\29\20const +13200:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::~Result\28\29_5526 +13201:SkRescaleAndReadPixels\28SkBitmap\2c\20SkImageInfo\20const&\2c\20SkIRect\20const&\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29::Result::data\28int\29\20const +13202:SkRectClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13203:SkRectClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13204:SkRectClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +13205:SkRectClipBlitter::blitH\28int\2c\20int\2c\20int\29 +13206:SkRectClipBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +13207:SkRectClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +13208:SkRecordedDrawable::~SkRecordedDrawable\28\29_4868 +13209:SkRecordedDrawable::onMakePictureSnapshot\28\29 +13210:SkRecordedDrawable::onGetBounds\28\29 +13211:SkRecordedDrawable::onDraw\28SkCanvas*\29 +13212:SkRecordedDrawable::onApproximateBytesUsed\28\29 +13213:SkRecordedDrawable::getTypeName\28\29\20const +13214:SkRecordedDrawable::flatten\28SkWriteBuffer&\29\20const +13215:SkRecordCanvas::~SkRecordCanvas\28\29_4791 +13216:SkRecordCanvas::willSave\28\29 +13217:SkRecordCanvas::onResetClip\28\29 +13218:SkRecordCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +13219:SkRecordCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +13220:SkRecordCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +13221:SkRecordCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +13222:SkRecordCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +13223:SkRecordCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +13224:SkRecordCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +13225:SkRecordCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +13226:SkRecordCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +13227:SkRecordCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +13228:SkRecordCanvas::onDrawPaint\28SkPaint\20const&\29 +13229:SkRecordCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +13230:SkRecordCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +13231:SkRecordCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +13232:SkRecordCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +13233:SkRecordCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +13234:SkRecordCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +13235:SkRecordCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +13236:SkRecordCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +13237:SkRecordCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +13238:SkRecordCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +13239:SkRecordCanvas::onDrawBehind\28SkPaint\20const&\29 +13240:SkRecordCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +13241:SkRecordCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +13242:SkRecordCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +13243:SkRecordCanvas::onDoSaveBehind\28SkRect\20const*\29 +13244:SkRecordCanvas::onClipShader\28sk_sp\2c\20SkClipOp\29 +13245:SkRecordCanvas::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +13246:SkRecordCanvas::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +13247:SkRecordCanvas::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +13248:SkRecordCanvas::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +13249:SkRecordCanvas::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +13250:SkRecordCanvas::didTranslate\28float\2c\20float\29 +13251:SkRecordCanvas::didSetM44\28SkM44\20const&\29 +13252:SkRecordCanvas::didScale\28float\2c\20float\29 +13253:SkRecordCanvas::didRestore\28\29 +13254:SkRecordCanvas::didConcat44\28SkM44\20const&\29 +13255:SkRecord::~SkRecord\28\29_4789 +13256:SkRasterPipelineSpriteBlitter::~SkRasterPipelineSpriteBlitter\28\29_2616 +13257:SkRasterPipelineSpriteBlitter::setup\28SkPixmap\20const&\2c\20int\2c\20int\2c\20SkPaint\20const&\29 +13258:SkRasterPipelineSpriteBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13259:SkRasterPipelineBlitter::~SkRasterPipelineBlitter\28\29_4763 +13260:SkRasterPipelineBlitter::canDirectBlit\28\29 +13261:SkRasterPipelineBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13262:SkRasterPipelineBlitter::blitH\28int\2c\20int\2c\20int\29 +13263:SkRasterPipelineBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +13264:SkRasterPipelineBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +13265:SkRasterPipelineBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +13266:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_3::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +13267:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_2::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +13268:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_1::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +13269:SkRasterPipelineBlitter::Create\28SkPixmap\20const&\2c\20SkPaint\20const&\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkArenaAlloc*\2c\20SkRasterPipeline\20const&\2c\20bool\2c\20bool\2c\20SkShader\20const*\29::$_0::__invoke\28SkPixmap*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20long\20long\29 +13270:SkRadialGradient::getTypeName\28\29\20const +13271:SkRadialGradient::flatten\28SkWriteBuffer&\29\20const +13272:SkRadialGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +13273:SkRadialGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +13274:SkRTree::~SkRTree\28\29_4701 +13275:SkRTree::search\28SkRect\20const&\2c\20std::__2::vector>*\29\20const +13276:SkRTree::insert\28SkRect\20const*\2c\20int\29 +13277:SkRTree::bytesUsed\28\29\20const +13278:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_2::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +13279:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_1::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +13280:SkPixmap::erase\28SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkIRect\20const*\29\20const::$_0::__invoke\28void*\2c\20unsigned\20long\20long\2c\20int\29 +13281:SkPixelRef::~SkPixelRef\28\29_4668 +13282:SkPictureRecord::~SkPictureRecord\28\29_4580 +13283:SkPictureRecord::willSave\28\29 +13284:SkPictureRecord::willRestore\28\29 +13285:SkPictureRecord::onResetClip\28\29 +13286:SkPictureRecord::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +13287:SkPictureRecord::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +13288:SkPictureRecord::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +13289:SkPictureRecord::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +13290:SkPictureRecord::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +13291:SkPictureRecord::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +13292:SkPictureRecord::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +13293:SkPictureRecord::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +13294:SkPictureRecord::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +13295:SkPictureRecord::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +13296:SkPictureRecord::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +13297:SkPictureRecord::onDrawPaint\28SkPaint\20const&\29 +13298:SkPictureRecord::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +13299:SkPictureRecord::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +13300:SkPictureRecord::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +13301:SkPictureRecord::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +13302:SkPictureRecord::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +13303:SkPictureRecord::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +13304:SkPictureRecord::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +13305:SkPictureRecord::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +13306:SkPictureRecord::onDrawBehind\28SkPaint\20const&\29 +13307:SkPictureRecord::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +13308:SkPictureRecord::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +13309:SkPictureRecord::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +13310:SkPictureRecord::onDoSaveBehind\28SkRect\20const*\29 +13311:SkPictureRecord::onClipShader\28sk_sp\2c\20SkClipOp\29 +13312:SkPictureRecord::onClipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +13313:SkPictureRecord::onClipRect\28SkRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +13314:SkPictureRecord::onClipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +13315:SkPictureRecord::onClipPath\28SkPath\20const&\2c\20SkClipOp\2c\20SkCanvas::ClipEdgeStyle\29 +13316:SkPictureRecord::getSaveLayerStrategy\28SkCanvas::SaveLayerRec\20const&\29 +13317:SkPictureRecord::didTranslate\28float\2c\20float\29 +13318:SkPictureRecord::didSetM44\28SkM44\20const&\29 +13319:SkPictureRecord::didScale\28float\2c\20float\29 +13320:SkPictureRecord::didConcat44\28SkM44\20const&\29 +13321:SkPictureImageGenerator::~SkPictureImageGenerator\28\29_5518 +13322:SkPictureImageGenerator::onGetPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkImageGenerator::Options\20const&\29 +13323:SkOTUtils::LocalizedStrings_SingleName::~LocalizedStrings_SingleName\28\29_8933 +13324:SkOTUtils::LocalizedStrings_SingleName::next\28SkTypeface::LocalizedString*\29 +13325:SkOTUtils::LocalizedStrings_NameTable::~LocalizedStrings_NameTable\28\29_7995 +13326:SkOTUtils::LocalizedStrings_NameTable::next\28SkTypeface::LocalizedString*\29 +13327:SkNoPixelsDevice::~SkNoPixelsDevice\28\29_3187 +13328:SkNoPixelsDevice::replaceClip\28SkIRect\20const&\29 +13329:SkNoPixelsDevice::pushClipStack\28\29 +13330:SkNoPixelsDevice::popClipStack\28\29 +13331:SkNoPixelsDevice::onClipShader\28sk_sp\29 +13332:SkNoPixelsDevice::isClipWideOpen\28\29\20const +13333:SkNoPixelsDevice::isClipRect\28\29\20const +13334:SkNoPixelsDevice::isClipEmpty\28\29\20const +13335:SkNoPixelsDevice::isClipAntiAliased\28\29\20const +13336:SkNoPixelsDevice::devClipBounds\28\29\20const +13337:SkNoPixelsDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +13338:SkNoPixelsDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +13339:SkNoPixelsDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +13340:SkNoPixelsDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +13341:SkNoPixelsDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +13342:SkMipmap::~SkMipmap\28\29_3750 +13343:SkMipmap::onDataChange\28void*\2c\20void*\29 +13344:SkMemoryStream::~SkMemoryStream\28\29_5179 +13345:SkMemoryStream::setMemory\28void\20const*\2c\20unsigned\20long\2c\20bool\29 +13346:SkMemoryStream::seek\28unsigned\20long\29 +13347:SkMemoryStream::rewind\28\29 +13348:SkMemoryStream::read\28void*\2c\20unsigned\20long\29 +13349:SkMemoryStream::peek\28void*\2c\20unsigned\20long\29\20const +13350:SkMemoryStream::onFork\28\29\20const +13351:SkMemoryStream::onDuplicate\28\29\20const +13352:SkMemoryStream::move\28long\29 +13353:SkMemoryStream::isAtEnd\28\29\20const +13354:SkMemoryStream::getMemoryBase\28\29 +13355:SkMemoryStream::getLength\28\29\20const +13356:SkMemoryStream::getData\28\29\20const +13357:SkMatrixColorFilter::onIsAlphaUnchanged\28\29\20const +13358:SkMatrixColorFilter::onAsAColorMatrix\28float*\29\20const +13359:SkMatrixColorFilter::getTypeName\28\29\20const +13360:SkMatrixColorFilter::flatten\28SkWriteBuffer&\29\20const +13361:SkMatrixColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +13362:SkMatrix::Trans_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +13363:SkMatrix::Scale_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +13364:SkMatrix::Poly4Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +13365:SkMatrix::Poly3Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +13366:SkMatrix::Poly2Proc\28SkPoint\20const*\2c\20SkMatrix*\29 +13367:SkMatrix::Persp_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +13368:SkMatrix::Identity_pts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +13369:SkMatrix::Affine_vpts\28SkMatrix\20const&\2c\20SkPoint*\2c\20SkPoint\20const*\2c\20int\29 +13370:SkMaskFilterBase::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +13371:SkMaskFilterBase::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +13372:SkMaskFilterBase::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +13373:SkMallocPixelRef::MakeAllocate\28SkImageInfo\20const&\2c\20unsigned\20long\29::PixelRef::~PixelRef\28\29_3601 +13374:SkMakePixelRefWithProc\28int\2c\20int\2c\20unsigned\20long\2c\20void*\2c\20void\20\28*\29\28void*\2c\20void*\29\2c\20void*\29::PixelRef::~PixelRef\28\29_4670 +13375:SkLocalMatrixShader::~SkLocalMatrixShader\28\29_5646 +13376:SkLocalMatrixShader::~SkLocalMatrixShader\28\29 +13377:SkLocalMatrixShader::type\28\29\20const +13378:SkLocalMatrixShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +13379:SkLocalMatrixShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +13380:SkLocalMatrixShader::makeAsALocalMatrixShader\28SkMatrix*\29\20const +13381:SkLocalMatrixShader::isOpaque\28\29\20const +13382:SkLocalMatrixShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +13383:SkLocalMatrixShader::getTypeName\28\29\20const +13384:SkLocalMatrixShader::flatten\28SkWriteBuffer&\29\20const +13385:SkLocalMatrixShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +13386:SkLocalMatrixShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13387:SkLocalMatrixImageFilter::onGetOutputLayerBounds\28skif::Mapping\20const&\2c\20std::__2::optional>\29\20const +13388:SkLocalMatrixImageFilter::onGetInputLayerBounds\28skif::Mapping\20const&\2c\20skif::LayerSpace\20const&\2c\20std::__2::optional>\29\20const +13389:SkLocalMatrixImageFilter::onFilterImage\28skif::Context\20const&\29\20const +13390:SkLocalMatrixImageFilter::getTypeName\28\29\20const +13391:SkLocalMatrixImageFilter::flatten\28SkWriteBuffer&\29\20const +13392:SkLocalMatrixImageFilter::computeFastBounds\28SkRect\20const&\29\20const +13393:SkLinearGradient::getTypeName\28\29\20const +13394:SkLinearGradient::flatten\28SkWriteBuffer&\29\20const +13395:SkLinearGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +13396:SkJSONWriter::popScope\28\29 +13397:SkJSONWriter::appendf\28char\20const*\2c\20...\29 +13398:SkIntersections::hasOppT\28double\29\20const +13399:SkImage_Raster::~SkImage_Raster\28\29_5494 +13400:SkImage_Raster::onReinterpretColorSpace\28sk_sp\29\20const +13401:SkImage_Raster::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +13402:SkImage_Raster::onPeekPixels\28SkPixmap*\29\20const +13403:SkImage_Raster::onMakeWithMipmaps\28sk_sp\29\20const +13404:SkImage_Raster::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +13405:SkImage_Raster::onHasMipmaps\28\29\20const +13406:SkImage_Raster::onAsLegacyBitmap\28GrDirectContext*\2c\20SkBitmap*\29\20const +13407:SkImage_Raster::notifyAddedToRasterCache\28\29\20const +13408:SkImage_Raster::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +13409:SkImage_Raster::isValid\28SkRecorder*\29\20const +13410:SkImage_Raster::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +13411:SkImage_Picture::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +13412:SkImage_LazyTexture::readPixelsProxy\28GrDirectContext*\2c\20SkPixmap\20const&\29\20const +13413:SkImage_LazyTexture::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +13414:SkImage_Lazy::onReinterpretColorSpace\28sk_sp\29\20const +13415:SkImage_Lazy::onRefEncoded\28\29\20const +13416:SkImage_Lazy::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +13417:SkImage_Lazy::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +13418:SkImage_Lazy::onIsProtected\28\29\20const +13419:SkImage_Lazy::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +13420:SkImage_Lazy::isValid\28SkRecorder*\29\20const +13421:SkImage_Lazy::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +13422:SkImage_GaneshBase::onReadPixels\28GrDirectContext*\2c\20SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20int\2c\20int\2c\20SkImage::CachingHint\29\20const +13423:SkImage_GaneshBase::onMakeSurface\28SkRecorder*\2c\20SkImageInfo\20const&\29\20const +13424:SkImage_GaneshBase::onMakeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +13425:SkImage_GaneshBase::makeColorTypeAndColorSpace\28SkRecorder*\2c\20SkColorType\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +13426:SkImage_GaneshBase::isValid\28SkRecorder*\29\20const +13427:SkImage_GaneshBase::getROPixels\28GrDirectContext*\2c\20SkBitmap*\2c\20SkImage::CachingHint\29\20const +13428:SkImage_GaneshBase::directContext\28\29\20const +13429:SkImage_Ganesh::~SkImage_Ganesh\28\29_11480 +13430:SkImage_Ganesh::textureSize\28\29\20const +13431:SkImage_Ganesh::onReinterpretColorSpace\28sk_sp\29\20const +13432:SkImage_Ganesh::onMakeColorTypeAndColorSpace\28GrDirectContext*\2c\20SkColorType\2c\20sk_sp\29\20const +13433:SkImage_Ganesh::onIsProtected\28\29\20const +13434:SkImage_Ganesh::onHasMipmaps\28\29\20const +13435:SkImage_Ganesh::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +13436:SkImage_Ganesh::onAsyncRescaleAndReadPixelsYUV420\28SkYUVColorSpace\2c\20bool\2c\20sk_sp\2c\20SkIRect\2c\20SkISize\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +13437:SkImage_Ganesh::generatingSurfaceIsDeleted\28\29 +13438:SkImage_Ganesh::flush\28GrDirectContext*\2c\20GrFlushInfo\20const&\29\20const +13439:SkImage_Ganesh::asView\28GrRecordingContext*\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29\20const +13440:SkImage_Ganesh::asFragmentProcessor\28skgpu::ganesh::SurfaceDrawContext*\2c\20SkSamplingOptions\2c\20SkTileMode\20const*\2c\20SkMatrix\20const&\2c\20SkRect\20const*\2c\20SkRect\20const*\29\20const +13441:SkImage_Base::onAsyncRescaleAndReadPixels\28SkImageInfo\20const&\2c\20SkIRect\2c\20SkImage::RescaleGamma\2c\20SkImage::RescaleMode\2c\20void\20\28*\29\28void*\2c\20std::__2::unique_ptr>\29\2c\20void*\29\20const +13442:SkImage_Base::notifyAddedToRasterCache\28\29\20const +13443:SkImage_Base::makeSubset\28SkRecorder*\2c\20SkIRect\20const&\2c\20SkImage::RequiredProperties\29\20const +13444:SkImage_Base::makeColorSpace\28SkRecorder*\2c\20sk_sp\2c\20SkImage::RequiredProperties\29\20const +13445:SkImage_Base::isTextureBacked\28\29\20const +13446:SkImage_Base::isLazyGenerated\28\29\20const +13447:SkImageShader::~SkImageShader\28\29_5610 +13448:SkImageShader::onIsAImage\28SkMatrix*\2c\20SkTileMode*\29\20const +13449:SkImageShader::isOpaque\28\29\20const +13450:SkImageShader::getTypeName\28\29\20const +13451:SkImageShader::flatten\28SkWriteBuffer&\29\20const +13452:SkImageShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13453:SkImageGenerator::~SkImageGenerator\28\29_617 +13454:SkImageFilter::computeFastBounds\28SkRect\20const&\29\20const +13455:SkGradientBaseShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +13456:SkGradientBaseShader::isOpaque\28\29\20const +13457:SkGradientBaseShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13458:SkGaussianColorFilter::getTypeName\28\29\20const +13459:SkGaussianColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +13460:SkGammaColorSpaceLuminance::toLuma\28float\2c\20float\29\20const +13461:SkGammaColorSpaceLuminance::fromLuma\28float\2c\20float\29\20const +13462:SkFontStyleSet_Custom::~SkFontStyleSet_Custom\28\29_8810 +13463:SkFontStyleSet_Custom::getStyle\28int\2c\20SkFontStyle*\2c\20SkString*\29 +13464:SkFontScanner_FreeType::~SkFontScanner_FreeType\28\29_8947 +13465:SkFontScanner_FreeType::scanFile\28SkStreamAsset*\2c\20int*\29\20const +13466:SkFontScanner_FreeType::scanFace\28SkStreamAsset*\2c\20int\2c\20int*\29\20const +13467:SkFontScanner_FreeType::getFactoryId\28\29\20const +13468:SkFontMgr_Custom::~SkFontMgr_Custom\28\29_8816 +13469:SkFontMgr_Custom::onMatchFamily\28char\20const*\29\20const +13470:SkFontMgr_Custom::onMatchFamilyStyle\28char\20const*\2c\20SkFontStyle\20const&\29\20const +13471:SkFontMgr_Custom::onMakeFromStreamIndex\28std::__2::unique_ptr>\2c\20int\29\20const +13472:SkFontMgr_Custom::onMakeFromFile\28char\20const*\2c\20int\29\20const +13473:SkFontMgr_Custom::onMakeFromData\28sk_sp\2c\20int\29\20const +13474:SkFontMgr_Custom::onLegacyMakeTypeface\28char\20const*\2c\20SkFontStyle\29\20const +13475:SkFontMgr_Custom::onGetFamilyName\28int\2c\20SkString*\29\20const +13476:SkFILEStream::~SkFILEStream\28\29_5156 +13477:SkFILEStream::seek\28unsigned\20long\29 +13478:SkFILEStream::rewind\28\29 +13479:SkFILEStream::read\28void*\2c\20unsigned\20long\29 +13480:SkFILEStream::onFork\28\29\20const +13481:SkFILEStream::onDuplicate\28\29\20const +13482:SkFILEStream::move\28long\29 +13483:SkFILEStream::isAtEnd\28\29\20const +13484:SkFILEStream::getPosition\28\29\20const +13485:SkFILEStream::getLength\28\29\20const +13486:SkEmptyShader::getTypeName\28\29\20const +13487:SkEmptyPicture::~SkEmptyPicture\28\29 +13488:SkEmptyPicture::cullRect\28\29\20const +13489:SkEmptyFontMgr::onMatchFamily\28char\20const*\29\20const +13490:SkEdgeBuilder::build\28SkPathRaw\20const&\2c\20SkIRect\20const*\2c\20bool\29::$_0::__invoke\28SkEdgeClipper*\2c\20bool\2c\20void*\29 +13491:SkDynamicMemoryWStream::~SkDynamicMemoryWStream\28\29_5195 +13492:SkDynamicMemoryWStream::bytesWritten\28\29\20const +13493:SkDrawable::onMakePictureSnapshot\28\29 +13494:SkDevice::strikeDeviceInfo\28\29\20const +13495:SkDevice::drawSlug\28SkCanvas*\2c\20sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +13496:SkDevice::drawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +13497:SkDevice::drawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20sk_sp\2c\20SkPaint\20const&\29 +13498:SkDevice::drawImageLattice\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const&\29 +13499:SkDevice::drawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +13500:SkDevice::drawEdgeAAImageSet\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +13501:SkDevice::drawDrawable\28SkCanvas*\2c\20SkDrawable*\2c\20SkMatrix\20const*\29 +13502:SkDevice::drawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +13503:SkDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +13504:SkDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +13505:SkDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +13506:SkDevice::drawAsTiledImageRect\28SkCanvas*\2c\20SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +13507:SkDevice::createImageFilteringBackend\28SkSurfaceProps\20const&\2c\20SkColorType\29\20const +13508:SkDashImpl::~SkDashImpl\28\29_5871 +13509:SkDashImpl::onFilterPath\28SkPathBuilder*\2c\20SkPath\20const&\2c\20SkStrokeRec*\2c\20SkRect\20const*\2c\20SkMatrix\20const&\29\20const +13510:SkDashImpl::onAsPoints\28SkPathEffectBase::PointData*\2c\20SkPath\20const&\2c\20SkStrokeRec\20const&\2c\20SkMatrix\20const&\2c\20SkRect\20const*\29\20const +13511:SkDashImpl::getTypeName\28\29\20const +13512:SkDashImpl::flatten\28SkWriteBuffer&\29\20const +13513:SkDashImpl::asADash\28\29\20const +13514:SkDCurve::nearPoint\28SkPath::Verb\2c\20SkDPoint\20const&\2c\20SkDPoint\20const&\29\20const +13515:SkContourMeasure::~SkContourMeasure\28\29_3106 +13516:SkConicalGradient::getTypeName\28\29\20const +13517:SkConicalGradient::flatten\28SkWriteBuffer&\29\20const +13518:SkConicalGradient::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +13519:SkConicalGradient::appendGradientStages\28SkArenaAlloc*\2c\20SkRasterPipeline*\2c\20SkRasterPipeline*\29\20const +13520:SkComposeColorFilter::~SkComposeColorFilter\28\29_5974 +13521:SkComposeColorFilter::onIsAlphaUnchanged\28\29\20const +13522:SkComposeColorFilter::getTypeName\28\29\20const +13523:SkComposeColorFilter::flatten\28SkWriteBuffer&\29\20const +13524:SkComposeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +13525:SkColorSpaceXformColorFilter::~SkColorSpaceXformColorFilter\28\29_5967 +13526:SkColorSpaceXformColorFilter::getTypeName\28\29\20const +13527:SkColorSpaceXformColorFilter::flatten\28SkWriteBuffer&\29\20const +13528:SkColorSpaceXformColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +13529:SkColorShader::onAsLuminanceColor\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +13530:SkColorShader::isOpaque\28\29\20const +13531:SkColorShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +13532:SkColorShader::getTypeName\28\29\20const +13533:SkColorShader::flatten\28SkWriteBuffer&\29\20const +13534:SkColorShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13535:SkColorFilterShader::~SkColorFilterShader\28\29_5583 +13536:SkColorFilterShader::isOpaque\28\29\20const +13537:SkColorFilterShader::getTypeName\28\29\20const +13538:SkColorFilterShader::flatten\28SkWriteBuffer&\29\20const +13539:SkColorFilterShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13540:SkColorFilterBase::onFilterColor4f\28SkRGBA4f<\28SkAlphaType\292>\20const&\2c\20SkColorSpace*\29\20const +13541:SkCoincidentSpans::setOppPtTStart\28SkOpPtT\20const*\29 +13542:SkCoincidentSpans::setOppPtTEnd\28SkOpPtT\20const*\29 +13543:SkCoincidentSpans::setCoinPtTStart\28SkOpPtT\20const*\29 +13544:SkCoincidentSpans::setCoinPtTEnd\28SkOpPtT\20const*\29 +13545:SkCodec::onStartScanlineDecode\28SkImageInfo\20const&\2c\20SkCodec::Options\20const&\29 +13546:SkCodec::onStartIncrementalDecode\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkCodec::Options\20const&\29 +13547:SkCodec::onRewind\28\29 +13548:SkCodec::onOutputScanline\28int\29\20const +13549:SkCodec::onGetScaledDimensions\28float\29\20const +13550:SkCodec::getEncodedData\28\29\20const +13551:SkCodec::conversionSupported\28SkImageInfo\20const&\2c\20bool\2c\20bool\29 +13552:SkCanvas::~SkCanvas\28\29_2895 +13553:SkCanvas::recordingContext\28\29\20const +13554:SkCanvas::recorder\28\29\20const +13555:SkCanvas::onPeekPixels\28SkPixmap*\29 +13556:SkCanvas::onNewSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +13557:SkCanvas::onImageInfo\28\29\20const +13558:SkCanvas::onGetProps\28SkSurfaceProps*\2c\20bool\29\20const +13559:SkCanvas::onDrawVerticesObject\28SkVertices\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +13560:SkCanvas::onDrawTextBlob\28SkTextBlob\20const*\2c\20float\2c\20float\2c\20SkPaint\20const&\29 +13561:SkCanvas::onDrawSlug\28sktext::gpu::Slug\20const*\2c\20SkPaint\20const&\29 +13562:SkCanvas::onDrawShadowRec\28SkPath\20const&\2c\20SkDrawShadowRec\20const&\29 +13563:SkCanvas::onDrawRegion\28SkRegion\20const&\2c\20SkPaint\20const&\29 +13564:SkCanvas::onDrawRect\28SkRect\20const&\2c\20SkPaint\20const&\29 +13565:SkCanvas::onDrawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +13566:SkCanvas::onDrawPoints\28SkCanvas::PointMode\2c\20unsigned\20long\2c\20SkPoint\20const*\2c\20SkPaint\20const&\29 +13567:SkCanvas::onDrawPicture\28SkPicture\20const*\2c\20SkMatrix\20const*\2c\20SkPaint\20const*\29 +13568:SkCanvas::onDrawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +13569:SkCanvas::onDrawPatch\28SkPoint\20const*\2c\20unsigned\20int\20const*\2c\20SkPoint\20const*\2c\20SkBlendMode\2c\20SkPaint\20const&\29 +13570:SkCanvas::onDrawPaint\28SkPaint\20const&\29 +13571:SkCanvas::onDrawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +13572:SkCanvas::onDrawMesh\28SkMesh\20const&\2c\20sk_sp\2c\20SkPaint\20const&\29 +13573:SkCanvas::onDrawImageRect2\28SkImage\20const*\2c\20SkRect\20const&\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +13574:SkCanvas::onDrawImageLattice2\28SkImage\20const*\2c\20SkCanvas::Lattice\20const&\2c\20SkRect\20const&\2c\20SkFilterMode\2c\20SkPaint\20const*\29 +13575:SkCanvas::onDrawImage2\28SkImage\20const*\2c\20float\2c\20float\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\29 +13576:SkCanvas::onDrawGlyphRunList\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +13577:SkCanvas::onDrawEdgeAAQuad\28SkRect\20const&\2c\20SkPoint\20const*\2c\20SkCanvas::QuadAAFlags\2c\20SkRGBA4f<\28SkAlphaType\293>\20const&\2c\20SkBlendMode\29 +13578:SkCanvas::onDrawEdgeAAImageSet2\28SkCanvas::ImageSetEntry\20const*\2c\20int\2c\20SkPoint\20const*\2c\20SkMatrix\20const*\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const*\2c\20SkCanvas::SrcRectConstraint\29 +13579:SkCanvas::onDrawDrawable\28SkDrawable*\2c\20SkMatrix\20const*\29 +13580:SkCanvas::onDrawDRRect\28SkRRect\20const&\2c\20SkRRect\20const&\2c\20SkPaint\20const&\29 +13581:SkCanvas::onDrawBehind\28SkPaint\20const&\29 +13582:SkCanvas::onDrawAtlas2\28SkImage\20const*\2c\20SkRSXform\20const*\2c\20SkRect\20const*\2c\20unsigned\20int\20const*\2c\20int\2c\20SkBlendMode\2c\20SkSamplingOptions\20const&\2c\20SkRect\20const*\2c\20SkPaint\20const*\29 +13583:SkCanvas::onDrawArc\28SkRect\20const&\2c\20float\2c\20float\2c\20bool\2c\20SkPaint\20const&\29 +13584:SkCanvas::onDrawAnnotation\28SkRect\20const&\2c\20char\20const*\2c\20SkData*\29 +13585:SkCanvas::onDiscard\28\29 +13586:SkCanvas::onConvertGlyphRunListToSlug\28sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +13587:SkCanvas::onAccessTopLayerPixels\28SkPixmap*\29 +13588:SkCanvas::isClipRect\28\29\20const +13589:SkCanvas::isClipEmpty\28\29\20const +13590:SkCanvas::getBaseLayerSize\28\29\20const +13591:SkCanvas::baseRecorder\28\29\20const +13592:SkCachedData::~SkCachedData\28\29_2812 +13593:SkCTMShader::~SkCTMShader\28\29_5636 +13594:SkCTMShader::~SkCTMShader\28\29 +13595:SkCTMShader::isConstant\28SkRGBA4f<\28SkAlphaType\293>*\29\20const +13596:SkCTMShader::getTypeName\28\29\20const +13597:SkCTMShader::asGradient\28SkShaderBase::GradientInfo*\2c\20SkMatrix*\29\20const +13598:SkCTMShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13599:SkBreakIterator_icu::~SkBreakIterator_icu\28\29_8741 +13600:SkBreakIterator_icu::status\28\29 +13601:SkBreakIterator_icu::setText\28char\20const*\2c\20int\29 +13602:SkBreakIterator_icu::setText\28char16_t\20const*\2c\20int\29 +13603:SkBreakIterator_icu::next\28\29 +13604:SkBreakIterator_icu::isDone\28\29 +13605:SkBreakIterator_icu::first\28\29 +13606:SkBreakIterator_icu::current\28\29 +13607:SkBlurMaskFilterImpl::getTypeName\28\29\20const +13608:SkBlurMaskFilterImpl::flatten\28SkWriteBuffer&\29\20const +13609:SkBlurMaskFilterImpl::filterRectsToNine\28SkSpan\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20std::__2::optional*\2c\20SkResourceCache*\29\20const +13610:SkBlurMaskFilterImpl::filterRRectToNine\28SkRRect\20const&\2c\20SkMatrix\20const&\2c\20SkIRect\20const&\2c\20SkResourceCache*\29\20const +13611:SkBlurMaskFilterImpl::filterMask\28SkMaskBuilder*\2c\20SkMask\20const&\2c\20SkMatrix\20const&\2c\20SkIPoint*\29\20const +13612:SkBlurMaskFilterImpl::computeFastBounds\28SkRect\20const&\2c\20SkRect*\29\20const +13613:SkBlurMaskFilterImpl::asImageFilter\28SkMatrix\20const&\2c\20SkPaint\20const&\29\20const +13614:SkBlurMaskFilterImpl::asABlur\28SkMaskFilterBase::BlurRec*\29\20const +13615:SkBlitter::canDirectBlit\28\29 +13616:SkBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13617:SkBlitter::blitAntiV2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +13618:SkBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +13619:SkBlitter::blitAntiH2\28int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +13620:SkBlitter::allocBlitMemory\28unsigned\20long\29 +13621:SkBlendShader::~SkBlendShader\28\29_5569 +13622:SkBlendShader::getTypeName\28\29\20const +13623:SkBlendShader::flatten\28SkWriteBuffer&\29\20const +13624:SkBlendShader::appendStages\28SkStageRec\20const&\2c\20SkShaders::MatrixRec\20const&\29\20const +13625:SkBlendModeColorFilter::onIsAlphaUnchanged\28\29\20const +13626:SkBlendModeColorFilter::onAsAColorMode\28unsigned\20int*\2c\20SkBlendMode*\29\20const +13627:SkBlendModeColorFilter::getTypeName\28\29\20const +13628:SkBlendModeColorFilter::flatten\28SkWriteBuffer&\29\20const +13629:SkBlendModeColorFilter::appendStages\28SkStageRec\20const&\2c\20bool\29\20const +13630:SkBlendModeBlender::onAppendStages\28SkStageRec\20const&\29\20const +13631:SkBlendModeBlender::getTypeName\28\29\20const +13632:SkBlendModeBlender::flatten\28SkWriteBuffer&\29\20const +13633:SkBlendModeBlender::asBlendMode\28\29\20const +13634:SkBitmapDevice::~SkBitmapDevice\28\29_2283 +13635:SkBitmapDevice::snapSpecial\28SkIRect\20const&\2c\20bool\29 +13636:SkBitmapDevice::setImmutable\28\29 +13637:SkBitmapDevice::replaceClip\28SkIRect\20const&\29 +13638:SkBitmapDevice::pushClipStack\28\29 +13639:SkBitmapDevice::popClipStack\28\29 +13640:SkBitmapDevice::onWritePixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +13641:SkBitmapDevice::onReadPixels\28SkPixmap\20const&\2c\20int\2c\20int\29 +13642:SkBitmapDevice::onDrawGlyphRunList\28SkCanvas*\2c\20sktext::GlyphRunList\20const&\2c\20SkPaint\20const&\29 +13643:SkBitmapDevice::onClipShader\28sk_sp\29 +13644:SkBitmapDevice::onAccessPixels\28SkPixmap*\29 +13645:SkBitmapDevice::makeSurface\28SkImageInfo\20const&\2c\20SkSurfaceProps\20const&\29 +13646:SkBitmapDevice::isClipWideOpen\28\29\20const +13647:SkBitmapDevice::isClipRect\28\29\20const +13648:SkBitmapDevice::isClipEmpty\28\29\20const +13649:SkBitmapDevice::isClipAntiAliased\28\29\20const +13650:SkBitmapDevice::drawVertices\28SkVertices\20const*\2c\20sk_sp\2c\20SkPaint\20const&\2c\20bool\29 +13651:SkBitmapDevice::drawSpecial\28SkSpecialImage*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +13652:SkBitmapDevice::drawRRect\28SkRRect\20const&\2c\20SkPaint\20const&\29 +13653:SkBitmapDevice::drawPoints\28SkCanvas::PointMode\2c\20SkSpan\2c\20SkPaint\20const&\29 +13654:SkBitmapDevice::drawPath\28SkPath\20const&\2c\20SkPaint\20const&\29 +13655:SkBitmapDevice::drawPaint\28SkPaint\20const&\29 +13656:SkBitmapDevice::drawOval\28SkRect\20const&\2c\20SkPaint\20const&\29 +13657:SkBitmapDevice::drawImageRect\28SkImage\20const*\2c\20SkRect\20const*\2c\20SkRect\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\2c\20SkCanvas::SrcRectConstraint\29 +13658:SkBitmapDevice::drawCoverageMask\28SkSpecialImage\20const*\2c\20SkMatrix\20const&\2c\20SkSamplingOptions\20const&\2c\20SkPaint\20const&\29 +13659:SkBitmapDevice::drawBlurredRRect\28SkRRect\20const&\2c\20SkPaint\20const&\2c\20float\29 +13660:SkBitmapDevice::drawAtlas\28SkSpan\2c\20SkSpan\2c\20SkSpan\2c\20sk_sp\2c\20SkPaint\20const&\29 +13661:SkBitmapDevice::devClipBounds\28\29\20const +13662:SkBitmapDevice::createDevice\28SkDevice::CreateInfo\20const&\2c\20SkPaint\20const*\29 +13663:SkBitmapDevice::clipRegion\28SkRegion\20const&\2c\20SkClipOp\29 +13664:SkBitmapDevice::clipRect\28SkRect\20const&\2c\20SkClipOp\2c\20bool\29 +13665:SkBitmapDevice::clipRRect\28SkRRect\20const&\2c\20SkClipOp\2c\20bool\29 +13666:SkBitmapDevice::clipPath\28SkPath\20const&\2c\20SkClipOp\2c\20bool\29 +13667:SkBitmapDevice::baseRecorder\28\29\20const +13668:SkBitmapDevice::android_utils_clipAsRgn\28SkRegion*\29\20const +13669:SkBitmapCache::Rec::~Rec\28\29_2244 +13670:SkBitmapCache::Rec::postAddInstall\28void*\29 +13671:SkBitmapCache::Rec::getCategory\28\29\20const +13672:SkBitmapCache::Rec::canBePurged\28\29 +13673:SkBitmapCache::Rec::bytesUsed\28\29\20const +13674:SkBitmapCache::Rec::ReleaseProc\28void*\2c\20void*\29 +13675:SkBitmapCache::Rec::Finder\28SkResourceCache::Rec\20const&\2c\20void*\29 +13676:SkBinaryWriteBuffer::~SkBinaryWriteBuffer\28\29_5393 +13677:SkBinaryWriteBuffer::write\28SkM44\20const&\29 +13678:SkBinaryWriteBuffer::writeTypeface\28SkTypeface*\29 +13679:SkBinaryWriteBuffer::writeString\28std::__2::basic_string_view>\29 +13680:SkBinaryWriteBuffer::writeStream\28SkStream*\2c\20unsigned\20long\29 +13681:SkBinaryWriteBuffer::writeScalar\28float\29 +13682:SkBinaryWriteBuffer::writeSampling\28SkSamplingOptions\20const&\29 +13683:SkBinaryWriteBuffer::writeRegion\28SkRegion\20const&\29 +13684:SkBinaryWriteBuffer::writeRect\28SkRect\20const&\29 +13685:SkBinaryWriteBuffer::writePoint\28SkPoint\20const&\29 +13686:SkBinaryWriteBuffer::writePointArray\28SkSpan\29 +13687:SkBinaryWriteBuffer::writePoint3\28SkPoint3\20const&\29 +13688:SkBinaryWriteBuffer::writePath\28SkPath\20const&\29 +13689:SkBinaryWriteBuffer::writePaint\28SkPaint\20const&\29 +13690:SkBinaryWriteBuffer::writePad32\28void\20const*\2c\20unsigned\20long\29 +13691:SkBinaryWriteBuffer::writeMatrix\28SkMatrix\20const&\29 +13692:SkBinaryWriteBuffer::writeImage\28SkImage\20const*\29 +13693:SkBinaryWriteBuffer::writeColor4fArray\28SkSpan\20const>\29 +13694:SkBinaryWriteBuffer::writeBool\28bool\29 +13695:SkBigPicture::~SkBigPicture\28\29_2166 +13696:SkBigPicture::playback\28SkCanvas*\2c\20SkPicture::AbortCallback*\29\20const +13697:SkBigPicture::approximateOpCount\28bool\29\20const +13698:SkBigPicture::approximateBytesUsed\28\29\20const +13699:SkBidiICUFactory::errorName\28UErrorCode\29\20const +13700:SkBidiICUFactory::bidi_setPara\28UBiDi*\2c\20char16_t\20const*\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char*\2c\20UErrorCode*\29\20const +13701:SkBidiICUFactory::bidi_reorderVisual\28unsigned\20char\20const*\2c\20int\2c\20int*\29\20const +13702:SkBidiICUFactory::bidi_openSized\28int\2c\20int\2c\20UErrorCode*\29\20const +13703:SkBidiICUFactory::bidi_getLevelAt\28UBiDi\20const*\2c\20int\29\20const +13704:SkBidiICUFactory::bidi_getLength\28UBiDi\20const*\29\20const +13705:SkBidiICUFactory::bidi_getDirection\28UBiDi\20const*\29\20const +13706:SkBidiICUFactory::bidi_close_callback\28\29\20const +13707:SkBasicEdgeBuilder::addQuad\28SkPoint\20const*\29 +13708:SkBasicEdgeBuilder::addLine\28SkPoint\20const*\29 +13709:SkBasicEdgeBuilder::addCubic\28SkPoint\20const*\29 +13710:SkBBoxHierarchy::insert\28SkRect\20const*\2c\20SkBBoxHierarchy::Metadata\20const*\2c\20int\29 +13711:SkArenaAlloc::SkipPod\28char*\29 +13712:SkArenaAlloc::NextBlock\28char*\29 +13713:SkAnimatedImage::~SkAnimatedImage\28\29_7970 +13714:SkAnimatedImage::onGetBounds\28\29 +13715:SkAnimatedImage::onDraw\28SkCanvas*\29 +13716:SkAndroidCodecAdapter::onGetSupportedSubset\28SkIRect*\29\20const +13717:SkAndroidCodecAdapter::onGetSampledDimensions\28int\29\20const +13718:SkAndroidCodecAdapter::onGetAndroidPixels\28SkImageInfo\20const&\2c\20void*\2c\20unsigned\20long\2c\20SkAndroidCodec::AndroidOptions\20const&\29 +13719:SkAnalyticEdgeBuilder::allocEdges\28unsigned\20long\2c\20unsigned\20long*\29 +13720:SkAnalyticEdgeBuilder::addQuad\28SkPoint\20const*\29 +13721:SkAnalyticEdgeBuilder::addPolyLine\28SkPoint\20const*\2c\20char*\2c\20char**\29 +13722:SkAnalyticEdgeBuilder::addLine\28SkPoint\20const*\29 +13723:SkAnalyticEdgeBuilder::addCubic\28SkPoint\20const*\29 +13724:SkAAClipBlitter::~SkAAClipBlitter\28\29_2129 +13725:SkAAClipBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13726:SkAAClipBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13727:SkAAClipBlitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +13728:SkAAClipBlitter::blitH\28int\2c\20int\2c\20int\29 +13729:SkAAClipBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +13730:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_1::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +13731:SkAAClip::Builder::operateY\28SkAAClip\20const&\2c\20SkAAClip\20const&\2c\20SkClipOp\29::$_0::__invoke\28unsigned\20int\2c\20unsigned\20int\29 +13732:SkAAClip::Builder::Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13733:SkAAClip::Builder::Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13734:SkAAClip::Builder::Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +13735:SkAAClip::Builder::Blitter::blitH\28int\2c\20int\2c\20int\29 +13736:SkAAClip::Builder::Blitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +13737:SkA8_Coverage_Blitter::~SkA8_Coverage_Blitter\28\29_2578 +13738:SkA8_Coverage_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13739:SkA8_Coverage_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13740:SkA8_Coverage_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +13741:SkA8_Coverage_Blitter::blitH\28int\2c\20int\2c\20int\29 +13742:SkA8_Coverage_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +13743:SkA8_Blitter::~SkA8_Blitter\28\29_2593 +13744:SkA8_Blitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13745:SkA8_Blitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13746:SkA8_Blitter::blitMask\28SkMask\20const&\2c\20SkIRect\20const&\29 +13747:SkA8_Blitter::blitH\28int\2c\20int\2c\20int\29 +13748:SkA8_Blitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20short\20const*\29 +13749:SkA8Blitter_Choose\28SkPixmap\20const&\2c\20SkMatrix\20const&\2c\20SkPaint\20const&\2c\20SkArenaAlloc*\2c\20SkDrawCoverage\2c\20sk_sp\2c\20SkSurfaceProps\20const&\2c\20SkRect\20const&\29 +13750:ShaderPDXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13751:ShaderPDXferProcessor::name\28\29\20const +13752:ShaderPDXferProcessor::makeProgramImpl\28\29\20const +13753:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +13754:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +13755:SafeRLEAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13756:RuntimeEffectRPCallbacks::toLinearSrgb\28void\20const*\29 +13757:RuntimeEffectRPCallbacks::fromLinearSrgb\28void\20const*\29 +13758:RuntimeEffectRPCallbacks::appendShader\28int\29 +13759:RuntimeEffectRPCallbacks::appendColorFilter\28int\29 +13760:RuntimeEffectRPCallbacks::appendBlender\28int\29 +13761:RunBasedAdditiveBlitter::getRealBlitter\28bool\29 +13762:RunBasedAdditiveBlitter::flush_if_y_changed\28int\2c\20int\29 +13763:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +13764:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +13765:RunBasedAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13766:Round_Up_To_Grid +13767:Round_To_Half_Grid +13768:Round_To_Grid +13769:Round_To_Double_Grid +13770:Round_Super_45 +13771:Round_Super +13772:Round_None +13773:Round_Down_To_Grid +13774:RoundJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +13775:RoundCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +13776:Read_CVT_Stretched +13777:Read_CVT +13778:RD4_C +13779:Project_y +13780:Project +13781:ProcessRows +13782:PredictorAdd9_C +13783:PredictorAdd8_C +13784:PredictorAdd7_C +13785:PredictorAdd6_C +13786:PredictorAdd5_C +13787:PredictorAdd4_C +13788:PredictorAdd3_C +13789:PredictorAdd13_C +13790:PredictorAdd12_C +13791:PredictorAdd11_C +13792:PredictorAdd10_C +13793:PrePostInverseBlitterProc\28SkBlitter*\2c\20int\2c\20bool\29 +13794:PorterDuffXferProcessor::onHasSecondaryOutput\28\29\20const +13795:PorterDuffXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +13796:PorterDuffXferProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13797:PorterDuffXferProcessor::name\28\29\20const +13798:PorterDuffXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +13799:PorterDuffXferProcessor::makeProgramImpl\28\29\20const +13800:ParseVP8X +13801:PDLCDXferProcessor::onIsEqual\28GrXferProcessor\20const&\29\20const +13802:PDLCDXferProcessor::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +13803:PDLCDXferProcessor::name\28\29\20const +13804:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrXferProcessor\20const&\29 +13805:PDLCDXferProcessor::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +13806:PDLCDXferProcessor::makeProgramImpl\28\29\20const +13807:OT::match_glyph\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +13808:OT::match_coverage\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +13809:OT::match_class_cached\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +13810:OT::match_class_cached2\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +13811:OT::match_class_cached1\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +13812:OT::match_class\28hb_glyph_info_t&\2c\20unsigned\20int\2c\20void\20const*\29 +13813:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GSUB_impl::SubstLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +13814:OT::hb_ot_apply_context_t::return_t\20OT::Layout::GPOS_impl::PosLookup::dispatch_recurse_func\28OT::hb_ot_apply_context_t*\2c\20unsigned\20int\29 +13815:OT::Layout::Common::RangeRecord::cmp_range\28void\20const*\2c\20void\20const*\29 +13816:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +13817:OT::ColorLine::static_get_color_stops\28hb_color_line_t*\2c\20void*\2c\20unsigned\20int\2c\20unsigned\20int*\2c\20hb_color_stop_t*\2c\20void*\29 +13818:OT::CmapSubtableFormat4::accelerator_t::get_glyph_func\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int*\29 +13819:Move_CVT_Stretched +13820:Move_CVT +13821:MiterJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +13822:MaskAdditiveBlitter::~MaskAdditiveBlitter\28\29_5024 +13823:MaskAdditiveBlitter::getWidth\28\29 +13824:MaskAdditiveBlitter::getRealBlitter\28bool\29 +13825:MaskAdditiveBlitter::blitV\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13826:MaskAdditiveBlitter::blitRect\28int\2c\20int\2c\20int\2c\20int\29 +13827:MaskAdditiveBlitter::blitAntiRect\28int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20char\2c\20unsigned\20char\29 +13828:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\29 +13829:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20unsigned\20char\20const*\2c\20int\29 +13830:MaskAdditiveBlitter::blitAntiH\28int\2c\20int\2c\20int\2c\20unsigned\20char\29 +13831:LD4_C +13832:IsValidSimpleFormat +13833:IsValidExtendedFormat +13834:InverseBlitter::blitH\28int\2c\20int\2c\20int\29 +13835:Horish_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +13836:Horish_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +13837:HU4_C +13838:HLine_SkAntiHairBlitter::drawLine\28int\2c\20int\2c\20int\2c\20int\29 +13839:HLine_SkAntiHairBlitter::drawCap\28int\2c\20int\2c\20int\2c\20int\29 +13840:HE8uv_C +13841:HE4_C +13842:HE16_C +13843:HD4_C +13844:GradientUnfilter_C +13845:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +13846:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +13847:GrYUVtoRGBEffect::onMakeProgramImpl\28\29\20const +13848:GrYUVtoRGBEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +13849:GrYUVtoRGBEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13850:GrYUVtoRGBEffect::name\28\29\20const +13851:GrYUVtoRGBEffect::clone\28\29\20const +13852:GrXferProcessor::ProgramImpl::emitWriteSwizzle\28GrGLSLXPFragmentBuilder*\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20char\20const*\29\20const +13853:GrXferProcessor::ProgramImpl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +13854:GrXferProcessor::ProgramImpl::emitBlendCodeForDstRead\28GrGLSLXPFragmentBuilder*\2c\20GrGLSLUniformHandler*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20char\20const*\2c\20GrXferProcessor\20const&\29 +13855:GrWritePixelsTask::~GrWritePixelsTask\28\29_10755 +13856:GrWritePixelsTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +13857:GrWritePixelsTask::onExecute\28GrOpFlushState*\29 +13858:GrWritePixelsTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +13859:GrWaitRenderTask::~GrWaitRenderTask\28\29_10750 +13860:GrWaitRenderTask::onIsUsed\28GrSurfaceProxy*\29\20const +13861:GrWaitRenderTask::onExecute\28GrOpFlushState*\29 +13862:GrWaitRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +13863:GrTransferFromRenderTask::~GrTransferFromRenderTask\28\29_10743 +13864:GrTransferFromRenderTask::onExecute\28GrOpFlushState*\29 +13865:GrTransferFromRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +13866:GrThreadSafeCache::Trampoline::~Trampoline\28\29_10739 +13867:GrTextureResolveRenderTask::~GrTextureResolveRenderTask\28\29_10711 +13868:GrTextureResolveRenderTask::onExecute\28GrOpFlushState*\29 +13869:GrTextureResolveRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +13870:GrTextureEffect::~GrTextureEffect\28\29_11185 +13871:GrTextureEffect::onMakeProgramImpl\28\29\20const +13872:GrTextureEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +13873:GrTextureEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13874:GrTextureEffect::name\28\29\20const +13875:GrTextureEffect::clone\28\29\20const +13876:GrTextureEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +13877:GrTextureEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +13878:GrTDeferredProxyUploader>::~GrTDeferredProxyUploader\28\29_9268 +13879:GrTDeferredProxyUploader>::freeData\28\29 +13880:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::~GrTDeferredProxyUploader\28\29_12426 +13881:GrTDeferredProxyUploader<\28anonymous\20namespace\29::SoftwarePathData>::freeData\28\29 +13882:GrSurfaceProxy::getUniqueKey\28\29\20const +13883:GrSurface::getResourceType\28\29\20const +13884:GrStrokeTessellationShader::~GrStrokeTessellationShader\28\29_12591 +13885:GrStrokeTessellationShader::name\28\29\20const +13886:GrStrokeTessellationShader::makeProgramImpl\28GrShaderCaps\20const&\29\20const +13887:GrStrokeTessellationShader::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13888:GrStrokeTessellationShader::Impl::~Impl\28\29_12596 +13889:GrStrokeTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +13890:GrStrokeTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +13891:GrSkSLFP::~GrSkSLFP\28\29_11142 +13892:GrSkSLFP::onMakeProgramImpl\28\29\20const +13893:GrSkSLFP::onIsEqual\28GrFragmentProcessor\20const&\29\20const +13894:GrSkSLFP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13895:GrSkSLFP::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +13896:GrSkSLFP::clone\28\29\20const +13897:GrSkSLFP::Impl::~Impl\28\29_11150 +13898:GrSkSLFP::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +13899:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::toLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +13900:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleShader\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +13901:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleColorFilter\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +13902:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::sampleBlender\28int\2c\20std::__2::basic_string\2c\20std::__2::allocator>\2c\20std::__2::basic_string\2c\20std::__2::allocator>\29 +13903:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::getMangledName\28char\20const*\29 +13904:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::fromLinearSrgb\28std::__2::basic_string\2c\20std::__2::allocator>\29 +13905:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::defineFunction\28char\20const*\2c\20char\20const*\2c\20bool\29 +13906:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareUniform\28SkSL::VarDeclaration\20const*\29 +13907:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29::FPCallbacks::declareFunction\28char\20const*\29 +13908:GrSkSLFP::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +13909:GrSimpleMesh*\20SkArenaAlloc::allocUninitializedArray\28unsigned\20long\29::'lambda'\28char*\29::__invoke\28char*\29 +13910:GrRingBuffer::FinishSubmit\28void*\29 +13911:GrResourceCache::CompareTimestamp\28GrGpuResource*\20const&\2c\20GrGpuResource*\20const&\29 +13912:GrRenderTask::disown\28GrDrawingManager*\29 +13913:GrRecordingContext::~GrRecordingContext\28\29_10475 +13914:GrRRectShadowGeoProc::~GrRRectShadowGeoProc\28\29_11133 +13915:GrRRectShadowGeoProc::onTextureSampler\28int\29\20const +13916:GrRRectShadowGeoProc::name\28\29\20const +13917:GrRRectShadowGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +13918:GrRRectShadowGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +13919:GrQuadEffect::name\28\29\20const +13920:GrQuadEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +13921:GrQuadEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13922:GrQuadEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +13923:GrQuadEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +13924:GrPorterDuffXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +13925:GrPorterDuffXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +13926:GrPerlinNoise2Effect::~GrPerlinNoise2Effect\28\29_11075 +13927:GrPerlinNoise2Effect::onMakeProgramImpl\28\29\20const +13928:GrPerlinNoise2Effect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +13929:GrPerlinNoise2Effect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13930:GrPerlinNoise2Effect::name\28\29\20const +13931:GrPerlinNoise2Effect::clone\28\29\20const +13932:GrPerlinNoise2Effect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +13933:GrPerlinNoise2Effect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +13934:GrPathTessellationShader::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +13935:GrPathTessellationShader::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +13936:GrOpsRenderPass::onExecuteDrawable\28std::__2::unique_ptr>\29 +13937:GrOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +13938:GrOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +13939:GrOpFlushState::writeView\28\29\20const +13940:GrOpFlushState::usesMSAASurface\28\29\20const +13941:GrOpFlushState::tokenTracker\28\29 +13942:GrOpFlushState::threadSafeCache\28\29\20const +13943:GrOpFlushState::strikeCache\28\29\20const +13944:GrOpFlushState::sampledProxyArray\28\29 +13945:GrOpFlushState::rtProxy\28\29\20const +13946:GrOpFlushState::resourceProvider\28\29\20const +13947:GrOpFlushState::renderPassBarriers\28\29\20const +13948:GrOpFlushState::putBackVertices\28int\2c\20unsigned\20long\29 +13949:GrOpFlushState::putBackIndirectDraws\28int\29 +13950:GrOpFlushState::putBackIndexedIndirectDraws\28int\29 +13951:GrOpFlushState::makeVertexSpace\28unsigned\20long\2c\20int\2c\20sk_sp*\2c\20int*\29 +13952:GrOpFlushState::makeVertexSpaceAtLeast\28unsigned\20long\2c\20int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +13953:GrOpFlushState::makeIndexSpace\28int\2c\20sk_sp*\2c\20int*\29 +13954:GrOpFlushState::makeIndexSpaceAtLeast\28int\2c\20int\2c\20sk_sp*\2c\20int*\2c\20int*\29 +13955:GrOpFlushState::makeDrawIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +13956:GrOpFlushState::makeDrawIndexedIndirectSpace\28int\2c\20sk_sp*\2c\20unsigned\20long*\29 +13957:GrOpFlushState::dstProxyView\28\29\20const +13958:GrOpFlushState::colorLoadOp\28\29\20const +13959:GrOpFlushState::caps\28\29\20const +13960:GrOpFlushState::atlasManager\28\29\20const +13961:GrOpFlushState::appliedClip\28\29\20const +13962:GrOpFlushState::addInlineUpload\28std::__2::function&\29>&&\29 +13963:GrOnFlushCallbackObject::postFlush\28skgpu::Token\29 +13964:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +13965:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +13966:GrModulateAtlasCoverageEffect::onMakeProgramImpl\28\29\20const +13967:GrModulateAtlasCoverageEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +13968:GrModulateAtlasCoverageEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +13969:GrModulateAtlasCoverageEffect::name\28\29\20const +13970:GrModulateAtlasCoverageEffect::clone\28\29\20const +13971:GrMeshDrawOp::onPrepare\28GrOpFlushState*\29 +13972:GrMeshDrawOp::onPrePrepare\28GrRecordingContext*\2c\20GrSurfaceProxyView\20const&\2c\20GrAppliedClip*\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +13973:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +13974:GrMatrixEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +13975:GrMatrixEffect::onMakeProgramImpl\28\29\20const +13976:GrMatrixEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +13977:GrMatrixEffect::name\28\29\20const +13978:GrMatrixEffect::clone\28\29\20const +13979:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::Listener::~Listener\28\29_10780 +13980:GrMakeUniqueKeyInvalidationListener\28skgpu::UniqueKey*\2c\20unsigned\20int\29::$_0::__invoke\28void\20const*\2c\20void*\29 +13981:GrImageContext::~GrImageContext\28\29 +13982:GrHardClip::apply\28GrRecordingContext*\2c\20skgpu::ganesh::SurfaceDrawContext*\2c\20GrDrawOp*\2c\20GrAAType\2c\20GrAppliedClip*\2c\20SkRect*\29\20const +13983:GrGpuResource::dumpMemoryStatistics\28SkTraceMemoryDump*\29\20const +13984:GrGpuBuffer::unref\28\29\20const +13985:GrGpuBuffer::ref\28\29\20const +13986:GrGpuBuffer::getResourceType\28\29\20const +13987:GrGpuBuffer::computeScratchKey\28skgpu::ScratchKey*\29\20const +13988:GrGpu::startTimerQuery\28\29 +13989:GrGpu::endTimerQuery\28GrTimerQuery\20const&\29 +13990:GrGeometryProcessor::onTextureSampler\28int\29\20const +13991:GrGLVaryingHandler::~GrGLVaryingHandler\28\29 +13992:GrGLUniformHandler::~GrGLUniformHandler\28\29_13174 +13993:GrGLUniformHandler::samplerVariable\28GrResourceHandle\29\20const +13994:GrGLUniformHandler::samplerSwizzle\28GrResourceHandle\29\20const +13995:GrGLUniformHandler::internalAddUniformArray\28GrProcessor\20const*\2c\20unsigned\20int\2c\20SkSLType\2c\20char\20const*\2c\20bool\2c\20int\2c\20char\20const**\29 +13996:GrGLUniformHandler::getUniformCStr\28GrResourceHandle\29\20const +13997:GrGLUniformHandler::appendUniformDecls\28GrShaderFlags\2c\20SkString*\29\20const +13998:GrGLUniformHandler::addSampler\28GrBackendFormat\20const&\2c\20GrSamplerState\2c\20skgpu::Swizzle\20const&\2c\20char\20const*\2c\20GrShaderCaps\20const*\29 +13999:GrGLTextureRenderTarget::onSetLabel\28\29 +14000:GrGLTextureRenderTarget::backendFormat\28\29\20const +14001:GrGLTexture::textureParamsModified\28\29 +14002:GrGLTexture::onStealBackendTexture\28GrBackendTexture*\2c\20std::__2::function*\29 +14003:GrGLTexture::getBackendTexture\28\29\20const +14004:GrGLSemaphore::~GrGLSemaphore\28\29_13106 +14005:GrGLSemaphore::setIsOwned\28\29 +14006:GrGLSemaphore::backendSemaphore\28\29\20const +14007:GrGLSLVertexBuilder::~GrGLSLVertexBuilder\28\29 +14008:GrGLSLVertexBuilder::onFinalize\28\29 +14009:GrGLSLUniformHandler::inputSamplerSwizzle\28GrResourceHandle\29\20const +14010:GrGLSLFragmentShaderBuilder::~GrGLSLFragmentShaderBuilder\28\29 +14011:GrGLSLFragmentShaderBuilder::hasSecondaryOutput\28\29\20const +14012:GrGLSLFragmentShaderBuilder::forceHighPrecision\28\29 +14013:GrGLRenderTarget::getBackendRenderTarget\28\29\20const +14014:GrGLRenderTarget::completeStencilAttachment\28GrAttachment*\2c\20bool\29 +14015:GrGLRenderTarget::canAttemptStencilAttachment\28bool\29\20const +14016:GrGLRenderTarget::alwaysClearStencil\28\29\20const +14017:GrGLProgramDataManager::~GrGLProgramDataManager\28\29_13060 +14018:GrGLProgramDataManager::setMatrix4fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +14019:GrGLProgramDataManager::setMatrix4f\28GrResourceHandle\2c\20float\20const*\29\20const +14020:GrGLProgramDataManager::setMatrix3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +14021:GrGLProgramDataManager::setMatrix3f\28GrResourceHandle\2c\20float\20const*\29\20const +14022:GrGLProgramDataManager::setMatrix2fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +14023:GrGLProgramDataManager::setMatrix2f\28GrResourceHandle\2c\20float\20const*\29\20const +14024:GrGLProgramDataManager::set4iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +14025:GrGLProgramDataManager::set4i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\2c\20int\29\20const +14026:GrGLProgramDataManager::set4f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\2c\20float\29\20const +14027:GrGLProgramDataManager::set3iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +14028:GrGLProgramDataManager::set3i\28GrResourceHandle\2c\20int\2c\20int\2c\20int\29\20const +14029:GrGLProgramDataManager::set3fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +14030:GrGLProgramDataManager::set3f\28GrResourceHandle\2c\20float\2c\20float\2c\20float\29\20const +14031:GrGLProgramDataManager::set2iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +14032:GrGLProgramDataManager::set2i\28GrResourceHandle\2c\20int\2c\20int\29\20const +14033:GrGLProgramDataManager::set2f\28GrResourceHandle\2c\20float\2c\20float\29\20const +14034:GrGLProgramDataManager::set1iv\28GrResourceHandle\2c\20int\2c\20int\20const*\29\20const +14035:GrGLProgramDataManager::set1i\28GrResourceHandle\2c\20int\29\20const +14036:GrGLProgramDataManager::set1fv\28GrResourceHandle\2c\20int\2c\20float\20const*\29\20const +14037:GrGLProgramDataManager::set1f\28GrResourceHandle\2c\20float\29\20const +14038:GrGLProgramBuilder::~GrGLProgramBuilder\28\29_13192 +14039:GrGLProgramBuilder::varyingHandler\28\29 +14040:GrGLProgramBuilder::caps\28\29\20const +14041:GrGLProgram::~GrGLProgram\28\29_13043 +14042:GrGLOpsRenderPass::~GrGLOpsRenderPass\28\29 +14043:GrGLOpsRenderPass::onSetScissorRect\28SkIRect\20const&\29 +14044:GrGLOpsRenderPass::onEnd\28\29 +14045:GrGLOpsRenderPass::onDraw\28int\2c\20int\29 +14046:GrGLOpsRenderPass::onDrawInstanced\28int\2c\20int\2c\20int\2c\20int\29 +14047:GrGLOpsRenderPass::onDrawIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +14048:GrGLOpsRenderPass::onDrawIndexed\28int\2c\20int\2c\20unsigned\20short\2c\20unsigned\20short\2c\20int\29 +14049:GrGLOpsRenderPass::onDrawIndexedInstanced\28int\2c\20int\2c\20int\2c\20int\2c\20int\29 +14050:GrGLOpsRenderPass::onDrawIndexedIndirect\28GrBuffer\20const*\2c\20unsigned\20long\2c\20int\29 +14051:GrGLOpsRenderPass::onClear\28GrScissorState\20const&\2c\20std::__2::array\29 +14052:GrGLOpsRenderPass::onClearStencilClip\28GrScissorState\20const&\2c\20bool\29 +14053:GrGLOpsRenderPass::onBindTextures\28GrGeometryProcessor\20const&\2c\20GrSurfaceProxy\20const*\20const*\2c\20GrPipeline\20const&\29 +14054:GrGLOpsRenderPass::onBindPipeline\28GrProgramInfo\20const&\2c\20SkRect\20const&\29 +14055:GrGLOpsRenderPass::onBindBuffers\28sk_sp\2c\20sk_sp\2c\20sk_sp\2c\20GrPrimitiveRestart\29 +14056:GrGLOpsRenderPass::onBegin\28\29 +14057:GrGLOpsRenderPass::inlineUpload\28GrOpFlushState*\2c\20std::__2::function&\29>&\29 +14058:GrGLInterface::~GrGLInterface\28\29_13016 +14059:GrGLGpu::~GrGLGpu\28\29_12855 +14060:GrGLGpu::xferBarrier\28GrRenderTarget*\2c\20GrXferBarrierType\29 +14061:GrGLGpu::wrapBackendSemaphore\28GrBackendSemaphore\20const&\2c\20GrSemaphoreWrapType\2c\20GrWrapOwnership\29 +14062:GrGLGpu::willExecute\28\29 +14063:GrGLGpu::submit\28GrOpsRenderPass*\29 +14064:GrGLGpu::startTimerQuery\28\29 +14065:GrGLGpu::stagingBufferManager\28\29 +14066:GrGLGpu::refPipelineBuilder\28\29 +14067:GrGLGpu::prepareTextureForCrossContextUsage\28GrTexture*\29 +14068:GrGLGpu::prepareSurfacesForBackendAccessAndStateUpdates\28SkSpan\2c\20SkSurfaces::BackendSurfaceAccess\2c\20skgpu::MutableTextureState\20const*\29 +14069:GrGLGpu::precompileShader\28SkData\20const&\2c\20SkData\20const&\29 +14070:GrGLGpu::onWritePixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20GrMipLevel\20const*\2c\20int\2c\20bool\29 +14071:GrGLGpu::onWrapRenderableBackendTexture\28GrBackendTexture\20const&\2c\20int\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +14072:GrGLGpu::onWrapCompressedBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\29 +14073:GrGLGpu::onWrapBackendTexture\28GrBackendTexture\20const&\2c\20GrWrapOwnership\2c\20GrWrapCacheable\2c\20GrIOType\29 +14074:GrGLGpu::onWrapBackendRenderTarget\28GrBackendRenderTarget\20const&\29 +14075:GrGLGpu::onUpdateCompressedBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20void\20const*\2c\20unsigned\20long\29 +14076:GrGLGpu::onTransferPixelsTo\28GrTexture*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +14077:GrGLGpu::onTransferPixelsFrom\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20sk_sp\2c\20unsigned\20long\29 +14078:GrGLGpu::onTransferFromBufferToBuffer\28sk_sp\2c\20unsigned\20long\2c\20sk_sp\2c\20unsigned\20long\2c\20unsigned\20long\29 +14079:GrGLGpu::onSubmitToGpu\28GrSubmitInfo\20const&\29 +14080:GrGLGpu::onResolveRenderTarget\28GrRenderTarget*\2c\20SkIRect\20const&\29 +14081:GrGLGpu::onResetTextureBindings\28\29 +14082:GrGLGpu::onResetContext\28unsigned\20int\29 +14083:GrGLGpu::onRegenerateMipMapLevels\28GrTexture*\29 +14084:GrGLGpu::onReadPixels\28GrSurface*\2c\20SkIRect\2c\20GrColorType\2c\20GrColorType\2c\20void*\2c\20unsigned\20long\29 +14085:GrGLGpu::onGetOpsRenderPass\28GrRenderTarget*\2c\20bool\2c\20GrAttachment*\2c\20GrSurfaceOrigin\2c\20SkIRect\20const&\2c\20GrOpsRenderPass::LoadAndStoreInfo\20const&\2c\20GrOpsRenderPass::StencilLoadAndStoreInfo\20const&\2c\20skia_private::TArray\20const&\2c\20GrXferBarrierFlags\29 +14086:GrGLGpu::onDumpJSON\28SkJSONWriter*\29\20const +14087:GrGLGpu::onCreateTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20int\2c\20skgpu::Budgeted\2c\20skgpu::Protected\2c\20int\2c\20unsigned\20int\2c\20std::__2::basic_string_view>\29 +14088:GrGLGpu::onCreateCompressedTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Budgeted\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20void\20const*\2c\20unsigned\20long\29 +14089:GrGLGpu::onCreateCompressedBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\29 +14090:GrGLGpu::onCreateBuffer\28unsigned\20long\2c\20GrGpuBufferType\2c\20GrAccessPattern\29 +14091:GrGLGpu::onCreateBackendTexture\28SkISize\2c\20GrBackendFormat\20const&\2c\20skgpu::Renderable\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20std::__2::basic_string_view>\29 +14092:GrGLGpu::onCopySurface\28GrSurface*\2c\20SkIRect\20const&\2c\20GrSurface*\2c\20SkIRect\20const&\2c\20SkFilterMode\29 +14093:GrGLGpu::onClearBackendTexture\28GrBackendTexture\20const&\2c\20sk_sp\2c\20std::__2::array\29 +14094:GrGLGpu::makeStencilAttachment\28GrBackendFormat\20const&\2c\20SkISize\2c\20int\29 +14095:GrGLGpu::makeSemaphore\28bool\29 +14096:GrGLGpu::makeMSAAAttachment\28SkISize\2c\20GrBackendFormat\20const&\2c\20int\2c\20skgpu::Protected\2c\20GrMemoryless\29 +14097:GrGLGpu::getPreferredStencilFormat\28GrBackendFormat\20const&\29 +14098:GrGLGpu::finishOutstandingGpuWork\28\29 +14099:GrGLGpu::endTimerQuery\28GrTimerQuery\20const&\29 +14100:GrGLGpu::disconnect\28GrGpu::DisconnectType\29 +14101:GrGLGpu::deleteBackendTexture\28GrBackendTexture\20const&\29 +14102:GrGLGpu::compile\28GrProgramDesc\20const&\2c\20GrProgramInfo\20const&\29 +14103:GrGLGpu::checkFinishedCallbacks\28\29 +14104:GrGLGpu::addFinishedCallback\28skgpu::AutoCallback\2c\20std::__2::optional\29 +14105:GrGLGpu::ProgramCache::~ProgramCache\28\29_13006 +14106:GrGLFunction::GrGLFunction\28void\20\28*\29\28unsigned\20int\2c\20unsigned\20int\2c\20float\29\29::'lambda'\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29::__invoke\28void\20const*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20float\29 +14107:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29::__invoke\28void\20const*\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20int\2c\20unsigned\20int\2c\20unsigned\20int\29 +14108:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\2c\20float\29 +14109:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\2c\20float\29 +14110:GrGLFunction::GrGLFunction\28void\20\28*\29\28int\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20int\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20int\2c\20float\2c\20float\29 +14111:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\2c\20float\2c\20float\2c\20float\29\29::'lambda'\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29::__invoke\28void\20const*\2c\20float\2c\20float\2c\20float\2c\20float\29 +14112:GrGLFunction::GrGLFunction\28void\20\28*\29\28float\29\29::'lambda'\28void\20const*\2c\20float\29::__invoke\28void\20const*\2c\20float\29 +14113:GrGLFunction::GrGLFunction\28void\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +14114:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28__GLsync*\2c\20unsigned\20int\2c\20unsigned\20int\2c\20unsigned\20int\29\29::'lambda'\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29::__invoke\28void\20const*\2c\20__GLsync*\2c\20unsigned\20int\2c\20int\2c\20int\29 +14115:GrGLFunction::GrGLFunction\28unsigned\20int\20\28*\29\28\29\29::'lambda'\28void\20const*\29::__invoke\28void\20const*\29 +14116:GrGLContext::~GrGLContext\28\29 +14117:GrGLCaps::~GrGLCaps\28\29_12790 +14118:GrGLCaps::surfaceSupportsReadPixels\28GrSurface\20const*\29\20const +14119:GrGLCaps::supportedWritePixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +14120:GrGLCaps::onSurfaceSupportsWritePixels\28GrSurface\20const*\29\20const +14121:GrGLCaps::onSupportsDynamicMSAA\28GrRenderTargetProxy\20const*\29\20const +14122:GrGLCaps::onSupportedReadPixelsColorType\28GrColorType\2c\20GrBackendFormat\20const&\2c\20GrColorType\29\20const +14123:GrGLCaps::onIsWindowRectanglesSupportedForRT\28GrBackendRenderTarget\20const&\29\20const +14124:GrGLCaps::onGetReadSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +14125:GrGLCaps::onGetDstSampleFlagsForProxy\28GrRenderTargetProxy\20const*\29\20const +14126:GrGLCaps::onGetDefaultBackendFormat\28GrColorType\29\20const +14127:GrGLCaps::onDumpJSON\28SkJSONWriter*\29\20const +14128:GrGLCaps::onCanCopySurface\28GrSurfaceProxy\20const*\2c\20SkIRect\20const&\2c\20GrSurfaceProxy\20const*\2c\20SkIRect\20const&\29\20const +14129:GrGLCaps::onAreColorTypeAndFormatCompatible\28GrColorType\2c\20GrBackendFormat\20const&\29\20const +14130:GrGLCaps::onApplyOptionsOverrides\28GrContextOptions\20const&\29 +14131:GrGLCaps::maxRenderTargetSampleCount\28GrBackendFormat\20const&\29\20const +14132:GrGLCaps::makeDesc\28GrRenderTarget*\2c\20GrProgramInfo\20const&\2c\20GrCaps::ProgramDescOverrideFlags\29\20const +14133:GrGLCaps::isFormatTexturable\28GrBackendFormat\20const&\2c\20GrTextureType\29\20const +14134:GrGLCaps::isFormatSRGB\28GrBackendFormat\20const&\29\20const +14135:GrGLCaps::isFormatRenderable\28GrBackendFormat\20const&\2c\20int\29\20const +14136:GrGLCaps::isFormatCopyable\28GrBackendFormat\20const&\29\20const +14137:GrGLCaps::isFormatAsColorTypeRenderable\28GrColorType\2c\20GrBackendFormat\20const&\2c\20int\29\20const +14138:GrGLCaps::getWriteSwizzle\28GrBackendFormat\20const&\2c\20GrColorType\29\20const +14139:GrGLCaps::getRenderTargetSampleCount\28int\2c\20GrBackendFormat\20const&\29\20const +14140:GrGLCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +14141:GrGLCaps::getBackendFormatFromCompressionType\28SkTextureCompressionType\29\20const +14142:GrGLCaps::computeFormatKey\28GrBackendFormat\20const&\29\20const +14143:GrGLBuffer::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +14144:GrGLBuffer::onUpdateData\28void\20const*\2c\20unsigned\20long\2c\20unsigned\20long\2c\20bool\29 +14145:GrGLBuffer::onUnmap\28GrGpuBuffer::MapType\29 +14146:GrGLBuffer::onSetLabel\28\29 +14147:GrGLBuffer::onRelease\28\29 +14148:GrGLBuffer::onMap\28GrGpuBuffer::MapType\29 +14149:GrGLBuffer::onClearToZero\28\29 +14150:GrGLBuffer::onAbandon\28\29 +14151:GrGLBackendTextureData::~GrGLBackendTextureData\28\29_12749 +14152:GrGLBackendTextureData::~GrGLBackendTextureData\28\29 +14153:GrGLBackendTextureData::isSameTexture\28GrBackendTextureData\20const*\29\20const +14154:GrGLBackendTextureData::getBackendFormat\28\29\20const +14155:GrGLBackendTextureData::equal\28GrBackendTextureData\20const*\29\20const +14156:GrGLBackendTextureData::copyTo\28SkAnySubclass&\29\20const +14157:GrGLBackendRenderTargetData::isProtected\28\29\20const +14158:GrGLBackendRenderTargetData::getBackendFormat\28\29\20const +14159:GrGLBackendRenderTargetData::equal\28GrBackendRenderTargetData\20const*\29\20const +14160:GrGLBackendRenderTargetData::copyTo\28SkAnySubclass&\29\20const +14161:GrGLBackendFormatData::toString\28\29\20const +14162:GrGLBackendFormatData::stencilBits\28\29\20const +14163:GrGLBackendFormatData::equal\28GrBackendFormatData\20const*\29\20const +14164:GrGLBackendFormatData::desc\28\29\20const +14165:GrGLBackendFormatData::copyTo\28SkAnySubclass&\29\20const +14166:GrGLBackendFormatData::compressionType\28\29\20const +14167:GrGLBackendFormatData::channelMask\28\29\20const +14168:GrGLBackendFormatData::bytesPerBlock\28\29\20const +14169:GrGLAttachment::~GrGLAttachment\28\29 +14170:GrGLAttachment::setMemoryBacking\28SkTraceMemoryDump*\2c\20SkString\20const&\29\20const +14171:GrGLAttachment::onSetLabel\28\29 +14172:GrGLAttachment::onRelease\28\29 +14173:GrGLAttachment::onAbandon\28\29 +14174:GrGLAttachment::backendFormat\28\29\20const +14175:GrFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +14176:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14177:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onMakeProgramImpl\28\29\20const +14178:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +14179:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14180:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::name\28\29\20const +14181:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +14182:GrFragmentProcessor::SwizzleOutput\28std::__2::unique_ptr>\2c\20skgpu::Swizzle\20const&\29::SwizzleFragmentProcessor::clone\28\29\20const +14183:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14184:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::onMakeProgramImpl\28\29\20const +14185:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::name\28\29\20const +14186:GrFragmentProcessor::SurfaceColor\28\29::SurfaceColorProcessor::clone\28\29\20const +14187:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14188:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::onMakeProgramImpl\28\29\20const +14189:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::name\28\29\20const +14190:GrFragmentProcessor::HighPrecision\28std::__2::unique_ptr>\29::HighPrecisionFragmentProcessor::clone\28\29\20const +14191:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14192:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::onMakeProgramImpl\28\29\20const +14193:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::name\28\29\20const +14194:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +14195:GrFragmentProcessor::DeviceSpace\28std::__2::unique_ptr>\29::DeviceSpace::clone\28\29\20const +14196:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14197:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::onMakeProgramImpl\28\29\20const +14198:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::name\28\29\20const +14199:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +14200:GrFragmentProcessor::Compose\28std::__2::unique_ptr>\2c\20std::__2::unique_ptr>\29::ComposeProcessor::clone\28\29\20const +14201:GrFixedClip::~GrFixedClip\28\29_10101 +14202:GrFixedClip::~GrFixedClip\28\29 +14203:GrFixedClip::getConservativeBounds\28\29\20const +14204:GrExternalTextureGenerator::onGenerateTexture\28GrRecordingContext*\2c\20SkImageInfo\20const&\2c\20skgpu::Mipmapped\2c\20GrImageTexGenPolicy\29 +14205:GrDynamicAtlas::~GrDynamicAtlas\28\29_10075 +14206:GrDrawOp::usesStencil\28\29\20const +14207:GrDrawOp::usesMSAA\28\29\20const +14208:GrDrawOp::fixedFunctionFlags\28\29\20const +14209:GrDistanceFieldPathGeoProc::~GrDistanceFieldPathGeoProc\28\29_11031 +14210:GrDistanceFieldPathGeoProc::onTextureSampler\28int\29\20const +14211:GrDistanceFieldPathGeoProc::name\28\29\20const +14212:GrDistanceFieldPathGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14213:GrDistanceFieldPathGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14214:GrDistanceFieldPathGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +14215:GrDistanceFieldPathGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14216:GrDistanceFieldLCDTextGeoProc::~GrDistanceFieldLCDTextGeoProc\28\29_11040 +14217:GrDistanceFieldLCDTextGeoProc::name\28\29\20const +14218:GrDistanceFieldLCDTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14219:GrDistanceFieldLCDTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14220:GrDistanceFieldLCDTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +14221:GrDistanceFieldLCDTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14222:GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc\28\29_11020 +14223:GrDistanceFieldA8TextGeoProc::name\28\29\20const +14224:GrDistanceFieldA8TextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14225:GrDistanceFieldA8TextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14226:GrDistanceFieldA8TextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +14227:GrDistanceFieldA8TextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14228:GrDisableColorXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +14229:GrDisableColorXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +14230:GrDirectContext::~GrDirectContext\28\29_9887 +14231:GrDirectContext::init\28\29 +14232:GrDirectContext::abandonContext\28\29 +14233:GrDeferredProxyUploader::~GrDeferredProxyUploader\28\29_9270 +14234:GrCpuVertexAllocator::~GrCpuVertexAllocator\28\29_10094 +14235:GrCpuVertexAllocator::unlock\28int\29 +14236:GrCpuVertexAllocator::lock\28unsigned\20long\2c\20int\29 +14237:GrCpuBuffer::unref\28\29\20const +14238:GrCpuBuffer::ref\28\29\20const +14239:GrCoverageSetOpXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +14240:GrCoverageSetOpXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +14241:GrCopyRenderTask::~GrCopyRenderTask\28\29_9816 +14242:GrCopyRenderTask::onMakeSkippable\28\29 +14243:GrCopyRenderTask::onMakeClosed\28GrRecordingContext*\2c\20SkIRect*\29 +14244:GrCopyRenderTask::onExecute\28GrOpFlushState*\29 +14245:GrCopyRenderTask::gatherProxyIntervals\28GrResourceAllocator*\29\20const +14246:GrConvexPolyEffect::~GrConvexPolyEffect\28\29 +14247:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +14248:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14249:GrConvexPolyEffect::onMakeProgramImpl\28\29\20const +14250:GrConvexPolyEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +14251:GrConvexPolyEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14252:GrConvexPolyEffect::name\28\29\20const +14253:GrConvexPolyEffect::clone\28\29\20const +14254:GrContextThreadSafeProxy::~GrContextThreadSafeProxy\28\29_9793 +14255:GrContextThreadSafeProxy::isValidCharacterizationForVulkan\28sk_sp\2c\20bool\2c\20skgpu::Mipmapped\2c\20skgpu::Protected\2c\20bool\2c\20bool\29 +14256:GrConicEffect::name\28\29\20const +14257:GrConicEffect::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14258:GrConicEffect::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14259:GrConicEffect::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +14260:GrConicEffect::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14261:GrColorSpaceXformEffect::~GrColorSpaceXformEffect\28\29_9757 +14262:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +14263:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14264:GrColorSpaceXformEffect::onMakeProgramImpl\28\29\20const +14265:GrColorSpaceXformEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +14266:GrColorSpaceXformEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14267:GrColorSpaceXformEffect::name\28\29\20const +14268:GrColorSpaceXformEffect::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +14269:GrColorSpaceXformEffect::clone\28\29\20const +14270:GrCaps::getDstCopyRestrictions\28GrRenderTargetProxy\20const*\2c\20GrColorType\29\20const +14271:GrBitmapTextGeoProc::~GrBitmapTextGeoProc\28\29_10943 +14272:GrBitmapTextGeoProc::onTextureSampler\28int\29\20const +14273:GrBitmapTextGeoProc::name\28\29\20const +14274:GrBitmapTextGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14275:GrBitmapTextGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14276:GrBitmapTextGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +14277:GrBitmapTextGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14278:GrBicubicEffect::onMakeProgramImpl\28\29\20const +14279:GrBicubicEffect::onIsEqual\28GrFragmentProcessor\20const&\29\20const +14280:GrBicubicEffect::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14281:GrBicubicEffect::name\28\29\20const +14282:GrBicubicEffect::clone\28\29\20const +14283:GrBicubicEffect::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +14284:GrBicubicEffect::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14285:GrAttachment::onGpuMemorySize\28\29\20const +14286:GrAttachment::getResourceType\28\29\20const +14287:GrAttachment::computeScratchKey\28skgpu::ScratchKey*\29\20const +14288:GrAtlasManager::~GrAtlasManager\28\29_12640 +14289:GrAtlasManager::postFlush\28skgpu::Token\29 +14290:GrAATriangulator::tessellate\28GrTriangulator::VertexList\20const&\2c\20GrTriangulator::Comparator\20const&\29 +14291:GetCoeffsFast +14292:FontMgrRunIterator::~FontMgrRunIterator\28\29_15074 +14293:FontMgrRunIterator::currentFont\28\29\20const +14294:FontMgrRunIterator::consume\28\29 +14295:ExtractAlphaRows +14296:ExportAlphaRGBA4444 +14297:ExportAlpha +14298:EmitYUV +14299:EmitSampledRGB +14300:EmitRescaledYUV +14301:EmitRescaledRGB +14302:EmitRescaledAlphaYUV +14303:EmitRescaledAlphaRGB +14304:EmitFancyRGB +14305:EmitAlphaYUV +14306:EmitAlphaRGBA4444 +14307:EmitAlphaRGB +14308:EllipticalRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +14309:EllipticalRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +14310:EllipticalRRectOp::name\28\29\20const +14311:EllipticalRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +14312:EllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +14313:EllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +14314:EllipseOp::name\28\29\20const +14315:EllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +14316:EllipseGeometryProcessor::name\28\29\20const +14317:EllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14318:EllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14319:EllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14320:Dual_Project +14321:DisableColorXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +14322:DisableColorXP::name\28\29\20const +14323:DisableColorXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +14324:DisableColorXP::makeProgramImpl\28\29\20const +14325:Direct_Move_Y +14326:Direct_Move_X +14327:Direct_Move_Orig_Y +14328:Direct_Move_Orig_X +14329:Direct_Move_Orig +14330:Direct_Move +14331:DefaultGeoProc::name\28\29\20const +14332:DefaultGeoProc::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14333:DefaultGeoProc::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14334:DefaultGeoProc::Impl::setData\28GrGLSLProgramDataManager\20const&\2c\20GrShaderCaps\20const&\2c\20GrGeometryProcessor\20const&\29 +14335:DefaultGeoProc::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14336:DataCacheElement_deleter\28void*\29 +14337:DIEllipseOp::~DIEllipseOp\28\29_12100 +14338:DIEllipseOp::visitProxies\28std::__2::function\20const&\29\20const +14339:DIEllipseOp::onPrepareDraws\28GrMeshDrawTarget*\29 +14340:DIEllipseOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +14341:DIEllipseOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +14342:DIEllipseOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +14343:DIEllipseOp::name\28\29\20const +14344:DIEllipseOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +14345:DIEllipseGeometryProcessor::name\28\29\20const +14346:DIEllipseGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14347:DIEllipseGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14348:DIEllipseGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14349:DC8uv_C +14350:DC8uvNoTop_C +14351:DC8uvNoTopLeft_C +14352:DC8uvNoLeft_C +14353:DC4_C +14354:DC16_C +14355:DC16NoTop_C +14356:DC16NoTopLeft_C +14357:DC16NoLeft_C +14358:CustomXPFactory::makeXferProcessor\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +14359:CustomXPFactory::analysisProperties\28GrProcessorAnalysisColor\20const&\2c\20GrProcessorAnalysisCoverage\20const&\2c\20GrCaps\20const&\2c\20GrClampType\29\20const +14360:CustomXP::xferBarrierType\28GrCaps\20const&\29\20const +14361:CustomXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +14362:CustomXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14363:CustomXP::name\28\29\20const +14364:CustomXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +14365:CustomXP::makeProgramImpl\28\29\20const +14366:CustomTeardown +14367:CustomSetup +14368:CustomPut +14369:Current_Ppem_Stretched +14370:Current_Ppem +14371:Cr_z_zcalloc +14372:CoverageSetOpXP::onGetBlendInfo\28skgpu::BlendInfo*\29\20const +14373:CoverageSetOpXP::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14374:CoverageSetOpXP::name\28\29\20const +14375:CoverageSetOpXP::makeProgramImpl\28\29\20const::Impl::emitOutputsForBlendState\28GrXferProcessor::ProgramImpl::EmitArgs\20const&\29 +14376:CoverageSetOpXP::makeProgramImpl\28\29\20const +14377:ColorTableEffect::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14378:ColorTableEffect::onMakeProgramImpl\28\29\20const +14379:ColorTableEffect::name\28\29\20const +14380:ColorTableEffect::clone\28\29\20const +14381:CircularRRectOp::visitProxies\28std::__2::function\20const&\29\20const +14382:CircularRRectOp::onPrepareDraws\28GrMeshDrawTarget*\29 +14383:CircularRRectOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +14384:CircularRRectOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +14385:CircularRRectOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +14386:CircularRRectOp::name\28\29\20const +14387:CircularRRectOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +14388:CircleOp::~CircleOp\28\29_12136 +14389:CircleOp::visitProxies\28std::__2::function\20const&\29\20const +14390:CircleOp::programInfo\28\29 +14391:CircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +14392:CircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +14393:CircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +14394:CircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +14395:CircleOp::name\28\29\20const +14396:CircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +14397:CircleGeometryProcessor::name\28\29\20const +14398:CircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14399:CircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14400:CircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14401:ButtCapper\28SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20bool\29 +14402:ButtCapDashedCircleOp::visitProxies\28std::__2::function\20const&\29\20const +14403:ButtCapDashedCircleOp::programInfo\28\29 +14404:ButtCapDashedCircleOp::onPrepareDraws\28GrMeshDrawTarget*\29 +14405:ButtCapDashedCircleOp::onExecute\28GrOpFlushState*\2c\20SkRect\20const&\29 +14406:ButtCapDashedCircleOp::onCreateProgramInfo\28GrCaps\20const*\2c\20SkArenaAlloc*\2c\20GrSurfaceProxyView\20const&\2c\20bool\2c\20GrAppliedClip&&\2c\20GrDstProxyView\20const&\2c\20GrXferBarrierFlags\2c\20GrLoadOp\29 +14407:ButtCapDashedCircleOp::onCombineIfPossible\28GrOp*\2c\20SkArenaAlloc*\2c\20GrCaps\20const&\29 +14408:ButtCapDashedCircleOp::name\28\29\20const +14409:ButtCapDashedCircleOp::finalize\28GrCaps\20const&\2c\20GrAppliedClip\20const*\2c\20GrClampType\29 +14410:ButtCapDashedCircleGeometryProcessor::name\28\29\20const +14411:ButtCapDashedCircleGeometryProcessor::makeProgramImpl\28GrShaderCaps\20const&\29\20const +14412:ButtCapDashedCircleGeometryProcessor::addToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14413:ButtCapDashedCircleGeometryProcessor::Impl::onEmitCode\28GrGeometryProcessor::ProgramImpl::EmitArgs&\2c\20GrGeometryProcessor::ProgramImpl::GrGPArgs*\29 +14414:BluntJoiner\28SkPathBuilder*\2c\20SkPathBuilder*\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20SkPoint\20const&\2c\20float\2c\20float\2c\20bool\2c\20bool\29 +14415:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::onSetData\28GrGLSLProgramDataManager\20const&\2c\20GrFragmentProcessor\20const&\29 +14416:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const::Impl::emitCode\28GrFragmentProcessor::ProgramImpl::EmitArgs&\29 +14417:BlendFragmentProcessor::onMakeProgramImpl\28\29\20const +14418:BlendFragmentProcessor::onIsEqual\28GrFragmentProcessor\20const&\29\20const +14419:BlendFragmentProcessor::onAddToKey\28GrShaderCaps\20const&\2c\20skgpu::KeyBuilder*\29\20const +14420:BlendFragmentProcessor::name\28\29\20const +14421:BlendFragmentProcessor::constantOutputForConstantInput\28SkRGBA4f<\28SkAlphaType\292>\20const&\29\20const +14422:BlendFragmentProcessor::clone\28\29\20const +14423:$_3::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +14424:$_2::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 +14425:$_1::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\2c\20unsigned\20char\29 +14426:$_0::__invoke\28unsigned\20char*\2c\20unsigned\20char\2c\20int\29 diff --git a/build/web/canvaskit/skwasm_heavy.wasm b/build/web/canvaskit/skwasm_heavy.wasm new file mode 100755 index 0000000..0827c17 Binary files /dev/null and b/build/web/canvaskit/skwasm_heavy.wasm differ diff --git a/build/web/favicon.png b/build/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/build/web/favicon.png differ diff --git a/build/web/flutter.js b/build/web/flutter.js new file mode 100644 index 0000000..adced61 --- /dev/null +++ b/build/web/flutter.js @@ -0,0 +1,32 @@ +(()=>{var _={blink:!0,gecko:!1,webkit:!1,unknown:!1},K=()=>navigator.vendor==="Google Inc."||navigator.userAgent.includes("Edg/")?"blink":navigator.vendor==="Apple Computer, Inc."?"webkit":navigator.vendor===""&&navigator.userAgent.includes("Firefox")?"gecko":"unknown",L=K(),R=()=>typeof ImageDecoder>"u"?!1:L==="blink",B=()=>typeof Intl.v8BreakIterator<"u"&&typeof Intl.Segmenter<"u",z=()=>{let i=[0,97,115,109,1,0,0,0,1,5,1,95,1,120,0];return WebAssembly.validate(new Uint8Array(i))},M=()=>{let i=document.createElement("canvas");return i.width=1,i.height=1,i.getContext("webgl2")!=null?2:i.getContext("webgl")!=null?1:-1},w={browserEngine:L,hasImageCodecs:R(),hasChromiumBreakIterators:B(),supportsWasmGC:z(),crossOriginIsolated:window.crossOriginIsolated,webGLVersion:M()};function c(...i){return new URL(I(...i),document.baseURI).toString()}function I(...i){return i.filter(e=>!!e).map((e,r)=>r===0?C(e):D(C(e))).filter(e=>e.length).join("/")}function D(i){let e=0;for(;e0&&i.charAt(e-1)==="/";)e--;return i.substring(0,e)}function T(i,e){return i.canvasKitBaseUrl?i.canvasKitBaseUrl:e.engineRevision&&!e.useLocalCanvasKit?I("https://www.gstatic.com/flutter-canvaskit",e.engineRevision):"canvaskit"}var h=class{constructor(){this._scriptLoaded=!1}setTrustedTypesPolicy(e){this._ttPolicy=e}async loadEntrypoint(e){let{entrypointUrl:r=c("main.dart.js"),onEntrypointLoaded:t,nonce:n}=e||{};return this._loadJSEntrypoint(r,t,n)}async load(e,r,t,n,s){s??=d=>{d.initializeEngine(t).then(u=>u.runApp())};let{entrypointBaseUrl:a}=t,{entryPointBaseUrl:o}=t;if(!a&&o&&(console.warn("[deprecated] `entryPointBaseUrl` is deprecated and will be removed in a future release. Use `entrypointBaseUrl` instead."),a=o),e.compileTarget==="dart2wasm")return this._loadWasmEntrypoint(e,r,a,s);{let d=e.mainJsPath??"main.dart.js",u=c(a,d);return this._loadJSEntrypoint(u,s,n)}}didCreateEngineInitializer(e){typeof this._didCreateEngineInitializerResolve=="function"&&(this._didCreateEngineInitializerResolve(e),this._didCreateEngineInitializerResolve=null,delete _flutter.loader.didCreateEngineInitializer),typeof this._onEntrypointLoaded=="function"&&this._onEntrypointLoaded(e)}_loadJSEntrypoint(e,r,t){let n=typeof r=="function";if(!this._scriptLoaded){this._scriptLoaded=!0;let s=this._createScriptTag(e,t);if(n)console.debug("Injecting + + diff --git a/build/web/main.dart.js b/build/web/main.dart.js new file mode 100644 index 0000000..3b9cf0b --- /dev/null +++ b/build/web/main.dart.js @@ -0,0 +1,101343 @@ +(function dartProgram(){function copyProperties(a,b){var s=Object.keys(a) +for(var r=0;r=0)return true +if(typeof version=="function"&&version.length==0){var q=version() +if(/^\d+\.\d+\.\d+\.\d+$/.test(q))return true}}catch(p){}return false}() +function inherit(a,b){a.prototype.constructor=a +a.prototype["$i"+a.name]=a +if(b!=null){if(z){Object.setPrototypeOf(a.prototype,b.prototype) +return}var s=Object.create(b.prototype) +copyProperties(a.prototype,s) +a.prototype=s}}function inheritMany(a,b){for(var s=0;s4294967295)throw A.e(A.cy(a,0,4294967295,"length",null)) +return J.nA(new Array(a),b)}, +aIs(a,b){if(a>4294967295)throw A.e(A.cy(a,0,4294967295,"length",null)) +return J.nA(new Array(a),b)}, +uR(a,b){if(a<0)throw A.e(A.bF("Length must be a non-negative integer: "+a,null)) +return A.b(new Array(a),b.i("D<0>"))}, +aDq(a,b){if(a<0)throw A.e(A.bF("Length must be a non-negative integer: "+a,null)) +return A.b(new Array(a),b.i("D<0>"))}, +nA(a,b){var s=A.b(a,b.i("D<0>")) +s.$flags=1 +return s}, +aUw(a,b){return J.a2l(a,b)}, +aIu(a){if(a<256)switch(a){case 9:case 10:case 11:case 12:case 13:case 32:case 133:case 160:return!0 +default:return!1}switch(a){case 5760:case 8192:case 8193:case 8194:case 8195:case 8196:case 8197:case 8198:case 8199:case 8200:case 8201:case 8202:case 8232:case 8233:case 8239:case 8287:case 12288:case 65279:return!0 +default:return!1}}, +aIv(a,b){var s,r +for(s=a.length;b0;b=s){s=b-1 +r=a.charCodeAt(s) +if(r!==32&&r!==13&&!J.aIu(r))break}return b}, +ph(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.uS.prototype +return J.B7.prototype}if(typeof a=="string")return J.lF.prototype +if(a==null)return J.uT.prototype +if(typeof a=="boolean")return J.B5.prototype +if(Array.isArray(a))return J.D.prototype +if(typeof a!="object"){if(typeof a=="function")return J.fr.prototype +if(typeof a=="symbol")return J.qu.prototype +if(typeof a=="bigint")return J.qt.prototype +return a}if(a instanceof A.R)return a +return J.a1Z(a)}, +b1L(a){if(typeof a=="number")return J.nC.prototype +if(typeof a=="string")return J.lF.prototype +if(a==null)return a +if(Array.isArray(a))return J.D.prototype +if(typeof a!="object"){if(typeof a=="function")return J.fr.prototype +if(typeof a=="symbol")return J.qu.prototype +if(typeof a=="bigint")return J.qt.prototype +return a}if(a instanceof A.R)return a +return J.a1Z(a)}, +aE(a){if(typeof a=="string")return J.lF.prototype +if(a==null)return a +if(Array.isArray(a))return J.D.prototype +if(typeof a!="object"){if(typeof a=="function")return J.fr.prototype +if(typeof a=="symbol")return J.qu.prototype +if(typeof a=="bigint")return J.qt.prototype +return a}if(a instanceof A.R)return a +return J.a1Z(a)}, +cD(a){if(a==null)return a +if(Array.isArray(a))return J.D.prototype +if(typeof a!="object"){if(typeof a=="function")return J.fr.prototype +if(typeof a=="symbol")return J.qu.prototype +if(typeof a=="bigint")return J.qt.prototype +return a}if(a instanceof A.R)return a +return J.a1Z(a)}, +aNb(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.uS.prototype +return J.B7.prototype}if(a==null)return a +if(!(a instanceof A.R))return J.kP.prototype +return a}, +aFh(a){if(typeof a=="number")return J.nC.prototype +if(a==null)return a +if(!(a instanceof A.R))return J.kP.prototype +return a}, +aNc(a){if(typeof a=="number")return J.nC.prototype +if(typeof a=="string")return J.lF.prototype +if(a==null)return a +if(!(a instanceof A.R))return J.kP.prototype +return a}, +aFi(a){if(typeof a=="string")return J.lF.prototype +if(a==null)return a +if(!(a instanceof A.R))return J.kP.prototype +return a}, +dF(a){if(a==null)return a +if(typeof a!="object"){if(typeof a=="function")return J.fr.prototype +if(typeof a=="symbol")return J.qu.prototype +if(typeof a=="bigint")return J.qt.prototype +return a}if(a instanceof A.R)return a +return J.a1Z(a)}, +fd(a){if(a==null)return a +if(!(a instanceof A.R))return J.kP.prototype +return a}, +aQT(a,b){if(typeof a=="number"&&typeof b=="number")return a+b +return J.b1L(a).V(a,b)}, +d(a,b){if(a==null)return b==null +if(typeof a!="object")return b!=null&&a===b +return J.ph(a).j(a,b)}, +aQU(a,b){if(typeof a=="number"&&typeof b=="number")return a*b +return J.aNc(a).a6(a,b)}, +aQV(a,b){if(typeof a=="number"&&typeof b=="number")return a-b +return J.aFh(a).a0(a,b)}, +aK(a,b){if(typeof b==="number")if(Array.isArray(a)||typeof a=="string"||A.aNi(a,a[v.dispatchPropertyName]))if(b>>>0===b&&b>>0===b&&b0?1:a<0?-1:a +return J.aNb(a).gDg(a)}, +aGo(a){return J.fd(a).gDh(a)}, +aR6(a){return J.fd(a).gaN(a)}, +aR7(a){return J.fd(a).gpK(a)}, +aR8(a){return J.fd(a).gq(a)}, +aR9(a){return J.dF(a).geu(a)}, +aRa(a,b,c){return J.cD(a).wY(a,b,c)}, +aGp(a){return J.fd(a).hS(a)}, +aGq(a){return J.cD(a).Bm(a)}, +aRb(a,b){return J.cD(a).bn(a,b)}, +aRc(a,b){return J.fd(a).asf(a,b)}, +h0(a,b,c){return J.cD(a).jV(a,b,c)}, +aRd(a,b,c,d){return J.cD(a).pa(a,b,c,d)}, +aRe(a,b,c){return J.aFi(a).pb(a,b,c)}, +aRf(a){return J.fd(a).K7(a)}, +aRg(a){return J.fd(a).Z1(a)}, +aRh(a){return J.fd(a).Z4(a)}, +Kl(a,b,c){return J.dF(a).bY(a,b,c)}, +aRi(a,b,c,d,e,f){return J.fd(a).Cc(a,b,c,d,e,f)}, +mS(a,b){return J.cD(a).F(a,b)}, +aRj(a){return J.cD(a).hX(a)}, +aRk(a,b){return J.aE(a).sv(a,b)}, +a2n(a,b){return J.cD(a).iG(a,b)}, +a2o(a,b){return J.cD(a).fa(a,b)}, +aGr(a,b){return J.cD(a).KQ(a,b)}, +ap(a){return J.aFh(a).h6(a)}, +a2p(a){return J.cD(a).f8(a)}, +aRl(a){return J.cD(a).hv(a)}, +dr(a){return J.ph(a).k(a)}, +aGs(a,b){return J.cD(a).l2(a,b)}, +aRm(a,b){return J.cD(a).Lk(a,b)}, +uQ:function uQ(){}, +B5:function B5(){}, +uT:function uT(){}, +i:function i(){}, +nF:function nF(){}, +Pd:function Pd(){}, +kP:function kP(){}, +fr:function fr(){}, +qt:function qt(){}, +qu:function qu(){}, +D:function D(a){this.$ti=a}, +NO:function NO(){}, +aaS:function aaS(a){this.$ti=a}, +cV:function cV(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +nC:function nC(){}, +uS:function uS(){}, +B7:function B7(){}, +lF:function lF(){}},A={ +b23(){var s,r,q=$.aER +if(q!=null)return q +s=A.ck("Chrom(e|ium)\\/([0-9]+)\\.",!0,!1) +q=$.bn().gmC() +r=s.n_(q) +if(r!=null){q=r.b[2] +q.toString +return $.aER=A.h_(q,null)<=110}return $.aER=!1}, +a1K(){var s=A.aBm(1,1) +if(A.uv(s,"webgl2")!=null){if($.bn().gdz()===B.be)return 1 +return 2}if(A.uv(s,"webgl")!=null)return 1 +return-1}, +aMP(){var s=v.G +return s.Intl.v8BreakIterator!=null&&s.Intl.Segmenter!=null}, +b26(){var s,r,q,p,o,n +if($.bn().gdI()!==B.bq)return!1 +s=A.ck("Version\\/([0-9]+)\\.([0-9]+)",!0,!1) +r=$.bn().gmC() +q=s.n_(r) +if(q!=null){r=q.b +p=r[1] +p.toString +o=A.h_(p,null) +r=r[2] +r.toString +n=A.h_(r,null) +if(o<=17)r=o===17&&n>=4 +else r=!0 +return r}return!1}, +b25(){var s,r,q +if($.bn().gdI()!==B.cW)return!1 +s=A.ck("Firefox\\/([0-9]+)",!0,!1) +r=$.bn().gmC() +q=s.n_(r) +if(q!=null){r=q.b[1] +r.toString +return A.h_(r,null)>=119}return!1}, +a4e(a,b){if(a.a!=null)throw A.e(A.bF(u.r,null)) +return a.Hp(b==null?B.dj:b)}, +at(){return $.be.bd()}, +aFD(a){var s=$.aQx()[a.a] +return s}, +b2O(a){return a===B.dY?$.be.bd().FilterMode.Nearest:$.be.bd().FilterMode.Linear}, +aFB(a){var s,r,q,p=new Float32Array(16) +for(s=0;s<4;++s)for(r=s*4,q=0;q<4;++q)p[q*4+s]=a[r+q] +return p}, +aFC(a){var s,r,q,p=new Float32Array(9) +for(s=a.length,r=0;r<9;++r){q=B.pp[r] +if(q>>16&255)/255 +s[1]=(b.C()>>>8&255)/255 +s[2]=(b.C()&255)/255 +s[3]=(b.C()>>>24&255)/255 +return s}, +cU(a){var s=new Float32Array(4) +s[0]=a.a +s[1]=a.b +s[2]=a.c +s[3]=a.d +return s}, +aBz(a){return new A.x(a[0],a[1],a[2],a[3])}, +aNt(a){return new A.x(a[0],a[1],a[2],a[3])}, +pk(a){var s=new Float32Array(12) +s[0]=a.a +s[1]=a.b +s[2]=a.c +s[3]=a.d +s[4]=a.e +s[5]=a.f +s[6]=a.r +s[7]=a.w +s[8]=a.x +s[9]=a.y +s[10]=a.z +s[11]=a.Q +return s}, +b2M(a){var s,r,q=a.length,p=new Uint32Array(q) +for(s=0;s"))}, +b0V(a,b){return b+a}, +a1W(){var s=0,r=A.H(t.m),q,p,o,n +var $async$a1W=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:o=A +n=A +s=4 +return A.v(A.aAz(A.aZY()),$async$a1W) +case 4:s=3 +return A.v(n.eV(b.default({locateFile:A.aAK(A.b_l())}),t.K),$async$a1W) +case 3:p=o.dP(b) +if(A.aK6(p.ParagraphBuilder)&&!A.aMP())throw A.e(A.cO("The CanvasKit variant you are using only works on Chromium browsers. Please use a different CanvasKit variant, or use a Chromium browser.")) +q=p +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$a1W,r)}, +aAz(a){var s=0,r=A.H(t.m),q,p=2,o=[],n,m,l,k,j,i +var $async$aAz=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:m=a.$ti,l=new A.bd(a,a.gv(0),m.i("bd")),m=m.i("ax.E") +case 3:if(!l.u()){s=4 +break}k=l.d +n=k==null?m.a(k):k +p=6 +s=9 +return A.v(A.aAy(n),$async$aAz) +case 9:k=c +q=k +s=1 +break +p=2 +s=8 +break +case 6:p=5 +i=o.pop() +s=3 +break +s=8 +break +case 5:s=2 +break +case 8:s=3 +break +case 4:throw A.e(A.cO("Failed to download any of the following CanvasKit URLs: "+a.k(0))) +case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$aAz,r)}, +aAy(a){var s=0,r=A.H(t.m),q,p,o +var $async$aAy=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=v.G +o=p.window.document.baseURI +p=o==null?new p.URL(a):new p.URL(a,o) +s=3 +return A.v(A.eV(import(A.b1k(p.toString())),t.m),$async$aAy) +case 3:q=c +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$aAy,r)}, +abG(a){var s="ColorFilter",r=new A.Oj(a),q=new A.iN(s,t.Pj) +q.nT(r,a.u0(),s,t.m) +r.b!==$&&A.bw() +r.b=q +return r}, +aS0(a){return new A.u5(a)}, +aMW(a){var s +switch(a.d.a){case 0:return null +case 1:s=a.c +if(s==null)return null +return new A.u5(s) +case 2:return B.Cq +case 3:return B.Cr}}, +aJG(a,b,c){var s=new v.G.window.flutterCanvasKit.Font(c),r=A.kx(A.b([0],t.t)) +s.getGlyphBounds(r,null,null) +return new A.rn(b,a,c)}, +a22(a,b,c,d){var s=0,r=A.H(t.hP),q,p,o +var $async$a22=A.B(function(e,f){if(e===1)return A.E(f,r) +for(;;)switch(s){case 0:o=A.aNF(a,"encoded image bytes") +s=$.aG9()?3:5 +break +case 3:s=6 +return A.v(A.Lk("image/"+o.c.b,a,"encoded image bytes"),$async$a22) +case 6:p=f +s=4 +break +case 5:s=o.d?7:9 +break +case 7:f=A.aGV(a,"encoded image bytes",c,b) +s=8 +break +case 9:s=10 +return A.v(A.aBr(A.aMY(A.b([B.O.gc9(a)],t.gb))),$async$a22) +case 10:case 8:p=f +case 4:q=new A.Lt(p,b,c,d) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$a22,r)}, +aMX(a,b,c){var s=$.be.bd(),r=$.be.bd().AlphaType.Premul +r={width:b,height:c,colorType:$.be.bd().ColorType.RGBA_8888,alphaType:r,colorSpace:v.G.window.flutterCanvasKit.ColorSpace.SRGB} +r=s.MakeLazyImageFromTextureSource(A.kx(a),r) +if(r==null)throw A.e(A.jh("Failed to create image from Image.decode")) +return A.z6(r,new A.aaf(a))}, +aGW(a,b){return new A.z7(v.G.window.URL.createObjectURL(A.kx(a)),b)}, +aBr(a){var s=0,r=A.H(t.PO),q,p +var $async$aBr=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=A.aGW(a,null) +s=3 +return A.v(p.v9(0),$async$aBr) +case 3:q=p +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$aBr,r)}, +JX(a,b){return A.b2z(a,b)}, +b2z(a,b){var s=0,r=A.H(t.hP),q,p=2,o=[],n,m,l,k,j,i,h,g +var $async$JX=A.B(function(c,d){if(c===1){o.push(d) +s=p}for(;;)switch(s){case 0:i=new A.Ln(a,b) +p=4 +s=7 +return A.v(J.aGl(i),$async$JX) +case 7:q=i +s=1 +break +p=2 +s=6 +break +case 4:p=3 +h=o.pop() +s=A.a1(h) instanceof A.uK?8:10 +break +case 8:s=11 +return A.v(A.a1Y(a,b),$async$JX) +case 11:n=d +m=A.aNF(n,a) +s=$.aG9()?12:14 +break +case 12:q=A.Lk("image/"+m.c.b,n,a) +s=1 +break +s=13 +break +case 14:l=A.aMY(A.b([J.aR1(n)],t.gb)) +k=A.aGW(l,b) +p=16 +s=19 +return A.v(J.aGl(k),$async$JX) +case 19:q=k +s=1 +break +p=3 +s=18 +break +case 16:p=15 +g=o.pop() +if(A.a1(g) instanceof A.uK){k.l() +q=A.aGV(n,a,null,null) +s=1 +break}else throw g +s=18 +break +case 15:s=3 +break +case 18:case 13:s=9 +break +case 10:throw h +case 9:s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$JX,r)}, +a1Y(a,b){return A.b1x(a,b)}, +b1x(a,b){var s=0,r=A.H(t.H3),q,p=2,o=[],n,m,l,k,j +var $async$a1Y=A.B(function(c,d){if(c===1){o.push(d) +s=p}for(;;)switch(s){case 0:p=4 +s=7 +return A.v(A.tB(a),$async$a1Y) +case 7:n=d +m=n.gan8() +if(!n.gBb()){l=A.jh(u.O+a+"\nServer response code: "+J.aR6(n)) +throw A.e(l)}s=m!=null?8:10 +break +case 8:l=A.aC_(n.grA(),m,b) +q=l +s=1 +break +s=9 +break +case 10:s=11 +return A.v(A.a9X(n),$async$a1Y) +case 11:l=d +q=l +s=1 +break +case 9:p=2 +s=6 +break +case 4:p=3 +j=o.pop() +if(A.a1(j) instanceof A.AO)throw A.e(A.jh(u.O+a+"\nTrying to load an image from another domain? Find answers at:\nhttps://flutter.dev/docs/development/platform-integration/web-images")) +else throw j +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$a1Y,r)}, +aC_(a,b,c){return A.b2r(a,b,c)}, +b2r(a,b,c){var s=0,r=A.H(t.H3),q,p,o +var $async$aC_=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:p={} +o=new v.G.Uint8Array(b) +p.a=p.b=0 +s=3 +return A.v(a.wt(0,new A.aC0(p,c,b,o)),$async$aC_) +case 3:q=o +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$aC_,r)}, +z6(a,b){var s=new A.n3($,b),r=new A.LP(A.aP(t.XY),t.pz),q=new A.iN("SkImage",t.Pj) +q.nT(r,a,"SkImage",t.m) +r.a!==$&&A.bw() +r.a=q +s.b=r +s.Fm() +if(b!=null)++b.a +return s}, +aCG(a,b){var s,r=new A.n3(a,b) +r.Fm() +s=r.b +s===$&&A.a();++s.b +if(b!=null)++b.a +return r}, +aNF(a,b){var s=A.b1q(a) +if(s==null)throw A.e(A.jh("Failed to detect image file format using the file header.\nFile header was "+(!B.O.ga7(a)?"["+A.b0S(B.O.cr(a,0,Math.min(10,a.length)))+"]":"empty")+".\nImage source: "+b)) +return s}, +aGV(a,b,c,d){var s,r,q,p,o,n,m,l,k=null,j=new A.Lj(b,a,d,c),i=$.be.bd().MakeAnimatedImageFromEncoded(a) +if(i==null)A.a0(A.jh("Failed to decode image data.\nImage source: "+b)) +s=d==null +if(!s||c!=null)if(i.getFrameCount()>1)$.el().$1("targetWidth and targetHeight for multi-frame images not supported") +else{r=i.makeImageAtCurrentFrame() +if(!s&&d<=0)d=k +if(c!=null&&c<=0)c=k +s=d==null +if(s&&c!=null)d=B.d.aI(c*(r.width()/r.height())) +else if(c==null&&!s)c=B.f.jw(d,r.width()/r.height()) +q=new A.lf() +p=q.Hp(B.dj) +o=A.bc() +s=A.z6(r,k) +n=r.width() +m=r.height() +d.toString +c.toString +p.vk(s,new A.x(0,0,0+n,0+m),new A.x(0,0,d,c),o) +m=q.oK().KU(d,c).b +m===$&&A.a() +m=m.a +m===$&&A.a() +l=m.a.encodeToBytes() +if(l==null)l=k +if(l==null)A.a0(A.jh("Failed to re-size image")) +i=$.be.bd().MakeAnimatedImageFromEncoded(l) +if(i==null)A.a0(A.jh("Failed to decode re-sized image data.\nImage source: "+b))}j.d=J.ap(i.getFrameCount()) +j.e=J.ap(i.getRepetitionCount()) +s=new A.iN("Codec",t.Pj) +s.nT(j,i,"Codec",t.m) +j.a!==$&&A.bw() +j.a=s +return j}, +Lk(a,b,c){var s=0,r=A.H(t.Lh),q,p +var $async$Lk=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:p=new A.z4(a,b,c) +s=3 +return A.v(p.hS(0),$async$Lk) +case 3:q=p +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$Lk,r)}, +aVd(a,b){var s=A.aHv(new A.afl(),t.Oz),r=A.c0(v.G.document,"flt-scene") +a.gfl().M3(r) +return new A.qS(s,a,new A.Q_(),B.n2,new A.LL(),r)}, +aVu(a,b){var s=A.aHv(new A.afM(),t.vz),r=A.c0(v.G.document,"flt-scene") +a.gfl().M3(r) +return new A.qZ(b,s,a,new A.Q_(),B.n2,new A.LL(),r)}, +bc(){return new A.pH(B.cA,B.c3,B.iP,B.m8,B.dY)}, +aS2(){var s=new v.G.window.flutterCanvasKit.Path() +s.setFillType($.a2h()[0]) +return A.aCI(s,B.ib)}, +aCI(a,b){var s=new A.u6(b),r=new A.iN("Path",t.Pj) +r.nT(s,a,"Path",t.m) +s.a!==$&&A.bw() +s.a=r +return s}, +aRM(){var s,r=A.dq().b +r=r==null?null:r.canvasKitForceMultiSurfaceRasterizer +if((r==null?!1:r)||$.bn().gdI()===B.bq||$.bn().gdI()===B.cW)return new A.afi(A.w(t.lz,t.Es)) +r=A.c0(v.G.document,"flt-canvas-container") +s=$.aCk()&&$.bn().gdI()!==B.bq +return new A.afK(new A.iJ(s,!1,r),A.w(t.lz,t.pw))}, +aXl(a){var s=A.c0(v.G.document,"flt-canvas-container") +return new A.iJ($.aCk()&&$.bn().gdI()!==B.bq&&!a,a,s)}, +aAs(a){if($.i3==null)$.i3=B.cY +return a}, +aS1(a,b){var s,r,q +t.S3.a(a) +s={} +r=A.kx(A.aET(a.a,a.b)) +s.fontFamilies=r +r=a.c +if(r!=null)s.fontSize=r +r=a.d +if(r!=null)s.heightMultiplier=r +q=a.x +if(q==null)q=b==null?null:b.c +switch(q){case null:case void 0:break +case B.D:s.halfLeading=!0 +break +case B.me:s.halfLeading=!1 +break}r=a.e +if(r!=null)s.leading=r +r=a.f +if(r!=null)s.fontStyle=A.aFA(r,a.r) +r=a.w +if(r!=null)s.forceStrutHeight=r +s.strutEnabled=!0 +return s}, +aCJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.u7(b,c,d,e,f,m,k,a2,s,g,a0,h,j,q,a3,o,p,r,a,n,a1,i,l)}, +aFA(a,b){var s={} +if(a!=null)s.weight=$.aQn()[a.a] +return s}, +aCH(a){var s,r,q +t.m6.a(a) +s=A.b([],t.n) +r=A.b([],t.AT) +q=$.be.bd().ParagraphBuilder.MakeFromFontCollection(a.a,t.Vr.a($.aCF.bd().gy3()).w) +r.push(a.a0g()) +return new A.a4k(q,a,s,r)}, +aET(a,b){var s=A.b([],t.s) +if(a!=null)s.push(a) +if(b!=null&&!B.b.e6(b,new A.aAr(a)))B.b.O(s,b) +B.b.O(s,$.a3().gy3().gIZ().y) +return s}, +aCE(a){return new A.Ld(a)}, +y9(a){var s=new Float32Array(4) +s[0]=a.gKH()/255 +s[1]=a.gCT()/255 +s[2]=a.gHs()/255 +s[3]=a.gdH(a)/255 +return s}, +b16(a){var s,r,q,p,o,n,m,l=A.qO() +$label0$1:for(s=a.c.a,r=s.length,q=B.dj,p=0;p"),p=r.i("ax.E"),o=0;o=c.c||c.b>=c.d)){if(g!=null){g.b.push(i) +l=g.a +e=i.r +e.toString +l.qw(e)}else{a1.b.push(i) +l=i.r +l.toString +h.qw(l)}f=!0 +break}}}else if(d instanceof A.dz){e=i.r +e.toString +c=d.a +if(c.ft(e)){d.b.push(i) +e=i.r +e.toString +c.qw(e) +f=!0}g=d}}if(!f)if(g!=null){g.b.push(i) +l=g.a +h=i.r +h.toString +l.qw(h)}else{a1.b.push(i) +l=i.r +l.toString +h.qw(l)}}}if(a1.b.length!==0)a.push(a1) +return new A.uh(a)}, +aHv(a,b){var s=b.i("D<0>") +return new A.Mn(a,A.b([],s),A.b([],s),b.i("Mn<0>"))}, +dq(){var s,r=$.aM1 +if(r==null){r=v.G.window.flutterConfiguration +s=new A.a85() +if(r!=null)s.b=r +$.aM1=s +r=s}return r}, +aWC(a){var s +$label0$0:{if("DeviceOrientation.portraitUp"===a){s="portrait-primary" +break $label0$0}if("DeviceOrientation.portraitDown"===a){s="portrait-secondary" +break $label0$0}if("DeviceOrientation.landscapeLeft"===a){s="landscape-primary" +break $label0$0}if("DeviceOrientation.landscapeRight"===a){s="landscape-secondary" +break $label0$0}s=null +break $label0$0}return s}, +kx(a){$.bn() +return a}, +aJ9(a){var s=A.ad(a) +s.toString +return s}, +aIr(a){$.bn() +return a}, +aD0(a,b){var s=a.getComputedStyle(b) +return s}, +aHC(a,b){return A.l3($.aq.Vj(b,t.H,t.i))}, +aT2(a){return new A.a5X(a)}, +b1h(a,b){var s=b.a,r=A.fD(v.G,"createImageBitmap",[a,s[2],s[3],s[1],s[0]]) +r=r +return A.eV(r,t.X).bo(new A.aBo(),t.m)}, +aT6(a){var s=a.languages +if(s==null)s=null +else{s=B.b.jV(s,new A.a6_(),t.N) +s=A.a6(s,s.$ti.i("ax.E"))}return s}, +c0(a,b){var s=a.createElement(b) +return s}, +b3(a){return A.l3($.aq.Vj(a,t.H,t.m))}, +aHB(a){if(a.parentNode!=null)a.parentNode.removeChild(a)}, +aT7(a){var s +while(a.firstChild!=null){s=a.firstChild +s.toString +a.removeChild(s)}}, +Z(a,b,c){a.setProperty(b,c,"")}, +uv(a,b){var s=a.getContext(b) +return s}, +aT5(a){var s=A.uv(a,"2d") +s.toString +return A.dP(s)}, +aT4(a,b){var s +if(b===1){s=A.uv(a,"webgl") +s.toString +return A.dP(s)}s=A.uv(a,"webgl2") +s.toString +return A.dP(s)}, +aBm(a,b){var s +$.aN_=$.aN_+1 +s=A.c0(v.G.window.document,"canvas") +if(b!=null)s.width=b +if(a!=null)s.height=a +return s}, +aHA(a,b,c,d,e,f,g,h,i,j){var s=A.fD(a,"drawImage",[b,c,d,e,f,g,h,i,j]) +return s}, +b2q(a){return A.eV(v.G.window.fetch(a),t.X).bo(new A.aBZ(),t.m)}, +tB(a){return A.b1Q(a)}, +b1Q(a){var s=0,r=A.H(t.Lk),q,p=2,o=[],n,m,l,k +var $async$tB=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:p=4 +s=7 +return A.v(A.b2q(a),$async$tB) +case 7:n=c +q=new A.Nl(a,n) +s=1 +break +p=2 +s=6 +break +case 4:p=3 +k=o.pop() +m=A.a1(k) +throw A.e(new A.AO(a,m)) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$tB,r)}, +aBC(a){var s=0,r=A.H(t.pI),q,p +var $async$aBC=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=A +s=3 +return A.v(A.tB(a),$async$aBC) +case 3:q=p.a60(c.grA().a) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$aBC,r)}, +a9X(a){var s=0,r=A.H(t.H3),q,p +var $async$a9X=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=J +s=3 +return A.v(A.a60(a.grA().a),$async$a9X) +case 3:q=p.tE(c) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$a9X,r)}, +a60(a){return A.eV(a.arrayBuffer(),t.X).bo(new A.a61(),t.pI)}, +aYt(a){return A.eV(a.read(),t.X).bo(new A.ari(),t.m)}, +aT3(a){return A.eV(a.load(),t.X).bo(new A.a5Y(),t.m)}, +b1f(a,b,c){var s,r,q=v.G +if(c==null)return new q.FontFace(a,A.kx(b)) +else{q=q.FontFace +s=A.kx(b) +r=A.ad(c) +r.toString +return new q(a,s,r)}}, +aT1(a){return A.eV(a.readText(),t.X).bo(new A.a5W(),t.N)}, +aMY(a){var s=v.G.Blob,r=t.ef.a(A.kx(a)) +return new s(r)}, +aD_(a,b){var s=a.getContext(b) +return s}, +aT8(a,b){var s +if(b===1){s=A.aD_(a,"webgl") +s.toString +return A.dP(s)}s=A.aD_(a,"webgl2") +s.toString +return A.dP(s)}, +c1(a,b,c){a.addEventListener(b,c) +return new A.Mt(b,a,c)}, +b1g(a){return new v.G.ResizeObserver(A.aAK(new A.aBn(a)))}, +b1k(a){if(v.G.window.trustedTypes!=null)return $.aQA().createScriptURL(a) +return a}, +aMZ(a){var s,r=v.G +if(r.Intl.Segmenter==null)throw A.e(A.eQ("Intl.Segmenter() is not supported.")) +r=r.Intl.Segmenter +s=t.N +s=A.ad(A.ab(["granularity",a],s,s)) +s.toString +return new r([],s)}, +aFv(){var s=0,r=A.H(t.H),q +var $async$aFv=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:if(!$.aEW){$.aEW=!0 +q=v.G.window +q.requestAnimationFrame(A.aHC(q,new A.aC5()))}return A.F(null,r)}}) +return A.G($async$aFv,r)}, +b_S(a){return B.c.bz(a.a,"Noto Sans SC")}, +b_T(a){return B.c.bz(a.a,"Noto Sans TC")}, +b_P(a){return B.c.bz(a.a,"Noto Sans HK")}, +b_Q(a){return B.c.bz(a.a,"Noto Sans JP")}, +b_R(a){return B.c.bz(a.a,"Noto Sans KR")}, +aU4(a,b){var s=t.S,r=v.G.window.navigator.language,q=A.dc(null,t.H),p=A.b(["Roboto"],t.s) +s=new A.a8q(a,A.aP(s),A.aP(s),b,r,B.b.a1a(b,new A.a8r()),q,p,A.aP(s)) +p=t.Te +s.b=new A.Vf(s,A.aP(p),A.w(t.N,p)) +return s}, +aZk(a,b,c){var s,r,q,p,o,n,m,l,k=A.b([],t.t),j=A.b([],c.i("D<0>")) +for(s=a.length,r=0,q=0,p=1,o=0;o"))}, +a1X(a){return A.b1w(a)}, +b1w(a){var s=0,r=A.H(t.jT),q,p,o,n,m,l,k +var $async$a1X=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:m={} +k=t.Lk +s=3 +return A.v(A.tB(a.wQ("FontManifest.json")),$async$a1X) +case 3:l=k.a(c) +if(!l.gBb()){$.el().$1("Font manifest does not exist at `"+l.a+"` - ignoring.") +q=new A.Az(A.b([],t.z8)) +s=1 +break}p=B.eq.a1O(B.pf,t.X) +m.a=null +o=p.js(new A.ZA(new A.aBv(m),[],t.kS)) +s=4 +return A.v(l.grA().wt(0,new A.aBw(o)),$async$a1X) +case 4:o.aO(0) +m=m.a +if(m==null)throw A.e(A.ik(u.u)) +m=J.h0(t.j.a(m),new A.aBx(),t.VW) +n=A.a6(m,m.$ti.i("ax.E")) +q=new A.Az(n) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$a1X,r)}, +aU3(a,b){return new A.Ax()}, +uF(){return B.d.h6(v.G.window.performance.now()*1000)}, +aNv(a,b,c,d){var s=c===a +if(s&&d===b)return null +if(c==null){if(d==null||d===b)return null +c=B.d.aI(a*d/b)}else if(d==null){if(s)return null +d=B.d.aI(b*c/a)}return new A.k3(c,d)}, +b2w(a,b,c,d){var s,r,q,p,o,n,m,l,k=a.b +k===$&&A.a() +k=k.a +k===$&&A.a() +s=J.ap(k.a.width()) +k=a.b.a +k===$&&A.a() +r=J.ap(k.a.height()) +q=A.aNv(s,r,d,c) +if(q==null)return a +if(!b)k=q.a>s||q.b>r +else k=!1 +if(k)return a +k=q.a +p=q.b +o=new A.x(0,0,k,p) +$.a3() +n=new A.lf() +A.a4e(n,o).vk(a,new A.x(0,0,s,r),o,A.bc()) +m=n.oK() +l=m.KU(k,p) +m.l() +a.l() +return l}, +jh(a){return new A.uK(a)}, +b1q(a){var s,r,q,p,o,n,m +$label0$0:for(s=a.length,r=0;r<6;++r){q=B.Ju[r] +p=q.c +o=p.length +if(s=s)return!1 +if(a[n]!==o.charCodeAt(p))continue $label0$0}return!0}return!1}, +aBG(a){var s=0,r=A.H(t.H),q,p,o +var $async$aBG=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:if($.JL!==B.o4){s=1 +break}$.JL=B.FY +p=A.dq() +if(a!=null)p.b=a +if(!B.c.bz("ext.flutter.disassemble","ext."))A.a0(A.ij("ext.flutter.disassemble","method","Must begin with ext.")) +if($.aMc.h(0,"ext.flutter.disassemble")!=null)A.a0(A.bF("Extension already registered: ext.flutter.disassemble",null)) +$.aMc.m(0,"ext.flutter.disassemble",$.aq.ame(new A.aBH(),t.Z9,t.N,t.GU)) +p=A.dq().b +o=new A.a2X(p==null?null:p.assetBase) +A.b0k(o) +s=3 +return A.v(A.lA(A.b([new A.aBI().$0(),A.a1L()],t.mo),t.H),$async$aBG) +case 3:$.JL=B.o5 +case 1:return A.F(q,r)}}) +return A.G($async$aBG,r)}, +aFl(){var s=0,r=A.H(t.H),q,p,o,n,m +var $async$aFl=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:if($.JL!==B.o5){s=1 +break}$.JL=B.FZ +p=$.bn().gdz() +if($.Pz==null)$.Pz=A.aWc(p===B.c2) +if($.aDv==null)$.aDv=A.aUA() +p=v.G +if(p.document.querySelector("meta[name=generator][content=Flutter]")==null){o=A.c0(p.document,"meta") +o.name="generator" +o.content="Flutter" +p.document.head.append(o)}p=A.dq().b +p=p==null?null:p.multiViewEnabled +if(!(p==null?!1:p)){p=A.dq().b +p=p==null?null:p.hostElement +if($.aBe==null){n=$.aR() +m=new A.uA(A.dc(null,t.H),0,n,A.aHP(p),null,B.er,A.aHo(p)) +m.N6(0,n,p,null) +$.aBe=m +p=n.gd8() +n=$.aBe +n.toString +p.auB(n)}$.aBe.toString}$.JL=B.G_ +case 1:return A.F(q,r)}}) +return A.G($async$aFl,r)}, +b0k(a){if(a===$.JK)return +$.JK=a}, +a1L(){var s=0,r=A.H(t.H),q,p,o +var $async$a1L=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p=$.a3().gy3() +p.a5(0) +if($.i3==null)$.i3=B.cY +q=$.JK +s=q!=null?2:3 +break +case 2:q.toString +o=p +s=5 +return A.v(A.a1X(q),$async$a1L) +case 5:s=4 +return A.v(o.lM(b),$async$a1L) +case 4:case 3:return A.F(null,r)}}) +return A.G($async$a1L,r)}, +aTV(a,b){return{addView:A.l3(a),removeView:A.l3(new A.a84(b))}}, +aTW(a,b){var s,r=A.l3(new A.a86(b)),q=new A.a87(a) +if(typeof q=="function")A.a0(A.bF("Attempting to rewrap a JS function.",null)) +s=function(c,d){return function(){return c(d)}}(A.aZS,q) +s[$.K_()]=q +return{initializeEngine:r,autoStart:s}}, +aTU(a){return{runApp:A.l3(new A.a83(a))}}, +aCQ(a){return new v.G.Promise(A.aAK(new A.a5c(a)))}, +aEV(a){var s=B.d.h6(a) +return A.ea(B.d.h6((a-s)*1000),s,0)}, +aZP(a,b){var s={} +s.a=null +return new A.aAo(s,a,b)}, +aUA(){var s=new A.NV(A.w(t.N,t.lT)) +s.a5N() +return s}, +aUC(a){var s +$label0$0:{if(B.be===a||B.c2===a){s=new A.Bq(A.aFE("M,2\u201ew\u2211wa2\u03a9q\u2021qb2\u02dbx\u2248xc3 c\xd4j\u2206jd2\xfee\xb4ef2\xfeu\xa8ug2\xfe\xff\u02c6ih3 h\xce\xff\u2202di3 i\xc7c\xe7cj2\xd3h\u02d9hk2\u02c7\xff\u2020tl5 l@l\xfe\xff|l\u02dcnm1~mn3 n\u0131\xff\u222bbo2\xaer\u2030rp2\xacl\xd2lq2\xc6a\xe6ar3 r\u03c0p\u220fps3 s\xd8o\xf8ot2\xa5y\xc1yu3 u\xa9g\u02ddgv2\u02dak\uf8ffkw2\xc2z\xc5zx2\u0152q\u0153qy5 y\xcff\u0192f\u02c7z\u03a9zz5 z\xa5y\u2021y\u2039\xff\u203aw.2\u221av\u25cav;4\xb5m\xcds\xd3m\xdfs/2\xb8z\u03a9z")) +break $label0$0}if(B.lt===a){s=new A.Bq(A.aFE(';b1{bc1&cf1[fg1]gm2y')) +break $label0$0}if(B.fn===a||B.ia===a||B.vO===a){s=new A.Bq(A.aFE("8a2@q\u03a9qk1&kq3@q\xc6a\xe6aw2xy2\xa5\xff\u2190\xffz5")).bn(0," ") +return r.length!==0?r:null}, +aWR(a){var s=new A.QQ(B.kF,a),r=A.rI(s.bJ(0),a) +s.a!==$&&A.bw() +s.a=r +s.DI(B.kF,a) +return s}, +aWP(a){var s,r=new A.QN(B.kh,a),q=A.rI(r.bJ(0),a) +r.a!==$&&A.bw() +r.a=q +r.DI(B.kh,a) +s=A.ad("dialog") +s.toString +q.setAttribute("role",s) +s=A.ad(!0) +s.toString +q.setAttribute("aria-modal",s) +return r}, +aWO(a){var s,r=new A.QM(B.ki,a),q=A.rI(r.bJ(0),a) +r.a!==$&&A.bw() +r.a=q +r.DI(B.ki,a) +s=A.ad("alertdialog") +s.toString +q.setAttribute("role",s) +s=A.ad(!0) +s.toString +q.setAttribute("aria-modal",s) +return r}, +rI(a,b){var s,r=a.style +A.Z(r,"position","absolute") +A.Z(r,"overflow","visible") +r=b.k4 +s=A.ad("flt-semantic-node-"+r) +s.toString +a.setAttribute("id",s) +if(r===0&&!A.dq().gI6()){A.Z(a.style,"filter","opacity(0%)") +A.Z(a.style,"color","rgba(0,0,0,0)")}if(A.dq().gI6())A.Z(a.style,"outline","1px solid green") +return a}, +aDY(a,b){var s +switch(b.a){case 0:a.removeAttribute("aria-invalid") +break +case 1:s=A.ad("false") +s.toString +a.setAttribute("aria-invalid",s) +break +case 2:s=A.ad("true") +s.toString +a.setAttribute("aria-invalid",s) +break}}, +aJZ(a){var s=a.style +s.removeProperty("transform-origin") +s.removeProperty("transform") +if($.bn().gdz()===B.be||$.bn().gdz()===B.c2){s=a.style +A.Z(s,"top","0px") +A.Z(s,"left","0px")}else{s=a.style +s.removeProperty("top") +s.removeProperty("left")}}, +eb(){var s,r,q=v.G,p=A.c0(q.document,"flt-announcement-host") +q.document.body.append(p) +s=A.aGt(B.ju) +r=A.aGt(B.jv) +p.append(s) +p.append(r) +q=B.zV.p(0,$.bn().gdz())?new A.a5z():new A.aeM() +return new A.a7z(new A.a2q(s,r),new A.a7E(),new A.akE(q),B.hJ,A.b([],t.s2))}, +aTC(a,b){var s=t.S,r=t.UF +r=new A.a7A(a,b,A.w(s,r),A.w(t.N,s),A.w(s,r),A.b([],t.Qo),A.b([],t.qj)) +r.a5L(a,b) +return r}, +aNk(a){var s,r,q,p,o,n,m,l,k=a.length,j=t.t,i=A.b([],j),h=A.b([0],j) +for(s=0,r=0;r=h.length)h.push(r) +else h[o]=r +if(o>s)s=o}m=A.bz(s,0,!1,t.S) +l=h[s] +for(r=s-1;r>=0;--r){m[r]=l +l=i[l]}return m}, +wd(a,b){var s=new A.RP(a,b) +s.a61(a,b) +return s}, +aWT(a){var s,r=$.QW +if(r!=null)s=r.a===a +else s=!1 +if(s)return r +return $.QW=new A.akO(a,A.b([],t.Up),$,$,$,null,null)}, +aEn(){var s=new Uint8Array(0),r=new DataView(new ArrayBuffer(8)) +return new A.anV(new A.Sf(s,0),r,J.tE(B.ax.gc9(r)))}, +b0Q(a,b,c){var s,r,q,p,o,n,m,l,k=A.b([],t._f) +c.adoptText(b) +c.first() +for(s=a.length,r=0;!J.d(c.next(),-1);r=q){q=J.ap(c.current()) +for(p=r,o=0,n=0;p0){k.push(new A.qz(r,p,B.pg,o,n)) +r=p +o=0 +n=0}}if(o>0)l=B.kZ +else l=q===s?B.ph:B.pg +k.push(new A.qz(r,q,l,o,n))}if(k.length===0||B.b.gae(k).c===B.kZ)k.push(new A.qz(s,s,B.ph,0,0)) +return k}, +b1F(a){switch(a){case 0:return"100" +case 1:return"200" +case 2:return"300" +case 3:return"normal" +case 4:return"500" +case 5:return"600" +case 6:return"bold" +case 7:return"800" +case 8:return"900"}return""}, +b2F(a,b){var s +switch(a){case B.dn:return"left" +case B.el:return"right" +case B.aZ:return"center" +case B.fI:return"justify" +case B.iR:switch(b.a){case 1:s="end" +break +case 0:s="left" +break +default:s=null}return s +case B.az:switch(b.a){case 1:s="" +break +case 0:s="right" +break +default:s=null}return s +case null:case void 0:return""}}, +aTz(a){switch(a){case"TextInputAction.continueAction":case"TextInputAction.next":return B.CZ +case"TextInputAction.previous":return B.D7 +case"TextInputAction.done":return B.Cx +case"TextInputAction.go":return B.CC +case"TextInputAction.newline":return B.CA +case"TextInputAction.search":return B.Db +case"TextInputAction.send":return B.Dc +case"TextInputAction.emergencyCall":case"TextInputAction.join":case"TextInputAction.none":case"TextInputAction.route":case"TextInputAction.unspecified":default:return B.D_}}, +aHR(a,b,c){switch(a){case"TextInputType.number":return b?B.Ct:B.D1 +case"TextInputType.phone":return B.D4 +case"TextInputType.emailAddress":return B.Cy +case"TextInputType.url":return B.Dm +case"TextInputType.multiline":return B.CX +case"TextInputType.none":return c?B.CY:B.D0 +case"TextInputType.text":default:return B.Dk}}, +aFc(){var s=A.c0(v.G.document,"textarea") +A.Z(s.style,"scrollbar-width","none") +return s}, +aXv(a){var s +if(a==="TextCapitalization.words")s=B.AL +else if(a==="TextCapitalization.characters")s=B.AN +else s=a==="TextCapitalization.sentences"?B.AM:B.mb +return new A.Ei(s)}, +b_e(a){}, +a1Q(a,b,c,d){var s="transparent",r="none",q=a.style +A.Z(q,"white-space","pre-wrap") +A.Z(q,"padding","0") +A.Z(q,"opacity","1") +A.Z(q,"color",s) +A.Z(q,"background-color",s) +A.Z(q,"background",s) +A.Z(q,"outline",r) +A.Z(q,"border",r) +A.Z(q,"resize",r) +A.Z(q,"text-shadow",s) +A.Z(q,"transform-origin","0 0 0") +if(b){A.Z(q,"top","-9999px") +A.Z(q,"left","-9999px")}if(d){A.Z(q,"width","0") +A.Z(q,"height","0")}if(c)A.Z(q,"pointer-events",r) +if($.bn().gdI()===B.cB||$.bn().gdI()===B.bq)a.classList.add("transparentTextEditing") +A.Z(q,"caret-color",s)}, +b_m(a,b){var s,r=a.isConnected +if(!(r==null?!1:r))return +s=$.aR().gd8().vB(a) +if(s==null)return +if(s.a!==b)A.aAR(a,b)}, +aAR(a,b){var s=$.aR().gd8().b.h(0,b).gfl().e +if(!s.contains(a))s.append(a)}, +aTy(a6,a7,a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5 +if(a7==null)return null +s=t.N +r=A.w(s,t.m) +q=A.w(s,t.M1) +p=v.G +o=A.c0(p.document,"form") +n=$.yi().giH() instanceof A.vM +o.noValidate=!0 +o.method="post" +o.action="#" +o.addEventListener("submit",$.aCl()) +A.a1Q(o,!1,n,!0) +m=J.uR(0,s) +l=A.aCy(a7,B.AK) +k=null +if(a8!=null)for(s=t.a,j=J.Kh(a8,s),i=j.$ti,j=new A.bd(j,j.gv(0),i.i("bd")),h=l.b,i=i.i("a_.E"),g=!n,f=!1;j.u();){e=j.d +if(e==null)e=i.a(e) +d=J.aE(e) +c=s.a(d.h(e,"autofill")) +b=A.bt(d.h(e,"textCapitalization")) +if(b==="TextCapitalization.words")b=B.AL +else if(b==="TextCapitalization.characters")b=B.AN +else b=b==="TextCapitalization.sentences"?B.AM:B.mb +a=A.aCy(c,new A.Ei(b)) +b=a.b +m.push(b) +if(b!==h){a0=A.aHR(A.bt(J.aK(s.a(d.h(e,"inputType")),"name")),!1,!1).A7() +a.a.eZ(a0) +a.eZ(a0) +A.a1Q(a0,!1,n,g) +q.m(0,b,a) +r.m(0,b,a0) +o.append(a0) +if(f){k=a0 +f=!1}}else f=!0}else m.push(l.b) +B.b.jr(m) +for(s=m.length,a1=0,j="";a10?j+"*":j)+a2}a3=j.charCodeAt(0)==0?j:j +a4=$.y7.h(0,a3) +if(a4!=null)a4.remove() +a5=A.c0(p.document,"input") +a5.tabIndex=-1 +A.a1Q(a5,!0,!1,!0) +a5.className="submitBtn" +a5.type="submit" +o.append(a5) +return new A.a7g(o,r,q,k==null?a5:k,a3,a6)}, +aCy(a,b){var s,r=J.aE(a),q=A.bt(r.h(a,"uniqueIdentifier")),p=t.kc.a(r.h(a,"hints")),o=p==null||J.eW(p)?null:A.bt(J.Kj(p)),n=A.aHH(t.a.a(r.h(a,"editingValue"))) +if(o!=null){s=$.aNL().a.h(0,o) +if(s==null)s=o}else s=null +return new A.KN(n,q,s,A.cC(r.h(a,"hintText")))}, +aF1(a,b,c){var s=c.a,r=c.b,q=Math.min(s,r) +r=Math.max(s,r) +return B.c.a1(a,0,q)+b+B.c.bZ(a,r)}, +aXw(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i=a2.a,h=a2.b,g=a2.c,f=a2.d,e=a2.e,d=a2.f,c=a2.r,b=a2.w,a=new A.wi(i,h,g,f,e,d,c,b) +e=a1==null +d=e?null:a1.b +s=d==(e?null:a1.c) +d=h.length +r=d===0 +q=r&&f!==-1 +r=!r +p=r&&!s +if(q){o=i.length-a0.a.length +g=a0.b +if(g!==(e?null:a1.b)){g=f-o +a.c=g}else{a.c=g +f=g+o +a.d=f}}else if(p){g=a1.b +e=a1.c +if(g>e)g=e +a.c=g}n=c!=null&&c!==b +if(r&&s&&n){a.c=c +g=c}if(!(g===-1&&g===f)){e=a0.a +if(A.aF1(i,h,new A.c4(g,f))!==e){m=B.c.p(h,".") +for(g=A.ck(A.aBY(h),!0,!1).qx(0,e),g=new A.F4(g.a,g.b,g.c),f=t.Qz,c=i.length;g.u();){l=g.d +b=(l==null?f.a(l):l).b +r=b.index +if(!(r>=0&&r+b[0].length<=c)){k=r+d-1 +j=A.aF1(i,h,new A.c4(r,k))}else{k=m?r+b[0].length-1:r+b[0].length +j=A.aF1(i,h,new A.c4(r,k))}if(j===e){a.c=r +a.d=k +break}}}}a.e=a0.b +a.f=a0.c +return a}, +aHH(a){var s=J.aE(a),r=A.bt(s.h(a,"text")),q=B.d.h6(A.eU(s.h(a,"selectionBase"))),p=B.d.h6(A.eU(s.h(a,"selectionExtent"))),o=B.d.h6(A.eU(s.h(a,"composingBase"))),n=B.d.h6(A.eU(s.h(a,"composingExtent"))) +return new A.jb(r,Math.max(0,q),Math.max(0,p),o,n)}, +aHG(a){var s,r,q=null,p="backward",o=A.fq(a,"HTMLInputElement") +if(o){o=a.selectionEnd +s=o==null?q:J.ap(o) +if(s==null)s=0 +o=a.selectionStart +r=o==null?q:J.ap(o) +if(r==null)r=0 +if(J.d(a.selectionDirection,p))return new A.jb(a.value,Math.max(0,s),Math.max(0,r),-1,-1) +else return new A.jb(a.value,Math.max(0,r),Math.max(0,s),-1,-1)}else{o=A.fq(a,"HTMLTextAreaElement") +if(o){o=a.selectionEnd +s=o==null?q:J.ap(o) +if(s==null)s=0 +o=a.selectionStart +r=o==null?q:J.ap(o) +if(r==null)r=0 +if(J.d(a.selectionDirection,p))return new A.jb(a.value,Math.max(0,s),Math.max(0,r),-1,-1) +else return new A.jb(a.value,Math.max(0,r),Math.max(0,s),-1,-1)}else throw A.e(A.af("Initialized with unsupported input type"))}}, +aIk(a){var s,r,q,p,o,n,m,l,k,j,i="inputType",h="autofill",g=A.aDu(a,"viewId") +if(g==null)g=0 +s=J.aE(a) +r=t.a +q=A.bt(J.aK(r.a(s.h(a,i)),"name")) +p=A.l2(J.aK(r.a(s.h(a,i)),"decimal")) +o=A.l2(J.aK(r.a(s.h(a,i)),"isMultiline")) +q=A.aHR(q,p===!0,o===!0) +p=A.cC(s.h(a,"inputAction")) +if(p==null)p="TextInputAction.done" +o=A.l2(s.h(a,"obscureText")) +n=A.l2(s.h(a,"readOnly")) +m=A.l2(s.h(a,"autocorrect")) +l=A.aXv(A.bt(s.h(a,"textCapitalization"))) +r=s.az(a,h)?A.aCy(r.a(s.h(a,h)),B.AK):null +k=A.aDu(a,"viewId") +if(k==null)k=0 +k=A.aTy(k,t.nA.a(s.h(a,h)),t.kc.a(s.h(a,"fields"))) +j=A.l2(s.h(a,"enableDeltaModel")) +s=A.l2(s.h(a,"enableInteractiveSelection")) +return new A.aaJ(g,q,p,n===!0,o===!0,m!==!1,j===!0,r,k,l,s!==!1)}, +aUb(a){return new A.Na(a,A.b([],t.Up),$,$,$,null,null)}, +b2u(){$.y7.aj(0,new A.aC3())}, +b1_(){for(var s=new A.dl($.y7,$.y7.r,$.y7.e);s.u();)s.d.remove() +$.y7.a5(0)}, +aTh(a){var s=J.aE(a),r=A.hU(J.h0(t.j.a(s.h(a,"transform")),new A.a6k(),t.z),!0,t.i) +return new A.a6j(A.eU(s.h(a,"width")),A.eU(s.h(a,"height")),new Float32Array(A.ic(r)))}, +aWM(a,b){var s=b.length +if(s<=10)return a.c +if(s<=100)return a.b +if(s<=5e4)return a.a +return null}, +aNx(a){var s,r,q,p,o=A.aWM($.aQP(),a),n=o==null,m=n?null:o.h(0,a) +if(m!=null)s=m +else{r=A.aN8(a,B.pe) +q=A.aN8(a,B.pd) +s=new A.Yj(A.b1G(a),q,r)}if(!n){n=o.c +p=n.h(0,a) +if(p==null)o.N7(0,a,s) +else{r=p.d +if(!J.d(r.b,s)){p.f6(0) +o.N7(0,a,s)}else{p.f6(0) +q=o.b +q.zw(r) +q=q.a.b.xI() +q.toString +n.m(0,a,q)}}}return s}, +aN8(a,b){var s,r=new A.Mr(A.aIt($.aPR().h(0,b).segment(a),v.G.Symbol.iterator,t.m),t.YH),q=A.b([],t.t) +while(r.u()){s=r.b +s===$&&A.a() +q.push(s.index)}q.push(a.length) +return new Uint32Array(A.ic(q))}, +b1G(a){var s,r,q,p,o=A.b0Q(a,a,$.aQB()),n=o.length,m=new Uint32Array((n+1)*2) +m[0]=0 +m[1]=0 +for(s=0;s=b.c&&a.d>=b.d}, +b12(a){var s,r,q +if(a===4278190080)return"#000000" +if((a&4278190080)>>>0===4278190080){s=B.f.lV(a&16777215,16) +r=s.length +$label0$0:{if(1===r){q="#00000"+s +break $label0$0}if(2===r){q="#0000"+s +break $label0$0}if(3===r){q="#000"+s +break $label0$0}if(4===r){q="#00"+s +break $label0$0}if(5===r){q="#0"+s +break $label0$0}q="#"+s +break $label0$0}return q}else{q="rgba("+B.f.k(a>>>16&255)+","+B.f.k(a>>>8&255)+","+B.f.k(a&255)+","+B.d.k((a>>>24&255)/255)+")" +return q.charCodeAt(0)==0?q:q}}, +aMd(){if($.bn().gdz()===B.be){var s=$.bn().gmC() +s=B.c.p(s,"OS 15_")}else s=!1 +if(s)return"BlinkMacSystemFont" +if($.bn().gdz()===B.be||$.bn().gdz()===B.c2)return"-apple-system, BlinkMacSystemFont" +return"Arial"}, +b0U(a){if(B.QC.p(0,a))return a +if($.bn().gdz()===B.be||$.bn().gdz()===B.c2)if(a===".SF Pro Text"||a===".SF Pro Display"||a===".SF UI Text"||a===".SF UI Display")return A.aMd() +return'"'+A.k(a)+'", '+A.aMd()+", sans-serif"}, +b0Z(a,b,c){if(ac)return c +else return a}, +mN(a,b){var s +if(a==null)return b==null +if(b==null||a.length!==b.length)return!1 +for(s=0;s")).bn(0," ")}, +l6(a,b,c){A.Z(a.style,b,c)}, +aNy(a){var s=v.G,r=s.document.querySelector("#flutterweb-theme") +if(a!=null){if(r==null){r=A.c0(s.document,"meta") +r.id="flutterweb-theme" +r.name="theme-color" +s.document.head.append(r)}r.content=A.b12(a.C())}else if(r!=null)r.remove()}, +Am(a,b){var s,r,q +for(s=a.length,r=0;r").bR(c),r=new A.FT(s.i("FT<+key,value(1,2)>")) +r.a=r +r.b=r +return new A.Og(a,new A.zV(r,s.i("zV<+key,value(1,2)>")),A.w(b,s.i("aHD<+key,value(1,2)>")),s.i("Og<1,2>"))}, +qO(){var s=new Float32Array(16) +s[15]=1 +s[0]=1 +s[5]=1 +s[10]=1 +return new A.ku(s)}, +aUZ(a){return new A.ku(a)}, +JY(a){var s=new Float32Array(16) +s[15]=a[15] +s[14]=a[14] +s[13]=a[13] +s[12]=a[12] +s[11]=a[11] +s[10]=a[10] +s[9]=a[9] +s[8]=a[8] +s[7]=a[7] +s[6]=a[6] +s[5]=a[5] +s[4]=a[4] +s[3]=a[3] +s[2]=a[2] +s[1]=a[1] +s[0]=a[0] +return s}, +aSt(a,b){var s=new A.a56(a,new A.kS(null,null,t.Tv)) +s.a5J(a,b) +return s}, +aHo(a){var s,r,q +if(a!=null){s=$.aNW().c +return A.aSt(a,new A.cT(s,A.n(s).i("cT<1>")))}else{s=new A.N5(new A.kS(null,null,t.Tv)) +r=v.G +q=r.window.visualViewport +if(q==null)q=r.window +s.b=A.c1(q,"resize",A.b3(s.gagJ())) +return s}}, +aHP(a){var s,r,q,p="0",o="none" +if(a!=null){A.aT7(a) +s=A.ad("custom-element") +s.toString +a.setAttribute("flt-embedding",s) +return new A.a59(a)}else{s=v.G.document.body +s.toString +r=new A.a8O(s) +q=A.ad("full-page") +q.toString +s.setAttribute("flt-embedding",q) +r.a6L() +A.l6(s,"position","fixed") +A.l6(s,"top",p) +A.l6(s,"right",p) +A.l6(s,"bottom",p) +A.l6(s,"left",p) +A.l6(s,"overflow","hidden") +A.l6(s,"padding",p) +A.l6(s,"margin",p) +A.l6(s,"user-select",o) +A.l6(s,"-webkit-user-select",o) +A.l6(s,"touch-action",o) +return r}}, +aKd(a,b,c,d){var s=A.c0(v.G.document,"style") +if(d!=null)s.nonce=d +s.id=c +b.appendChild(s) +A.b0C(s,a,"normal normal 14px sans-serif")}, +b0C(a,b,c){var s,r,q,p=v.G +a.append(p.document.createTextNode(b+" flt-scene-host { font: "+c+";}"+b+" flt-semantics input[type=range] { appearance: none; -webkit-appearance: none; width: 100%; position: absolute; border: none; top: 0; right: 0; bottom: 0; left: 0;}"+b+" input::selection { background-color: transparent;}"+b+" textarea::selection { background-color: transparent;}"+b+" flt-semantics input,"+b+" flt-semantics textarea,"+b+' flt-semantics [contentEditable="true"] { caret-color: transparent;}'+b+" .flt-text-editing::placeholder { opacity: 0;}"+b+":focus { outline: none;}")) +if($.bn().gdI()===B.bq)a.append(p.document.createTextNode(b+" * { -webkit-tap-highlight-color: transparent;}"+b+" flt-semantics input[type=range]::-webkit-slider-thumb { -webkit-appearance: none;}")) +if($.bn().gdI()===B.cW)a.append(p.document.createTextNode(b+" flt-paragraph,"+b+" flt-span { line-height: 100%;}")) +if($.bn().gdI()===B.cB||$.bn().gdI()===B.bq)a.append(p.document.createTextNode(b+" .transparentTextEditing:-webkit-autofill,"+b+" .transparentTextEditing:-webkit-autofill:hover,"+b+" .transparentTextEditing:-webkit-autofill:focus,"+b+" .transparentTextEditing:-webkit-autofill:active { opacity: 0 !important;}")) +r=$.bn().gmC() +if(B.c.p(r,"Edg/"))try{a.append(p.document.createTextNode(b+" input::-ms-reveal { display: none;}"))}catch(q){r=A.a1(q) +if(t.m.b(r)){s=r +p.window.console.warn(J.dr(s))}else throw q}}, +aS9(a){var s,r,q,p,o,n,m,l=a.c,k=$.be.bd().CodeUnits.compute(l),j=B.b.hk(k,t.m) +k=j.$ti.i("ae") +s=A.a6(new A.ae(j,new A.a4I(),k),k.i("ax.E")) +r=A.aNx(l) +for(l=r.b,k=l.length,q=0;q>>0}for(l=r.c,k=l.length,q=0;q>>0}for(l=r.a,k=l.length,n=0;n>>0}else{p=s[m] +o=p.a +p.a=(o|8)>>>0}}return s}, +aEj(a){var s,r +t.v6.a(a) +s=a.a +r=new A.E2(s) +r.b=r.a=0 +return new A.anK(a,A.b([r],t.OI),A.b([s],t.IH),new A.cK(""))}, +aKQ(a,b){var s,r,q,p,o +if(a==null){s=b.a +r=b.b +return new A.wx(s,s,r,r)}s=a.minWidth +r=b.a +if(s==null)s=r +q=a.minHeight +p=b.b +if(q==null)q=p +o=a.maxWidth +r=o==null?r:o +o=a.maxHeight +return new A.wx(s,r,q,o==null?p:o)}, +Kt:function Kt(a){var _=this +_.a=a +_.d=_.c=_.b=null}, +a2N:function a2N(a,b){this.a=a +this.b=b}, +a2R:function a2R(a){this.a=a}, +a2S:function a2S(a){this.a=a}, +a2O:function a2O(a){this.a=a}, +a2P:function a2P(a){this.a=a}, +a2Q:function a2Q(a){this.a=a}, +a2V:function a2V(a){this.a=a}, +Ll:function Ll(a){this.a=a}, +a4f:function a4f(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aAp:function aAp(){}, +Oj:function Oj(a){this.a=a +this.b=$}, +Lm:function Lm(){}, +a4g:function a4g(a,b){this.a=a +this.b=b}, +u5:function u5(a){this.a=a}, +Lp:function Lp(){}, +Lu:function Lu(){}, +u4:function u4(a,b){this.a=a +this.b=b}, +R7:function R7(a,b,c,d,e){var _=this +_.a=a +_.b=$ +_.c=b +_.d=c +_.e=d +_.f=e +_.w=_.r=null}, +ale:function ale(){}, +alf:function alf(){}, +alg:function alg(){}, +rn:function rn(a,b,c){this.a=a +this.b=b +this.c=c}, +ER:function ER(a,b,c){this.a=a +this.b=b +this.c=c}, +qb:function qb(a,b,c){this.a=a +this.b=b +this.c=c}, +ald:function ald(a){this.a=a}, +Lt:function Lt(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Ln:function Ln(a,b){var _=this +_.a=a +_.b=b +_.e=_.d=null}, +z7:function z7(a,b){var _=this +_.a=a +_.b=b +_.e=_.d=null}, +aC0:function aC0(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +n3:function n3(a,b){this.b=a +this.c=b}, +aax:function aax(){}, +anv:function anv(a){this.c=a +this.a=0}, +aaf:function aaf(a){this.c=a +this.a=0}, +aa9:function aa9(a){this.c=a +this.a=0}, +Lo:function Lo(){}, +a4i:function a4i(a,b){this.a=a +this.b=b}, +z5:function z5(a){this.a=a}, +Fo:function Fo(a,b,c){this.a=a +this.b=b +this.c=c}, +Fq:function Fq(a,b){this.a=a +this.b=b}, +Fp:function Fp(a,b){this.a=a +this.b=b}, +aqi:function aqi(a,b,c){this.a=a +this.b=b +this.c=c}, +aqh:function aqh(a,b){this.a=a +this.b=b}, +Lj:function Lj(a,b,c,d){var _=this +_.a=$ +_.b=a +_.c=b +_.d=0 +_.e=-1 +_.f=c +_.r=d}, +z4:function z4(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=$ +_.f=!1 +_.r=0 +_.w=null}, +afi:function afi(a){this.a=a}, +afj:function afj(a,b){this.a=a +this.b=b}, +afk:function afk(a){this.a=a}, +qS:function qS(a,b,c,d,e,f){var _=this +_.x=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=$ +_.f=f}, +afl:function afl(){}, +aAA:function aAA(){}, +afn:function afn(){}, +iN:function iN(a,b){this.a=null +this.b=a +this.$ti=b}, +LP:function LP(a,b){var _=this +_.a=$ +_.b=1 +_.c=a +_.$ti=b}, +afK:function afK(a,b){this.a=a +this.b=b}, +afL:function afL(a,b){this.a=a +this.b=b}, +qZ:function qZ(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=b +_.a=c +_.b=d +_.c=e +_.d=f +_.e=$ +_.f=g}, +afM:function afM(){}, +pH:function pH(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=0 +_.d=c +_.e=d +_.f=!0 +_.r=4278190080 +_.w=!1 +_.z=_.y=_.x=null +_.Q=e +_.ay=_.at=_.as=null}, +a4j:function a4j(a){this.a=a}, +u6:function u6(a){this.a=$ +this.b=a}, +Lr:function Lr(){}, +Ls:function Ls(){this.a=$}, +lf:function lf(){this.a=null}, +a3Z:function a3Z(a,b,c){var _=this +_.e=null +_.f=$ +_.r=a +_.w=b +_.c=_.b=_.a=$ +_.d=c}, +a4_:function a4_(a){this.a=a}, +al5:function al5(){}, +a9g:function a9g(){}, +a4h:function a4h(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=$}, +iJ:function iJ(a,b,c){var _=this +_.a=null +_.b=a +_.c=b +_.d=!0 +_.as=_.Q=_.z=_.y=_.x=_.w=_.r=null +_.at=c +_.cx=_.CW=_.ch=_.ay=_.ax=-1 +_.cy=null}, +Lv:function Lv(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1}, +z9:function z9(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n}, +u7:function u7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fx=_.fr=$}, +a4l:function a4l(a){this.a=a}, +za:function za(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +Lq:function Lq(a){var _=this +_.a=$ +_.b=-1/0 +_.c=a +_.d=0 +_.e=!1 +_.z=_.y=_.x=_.w=_.r=_.f=0 +_.Q=$}, +z8:function z8(a){this.a=a}, +a4k:function a4k(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=0 +_.d=c +_.e=d}, +aAr:function aAr(a){this.a=a}, +Ld:function Ld(a){this.a=a}, +zf:function zf(a){this.a=a}, +a4A:function a4A(a){this.a=a}, +a4B:function a4B(a){this.a=a}, +a4w:function a4w(a){this.a=a}, +a4x:function a4x(a){this.a=a}, +a4y:function a4y(a){this.a=a}, +a4z:function a4z(a){this.a=a}, +zh:function zh(){}, +a4J:function a4J(a,b){this.a=a +this.b=b}, +A8:function A8(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +uh:function uh(a){this.a=a}, +n8:function n8(){}, +dz:function dz(a,b){this.a=a +this.b=b +this.c=null}, +lg:function lg(a){this.a=a +this.b=null}, +Mn:function Mn(a,b,c,d){var _=this +_.a=a +_.b=$ +_.c=b +_.d=c +_.$ti=d}, +ah9:function ah9(){}, +wz:function wz(){}, +nc:function nc(){}, +Q_:function Q_(){this.b=this.a=null}, +ro:function ro(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=0 +_.f=_.e=$ +_.r=-1}, +py:function py(a,b){this.a=a +this.b=b}, +a85:function a85(){this.b=null}, +MD:function MD(a){this.b=a +this.d=null}, +aje:function aje(){}, +a5X:function a5X(a){this.a=a}, +aBo:function aBo(){}, +a6_:function a6_(){}, +aBZ:function aBZ(){}, +Nl:function Nl(a,b){this.a=a +this.b=b}, +a9W:function a9W(a){this.a=a}, +Nk:function Nk(a,b){this.a=a +this.b=b}, +AO:function AO(a,b){this.a=a +this.b=b}, +a61:function a61(){}, +ari:function ari(){}, +a5Y:function a5Y(){}, +a5W:function a5W(){}, +Mt:function Mt(a,b,c){this.a=a +this.b=b +this.c=c}, +zS:function zS(a,b){this.a=a +this.b=b}, +aBn:function aBn(a){this.a=a}, +aBc:function aBc(){}, +t7:function t7(a,b){this.a=a +this.b=-1 +this.$ti=b}, +wU:function wU(a,b){this.a=a +this.$ti=b}, +Mr:function Mr(a,b){this.a=a +this.b=$ +this.$ti=b}, +aC5:function aC5(){}, +aC4:function aC4(){}, +a8q:function a8q(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=$ +_.c=b +_.d=c +_.e=d +_.f=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=!1 +_.at=_.as=$}, +a8r:function a8r(){}, +a8s:function a8s(a){this.a=a}, +a8t:function a8t(){}, +a06:function a06(a,b,c){this.a=a +this.b=b +this.$ti=c}, +Vf:function Vf(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +arB:function arB(a,b,c){this.a=a +this.b=b +this.c=c}, +uE:function uE(a,b){this.a=a +this.b=b}, +qc:function qc(a,b){this.a=a +this.b=b}, +Az:function Az(a){this.a=a}, +aBv:function aBv(a){this.a=a}, +aBw:function aBw(a){this.a=a}, +aBx:function aBx(){}, +aBu:function aBu(){}, +fo:function fo(){}, +N0:function N0(){}, +Ax:function Ax(){}, +Ay:function Ay(){}, +yE:function yE(){}, +qe:function qe(a){var _=this +_.a=!1 +_.b=a +_.d=_.c=!1}, +a8H:function a8H(a){this.a=a}, +a8I:function a8I(a,b){this.a=a +this.b=b}, +a8J:function a8J(a,b){this.a=a +this.b=b}, +a8K:function a8K(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.f=_.e=_.d=null}, +Ng:function Ng(a,b){this.a=a +this.b=b +this.c=$}, +Nj:function Nj(){}, +a9U:function a9U(a,b){this.a=a +this.b=b}, +a9V:function a9V(a){this.a=a}, +Ni:function Ni(){}, +R1:function R1(a){this.a=a}, +L9:function L9(){}, +tM:function tM(a,b){this.a=a +this.b=b}, +Qb:function Qb(){}, +uK:function uK(a){this.a=a}, +nr:function nr(a,b){this.a=a +this.b=b}, +ko:function ko(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=d}, +lD:function lD(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=d}, +azZ:function azZ(a){this.a=a +this.b=0}, +aso:function aso(a){this.a=a +this.b=0}, +pS:function pS(a,b){this.a=a +this.b=b}, +aBH:function aBH(){}, +aBI:function aBI(){}, +a84:function a84(a){this.a=a}, +a86:function a86(a){this.a=a}, +a87:function a87(a){this.a=a}, +a83:function a83(a){this.a=a}, +a5c:function a5c(a){this.a=a}, +a5a:function a5a(a){this.a=a}, +a5b:function a5b(a){this.a=a}, +aAT:function aAT(){}, +aAU:function aAU(){}, +aAV:function aAV(){}, +aAW:function aAW(){}, +aAX:function aAX(){}, +aAY:function aAY(){}, +aAZ:function aAZ(){}, +aB_:function aB_(){}, +aAo:function aAo(a,b,c){this.a=a +this.b=b +this.c=c}, +NV:function NV(a){this.a=$ +this.b=a}, +aaZ:function aaZ(a){this.a=a}, +ab_:function ab_(a){this.a=a}, +ab0:function ab0(a){this.a=a}, +ab1:function ab1(a){this.a=a}, +kk:function kk(a){this.a=a}, +ab2:function ab2(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=null +_.e=!1 +_.f=d +_.r=e}, +ab8:function ab8(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ab9:function ab9(a){this.a=a}, +aba:function aba(a,b,c){this.a=a +this.b=b +this.c=c}, +abb:function abb(a,b){this.a=a +this.b=b}, +ab4:function ab4(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +ab5:function ab5(a,b,c){this.a=a +this.b=b +this.c=c}, +ab6:function ab6(a,b){this.a=a +this.b=b}, +ab7:function ab7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ab3:function ab3(a,b,c){this.a=a +this.b=b +this.c=c}, +abc:function abc(a,b){this.a=a +this.b=b}, +f2:function f2(){}, +zp:function zp(){}, +Qf:function Qf(a,b){this.c=a +this.a=null +this.b=b}, +KS:function KS(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +Ly:function Ly(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +LC:function LC(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +LA:function LA(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +OS:function OS(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +EK:function EK(a,b,c){var _=this +_.f=a +_.c=b +_.a=null +_.b=c}, +C6:function C6(a,b,c){var _=this +_.f=a +_.c=b +_.a=null +_.b=c}, +ND:function ND(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +lP:function lP(a,b,c){var _=this +_.c=a +_.d=b +_.r=null +_.w=!1 +_.a=null +_.b=c}, +abi:function abi(a){this.a=a}, +abj:function abj(a){this.a=a +this.b=$}, +abk:function abk(a){this.a=a}, +a8F:function a8F(a){this.a=a}, +a8L:function a8L(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a8M:function a8M(a,b){this.a=a +this.b=b}, +LL:function LL(){}, +O1:function O1(){}, +Pl:function Pl(a,b){this.a=a +this.b=b}, +aeh:function aeh(a,b,c){var _=this +_.a=a +_.b=b +_.c=$ +_.d=c}, +P3:function P3(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +ag4:function ag4(){}, +BP:function BP(a){this.a=a}, +eL:function eL(a,b){this.a=a +this.b=b}, +cb:function cb(a,b){this.a=a +this.b=b}, +LT:function LT(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +KC:function KC(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +KD:function KD(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +fe:function fe(a){this.a=a}, +lc:function lc(a){this.a=a}, +mT:function mT(a,b,c){this.a=a +this.b=b +this.c=c}, +em:function em(a){this.a=a}, +tJ:function tJ(a){this.a=a}, +Kr:function Kr(a,b,c){this.a=a +this.b=b +this.c=c}, +pJ:function pJ(){}, +qy:function qy(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=null +_.e=d}, +abo:function abo(a){this.a=a}, +abn:function abn(a,b){this.a=a +this.b=b}, +a4S:function a4S(a){this.a=a +this.b=!0}, +aeV:function aeV(){}, +aBV:function aBV(){}, +a3s:function a3s(){}, +BN:function BN(a){var _=this +_.d=a +_.a=_.e=$ +_.c=_.b=!1}, +af4:function af4(){}, +DG:function DG(a,b){var _=this +_.d=a +_.e="/" +_.f=b +_.a=$ +_.c=_.b=!1}, +al9:function al9(){}, +ala:function ala(){}, +lL:function lL(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=0 +_.e=d}, +Ai:function Ai(a){this.a=a +this.b=0}, +OO:function OO(){}, +qY:function qY(a){this.a=a}, +vk:function vk(a,b,c){this.a=a +this.b=b +this.c=c}, +ON:function ON(a){this.a=a}, +ME:function ME(a,b,c,d,e,f){var _=this +_.a=$ +_.b=a +_.c=b +_.d=c +_.r=d +_.x=_.w=$ +_.z=_.y=null +_.Q=$ +_.p2=_.p1=_.ok=_.k4=_.k3=_.k2=_.k1=_.id=_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=null +_.p3=e +_.x2=_.x1=_.to=_.RG=_.R8=_.p4=null +_.xr=f +_.M=null}, +a7v:function a7v(a){this.a=a}, +a7w:function a7w(a,b,c){this.a=a +this.b=b +this.c=c}, +a7u:function a7u(a,b){this.a=a +this.b=b}, +a7q:function a7q(a,b){this.a=a +this.b=b}, +a7r:function a7r(a,b){this.a=a +this.b=b}, +a7s:function a7s(a,b){this.a=a +this.b=b}, +a7o:function a7o(a){this.a=a}, +a7n:function a7n(a){this.a=a}, +a7t:function a7t(){}, +a7m:function a7m(a){this.a=a}, +a7x:function a7x(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a7y:function a7y(a,b){this.a=a +this.b=b}, +a7p:function a7p(a){this.a=a}, +aBK:function aBK(a,b,c){this.a=a +this.b=b +this.c=c}, +anw:function anw(){}, +Pe:function Pe(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +afx:function afx(a){this.a=a}, +a2T:function a2T(){}, +Tx:function Tx(a,b,c,d){var _=this +_.c=a +_.d=b +_.r=_.f=_.e=$ +_.a=c +_.b=d}, +ap_:function ap_(a){this.a=a}, +aoZ:function aoZ(a){this.a=a}, +ap0:function ap0(a){this.a=a}, +Sv:function Sv(a,b,c){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.e=null +_.x=_.w=_.r=_.f=$}, +any:function any(a){this.a=a}, +anz:function anz(a){this.a=a}, +anA:function anA(a){this.a=a}, +anB:function anB(a){this.a=a}, +ags:function ags(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +agt:function agt(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Pf:function Pf(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=null +_.z=$}, +agq:function agq(){}, +agr:function agr(){}, +ago:function ago(){}, +agp:function agp(a,b){this.a=a +this.b=b}, +qT:function qT(a,b){this.a=a +this.b=b}, +ju:function ju(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +vd:function vd(a){this.a=a}, +Dc:function Dc(){}, +Ci:function Ci(a){this.a=a}, +agv:function agv(){}, +A5:function A5(a,b){var _=this +_.a=a +_.b=b +_.f=_.e=_.d=_.c=null}, +agu:function agu(a){this.b=a}, +aiU:function aiU(){this.a=null}, +aiV:function aiV(){}, +agz:function agz(a,b,c){var _=this +_.a=null +_.b=a +_.d=b +_.e=c +_.f=$}, +Lx:function Lx(){this.b=this.a=null +this.c=!1}, +agI:function agI(){}, +Oa:function Oa(a,b,c){this.a=a +this.b=b +this.c=c}, +aoN:function aoN(){}, +aoO:function aoO(a){this.a=a}, +aA_:function aA_(){}, +aA0:function aA0(a){this.a=a}, +kZ:function kZ(a,b){this.a=a +this.b=b}, +wG:function wG(){this.a=0}, +avz:function avz(a,b,c){var _=this +_.f=a +_.a=b +_.b=c +_.c=null +_.e=_.d=!1}, +avB:function avB(){}, +avA:function avA(a,b,c){this.a=a +this.b=b +this.c=c}, +avD:function avD(a){this.a=a}, +avC:function avC(a){this.a=a}, +avE:function avE(a){this.a=a}, +avF:function avF(a){this.a=a}, +avG:function avG(a){this.a=a}, +avH:function avH(a){this.a=a}, +avI:function avI(a){this.a=a}, +xq:function xq(a,b){this.a=null +this.b=a +this.c=b}, +asp:function asp(a){this.a=a +this.b=0}, +asq:function asq(a,b){this.a=a +this.b=b}, +agA:function agA(){}, +aDO:function aDO(){}, +ahb:function ahb(a,b){this.a=a +this.b=0 +this.c=b}, +ahc:function ahc(a){this.a=a}, +ahe:function ahe(a,b,c){this.a=a +this.b=b +this.c=c}, +ahf:function ahf(a){this.a=a}, +CY:function CY(){}, +yD:function yD(a,b){this.a=a +this.b=b}, +a2q:function a2q(a,b){this.a=a +this.b=b +this.c=!1}, +a2r:function a2r(a){this.a=a}, +ajJ:function ajJ(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +akh:function akh(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +Fm:function Fm(a,b){this.a=a +this.b=b}, +ak7:function ak7(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajM:function ajM(a,b,c){var _=this +_.w=a +_.a=$ +_.b=b +_.c=c +_.f=_.e=_.d=null}, +QI:function QI(a,b){this.a=a +this.b=b +this.c=!1}, +z1:function z1(a,b){this.a=a +this.b=b +this.c=!1}, +tZ:function tZ(a,b){this.a=a +this.b=b +this.c=!1}, +ML:function ML(a,b){this.a=a +this.b=b +this.c=!1}, +q8:function q8(a,b,c){var _=this +_.d=a +_.a=b +_.b=c +_.c=!1}, +tF:function tF(a,b){this.a=a +this.b=b}, +pm:function pm(a,b){var _=this +_.a=a +_.b=null +_.c=b +_.d=null}, +a2t:function a2t(a){this.a=a}, +a2u:function a2u(a){this.a=a}, +a2s:function a2s(a,b){this.a=a +this.b=b}, +ajQ:function ajQ(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajR:function ajR(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajS:function ajS(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajT:function ajT(a,b){var _=this +_.w=null +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajU:function ajU(a,b,c,d){var _=this +_.w=a +_.x=b +_.y=1 +_.z=$ +_.Q=!1 +_.a=$ +_.b=c +_.c=d +_.f=_.e=_.d=null}, +ajV:function ajV(a,b){this.a=a +this.b=b}, +ajW:function ajW(a){this.a=a}, +Be:function Be(a,b){this.a=a +this.b=b}, +abf:function abf(){}, +a2W:function a2W(a,b){this.a=a +this.b=b}, +a62:function a62(a,b){this.c=null +this.a=a +this.b=b}, +DI:function DI(a,b,c){var _=this +_.c=a +_.e=_.d=null +_.a=b +_.b=c}, +NW:function NW(a,b,c){var _=this +_.d=a +_.f=_.e=null +_.a=b +_.b=c +_.c=!1}, +aAt:function aAt(){}, +ajO:function ajO(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajP:function ajP(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak_:function ak_(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak5:function ak5(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak8:function ak8(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajX:function ajX(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajY:function ajY(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajZ:function ajZ(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +nI:function nI(a,b){var _=this +_.d=null +_.a=a +_.b=b +_.c=!1}, +QO:function QO(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak4:function ak4(){}, +QP:function QP(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak0:function ak0(){}, +ak1:function ak1(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak2:function ak2(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak3:function ak3(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ak6:function ak6(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +Qa:function Qa(a,b){this.a=a +this.b=b +this.c=!1}, +og:function og(){}, +akb:function akb(a){this.a=a}, +aka:function aka(){}, +QQ:function QQ(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +QN:function QN(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +QM:function QM(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +rv:function rv(a,b){var _=this +_.d=null +_.a=a +_.b=b +_.c=!1}, +aiN:function aiN(a){this.a=a}, +akd:function akd(a,b,c){var _=this +_.w=null +_.x=a +_.y=null +_.z=0 +_.a=$ +_.b=b +_.c=c +_.f=_.e=_.d=null}, +ake:function ake(a){this.a=a}, +akf:function akf(a){this.a=a}, +akg:function akg(a){this.a=a}, +A7:function A7(a){this.a=a}, +QX:function QX(a){this.a=a}, +QU:function QU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this +_.a=a +_.b=b +_.c=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k3=a9 +_.k4=b0 +_.ok=b1 +_.p1=b2 +_.p2=b3 +_.p3=b4 +_.p4=b5 +_.R8=b6}, +c2:function c2(a,b){this.a=a +this.b=b}, +Du:function Du(){}, +ak9:function ak9(a){this.a=a}, +a8V:function a8V(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +hj:function hj(){}, +rK:function rK(a,b,c,d){var _=this +_.a=a +_.fy=_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=null +_.go=-1 +_.id=0 +_.k2=_.k1=null +_.k3=b +_.k4=c +_.ok=d +_.p2=_.p1=$ +_.p4=_.p3=null +_.R8=-1 +_.ry=_.rx=_.RG=null +_.xr=_.x2=_.x1=_.to=0}, +a2v:function a2v(a,b){this.a=a +this.b=b}, +qg:function qg(a,b){this.a=a +this.b=b}, +a7z:function a7z(a,b,c,d,e){var _=this +_.a=a +_.b=!1 +_.c=b +_.d=c +_.f=d +_.r=null +_.w=e}, +a7E:function a7E(){}, +a7D:function a7D(a){this.a=a}, +a7A:function a7A(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=null +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=!1}, +a7C:function a7C(a){this.a=a}, +a7B:function a7B(a,b){this.a=a +this.b=b}, +A6:function A6(a,b){this.a=a +this.b=b}, +akE:function akE(a){this.a=a}, +akA:function akA(){}, +a5z:function a5z(){this.a=null}, +a5A:function a5A(a){this.a=a}, +aeM:function aeM(){var _=this +_.b=_.a=null +_.c=0 +_.d=!1}, +aeO:function aeO(a){this.a=a}, +aeN:function aeN(a){this.a=a}, +akl:function akl(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajL:function ajL(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +akc:function akc(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajN:function ajN(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +aki:function aki(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +akk:function akk(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +akj:function akj(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +ajK:function ajK(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +RP:function RP(a,b){var _=this +_.d=null +_.e=!1 +_.a=a +_.b=b +_.c=!1}, +amb:function amb(a){this.a=a}, +akO:function akO(a,b,c,d,e,f,g){var _=this +_.cy=_.cx=_.CW=null +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.a$=c +_.b$=d +_.c$=e +_.d$=f +_.e$=g}, +akm:function akm(a,b){var _=this +_.a=_.w=$ +_.b=a +_.c=b +_.f=_.e=_.d=null}, +akn:function akn(a){this.a=a}, +ako:function ako(a){this.a=a}, +akp:function akp(a){this.a=a}, +akq:function akq(a){this.a=a}, +xQ:function xQ(){}, +W2:function W2(){}, +Sf:function Sf(a,b){this.a=a +this.b=b}, +iy:function iy(a,b){this.a=a +this.b=b}, +aaO:function aaO(){}, +aaQ:function aaQ(){}, +aly:function aly(){}, +alB:function alB(a,b){this.a=a +this.b=b}, +alC:function alC(){}, +anV:function anV(a,b,c){this.b=a +this.c=b +this.d=c}, +PC:function PC(a){this.a=a +this.b=0}, +Bl:function Bl(a,b){this.a=a +this.b=b}, +qz:function qz(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +A9:function A9(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +a3o:function a3o(a){this.a=a}, +LK:function LK(){}, +a7k:function a7k(){}, +afG:function afG(){}, +a7F:function a7F(){}, +a63:function a63(){}, +a9e:function a9e(){}, +afE:function afE(){}, +agN:function agN(){}, +ajz:function ajz(){}, +akQ:function akQ(){}, +a7l:function a7l(){}, +afI:function afI(){}, +afm:function afm(){}, +amB:function amB(){}, +afJ:function afJ(){}, +a5p:function a5p(){}, +aga:function aga(){}, +a7c:function a7c(){}, +anm:function anm(){}, +BO:function BO(){}, +wf:function wf(a,b){this.a=a +this.b=b}, +Ei:function Ei(a){this.a=a}, +a7g:function a7g(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +a7h:function a7h(a,b){this.a=a +this.b=b}, +a7i:function a7i(a,b,c){this.a=a +this.b=b +this.c=c}, +KN:function KN(a,b,c,d){var _=this +_.a=a +_.b=b +_.d=c +_.e=d}, +wi:function wi(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +jb:function jb(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aaJ:function aaJ(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k}, +Na:function Na(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.a$=c +_.b$=d +_.c$=e +_.d$=f +_.e$=g}, +vM:function vM(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.a$=c +_.b$=d +_.c$=e +_.d$=f +_.e$=g}, +zE:function zE(){}, +a5v:function a5v(){}, +a5w:function a5w(){}, +a5x:function a5x(){}, +aa3:function aa3(a,b,c,d,e,f,g){var _=this +_.p2=null +_.p3=!0 +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.a$=c +_.b$=d +_.c$=e +_.d$=f +_.e$=g}, +aa6:function aa6(a){this.a=a}, +aa4:function aa4(a){this.a=a}, +aa5:function aa5(a){this.a=a}, +a2J:function a2J(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.a$=c +_.b$=d +_.c$=e +_.d$=f +_.e$=g}, +a7X:function a7X(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.a$=c +_.b$=d +_.c$=e +_.d$=f +_.e$=g}, +a7Y:function a7Y(a){this.a=a}, +amp:function amp(){}, +amv:function amv(a,b){this.a=a +this.b=b}, +amC:function amC(){}, +amx:function amx(a){this.a=a}, +amA:function amA(){}, +amw:function amw(a){this.a=a}, +amz:function amz(a){this.a=a}, +amn:function amn(){}, +ams:function ams(){}, +amy:function amy(){}, +amu:function amu(){}, +amt:function amt(){}, +amr:function amr(a){this.a=a}, +aC3:function aC3(){}, +ami:function ami(a){this.a=a}, +amj:function amj(a){this.a=a}, +a9Z:function a9Z(){var _=this +_.a=$ +_.b=null +_.c=!1 +_.d=null +_.f=$}, +aa0:function aa0(a){this.a=a}, +aa_:function aa_(a){this.a=a}, +a71:function a71(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a6j:function a6j(a,b,c){this.a=a +this.b=b +this.c=c}, +a6k:function a6k(){}, +B3:function B3(a,b){this.a=a +this.b=b}, +EL:function EL(a,b){this.a=a +this.b=b}, +aBj:function aBj(){}, +Og:function Og(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +k3:function k3(a,b){this.a=a +this.b=b}, +ku:function ku(a){this.a=a}, +a56:function a56(a,b){var _=this +_.b=a +_.d=_.c=$ +_.e=b}, +a57:function a57(a){this.a=a}, +a58:function a58(a){this.a=a}, +Mk:function Mk(){}, +N5:function N5(a){this.b=$ +this.c=a}, +Mo:function Mo(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=$}, +a5Z:function a5Z(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e +_.r=null}, +a59:function a59(a){this.a=a +this.b=$}, +a8O:function a8O(a){this.a=a}, +MX:function MX(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a8d:function a8d(a,b){this.a=a +this.b=b}, +a8e:function a8e(a,b){this.a=a +this.b=b}, +a9d:function a9d(a,b){this.a=a +this.b=b}, +aAQ:function aAQ(){}, +pK:function pK(a){this.a=a}, +a4I:function a4I(){}, +anF:function anF(){}, +anG:function anG(a,b,c){this.a=a +this.b=b +this.c=c}, +amI:function amI(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +Ah:function Ah(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +yK:function yK(a,b){this.a=a +this.b=b +this.c=0}, +S_:function S_(a,b,c){var _=this +_.c=a +_.r=b +_.x=_.w=0 +_.y=c +_.z=0}, +EY:function EY(a,b,c){this.a=a +this.b=b +this.c=c}, +t3:function t3(a,b,c){this.a=a +this.b=b +this.c=c}, +He:function He(){}, +fi:function fi(){this.b=this.a=-1}, +E2:function E2(a){this.c=a +this.b=this.a=-1}, +SC:function SC(){}, +SB:function SB(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.at=$}, +anK:function anK(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +amT:function amT(a){var _=this +_.b=a +_.d=_.c=0 +_.e=$ +_.w=_.r=_.f=0}, +lo:function lo(){}, +V8:function V8(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=$ +_.f=!1 +_.z=_.y=_.x=_.w=_.r=$ +_.Q=d +_.as=$ +_.at=null +_.ay=e +_.ch=f}, +uA:function uA(a,b,c,d,e,f,g){var _=this +_.CW=null +_.cx=a +_.a=b +_.b=c +_.c=d +_.d=$ +_.f=!1 +_.z=_.y=_.x=_.w=_.r=$ +_.Q=e +_.as=$ +_.at=null +_.ay=f +_.ch=g}, +a7j:function a7j(a,b){this.a=a +this.b=b}, +Sx:function Sx(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +wx:function wx(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +anx:function anx(){}, +Uz:function Uz(){}, +a0R:function a0R(){}, +aDs:function aDs(){}, +aI9(a,b){return new A.AM(a,b)}, +aYB(a){var s,r,q,p=a.length +if(p===0)return!1 +s=new A.fG('"(),/:;<=>?@[]{}') +for(r=0;r=127||s.p(s,q))return!1}return!0}, +JP(a,b){var s,r +for(s=a.length;b").bR(c).i("G0<1,2>")) +return new A.pB(a,b.i("@<0>").bR(c).i("pB<1,2>"))}, +aIB(a){return new A.jn("Field '"+a+"' has been assigned during initialization.")}, +abg(a){return new A.jn("Field '"+a+"' has not been initialized.")}, +Bf(a){return new A.jn("Local '"+a+"' has not been initialized.")}, +aUE(a){return new A.jn("Field '"+a+"' has already been initialized.")}, +aIC(a){return new A.jn("Local '"+a+"' has already been initialized.")}, +aSa(a){return new A.fG(a)}, +aBB(a){var s,r=a^48 +if(r<=9)return r +s=a|32 +if(97<=s&&s<=102)return s-87 +return-1}, +P(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +eC(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +aKh(a,b,c){return A.eC(A.P(A.P(c,a),b))}, +aXo(a,b,c,d,e){return A.eC(A.P(A.P(A.P(A.P(e,a),b),c),d))}, +mK(a,b,c){return a}, +aFn(a){var s,r +for(s=$.tD.length,r=0;rc)A.a0(A.cy(b,0,c,"start",null))}return new A.i2(a,b,c,d.i("i2<0>"))}, +v5(a,b,c,d){if(t.Ee.b(a))return new A.pX(a,b,c.i("@<0>").bR(d).i("pX<1,2>")) +return new A.f4(a,b,c.i("@<0>").bR(d).i("f4<1,2>"))}, +aXr(a,b,c){var s="takeCount" +A.pr(b,s) +A.eg(b,s) +if(t.Ee.b(a))return new A.A2(a,b,c.i("A2<0>")) +return new A.rR(a,b,c.i("rR<0>"))}, +aK8(a,b,c){var s="count" +if(t.Ee.b(a)){A.pr(b,s) +A.eg(b,s) +return new A.uz(a,b,c.i("uz<0>"))}A.pr(b,s) +A.eg(b,s) +return new A.m5(a,b,c.i("m5<0>"))}, +aU2(a,b,c){return new A.qa(a,b,c.i("qa<0>"))}, +cj(){return new A.fQ("No element")}, +aIm(){return new A.fQ("Too many elements")}, +aIl(){return new A.fQ("Too few elements")}, +Ro(a,b,c,d){if(c-b<=32)A.aX9(a,b,c,d) +else A.aX8(a,b,c,d)}, +aX9(a,b,c,d){var s,r,q,p,o +for(s=b+1,r=J.aE(a);s<=c;++s){q=r.h(a,s) +p=s +for(;;){if(!(p>b&&d.$2(r.h(a,p-1),q)>0))break +o=p-1 +r.m(a,p,r.h(a,o)) +p=o}r.m(a,p,q)}}, +aX8(a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i=B.f.fh(a5-a4+1,6),h=a4+i,g=a5-i,f=B.f.fh(a4+a5,2),e=f-i,d=f+i,c=J.aE(a3),b=c.h(a3,h),a=c.h(a3,e),a0=c.h(a3,f),a1=c.h(a3,d),a2=c.h(a3,g) +if(a6.$2(b,a)>0){s=a +a=b +b=s}if(a6.$2(a1,a2)>0){s=a2 +a2=a1 +a1=s}if(a6.$2(b,a0)>0){s=a0 +a0=b +b=s}if(a6.$2(a,a0)>0){s=a0 +a0=a +a=s}if(a6.$2(b,a1)>0){s=a1 +a1=b +b=s}if(a6.$2(a0,a1)>0){s=a1 +a1=a0 +a0=s}if(a6.$2(a,a2)>0){s=a2 +a2=a +a=s}if(a6.$2(a,a0)>0){s=a0 +a0=a +a=s}if(a6.$2(a1,a2)>0){s=a2 +a2=a1 +a1=s}c.m(a3,h,b) +c.m(a3,f,a0) +c.m(a3,g,a2) +c.m(a3,e,c.h(a3,a4)) +c.m(a3,d,c.h(a3,a5)) +r=a4+1 +q=a5-1 +p=J.d(a6.$2(a,a1),0) +if(p)for(o=r;o<=q;++o){n=c.h(a3,o) +m=a6.$2(n,a) +if(m===0)continue +if(m<0){if(o!==r){c.m(a3,o,c.h(a3,r)) +c.m(a3,r,n)}++r}else for(;;){m=a6.$2(c.h(a3,q),a) +if(m>0){--q +continue}else{l=q-1 +if(m<0){c.m(a3,o,c.h(a3,r)) +k=r+1 +c.m(a3,r,c.h(a3,q)) +c.m(a3,q,n) +q=l +r=k +break}else{c.m(a3,o,c.h(a3,q)) +c.m(a3,q,n) +q=l +break}}}}else for(o=r;o<=q;++o){n=c.h(a3,o) +if(a6.$2(n,a)<0){if(o!==r){c.m(a3,o,c.h(a3,r)) +c.m(a3,r,n)}++r}else if(a6.$2(n,a1)>0)for(;;)if(a6.$2(c.h(a3,q),a1)>0){--q +if(qg){while(J.d(a6.$2(c.h(a3,r),a),0))++r +while(J.d(a6.$2(c.h(a3,q),a1),0))--q +for(o=r;o<=q;++o){n=c.h(a3,o) +if(a6.$2(n,a)===0){if(o!==r){c.m(a3,o,c.h(a3,r)) +c.m(a3,r,n)}++r}else if(a6.$2(n,a1)===0)for(;;)if(a6.$2(c.h(a3,q),a1)===0){--q +if(q")),!0,b),k=l.length,j=0 +for(;;){if(!(j")),!0,c),b.i("@<0>").bR(c).i("bT<1,2>")) +n.$keys=l +return n}return new A.pM(A.aII(a,b,c),b.i("@<0>").bR(c).i("pM<1,2>"))}, +aCM(){throw A.e(A.af("Cannot modify unmodifiable Map"))}, +aCN(){throw A.e(A.af("Cannot modify constant Set"))}, +aNG(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +aNi(a,b){var s +if(b!=null){s=b.x +if(s!=null)return s}return t.dC.b(a)}, +k(a){var s +if(typeof a=="string")return a +if(typeof a=="number"){if(a!==0)return""+a}else if(!0===a)return"true" +else if(!1===a)return"false" +else if(a==null)return"null" +s=J.dr(a) +return s}, +N(a,b,c,d,e,f){return new A.B6(a,c,d,e,f)}, +b87(a,b,c,d,e,f){return new A.B6(a,c,d,e,f)}, +nB(a,b,c,d,e,f){return new A.B6(a,c,d,e,f)}, +f5(a){var s,r=$.aJt +if(r==null)r=$.aJt=Symbol("identityHashCode") +s=a[r] +if(s==null){s=Math.random()*0x3fffffff|0 +a[r]=s}return s}, +ri(a,b){var s,r,q,p,o,n=null,m=/^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(a) +if(m==null)return n +s=m[3] +if(b==null){if(s!=null)return parseInt(a,10) +if(m[2]!=null)return parseInt(a,16) +return n}if(b<2||b>36)throw A.e(A.cy(b,2,36,"radix",n)) +if(b===10&&s!=null)return parseInt(a,10) +if(b<10||s==null){r=b<=10?47+b:86+b +q=m[1] +for(p=q.length,o=0;or)return n}return parseInt(a,b)}, +agT(a){var s,r +if(!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(a))return null +s=parseFloat(a) +if(isNaN(s)){r=B.c.dq(a) +if(r==="NaN"||r==="+NaN"||r==="-NaN")return s +return null}return s}, +Po(a){var s,r,q,p +if(a instanceof A.R)return A.id(A.bR(a),null) +s=J.ph(a) +if(s===B.Iy||s===B.IP||t.kk.b(a)){r=B.nk(a) +if(r!=="Object"&&r!=="")return r +q=a.constructor +if(typeof q=="function"){p=q.name +if(typeof p=="string"&&p!=="Object"&&p!=="")return p}}return A.id(A.bR(a),null)}, +aJx(a){var s,r,q +if(a==null||typeof a=="number"||A.pc(a))return J.dr(a) +if(typeof a=="string")return JSON.stringify(a) +if(a instanceof A.n4)return a.k(0) +if(a instanceof A.oX)return a.Ty(!0) +s=$.aQj() +for(r=0;r<1;++r){q=s[r].avG(a) +if(q!=null)return q}return"Instance of '"+A.Po(a)+"'"}, +aW_(){return Date.now()}, +aW1(){var s,r +if($.agU!==0)return +$.agU=1000 +if(typeof window=="undefined")return +s=window +if(s==null)return +if(!!s.dartUseDateNowForTicks)return +r=s.performance +if(r==null)return +if(typeof r.now!="function")return +$.agU=1e6 +$.Pp=new A.agS(r)}, +aVZ(){if(!!self.location)return self.location.href +return null}, +aJs(a){var s,r,q,p,o=a.length +if(o<=500)return String.fromCharCode.apply(null,a) +for(s="",r=0;r65535)return A.aW2(a)}return A.aJs(a)}, +aW3(a,b,c){var s,r,q,p +if(c<=500&&b===0&&c===a.length)return String.fromCharCode.apply(null,a) +for(s=b,r="";s>>0,s&1023|56320)}}throw A.e(A.cy(a,0,1114111,null,null))}, +aDM(a,b,c,d,e,f,g,h,i){var s,r,q,p=b-1 +if(0<=a&&a<100){a+=400 +p-=4800}s=B.f.bh(h,1000) +g+=B.f.fh(h-s,1000) +r=i?Date.UTC(a,p,c,d,e,f,g):new Date(a,p,c,d,e,f,g).valueOf() +q=!0 +if(!isNaN(r))if(!(r<-864e13))if(!(r>864e13))q=r===864e13&&s!==0 +if(q)return null +return r}, +fM(a){if(a.date===void 0)a.date=new Date(a.a) +return a.date}, +agR(a){return a.c?A.fM(a).getUTCFullYear()+0:A.fM(a).getFullYear()+0}, +jA(a){return a.c?A.fM(a).getUTCMonth()+1:A.fM(a).getMonth()+1}, +agP(a){return a.c?A.fM(a).getUTCDate()+0:A.fM(a).getDate()+0}, +rh(a){return a.c?A.fM(a).getUTCHours()+0:A.fM(a).getHours()+0}, +aJv(a){return a.c?A.fM(a).getUTCMinutes()+0:A.fM(a).getMinutes()+0}, +aJw(a){return a.c?A.fM(a).getUTCSeconds()+0:A.fM(a).getSeconds()+0}, +aJu(a){return a.c?A.fM(a).getUTCMilliseconds()+0:A.fM(a).getMilliseconds()+0}, +agQ(a){return B.f.bh((a.c?A.fM(a).getUTCDay()+0:A.fM(a).getDay()+0)+6,7)+1}, +aW0(a){var s=a.$thrownJsError +if(s==null)return null +return A.aH(s)}, +aDL(a,b){var s +if(a.$thrownJsError==null){s=new Error() +A.dQ(a,s) +a.$thrownJsError=s +s.stack=b.k(0)}}, +a1V(a,b){var s,r="index" +if(!A.xY(b))return new A.ii(!0,b,r,null) +s=J.cg(a) +if(b<0||b>=s)return A.dk(b,s,a,null,r) +return A.ah8(b,r)}, +b1r(a,b,c){if(a<0||a>c)return A.cy(a,0,c,"start",null) +if(b!=null)if(bc)return A.cy(b,a,c,"end",null) +return new A.ii(!0,b,"end",null)}, +y4(a){return new A.ii(!0,a,null,null)}, +l4(a){return a}, +e(a){return A.dQ(a,new Error())}, +dQ(a,b){var s +if(a==null)a=new A.mi() +b.dartException=a +s=A.b2Q +if("defineProperty" in Object){Object.defineProperty(b,"message",{get:s}) +b.name=""}else b.toString=s +return b}, +b2Q(){return J.dr(this.dartException)}, +a0(a,b){throw A.dQ(a,b==null?new Error():b)}, +aI(a,b,c){var s +if(b==null)b=0 +if(c==null)c=0 +s=Error() +A.a0(A.b_c(a,b,c),s)}, +b_c(a,b,c){var s,r,q,p,o,n,m,l,k +if(typeof b=="string")s=b +else{r="[]=;add;removeWhere;retainWhere;removeRange;setRange;setInt8;setInt16;setInt32;setUint8;setUint16;setUint32;setFloat32;setFloat64".split(";") +q=r.length +p=b +if(p>q){c=p/q|0 +p%=q}s=r[p]}o=typeof c=="string"?c:"modify;remove from;add to".split(";")[c] +n=t.j.b(a)?"list":"ByteData" +m=a.$flags|0 +l="a " +if((m&4)!==0)k="constant " +else if((m&2)!==0){k="unmodifiable " +l="an "}else k=(m&1)!==0?"fixed-length ":"" +return new A.ES("'"+s+"': Cannot "+o+" "+l+k+n)}, +K(a){throw A.e(A.c6(a))}, +mj(a){var s,r,q,p,o,n +a=A.aBY(a.replace(String({}),"$receiver$")) +s=a.match(/\\\$[a-zA-Z]+\\\$/g) +if(s==null)s=A.b([],t.s) +r=s.indexOf("\\$arguments\\$") +q=s.indexOf("\\$argumentsExpr\\$") +p=s.indexOf("\\$expr\\$") +o=s.indexOf("\\$method\\$") +n=s.indexOf("\\$receiver\\$") +return new A.and(a.replace(new RegExp("\\\\\\$arguments\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$","g"),"((?:x|[^x])*)"),r,q,p,o,n)}, +ane(a){return function($expr$){var $argumentsExpr$="$arguments$" +try{$expr$.$method$($argumentsExpr$)}catch(s){return s.message}}(a)}, +aKF(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, +aDt(a,b){var s=b==null,r=s?null:b.method +return new A.NP(a,r,s?null:b.receiver)}, +a1(a){if(a==null)return new A.OL(a) +if(a instanceof A.Ad)return A.pj(a,a.a) +if(typeof a!=="object")return a +if("dartException" in a)return A.pj(a,a.dartException) +return A.b0z(a)}, +pj(a,b){if(t.Lt.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a +return b}, +b0z(a){var s,r,q,p,o,n,m,l,k,j,i,h,g +if(!("message" in a))return a +s=a.message +if("number" in a&&typeof a.number=="number"){r=a.number +q=r&65535 +if((B.f.eX(r,16)&8191)===10)switch(q){case 438:return A.pj(a,A.aDt(A.k(s)+" (Error "+q+")",null)) +case 445:case 5007:A.k(s) +return A.pj(a,new A.C3())}}if(a instanceof TypeError){p=$.aOY() +o=$.aOZ() +n=$.aP_() +m=$.aP0() +l=$.aP3() +k=$.aP4() +j=$.aP2() +$.aP1() +i=$.aP6() +h=$.aP5() +g=p.kM(s) +if(g!=null)return A.pj(a,A.aDt(s,g)) +else{g=o.kM(s) +if(g!=null){g.method="call" +return A.pj(a,A.aDt(s,g))}else if(n.kM(s)!=null||m.kM(s)!=null||l.kM(s)!=null||k.kM(s)!=null||j.kM(s)!=null||m.kM(s)!=null||i.kM(s)!=null||h.kM(s)!=null)return A.pj(a,new A.C3())}return A.pj(a,new A.Sl(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.DU() +s=function(b){try{return String(b)}catch(f){}return null}(a) +return A.pj(a,new A.ii(!1,null,null,typeof s=="string"?s.replace(/^RangeError:\s*/,""):s))}if(typeof InternalError=="function"&&a instanceof InternalError)if(typeof s=="string"&&s==="too much recursion")return new A.DU() +return a}, +aH(a){var s +if(a instanceof A.Ad)return a.b +if(a==null)return new A.Iq(a) +s=a.$cachedTrace +if(s!=null)return s +s=new A.Iq(a) +if(typeof a==="object")a.$cachedTrace=s +return s}, +pi(a){if(a==null)return J.C(a) +if(typeof a=="object")return A.f5(a) +return J.C(a)}, +b17(a){if(typeof a=="number")return B.d.gB(a) +if(a instanceof A.IM)return A.f5(a) +if(a instanceof A.oX)return a.gB(a) +if(a instanceof A.f8)return a.gB(0) +return A.pi(a)}, +aN5(a,b){var s,r,q,p=a.length +for(s=0;s=0 +else if(b instanceof A.nD){s=B.c.bZ(a,c) +return b.b.test(s)}else return!J.aGi(b,B.c.bZ(a,c)).ga7(0)}, +aN4(a){if(a.indexOf("$",0)>=0)return a.replace(/\$/g,"$$$$") +return a}, +aBY(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") +return a}, +mP(a,b,c){var s +if(typeof b=="string")return A.b2D(a,b,c) +if(b instanceof A.nD){s=b.gRc() +s.lastIndex=0 +return a.replace(s,A.aN4(c))}return A.b2C(a,b,c)}, +b2C(a,b,c){var s,r,q,p +for(s=J.aGi(b,a),s=s.gag(s),r=0,q="";s.u();){p=s.gN(s) +q=q+a.substring(r,p.gbI(p))+c +r=p.gbv(p)}s=q+a.substring(r) +return s.charCodeAt(0)==0?s:s}, +b2D(a,b,c){var s,r,q +if(b===""){if(a==="")return c +s=a.length +for(r=c,q=0;q=0)return a.split(b).join(c) +return a.replace(new RegExp(A.aBY(b),"g"),A.aN4(c))}, +aMH(a){return a}, +aNz(a,b,c,d){var s,r,q,p,o,n,m +for(s=b.qx(0,a),s=new A.F4(s.a,s.b,s.c),r=t.Qz,q=0,p="";s.u();){o=s.d +if(o==null)o=r.a(o) +n=o.b +m=n.index +p=p+A.k(A.aMH(B.c.a1(a,q,m)))+A.k(c.$1(o)) +q=m+n[0].length}s=p+A.k(A.aMH(B.c.bZ(a,q))) +return s.charCodeAt(0)==0?s:s}, +b2E(a,b,c,d){var s=a.indexOf(b,d) +if(s<0)return a +return A.aNA(a,s,s+b.length,c)}, +aNA(a,b,c,d){return a.substring(0,b)+d+a.substring(c)}, +am:function am(a,b){this.a=a +this.b=b}, +Yd:function Yd(a,b){this.a=a +this.b=b}, +Hh:function Hh(a,b){this.a=a +this.b=b}, +Ye:function Ye(a,b){this.a=a +this.b=b}, +Yf:function Yf(a,b){this.a=a +this.b=b}, +Yg:function Yg(a,b){this.a=a +this.b=b}, +Yh:function Yh(a,b){this.a=a +this.b=b}, +hx:function hx(a,b,c){this.a=a +this.b=b +this.c=c}, +Yi:function Yi(a,b,c){this.a=a +this.b=b +this.c=c}, +Yj:function Yj(a,b,c){this.a=a +this.b=b +this.c=c}, +Hi:function Hi(a,b,c){this.a=a +this.b=b +this.c=c}, +Hj:function Hj(a,b,c){this.a=a +this.b=b +this.c=c}, +Yk:function Yk(a,b,c){this.a=a +this.b=b +this.c=c}, +Yl:function Yl(a,b,c){this.a=a +this.b=b +this.c=c}, +Ym:function Ym(a,b,c){this.a=a +this.b=b +this.c=c}, +Hk:function Hk(a){this.a=a}, +Yn:function Yn(a){this.a=a}, +Hl:function Hl(a){this.a=a}, +pM:function pM(a,b){this.a=a +this.$ti=b}, +uj:function uj(){}, +a4R:function a4R(a,b,c){this.a=a +this.b=b +this.c=c}, +bT:function bT(a,b,c){this.a=a +this.b=b +this.$ti=c}, +tf:function tf(a,b){this.a=a +this.$ti=b}, +oP:function oP(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +d0:function d0(a,b){this.a=a +this.$ti=b}, +zk:function zk(){}, +fH:function fH(a,b,c){this.a=a +this.b=b +this.$ti=c}, +dW:function dW(a,b){this.a=a +this.$ti=b}, +NM:function NM(){}, +nw:function nw(a,b){this.a=a +this.$ti=b}, +B6:function B6(a,b,c,d,e){var _=this +_.a=a +_.c=b +_.d=c +_.e=d +_.f=e}, +agS:function agS(a){this.a=a}, +D6:function D6(){}, +and:function and(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +C3:function C3(){}, +NP:function NP(a,b,c){this.a=a +this.b=b +this.c=c}, +Sl:function Sl(a){this.a=a}, +OL:function OL(a){this.a=a}, +Ad:function Ad(a,b){this.a=a +this.b=b}, +Iq:function Iq(a){this.a=a +this.b=null}, +n4:function n4(){}, +LG:function LG(){}, +LH:function LH(){}, +RQ:function RQ(){}, +RC:function RC(){}, +tV:function tV(a,b){this.a=a +this.b=b}, +Qk:function Qk(a){this.a=a}, +fs:function fs(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +aaV:function aaV(a,b){this.a=a +this.b=b}, +aaU:function aaU(a){this.a=a}, +abr:function abr(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null}, +bs:function bs(a,b){this.a=a +this.$ti=b}, +eK:function eK(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +bf:function bf(a,b){this.a=a +this.$ti=b}, +dl:function dl(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +et:function et(a,b){this.a=a +this.$ti=b}, +O7:function O7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=null +_.$ti=d}, +B8:function B8(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +qv:function qv(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +aBD:function aBD(a){this.a=a}, +aBE:function aBE(a){this.a=a}, +aBF:function aBF(a){this.a=a}, +oX:function oX(){}, +Ya:function Ya(){}, +Yb:function Yb(){}, +Yc:function Yc(){}, +nD:function nD(a,b){var _=this +_.a=a +_.b=b +_.e=_.d=_.c=null}, +xd:function xd(a){this.b=a}, +SU:function SU(a,b,c){this.a=a +this.b=b +this.c=c}, +F4:function F4(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +w8:function w8(a,b){this.a=a +this.c=b}, +ZT:function ZT(a,b,c){this.a=a +this.b=b +this.c=c}, +ZU:function ZU(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +b2K(a){throw A.dQ(A.aIB(a),new Error())}, +a(){throw A.dQ(A.abg(""),new Error())}, +bw(){throw A.dQ(A.aUE(""),new Error())}, +aA(){throw A.dQ(A.aIB(""),new Error())}, +c9(){var s=new A.TG("") +return s.b=s}, +kU(a){var s=new A.TG(a) +return s.b=s}, +td(a){var s=new A.atr(a) +return s.b=s}, +TG:function TG(a){this.a=a +this.b=null}, +atr:function atr(a){this.b=null +this.c=a}, +mI(a,b,c){}, +ic(a){return a}, +aVe(a){return new DataView(new ArrayBuffer(a))}, +aVf(a,b,c){A.mI(a,b,c) +return c==null?new DataView(a,b):new DataView(a,b,c)}, +aDD(a){return new Float32Array(a)}, +aVg(a){return new Float32Array(A.ic(a))}, +aVh(a,b,c){A.mI(a,b,c) +return new Float32Array(a,b,c)}, +aVi(a){return new Float64Array(a)}, +aVj(a,b,c){A.mI(a,b,c) +return new Float64Array(a,b,c)}, +aJ3(a){return new Int32Array(a)}, +aVk(a,b,c){A.mI(a,b,c) +return new Int32Array(a,b,c)}, +aVl(a){return new Int8Array(a)}, +aVm(a){return new Uint16Array(a)}, +aJ4(a){return new Uint8Array(a)}, +aVn(a,b,c){A.mI(a,b,c) +return c==null?new Uint8Array(a,b):new Uint8Array(a,b,c)}, +mH(a,b,c){if(a>>>0!==a||a>=c)throw A.e(A.a1V(b,a))}, +pb(a,b,c){var s +if(!(a>>>0!==a))if(b==null)s=a>c +else s=b>>>0!==b||a>b||b>c +else s=!0 +if(s)throw A.e(A.b1r(a,b,c)) +if(b==null)return c +return b}, +ve:function ve(){}, +qU:function qU(){}, +BV:function BV(){}, +a0b:function a0b(a){this.a=a}, +BQ:function BQ(){}, +vf:function vf(){}, +BU:function BU(){}, +hX:function hX(){}, +BR:function BR(){}, +BS:function BS(){}, +OA:function OA(){}, +BT:function BT(){}, +OB:function OB(){}, +BW:function BW(){}, +BX:function BX(){}, +BY:function BY(){}, +lK:function lK(){}, +GP:function GP(){}, +GQ:function GQ(){}, +GR:function GR(){}, +GS:function GS(){}, +aDU(a,b){var s=b.c +return s==null?b.c=A.IQ(a,"av",[b.x]):s}, +aJS(a){var s=a.w +if(s===6||s===7)return A.aJS(a.x) +return s===11||s===12}, +aWu(a){return a.as}, +aFs(a,b){var s,r=b.length +for(s=0;s") +for(r=1;r=0)p+=" "+r[q];++q}return p+"})"}, +aMe(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=", ",a0=null +if(a3!=null){s=a3.length +if(a2==null)a2=A.b([],t.s) +else a0=a2.length +r=a2.length +for(q=s;q>0;--q)a2.push("T"+(r+q)) +for(p=t.X,o="<",n="",q=0;q0){c+=b+"[" +for(b="",q=0;q0){c+=b+"{" +for(b="",q=0;q "+d}, +id(a,b){var s,r,q,p,o,n,m=a.w +if(m===5)return"erased" +if(m===2)return"dynamic" +if(m===3)return"void" +if(m===1)return"Never" +if(m===4)return"any" +if(m===6){s=a.x +r=A.id(s,b) +q=s.w +return(q===11||q===12?"("+r+")":r)+"?"}if(m===7)return"FutureOr<"+A.id(a.x,b)+">" +if(m===8){p=A.b0y(a.x) +o=a.y +return o.length>0?p+("<"+A.aMz(o,b)+">"):p}if(m===10)return A.b0f(a,b) +if(m===11)return A.aMe(a,b,null) +if(m===12)return A.aMe(a.x,b,a.y) +if(m===13){n=a.x +return b[b.length-1-n]}return"?"}, +b0y(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +aZt(a,b){var s=a.tR[b] +while(typeof s=="string")s=a.tR[s] +return s}, +aZs(a,b){var s,r,q,p,o,n=a.eT,m=n[b] +if(m==null)return A.azJ(a,b,!1) +else if(typeof m=="number"){s=m +r=A.IR(a,5,"#") +q=A.azX(s) +for(p=0;p0)p+="<"+A.IP(c)+">" +s=a.eC.get(p) +if(s!=null)return s +r=new A.jF(null,null) +r.w=8 +r.x=b +r.y=c +if(c.length>0)r.c=c[0] +r.as=p +q=A.p3(a,r) +a.eC.set(p,q) +return q}, +aEI(a,b,c){var s,r,q,p,o,n +if(b.w===9){s=b.x +r=b.y.concat(c)}else{r=c +s=b}q=s.as+(";<"+A.IP(r)+">") +p=a.eC.get(q) +if(p!=null)return p +o=new A.jF(null,null) +o.w=9 +o.x=s +o.y=r +o.as=q +n=A.p3(a,o) +a.eC.set(q,n) +return n}, +aLG(a,b,c){var s,r,q="+"+(b+"("+A.IP(c)+")"),p=a.eC.get(q) +if(p!=null)return p +s=new A.jF(null,null) +s.w=10 +s.x=b +s.y=c +s.as=q +r=A.p3(a,s) +a.eC.set(q,r) +return r}, +aLD(a,b,c){var s,r,q,p,o,n=b.as,m=c.a,l=m.length,k=c.b,j=k.length,i=c.c,h=i.length,g="("+A.IP(m) +if(j>0){s=l>0?",":"" +g+=s+"["+A.IP(k)+"]"}if(h>0){s=l>0?",":"" +g+=s+"{"+A.aZl(i)+"}"}r=n+(g+")") +q=a.eC.get(r) +if(q!=null)return q +p=new A.jF(null,null) +p.w=11 +p.x=b +p.y=c +p.as=r +o=A.p3(a,p) +a.eC.set(r,o) +return o}, +aEJ(a,b,c,d){var s,r=b.as+("<"+A.IP(c)+">"),q=a.eC.get(r) +if(q!=null)return q +s=A.aZn(a,b,c,r,d) +a.eC.set(r,s) +return s}, +aZn(a,b,c,d,e){var s,r,q,p,o,n,m,l +if(e){s=c.length +r=A.azX(s) +for(q=0,p=0;p0){n=A.pe(a,b,r,0) +m=A.y2(a,c,r,0) +return A.aEJ(a,n,m,c!==m)}}l=new A.jF(null,null) +l.w=12 +l.x=b +l.y=c +l.as=d +return A.p3(a,l)}, +aLh(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, +aLj(a){var s,r,q,p,o,n,m,l=a.r,k=a.s +for(s=l.length,r=0;r=48&&q<=57)r=A.aYP(r+1,q,l,k) +else if((((q|32)>>>0)-97&65535)<26||q===95||q===36||q===124)r=A.aLi(a,r,l,k,!1) +else if(q===46)r=A.aLi(a,r,l,k,!0) +else{++r +switch(q){case 44:break +case 58:k.push(!1) +break +case 33:k.push(!0) +break +case 59:k.push(A.tl(a.u,a.e,k.pop())) +break +case 94:k.push(A.aZp(a.u,k.pop())) +break +case 35:k.push(A.IR(a.u,5,"#")) +break +case 64:k.push(A.IR(a.u,2,"@")) +break +case 126:k.push(A.IR(a.u,3,"~")) +break +case 60:k.push(a.p) +a.p=k.length +break +case 62:A.aYR(a,k) +break +case 38:A.aYQ(a,k) +break +case 63:p=a.u +k.push(A.aLF(p,A.tl(p,a.e,k.pop()),a.n)) +break +case 47:p=a.u +k.push(A.aLE(p,A.tl(p,a.e,k.pop()),a.n)) +break +case 40:k.push(-3) +k.push(a.p) +a.p=k.length +break +case 41:A.aYO(a,k) +break +case 91:k.push(a.p) +a.p=k.length +break +case 93:o=k.splice(a.p) +A.aLk(a.u,a.e,o) +a.p=k.pop() +k.push(o) +k.push(-1) +break +case 123:k.push(a.p) +a.p=k.length +break +case 125:o=k.splice(a.p) +A.aYT(a.u,a.e,o) +a.p=k.pop() +k.push(o) +k.push(-2) +break +case 43:n=l.indexOf("(",r) +k.push(l.substring(r,n)) +k.push(-4) +k.push(a.p) +a.p=k.length +r=n+1 +break +default:throw"Bad character "+q}}}m=k.pop() +return A.tl(a.u,a.e,m)}, +aYP(a,b,c,d){var s,r,q=b-48 +for(s=c.length;a=48&&r<=57))break +q=q*10+(r-48)}d.push(q) +return a}, +aLi(a,b,c,d,e){var s,r,q,p,o,n,m=b+1 +for(s=c.length;m>>0)-97&65535)<26||r===95||r===36||r===124))q=r>=48&&r<=57 +else q=!0 +if(!q)break}}p=c.substring(b,m) +if(e){s=a.u +o=a.e +if(o.w===9)o=o.x +n=A.aZt(s,o.x)[p] +if(n==null)A.a0('No "'+p+'" in "'+A.aWu(o)+'"') +d.push(A.IS(s,o,n))}else d.push(p) +return m}, +aYR(a,b){var s,r=a.u,q=A.aLg(a,b),p=b.pop() +if(typeof p=="string")b.push(A.IQ(r,p,q)) +else{s=A.tl(r,a.e,p) +switch(s.w){case 11:b.push(A.aEJ(r,s,q,a.n)) +break +default:b.push(A.aEI(r,s,q)) +break}}}, +aYO(a,b){var s,r,q,p=a.u,o=b.pop(),n=null,m=null +if(typeof o=="number")switch(o){case-1:n=b.pop() +break +case-2:m=b.pop() +break +default:b.push(o) +break}else b.push(o) +s=A.aLg(a,b) +o=b.pop() +switch(o){case-3:o=b.pop() +if(n==null)n=p.sEA +if(m==null)m=p.sEA +r=A.tl(p,a.e,o) +q=new A.VB() +q.a=s +q.b=n +q.c=m +b.push(A.aLD(p,r,q)) +return +case-4:b.push(A.aLG(p,b.pop(),s)) +return +default:throw A.e(A.ik("Unexpected state under `()`: "+A.k(o)))}}, +aYQ(a,b){var s=b.pop() +if(0===s){b.push(A.IR(a.u,1,"0&")) +return}if(1===s){b.push(A.IR(a.u,4,"1&")) +return}throw A.e(A.ik("Unexpected extended operation "+A.k(s)))}, +aLg(a,b){var s=b.splice(a.p) +A.aLk(a.u,a.e,s) +a.p=b.pop() +return s}, +tl(a,b,c){if(typeof c=="string")return A.IQ(a,c,a.sEA) +else if(typeof c=="number"){b.toString +return A.aYS(a,b,c)}else return c}, +aLk(a,b,c){var s,r=c.length +for(s=0;sn)return!1 +m=n-o +l=s.b +k=r.b +j=l.length +i=k.length +if(o+j=d)return!1 +a1=f[b] +b+=3 +if(a00?new Array(q):v.typeUniverse.sEA +for(o=0;o0?new Array(a):v.typeUniverse.sEA}, +jF:function jF(a,b){var _=this +_.a=a +_.b=b +_.r=_.f=_.d=_.c=null +_.w=0 +_.as=_.Q=_.z=_.y=_.x=null}, +VB:function VB(){this.c=this.b=this.a=null}, +IM:function IM(a){this.a=a}, +Va:function Va(){}, +IN:function IN(a){this.a=a}, +b1P(a,b){var s,r +if(B.c.bz(a,"Digit"))return a.charCodeAt(5) +s=b.charCodeAt(0) +if(b.length<=1)r=!(s>=32&&s<=127) +else r=!0 +if(r){r=B.li.h(0,a) +return r==null?null:r.charCodeAt(0)}if(!(s>=$.aQ1()&&s<=$.aQ2()))r=s>=$.aQb()&&s<=$.aQc() +else r=!0 +if(r)return b.toLowerCase().charCodeAt(0) +return null}, +aZe(a){var s=B.li.gj3(B.li),r=A.w(t.S,t.N) +r.UP(r,s.jV(s,new A.ayO(),t.q9)) +return new A.ayN(a,r)}, +b0x(a){var s,r,q,p,o=a.Zw(),n=A.w(t.N,t.S) +for(s=a.a,r=0;r=2)return null +return a.toLowerCase().charCodeAt(0)}, +ayN:function ayN(a,b){this.a=a +this.b=b +this.c=0}, +ayO:function ayO(){}, +Bq:function Bq(a){this.a=a}, +aYd(){var s,r,q +if(self.scheduleImmediate!=null)return A.b0G() +if(self.MutationObserver!=null&&self.document!=null){s={} +r=self.document.createElement("div") +q=self.document.createElement("span") +s.a=null +new self.MutationObserver(A.tA(new A.aov(s),1)).observe(r,{childList:true}) +return new A.aou(s,r,q)}else if(self.setImmediate!=null)return A.b0H() +return A.b0I()}, +aYe(a){self.scheduleImmediate(A.tA(new A.aow(a),0))}, +aYf(a){self.setImmediate(A.tA(new A.aox(a),0))}, +aYg(a){A.aEb(B.F,a)}, +aEb(a,b){var s=B.f.fh(a.a,1000) +return A.aZg(s<0?0:s,b)}, +aKx(a,b){var s=B.f.fh(a.a,1000) +return A.aZh(s<0?0:s,b)}, +aZg(a,b){var s=new A.IJ(!0) +s.a67(a,b) +return s}, +aZh(a,b){var s=new A.IJ(!1) +s.a68(a,b) +return s}, +H(a){return new A.Th(new A.au($.aq,a.i("au<0>")),a.i("Th<0>"))}, +G(a,b){a.$2(0,null) +b.b=!0 +return b.a}, +v(a,b){A.aM0(a,b)}, +F(a,b){b.hL(0,a)}, +E(a,b){b.ou(A.a1(a),A.aH(a))}, +aM0(a,b){var s,r,q=new A.aAl(b),p=new A.aAm(b) +if(a instanceof A.au)a.Tu(q,p,t.z) +else{s=t.z +if(t.L0.b(a))a.hZ(q,p,s) +else{r=new A.au($.aq,t.LR) +r.a=8 +r.c=a +r.Tu(q,p,s)}}}, +B(a){var s=function(b,c){return function(d,e){while(true){try{b(d,e) +break}catch(r){e=r +d=c}}}}(a,1) +return $.aq.KJ(new A.aBf(s))}, +k_(a,b,c){var s,r,q,p +if(b===0){s=c.c +if(s!=null)s.nY(null) +else{s=c.a +s===$&&A.a() +s.aO(0)}return}else if(b===1){s=c.c +if(s!=null){r=A.a1(a) +q=A.aH(a) +s.hd(new A.da(r,q))}else{s=A.a1(a) +r=A.aH(a) +q=c.a +q===$&&A.a() +q.hh(s,r) +c.a.aO(0)}return}if(a instanceof A.Gv){if(c.c!=null){b.$2(2,null) +return}s=a.b +if(s===0){s=a.a +r=c.a +r===$&&A.a() +r.E(0,s) +A.dx(new A.aAj(c,b)) +return}else if(s===1){p=a.a +s=c.a +s===$&&A.a() +s.alN(0,p,!1).bo(new A.aAk(c,b),t.P) +return}}A.aM0(a,b)}, +aMG(a){var s=a.a +s===$&&A.a() +return new A.df(s,A.n(s).i("df<1>"))}, +aYh(a,b){var s=new A.Tj(b.i("Tj<0>")) +s.a64(a,b) +return s}, +aMk(a,b){return A.aYh(a,b)}, +aYG(a){return new A.Gv(a,1)}, +aLe(a){return new A.Gv(a,0)}, +aLA(a,b,c){return 0}, +a2Y(a){var s +if(t.Lt.b(a)){s=a.gtg() +if(s!=null)return s}return B.dF}, +a8P(a,b){var s=new A.au($.aq,b.i("au<0>")) +A.co(B.F,new A.a8S(a,s)) +return s}, +aU9(a,b){var s=new A.au($.aq,b.i("au<0>")) +A.dx(new A.a8R(a,s)) +return s}, +dc(a,b){var s=a==null?b.a(a):a,r=new A.au($.aq,b.i("au<0>")) +r.hD(s) +return r}, +N6(a,b,c){var s +if(b==null&&!c.b(null))throw A.e(A.ij(null,"computation","The type parameter is not nullable")) +s=new A.au($.aq,c.i("au<0>")) +A.co(a,new A.a8Q(b,s,c)) +return s}, +lA(a,b){var s,r,q,p,o,n,m,l,k,j,i={},h=null,g=!1,f=new A.au($.aq,b.i("au>")) +i.a=null +i.b=0 +i.c=i.d=null +s=new A.a8U(i,h,g,f) +try{for(n=J.bb(a),m=t.P;n.u();){r=n.gN(n) +q=i.b +r.hZ(new A.a8T(i,q,f,b,h,g),s,m);++i.b}n=i.b +if(n===0){n=f +n.nY(A.b([],b.i("D<0>"))) +return n}i.a=A.bz(n,null,!1,b.i("0?"))}catch(l){p=A.a1(l) +o=A.aH(l) +if(i.b===0||g){n=f +m=p +k=o +j=A.JM(m,k) +m=new A.da(m,k==null?A.a2Y(m):k) +n.nW(m) +return n}else{i.d=p +i.c=o}}return f}, +JM(a,b){if($.aq===B.aE)return null +return null}, +a1O(a,b){if($.aq!==B.aE)A.JM(a,b) +if(b==null)if(t.Lt.b(a)){b=a.gtg() +if(b==null){A.aDL(a,B.dF) +b=B.dF}}else b=B.dF +else if(t.Lt.b(a))A.aDL(a,b) +return new A.da(a,b)}, +aYA(a,b,c){var s=new A.au(b,c.i("au<0>")) +s.a=8 +s.c=a +return s}, +iS(a,b){var s=new A.au($.aq,b.i("au<0>")) +s.a=8 +s.c=a +return s}, +asc(a,b,c){var s,r,q,p={},o=p.a=a +while(s=o.a,(s&4)!==0){o=o.c +p.a=o}if(o===b){s=A.aKc() +b.nW(new A.da(new A.ii(!0,o,null,"Cannot complete a future with itself"),s)) +return}r=b.a&1 +s=o.a=s|r +if((s&24)===0){q=b.c +b.a=b.a&1|4 +b.c=o +o.RK(q) +return}if(!c)if(b.c==null)o=(s&16)===0||r!==0 +else o=!1 +else o=!0 +if(o){q=b.uo() +b.xO(p.a) +A.ta(b,q) +return}b.a^=2 +A.y1(null,null,b.b,new A.asd(p,b))}, +ta(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a +for(s=t.L0;;){r={} +q=e.a +p=(q&16)===0 +o=!p +if(b==null){if(o&&(q&1)===0){e=e.c +A.y0(e.a,e.b)}return}r.a=b +n=b.a +for(e=b;n!=null;e=n,n=m){e.a=null +A.ta(f.a,e) +r.a=n +m=n.a}q=f.a +l=q.c +r.b=o +r.c=l +if(p){k=e.c +k=(k&1)!==0||(k&15)===8}else k=!0 +if(k){j=e.b.b +if(o){q=q.b===j +q=!(q||q)}else q=!1 +if(q){A.y0(l.a,l.b) +return}i=$.aq +if(i!==j)$.aq=j +else i=null +e=e.c +if((e&15)===8)new A.ask(r,f,o).$0() +else if(p){if((e&1)!==0)new A.asj(r,l).$0()}else if((e&2)!==0)new A.asi(f,r).$0() +if(i!=null)$.aq=i +e=r.c +if(s.b(e)){q=r.a.$ti +q=q.i("av<2>").b(e)||!q.y[1].b(e)}else q=!1 +if(q){h=r.a.b +if(e instanceof A.au)if((e.a&24)!==0){g=h.c +h.c=null +b=h.yS(g) +h.a=e.a&30|h.a&1 +h.c=e.c +f.a=e +continue}else A.asc(e,h,!0) +else h.E5(e) +return}}h=r.a.b +g=h.c +h.c=null +b=h.yS(g) +e=r.b +q=r.c +if(!e){h.a=8 +h.c=q}else{h.a=h.a&1|16 +h.c=q}f.a=h +e=h}}, +aMt(a,b){if(t.Hg.b(a))return b.KJ(a) +if(t.C_.b(a))return a +throw A.e(A.ij(a,"onError",u.w))}, +b07(){var s,r +for(s=$.xZ;s!=null;s=$.xZ){$.JO=null +r=s.b +$.xZ=r +if(r==null)$.JN=null +s.a.$0()}}, +b0n(){$.aF_=!0 +try{A.b07()}finally{$.JO=null +$.aF_=!1 +if($.xZ!=null)$.aFT().$1(A.aMO())}}, +aMD(a){var s=new A.Ti(a),r=$.JN +if(r==null){$.xZ=$.JN=s +if(!$.aF_)$.aFT().$1(A.aMO())}else $.JN=r.b=s}, +b0j(a){var s,r,q,p=$.xZ +if(p==null){A.aMD(a) +$.JO=$.JN +return}s=new A.Ti(a) +r=$.JO +if(r==null){s.b=p +$.xZ=$.JO=s}else{q=r.b +s.b=q +$.JO=r.b=s +if(q==null)$.JN=s}}, +dx(a){var s=null,r=$.aq +if(B.aE===r){A.y1(s,s,B.aE,a) +return}A.y1(s,s,r,r.Hr(a))}, +aXh(a,b){var s=null,r=b.i("p2<0>"),q=new A.p2(s,s,s,s,r) +a.hZ(new A.alK(q,b),new A.alL(q),t.P) +return new A.df(q,r.i("df<1>"))}, +b5w(a){return new A.p1(A.mK(a,"stream",t.K))}, +rP(a,b,c,d,e){return d?new A.p2(b,null,c,a,e.i("p2<0>")):new A.iP(b,null,c,a,e.i("iP<0>"))}, +aXg(a,b,c,d){return c?new A.l0(b,a,d.i("l0<0>")):new A.kS(b,a,d.i("kS<0>"))}, +a1P(a){var s,r,q +if(a==null)return +try{a.$0()}catch(q){s=A.a1(q) +r=A.aH(q) +A.y0(s,r)}}, +aYn(a,b,c,d,e,f){var s=$.aq,r=e?1:0,q=c!=null?32:0,p=A.ap2(s,b),o=A.aEq(s,c),n=d==null?A.aMN():d +return new A.oI(a,p,o,n,s,r|q,f.i("oI<0>"))}, +aYc(a){return new A.ao3(a)}, +ap2(a,b){return b==null?A.b0J():b}, +aEq(a,b){if(b==null)b=A.b0K() +if(t.hK.b(b))return a.KJ(b) +if(t.mX.b(b))return b +throw A.e(A.bF("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",null))}, +b0a(a){}, +b0c(a,b){A.y0(a,b)}, +b0b(){}, +aL3(a,b){var s=new A.wV($.aq,b.i("wV<0>")) +A.dx(s.gRl()) +if(a!=null)s.c=a +return s}, +co(a,b){var s=$.aq +if(s===B.aE)return A.aEb(a,b) +return A.aEb(a,s.Hr(b))}, +aKw(a,b){var s=$.aq +if(s===B.aE)return A.aKx(a,b) +return A.aKx(a,s.amf(b,t.qe))}, +y0(a,b){A.b0j(new A.aB8(a,b))}, +aMw(a,b,c,d){var s,r=$.aq +if(r===c)return d.$0() +$.aq=c +s=r +try{r=d.$0() +return r}finally{$.aq=s}}, +aMy(a,b,c,d,e){var s,r=$.aq +if(r===c)return d.$1(e) +$.aq=c +s=r +try{r=d.$1(e) +return r}finally{$.aq=s}}, +aMx(a,b,c,d,e,f){var s,r=$.aq +if(r===c)return d.$2(e,f) +$.aq=c +s=r +try{r=d.$2(e,f) +return r}finally{$.aq=s}}, +y1(a,b,c,d){if(B.aE!==c){d=c.Hr(d) +d=d}A.aMD(d)}, +aov:function aov(a){this.a=a}, +aou:function aou(a,b,c){this.a=a +this.b=b +this.c=c}, +aow:function aow(a){this.a=a}, +aox:function aox(a){this.a=a}, +IJ:function IJ(a){this.a=a +this.b=null +this.c=0}, +azw:function azw(a,b){this.a=a +this.b=b}, +azv:function azv(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Th:function Th(a,b){this.a=a +this.b=!1 +this.$ti=b}, +aAl:function aAl(a){this.a=a}, +aAm:function aAm(a){this.a=a}, +aBf:function aBf(a){this.a=a}, +aAj:function aAj(a,b){this.a=a +this.b=b}, +aAk:function aAk(a,b){this.a=a +this.b=b}, +Tj:function Tj(a){var _=this +_.a=$ +_.b=!1 +_.c=null +_.$ti=a}, +aoz:function aoz(a){this.a=a}, +aoA:function aoA(a){this.a=a}, +aoC:function aoC(a){this.a=a}, +aoD:function aoD(a,b){this.a=a +this.b=b}, +aoB:function aoB(a,b){this.a=a +this.b=b}, +aoy:function aoy(a){this.a=a}, +Gv:function Gv(a,b){this.a=a +this.b=b}, +mE:function mE(a){var _=this +_.a=a +_.e=_.d=_.c=_.b=null}, +jZ:function jZ(a,b){this.a=a +this.$ti=b}, +da:function da(a,b){this.a=a +this.b=b}, +cT:function cT(a,b){this.a=a +this.$ti=b}, +t5:function t5(a,b,c,d,e,f,g){var _=this +_.ay=0 +_.CW=_.ch=null +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.r=_.f=null +_.$ti=g}, +oG:function oG(){}, +l0:function l0(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.r=_.f=_.e=_.d=null +_.$ti=c}, +ayP:function ayP(a,b){this.a=a +this.b=b}, +ayR:function ayR(a,b,c){this.a=a +this.b=b +this.c=c}, +ayQ:function ayQ(a){this.a=a}, +kS:function kS(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.r=_.f=_.e=_.d=null +_.$ti=c}, +a8S:function a8S(a,b){this.a=a +this.b=b}, +a8R:function a8R(a,b){this.a=a +this.b=b}, +a8Q:function a8Q(a,b,c){this.a=a +this.b=b +this.c=c}, +a8U:function a8U(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a8T:function a8T(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +Fs:function Fs(){}, +bB:function bB(a,b){this.a=a +this.$ti=b}, +kV:function kV(a,b,c,d,e){var _=this +_.a=null +_.b=a +_.c=b +_.d=c +_.e=d +_.$ti=e}, +au:function au(a,b){var _=this +_.a=0 +_.b=a +_.c=null +_.$ti=b}, +as9:function as9(a,b){this.a=a +this.b=b}, +ash:function ash(a,b){this.a=a +this.b=b}, +ase:function ase(a){this.a=a}, +asf:function asf(a){this.a=a}, +asg:function asg(a,b,c){this.a=a +this.b=b +this.c=c}, +asd:function asd(a,b){this.a=a +this.b=b}, +asb:function asb(a,b){this.a=a +this.b=b}, +asa:function asa(a,b){this.a=a +this.b=b}, +ask:function ask(a,b,c){this.a=a +this.b=b +this.c=c}, +asl:function asl(a,b){this.a=a +this.b=b}, +asm:function asm(a){this.a=a}, +asj:function asj(a,b){this.a=a +this.b=b}, +asi:function asi(a,b){this.a=a +this.b=b}, +Ti:function Ti(a){this.a=a +this.b=null}, +cs:function cs(){}, +alK:function alK(a,b){this.a=a +this.b=b}, +alL:function alL(a){this.a=a}, +alO:function alO(a){this.a=a}, +alM:function alM(a,b){this.a=a +this.b=b}, +alN:function alN(a,b){this.a=a +this.b=b}, +DX:function DX(){}, +RE:function RE(){}, +ts:function ts(){}, +ayK:function ayK(a){this.a=a}, +ayJ:function ayJ(a){this.a=a}, +a_0:function a_0(){}, +Tk:function Tk(){}, +iP:function iP(a,b,c,d,e){var _=this +_.a=null +_.b=0 +_.c=null +_.d=a +_.e=b +_.f=c +_.r=d +_.$ti=e}, +p2:function p2(a,b,c,d,e){var _=this +_.a=null +_.b=0 +_.c=null +_.d=a +_.e=b +_.f=c +_.r=d +_.$ti=e}, +df:function df(a,b){this.a=a +this.$ti=b}, +oI:function oI(a,b,c,d,e,f,g){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.r=_.f=null +_.$ti=g}, +ST:function ST(){}, +ao3:function ao3(a){this.a=a}, +ao2:function ao2(a){this.a=a}, +ZR:function ZR(a,b,c){this.c=a +this.a=b +this.b=c}, +iQ:function iQ(){}, +ap4:function ap4(a,b,c){this.a=a +this.b=b +this.c=c}, +ap3:function ap3(a){this.a=a}, +xG:function xG(){}, +UC:function UC(){}, +mq:function mq(a){this.b=a +this.a=null}, +wR:function wR(a,b){this.b=a +this.c=b +this.a=null}, +arb:function arb(){}, +xp:function xp(){this.a=0 +this.c=this.b=null}, +avx:function avx(a,b){this.a=a +this.b=b}, +wV:function wV(a,b){var _=this +_.a=1 +_.b=a +_.c=null +_.$ti=b}, +p1:function p1(a){this.a=null +this.b=a +this.c=!1}, +G1:function G1(a){this.$ti=a}, +tj:function tj(a,b,c){this.a=a +this.b=b +this.$ti=c}, +auT:function auT(a,b){this.a=a +this.b=b}, +GN:function GN(a,b,c,d,e){var _=this +_.a=null +_.b=0 +_.c=null +_.d=a +_.e=b +_.f=c +_.r=d +_.$ti=e}, +Ga:function Ga(){}, +x_:function x_(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=null +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.r=_.f=null +_.$ti=g}, +GE:function GE(a,b,c){this.b=a +this.a=b +this.$ti=c}, +aAa:function aAa(){}, +aB8:function aB8(a,b){this.a=a +this.b=b}, +axC:function axC(){}, +axG:function axG(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +axD:function axD(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +axE:function axE(a,b){this.a=a +this.b=b}, +axF:function axF(a,b,c){this.a=a +this.b=b +this.c=c}, +h9(a,b,c,d,e){if(c==null)if(b==null){if(a==null)return new A.mv(d.i("@<0>").bR(e).i("mv<1,2>")) +b=A.aF7()}else{if(A.aMV()===b&&A.aMU()===a)return new A.oO(d.i("@<0>").bR(e).i("oO<1,2>")) +if(a==null)a=A.aF6()}else{if(b==null)b=A.aF7() +if(a==null)a=A.aF6()}return A.aYo(a,b,c,d,e)}, +aEt(a,b){var s=a[b] +return s===a?null:s}, +aEv(a,b,c){if(c==null)a[b]=a +else a[b]=c}, +aEu(){var s=Object.create(null) +A.aEv(s,"",s) +delete s[""] +return s}, +aYo(a,b,c,d,e){var s=c!=null?c:new A.aqY(d) +return new A.FL(a,b,s,d.i("@<0>").bR(e).i("FL<1,2>"))}, +aDw(a,b,c,d){if(b==null){if(a==null)return new A.fs(c.i("@<0>").bR(d).i("fs<1,2>")) +b=A.aF7()}else{if(A.aMV()===b&&A.aMU()===a)return new A.B8(c.i("@<0>").bR(d).i("B8<1,2>")) +if(a==null)a=A.aF6()}return A.aYJ(a,b,null,c,d)}, +ab(a,b,c){return A.aN5(a,new A.fs(b.i("@<0>").bR(c).i("fs<1,2>")))}, +w(a,b){return new A.fs(a.i("@<0>").bR(b).i("fs<1,2>"))}, +aYJ(a,b,c,d,e){return new A.Gz(a,b,new A.au1(d),d.i("@<0>").bR(e).i("Gz<1,2>"))}, +dj(a){return new A.oL(a.i("oL<0>"))}, +aEw(){var s=Object.create(null) +s[""]=s +delete s[""] +return s}, +ks(a){return new A.hw(a.i("hw<0>"))}, +aP(a){return new A.hw(a.i("hw<0>"))}, +cn(a,b){return A.b1y(a,new A.hw(b.i("hw<0>")))}, +aEx(){var s=Object.create(null) +s[""]=s +delete s[""] +return s}, +cl(a,b,c){var s=new A.oQ(a,b,c.i("oQ<0>")) +s.c=a.e +return s}, +b_8(a,b){return J.d(a,b)}, +b_9(a){return J.C(a)}, +aIo(a){var s=J.bb(a) +if(s.u())return s.gN(s) +return null}, +jl(a){var s,r +if(t.Ee.b(a)){if(a.length===0)return null +return B.b.gae(a)}s=J.bb(a) +if(!s.u())return null +do r=s.gN(s) +while(s.u()) +return r}, +aIn(a,b){var s +A.eg(b,"index") +if(t.Ee.b(a)){if(b>=a.length)return null +return J.Ki(a,b)}s=J.bb(a) +do if(!s.u())return null +while(--b,b>=0) +return s.gN(s)}, +aII(a,b,c){var s=A.aDw(null,null,b,c) +a.aj(0,new A.abs(s,b,c)) +return s}, +lH(a,b,c){var s=A.aDw(null,null,b,c) +s.O(0,a) +return s}, +qA(a,b){var s,r=A.ks(b) +for(s=J.bb(a);s.u();)r.E(0,b.a(s.gN(s))) +return r}, +eu(a,b){var s=A.ks(b) +s.O(0,a) +return s}, +aYK(a,b){return new A.xa(a,a.a,a.c,b.i("xa<0>"))}, +aUI(a,b){var s=t.b8 +return J.a2l(s.a(a),s.a(b))}, +abI(a){var s,r +if(A.aFn(a))return"{...}" +s=new A.cK("") +try{r={} +$.tD.push(a) +s.a+="{" +r.a=!0 +J.pl(a,new A.abJ(r,s)) +s.a+="}"}finally{$.tD.pop()}r=s.a +return r.charCodeAt(0)==0?r:r}, +lI(a,b){return new A.Bm(A.bz(A.aUJ(a),null,!1,b.i("0?")),b.i("Bm<0>"))}, +aUJ(a){if(a==null||a<8)return 8 +else if((a&a-1)>>>0!==0)return A.aIJ(a) +return a}, +aIJ(a){var s +a=(a<<1>>>0)-1 +for(;;a=s){s=(a&a-1)>>>0 +if(s===0)return a}}, +b_d(a,b){return J.a2l(a,b)}, +aM5(a){if(a.i("m(0,0)").b(A.aMS()))return A.aMS() +return A.b11()}, +aKb(a,b){var s=A.aM5(a) +return new A.DR(s,a.i("@<0>").bR(b).i("DR<1,2>"))}, +alu(a,b,c){var s=a==null?A.aM5(c):a +return new A.w4(s,b,c.i("w4<0>"))}, +mv:function mv(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +ass:function ass(a){this.a=a}, +oO:function oO(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +FL:function FL(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=d}, +aqY:function aqY(a){this.a=a}, +tb:function tb(a,b){this.a=a +this.$ti=b}, +x3:function x3(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +Gz:function Gz(a,b,c,d){var _=this +_.w=a +_.x=b +_.y=c +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=d}, +au1:function au1(a){this.a=a}, +oL:function oL(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +hu:function hu(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +hw:function hw(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +au2:function au2(a){this.a=a +this.c=this.b=null}, +oQ:function oQ(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.$ti=c}, +abs:function abs(a,b,c){this.a=a +this.b=b +this.c=c}, +qB:function qB(a){var _=this +_.b=_.a=0 +_.c=null +_.$ti=a}, +xa:function xa(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.e=!1 +_.$ti=d}, +ix:function ix(){}, +a_:function a_(){}, +aU:function aU(){}, +abH:function abH(a){this.a=a}, +abJ:function abJ(a,b){this.a=a +this.b=b}, +GD:function GD(a,b){this.a=a +this.$ti=b}, +Wq:function Wq(a,b,c){var _=this +_.a=a +_.b=b +_.c=null +_.$ti=c}, +a0a:function a0a(){}, +Bv:function Bv(){}, +mk:function mk(a,b){this.a=a +this.$ti=b}, +FS:function FS(){}, +FR:function FR(a,b,c){var _=this +_.c=a +_.d=b +_.b=_.a=null +_.$ti=c}, +FT:function FT(a){this.b=this.a=null +this.$ti=a}, +zV:function zV(a,b){this.a=a +this.b=0 +this.$ti=b}, +UQ:function UQ(a,b,c){var _=this +_.a=a +_.b=b +_.c=null +_.$ti=c}, +Bm:function Bm(a,b){var _=this +_.a=a +_.d=_.c=_.b=0 +_.$ti=b}, +Wg:function Wg(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=null +_.$ti=e}, +iH:function iH(){}, +xB:function xB(){}, +Il:function Il(){}, +fZ:function fZ(a,b){var _=this +_.a=a +_.c=_.b=null +_.$ti=b}, +fY:function fY(a,b,c){var _=this +_.d=a +_.a=b +_.c=_.b=null +_.$ti=c}, +p0:function p0(){}, +DR:function DR(a,b){var _=this +_.d=null +_.e=a +_.c=_.b=_.a=0 +_.$ti=b}, +jY:function jY(){}, +mC:function mC(a,b){this.a=a +this.$ti=b}, +tr:function tr(a,b){this.a=a +this.$ti=b}, +Ij:function Ij(a,b){this.a=a +this.$ti=b}, +mD:function mD(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +Io:function Io(a,b,c,d){var _=this +_.e=null +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +tq:function tq(a,b,c,d){var _=this +_.e=null +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +w4:function w4(a,b,c){var _=this +_.d=null +_.e=a +_.f=b +_.c=_.b=_.a=0 +_.$ti=c}, +Ik:function Ik(){}, +Im:function Im(){}, +In:function In(){}, +IT:function IT(){}, +aMq(a,b){var s,r,q,p=null +try{p=JSON.parse(a)}catch(r){s=A.a1(r) +q=A.cI(String(s),null,null) +throw A.e(q)}q=A.aAv(p) +return q}, +aAv(a){var s +if(a==null)return null +if(typeof a!="object")return a +if(!Array.isArray(a))return new A.W5(a,Object.create(null)) +for(s=0;s>>2,l=3-(h&3) +for(s=f.$flags|0,r=c,q=0;r>>0 +m=(m<<8|p)&16777215;--l +if(l===0){o=g+1 +s&2&&A.aI(f) +f[g]=a.charCodeAt(m>>>18&63) +g=o+1 +f[o]=a.charCodeAt(m>>>12&63) +o=g+1 +f[g]=a.charCodeAt(m>>>6&63) +g=o+1 +f[o]=a.charCodeAt(m&63) +m=0 +l=3}}if(q>=0&&q<=255){if(e&&l<3){o=g+1 +n=o+1 +if(3-l===1){s&2&&A.aI(f) +f[g]=a.charCodeAt(m>>>2&63) +f[o]=a.charCodeAt(m<<4&63) +f[n]=61 +f[n+1]=61}else{s&2&&A.aI(f) +f[g]=a.charCodeAt(m>>>10&63) +f[o]=a.charCodeAt(m>>>4&63) +f[n]=a.charCodeAt(m<<2&63) +f[n+1]=61}return 0}return(m<<2|3-l)>>>0}for(r=c;r255)break;++r}throw A.e(A.ij(b,"Not a byte value at index "+r+": 0x"+B.f.lV(b[r],16),null))}, +aHQ(a){return $.aNX().h(0,a.toLowerCase())}, +aIx(a,b,c){return new A.B9(a,b)}, +b_b(a){return a.fB()}, +aYH(a,b){return new A.atU(a,[],A.b1a())}, +aYI(a,b,c){var s,r=new A.cK("") +A.aLf(a,r,b,c) +s=r.a +return s.charCodeAt(0)==0?s:s}, +aLf(a,b,c,d){var s=A.aYH(b,c) +s.CD(a)}, +aLU(a){switch(a){case 65:return"Missing extension byte" +case 67:return"Unexpected extension byte" +case 69:return"Invalid UTF-8 byte" +case 71:return"Overlong encoding" +case 73:return"Out of unicode range" +case 75:return"Encoded surrogate" +case 77:return"Unfinished UTF-8 octet sequence" +default:return""}}, +W5:function W5(a,b){this.a=a +this.b=b +this.c=null}, +atT:function atT(a){this.a=a}, +W6:function W6(a){this.a=a}, +x8:function x8(a,b,c){this.b=a +this.c=b +this.a=c}, +azW:function azW(){}, +azV:function azV(){}, +KF:function KF(){}, +a08:function a08(){}, +KH:function KH(a){this.a=a}, +a09:function a09(a,b){this.a=a +this.b=b}, +a07:function a07(){}, +KG:function KG(a,b){this.a=a +this.b=b}, +arw:function arw(a){this.a=a}, +ayv:function ayv(a){this.a=a}, +a35:function a35(){}, +KU:function KU(){}, +F9:function F9(a){this.a=0 +this.b=a}, +ap1:function ap1(a){this.c=null +this.a=0 +this.b=a}, +aoM:function aoM(){}, +aot:function aot(a,b){this.a=a +this.b=b}, +azT:function azT(a,b){this.a=a +this.b=b}, +a3z:function a3z(){}, +TB:function TB(a){this.a=a}, +TC:function TC(a,b){this.a=a +this.b=b +this.c=0}, +Lh:function Lh(){}, +ZA:function ZA(a,b,c){this.a=a +this.b=b +this.$ti=c}, +LI:function LI(){}, +c7:function c7(){}, +Gb:function Gb(a,b,c){this.a=a +this.b=b +this.$ti=c}, +pZ:function pZ(){}, +B9:function B9(a,b){this.a=a +this.b=b}, +NQ:function NQ(a,b){this.a=a +this.b=b}, +aaW:function aaW(){}, +NS:function NS(a){this.b=a}, +atS:function atS(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1}, +NR:function NR(a){this.a=a}, +atV:function atV(){}, +atW:function atW(a,b){this.a=a +this.b=b}, +atU:function atU(a,b,c){this.c=a +this.a=b +this.b=c}, +NX:function NX(){}, +NZ:function NZ(a){this.a=a}, +NY:function NY(a,b){this.a=a +this.b=b}, +W9:function W9(a){this.a=a}, +atX:function atX(a){this.a=a}, +kH:function kH(){}, +aqj:function aqj(a,b){this.a=a +this.b=b}, +ayM:function ayM(a,b){this.a=a +this.b=b}, +xI:function xI(){}, +tt:function tt(a){this.a=a}, +a0h:function a0h(a,b,c){this.a=a +this.b=b +this.c=c}, +azU:function azU(a,b,c){this.a=a +this.b=b +this.c=c}, +Ss:function Ss(){}, +St:function St(){}, +a0f:function a0f(a){this.b=this.a=0 +this.c=a}, +a0g:function a0g(a,b){var _=this +_.d=a +_.b=_.a=0 +_.c=b}, +ET:function ET(a){this.a=a}, +xS:function xS(a){this.a=a +this.b=16 +this.c=0}, +a1E:function a1E(){}, +b1S(a){return A.pi(a)}, +aD5(){return new A.Af(new WeakMap())}, +q2(a){if(A.pc(a)||typeof a=="number"||typeof a=="string"||a instanceof A.oX)A.MM(a)}, +MM(a){throw A.e(A.ij(a,"object","Expandos are not allowed on strings, numbers, bools, records or null"))}, +aZH(){if(typeof WeakRef=="function")return WeakRef +var s=function LeakRef(a){this._=a} +s.prototype={ +deref(){return this._}} +return s}, +h_(a,b){var s=A.ri(a,b) +if(s!=null)return s +throw A.e(A.cI(a,null,null))}, +aN2(a){var s=A.agT(a) +if(s!=null)return s +throw A.e(A.cI("Invalid double",a,null))}, +aTK(a,b){a=A.dQ(a,new Error()) +a.stack=b.k(0) +throw a}, +bz(a,b,c,d){var s,r=c?J.uR(a,d):J.B4(a,d) +if(a!==0&&b!=null)for(s=0;s")) +for(s=J.bb(a);s.u();)r.push(s.gN(s)) +if(b)return r +r.$flags=1 +return r}, +a6(a,b){var s,r +if(Array.isArray(a))return A.b(a.slice(0),b.i("D<0>")) +s=A.b([],b.i("D<0>")) +for(r=J.bb(a);r.u();)s.push(r.gN(r)) +return s}, +aIK(a,b,c,d){var s,r=c?J.uR(a,d):J.B4(a,d) +for(s=0;s0||c0)a=J.a2n(a,b) +s=A.a6(a,t.S) +return A.aJy(s)}, +aE3(a){return A.dn(a)}, +aXj(a,b,c){var s=a.length +if(b>=s)return"" +return A.aW3(a,b,c==null||c>s?s:c)}, +ck(a,b,c){return new A.nD(a,A.aDr(a,!1,b,c,!1,""))}, +b1R(a,b){return a==null?b==null:a===b}, +alP(a,b,c){var s=J.bb(b) +if(!s.u())return a +if(c.length===0){do a+=A.k(s.gN(s)) +while(s.u())}else{a+=A.k(s.gN(s)) +while(s.u())a=a+c+A.k(s.gN(s))}return a}, +kw(a,b){return new A.OH(a,b.gYO(),b.gau6(),b.gasT())}, +ank(){var s,r,q=A.aVZ() +if(q==null)throw A.e(A.af("'Uri.base' is not supported")) +s=$.aKK +if(s!=null&&q===$.aKJ)return s +r=A.d3(q) +$.aKK=r +$.aKJ=q +return r}, +a0e(a,b,c,d){var s,r,q,p,o,n="0123456789ABCDEF" +if(c===B.a5){s=$.aPv() +s=s.b.test(b)}else s=!1 +if(s)return b +r=c.hl(b) +for(s=r.length,q=0,p="";q>>4&15]+n[o&15]}return p.charCodeAt(0)==0?p:p}, +aZA(a){var s,r,q +if(!$.aPw())return A.aZB(a) +s=new URLSearchParams() +a.aj(0,new A.azR(s)) +r=s.toString() +q=r.length +if(q>0&&r[q-1]==="=")r=B.c.a1(r,0,q-1) +return r.replace(/=&|\*|%7E/g,b=>b==="=&"?"&":b==="*"?"%2A":"~")}, +aKc(){return A.aH(new Error())}, +aSA(a,b,c,d,e,f,g,h,i){var s=A.aDM(a,b,c,d,e,f,g,h,i) +if(s==null)return null +return new A.ep(A.zC(s,h,i),h,i)}, +aSf(a,b){return J.a2l(a,b)}, +aHl(a,b,c,d,e,f,g){var s=A.aDM(a,b,c,d,e,f,g,0,!1) +return new A.ep(s==null?new A.M2(a,b,c,d,e,f,g,0).$0():s,0,!1)}, +aSz(a,b,c,d,e,f,g){var s=A.aDM(a,b,c,d,e,f,g,0,!0) +return new A.ep(s==null?new A.M2(a,b,c,d,e,f,g,0).$0():s,0,!0)}, +aSC(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=null,b=$.aNP().n_(a) +if(b!=null){s=new A.a5l() +r=b.b +q=r[1] +q.toString +p=A.h_(q,c) +q=r[2] +q.toString +o=A.h_(q,c) +q=r[3] +q.toString +n=A.h_(q,c) +m=s.$1(r[4]) +l=s.$1(r[5]) +k=s.$1(r[6]) +j=new A.a5m().$1(r[7]) +i=B.f.fh(j,1000) +h=r[8]!=null +if(h){g=r[9] +if(g!=null){f=g==="-"?-1:1 +q=r[10] +q.toString +e=A.h_(q,c) +l-=f*(s.$1(r[11])+60*e)}}d=A.aSA(p,o,n,m,l,k,i,j%1000,h) +if(d==null)throw A.e(A.cI("Time out of range",a,c)) +return d}else throw A.e(A.cI("Invalid date format",a,c))}, +zC(a,b,c){var s="microsecond" +if(b<0||b>999)throw A.e(A.cy(b,0,999,s,null)) +if(a<-864e13||a>864e13)throw A.e(A.cy(a,-864e13,864e13,"millisecondsSinceEpoch",null)) +if(a===864e13&&b!==0)throw A.e(A.ij(b,s,"Time including microseconds is outside valid range")) +A.mK(c,"isUtc",t.y) +return a}, +aSB(a){var s=Math.abs(a),r=a<0?"-":"" +if(s>=1000)return""+a +if(s>=100)return r+"0"+s +if(s>=10)return r+"00"+s +return r+"000"+s}, +aHm(a){if(a>=100)return""+a +if(a>=10)return"0"+a +return"00"+a}, +M3(a){if(a>=10)return""+a +return"0"+a}, +ea(a,b,c){return new A.aZ(a+1000*b+1e6*c)}, +aTD(a,b){var s,r +for(s=0;s<4;++s){r=a[s] +if(r.b===b)return r}throw A.e(A.ij(b,"name","No enum value with that name"))}, +q_(a){if(typeof a=="number"||A.pc(a)||a==null)return J.dr(a) +if(typeof a=="string")return JSON.stringify(a) +return A.aJx(a)}, +aHS(a,b){A.mK(a,"error",t.K) +A.mK(b,"stackTrace",t.Km) +A.aTK(a,b)}, +ik(a){return new A.ps(a)}, +bF(a,b){return new A.ii(!1,null,b,a)}, +ij(a,b,c){return new A.ii(!0,a,b,c)}, +pr(a,b){return a}, +eM(a){var s=null +return new A.vx(s,s,!1,s,s,a)}, +ah8(a,b){return new A.vx(null,null,!0,a,b,"Value not in range")}, +cy(a,b,c,d,e){return new A.vx(b,c,!0,a,d,"Invalid value")}, +aJB(a,b,c,d){if(ac)throw A.e(A.cy(a,b,c,d,null)) +return a}, +dZ(a,b,c,d,e){if(0>a||a>c)throw A.e(A.cy(a,0,c,d==null?"start":d,null)) +if(b!=null){if(a>b||b>c)throw A.e(A.cy(b,a,c,e==null?"end":e,null)) +return b}return c}, +eg(a,b){if(a<0)throw A.e(A.cy(a,0,null,b,null)) +return a}, +aDo(a,b,c,d,e){var s=e==null?b.gv(b):e +return new A.AV(s,!0,a,c,"Index out of range")}, +dk(a,b,c,d,e){return new A.AV(b,!0,a,e,"Index out of range")}, +aIh(a,b,c,d){if(0>a||a>=b)throw A.e(A.dk(a,b,c,null,d==null?"index":d)) +return a}, +af(a){return new A.ES(a)}, +eQ(a){return new A.Sj(a)}, +a5(a){return new A.fQ(a)}, +c6(a){return new A.LM(a)}, +cO(a){return new A.Vb(a)}, +cI(a,b,c){return new A.eI(a,b,c)}, +aIp(a,b,c){if(a<=0)return new A.hH(c.i("hH<0>")) +return new A.Gc(a,b,c.i("Gc<0>"))}, +aIq(a,b,c){var s,r +if(A.aFn(a)){if(b==="("&&c===")")return"(...)" +return b+"..."+c}s=A.b([],t.s) +$.tD.push(a) +try{A.b00(a,s)}finally{$.tD.pop()}r=A.alP(b,s,", ")+c +return r.charCodeAt(0)==0?r:r}, +nz(a,b,c){var s,r +if(A.aFn(a))return b+"..."+c +s=new A.cK(b) +$.tD.push(a) +try{r=s +r.a=A.alP(r.a,a,", ")}finally{$.tD.pop()}s.a+=c +r=s.a +return r.charCodeAt(0)==0?r:r}, +b00(a,b){var s,r,q,p,o,n,m,l=J.bb(a),k=0,j=0 +for(;;){if(!(k<80||j<3))break +if(!l.u())return +s=A.k(l.gN(l)) +b.push(s) +k+=s.length+2;++j}if(!l.u()){if(j<=5)return +r=b.pop() +q=b.pop()}else{p=l.gN(l);++j +if(!l.u()){if(j<=4){b.push(A.k(p)) +return}r=A.k(p) +q=b.pop() +k+=r.length+2}else{o=l.gN(l);++j +for(;l.u();p=o,o=n){n=l.gN(l);++j +if(j>100){for(;;){if(!(k>75&&j>3))break +k-=b.pop().length+2;--j}b.push("...") +return}}q=A.k(p) +r=A.k(o) +k+=r.length+q.length+4}}if(j>b.length+2){k+=5 +m="..."}else m=null +for(;;){if(!(k>80&&b.length>3))break +k-=b.pop().length+2 +if(m==null){k+=5 +m="..."}}if(m!=null)b.push(m) +b.push(q) +b.push(r)}, +aIP(a,b,c,d,e){return new A.pD(a,b.i("@<0>").bR(c).bR(d).bR(e).i("pD<1,2,3,4>"))}, +T(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1){var s +if(B.a===c)return A.aKh(J.C(a),J.C(b),$.ek()) +if(B.a===d){s=J.C(a) +b=J.C(b) +c=J.C(c) +return A.eC(A.P(A.P(A.P($.ek(),s),b),c))}if(B.a===e)return A.aXo(J.C(a),J.C(b),J.C(c),J.C(d),$.ek()) +if(B.a===f){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +return A.eC(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e))}if(B.a===g){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f))}if(B.a===h){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g))}if(B.a===i){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h))}if(B.a===j){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i))}if(B.a===k){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j))}if(B.a===l){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k))}if(B.a===m){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l))}if(B.a===n){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m))}if(B.a===o){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +n=J.C(n) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m),n))}if(B.a===p){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +n=J.C(n) +o=J.C(o) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o))}if(B.a===q){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +n=J.C(n) +o=J.C(o) +p=J.C(p) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p))}if(B.a===r){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +n=J.C(n) +o=J.C(o) +p=J.C(p) +q=J.C(q) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q))}if(B.a===a0){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +n=J.C(n) +o=J.C(o) +p=J.C(p) +q=J.C(q) +r=J.C(r) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r))}if(B.a===a1){s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +n=J.C(n) +o=J.C(o) +p=J.C(p) +q=J.C(q) +r=J.C(r) +a0=J.C(a0) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0))}s=J.C(a) +b=J.C(b) +c=J.C(c) +d=J.C(d) +e=J.C(e) +f=J.C(f) +g=J.C(g) +h=J.C(h) +i=J.C(i) +j=J.C(j) +k=J.C(k) +l=J.C(l) +m=J.C(m) +n=J.C(n) +o=J.C(o) +p=J.C(p) +q=J.C(q) +r=J.C(r) +a0=J.C(a0) +a1=J.C(a1) +return A.eC(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.ek(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0),a1))}, +bI(a){var s,r=$.ek() +for(s=J.bb(a);s.u();)r=A.P(r,J.C(s.gN(s))) +return A.eC(r)}, +aVt(a){var s,r,q,p,o +for(s=a.gag(a),r=0,q=0;s.u();){p=J.C(s.gN(s)) +o=((p^p>>>16)>>>0)*569420461>>>0 +o=((o^o>>>15)>>>0)*3545902487>>>0 +r=r+((o^o>>>15)>>>0)&1073741823;++q}return A.aKh(r,q,0)}, +ie(a){A.aNr(A.k(a))}, +aWW(a,b,c,d){return new A.pE(a,b,c.i("@<0>").bR(d).i("pE<1,2>"))}, +aXf(){$.Ka() +return new A.DW()}, +b_3(a,b){return 65536+((a&1023)<<10)+(b&1023)}, +d3(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=null,a4=a5.length +if(a4>=5){s=((a5.charCodeAt(4)^58)*3|a5.charCodeAt(0)^100|a5.charCodeAt(1)^97|a5.charCodeAt(2)^116|a5.charCodeAt(3)^97)>>>0 +if(s===0)return A.aKI(a4=14)r[7]=a4 +q=r[1] +if(q>=0)if(A.aMC(a5,0,q,20,r)===20)r[7]=q +p=r[2]+1 +o=r[3] +n=r[4] +m=r[5] +l=r[6] +if(lq+3)){i=o>0 +if(!(i&&o+1===n)){if(!B.c.da(a5,"\\",n))if(p>0)h=B.c.da(a5,"\\",p-1)||B.c.da(a5,"\\",p-2) +else h=!1 +else h=!0 +if(!h){if(!(mn+2&&B.c.da(a5,"/..",m-3) +else h=!0 +if(!h)if(q===4){if(B.c.da(a5,"file",0)){if(p<=0){if(!B.c.da(a5,"/",n)){g="file:///" +s=3}else{g="file://" +s=2}a5=g+B.c.a1(a5,n,a4) +m+=s +l+=s +a4=a5.length +p=7 +o=7 +n=7}else if(n===m){++l +f=m+1 +a5=B.c.kV(a5,n,m,"/");++a4 +m=f}j="file"}else if(B.c.da(a5,"http",0)){if(i&&o+3===n&&B.c.da(a5,"80",o+1)){l-=3 +e=n-3 +m-=3 +a5=B.c.kV(a5,o,n,"") +a4-=3 +n=e}j="http"}}else if(q===5&&B.c.da(a5,"https",0)){if(i&&o+4===n&&B.c.da(a5,"443",o+1)){l-=4 +e=n-4 +m-=4 +a5=B.c.kV(a5,o,n,"") +a4-=3 +n=e}j="https"}k=!h}}}}if(k)return new A.iW(a40)j=A.aEL(a5,0,q) +else{if(q===0)A.xR(a5,0,"Invalid empty scheme") +j=""}d=a3 +if(p>0){c=q+3 +b=c=c?0:a.charCodeAt(q) +m=n^48 +if(m<=9){if(o!==0||q===r){o=o*10+m +if(o<=255){++q +continue}A.So("each part must be in the range 0..255",a,r)}A.So("parts must not have leading zeros",a,r)}if(q===r){if(q===c)break +A.So(k,a,q)}l=p+1 +s&2&&A.aI(d) +d[e+p]=o +if(n===46){if(l<4){++q +p=l +r=q +o=0 +continue}break}if(q===c){if(l===4)return +break}A.So(k,a,q) +p=l}A.So("IPv4 address should contain exactly 4 parts",a,q)}, +aY2(a,b,c){var s +if(b===c)throw A.e(A.cI("Empty IP address",a,b)) +if(a.charCodeAt(b)===118){s=A.aY3(a,b,c) +if(s!=null)throw A.e(s) +return!1}A.aKL(a,b,c) +return!0}, +aY3(a,b,c){var s,r,q,p,o="Missing hex-digit in IPvFuture address";++b +for(s=b;;s=r){if(s=97&&p<=102)continue +if(q===46){if(r-1===b)return new A.eI(o,a,r) +s=r +break}return new A.eI("Unexpected character",a,r-1)}if(s-1===b)return new A.eI(o,a,s) +return new A.eI("Missing '.' in IPvFuture address",a,s)}if(s===c)return new A.eI("Missing address in IPvFuture address, host, cursor",null,null) +for(;;){if((u.S.charCodeAt(a.charCodeAt(s))&16)!==0){++s +if(s=a3?0:a1.charCodeAt(p) +$label0$0:{k=l^48 +j=!1 +if(k<=9)i=k +else{h=l|32 +if(h>=97&&h<=102)i=h-87 +else break $label0$0 +m=j}if(po){if(l===46){if(m){if(q<=6){A.aY1(a1,o,a3,s,q*2) +q+=2 +p=a3 +break}a0.$2(a,o)}break}g=q*2 +s[g]=B.f.eX(n,8) +s[g+1]=n&255;++q +if(l===58){if(q<8){++p +o=p +n=0 +m=!0 +continue}a0.$2(a,p)}break}if(l===58){if(r<0){f=q+1;++p +r=q +q=f +o=p +continue}a0.$2("only one wildcard `::` is allowed",p)}if(r!==q-1)a0.$2("missing part",p) +break}if(p0){c=e*2 +b=16-d*2 +B.O.e0(s,b,16,s,c) +B.O.apv(s,c,b,0)}}return s}, +IX(a,b,c,d,e,f,g){return new A.IW(a,b,c,d,e,f,g)}, +a0d(a,b,c){var s,r,q,p=null,o=A.aLO(p,0,0),n=A.aLM(p,0,0,!1),m=A.azO(p,0,0,c) +a=A.aLL(a,0,a==null?0:a.length) +s=A.azN(p,"") +if(n==null)if(o.length===0)r=s!=null +else r=!0 +else r=!1 +if(r)n="" +r=n==null +q=!r +b=A.aLN(b,0,b.length,p,"",q) +if(r&&!B.c.bz(b,"/"))b=A.aEN(b,q) +else b=A.tu(b) +return A.IX("",o,r&&B.c.bz(b,"//")?"":n,s,b,m,a)}, +aLI(a){if(a==="http")return 80 +if(a==="https")return 443 +return 0}, +xR(a,b,c){throw A.e(A.cI(c,a,b))}, +aZv(a,b){var s,r,q +for(s=a.length,r=0;r=b&&s=b&&s=p){if(i==null)i=new A.cK("") +if(r=o){if(q==null)q=new A.cK("") +if(r=a.length)return"%" +s=a.charCodeAt(b+1) +r=a.charCodeAt(n) +q=A.aBB(s) +p=A.aBB(r) +if(q<0||p<0)return"%" +o=q*16+p +if(o<127&&(u.S.charCodeAt(o)&1)!==0)return A.dn(c&&65<=o&&90>=o?(o|32)>>>0:o) +if(s>=97||r>=97)return B.c.a1(a,b,b+3).toUpperCase() +return null}, +aEK(a){var s,r,q,p,o,n="0123456789ABCDEF" +if(a<=127){s=new Uint8Array(3) +s[0]=37 +s[1]=n.charCodeAt(a>>>4) +s[2]=n.charCodeAt(a&15)}else{if(a>2047)if(a>65535){r=240 +q=4}else{r=224 +q=3}else{r=192 +q=2}s=new Uint8Array(3*q) +for(p=0;--q,q>=0;r=128){o=B.f.ajD(a,6*q)&63|r +s[p]=37 +s[p+1]=n.charCodeAt(o>>>4) +s[p+2]=n.charCodeAt(o&15) +p+=3}}return A.fR(s,0,null)}, +IY(a,b,c,d,e,f){var s=A.aLQ(a,b,c,d,e,f) +return s==null?B.c.a1(a,b,c):s}, +aLQ(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k,j=null,i=u.S +for(s=!e,r=b,q=r,p=j;r=2&&A.aLK(a.charCodeAt(0)))for(s=1;s127||(u.S.charCodeAt(r)&8)===0)break}return a}, +aZE(a,b){if(a.as0("package")&&a.c==null)return A.aMF(b,0,b.length) +return-1}, +aZy(){return A.b([],t.s)}, +aLS(a){var s,r,q,p,o,n=A.w(t.N,t.yp),m=new A.azS(a,B.a5,n) +for(s=a.length,r=0,q=0,p=-1;r127)throw A.e(A.bF("Illegal percent encoding in URI",null)) +if(r===37){if(o+3>q)throw A.e(A.bF("Truncated URI",null)) +p.push(A.aZz(a,o+1)) +o+=2}else if(e&&r===43)p.push(32) +else p.push(r)}}return d.bM(0,p)}, +aLK(a){var s=a|32 +return 97<=s&&s<=122}, +aKI(a,b,c){var s,r,q,p,o,n,m,l,k="Invalid MIME type",j=A.b([b-1],t.t) +for(s=a.length,r=b,q=-1,p=null;rb)throw A.e(A.cI(k,a,r)) +while(p!==44){j.push(r);++r +for(o=-1;r=0)j.push(o) +else{n=B.b.gae(j) +if(p!==44||r!==n+7||!B.c.da(a,"base64",n+1))throw A.e(A.cI("Expecting '='",a,r)) +break}}j.push(r) +m=r+1 +if((j.length&1)===1)a=B.fY.asV(0,a,m,s) +else{l=A.aLQ(a,m,s,256,!0,!1) +if(l!=null)a=B.c.kV(a,m,s,l)}return new A.anj(a,j,c)}, +aMC(a,b,c,d,e){var s,r,q +for(s=b;s95)r=31 +q='\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe3\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x0e\x03\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xea\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\n\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xeb\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\xeb\xeb\xeb\x8b\xeb\xeb\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\xeb\x83\xeb\xeb\x8b\xeb\x8b\xeb\xcd\x8b\xeb\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x92\x83\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\xeb\x8b\xeb\x8b\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xebD\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x12D\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\xe5\xe5\xe5\x05\xe5D\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe8\x8a\xe5\xe5\x05\xe5\x05\xe5\xcd\x05\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x8a\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05f\x05\xe5\x05\xe5\xac\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\xe5\xe5\xe5\x05\xe5D\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\x8a\xe5\xe5\x05\xe5\x05\xe5\xcd\x05\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x8a\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05f\x05\xe5\x05\xe5\xac\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7D\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\xe7\xe7\xe7\xe7\xe7\xe7\xcd\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\xe7\x07\x07\x07\x07\x07\x07\x07\x07\x07\xe7\xe7\xe7\xe7\xe7\xac\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7D\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\xe7\xe7\xe7\xe7\xe7\xe7\xcd\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\xe7\xe7\xe7\xe7\xe7\xac\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\x05\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x10\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x12\n\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\v\n\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xec\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\xec\xec\xec\f\xec\xec\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\xec\xec\xec\xec\f\xec\f\xec\xcd\f\xec\f\f\f\f\f\f\f\f\f\xec\f\f\f\f\f\f\f\f\f\f\xec\f\xec\f\xec\f\xed\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\xed\xed\xed\r\xed\xed\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\xed\xed\xed\xed\r\xed\r\xed\xed\r\xed\r\r\r\r\r\r\r\r\r\xed\r\r\r\r\r\r\r\r\r\r\xed\r\xed\r\xed\r\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xea\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x0f\xea\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe9\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\t\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x11\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xe9\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\v\t\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x13\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\v\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xf5\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\x15\xf5\x15\x15\xf5\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\xf5\xf5\xf5\xf5\xf5\xf5'.charCodeAt(d*96+r) +d=q&31 +e[q>>>5]=s}return d}, +aLy(a){if(a.b===7&&B.c.bz(a.a,"package")&&a.c<=0)return A.aMF(a.a,a.e,a.f) +return-1}, +b0w(a,b){return A.abu(b,t.N)}, +aMF(a,b,c){var s,r,q +for(s=b,r=0;s=1)return a.$1(b) +return a.$0()}, +aZU(a,b,c,d){if(d>=2)return a.$2(b,c) +if(d===1)return a.$1(b) +return a.$0()}, +aZV(a,b,c,d,e){if(e>=3)return a.$3(b,c,d) +if(e===2)return a.$2(b,c) +if(e===1)return a.$1(b) +return a.$0()}, +aMp(a){return a==null||A.pc(a)||typeof a=="number"||typeof a=="string"||t.pT.b(a)||t.H3.b(a)||t.Po.b(a)||t.JZ.b(a)||t.w7.b(a)||t.XO.b(a)||t.rd.b(a)||t.s4.b(a)||t.OE.b(a)||t.pI.b(a)||t.V4.b(a)}, +ad(a){if(A.aMp(a))return a +return new A.aBL(new A.oO(t.Fy)).$1(a)}, +M(a,b){return a[b]}, +xX(a,b){return a[b]}, +fD(a,b,c){return a[b].apply(a,c)}, +aZW(a,b,c){return a[b](c)}, +aZX(a,b,c,d){return a[b](c,d)}, +b0T(a,b){var s,r +if(b==null)return new a() +if(b instanceof Array)switch(b.length){case 0:return new a() +case 1:return new a(b[0]) +case 2:return new a(b[0],b[1]) +case 3:return new a(b[0],b[1],b[2]) +case 4:return new a(b[0],b[1],b[2],b[3])}s=[null] +B.b.O(s,b) +r=a.bind.apply(a,s) +String(r) +return new r()}, +aZQ(a,b){return new a(b)}, +aZR(a,b,c){return new a(b,c)}, +eV(a,b){var s=new A.au($.aq,b.i("au<0>")),r=new A.bB(s,b.i("bB<0>")) +a.then(A.tA(new A.aBW(r),1),A.tA(new A.aBX(r),1)) +return s}, +aMo(a){return a==null||typeof a==="boolean"||typeof a==="number"||typeof a==="string"||a instanceof Int8Array||a instanceof Uint8Array||a instanceof Uint8ClampedArray||a instanceof Int16Array||a instanceof Uint16Array||a instanceof Int32Array||a instanceof Uint32Array||a instanceof Float32Array||a instanceof Float64Array||a instanceof ArrayBuffer||a instanceof DataView}, +aFe(a){if(A.aMo(a))return a +return new A.aBp(new A.oO(t.Fy)).$1(a)}, +aBL:function aBL(a){this.a=a}, +aBW:function aBW(a){this.a=a}, +aBX:function aBX(a){this.a=a}, +aBp:function aBp(a){this.a=a}, +aFq(a,b){return Math.max(a,b)}, +b2A(a){return Math.sqrt(a)}, +b1u(a){return Math.exp(a)}, +aNj(a){return Math.log(a)}, +JV(a,b){return Math.pow(a,b)}, +atQ:function atQ(a){this.a=a}, +hT:function hT(){}, +O5:function O5(){}, +hY:function hY(){}, +OM:function OM(){}, +Ph:function Ph(){}, +RH:function RH(){}, +i4:function i4(){}, +Sd:function Sd(){}, +Wc:function Wc(){}, +Wd:function Wd(){}, +X6:function X6(){}, +X7:function X7(){}, +ZV:function ZV(){}, +ZW:function ZW(){}, +a_K:function a_K(){}, +a_L:function a_L(){}, +aGR(a){var s=a.BYTES_PER_ELEMENT,r=A.dZ(0,null,B.f.jw(a.byteLength,s),null,null) +return J.Kg(B.O.gc9(a),a.byteOffset+0*s,r*s)}, +aEf(a,b,c){var s=J.dF(a),r=s.gWL(a) +c=A.dZ(b,c,B.f.jw(a.byteLength,r),null,null) +return J.j2(s.gc9(a),a.byteOffset+b*r,(c-b)*r)}, +MC:function MC(){}, +ky(a,b,c){if(b==null)if(a==null)return null +else return a.a6(0,1-c) +else if(a==null)return b.a6(0,c) +else return new A.j(A.hA(a.a,b.a,c),A.hA(a.b,b.b,c))}, +aX1(a,b){return new A.I(a,b)}, +alc(a,b,c){if(b==null)if(a==null)return null +else return a.a6(0,1-c) +else if(a==null)return b.a6(0,c) +else return new A.I(A.hA(a.a,b.a,c),A.hA(a.b,b.b,c))}, +o3(a,b){var s=a.a,r=b*2/2,q=a.b +return new A.x(s-r,q-r,s+r,q+r)}, +aJE(a,b,c){var s=a.a,r=c/2,q=a.b,p=b/2 +return new A.x(s-r,q-p,s+r,q+p)}, +rl(a,b){var s=a.a,r=b.a,q=a.b,p=b.b +return new A.x(Math.min(s,r),Math.min(q,p),Math.max(s,r),Math.max(q,p))}, +aWh(a,b,c){var s,r,q,p,o +if(b==null)if(a==null)return null +else{s=1-c +return new A.x(a.a*s,a.b*s,a.c*s,a.d*s)}else{r=b.a +q=b.b +p=b.c +o=b.d +if(a==null)return new A.x(r*c,q*c,p*c,o*c) +else return new A.x(A.hA(a.a,r,c),A.hA(a.b,q,c),A.hA(a.c,p,c),A.hA(a.d,o,c))}}, +Cs(a,b,c){var s,r,q +if(b==null)if(a==null)return null +else{s=1-c +return new A.aG(a.a*s,a.b*s)}else{r=b.a +q=b.b +if(a==null)return new A.aG(r*c,q*c) +else return new A.aG(A.hA(a.a,r,c),A.hA(a.b,q,c))}}, +o1(a,b){var s=b.a,r=b.b +return new A.jB(a.a,a.b,a.c,a.d,s,r,s,r,s,r,s,r)}, +aJA(a,b,c,d,e,f,g,h){return new A.jB(a,b,c,d,g.a,g.b,h.a,h.b,f.a,f.b,e.a,e.b)}, +aDQ(a,b,c,d,e){return new A.jB(a.a,a.b,a.c,a.d,d.a,d.b,e.a,e.b,c.a,c.b,b.a,b.b)}, +aW7(a,b,c,d,e,f,g,h,i,j,k,l){return new A.jB(f,j,g,c,h,i,k,l,d,e,a,b)}, +aW8(a,b,c,d,e,f,g,h,i,j,k,l,m){return new A.rk(m,f,j,g,c,h,i,k,l,d,e,a,b)}, +Pv(a,b){return a>0&&b>0?new A.am(a,b):B.Pi}, +Cq(a,b,c,d){var s=a+b +if(s>c)return Math.min(d,c/s) +return d}, +V(a,b,c){var s +if(a!=b){s=a==null?null:isNaN(a) +if(s===!0){s=b==null?null:isNaN(b) +s=s===!0}else s=!1}else s=!0 +if(s)return a==null?null:a +if(a==null)a=0 +if(b==null)b=0 +return a*(1-c)+b*c}, +hA(a,b,c){return a*(1-c)+b*c}, +A(a,b,c){if(ac)return c +if(isNaN(a))return c +return a}, +aMB(a,b){return a.Ll(B.d.f0(a.gmD(a)*b,0,1))}, +bq(a){return new A.u((B.f.eX(a,24)&255)/255,(B.f.eX(a,16)&255)/255,(B.f.eX(a,8)&255)/255,(a&255)/255,B.e)}, +aC(a,b,c,d){return new A.u((a&255)/255,(b&255)/255,(c&255)/255,(d&255)/255,B.e)}, +aH2(a,b,c,d){return new A.u(d,(a&255)/255,(b&255)/255,(c&255)/255,B.e)}, +aCK(a){if(a<=0.03928)return a/12.92 +return Math.pow((a+0.055)/1.055,2.4)}, +z(a,b,c){if(b==null)if(a==null)return null +else return A.aMB(a,1-c) +else if(a==null)return A.aMB(b,c) +else return new A.u(B.d.f0(A.hA(a.gmD(a),b.gmD(b),c),0,1),B.d.f0(A.hA(a.glT(a),b.glT(b),c),0,1),B.d.f0(A.hA(a.gl4(),b.gl4(),c),0,1),B.d.f0(A.hA(a.glp(a),b.glp(b),c),0,1),a.gqL())}, +aH7(a,b){var s,r,q,p=a.gmD(a) +if(p===0)return b +s=1-p +r=b.gmD(b) +if(r===1)return new A.u(1,p*a.glT(a)+s*b.glT(b),p*a.gl4()+s*b.gl4(),p*a.glp(a)+s*b.glp(b),a.gqL()) +else{r*=s +q=p+r +return new A.u(q,(a.glT(a)*p+b.glT(b)*r)/q,(a.gl4()*p+b.gl4()*r)/q,(a.glp(a)*p+b.glp(b)*r)/q,a.gqL())}}, +aDi(a,b,c,d,e,f){var s +$.a3() +s=new A.a4h(a,b,c,d,e,null) +s.a5Y() +return s}, +aIf(a,b){var s +$.a3() +s=new Float64Array(A.ic(a)) +A.JY(a) +return new A.Fq(s,b)}, +b1Y(a,b,c,d){var s,r +try{s=$.a3() +r=a.a +r.toString +r=s.vV(r,!1,c,d) +return r}finally{a.a=null}}, +a2_(a,b){return A.b1Z(a,b)}, +b1Z(a,b){var s=0,r=A.H(t.hP),q,p=2,o=[],n=[],m,l,k,j,i,h,g,f +var $async$a2_=A.B(function(c,d){if(c===1){o.push(d) +s=p}for(;;)switch(s){case 0:g=null +f=null +p=3 +s=b==null?6:8 +break +case 6:j=$.a3() +i=a.a +i.toString +i=j.XY(i) +q=i +n=[1] +s=4 +break +s=7 +break +case 8:j=$.a3() +i=a.a +i.toString +s=9 +return A.v(j.XY(i),$async$a2_) +case 9:g=d +s=10 +return A.v(g.fE(),$async$a2_) +case 10:f=d +i=f +i=i.gja(i).b +i===$&&A.a() +i=i.a +i===$&&A.a() +m=J.ap(i.a.width()) +i=f +i=i.gja(i).b +i===$&&A.a() +i=i.a +i===$&&A.a() +l=J.ap(i.a.height()) +k=b.$2(m,l) +i=a.a +i.toString +h=k.a +h=j.vV(i,!1,k.b,h) +q=h +n=[1] +s=4 +break +case 7:n.push(5) +s=4 +break +case 3:n=[2] +case 4:p=2 +j=f +if(j!=null)J.aR2(j).l() +j=g +if(j!=null)j.l() +a.a=null +s=n.pop() +break +case 5:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$a2_,r)}, +aWX(a){return a>0?a*0.57735+0.5:0}, +aWY(a,b,c){var s,r,q=A.z(a.a,b.a,c) +q.toString +s=A.ky(a.b,b.b,c) +s.toString +r=A.hA(a.c,b.c,c) +return new A.ok(q,s,r)}, +aK0(a,b,c){var s,r,q,p=a==null +if(p&&b==null)return null +if(p)a=A.b([],t.kO) +if(b==null)b=A.b([],t.kO) +s=A.b([],t.kO) +r=Math.min(a.length,b.length) +for(q=0;q=15)return new A.am(1.07-Math.exp(1.307649835)*Math.pow(a,-0.8568516731),-0.01+Math.exp(-0.9287690322)*Math.pow(a,-0.6120901398)) +s=B.d.f0((a-2)/1,0,13) +r=B.f.f0(B.d.h_(s),0,12) +q=s-r +p=1-q +o=B.pv[r] +n=B.pv[r+1] +return new A.am(p*o.a+q*n.a,p*o.b+q*n.b)}, +aYW(a){var s,r,q,p,o,n,m +if(a>5){s=a-5 +return new A.am(1.559599389*s+6.43023796,1-1/(0.522807185*s+2.98020421))}a=B.d.f0(a,2,5) +r=a<2.5?(a-2)*10:(a-2.5)*2+6-1 +q=B.f.f0(B.d.h_(r),0,9) +p=r-q +s=1-p +o=B.pq[q] +n=o[0] +m=B.pq[q+1] +return new A.am(s*n+p*m[0],1-1/(s*o[1]+p*m[1]))}, +Y4(a,b,c,d){var s,r=b.a0(0,a),q=new A.I(Math.abs(c.a),Math.abs(c.b)),p=q.geJ(),o=p===0?B.iN:q.dE(0,p),n=r.a,m=Math.abs(n)/o.a,l=r.b,k=Math.abs(l)/o.b +n/=m +l/=k +n=isFinite(n)?n:d.a +l=isFinite(l)?l:d.b +s=m-k +return new A.awi(a,new A.j(n,l),A.aLm(new A.j(0,-s),m,p),A.aLm(new A.j(s,0),k,p))}, +awg(a,b,c,d){if(c===0&&d===0)return(a+b)/2 +return(a*d+b*c)/(c+d)}, +aJY(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.Dw(c,r,d,a1,e,q,f,b,a0,j,g,o,a3,a2,h,i,m,a,n,p,l,s,k)}, +aDe(a,b,c){var s,r=a==null +if(r&&b==null)return null +r=r?null:a.a +if(r==null)r=3 +s=b==null?null:b.a +r=A.V(r,s==null?3:s,c) +r.toString +return B.py[A.b0Z(B.d.aI(r),0,8)]}, +aI0(a,b,c){var s=a==null,r=s?null:a.a,q=b==null +if(r==(q?null:b.a))s=s&&q +else s=!0 +if(s)return c<0.5?a:b +s=a.a +r=A.V(a.b,b.b,c) +r.toString +return new A.kl(s,A.A(r,-32768,32767.99998474121))}, +aKu(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1,a2){var s +$.a3() +if(A.dq().gmH()===B.cD)s=new A.t3(g,j,b) +else{s=A.aAs(g) +if($.i3==null)$.i3=B.cY +s=A.aCJ(a,b,c,d,e,f,s,h,i,j,k,l,m,n,o,p,q,r,g,h,a0,a1,a2)}return s}, +aJl(a,b,c,d,e,f,g,h,i,j,k,l){var s,r,q,p,o,n,m=null +$.a3() +if(A.dq().gmH()===B.cD){s=k==null?B.al:k +s=new A.EY(new A.t3(b,c,m),s,j)}else{s=A.aAs(b) +r=f===0 +q=r?m:f +p={} +p.textAlign=$.aQu()[j.a] +if(k!=null)p.textDirection=$.aG6()[k.a] +if(h!=null)p.maxLines=h +o=q!=null +if(o)p.heightMultiplier=q +if(l!=null)p.textHeightBehavior=$.aQw()[0] +if(a!=null)p.ellipsis=a +if(i!=null)p.strutStyle=A.aS1(i,l) +p.replaceTabCharacters=!0 +n={} +if(e!=null)n.fontStyle=A.aFA(e,d) +if(c!=null)n.fontSize=c +if(o)n.heightMultiplier=q +A.aK7(n,A.aET(s,m)) +p.textStyle=n +p.applyRoundingHack=!1 +s=$.be.bd().ParagraphStyle(p) +q=A.aAs(b) +s=new A.z9(s,j,k,e,d,h,b,q,c,r?m:f,l,i,a,g)}return s}, +aVF(a){throw A.e(A.eQ(null))}, +aVE(a){throw A.e(A.eQ(null))}, +a4s:function a4s(a,b){this.a=a +this.b=b}, +P8:function P8(a,b){this.a=a +this.b=b}, +aq0:function aq0(a,b){this.a=a +this.b=b}, +Iu:function Iu(a,b,c){this.a=a +this.b=b +this.c=c}, +mp:function mp(a,b){var _=this +_.a=a +_.c=b +_.d=!1 +_.e=null}, +a4b:function a4b(a){this.a=a}, +a4c:function a4c(){}, +a4d:function a4d(){}, +OQ:function OQ(){}, +j:function j(a,b){this.a=a +this.b=b}, +I:function I(a,b){this.a=a +this.b=b}, +x:function x(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aG:function aG(a,b){this.a=a +this.b=b}, +xr:function xr(){}, +jB:function jB(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l}, +rk:function rk(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.as=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m}, +Bc:function Bc(a,b){this.a=a +this.b=b}, +aaY:function aaY(a,b){this.a=a +this.b=b}, +he:function he(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e +_.r=f}, +aaX:function aaX(){}, +u:function u(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +E0:function E0(a,b){this.a=a +this.b=b}, +RJ:function RJ(a,b){this.a=a +this.b=b}, +P5:function P5(a,b){this.a=a +this.b=b}, +yL:function yL(a,b){this.a=a +this.b=b}, +u8:function u8(a,b){this.a=a +this.b=b}, +L0:function L0(a,b){this.a=a +this.b=b}, +Bw:function Bw(a,b){this.a=a +this.b=b}, +q5:function q5(a,b){this.a=a +this.b=b}, +aDn:function aDn(){}, +a4L:function a4L(a,b){this.a=a +this.b=b}, +ok:function ok(a,b,c){this.a=a +this.b=b +this.c=c}, +ns:function ns(a){this.a=null +this.b=a}, +agk:function agk(){}, +no:function no(a){this.a=a}, +j3:function j3(a,b){this.a=a +this.b=b}, +yC:function yC(a,b){this.a=a +this.b=b}, +qD:function qD(a,b,c){this.a=a +this.b=b +this.c=c}, +a5f:function a5f(a,b){this.a=a +this.b=b}, +oi:function oi(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +wy:function wy(a,b,c){this.a=a +this.b=b +this.c=c}, +Sw:function Sw(a,b){this.a=a +this.b=b}, +EW:function EW(a,b){this.a=a +this.b=b}, +lS:function lS(a,b){this.a=a +this.b=b}, +kA:function kA(a,b){this.a=a +this.b=b}, +vs:function vs(a,b){this.a=a +this.b=b}, +iA:function iA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this +_.a=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=o +_.ch=p +_.CW=q +_.cx=r +_.cy=s +_.db=a0 +_.dx=a1 +_.dy=a2 +_.fr=a3 +_.fx=a4 +_.fy=a5 +_.go=a6 +_.id=a7 +_.k1=a8 +_.k2=a9 +_.p2=b0 +_.p4=b1}, +nV:function nV(a){this.a=a}, +azB:function azB(a,b){this.a=a +this.b=b}, +azE:function azE(a){this.a=a}, +azC:function azC(a){this.a=a}, +azA:function azA(){}, +Y3:function Y3(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.e=d +_.f=e +_.r=f}, +awi:function awi(a,b,c,d){var _=this +_.a=a +_.b=b +_.d=c +_.e=d}, +aEB:function aEB(a){this.a=a}, +Hd:function Hd(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +awf:function awf(a,b){this.a=a +this.b=b}, +cL:function cL(a,b){this.a=a +this.b=b}, +u2:function u2(a,b){this.a=a +this.b=b}, +EN:function EN(a,b){this.a=a +this.b=b}, +Dw:function Dw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3}, +iG:function iG(a,b){this.a=a +this.b=b}, +rJ:function rJ(a,b){this.a=a +this.b=b}, +Dz:function Dz(a,b){this.a=a +this.b=b}, +akP:function akP(a){this.a=a}, +nU:function nU(a,b){this.a=a +this.b=b}, +it:function it(a){this.a=a}, +kl:function kl(a,b){this.a=a +this.b=b}, +qj:function qj(a,b,c){this.a=a +this.b=b +this.c=c}, +md:function md(a,b){this.a=a +this.b=b}, +oq:function oq(a,b){this.a=a +this.b=b}, +wg:function wg(a){this.a=a}, +amh:function amh(a,b){this.a=a +this.b=b}, +RZ:function RZ(a,b){this.a=a +this.b=b}, +En:function En(a){this.c=a}, +Ej:function Ej(a,b){this.a=a +this.b=b}, +fw:function fw(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Eg:function Eg(a,b){this.a=a +this.b=b}, +ao:function ao(a,b){this.a=a +this.b=b}, +c4:function c4(a,b){this.a=a +this.b=b}, +nS:function nS(a){this.a=a}, +yT:function yT(a,b){this.a=a +this.b=b}, +L7:function L7(a,b){this.a=a +this.b=b}, +EA:function EA(a,b){this.a=a +this.b=b}, +a5S:function a5S(){}, +L8:function L8(a,b){this.a=a +this.b=b}, +a3P:function a3P(a){this.a=a}, +AD:function AD(a){this.a=a}, +N9:function N9(){}, +aBg(a,b){var s=0,r=A.H(t.H),q,p,o +var $async$aBg=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:q=new A.a2N(new A.aBh(),new A.aBi(a,b)) +p=v.G._flutter +o=p==null?null:p.loader +s=o==null||!("didCreateEngineInitializer" in o)?2:4 +break +case 2:s=5 +return A.v(q.qD(),$async$aBg) +case 5:s=3 +break +case 4:o.didCreateEngineInitializer(q.au8()) +case 3:return A.F(null,r)}}) +return A.G($async$aBg,r)}, +aXt(){var s=$.i3 +return s==null?$.i3=B.cY:s}, +a2X:function a2X(a){this.b=a}, +yV:function yV(a,b){this.a=a +this.b=b}, +lM:function lM(a,b){this.a=a +this.b=b}, +a3r:function a3r(){this.f=this.d=this.b=$}, +aBh:function aBh(){}, +aBi:function aBi(a,b){this.a=a +this.b=b}, +a3t:function a3t(){}, +a3v:function a3v(a){this.a=a}, +a3u:function a3u(a){this.a=a}, +Ne:function Ne(){}, +a9o:function a9o(a){this.a=a}, +a9n:function a9n(a,b){this.a=a +this.b=b}, +a9m:function a9m(a,b){this.a=a +this.b=b}, +ame:function ame(){}, +KK:function KK(){}, +KL:function KL(){}, +a2Z:function a2Z(a){this.a=a}, +a3_:function a3_(a){this.a=a}, +KM:function KM(){}, +mY:function mY(){}, +OP:function OP(){}, +Tl:function Tl(){}, +tY(a,b,c,d,e,f){var s=null +return new A.yY(new A.n1(s,d,s,1,s,s,s,s,B.Ij),d,e,a,f,c,b,s)}, +yY:function yY(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.e=b +_.w=c +_.y=d +_.ay=e +_.ch=f +_.CW=g +_.a=h}, +a3N:function a3N(){}, +n1:function n1(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +a3L:function a3L(a,b){this.a=a +this.b=b}, +a3J:function a3J(a){this.a=a}, +a3M:function a3M(a,b){this.a=a +this.b=b}, +a3K:function a3K(a){this.a=a}, +aJ1(a,b,c,d){var s=new A.Ow(d,c,A.b([],t.XZ),A.b([],t.SM),A.b([],t.qj)) +s.a5P(a,b,c,d) +return s}, +Ow:function Ow(a,b,c,d,e){var _=this +_.z=_.y=null +_.Q=a +_.as=b +_.ay=_.ax=_.at=null +_.ch=0 +_.cx=_.CW=null +_.dx=_.db=_.cy=!1 +_.dy=0 +_.a=c +_.b=d +_.d=_.c=null +_.f=!1 +_.r=0 +_.w=!1 +_.x=e}, +af5:function af5(a){this.a=a}, +af6:function af6(a,b){this.a=a +this.b=b}, +af7:function af7(a,b){this.a=a +this.b=b}, +auS:function auS(a,b){this.a=a +this.b=b}, +aaw:function aaw(a,b){this.a=a +this.b=b}, +Ir:function Ir(a,b){this.a=a +this.b=b}, +NF:function NF(){}, +aao:function aao(a){this.a=a}, +aap:function aap(a){this.a=a}, +aak:function aak(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aai:function aai(a){this.a=a}, +aaj:function aaj(a,b,c){this.a=a +this.b=b +this.c=c}, +aam:function aam(a,b){this.a=a +this.b=b}, +aah:function aah(a){this.a=a}, +aal:function aal(a,b,c){this.a=a +this.b=b +this.c=c}, +aan:function aan(a){this.a=a}, +aag:function aag(a){this.a=a}, +alQ(a,b){var s,r=a.length +A.dZ(b,null,r,"startIndex","endIndex") +s=A.b2o(a,0,r,b) +return new A.E_(a,s,b!==s?A.b2j(a,0,r,b):b)}, +b_D(a,b,c,d){var s,r,q,p=b.length +if(p===0)return c +s=d-p +if(s=0}else q=!1 +if(!q)break +if(r>s)return-1 +if(A.aFm(a,c,d,r)&&A.aFm(a,c,d,r+p))return r +c=r+1}return-1}return A.b_q(a,b,c,d)}, +b_q(a,b,c,d){var s,r,q,p=new A.k4(a,d,c,260) +for(s=b.length;r=p.ji(),r>=0;){q=r+s +if(q>d)break +if(B.c.da(a,b,r)&&A.aFm(a,c,d,q))return r}return-1}, +f7:function f7(a){this.a=a}, +E_:function E_(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +aFm(a,b,c,d){var s,r,q,p +if(b>>5)+(s&31)) +q=d}else{r=1 +if((s&64512)===55296){p=d+1 +if(p>>8)+(o&255)):1}q=d}else{q=d-1 +n=a.charCodeAt(q) +if((n&64512)===55296)r=l.charCodeAt(m.charCodeAt(((n&1023)<<10)+(s&1023)+524288>>>8)+(s&255)) +else q=d}}return new A.pt(a,b,q,u.t.charCodeAt(240+r)).ji()}return d}, +b2j(a,b,c,d){var s,r,q,p,o,n +if(d===b||d===c)return d +s=new A.k4(a,c,d,280) +r=s.TF(b) +q=s.ji() +p=s.d +if((p&3)===1)return q +o=new A.pt(a,b,r,p) +o.Fy() +n=o.d +if((n&1)!==0)return q +if(p===342)s.d=220 +else s.d=n +return s.ji()}, +k4:function k4(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +pt:function pt(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a4D:function a4D(){}, +bN:function bN(){}, +a3S:function a3S(a){this.a=a}, +a3T:function a3T(a){this.a=a}, +a3U:function a3U(a,b){this.a=a +this.b=b}, +a3V:function a3V(a){this.a=a}, +a3W:function a3W(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a3X:function a3X(a,b,c){this.a=a +this.b=b +this.c=c}, +a3Y:function a3Y(a){this.a=a}, +M9:function M9(){}, +p4:function p4(){}, +ww:function ww(a,b){this.a=a +this.$ti=b}, +vU:function vU(a,b){this.a=a +this.$ti=b}, +xc:function xc(a,b,c){this.a=a +this.b=b +this.c=c}, +qH:function qH(a,b,c){this.a=a +this.b=b +this.$ti=c}, +M7:function M7(){}, +Nf:function Nf(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=0 +_.$ti=c}, +a4Q:function a4Q(){}, +a5e:function a5e(){}, +a4P:function a4P(){}, +aHK(a){return a.charCodeAt(0)>=48&&a.charCodeAt(0)<=57}, +aD3(a){var s +if(!(a.charCodeAt(0)>=65&&a.charCodeAt(0)<=90))s=a.charCodeAt(0)>=97&&a.charCodeAt(0)<=122 +else s=!0 +return s}, +aTt(a,b){if(a.charCodeAt(0)<128){if(A.aD3(a)||a==="-"){$.pY=B.iQ +return!0}if(A.aHK(a)){$.pY=B.m9 +return!0}return!1}$.pY=B.iQ +return!0}, +aTu(a,b){if(a.charCodeAt(0)<128){if(A.aD3(a)){$.pY=B.iQ +return!0}if(A.aHK(a)){$.pY=B.m9 +return!0}$.pY=B.AB +return!1}$.pY=B.iQ +return!0}, +aHL(a,b){var s,r,q=$.ci,p=a.length,o=q +for(;;){if(o=48&&o.charCodeAt(0)<=57 +else r=!0 +if(!r)o=A.aFx("!#$%&'*+-/=?^_`{|}~",o,0) +else o=s}else o=s}else o=!1 +if(!o)break +o=$.ci+1 +$.ci=o}return $.ci>q}, +aHN(a,b){var s,r,q=$.ci +if(!A.aTu(a[q],!0))return!1 +s=$.ci=$.ci+1 +r=a.length +for(;;){if(!(s=s||a[p]!=='"')return!1 +$.ci=p+1 +return!0}, +aHM(a){var s,r,q,p,o,n=a.length,m=0 +for(;;){s=$.ci +if(!(s=48&&o.charCodeAt(0)<=57}else o=!1 +if(!o)break +q=q*10+(a[r].charCodeAt(0)-48);++r +$.ci=r}if(r===s||r-s>3||q>255)return!1;++m +if(m<4&&p&&a[r]===".")$.ci=r+1}return m===4}, +aTw(a){var s,r,q,p,o,n,m,l +for(s=a.length,r=!1,q=0;p=$.ci,p=65&&n<=70))if(!(n>=97&&n<=102))m=n>=48&&n<=57}else m=!1 +if(!m)break;++o +$.ci=o}if(o>=s)break +if(o>p&&q>2&&a[o]==="."){$.ci=p +if(!A.aHM(a))return!1 +return r?q<6:q===6}if(o-p>4)return!1 +if(a[o]!==":")break +p=o +for(;;){if(!(p2)return!1 +if(l===2){if(r)return!1 +q+=2 +r=!0}else ++q}if(q<2)return!1 +return r?q<7:q===7}, +aHO(a){var s,r,q,p +$.ci=0 +s=a.length +if(s===0||s>=255)return!1 +if(a[0]==='"'){if(!A.aTx(a,!0)||$.ci>=s)return!1}else{if(!A.aHL(a,!0)||$.ci>=s)return!1 +while(r=$.ci,a[r]==="."){++r +$.ci=r +if(r>=s)return!1 +if(!A.aHL(a,!0))return!1 +if($.ci>=s)return!1}}r=$.ci +q=r+1 +p=!0 +if(q=s)return!1 +if(B.c.p(B.c.bZ(a,r-1).toLowerCase(),"ipv6:")){$.ci=r+5 +if(!A.aTw(a))return!1}else if(!A.aHM(a))return!1 +r=$.ci +if(rb.gq(b))q.c=B.a_t +else q.c=B.a_s +s=a}else s=a +s.el(q.gqn()) +s=q.gGT() +q.a.Z(0,s) +r=q.b +if(r!=null){r.bk() +r.cF$.E(0,s)}return q}, +aGB(a,b,c){return new A.yw(a,b,new A.ba(A.b([],t.F),t.R),new A.er(A.w(t.M,t.S),t.PD),0,c.i("yw<0>"))}, +SV:function SV(){}, +SW:function SW(){}, +po:function po(a,b){this.a=a +this.$ti=b}, +yx:function yx(){}, +rj:function rj(a,b,c){var _=this +_.c=_.b=_.a=null +_.co$=a +_.cF$=b +_.mY$=c}, +hi:function hi(a,b,c){this.a=a +this.co$=b +this.mY$=c}, +zx:function zx(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +a_J:function a_J(a,b){this.a=a +this.b=b}, +t0:function t0(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.f=_.e=null +_.co$=d +_.cF$=e}, +ui:function ui(){}, +yw:function yw(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.co$=c +_.cF$=d +_.mY$=e +_.$ti=f}, +Ft:function Ft(){}, +Fu:function Fu(){}, +Fv:function Fv(){}, +Uo:function Uo(){}, +Y_:function Y_(){}, +Y0:function Y0(){}, +Y1:function Y1(){}, +YW:function YW(){}, +YX:function YX(){}, +a_G:function a_G(){}, +a_H:function a_H(){}, +a_I:function a_I(){}, +Ce:function Ce(){}, +fk:function fk(){}, +Gy:function Gy(){}, +D7:function D7(a){this.a=a}, +ed:function ed(a,b,c){this.a=a +this.b=b +this.c=c}, +Ry:function Ry(a,b){this.a=a +this.c=b}, +Ey:function Ey(a){this.a=a}, +eo:function eo(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Ex:function Ex(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +lv:function lv(a){this.a=a}, +Us:function Us(){}, +yv:function yv(){}, +yu:function yu(){}, +pq:function pq(){}, +mV:function mV(){}, +dO(a,b,c){return new A.ay(a,b,c.i("ay<0>"))}, +e9(a){return new A.fl(a)}, +an:function an(){}, +al:function al(a,b,c){this.a=a +this.b=b +this.$ti=c}, +fa:function fa(a,b,c){this.a=a +this.b=b +this.$ti=c}, +ay:function ay(a,b,c){this.a=a +this.b=b +this.$ti=c}, +D1:function D1(a,b,c,d){var _=this +_.c=a +_.a=b +_.b=c +_.$ti=d}, +fj:function fj(a,b){this.a=a +this.b=b}, +R5:function R5(a,b){this.a=a +this.b=b}, +Cv:function Cv(a,b){this.a=a +this.b=b}, +nx:function nx(a,b){this.a=a +this.b=b}, +fl:function fl(a){this.a=a}, +Jd:function Jd(){}, +aKD(a,b){var s=new A.EO(A.b([],b.i("D>")),A.b([],t.mz),b.i("EO<0>")) +s.a62(a,b) +return s}, +aKE(a,b,c){return new A.mh(a,b,c.i("mh<0>"))}, +EO:function EO(a,b,c){this.a=a +this.b=b +this.$ti=c}, +mh:function mh(a,b,c){this.a=a +this.b=b +this.$ti=c}, +W4:function W4(a,b){this.a=a +this.b=b}, +aSh(a,b){return new A.zq(a,!0,1,b)}, +zq:function zq(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +U9:function U9(a,b){var _=this +_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +U8:function U8(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.a=f}, +Jk:function Jk(){}, +aHc(a,b,c,d,e,f,g,h,i){return new A.zr(c,h,d,e,g,f,i,b,a,null)}, +aHd(){var s,r=A.aM() +$label0$0:{if(B.L===r||B.ad===r||B.bw===r){s=70 +break $label0$0}if(B.aY===r||B.bx===r||B.by===r){s=0 +break $label0$0}s=null}return s}, +ul:function ul(a,b){this.a=a +this.b=b}, +aqC:function aqC(a,b){this.a=a +this.b=b}, +zr:function zr(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.w=e +_.y=f +_.Q=g +_.as=h +_.ax=i +_.a=j}, +FB:function FB(a,b,c){var _=this +_.d=a +_.r=_.f=_.e=$ +_.x=_.w=!1 +_.y=$ +_.dV$=b +_.bq$=c +_.c=_.a=null}, +aqv:function aqv(){}, +aqx:function aqx(a){this.a=a}, +aqy:function aqy(a){this.a=a}, +aqw:function aqw(a){this.a=a}, +aqu:function aqu(a,b){this.a=a +this.b=b}, +aqz:function aqz(a,b){this.a=a +this.b=b}, +aqA:function aqA(){}, +aqB:function aqB(a,b,c){this.a=a +this.b=b +this.c=c}, +Jl:function Jl(){}, +cH:function cH(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k}, +a5_:function a5_(a){this.a=a}, +Uc:function Uc(){}, +Ub:function Ub(){}, +a4Z:function a4Z(){}, +a0B:function a0B(){}, +LU:function LU(a,b,c){this.c=a +this.d=b +this.a=c}, +aSi(a,b){return new A.pR(a,b,null)}, +pR:function pR(a,b,c){this.c=a +this.f=b +this.a=c}, +FC:function FC(){this.d=!1 +this.c=this.a=null}, +aqD:function aqD(a){this.a=a}, +aqE:function aqE(a){this.a=a}, +aHe(a,b,c,d,e,f,g,h,i){return new A.LV(h,c,i,d,f,b,e,g,a)}, +LV:function LV(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +Ud:function Ud(){}, +M_:function M_(a,b){this.a=a +this.b=b}, +Ue:function Ue(){}, +M8:function M8(){}, +zu:function zu(a,b,c){this.d=a +this.w=b +this.a=c}, +FE:function FE(a,b,c){var _=this +_.d=a +_.e=0 +_.w=_.r=_.f=$ +_.dV$=b +_.bq$=c +_.c=_.a=null}, +aqN:function aqN(a){this.a=a}, +aqM:function aqM(){}, +aqL:function aqL(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +LW:function LW(a,b,c,d){var _=this +_.e=a +_.w=b +_.x=c +_.a=d}, +Jm:function Jm(){}, +aSk(a){var s,r=a.b +r.toString +s=a.CW +s.toString +r.Wt() +return new A.FA(s,r,new A.a50(a),new A.a51(a))}, +aSl(a,b,c,d,e,f){var s=a.b.cy.a +return new A.zt(new A.wM(e,new A.a52(a),new A.a53(a,f),null,f.i("wM<0>")),c,d,s,null)}, +aSj(a,b,c,d,e){var s +b=A.cw(B.jZ,c,B.o1) +s=$.aG4() +t.o.a(b) +b.l() +return A.rN(e,new A.al(b,s,s.$ti.i("al")),a.ad(t.I).w,!1)}, +aqF(a,b,c){var s,r,q,p,o +if(a==b)return a +if(a==null){s=b.a +if(s==null)s=b +else{r=A.a2(s).i("ae<1,u>") +s=A.a6(new A.ae(s,new A.aqG(c),r),r.i("ax.E")) +s=new A.jT(s)}return s}if(b==null){s=a.a +if(s==null)s=a +else{r=A.a2(s).i("ae<1,u>") +s=A.a6(new A.ae(s,new A.aqH(c),r),r.i("ax.E")) +s=new A.jT(s)}return s}s=A.b([],t.t_) +for(r=b.a,q=a.a,p=0;p>>16&255,B.l.C()>>>8&255,B.l.C()&255):null +return new A.Uj(b,c,s,new A.n7(B.FR.cL(a),d,null),null)}, +aZ0(a,b,c){var s,r,q,p,o,n,m=b.a,l=b.b,k=b.c,j=b.d,i=[new A.am(new A.j(k,j),new A.aG(-b.x,-b.y)),new A.am(new A.j(m,j),new A.aG(b.z,-b.Q)),new A.am(new A.j(m,l),new A.aG(b.e,b.f)),new A.am(new A.j(k,l),new A.aG(-b.r,b.w))],h=B.d.jw(c,1.5707963267948966) +for(m=4+h,l=a.e,s=h;s"))) +return new A.uD(r)}, +nk(a){return new A.uD(a)}, +aHV(a){return a}, +aHX(a,b){var s +if(a.r)return +s=$.aD9 +if(s===0)A.b1n(J.dr(a.a),100,a.b) +else A.aFt().$1("Another exception was thrown: "+a.ga1s().k(0)) +$.aD9=$.aD9+1}, +aHW(a){var s,r,q,p,o,n,m,l,k,j,i,h=A.ab(["dart:async-patch",0,"dart:async",0,"package:stack_trace",0,"class _AssertionError",0,"class _FakeAsync",0,"class _FrameCallbackEntry",0,"class _Timer",0,"class _RawReceivePortImpl",0],t.N,t.S),g=A.aXc(J.aRb(a,"\n")) +for(s=0,r=0;q=g.length,r")).gag(0);j.u();){i=j.d +if(i.b>0)q.push(i.a)}B.b.jr(q) +if(s===1)k.push("(elided one frame from "+B.b.gc7(q)+")") +else if(s>1){j=q.length +if(j>1)q[j-1]="and "+B.b.gae(q) +j="(elided "+s +if(q.length>2)k.push(j+" frames from "+B.b.bn(q,", ")+")") +else k.push(j+" frames from "+B.b.bn(q," ")+")")}return k}, +d6(a){var s=$.kj +if(s!=null)s.$1(a)}, +b1n(a,b,c){var s,r +A.aFt().$1(a) +s=A.b(B.c.Cs((c==null?A.aKc():A.aHV(c)).k(0)).split("\n"),t.s) +r=s.length +s=J.aGr(r!==0?new A.DJ(s,new A.aBq(),t.Ws):s,b) +A.aFt().$1(B.b.bn(A.aHW(s),"\n"))}, +aSL(a,b,c){A.aSM(b,c) +return new A.Mi()}, +aSM(a,b){if(a==null)return A.b([],t.D) +return J.h0(A.aHW(A.b(B.c.Cs(A.k(A.aHV(a))).split("\n"),t.s)),A.b0E(),t.EX).f8(0)}, +aSN(a){return A.aHn(a,!1)}, +aYx(a,b,c){return new A.Vo()}, +oK:function oK(){}, +uB:function uB(a,b,c,d,e,f){var _=this +_.y=a +_.z=b +_.as=c +_.at=d +_.ax=!0 +_.ay=null +_.ch=e +_.CW=f}, +MI:function MI(a,b,c,d,e,f){var _=this +_.y=a +_.z=b +_.as=c +_.at=d +_.ax=!0 +_.ay=null +_.ch=e +_.CW=f}, +MH:function MH(a,b,c,d,e,f){var _=this +_.y=a +_.z=b +_.as=c +_.at=d +_.ax=!0 +_.ay=null +_.ch=e +_.CW=f}, +bO:function bO(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f}, +a88:function a88(a){this.a=a}, +uD:function uD(a){this.a=a}, +a89:function a89(){}, +a8a:function a8a(){}, +a8b:function a8b(){}, +aBq:function aBq(){}, +Mi:function Mi(){}, +Vo:function Vo(){}, +Vq:function Vq(){}, +Vp:function Vp(){}, +KZ:function KZ(){}, +a3k:function a3k(a){this.a=a}, +ac:function ac(){}, +aS:function aS(a){var _=this +_.M$=0 +_.P$=a +_.I$=_.n$=0}, +a4a:function a4a(a){this.a=a}, +tg:function tg(a){this.a=a}, +ct:function ct(a,b){var _=this +_.a=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +aHn(a,b){var s=null +return A.h4("",s,b,B.bb,a,s,s,B.aF,!1,!1,!0,B.d0,s)}, +h4(a,b,c,d,e,f,g,h,i,j,k,l,m){var s +if(g==null)s=i?"MISSING":null +else s=g +return new A.ke(s,f,i,b,d,h)}, +aCT(a,b,c){return new A.Mh()}, +bi(a){return B.c.eb(B.f.lV(J.C(a)&1048575,16),5,"0")}, +aSK(a,b,c,d,e,f,g){return new A.zI()}, +zG:function zG(a,b){this.a=a +this.b=b}, +ll:function ll(a,b){this.a=a +this.b=b}, +av3:function av3(){}, +dJ:function dJ(){}, +ke:function ke(a,b,c,d,e,f){var _=this +_.y=a +_.z=b +_.as=c +_.at=d +_.ax=!0 +_.ay=null +_.ch=e +_.CW=f}, +zH:function zH(){}, +Mh:function Mh(){}, +a7:function a7(){}, +a5C:function a5C(){}, +ir:function ir(){}, +zI:function zI(){}, +UG:function UG(){}, +fK:function fK(){}, +Od:function Od(){}, +kO:function kO(){}, +e3:function e3(a,b){this.a=a +this.$ti=b}, +aEH:function aEH(a){this.$ti=a}, +iw:function iw(){}, +Bk:function Bk(){}, +C4(a){return new A.ba(A.b([],a.i("D<0>")),a.i("ba<0>"))}, +ba:function ba(a,b){var _=this +_.a=a +_.b=!1 +_.c=$ +_.$ti=b}, +er:function er(a,b){this.a=a +this.$ti=b}, +a9p:function a9p(a,b){this.a=a +this.b=b}, +b05(a){return A.bz(a,null,!1,t.X)}, +Ch:function Ch(a){this.a=a}, +azF:function azF(){}, +VA:function VA(a){this.a=a}, +oH:function oH(a,b){this.a=a +this.b=b}, +Gf:function Gf(a,b){this.a=a +this.b=b}, +fv:function fv(a,b){this.a=a +this.b=b}, +anW(a){var s=new DataView(new ArrayBuffer(8)),r=J.tE(B.ax.gc9(s)) +return new A.anU(new Uint8Array(a),s,r)}, +anU:function anU(a,b,c){var _=this +_.a=a +_.b=0 +_.c=!1 +_.d=b +_.e=c}, +Cu:function Cu(a){this.a=a +this.b=0}, +aXc(a){var s=t.ZK +s=A.a6(new A.cd(new A.f4(new A.aY(A.b(B.c.dq(a).split("\n"),t.s),new A.alw(),t.Hd),A.b2B(),t.C9),s),s.i("o.E")) +return s}, +aXb(a){var s,r,q="",p=$.aOU().n_(a) +if(p==null)return null +s=A.b(p.b[1].split("."),t.s) +r=s.length>1?B.b.ga3(s):q +return new A.jM(a,-1,q,q,q,-1,-1,r,s.length>1?A.jN(s,1,null,t.N).bn(0,"."):B.b.gc7(s))}, +aXd(a){var s,r,q,p,o,n,m,l,k,j,i="" +if(a==="")return B.Sa +else if(a==="...")return B.Sb +if(!B.c.bz(a,"#"))return A.aXb(a) +s=A.ck("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$",!0,!1).n_(a).b +r=s[2] +r.toString +q=A.mP(r,".","") +if(B.c.bz(q,"new")){p=q.split(" ").length>1?q.split(" ")[1]:i +if(B.c.p(p,".")){o=p.split(".") +p=o[0] +q=o[1]}else q=""}else if(B.c.p(q,".")){o=q.split(".") +p=o[0] +q=o[1]}else p="" +r=s[3] +r.toString +n=A.d3(r) +m=n.geF(n) +if(n.gf9()==="dart"||n.gf9()==="package"){l=n.gwl()[0] +m=B.c.ZR(n.geF(n),n.gwl()[0]+"/","")}else l=i +r=s[1] +r.toString +r=A.h_(r,null) +k=n.gf9() +j=s[4] +if(j==null)j=-1 +else{j=j +j.toString +j=A.h_(j,null)}s=s[5] +if(s==null)s=-1 +else{s=s +s.toString +s=A.h_(s,null)}return new A.jM(a,r,k,l,m,j,s,p,q)}, +jM:function jM(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +alw:function alw(){}, +dw:function dw(a,b){this.a=a +this.$ti=b}, +alU:function alU(a){this.a=a}, +N8:function N8(a,b){this.a=a +this.b=b}, +d7:function d7(){}, +uG:function uG(a,b,c){this.a=a +this.b=b +this.c=c}, +x1:function x1(a){var _=this +_.a=a +_.b=!0 +_.d=_.c=!1 +_.e=null}, +asn:function asn(a){this.a=a}, +a8W:function a8W(a){this.a=a}, +a8Y:function a8Y(){}, +a8X:function a8X(a,b,c){this.a=a +this.b=b +this.c=c}, +aTX(a,b,c,d,e,f,g){return new A.As(c,g,f,a,e,!1)}, +axz:function axz(a,b,c,d,e,f){var _=this +_.a=a +_.b=!1 +_.c=b +_.d=c +_.r=d +_.w=e +_.x=f +_.y=null}, +AE:function AE(){}, +a8Z:function a8Z(a){this.a=a}, +a9_:function a9_(a,b){this.a=a +this.b=b}, +As:function As(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f}, +aMI(a,b){switch(b.a){case 1:case 4:return a +case 0:case 2:case 3:return a===0?1:a +case 5:return a===0?1:a}}, +aVJ(a,b){var s=A.a2(a) +return new A.cd(new A.f4(new A.aY(a,new A.agB(),s.i("aY<1>")),new A.agC(b),s.i("f4<1,bl?>")),t.FI)}, +agB:function agB(){}, +agC:function agC(a){this.a=a}, +zW(a,b,c,d,e,f){return new A.ux(b,d==null?b:d,f,a,e,c)}, +lm:function lm(a,b){this.a=a +this.b=b}, +hG:function hG(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ux:function ux(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +fm:function fm(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +US:function US(){}, +UT:function UT(){}, +UV:function UV(){}, +UW:function UW(){}, +agD(a,b){var s,r +if(a==null)return b +s=new A.eD(new Float64Array(3)) +s.l8(b.a,b.b,0) +r=a.BX(s).a +return new A.j(r[0],r[1])}, +vr(a,b,c,d){if(a==null)return c +if(b==null)b=A.agD(a,d) +return b.a0(0,A.agD(a,d.a0(0,c)))}, +aDK(a){var s,r,q=new Float64Array(4),p=new A.jR(q) +p.xi(0,0,1,0) +s=new Float64Array(16) +r=new A.b6(s) +r.cB(a) +s[11]=q[3] +s[10]=q[2] +s[9]=q[1] +s[8]=q[0] +r.D8(2,p) +return r}, +aVG(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.r6(o,d,n,0,e,a,h,B.i,0,!1,!1,0,j,i,b,c,0,0,0,l,k,g,m,0,!1,null,null)}, +aVQ(a,b,c,d,e,f,g,h,i,j,k,l){return new A.rb(l,c,k,0,d,a,f,B.i,0,!1,!1,0,h,g,0,b,0,0,0,j,i,0,0,0,!1,null,null)}, +aVL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.lU(a1,f,a0,0,g,c,j,b,a,!1,!1,0,l,k,d,e,q,m,p,o,n,i,s,0,r,null,null)}, +aVI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.nW(a3,g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, +aVK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.nX(a3,g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, +aVH(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.lT(a0,d,s,h,e,b,i,B.i,a,!0,!1,j,l,k,0,c,q,m,p,o,n,g,r,0,!1,null,null)}, +aVM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.r8(a3,e,a2,j,f,c,k,b,a,!0,!1,l,n,m,0,d,s,o,r,q,p,h,a1,i,a0,null,null)}, +aVU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.lW(a1,e,a0,i,f,b,j,B.i,a,!1,!1,k,m,l,c,d,r,n,q,p,o,h,s,0,!1,null,null)}, +aVS(a,b,c,d,e,f,g,h){return new A.rc(f,d,h,b,g,0,c,a,e,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +aVT(a,b,c,d,e,f){return new A.rd(f,b,e,0,c,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +aVR(a,b,c,d,e,f,g){return new A.Pi(e,g,b,f,0,c,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +aVO(a,b,c,d,e,f,g){return new A.lV(g,b,f,c,B.bf,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, +aVP(a,b,c,d,e,f,g,h,i,j,k){return new A.ra(c,d,h,g,k,b,j,e,B.bf,a,f,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,i,null,null)}, +aVN(a,b,c,d,e,f,g){return new A.r9(g,b,f,c,B.bf,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, +aJn(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.r7(a0,e,s,i,f,b,j,B.i,a,!1,!1,0,l,k,c,d,q,m,p,o,n,h,r,0,!1,null,null)}, +pf(a,b){var s +switch(a.a){case 1:return 1 +case 2:case 3:case 5:case 0:case 4:s=b==null?null:b.a +return s==null?18:s}}, +aFa(a,b){var s +switch(a.a){case 1:return 2 +case 2:case 3:case 5:case 0:case 4:if(b==null)s=null +else{s=b.a +s=s!=null?s*2:null}return s==null?36:s}}, +bl:function bl(){}, +e4:function e4(){}, +SO:function SO(){}, +a_R:function a_R(){}, +TQ:function TQ(){}, +r6:function r6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_N:function a_N(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +U_:function U_(){}, +rb:function rb(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_Y:function a_Y(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TV:function TV(){}, +lU:function lU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_T:function a_T(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TT:function TT(){}, +nW:function nW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_Q:function a_Q(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TU:function TU(){}, +nX:function nX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_S:function a_S(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TS:function TS(){}, +lT:function lT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_P:function a_P(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TW:function TW(){}, +r8:function r8(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_U:function a_U(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +U3:function U3(){}, +lW:function lW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a01:function a01(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +ft:function ft(){}, +HJ:function HJ(){}, +U1:function U1(){}, +rc:function rc(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var _=this +_.a9=a +_.ab=b +_.a=c +_.b=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.x=k +_.y=l +_.z=m +_.Q=n +_.as=o +_.at=p +_.ax=q +_.ay=r +_.ch=s +_.CW=a0 +_.cx=a1 +_.cy=a2 +_.db=a3 +_.dx=a4 +_.dy=a5 +_.fr=a6 +_.fx=a7 +_.fy=a8 +_.go=a9}, +a0_:function a0_(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +U2:function U2(){}, +rd:function rd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a00:function a00(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +U0:function U0(){}, +Pi:function Pi(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this +_.a9=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6 +_.fy=a7 +_.go=a8}, +a_Z:function a_Z(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TY:function TY(){}, +lV:function lV(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_W:function a_W(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TZ:function TZ(){}, +ra:function ra(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this +_.id=a +_.k1=b +_.k2=c +_.k3=d +_.a=e +_.b=f +_.c=g +_.d=h +_.e=i +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.z=o +_.Q=p +_.as=q +_.at=r +_.ax=s +_.ay=a0 +_.ch=a1 +_.CW=a2 +_.cx=a3 +_.cy=a4 +_.db=a5 +_.dx=a6 +_.dy=a7 +_.fr=a8 +_.fx=a9 +_.fy=b0 +_.go=b1}, +a_X:function a_X(a,b){var _=this +_.d=_.c=$ +_.e=a +_.f=b +_.b=_.a=$}, +TX:function TX(){}, +r9:function r9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_V:function a_V(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +TR:function TR(){}, +r7:function r7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7}, +a_O:function a_O(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +Xo:function Xo(){}, +Xp:function Xp(){}, +Xq:function Xq(){}, +Xr:function Xr(){}, +Xs:function Xs(){}, +Xt:function Xt(){}, +Xu:function Xu(){}, +Xv:function Xv(){}, +Xw:function Xw(){}, +Xx:function Xx(){}, +Xy:function Xy(){}, +Xz:function Xz(){}, +XA:function XA(){}, +XB:function XB(){}, +XC:function XC(){}, +XD:function XD(){}, +XE:function XE(){}, +XF:function XF(){}, +XG:function XG(){}, +XH:function XH(){}, +XI:function XI(){}, +XJ:function XJ(){}, +XK:function XK(){}, +XL:function XL(){}, +XM:function XM(){}, +XN:function XN(){}, +XO:function XO(){}, +XP:function XP(){}, +XQ:function XQ(){}, +XR:function XR(){}, +XS:function XS(){}, +XT:function XT(){}, +a1l:function a1l(){}, +a1m:function a1m(){}, +a1n:function a1n(){}, +a1o:function a1o(){}, +a1p:function a1p(){}, +a1q:function a1q(){}, +a1r:function a1r(){}, +a1s:function a1s(){}, +a1t:function a1t(){}, +a1u:function a1u(){}, +a1v:function a1v(){}, +a1w:function a1w(){}, +a1x:function a1x(){}, +a1y:function a1y(){}, +a1z:function a1z(){}, +a1A:function a1A(){}, +a1B:function a1B(){}, +a1C:function a1C(){}, +a1D:function a1D(){}, +aU5(a,b){var s=t.S +return new A.jf(B.mC,A.w(s,t.g),A.dj(s),a,b,A.JW(),A.w(s,t.E))}, +aI1(a,b,c){var s=(c-a)/(b-a) +return!isNaN(s)?A.A(s,0,1):s}, +t9:function t9(a,b){this.a=a +this.b=b}, +qd:function qd(a,b,c){this.a=a +this.b=b +this.c=c}, +jf:function jf(a,b,c,d,e,f,g){var _=this +_.ch=_.ay=_.ax=_.at=null +_.dx=_.db=$ +_.dy=a +_.f=b +_.r=c +_.w=null +_.a=d +_.b=null +_.c=e +_.d=f +_.e=g}, +a8w:function a8w(a,b){this.a=a +this.b=b}, +a8u:function a8u(a){this.a=a}, +a8v:function a8v(a){this.a=a}, +Vz:function Vz(){}, +us:function us(a){this.a=a}, +a9S(){var s=A.b([],t.om),r=new A.b6(new Float64Array(16)) +r.dF() +return new A.lB(s,A.b([r],t.Xr),A.b([],t.cR))}, +hM:function hM(a,b){this.a=a +this.b=null +this.$ti=b}, +xP:function xP(){}, +GI:function GI(a){this.a=a}, +xj:function xj(a){this.a=a}, +lB:function lB(a,b,c){this.a=a +this.b=b +this.c=c}, +aby(a,b){var s=t.S +return new A.jo(B.d2,-1,null,B.d6,A.w(s,t.g),A.dj(s),a,b,A.b2a(),A.w(s,t.E))}, +aUQ(a){return a===1||a===2||a===4}, +v2:function v2(a,b){this.a=a +this.b=b}, +Bt:function Bt(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +v1:function v1(a,b,c){this.a=a +this.b=b +this.c=c}, +jo:function jo(a,b,c,d,e,f,g,h,i,j){var _=this +_.k2=!1 +_.S=_.a2=_.X=_.I=_.n=_.P=_.M=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=null +_.at=a +_.ax=b +_.ay=c +_.ch=d +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=e +_.r=f +_.w=null +_.a=g +_.b=null +_.c=h +_.d=i +_.e=j}, +abB:function abB(a,b){this.a=a +this.b=b}, +abA:function abA(a,b){this.a=a +this.b=b}, +abz:function abz(a,b){this.a=a +this.b=b}, +Wm:function Wm(){}, +Wn:function Wn(){}, +Wo:function Wo(){}, +mG:function mG(a,b,c){this.a=a +this.b=b +this.c=c}, +aEy:function aEy(a,b){this.a=a +this.b=b}, +Ck:function Ck(a){this.a=a +this.b=$}, +agJ:function agJ(){}, +O4:function O4(a,b,c){this.a=a +this.b=b +this.c=c}, +aTa(a){return new A.jS(a.gcK(a),A.bz(20,null,!1,t.av))}, +aTb(a){return a===1}, +aEh(a,b){var s=t.S +return new A.i7(B.a9,B.e7,A.a20(),B.cy,A.w(s,t.GY),A.w(s,t.v),B.i,A.b([],t.t),A.w(s,t.g),A.dj(s),a,b,A.a21(),A.w(s,t.E))}, +aDm(a,b){var s=t.S +return new A.hN(B.a9,B.e7,A.a20(),B.cy,A.w(s,t.GY),A.w(s,t.v),B.i,A.b([],t.t),A.w(s,t.g),A.dj(s),a,b,A.a21(),A.w(s,t.E))}, +aJk(a,b){var s=t.S +return new A.jz(B.a9,B.e7,A.a20(),B.cy,A.w(s,t.GY),A.w(s,t.v),B.i,A.b([],t.t),A.w(s,t.g),A.dj(s),a,b,A.a21(),A.w(s,t.E))}, +FU:function FU(a,b){this.a=a +this.b=b}, +hF:function hF(){}, +a64:function a64(a,b){this.a=a +this.b=b}, +a69:function a69(a,b){this.a=a +this.b=b}, +a6a:function a6a(a,b){this.a=a +this.b=b}, +a65:function a65(){}, +a66:function a66(a,b){this.a=a +this.b=b}, +a67:function a67(a){this.a=a}, +a68:function a68(a,b){this.a=a +this.b=b}, +i7:function i7(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.at=a +_.ax=b +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null +_.fr=!1 +_.fx=c +_.fy=d +_.k1=_.id=_.go=$ +_.k4=_.k3=_.k2=null +_.ok=$ +_.p1=!1 +_.p2=e +_.p3=f +_.p4=null +_.R8=g +_.RG=h +_.rx=null +_.f=i +_.r=j +_.w=null +_.a=k +_.b=null +_.c=l +_.d=m +_.e=n}, +hN:function hN(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.at=a +_.ax=b +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null +_.fr=!1 +_.fx=c +_.fy=d +_.k1=_.id=_.go=$ +_.k4=_.k3=_.k2=null +_.ok=$ +_.p1=!1 +_.p2=e +_.p3=f +_.p4=null +_.R8=g +_.RG=h +_.rx=null +_.f=i +_.r=j +_.w=null +_.a=k +_.b=null +_.c=l +_.d=m +_.e=n}, +jz:function jz(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.at=a +_.ax=b +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null +_.fr=!1 +_.fx=c +_.fy=d +_.k1=_.id=_.go=$ +_.k4=_.k3=_.k2=null +_.ok=$ +_.p1=!1 +_.p2=e +_.p3=f +_.p4=null +_.R8=g +_.RG=h +_.rx=null +_.f=i +_.r=j +_.w=null +_.a=k +_.b=null +_.c=l +_.d=m +_.e=n}, +UR:function UR(a,b){this.a=a +this.b=b}, +aT9(a){return a===1}, +U5:function U5(){this.a=!1}, +xK:function xK(a,b,c,d,e){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=!1}, +ja:function ja(a,b,c,d,e){var _=this +_.y=_.x=_.w=_.r=_.f=null +_.z=a +_.a=b +_.b=null +_.c=c +_.d=d +_.e=e}, +agE:function agE(a,b){this.a=a +this.b=b}, +agG:function agG(){}, +agF:function agF(a,b,c){this.a=a +this.b=b +this.c=c}, +agH:function agH(){this.b=this.a=null}, +aUa(a){return!0}, +Mv:function Mv(a,b){this.a=a +this.b=b}, +Oz:function Oz(a,b){this.a=a +this.b=b}, +d8:function d8(){}, +C8:function C8(){}, +AF:function AF(a,b){this.a=a +this.b=b}, +vt:function vt(){}, +agO:function agO(a,b){this.a=a +this.b=b}, +ex:function ex(a,b){this.a=a +this.b=b}, +VD:function VD(){}, +am3(a,b,c){var s=t.S +return new A.hq(B.bd,-1,b,B.d6,A.w(s,t.g),A.dj(s),a,c,A.JW(),A.w(s,t.E))}, +wc:function wc(a,b,c){this.a=a +this.b=b +this.c=c}, +op:function op(a,b,c){this.a=a +this.b=b +this.c=c}, +Ef:function Ef(a){this.a=a}, +KX:function KX(){}, +hq:function hq(a,b,c,d,e,f,g,h,i,j){var _=this +_.bO=_.aL=_.b9=_.aX=_.au=_.ab=_.a9=_.S=_.a2=_.X=_.I=_.n=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=a +_.ax=b +_.ay=c +_.ch=d +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=e +_.r=f +_.w=null +_.a=g +_.b=null +_.c=h +_.d=i +_.e=j}, +am4:function am4(a,b){this.a=a +this.b=b}, +am5:function am5(a,b){this.a=a +this.b=b}, +am7:function am7(a,b){this.a=a +this.b=b}, +am8:function am8(a,b){this.a=a +this.b=b}, +am9:function am9(a){this.a=a}, +am6:function am6(a,b){this.a=a +this.b=b}, +a_8:function a_8(){}, +a_e:function a_e(){}, +FV:function FV(a,b){this.a=a +this.b=b}, +Ea:function Ea(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Ed:function Ed(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Ec:function Ec(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Ee:function Ee(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f +_.w=g +_.x=h}, +Eb:function Eb(a,b,c,d){var _=this +_.a=a +_.b=b +_.d=c +_.e=d}, +Ix:function Ix(){}, +yI:function yI(){}, +a3e:function a3e(a){this.a=a}, +a3f:function a3f(a,b){this.a=a +this.b=b}, +a3c:function a3c(a,b){this.a=a +this.b=b}, +a3d:function a3d(a,b){this.a=a +this.b=b}, +a3a:function a3a(a,b){this.a=a +this.b=b}, +a3b:function a3b(a,b){this.a=a +this.b=b}, +a39:function a39(a,b){this.a=a +this.b=b}, +kK:function kK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.at=a +_.ch=!0 +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null +_.fy=_.fx=_.fr=!1 +_.id=_.go=null +_.k2=b +_.k3=null +_.p2=_.p1=_.ok=_.k4=$ +_.p4=_.p3=null +_.R8=c +_.lB$=d +_.r9$=e +_.kB$=f +_.AK$=g +_.vv$=h +_.oR$=i +_.vw$=j +_.AL$=k +_.AM$=l +_.f=m +_.r=n +_.w=null +_.a=o +_.b=null +_.c=p +_.d=q +_.e=r}, +kL:function kL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.at=a +_.ch=!0 +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null +_.fy=_.fx=_.fr=!1 +_.id=_.go=null +_.k2=b +_.k3=null +_.p2=_.p1=_.ok=_.k4=$ +_.p4=_.p3=null +_.R8=c +_.lB$=d +_.r9$=e +_.kB$=f +_.AK$=g +_.vv$=h +_.oR$=i +_.vw$=j +_.AL$=k +_.AM$=l +_.f=m +_.r=n +_.w=null +_.a=o +_.b=null +_.c=p +_.d=q +_.e=r}, +Fa:function Fa(){}, +a_9:function a_9(){}, +a_a:function a_a(){}, +a_b:function a_b(){}, +a_c:function a_c(){}, +a_d:function a_d(){}, +aql:function aql(a,b){this.a=a +this.b=b}, +wI:function wI(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.f=_.e=null}, +aDh:function aDh(a,b){this.a=a +this.b=b}, +aUp(a){var s=t.av +return new A.qo(A.bz(20,null,!1,s),a,A.bz(20,null,!1,s))}, +i6:function i6(a){this.a=a}, +oA:function oA(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +H8:function H8(a,b){this.a=a +this.b=b}, +jS:function jS(a,b){var _=this +_.a=a +_.b=null +_.c=b +_.d=0}, +anr:function anr(a,b,c){this.a=a +this.b=b +this.c=c}, +ans:function ans(a,b,c){this.a=a +this.b=b +this.c=c}, +qo:function qo(a,b,c){var _=this +_.e=a +_.a=b +_.b=null +_.c=c +_.d=0}, +v3:function v3(a,b,c){var _=this +_.e=a +_.a=b +_.b=null +_.c=c +_.d=0}, +SP:function SP(){}, +ao_:function ao_(a,b){this.a=a +this.b=b}, +t4:function t4(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +KQ:function KQ(a){this.a=a}, +a32:function a32(){}, +a33:function a33(){}, +a34:function a34(){}, +KP:function KP(a,b,c,d,e,f,g,h,i,j){var _=this +_.k2=a +_.c=b +_.e=c +_.w=d +_.z=e +_.ax=f +_.db=g +_.dy=h +_.fr=i +_.a=j}, +LF:function LF(a){this.a=a}, +a4F:function a4F(){}, +a4G:function a4G(){}, +a4H:function a4H(){}, +LE:function LE(a,b,c,d,e,f,g,h,i,j){var _=this +_.k2=a +_.c=b +_.e=c +_.w=d +_.z=e +_.ax=f +_.db=g +_.dy=h +_.fr=i +_.a=j}, +Mx:function Mx(a){this.a=a}, +a6c:function a6c(){}, +a6d:function a6d(){}, +a6e:function a6e(){}, +Mw:function Mw(a,b,c,d,e,f,g,h,i,j){var _=this +_.k2=a +_.c=b +_.e=c +_.w=d +_.z=e +_.ax=f +_.db=g +_.dy=h +_.fr=i +_.a=j}, +MB:function MB(a){this.a=a}, +a7d:function a7d(){}, +a7e:function a7e(){}, +a7f:function a7f(){}, +MA:function MA(a,b,c,d,e,f,g,h,i,j){var _=this +_.k2=a +_.c=b +_.e=c +_.w=d +_.z=e +_.ax=f +_.db=g +_.dy=h +_.fr=i +_.a=j}, +aRo(a,b,c){var s,r,q,p,o=null,n=a==null +if(n&&b==null)return o +s=c<0.5 +if(s)r=n?o:a.a +else r=b==null?o:b.a +if(s)q=n?o:a.b +else q=b==null?o:b.b +if(s)p=n?o:a.c +else p=b==null?o:b.c +if(s)n=n?o:a.d +else n=b==null?o:b.d +return new A.tG(r,q,p,n)}, +tG:function tG(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +SR:function SR(){}, +aGu(a){return new A.Kq(a.gana(),a.gan9(),null)}, +aCu(a,b){var s=b.c +if(s!=null)return s +switch(A.J(a).w.a){case 2:case 4:return A.aHg(a,b) +case 0:case 1:case 3:case 5:A.f3(a,B.b6,t.C).toString +switch(b.b.a){case 0:s="Cut" +break +case 1:s="Copy" +break +case 2:s="Paste" +break +case 3:s="Select all" +break +case 4:s="Delete".toUpperCase() +break +case 5:s="Look Up" +break +case 6:s="Search Web" +break +case 7:s="Share" +break +case 8:s="Scan text" +break +case 9:s="" +break +default:s=null}return s}}, +aRr(a,b){var s,r,q,p,o,n,m=null +switch(A.J(a).w.a){case 2:return new A.ae(b,new A.a2D(),A.a2(b).i("ae<1,f>")) +case 1:case 0:s=A.b([],t.p) +for(r=0;q=b.length,r")) +case 4:return new A.ae(b,new A.a2F(a),A.a2(b).i("ae<1,f>"))}}, +Kq:function Kq(a,b,c){this.c=a +this.e=b +this.a=c}, +a2D:function a2D(){}, +a2E:function a2E(a){this.a=a}, +a2F:function a2F(a){this.a=a}, +aUS(){return new A.AJ(new A.abK(),A.w(t.K,t.Qu))}, +amY:function amY(a,b){this.a=a +this.b=b}, +By:function By(a,b,c,d,e){var _=this +_.e=a +_.cx=b +_.db=c +_.R8=d +_.a=e}, +abK:function abK(){}, +aeb:function aeb(){}, +GF:function GF(){this.d=$ +this.c=this.a=null}, +aum:function aum(){}, +aun:function aun(){}, +ih(a,b,c){return new A.yB(b,c,a,new A.XX(null,null,1/0,56),null)}, +aRw(a,b){var s=A.aGD(a).as +if(s==null)s=56 +return s+0}, +azx:function azx(a){this.b=a}, +XX:function XX(a,b,c,d){var _=this +_.e=a +_.f=b +_.a=c +_.b=d}, +yB:function yB(a,b,c,d,e){var _=this +_.c=a +_.e=b +_.f=c +_.fy=d +_.a=e}, +a2M:function a2M(a,b){this.a=a +this.b=b}, +F7:function F7(){var _=this +_.d=null +_.e=!1 +_.c=_.a=null}, +aos:function aos(){}, +Td:function Td(a,b){this.c=a +this.a=b}, +Yr:function Yr(a,b,c,d,e){var _=this +_.A=null +_.R=a +_.af=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Ta:function Ta(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.CW=a +_.db=_.cy=_.cx=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r}, +aGD(a){var s=a.ad(t.qH),r=s==null?null:s.gqT(0) +return r==null?A.J(a).p3:r}, +aGC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){return new A.k2(c,f,e,i,j,l,k,g,a,d,n,h,p,q,o,m,b)}, +aRv(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d +if(a===b)return a +s=A.z(a.gb8(a),b.gb8(b),c) +r=A.z(a.gcw(),b.gcw(),c) +q=A.V(a.c,b.c,c) +p=A.V(a.d,b.d,c) +o=A.z(a.gbc(a),b.gbc(b),c) +n=A.z(a.gbu(),b.gbu(),c) +m=A.dv(a.r,b.r,c) +l=A.lC(a.gf4(),b.gf4(),c) +k=A.lC(a.gln(),b.gln(),c) +j=c<0.5 +i=j?a.y:b.y +h=A.V(a.z,b.z,c) +g=A.V(a.Q,b.Q,c) +f=A.V(a.as,b.as,c) +e=A.bm(a.gnl(),b.gnl(),c) +d=A.bm(a.ges(),b.ges(),c) +j=j?a.ay:b.ay +return A.aGC(k,A.cZ(a.ghJ(),b.ghJ(),c),s,i,q,r,l,g,p,o,m,n,j,h,d,f,e)}, +tP:function tP(a,b,c,d,e,f){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.b=e +_.a=f}, +k2:function k2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q}, +Tc:function Tc(){}, +Tb:function Tb(){}, +b06(a,b){var s,r,q,p,o=A.c9() +for(s=null,r=0;r<4;++r){q=a[r] +p=b.$1(q) +if(s==null||p>s){o.b=q +s=p}}return o.aS()}, +BA:function BA(a,b){var _=this +_.c=!0 +_.r=_.f=_.e=_.d=null +_.a=a +_.b=b}, +ae9:function ae9(a,b){this.a=a +this.b=b}, +wK:function wK(a,b){this.a=a +this.b=b}, +ms:function ms(a,b){this.a=a +this.b=b}, +v6:function v6(a,b){var _=this +_.e=!0 +_.r=_.f=$ +_.a=a +_.b=b}, +aea:function aea(a,b){this.a=a +this.b=b}, +aRy(a,b,c){var s,r,q,p,o,n,m +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.V(a.c,b.c,c) +p=A.V(a.d,b.d,c) +o=A.bm(a.e,b.e,c) +n=A.cZ(a.f,b.f,c) +m=A.pn(a.r,b.r,c) +return new A.yH(s,r,q,p,o,n,m,A.ky(a.w,b.w,c))}, +yH:function yH(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +To:function To(){}, +Bz:function Bz(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +Wr:function Wr(){}, +aRB(a,b,c){var s,r,q,p,o,n +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.V(a.b,b.b,c) +if(c<0.5)q=a.c +else q=b.c +p=A.V(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.z(a.f,b.f,c) +return new A.yO(s,r,q,p,o,n,A.cZ(a.r,b.r,c))}, +yO:function yO(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +Tt:function Tt(){}, +aRC(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.V(a.b,b.b,c) +q=A.lC(a.c,b.c,c) +p=A.lC(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.z(a.f,b.f,c) +m=A.bm(a.r,b.r,c) +l=A.bm(a.w,b.w,c) +k=c<0.5 +if(k)j=a.x +else j=b.x +if(k)i=a.y +else i=b.y +if(k)h=a.z +else h=b.z +if(k)g=a.Q +else g=b.Q +if(k)f=a.as +else f=b.as +if(k)k=a.at +else k=b.at +return new A.yP(s,r,q,p,o,n,m,l,j,i,h,g,f,k)}, +yP:function yP(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n}, +Tu:function Tu(){}, +aRD(a,b,c,d,e,f,g,h,i,j,k,l){return new A.yQ(a,h,c,g,l,j,i,b,f,k,d,e,null)}, +aRF(a,b){return A.bK("BottomSheet",B.hs,B.N,null,a)}, +aEp(a){var s=null +return new A.aoS(a,s,s,1,s,s,s,1,B.PR,s,s,s,s,B.n7)}, +yQ:function yQ(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.y=f +_.z=g +_.Q=h +_.at=i +_.ax=j +_.ay=k +_.ch=l +_.a=m}, +Ff:function Ff(a,b){var _=this +_.d=a +_.e=b +_.c=_.a=null}, +aoX:function aoX(a){this.a=a}, +aoV:function aoV(a){this.a=a}, +aoW:function aoW(a,b){this.a=a +this.b=b}, +UU:function UU(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +arj:function arj(a){this.a=a}, +ark:function ark(a){this.a=a}, +Tv:function Tv(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +Ho:function Ho(a,b,c,d,e,f,g,h){var _=this +_.A=a +_.R=b +_.af=c +_.bT=d +_.bB=e +_.D$=f +_.dy=g +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +th:function th(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.a=k +_.$ti=l}, +xf:function xf(a,b){var _=this +_.d=a +_.c=_.a=null +_.$ti=b}, +auK:function auK(a,b){this.a=a +this.b=b}, +auJ:function auJ(a,b){this.a=a +this.b=b}, +auI:function auI(a){this.a=a}, +BK:function BK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9){var _=this +_.jM=a +_.hP=b +_.r1=c +_.lz=d +_.r2=e +_.oN=f +_.mW=g +_.mX=h +_.cv=i +_.dt=j +_.bN=k +_.cn=l +_.c_=m +_.eo=n +_.eA=o +_.fY=p +_.f2=q +_.j4=r +_.r3=s +_.oO=a0 +_.vr=null +_.k3=a1 +_.k4=a2 +_.ok=a3 +_.p1=null +_.p2=!1 +_.p4=_.p3=null +_.R8=a4 +_.RG=a5 +_.rx=a6 +_.ry=a7 +_.to=a8 +_.x1=$ +_.x2=null +_.xr=$ +_.kA$=a9 +_.vu$=b0 +_.at=b1 +_.ax=null +_.ay=!1 +_.CW=_.ch=null +_.cx=b2 +_.cy=!0 +_.dy=_.dx=_.db=null +_.r=b3 +_.a=b4 +_.b=null +_.c=b5 +_.d=b6 +_.e=b7 +_.f=b8 +_.$ti=b9}, +aeR:function aeR(a){this.a=a}, +Fe:function Fe(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +aoT:function aoT(a){this.a=a}, +aoU:function aoU(a){this.a=a}, +aoS:function aoS(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.at=a +_.ax=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n}, +aRE(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.V(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.z(a.f,b.f,c) +m=A.V(a.r,b.r,c) +l=A.dv(a.w,b.w,c) +k=c<0.5 +if(k)j=a.x +else j=b.x +i=A.z(a.y,b.y,c) +h=A.alc(a.z,b.z,c) +if(k)k=a.Q +else k=b.Q +return new A.tU(s,r,q,p,o,n,m,l,j,i,h,k,A.hD(a.as,b.as,c))}, +tU:function tU(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +Tw:function Tw(){}, +aRK(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b)return a +s=c<0.5 +if(s)r=a.a +else r=b.a +if(s)q=a.b +else q=b.b +if(s)p=a.c +else p=b.c +o=A.V(a.d,b.d,c) +n=A.V(a.e,b.e,c) +m=A.cZ(a.f,b.f,c) +if(s)l=a.r +else l=b.r +if(s)k=a.w +else k=b.w +if(s)s=a.x +else s=b.x +return new A.yW(r,q,p,o,n,m,l,k,s)}, +yW:function yW(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +Ty:function Ty(){}, +px(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return new A.bx(a4,d,i,p,r,a2,e,q,n,g,m,k,l,j,a0,s,o,a5,a3,b,f,a,a1,c,h)}, +k6(a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8=null +if(a9==b0)return a9 +s=a9==null +r=s?a8:a9.ghY() +q=b0==null +p=q?a8:b0.ghY() +p=A.aV(r,p,b1,A.yc(),t.p8) +r=s?a8:a9.gb8(a9) +o=q?a8:b0.gb8(b0) +n=t._ +o=A.aV(r,o,b1,A.bV(),n) +r=s?a8:a9.gcw() +r=A.aV(r,q?a8:b0.gcw(),b1,A.bV(),n) +m=s?a8:a9.gdA() +m=A.aV(m,q?a8:b0.gdA(),b1,A.bV(),n) +l=s?a8:a9.gbc(a9) +l=A.aV(l,q?a8:b0.gbc(b0),b1,A.bV(),n) +k=s?a8:a9.gbu() +k=A.aV(k,q?a8:b0.gbu(),b1,A.bV(),n) +j=s?a8:a9.gdl(a9) +i=q?a8:b0.gdl(b0) +h=t.PM +i=A.aV(j,i,b1,A.ye(),h) +j=s?a8:a9.gcl(a9) +g=q?a8:b0.gcl(b0) +g=A.aV(j,g,b1,A.aFf(),t.pc) +j=s?a8:a9.gh3() +f=q?a8:b0.gh3() +e=t.tW +f=A.aV(j,f,b1,A.yd(),e) +j=s?a8:a9.y +j=A.aV(j,q?a8:b0.y,b1,A.yd(),e) +d=s?a8:a9.gh2() +e=A.aV(d,q?a8:b0.gh2(),b1,A.yd(),e) +d=s?a8:a9.gcH() +n=A.aV(d,q?a8:b0.gcH(),b1,A.bV(),n) +d=s?a8:a9.gh1() +h=A.aV(d,q?a8:b0.gh1(),b1,A.ye(),h) +d=b1<0.5 +if(d)c=s?a8:a9.at +else c=q?a8:b0.at +b=s?a8:a9.geh() +b=A.aEk(b,q?a8:b0.geh(),b1) +a=s?a8:a9.gbH(a9) +a0=q?a8:b0.gbH(b0) +a0=A.aV(a,a0,b1,A.a1S(),t.KX) +if(d)a=s?a8:a9.gh4() +else a=q?a8:b0.gh4() +if(d)a1=s?a8:a9.gdP() +else a1=q?a8:b0.gdP() +if(d)a2=s?a8:a9.gh5() +else a2=q?a8:b0.gh5() +if(d)a3=s?a8:a9.cy +else a3=q?a8:b0.cy +if(d)a4=s?a8:a9.db +else a4=q?a8:b0.db +a5=s?a8:a9.dx +a5=A.pn(a5,q?a8:b0.dx,b1) +if(d)a6=s?a8:a9.gfI() +else a6=q?a8:b0.gfI() +if(d)a7=s?a8:a9.fr +else a7=q?a8:b0.fr +if(d)s=s?a8:a9.fx +else s=q?a8:b0.fx +return A.px(a5,a3,a7,o,i,a4,j,s,r,c,n,h,e,f,a,m,g,l,a0,b,a6,k,a2,p,a1)}, +bx:function bx(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5}, +Tz:function Tz(){}, +k5(a,b){if((a==null?b:a)==null)return null +return new A.fV(A.ab([B.u,b,B.eG,a],t.Ag,t._),t.GC)}, +Lb(a,b,c,d){var s +$label0$0:{if(d<=1){s=a +break $label0$0}if(d<2){s=A.cZ(a,b,d-1) +s.toString +break $label0$0}if(d<3){s=A.cZ(b,c,d-2) +s.toString +break $label0$0}s=c +break $label0$0}return s}, +yX:function yX(){}, +Fg:function Fg(a,b){var _=this +_.r=_.f=_.e=_.d=null +_.de$=a +_.aW$=b +_.c=_.a=null}, +apA:function apA(){}, +apx:function apx(a,b,c){this.a=a +this.b=b +this.c=c}, +apy:function apy(a,b){this.a=a +this.b=b}, +apz:function apz(a,b,c){this.a=a +this.b=b +this.c=c}, +apw:function apw(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ap8:function ap8(){}, +ap9:function ap9(){}, +apa:function apa(){}, +apl:function apl(){}, +app:function app(){}, +apq:function apq(){}, +apr:function apr(){}, +aps:function aps(){}, +apt:function apt(){}, +apu:function apu(){}, +apv:function apv(){}, +apb:function apb(){}, +apc:function apc(){}, +apn:function apn(a){this.a=a}, +ap6:function ap6(a){this.a=a}, +apo:function apo(a){this.a=a}, +ap5:function ap5(a){this.a=a}, +apd:function apd(){}, +ape:function ape(){}, +apf:function apf(){}, +apg:function apg(){}, +aph:function aph(){}, +api:function api(){}, +apj:function apj(){}, +apk:function apk(){}, +apm:function apm(a){this.a=a}, +ap7:function ap7(){}, +WH:function WH(a){this.a=a}, +W1:function W1(a,b,c){this.e=a +this.c=b +this.a=c}, +Hw:function Hw(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ax_:function ax_(a,b){this.a=a +this.b=b}, +Jf:function Jf(){}, +a3y:function a3y(a,b){this.a=a +this.b=b}, +Lc:function Lc(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.as=f +_.at=g +_.ax=h}, +TA:function TA(){}, +k8(a,b,c){return new A.u_(b,c,a,null)}, +apD:function apD(a,b){this.a=a +this.b=b}, +u_:function u_(a,b,c,d){var _=this +_.x=a +_.y=b +_.Q=c +_.a=d}, +apC:function apC(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h}, +aRP(a,b,c){var s,r,q,p,o,n +if(a===b)return a +if(c<0.5)s=a.a +else s=b.a +r=A.z(a.b,b.b,c) +q=A.z(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.V(a.e,b.e,c) +n=A.cZ(a.f,b.f,c) +return new A.pz(s,r,q,p,o,n,A.dv(a.r,b.r,c))}, +pz:function pz(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +TE:function TE(){}, +aRQ(a,b,c){var s,r,q,p,o,n +if(a===b)return a +s=A.z(a.b,b.b,c) +r=A.V(a.c,b.c,c) +q=t.KX.a(A.dv(a.d,b.d,c)) +p=A.aV(a.f,b.f,c,A.bV(),t._) +o=A.A1(a.a,b.a,c) +if(c<0.5)n=a.e +else n=b.e +return new A.yZ(o,s,r,q,n,p)}, +yZ:function yZ(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +TF:function TF(){}, +aq8:function aq8(a,b){this.a=a +this.b=b}, +z2:function z2(a,b,c){this.c=a +this.d=b +this.a=c}, +TI:function TI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.d=a +_.e=null +_.IO$=b +_.IP$=c +_.AN$=d +_.IQ$=e +_.IR$=f +_.IS$=g +_.IT$=h +_.IU$=i +_.apt$=j +_.IV$=k +_.vx$=l +_.vy$=m +_.vz$=n +_.de$=o +_.aW$=p +_.c=_.a=null}, +aq6:function aq6(a){this.a=a}, +aq7:function aq7(a,b){this.a=a +this.b=b}, +TH:function TH(a){var _=this +_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=_.go=_.fy=_.fx=_.fr=_.dy=_.dx=null +_.M$=0 +_.P$=a +_.I$=_.n$=0}, +aq1:function aq1(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.y=a +_.z=b +_.a=c +_.b=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.x=k}, +aq5:function aq5(a){this.a=a}, +aq3:function aq3(a){this.a=a}, +aq2:function aq2(a){this.a=a}, +aq4:function aq4(a){this.a=a}, +Jh:function Jh(){}, +Ji:function Ji(){}, +aRV(a,b,c){var s,r,q,p,o,n,m,l +if(a===b)return a +s=c<0.5 +if(s)r=a.a +else r=b.a +q=t._ +p=A.aV(a.b,b.b,c,A.bV(),q) +o=A.aV(a.c,b.c,c,A.bV(),q) +q=A.aV(a.d,b.d,c,A.bV(),q) +n=A.V(a.e,b.e,c) +if(s)m=a.f +else m=b.f +if(s)s=a.r +else s=b.r +l=t.KX.a(A.dv(a.w,b.w,c)) +return new A.u1(r,p,o,q,n,m,s,l,A.aRU(a.x,b.x,c))}, +aRU(a,b,c){if(a==null&&b==null)return null +if(a instanceof A.ib)a=a.x.$1(B.aO) +if(b instanceof A.ib)b=b.x.$1(B.aO) +if(a==null)a=new A.aW(b.a.dh(0),0,B.v,-1) +return A.aX(a,b==null?new A.aW(a.a.dh(0),0,B.v,-1):b,c)}, +u1:function u1(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +TJ:function TJ(){}, +aS_(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2 +if(a3===a4)return a3 +s=A.aV(a3.a,a4.a,a5,A.bV(),t._) +r=A.z(a3.b,a4.b,a5) +q=A.z(a3.c,a4.c,a5) +p=A.z(a3.d,a4.d,a5) +o=A.z(a3.e,a4.e,a5) +n=A.z(a3.f,a4.f,a5) +m=A.z(a3.r,a4.r,a5) +l=A.z(a3.w,a4.w,a5) +k=A.z(a3.x,a4.x,a5) +j=a5<0.5 +if(j)i=a3.y!==!1 +else i=a4.y!==!1 +h=A.z(a3.z,a4.z,a5) +g=A.cZ(a3.Q,a4.Q,a5) +f=A.cZ(a3.as,a4.as,a5) +e=A.aRZ(a3.at,a4.at,a5) +d=A.aDH(a3.ax,a4.ax,a5) +c=A.bm(a3.ay,a4.ay,a5) +b=A.bm(a3.ch,a4.ch,a5) +if(j){j=a3.CW +if(j==null)j=B.ag}else{j=a4.CW +if(j==null)j=B.ag}a=A.V(a3.cx,a4.cx,a5) +a0=A.V(a3.cy,a4.cy,a5) +a1=a3.db +if(a1==null)a2=a4.db!=null +else a2=!0 +if(a2)a1=A.lC(a1,a4.db,a5) +else a1=null +a2=A.hD(a3.dx,a4.dx,a5) +return new A.z3(s,r,q,p,o,n,m,l,k,i,h,g,f,e,d,c,b,j,a,a0,a1,a2,A.hD(a3.dy,a4.dy,a5))}, +aRZ(a,b,c){if(a==null&&b==null)return null +if(a instanceof A.ib)a=a.x.$1(B.aO) +if(b instanceof A.ib)b=b.x.$1(B.aO) +if(a==null)a=new A.aW(b.a.dh(0),0,B.v,-1) +return A.aX(a,b==null?new A.aW(a.a.dh(0),0,B.v,-1):b,c)}, +z3:function z3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3}, +TL:function TL(){}, +Li:function Li(a,b,c,d){var _=this +_.c=a +_.d=b +_.y=c +_.a=d}, +a4K(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0){return new A.ud(b,a7,k,a8,l,a9,b0,m,n,b2,o,b3,p,b4,b5,q,r,c7,a1,c8,a2,c9,d0,a3,a4,c,h,d,i,b7,s,c6,c4,b8,c3,c2,b9,c0,c1,a0,a5,a6,b6,b1,f,j,e,c5,a,g)}, +aH3(d1,d2,d3,d4,d5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0=A.aSb(d1,d5,B.Gx,0) +if(d3==null){s=$.K0().bi(d0).d +s===$&&A.a() +s=A.bq(s)}else s=d3 +if(d2==null){r=$.aOb().bi(d0).d +r===$&&A.a() +r=A.bq(r)}else r=d2 +q=$.K1().bi(d0).d +q===$&&A.a() +q=A.bq(q) +p=$.aOc().bi(d0).d +p===$&&A.a() +p=A.bq(p) +o=$.K2().bi(d0).d +o===$&&A.a() +o=A.bq(o) +n=$.K3().bi(d0).d +n===$&&A.a() +n=A.bq(n) +m=$.aOd().bi(d0).d +m===$&&A.a() +m=A.bq(m) +l=$.aOe().bi(d0).d +l===$&&A.a() +l=A.bq(l) +if(d4==null){k=$.a27().bi(d0).d +k===$&&A.a() +k=A.bq(k)}else k=d4 +j=$.aOf().bi(d0).d +j===$&&A.a() +j=A.bq(j) +i=$.K4().bi(d0).d +i===$&&A.a() +i=A.bq(i) +h=$.aOg().bi(d0).d +h===$&&A.a() +h=A.bq(h) +g=$.K5().bi(d0).d +g===$&&A.a() +g=A.bq(g) +f=$.K6().bi(d0).d +f===$&&A.a() +f=A.bq(f) +e=$.aOh().bi(d0).d +e===$&&A.a() +e=A.bq(e) +d=$.aOi().bi(d0).d +d===$&&A.a() +d=A.bq(d) +c=$.a28().bi(d0).d +c===$&&A.a() +c=A.bq(c) +b=$.aOl().bi(d0).d +b===$&&A.a() +b=A.bq(b) +a=$.K7().bi(d0).d +a===$&&A.a() +a=A.bq(a) +a0=$.aOm().bi(d0).d +a0===$&&A.a() +a0=A.bq(a0) +a1=$.K8().bi(d0).d +a1===$&&A.a() +a1=A.bq(a1) +a2=$.K9().bi(d0).d +a2===$&&A.a() +a2=A.bq(a2) +a3=$.aOn().bi(d0).d +a3===$&&A.a() +a3=A.bq(a3) +a4=$.aOo().bi(d0).d +a4===$&&A.a() +a4=A.bq(a4) +a5=$.a25().bi(d0).d +a5===$&&A.a() +a5=A.bq(a5) +a6=$.aO9().bi(d0).d +a6===$&&A.a() +a6=A.bq(a6) +a7=$.a26().bi(d0).d +a7===$&&A.a() +a7=A.bq(a7) +a8=$.aOa().bi(d0).d +a8===$&&A.a() +a8=A.bq(a8) +a9=$.aOp().bi(d0).d +a9===$&&A.a() +a9=A.bq(a9) +b0=$.aOq().bi(d0).d +b0===$&&A.a() +b0=A.bq(b0) +b1=$.aOt().bi(d0).d +b1===$&&A.a() +b1=A.bq(b1) +b2=$.eG().bi(d0).d +b2===$&&A.a() +b2=A.bq(b2) +b3=$.eF().bi(d0).d +b3===$&&A.a() +b3=A.bq(b3) +b4=$.aOy().bi(d0).d +b4===$&&A.a() +b4=A.bq(b4) +b5=$.aOx().bi(d0).d +b5===$&&A.a() +b5=A.bq(b5) +b6=$.aOu().bi(d0).d +b6===$&&A.a() +b6=A.bq(b6) +b7=$.aOv().bi(d0).d +b7===$&&A.a() +b7=A.bq(b7) +b8=$.aOw().bi(d0).d +b8===$&&A.a() +b8=A.bq(b8) +b9=$.aOj().bi(d0).d +b9===$&&A.a() +b9=A.bq(b9) +c0=$.aOk().bi(d0).d +c0===$&&A.a() +c0=A.bq(c0) +c1=$.aC9().bi(d0).d +c1===$&&A.a() +c1=A.bq(c1) +c2=$.aO6().bi(d0).d +c2===$&&A.a() +c2=A.bq(c2) +c3=$.aO7().bi(d0).d +c3===$&&A.a() +c3=A.bq(c3) +c4=$.aOs().bi(d0).d +c4===$&&A.a() +c4=A.bq(c4) +c5=$.aOr().bi(d0).d +c5===$&&A.a() +c5=A.bq(c5) +c6=$.K0().bi(d0).d +c6===$&&A.a() +c6=A.bq(c6) +c7=$.aFN().bi(d0).d +c7===$&&A.a() +c7=A.bq(c7) +c8=$.aO8().bi(d0).d +c8===$&&A.a() +c8=A.bq(c8) +c9=$.aOz().bi(d0).d +c9===$&&A.a() +c9=A.bq(c9) +return A.a4K(c7,d1,a5,a7,c3,c1,c8,a6,a8,c2,r,p,m,l,j,h,e,d,b9,c0,b,a0,a3,a4,a9,b0,s,q,o,n,c5,k,i,g,f,c4,b1,b3,b6,b7,b8,b5,b4,b2,c6,c9,c,a,a1,a2)}, +aSc(d5,d6,d7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4 +if(d5===d6)return d5 +s=d7<0.5?d5.a:d6.a +r=d5.b +q=d6.b +p=A.z(r,q,d7) +p.toString +o=d5.c +n=d6.c +m=A.z(o,n,d7) +m.toString +l=d5.d +if(l==null)l=r +k=d6.d +l=A.z(l,k==null?q:k,d7) +k=d5.e +if(k==null)k=o +j=d6.e +k=A.z(k,j==null?n:j,d7) +j=d5.f +if(j==null)j=r +i=d6.f +j=A.z(j,i==null?q:i,d7) +i=d5.r +if(i==null)i=r +h=d6.r +i=A.z(i,h==null?q:h,d7) +h=d5.w +if(h==null)h=o +g=d6.w +h=A.z(h,g==null?n:g,d7) +g=d5.x +if(g==null)g=o +f=d6.x +g=A.z(g,f==null?n:f,d7) +f=d5.y +e=d6.y +d=A.z(f,e,d7) +d.toString +c=d5.z +b=d6.z +a=A.z(c,b,d7) +a.toString +a0=d5.Q +if(a0==null)a0=f +a1=d6.Q +a0=A.z(a0,a1==null?e:a1,d7) +a1=d5.as +if(a1==null)a1=c +a2=d6.as +a1=A.z(a1,a2==null?b:a2,d7) +a2=d5.at +if(a2==null)a2=f +a3=d6.at +a2=A.z(a2,a3==null?e:a3,d7) +a3=d5.ax +if(a3==null)a3=f +a4=d6.ax +a3=A.z(a3,a4==null?e:a4,d7) +a4=d5.ay +if(a4==null)a4=c +a5=d6.ay +a4=A.z(a4,a5==null?b:a5,d7) +a5=d5.ch +if(a5==null)a5=c +a6=d6.ch +a5=A.z(a5,a6==null?b:a6,d7) +a6=d5.CW +a7=a6==null +a8=a7?f:a6 +a9=d6.CW +b0=a9==null +a8=A.z(a8,b0?e:a9,d7) +b1=d5.cx +b2=b1==null +b3=b2?c:b1 +b4=d6.cx +b5=b4==null +b3=A.z(b3,b5?b:b4,d7) +b6=d5.cy +if(b6==null)b6=a7?f:a6 +b7=d6.cy +if(b7==null)b7=b0?e:a9 +b7=A.z(b6,b7,d7) +b6=d5.db +if(b6==null)b6=b2?c:b1 +b8=d6.db +if(b8==null)b8=b5?b:b4 +b8=A.z(b6,b8,d7) +b6=d5.dx +if(b6==null)b6=a7?f:a6 +b9=d6.dx +if(b9==null)b9=b0?e:a9 +b9=A.z(b6,b9,d7) +b6=d5.dy +if(b6==null)f=a7?f:a6 +else f=b6 +a6=d6.dy +if(a6==null)e=b0?e:a9 +else e=a6 +e=A.z(f,e,d7) +f=d5.fr +if(f==null)f=b2?c:b1 +a6=d6.fr +if(a6==null)a6=b5?b:b4 +a6=A.z(f,a6,d7) +f=d5.fx +if(f==null)f=b2?c:b1 +c=d6.fx +if(c==null)c=b5?b:b4 +c=A.z(f,c,d7) +f=d5.fy +b=d6.fy +a7=A.z(f,b,d7) +a7.toString +a9=d5.go +b0=d6.go +b1=A.z(a9,b0,d7) +b1.toString +b2=d5.id +f=b2==null?f:b2 +b2=d6.id +f=A.z(f,b2==null?b:b2,d7) +b=d5.k1 +if(b==null)b=a9 +a9=d6.k1 +b=A.z(b,a9==null?b0:a9,d7) +a9=d5.k2 +b0=d6.k2 +b2=A.z(a9,b0,d7) +b2.toString +b4=d5.k3 +b5=d6.k3 +b6=A.z(b4,b5,d7) +b6.toString +c0=d5.ok +if(c0==null)c0=a9 +c1=d6.ok +c0=A.z(c0,c1==null?b0:c1,d7) +c1=d5.p1 +if(c1==null)c1=a9 +c2=d6.p1 +c1=A.z(c1,c2==null?b0:c2,d7) +c2=d5.p2 +if(c2==null)c2=a9 +c3=d6.p2 +c2=A.z(c2,c3==null?b0:c3,d7) +c3=d5.p3 +if(c3==null)c3=a9 +c4=d6.p3 +c3=A.z(c3,c4==null?b0:c4,d7) +c4=d5.p4 +if(c4==null)c4=a9 +c5=d6.p4 +c4=A.z(c4,c5==null?b0:c5,d7) +c5=d5.R8 +if(c5==null)c5=a9 +c6=d6.R8 +c5=A.z(c5,c6==null?b0:c6,d7) +c6=d5.RG +if(c6==null)c6=a9 +c7=d6.RG +c6=A.z(c6,c7==null?b0:c7,d7) +c7=d5.rx +if(c7==null)c7=b4 +c8=d6.rx +c7=A.z(c7,c8==null?b5:c8,d7) +c8=d5.ry +if(c8==null){c8=d5.n +if(c8==null)c8=b4}c9=d6.ry +if(c9==null){c9=d6.n +if(c9==null)c9=b5}c9=A.z(c8,c9,d7) +c8=d5.to +if(c8==null){c8=d5.n +if(c8==null)c8=b4}d0=d6.to +if(d0==null){d0=d6.n +if(d0==null)d0=b5}d0=A.z(c8,d0,d7) +c8=d5.x1 +if(c8==null)c8=B.l +d1=d6.x1 +c8=A.z(c8,d1==null?B.l:d1,d7) +d1=d5.x2 +if(d1==null)d1=B.l +d2=d6.x2 +d1=A.z(d1,d2==null?B.l:d2,d7) +d2=d5.xr +if(d2==null)d2=b4 +d3=d6.xr +d2=A.z(d2,d3==null?b5:d3,d7) +d3=d5.y1 +if(d3==null)d3=a9 +d4=d6.y1 +d3=A.z(d3,d4==null?b0:d4,d7) +d4=d5.y2 +o=d4==null?o:d4 +d4=d6.y2 +o=A.z(o,d4==null?n:d4,d7) +n=d5.M +r=n==null?r:n +n=d6.M +r=A.z(r,n==null?q:n,d7) +q=d5.P +if(q==null)q=a9 +n=d6.P +q=A.z(q,n==null?b0:n,d7) +n=d5.n +if(n==null)n=b4 +b4=d6.n +n=A.z(n,b4==null?b5:b4,d7) +b4=d5.k4 +a9=b4==null?a9:b4 +b4=d6.k4 +return A.a4K(q,s,a7,f,o,d2,n,b1,b,d3,m,k,h,g,a,a1,a4,a5,b6,c7,b3,b8,a6,c,c9,d0,p,l,j,i,d1,d,a0,a2,a3,c8,b2,c1,c4,c5,c6,c3,c2,c0,r,A.z(a9,b4==null?b0:b4,d7),a8,b7,b9,e)}, +aSb(a,b,c,d){var s,r,q,p,o,n,m=a===B.am,l=A.hb(b.gq(b)) +switch(c.a){case 0:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +r=A.bv(r,36) +q=A.bv(l.a,16) +p=A.bv(A.BB(l.a+60),24) +o=A.bv(l.a,6) +n=A.bv(l.a,8) +n=new A.Qv(A.hb(s),B.YU,m,d,r,q,p,o,n,A.bv(25,84)) +s=n +break +case 1:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +q=l.b +q===$&&A.a() +q=A.bv(r,q) +r=l.a +p=l.b +p=A.bv(r,Math.max(p-32,p*0.5)) +r=A.aKy(A.aCZ(A.aKi(l).gamZ())) +o=A.bv(l.a,l.b/8) +n=A.bv(l.a,l.b/8+4) +n=new A.Qq(A.hb(s),B.ds,m,d,q,p,r,o,n,A.bv(25,84)) +s=n +break +case 6:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +q=l.b +q===$&&A.a() +q=A.bv(r,q) +r=l.a +p=l.b +p=A.bv(r,Math.max(p-32,p*0.5)) +r=A.aKy(A.aCZ(B.b.gae(A.aKi(l).alU(3,6)))) +o=A.bv(l.a,l.b/8) +n=A.bv(l.a,l.b/8+4) +n=new A.Qo(A.hb(s),B.dr,m,d,q,p,r,o,n,A.bv(25,84)) +s=n +break +case 2:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +r=A.bv(r,0) +q=A.bv(l.a,0) +p=A.bv(l.a,0) +o=A.bv(l.a,0) +n=A.bv(l.a,0) +n=new A.Qs(A.hb(s),B.ap,m,d,r,q,p,o,n,A.bv(25,84)) +s=n +break +case 3:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +r=A.bv(r,12) +q=A.bv(l.a,8) +p=A.bv(l.a,16) +o=A.bv(l.a,2) +n=A.bv(l.a,2) +n=new A.Qt(A.hb(s),B.YT,m,d,r,q,p,o,n,A.bv(25,84)) +s=n +break +case 4:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +r=A.bv(r,200) +q=A.bv(A.a6g(l,$.aJU,$.aWA),24) +p=A.bv(A.a6g(l,$.aJU,$.aWB),32) +o=A.bv(l.a,10) +n=A.bv(l.a,12) +n=new A.Qw(A.hb(s),B.YV,m,d,r,q,p,o,n,A.bv(25,84)) +s=n +break +case 5:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +r=A.bv(A.BB(r+240),40) +q=A.bv(A.a6g(l,$.aJT,$.aWy),24) +p=A.bv(A.a6g(l,$.aJT,$.aWz),32) +o=A.bv(l.a+15,8) +n=A.bv(l.a+15,12) +n=new A.Qp(A.hb(s),B.YW,m,d,r,q,p,o,n,A.bv(25,84)) +s=n +break +case 7:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +r=A.bv(r,48) +q=A.bv(l.a,16) +p=A.bv(A.BB(l.a+60),24) +o=A.bv(l.a,0) +n=A.bv(l.a,0) +n=new A.Qu(A.hb(s),B.YX,m,d,r,q,p,o,n,A.bv(25,84)) +s=n +break +case 8:s=l.d +s===$&&A.a() +r=l.a +r===$&&A.a() +r=A.bv(A.BB(r-50),48) +q=A.bv(A.BB(l.a-50),36) +p=A.bv(l.a,36) +o=A.bv(l.a,10) +n=A.bv(l.a,16) +n=new A.Qr(A.hb(s),B.YY,m,d,r,q,p,o,n,A.bv(25,84)) +s=n +break +default:s=null}return s}, +a6f:function a6f(a,b){this.a=a +this.b=b}, +ud:function ud(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6 +_.p4=b7 +_.R8=b8 +_.RG=b9 +_.rx=c0 +_.ry=c1 +_.to=c2 +_.x1=c3 +_.x2=c4 +_.xr=c5 +_.y1=c6 +_.y2=c7 +_.M=c8 +_.P=c9 +_.n=d0}, +TO:function TO(){}, +jq:function jq(a,b,c,d,e,f){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +aSu(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e +if(a===b)return a +s=A.a5q(a.a,b.a,c) +r=t._ +q=A.aV(a.b,b.b,c,A.bV(),r) +p=A.V(a.c,b.c,c) +o=A.V(a.d,b.d,c) +n=A.bm(a.e,b.e,c) +r=A.aV(a.f,b.f,c,A.bV(),r) +m=A.V(a.r,b.r,c) +l=A.bm(a.w,b.w,c) +k=A.V(a.x,b.x,c) +j=A.V(a.y,b.y,c) +i=A.V(a.z,b.z,c) +h=A.V(a.Q,b.Q,c) +g=c<0.5 +f=g?a.as:b.as +e=g?a.at:b.at +g=g?a.ax:b.ax +return new A.zA(s,q,p,o,n,r,m,l,k,j,i,h,f,e,g)}, +zA:function zA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o}, +Up:function Up(){}, +aSy(c1,c2,c3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0 +if(c1===c2)return c1 +s=A.z(c1.a,c2.a,c3) +r=A.V(c1.b,c2.b,c3) +q=A.z(c1.c,c2.c,c3) +p=A.z(c1.d,c2.d,c3) +o=A.dv(c1.e,c2.e,c3) +n=A.z(c1.f,c2.f,c3) +m=A.z(c1.r,c2.r,c3) +l=A.bm(c1.w,c2.w,c3) +k=A.bm(c1.x,c2.x,c3) +j=A.bm(c1.y,c2.y,c3) +i=A.bm(c1.z,c2.z,c3) +h=t._ +g=A.aV(c1.Q,c2.Q,c3,A.bV(),h) +f=A.aV(c1.as,c2.as,c3,A.bV(),h) +e=A.aV(c1.at,c2.at,c3,A.bV(),h) +d=t.KX +c=A.aV(c1.ax,c2.ax,c3,A.a1S(),d) +b=A.aV(c1.ay,c2.ay,c3,A.bV(),h) +a=A.aV(c1.ch,c2.ch,c3,A.bV(),h) +a0=A.aSx(c1.CW,c2.CW,c3) +a1=A.bm(c1.cx,c2.cx,c3) +a2=A.aV(c1.cy,c2.cy,c3,A.bV(),h) +a3=A.aV(c1.db,c2.db,c3,A.bV(),h) +a4=A.aV(c1.dx,c2.dx,c3,A.bV(),h) +d=A.aV(c1.dy,c2.dy,c3,A.a1S(),d) +a5=A.z(c1.fr,c2.fr,c3) +a6=A.V(c1.fx,c2.fx,c3) +a7=A.z(c1.fy,c2.fy,c3) +a8=A.z(c1.go,c2.go,c3) +a9=A.dv(c1.id,c2.id,c3) +b0=A.z(c1.k1,c2.k1,c3) +b1=A.z(c1.k2,c2.k2,c3) +b2=A.bm(c1.k3,c2.k3,c3) +b3=A.bm(c1.k4,c2.k4,c3) +b4=A.z(c1.ok,c2.ok,c3) +h=A.aV(c1.p1,c2.p1,c3,A.bV(),h) +b5=A.z(c1.p2,c2.p2,c3) +b6=c3<0.5 +if(b6)b7=c1.gfs() +else b7=c2.gfs() +b8=A.k6(c1.p4,c2.p4,c3) +b9=A.k6(c1.R8,c2.R8,c3) +if(b6)b6=c1.RG +else b6=c2.RG +c0=A.bm(c1.rx,c2.rx,c3) +return new A.zB(s,r,q,p,o,n,m,l,k,j,i,g,f,e,c,b,a,a0,a1,a2,a3,a4,d,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,h,b5,b7,b8,b9,b6,c0,A.z(c1.ry,c2.ry,c3))}, +aSx(a,b,c){if(a==b)return a +if(a==null)return A.aX(new A.aW(b.a.dh(0),0,B.v,-1),b,c) +return A.aX(a,new A.aW(a.a.dh(0),0,B.v,-1),c)}, +zB:function zB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6 +_.p4=b7 +_.R8=b8 +_.RG=b9 +_.rx=c0 +_.ry=c1}, +Ur:function Ur(){}, +UE:function UE(){}, +a5B:function a5B(){}, +a0C:function a0C(){}, +Mf:function Mf(a,b,c){this.c=a +this.d=b +this.a=c}, +aSJ(a,b,c){var s=null +return new A.ur(b,A.ai(c,s,B.aA,s,B.AY.b1(A.J(a).ax.a===B.am?B.k:B.W),s,s),s)}, +ur:function ur(a,b,c){this.c=a +this.d=b +this.a=c}, +aCv(a,b,c){return new A.tK(c,b,a,null)}, +aZM(a,b,c,d){return d}, +aFw(a,b,c,d){var s,r,q=null,p=A.c3(c,!0).c +p.toString +s=A.NK(c,p) +p=A.c3(c,!0) +r=A.aCU(c).z +if(r==null)r=A.J(c).P.z +if(r==null)r=B.S +return p.dn(A.aSO(q,q,r,a,q,b,c,!1,q,q,s,B.B8,!0,d))}, +aSO(a,b,c,d,e,f,g,h,i,j,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k=null +A.f3(g,B.b6,t.C).toString +s=A.b([],t.Zt) +r=$.aq +q=A.kB(B.ca) +p=A.b([],t.wi) +o=$.aw() +n=$.aq +m=a3.i("au<0?>") +l=a3.i("bB<0?>") +return new A.zJ(b,new A.a5D(f,a0,!0),d,"Dismiss",c,B.dO,A.b1s(),a,!1,k,a1,k,s,A.aP(t.f9),new A.bu(k,a3.i("bu>")),new A.bu(k,t.A),new A.Cd(),k,0,new A.bB(new A.au(r,a3.i("au<0?>")),a3.i("bB<0?>")),q,p,i,B.lE,new A.ct(k,o),new A.bB(new A.au(n,m),l),new A.bB(new A.au(n,m),l),a3.i("zJ<0>"))}, +aL1(a){var s=null +return new A.arc(a,s,6,s,s,B.PS,B.a_,s,s,s,s,s,s,B.n,s)}, +Mj:function Mj(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.x=e +_.y=f +_.z=g +_.Q=h +_.as=i +_.ax=j +_.ay=k +_.a=l}, +tK:function tK(a,b,c,d){var _=this +_.f=a +_.x=b +_.Q=c +_.a=d}, +zJ:function zJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this +_.r4=null +_.II=a +_.jM=b +_.hP=c +_.r1=d +_.lz=e +_.r2=f +_.oN=g +_.mW=h +_.mX=i +_.k3=j +_.k4=k +_.ok=l +_.p1=null +_.p2=!1 +_.p4=_.p3=null +_.R8=m +_.RG=n +_.rx=o +_.ry=p +_.to=q +_.x1=$ +_.x2=null +_.xr=$ +_.kA$=r +_.vu$=s +_.at=a0 +_.ax=null +_.ay=!1 +_.CW=_.ch=null +_.cx=a1 +_.cy=!0 +_.dy=_.dx=_.db=null +_.r=a2 +_.a=a3 +_.b=null +_.c=a4 +_.d=a5 +_.e=a6 +_.f=a7 +_.$ti=a8}, +a5D:function a5D(a,b,c){this.a=a +this.b=b +this.c=c}, +arc:function arc(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.ax=a +_.ch=_.ay=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o}, +aCU(a){var s +a.ad(t.jh) +s=A.J(a) +return s.P}, +aSQ(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.V(a.b,b.b,c) +q=A.z(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.dv(a.e,b.e,c) +n=A.pn(a.f,b.f,c) +m=A.z(a.y,b.y,c) +l=A.bm(a.r,b.r,c) +k=A.bm(a.w,b.w,c) +j=A.cZ(a.x,b.x,c) +i=A.z(a.z,b.z,c) +h=A.A1(a.Q,b.Q,c) +if(c<0.5)g=a.as +else g=b.as +return new A.ut(s,r,q,p,o,n,l,k,j,m,i,h,g,A.hD(a.at,b.at,c))}, +ut:function ut(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n}, +UH:function UH(){}, +aSZ(a,b,c){var s,r,q,p,o=A.aHy(a) +A.J(a) +s=A.aL2(a) +r=o.a +q=r +if(q==null)q=s==null?null:s.gci(0) +p=c +if(q==null)return new A.aW(B.l,p,B.v,-1) +return new A.aW(q,p,B.v,-1)}, +aL2(a){return new A.arh(a,null,16,1,0,0,null)}, +zP:function zP(a,b){this.c=a +this.a=b}, +arh:function arh(a,b,c,d,e,f,g){var _=this +_.r=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g}, +aSY(a,b,c){var s,r,q,p,o +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.V(a.b,b.b,c) +q=A.V(a.c,b.c,c) +p=A.V(a.d,b.d,c) +o=A.V(a.e,b.e,c) +return new A.uu(s,r,q,p,o,A.h2(a.f,b.f,c))}, +aHy(a){var s +a.ad(t.Jj) +s=A.J(a) +return s.n}, +uu:function uu(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +UL:function UL(){}, +aTe(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.V(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.dv(a.f,b.f,c) +m=A.dv(a.r,b.r,c) +l=A.V(a.w,b.w,c) +if(c<0.5)k=a.x +else k=b.x +return new A.zX(s,r,q,p,o,n,m,l,k)}, +zX:function zX(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +UX:function UX(){}, +aTf(a,b,c){var s,r,q +if(a===b)return a +s=A.bm(a.a,b.a,c) +if(c<0.5)r=a.gfs() +else r=b.gfs() +q=A.aDB(a.c,b.c,c) +return new A.zY(s,r,q,A.z(a.d,b.d,c))}, +zY:function zY(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +UY:function UY(){}, +jc(a,b,c,d,e,f,g,h,i,j,k){return new A.nf(i,h,g,f,k,c,d,!1,j,!0,null,b,e)}, +aTr(a,b,c,d){var s=null +return new A.V6(c,s,s,s,d,B.n,s,!1,s,!0,s,new A.V7(b,a,d,s,s),s)}, +A4(a,b,c,d,e,f,g,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h=null +$label0$0:{s=h +if(a2==null)break $label0$0 +r=new A.fV(A.ab([B.T,a2.b_(0.1),B.A,a2.b_(0.08),B.E,a2.b_(0.1)],t.l,t._),t.GC) +s=r +break $label0$0}if(g!=null){r=g+2 +q=new A.fV(A.ab([B.u,0,B.T,g+6,B.A,r,B.E,r,B.eG,g],t.Ag,t.i),t.JI)}else q=h +r=A.k5(c,d) +p=A.k5(a2,e) +o=a6==null?h:new A.b2(a6,t.De) +n=A.k5(h,h) +m=a5==null?h:new A.b2(a5,t.mD) +l=a4==null?h:new A.b2(a4,t.W7) +k=a3==null?h:new A.b2(a3,t.W7) +j=a8==null?h:new A.b2(a8,t.y2) +i=a7==null?h:new A.b2(a7,t.dy) +return A.px(a,b,h,r,q,a0,h,h,p,h,n,h,k,l,new A.fV(A.ab([B.u,f,B.eG,a1],t.Ag,t.WV),t.ZX),s,m,o,i,j,a9,h,b0,new A.b2(b1,t.RP),b2)}, +b0g(a){var s=A.J(a),r=s.ok.as,q=r==null?null:r.r +if(q==null)q=14 +r=A.bW(a,B.bz) +r=r==null?null:r.gcA() +return A.Lb(new A.az(24,0,24,0),new A.az(12,0,12,0),new A.az(6,0,6,0),(r==null?B.aB:r).aJ(0,q)/14)}, +nf:function nf(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.at=k +_.ax=l +_.a=m}, +V6:function V6(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.at=k +_.ax=l +_.a=m}, +V7:function V7(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +V4:function V4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.fy=a +_.go=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6}, +arn:function arn(a){this.a=a}, +arp:function arp(a){this.a=a}, +ars:function ars(a){this.a=a}, +aro:function aro(){}, +arq:function arq(a){this.a=a}, +arr:function arr(){}, +aTq(a,b,c){if(a===b)return a +return new A.A3(A.k6(a.a,b.a,c))}, +aHI(a){var s +a.ad(t.dq) +s=A.J(a) +return s.a2}, +A3:function A3(a){this.a=a}, +V5:function V5(){}, +aHJ(a,b,c){if(b!=null&&!b.j(0,B.y))return A.aH7(b.b_(A.aTs(c)),a) +return a}, +aTs(a){var s,r,q,p,o,n +if(a<0)return 0 +for(s=0;r=B.pu[s],q=r.a,a>=q;){if(a===q||s+1===6)return r.b;++s}p=B.pu[s-1] +o=p.a +n=p.b +return n+(a-o)/(q-o)*(r.b-n)}, +mt:function mt(a,b){this.a=a +this.b=b}, +aTL(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.cZ(a.c,b.c,c) +p=A.pn(a.d,b.d,c) +o=A.cZ(a.e,b.e,c) +n=A.z(a.f,b.f,c) +m=A.z(a.r,b.r,c) +l=A.z(a.w,b.w,c) +k=A.z(a.x,b.x,c) +j=A.dv(a.y,b.y,c) +i=A.dv(a.z,b.z,c) +h=c<0.5 +if(h)g=a.Q +else g=b.Q +if(h)h=a.as +else h=b.as +return new A.Ag(s,r,q,p,o,n,m,l,k,j,i,g,h)}, +Ag:function Ag(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +Vd:function Vd(){}, +aTQ(a,b,c){if(a===b)return a +return new A.Al(A.k6(a.a,b.a,c))}, +Al:function Al(a){this.a=a}, +Vj:function Vj(){}, +Ao:function Ao(a,b,c,d,e,f,g,h){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.z=f +_.b=g +_.a=h}, +aXe(a,b){return a.r.a-16-a.e.c-a.a.a+b}, +aKW(a,b,c,d,e){return new A.F6(c,d,a,b,new A.ba(A.b([],t.F),t.R),new A.er(A.w(t.M,t.S),t.PD),0,e.i("F6<0>"))}, +a82:function a82(){}, +alx:function alx(){}, +a7P:function a7P(){}, +a7O:function a7O(){}, +aru:function aru(){}, +a81:function a81(){}, +axY:function axY(){}, +F6:function F6(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=b +_.a=c +_.b=d +_.d=_.c=null +_.co$=e +_.cF$=f +_.mY$=g +_.$ti=h}, +a0D:function a0D(){}, +a0E:function a0E(){}, +aTR(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.Ap(k,a,i,m,a1,c,j,n,b,l,r,d,o,s,a0,p,g,e,f,h,q)}, +aTS(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 +if(a2===a3)return a2 +s=A.z(a2.a,a3.a,a4) +r=A.z(a2.b,a3.b,a4) +q=A.z(a2.c,a3.c,a4) +p=A.z(a2.d,a3.d,a4) +o=A.z(a2.e,a3.e,a4) +n=A.V(a2.f,a3.f,a4) +m=A.V(a2.r,a3.r,a4) +l=A.V(a2.w,a3.w,a4) +k=A.V(a2.x,a3.x,a4) +j=A.V(a2.y,a3.y,a4) +i=A.dv(a2.z,a3.z,a4) +h=a4<0.5 +if(h)g=a2.Q +else g=a3.Q +f=A.V(a2.as,a3.as,a4) +e=A.hD(a2.at,a3.at,a4) +d=A.hD(a2.ax,a3.ax,a4) +c=A.hD(a2.ay,a3.ay,a4) +b=A.hD(a2.ch,a3.ch,a4) +a=A.V(a2.CW,a3.CW,a4) +a0=A.cZ(a2.cx,a3.cx,a4) +a1=A.bm(a2.cy,a3.cy,a4) +if(h)h=a2.db +else h=a3.db +return A.aTR(r,k,n,g,a,a0,b,a1,q,m,s,j,p,l,f,c,h,i,e,d,o)}, +Ap:function Ap(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1}, +Vn:function Vn(){}, +eJ(a,b,c,d,e,f,g,h,i){return new A.qp(d,g,c,a,f,i,b,h,e)}, +uI(a,b,c,d,e,f,g,h,i,j,a0,a1,a2,a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k=null +if(h!=null){$label0$0:{s=h.b_(0.1) +r=h.b_(0.08) +q=h.b_(0.1) +q=new A.fV(A.ab([B.T,s,B.A,r,B.E,q],t.l,t._),t.GC) +s=q +break $label0$0}p=s}else p=k +s=A.k5(b,k) +r=A.k5(h,c) +q=a3==null?k:new A.b2(a3,t.mD) +o=a2==null?k:new A.b2(a2,t.W7) +n=a1==null?k:new A.b2(a1,t.W7) +m=a0==null?k:new A.b2(a0,t.XR) +l=a4==null?k:new A.b2(a4,t.y2) +return A.px(a,k,k,s,k,e,k,k,r,k,k,m,n,o,k,p,q,k,k,l,k,k,a5,k,a6)}, +atd:function atd(a,b){this.a=a +this.b=b}, +qp:function qp(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.e=b +_.w=c +_.z=d +_.ax=e +_.db=f +_.dy=g +_.fr=h +_.a=i}, +I2:function I2(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.a=l}, +Zh:function Zh(){this.c=this.a=this.d=null}, +VQ:function VQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.ch=a +_.CW=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.at=m +_.ax=n +_.a=o}, +VP:function VP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.fy=a +_.id=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6}, +ata:function ata(a){this.a=a}, +atc:function atc(a){this.a=a}, +atb:function atb(){}, +Vk:function Vk(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.fy=a +_.go=b +_.id=$ +_.a=c +_.b=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.x=k +_.y=l +_.z=m +_.Q=n +_.as=o +_.at=p +_.ax=q +_.ay=r +_.ch=s +_.CW=a0 +_.cx=a1 +_.cy=a2 +_.db=a3 +_.dx=a4 +_.dy=a5 +_.fr=a6 +_.fx=a7}, +arN:function arN(a){this.a=a}, +arO:function arO(a){this.a=a}, +arQ:function arQ(a){this.a=a}, +arP:function arP(){}, +Vl:function Vl(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.fy=a +_.go=b +_.id=$ +_.a=c +_.b=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.x=k +_.y=l +_.z=m +_.Q=n +_.as=o +_.at=p +_.ax=q +_.ay=r +_.ch=s +_.CW=a0 +_.cx=a1 +_.cy=a2 +_.db=a3 +_.dx=a4 +_.dy=a5 +_.fr=a6 +_.fx=a7}, +arR:function arR(a){this.a=a}, +arS:function arS(a){this.a=a}, +arU:function arU(a){this.a=a}, +arT:function arT(){}, +Xd:function Xd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.fy=a +_.id=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6}, +avh:function avh(a){this.a=a}, +avi:function avi(a){this.a=a}, +avk:function avk(a){this.a=a}, +avl:function avl(a){this.a=a}, +avj:function avj(){}, +aUq(a,b,c){if(a===b)return a +return new A.km(A.k6(a.a,b.a,c))}, +AQ(a,b){return new A.AP(b,a,null)}, +NC(a){var s=a.ad(t.g5),r=s==null?null:s.w +return r==null?A.J(a).au:r}, +km:function km(a){this.a=a}, +AP:function AP(a,b,c){this.w=a +this.b=b +this.a=c}, +VR:function VR(){}, +aIi(a,b,c,d){return new A.AY(a,b,d,c,null)}, +AY:function AY(a,b,c,d,e){var _=this +_.c=a +_.e=b +_.f=c +_.r=d +_.a=e}, +Gr:function Gr(a){var _=this +_.d=a +_.c=_.a=_.e=null}, +AZ:function AZ(a,b,c,d){var _=this +_.f=_.e=null +_.r=!0 +_.w=a +_.a=b +_.b=c +_.c=d}, +nu:function nu(a,b,c,d,e,f,g,h,i,j){var _=this +_.z=a +_.Q=b +_.as=c +_.at=d +_.ax=e +_.ch=_.ay=$ +_.CW=!0 +_.e=f +_.f=g +_.a=h +_.b=i +_.c=j}, +b_z(a,b,c){if(c!=null)return c +if(b)return new A.aAO(a) +return null}, +aAO:function aAO(a){this.a=a}, +atz:function atz(){}, +B0:function B0(a,b,c,d,e,f,g,h,i,j){var _=this +_.z=a +_.Q=b +_.as=c +_.at=d +_.ax=e +_.db=_.cy=_.cx=_.CW=_.ch=_.ay=$ +_.e=f +_.f=g +_.a=h +_.b=i +_.c=j}, +b_y(a,b,c){if(c!=null)return c +if(b)return new A.aAN(a) +return null}, +b_B(a,b,c,d){var s,r,q,p,o,n +if(b){if(c!=null){s=c.$0() +r=new A.I(s.c-s.a,s.d-s.b)}else r=a.gt(0) +q=d.a0(0,B.i).gcj() +p=d.a0(0,new A.j(0+r.a,0)).gcj() +o=d.a0(0,new A.j(0,0+r.b)).gcj() +n=d.a0(0,r.zL(0,B.i)).gcj() +return Math.ceil(Math.max(Math.max(q,p),Math.max(o,n)))}return 35}, +aAN:function aAN(a){this.a=a}, +atA:function atA(){}, +B1:function B1(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.z=a +_.Q=b +_.as=c +_.at=d +_.ax=e +_.ay=f +_.cx=_.CW=_.ch=$ +_.cy=null +_.e=g +_.f=h +_.a=i +_.b=j +_.c=k}, +uO(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0){var s=null +return new A.NL(d,o,s,s,s,s,n,s,s,s,s,s,s,m,k,!0,B.aq,s,b,e,g,j,i,p,q,r,f,!1,l,!1,h,c,a0,s,s)}, +ny:function ny(){}, +uP:function uP(){}, +H4:function H4(a,b,c){this.f=a +this.b=b +this.a=c}, +B_:function B_(){}, +Gq:function Gq(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k3=a9 +_.k4=b0 +_.ok=b1 +_.p1=b2 +_.p2=b3 +_.p3=b4 +_.R8=b5 +_.RG=b6 +_.a=b7}, +oM:function oM(a,b){this.a=a +this.b=b}, +Gp:function Gp(a,b,c){var _=this +_.e=_.d=null +_.f=!1 +_.r=a +_.w=$ +_.x=null +_.y=b +_.z=null +_.Q=!1 +_.fZ$=c +_.c=_.a=null}, +atx:function atx(){}, +att:function att(a){this.a=a}, +atw:function atw(){}, +aty:function aty(a,b){this.a=a +this.b=b}, +ats:function ats(a,b){this.a=a +this.b=b}, +atv:function atv(a){this.a=a}, +atu:function atu(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +NL:function NL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k3=a9 +_.k4=b0 +_.ok=b1 +_.p1=b2 +_.p2=b3 +_.p3=b4 +_.a=b5}, +Ju:function Ju(){}, +hQ:function hQ(){}, +WZ:function WZ(a){this.a=a}, +jP:function jP(a,b){this.b=a +this.a=b}, +dL:function dL(a,b,c){this.b=a +this.c=b +this.a=c}, +aTT(a){var s +$label0$0:{if(-1===a){s="FloatingLabelAlignment.start" +break $label0$0}if(0===a){s="FloatingLabelAlignment.center" +break $label0$0}s="FloatingLabelAlignment(x: "+B.f.ah(a,1)+")" +break $label0$0}return s}, +iU(a,b){var s=a==null?null:a.ap(B.aK,b,a.gbE()) +return s==null?0:s}, +xu(a,b){var s=a==null?null:a.ap(B.ab,b,a.gbj()) +return s==null?0:s}, +xv(a,b){var s=a==null?null:a.ap(B.aL,b,a.gbD()) +return s==null?0:s}, +fW(a){var s=a==null?null:a.gt(0) +return s==null?B.I:s}, +aZ1(a,b){var s=a.wU(B.o,!0) +return s==null?a.gt(0).b:s}, +aZ2(a,b){var s=a.eU(b,B.o) +return s==null?a.ap(B.R,b,a.gc8()).b:s}, +jk(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7){return new A.nv(b5,b6,b9,c1,c0,a0,a4,a7,a6,a5,b2,a8,b1,b3,b0,a9,!0,!0,k,o,n,m,s,r,b8,d,b7,c5,c7,c4,c9,c8,c6,d2,d1,d6,d5,d3,d4,g,e,f,q,p,a1,b4,l,a2,a3,h,j,b,i,d0,a,c,d7)}, +aDp(a){var s +a.ad(t.lA) +s=A.J(a) +return s.e}, +Gs:function Gs(a){var _=this +_.a=null +_.M$=_.b=0 +_.P$=a +_.I$=_.n$=0}, +Gt:function Gt(a,b){this.a=a +this.b=b}, +W_:function W_(a,b,c,d,e,f,g,h,i){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.a=i}, +Fd:function Fd(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +Tr:function Tr(a,b){var _=this +_.x=_.w=_.r=_.f=_.e=_.d=$ +_.de$=a +_.aW$=b +_.c=_.a=null}, +Gg:function Gg(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.a=j}, +Gh:function Gh(a,b){var _=this +_.d=$ +_.f=_.e=null +_.dV$=a +_.bq$=b +_.c=_.a=null}, +asC:function asC(){}, +asB:function asB(a,b,c){this.a=a +this.b=b +this.c=c}, +Ar:function Ar(a,b){this.a=a +this.b=b}, +MW:function MW(){}, +eR:function eR(a,b){this.a=a +this.b=b}, +Ut:function Ut(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4}, +awR:function awR(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Hr:function Hr(a,b,c,d,e,f,g,h,i,j){var _=this +_.n=a +_.I=b +_.X=c +_.a2=d +_.S=e +_.a9=f +_.ab=g +_.au=null +_.df$=h +_.dy=i +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=j +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +awX:function awX(a){this.a=a}, +awW:function awW(a){this.a=a}, +awV:function awV(a,b){this.a=a +this.b=b}, +awU:function awU(a){this.a=a}, +awS:function awS(a){this.a=a}, +awT:function awT(){}, +Uw:function Uw(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.a=g}, +qs:function qs(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.a=j}, +Gu:function Gu(a,b,c){var _=this +_.f=_.e=_.d=$ +_.r=a +_.y=_.x=_.w=$ +_.Q=_.z=null +_.de$=b +_.aW$=c +_.c=_.a=null}, +atM:function atM(){}, +atN:function atN(){}, +nv:function nv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6 +_.p4=b7 +_.R8=b8 +_.RG=b9 +_.rx=c0 +_.ry=c1 +_.to=c2 +_.x1=c3 +_.x2=c4 +_.xr=c5 +_.y1=c6 +_.y2=c7 +_.M=c8 +_.P=c9 +_.n=d0 +_.I=d1 +_.X=d2 +_.a2=d3 +_.S=d4 +_.a9=d5 +_.ab=d6 +_.au=d7}, +B2:function B2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6 +_.p4=b7}, +atB:function atB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8){var _=this +_.R8=a +_.rx=_.RG=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6 +_.fy=a7 +_.go=a8 +_.id=a9 +_.k1=b0 +_.k2=b1 +_.k3=b2 +_.k4=b3 +_.ok=b4 +_.p1=b5 +_.p2=b6 +_.p3=b7 +_.p4=b8}, +atH:function atH(a){this.a=a}, +atE:function atE(a){this.a=a}, +atC:function atC(a){this.a=a}, +atJ:function atJ(a){this.a=a}, +atK:function atK(a){this.a=a}, +atL:function atL(a){this.a=a}, +atI:function atI(a){this.a=a}, +atF:function atF(a){this.a=a}, +atG:function atG(a){this.a=a}, +atD:function atD(a){this.a=a}, +W0:function W0(){}, +Je:function Je(){}, +Jt:function Jt(){}, +Jv:function Jv(){}, +a0W:function a0W(){}, +uZ(a,b,c,d,e){return new A.O8(a,d,c,e,b,null)}, +aZ3(a,b){var s=a.b +s.toString +t.q.a(s).a=b}, +qC:function qC(a,b){this.a=a +this.b=b}, +O8:function O8(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.cy=e +_.a=f}, +abt:function abt(a){this.a=a}, +VY:function VY(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +jW:function jW(a,b){this.a=a +this.b=b}, +Wh:function Wh(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.as=j +_.at=k +_.ax=l +_.ay=m +_.ch=n +_.CW=o +_.a=p}, +Hz:function Hz(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.n=a +_.I=b +_.X=c +_.a2=d +_.S=e +_.a9=f +_.ab=g +_.au=h +_.aX=i +_.b9=j +_.aL=k +_.df$=l +_.dy=m +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=n +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ax2:function ax2(a,b){this.a=a +this.b=b}, +ax1:function ax1(a){this.a=a}, +au3:function au3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.dy=a +_.fy=_.fx=_.fr=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3}, +a11:function a11(){}, +aUL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.v_(c,o,p,m,f,r,a1,q,h,a,s,n,e,k,i,j,d,l,a2,a0,b,g)}, +aUM(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2 +if(a3===a4)return a3 +s=a5<0.5 +if(s)r=a3.a +else r=a4.a +q=A.dv(a3.b,a4.b,a5) +if(s)p=a3.c +else p=a4.c +o=A.z(a3.d,a4.d,a5) +n=A.z(a3.e,a4.e,a5) +m=A.z(a3.f,a4.f,a5) +l=A.bm(a3.r,a4.r,a5) +k=A.bm(a3.w,a4.w,a5) +j=A.bm(a3.x,a4.x,a5) +i=A.cZ(a3.y,a4.y,a5) +h=A.z(a3.z,a4.z,a5) +g=A.z(a3.Q,a4.Q,a5) +f=A.V(a3.as,a4.as,a5) +e=A.V(a3.at,a4.at,a5) +d=A.V(a3.ax,a4.ax,a5) +c=A.V(a3.ay,a4.ay,a5) +if(s)b=a3.ch +else b=a4.ch +if(s)a=a3.CW +else a=a4.CW +if(s)a0=a3.cx +else a0=a4.cx +if(s)a1=a3.cy +else a1=a4.cy +if(s)a2=a3.db +else a2=a4.db +if(s)s=a3.dx +else s=a4.dx +return A.aUL(i,a2,r,b,f,n,s,j,d,c,e,a,o,g,q,p,k,m,h,a1,l,a0)}, +aUN(a){var s=a.ad(t.NJ),r=s==null?null:s.gqT(0) +return r==null?A.J(a).aX:r}, +v_:function v_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2}, +Wi:function Wi(){}, +Ep:function Ep(a,b){this.c=a +this.a=b}, +amK:function amK(){}, +IB:function IB(a){var _=this +_.e=_.d=null +_.f=a +_.c=_.a=null}, +azg:function azg(a){this.a=a}, +azf:function azf(a){this.a=a}, +azh:function azh(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Oh:function Oh(a,b){this.c=a +this.a=b}, +jp(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.Bx(e,n,!1,h,g,j,l,m,k,c,f,b,d,i)}, +aUt(a,b){var s,r,q,p,o,n,m,l,k,j,i=t.TT,h=A.b([a],i),g=A.b([b],i) +for(s=b,r=a;r!==s;){q=r.c +p=s.c +if(q>=p){o=r.gaT(r) +if(!(o instanceof A.t)||!o.pi(r))return null +h.push(o) +r=o}if(q<=p){n=s.gaT(s) +if(!(n instanceof A.t)||!n.pi(s))return null +g.push(n) +s=n}}m=new A.b6(new Float64Array(16)) +m.dF() +l=new A.b6(new Float64Array(16)) +l.dF() +for(k=g.length-1;k>0;k=j){j=k-1 +g[k].cP(g[j],m)}for(k=h.length-1;k>0;k=j){j=k-1 +h[k].cP(h[j],l)}if(l.hM(l)!==0){l.dZ(0,m) +i=l}else i=null +return i}, +qL:function qL(a,b){this.a=a +this.b=b}, +Bx:function Bx(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.a=n}, +Wv:function Wv(a,b,c){var _=this +_.d=a +_.de$=b +_.aW$=c +_.c=_.a=null}, +auD:function auD(a){this.a=a}, +Hv:function Hv(a,b,c,d,e){var _=this +_.A=a +_.af=b +_.bT=null +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +VZ:function VZ(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +kq:function kq(){}, +rL:function rL(a,b){this.a=a +this.b=b}, +GG:function GG(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.c=i +_.d=j +_.e=k +_.a=l}, +Ws:function Ws(a,b){var _=this +_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +auo:function auo(){}, +aup:function aup(){}, +auq:function auq(){}, +aur:function aur(){}, +Ia:function Ia(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +Ib:function Ib(a,b,c){this.b=a +this.c=b +this.a=c}, +a0J:function a0J(){}, +Wt:function Wt(){}, +Ma:function Ma(){}, +aV2(a,b,c){if(a===b)return a +return new A.Op(A.aDB(a.a,b.a,c),null)}, +Op:function Op(a,b){this.a=a +this.b=b}, +aV3(a,b,c){if(a===b)return a +return new A.BI(A.k6(a.a,b.a,c))}, +BI:function BI(a){this.a=a}, +Wz:function Wz(){}, +aDB(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null +if(a==b)return a +s=a==null +r=s?e:a.a +q=b==null +p=q?e:b.a +o=t._ +p=A.aV(r,p,c,A.bV(),o) +r=s?e:a.b +r=A.aV(r,q?e:b.b,c,A.bV(),o) +n=s?e:a.c +o=A.aV(n,q?e:b.c,c,A.bV(),o) +n=s?e:a.d +m=q?e:b.d +m=A.aV(n,m,c,A.ye(),t.PM) +n=s?e:a.e +l=q?e:b.e +l=A.aV(n,l,c,A.aFf(),t.pc) +n=s?e:a.f +k=q?e:b.f +j=t.tW +k=A.aV(n,k,c,A.yd(),j) +n=s?e:a.r +n=A.aV(n,q?e:b.r,c,A.yd(),j) +i=s?e:a.w +j=A.aV(i,q?e:b.w,c,A.yd(),j) +i=s?e:a.x +i=A.aEk(i,q?e:b.x,c) +h=s?e:a.y +g=q?e:b.y +g=A.aV(h,g,c,A.a1S(),t.KX) +h=c<0.5 +if(h)f=s?e:a.z +else f=q?e:b.z +if(h)h=s?e:a.Q +else h=q?e:b.Q +s=s?e:a.as +return new A.Oq(p,r,o,m,l,k,n,j,i,g,f,h,A.pn(s,q?e:b.as,c))}, +Oq:function Oq(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +WA:function WA(){}, +aV4(a,b,c){var s,r +if(a===b)return a +s=A.aDB(a.a,b.a,c) +if(c<0.5)r=a.b +else r=b.b +return new A.v8(s,r)}, +v8:function v8(a,b){this.a=a +this.b=b}, +WB:function WB(){}, +aJ5(a,b,c){return new A.vi(a,c,b,null)}, +aEz(a){var s=null +return new A.auU(a,80,s,3,s,s,s,s,s,s,B.Nf,s,s)}, +vg:function vg(a,b,c,d){var _=this +_.d=a +_.e=b +_.f=c +_.a=d}, +afo:function afo(a,b){this.a=a +this.b=b}, +afp:function afp(a,b,c){this.a=a +this.b=b +this.c=c}, +afq:function afq(a,b){this.a=a +this.b=b}, +vi:function vi(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +afs:function afs(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +afr:function afr(a,b,c){this.a=a +this.b=b +this.c=c}, +aft:function aft(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +GT:function GT(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +WT:function WT(a){this.d=a +this.c=this.a=null}, +Gm:function Gm(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this +_.R8=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=o +_.ch=p +_.CW=q +_.cx=r +_.cy=s +_.db=a0 +_.dx=a1 +_.dy=a2 +_.fr=a3 +_.fx=a4 +_.fy=a5 +_.go=a6 +_.id=a7 +_.k1=a8 +_.k2=a9 +_.k3=b0 +_.k4=b1 +_.ok=b2 +_.p1=b3 +_.p2=b4 +_.p3=b5 +_.a=b6}, +ato:function ato(a,b){this.a=a +this.b=b}, +tk:function tk(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.f=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.ax=i +_.ay=j +_.b=k +_.a=l}, +OC:function OC(a,b,c,d){var _=this +_.c=a +_.d=b +_.w=c +_.a=d}, +afv:function afv(a){this.a=a}, +afw:function afw(a){this.a=a}, +afu:function afu(a){this.a=a}, +WP:function WP(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +auX:function auX(a){this.a=a}, +UF:function UF(a,b){this.c=a +this.a=b}, +WQ:function WQ(a,b,c){this.c=a +this.d=b +this.a=c}, +auY:function auY(a){this.a=a}, +WR:function WR(a,b,c){this.c=a +this.d=b +this.a=c}, +auZ:function auZ(a,b){this.d=a +this.a=b +this.b=null}, +av0:function av0(){}, +av_:function av_(){}, +xF:function xF(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +oZ:function oZ(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Zg:function Zg(a,b){var _=this +_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +FJ:function FJ(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +FK:function FK(){var _=this +_.d=$ +_.c=_.a=_.e=null}, +aqV:function aqV(a,b){this.a=a +this.b=b}, +aqW:function aqW(a,b){this.a=a +this.b=b}, +aqX:function aqX(a){this.a=a}, +auU:function auU(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.as=a +_.ax=_.at=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m}, +auV:function auV(a){this.a=a}, +auW:function auW(a){this.a=a}, +JC:function JC(){}, +aVp(a,b,c){var s,r,q,p,o,n,m,l,k,j,i +if(a===b)return a +s=A.V(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.V(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.z(a.f,b.f,c) +m=A.dv(a.r,b.r,c) +l=A.aV(a.w,b.w,c,A.yc(),t.p8) +k=A.aV(a.x,b.x,c,A.aNe(),t.lF) +if(c<0.5)j=a.y +else j=b.y +i=A.aV(a.z,b.z,c,A.bV(),t._) +return new A.vh(s,r,q,p,o,n,m,l,k,j,i,A.cZ(a.Q,b.Q,c))}, +aDE(a){var s +a.ad(t.XD) +s=A.J(a) +return s.bf}, +vh:function vh(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l}, +WS:function WS(){}, +aVq(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b)return a +s=A.V(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.V(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.z(a.f,b.f,c) +m=A.dv(a.r,b.r,c) +l=a.w +l=A.alc(l,l,c) +k=A.aV(a.x,b.x,c,A.yc(),t.p8) +return new A.BZ(s,r,q,p,o,n,m,l,k,A.aV(a.y,b.y,c,A.aNe(),t.lF))}, +BZ:function BZ(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j}, +WU:function WU(){}, +aVr(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.V(a.b,b.b,c) +q=A.bm(a.c,b.c,c) +p=A.bm(a.d,b.d,c) +o=a.e +if(o==null)n=b.e==null +else n=!1 +if(n)o=null +else o=A.lC(o,b.e,c) +n=a.f +if(n==null)m=b.f==null +else m=!1 +if(m)n=null +else n=A.lC(n,b.f,c) +m=A.V(a.r,b.r,c) +l=c<0.5 +if(l)k=a.w +else k=b.w +if(l)l=a.x +else l=b.x +j=A.z(a.y,b.y,c) +i=A.dv(a.z,b.z,c) +h=A.V(a.Q,b.Q,c) +return new A.C_(s,r,q,p,o,n,m,k,l,j,i,h,A.V(a.as,b.as,c))}, +C_:function C_(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +WV:function WV(){}, +aVx(a,b,c,d,e,f,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var s,r,q,p,o,n,m,l,k,j,i,h,g=null +$label0$0:{if(c!=null)s=d==null +else s=!1 +if(s){s=new A.b2(c,t.rc) +break $label0$0}s=A.k5(c,d) +break $label0$0}$label1$1:{r=g +if(a3==null)break $label1$1 +q=new A.fV(A.ab([B.T,a3.b_(0.1),B.A,a3.b_(0.08),B.E,a3.b_(0.1)],t.l,t._),t.GC) +r=q +break $label1$1}q=b2==null?g:new A.b2(b2,t.uE) +p=A.k5(a3,e) +o=a7==null?g:new A.b2(a7,t.De) +n=A.k5(g,g) +m=a0==null?g:new A.b2(a0,t.XR) +l=a6==null?g:new A.b2(a6,t.mD) +k=a5==null?g:new A.b2(a5,t.W7) +j=a4==null?g:new A.b2(a4,t.W7) +i=a9==null?g:new A.b2(a9,t.y2) +h=a8==null?g:new A.b2(a8,t.dy) +return A.px(a,b,g,s,m,a1,g,g,p,g,n,g,j,k,new A.fV(A.ab([B.u,f,B.eG,a2],t.Ag,t.WV),t.ZX),r,l,o,h,i,b0,g,b1,q,b3)}, +b0i(a){var s=A.J(a),r=s.ok.as,q=r==null?null:r.r +if(q==null)q=14 +r=A.bW(a,B.bz) +r=r==null?null:r.gcA() +return A.Lb(new A.az(24,0,24,0),new A.az(12,0,12,0),new A.az(6,0,6,0),(r==null?B.aB:r).aJ(0,q)/14)}, +OX:function OX(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.ch=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.at=l +_.ax=m +_.a=n}, +Xc:function Xc(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Xa:function Xa(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.fy=a +_.go=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6}, +avc:function avc(a){this.a=a}, +avf:function avf(a){this.a=a}, +avd:function avd(a){this.a=a}, +avg:function avg(a){this.a=a}, +ave:function ave(){}, +aVw(a,b,c){if(a===b)return a +return new A.C9(A.k6(a.a,b.a,c))}, +aJe(a){var s +a.ad(t.BR) +s=A.J(a) +return s.ao}, +C9:function C9(a){this.a=a}, +Xb:function Xb(){}, +dY(a,b,c){var s=null,r=A.b([],t.Zt),q=$.aq,p=A.kB(B.ca),o=A.b([],t.wi),n=$.aw(),m=$.aq,l=c.i("au<0?>"),k=c.i("bB<0?>"),j=b==null?B.lE:b +return new A.hf(a,!1,!0,!1,s,s,s,r,A.aP(t.f9),new A.bu(s,c.i("bu>")),new A.bu(s,t.A),new A.Cd(),s,0,new A.bB(new A.au(q,c.i("au<0?>")),c.i("bB<0?>")),p,o,s,j,new A.ct(s,n),new A.bB(new A.au(m,l),k),new A.bB(new A.au(m,l),k),c.i("hf<0>"))}, +aUX(a,b,c,d,e){var s,r +A.J(a) +s=B.i5.h(0,A.J(a).w) +r=(s==null?B.eF:s).gj0() +return r!=null?r.$5(a,b,c,d,e):null}, +hf:function hf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.lz=a +_.ao=b +_.aE=c +_.dW=d +_.k3=e +_.k4=f +_.ok=g +_.p1=null +_.p2=!1 +_.p4=_.p3=null +_.R8=h +_.RG=i +_.rx=j +_.ry=k +_.to=l +_.x1=$ +_.x2=null +_.xr=$ +_.kA$=m +_.vu$=n +_.at=o +_.ax=null +_.ay=!1 +_.CW=_.ch=null +_.cx=p +_.cy=!0 +_.dy=_.dx=_.db=null +_.r=q +_.a=r +_.b=null +_.c=s +_.d=a0 +_.e=a1 +_.f=a2 +_.$ti=a3}, +Ol:function Ol(){}, +GH:function GH(){}, +aTM(a,b,c,d){var s=new A.nd(new A.hi(b,new A.ba(A.b([],t.F),t.R),0),new A.a7Q(),new A.a7R(),d,null),r=A.vb(a,B.ZM,t.X) +r=r==null?null:r.gkO() +if(r===!1)return s +if(b.gaN(0).gje())r=A.J(a).ax.k2 +else r=B.y +return new A.n7(r,s,null)}, +aKU(a,b,c,d,e,f,g){var s=g==null?A.J(a).ax.k2:g +return new A.nd(new A.hi(c,new A.ba(A.b([],t.F),t.R),0),new A.anX(e,!0,s),new A.anY(e),d,null)}, +aM8(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j +if(c<=0||d<=0)return +$.a3() +s=A.bc() +s.Q=B.hE +s.r=A.aH2(0,0,0,d).gq(0) +r=b.b +r===$&&A.a() +r=r.a +r===$&&A.a() +q=J.ap(r.a.width())/e +r=b.b.a +r===$&&A.a() +p=J.ap(r.a.height())/e +o=q*c +n=p*c +m=(q-o)/2 +l=(p-n)/2 +r=a.gcg(0) +k=b.b.a +k===$&&A.a() +k=J.ap(k.a.width()) +j=b.b.a +j===$&&A.a() +r.vk(b,new A.x(0,0,k,J.ap(j.a.height())),new A.x(m,l,m+o,l+n),s)}, +aMK(a,b,c){var s,r +a.dF() +if(b===1)return +a.nz(b,b,b,1) +s=c.a +r=c.b +a.dC(-((s*b-s)/2),-((r*b-r)/2),0,1)}, +aLX(a,b,c,d,e){var s=new A.Jb(d,a,e,c,b,new A.b6(new Float64Array(16)),A.ah(),A.ah(),$.aw()),r=s.gcV() +a.Z(0,r) +a.el(s.guj()) +e.a.Z(0,r) +c.Z(0,r) +return s}, +aLY(a,b,c,d){var s=new A.Jc(c,d,b,a,new A.b6(new Float64Array(16)),A.ah(),A.ah(),$.aw()),r=s.gcV() +d.a.Z(0,r) +b.Z(0,r) +a.el(s.guj()) +return s}, +a0w:function a0w(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +aAd:function aAd(a,b){this.a=a +this.b=b}, +aAe:function aAe(a){this.a=a}, +p8:function p8(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +a0u:function a0u(a,b,c){var _=this +_.d=$ +_.oS$=a +_.lC$=b +_.mZ$=c +_.c=_.a=null}, +p9:function p9(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +a0v:function a0v(a,b,c){var _=this +_.d=$ +_.oS$=a +_.lC$=b +_.mZ$=c +_.c=_.a=null}, +Ve:function Ve(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +ary:function ary(){}, +arz:function arz(){}, +a7Q:function a7Q(){}, +a7R:function a7R(){}, +SM:function SM(){}, +anZ:function anZ(a){this.a=a}, +anX:function anX(a,b,c){this.a=a +this.b=b +this.c=c}, +anY:function anY(a){this.a=a}, +LX:function LX(){}, +P1:function P1(){}, +ag3:function ag3(a){this.a=a}, +xn:function xn(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f +_.$ti=g}, +H3:function H3(a){var _=this +_.c=_.a=_.d=null +_.$ti=a}, +xV:function xV(){}, +Jb:function Jb(a,b,c,d,e,f,g,h,i){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.M$=0 +_.P$=i +_.I$=_.n$=0}, +aAb:function aAb(a,b){this.a=a +this.b=b}, +Jc:function Jc(a,b,c,d,e,f,g,h){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.M$=0 +_.P$=h +_.I$=_.n$=0}, +aAc:function aAc(a,b){this.a=a +this.b=b}, +Xh:function Xh(){}, +JI:function JI(){}, +JJ:function JJ(){}, +aVW(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.dv(a.b,b.b,c) +q=A.cZ(a.c,b.c,c) +p=A.V(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.z(a.f,b.f,c) +m=A.bm(a.r,b.r,c) +l=A.aV(a.w,b.w,c,A.yc(),t.p8) +k=c<0.5 +if(k)j=a.x +else j=b.x +if(k)i=a.y +else i=b.y +if(k)k=a.z +else k=b.z +h=A.z(a.Q,b.Q,c) +return new A.Cl(s,r,q,p,o,n,m,l,j,i,k,h,A.V(a.as,b.as,c))}, +Cl:function Cl(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +XU:function XU(){}, +Pk:function Pk(){}, +agL:function agL(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +mA:function mA(a,b){this.a=a +this.b=b}, +H9:function H9(a,b,c){this.c=a +this.d=b +this.a=c}, +XV:function XV(a){var _=this +_.d=a +_.c=_.a=_.f=_.e=null}, +avL:function avL(a,b){this.a=a +this.b=b}, +avM:function avM(a,b){this.a=a +this.b=b}, +avK:function avK(a,b){this.a=a +this.b=b}, +Ha:function Ha(a,b,c,d,e,f){var _=this +_.d=a +_.f=b +_.r=c +_.w=d +_.x=e +_.a=f}, +XW:function XW(a,b,c,d,e,f,g,h,i){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=0 +_.y=f +_.Q=_.z=null +_.as=$ +_.at=g +_.dV$=h +_.bq$=i +_.c=_.a=null}, +avN:function avN(a){this.a=a}, +a0S:function a0S(){}, +Jy:function Jy(){}, +aYm(a,b,c,d,e,f,g,h,i,j,k,l){var s=j!=null,r=s?-1.5707963267948966:-1.5707963267948966+g*3/2*3.141592653589793+c*3.141592653589793*2+b*0.5*3.141592653589793 +return new A.wH(h,k,j,a,g,b,c,f,d,r,s?A.A(j,0,1)*6.282185307179586:Math.max(a*3/2*3.141592653589793-g*3/2*3.141592653589793,0.001),e,i,!0,null)}, +aKZ(a,b){var s=null +return new A.aqe(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +aL_(a,b){var s=null +return new A.aqf(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +ao1:function ao1(a,b){this.a=a +this.b=b}, +Pr:function Pr(){}, +wH:function wH(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.a=o}, +im:function im(a,b,c,d,e,f,g,h,i,j){var _=this +_.z=a +_.Q=b +_.as=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.a=j}, +Fn:function Fn(a,b){var _=this +_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +aqg:function aqg(a){this.a=a}, +Yo:function Yo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.ch=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.a=p}, +Cy:function Cy(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.fy=a +_.z=b +_.Q=c +_.as=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.a=k}, +Yp:function Yp(a,b){var _=this +_.z=_.y=$ +_.Q=null +_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +awr:function awr(a){this.a=a}, +aqe:function aqe(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.ch=a +_.CW=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q}, +aqf:function aqf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.ch=a +_.CW=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q}, +Jj:function Jj(){}, +aW5(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){return new A.vw(d,h,g,b,i,a,j,k,n,l,m,e,o,c,p,f)}, +aW6(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.V(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.h2(a.f,b.f,c) +m=A.z(a.r,b.r,c) +l=A.V(a.w,b.w,c) +k=A.V(a.x,b.x,c) +j=A.V(a.y,b.y,c) +i=c<0.5 +if(i)h=a.z +else h=b.z +g=A.hD(a.Q,b.Q,c) +f=A.V(a.as,b.as,c) +e=A.cZ(a.at,b.at,c) +if(i)d=a.ax +else d=b.ax +if(i)i=a.ay +else i=b.ay +return A.aW5(n,p,e,s,g,i,q,r,o,m,l,j,h,k,f,d)}, +aDP(a){var s +a.ad(t.C0) +s=A.J(a) +return s.dW}, +vw:function vw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p}, +XZ:function XZ(){}, +aW9(a,b,c){if(a==null&&b==null)return null +if(a instanceof A.ib)a=a.x.$1(B.aO) +if(b instanceof A.ib)b=b.x.$1(B.aO) +if(a==null)a=new A.aW(b.a.dh(0),0,B.v,-1) +return A.aX(a,b==null?new A.aW(a.a.dh(0),0,B.v,-1):b,c)}, +aWa(a,b,c){var s,r,q,p,o,n,m,l +if(a===b)return a +s=c<0.5 +if(s)r=a.a +else r=b.a +q=t._ +p=A.aV(a.b,b.b,c,A.bV(),q) +if(s)o=a.e +else o=b.e +n=A.aV(a.c,b.c,c,A.bV(),q) +m=A.V(a.d,b.d,c) +if(s)s=a.f +else s=b.f +q=A.aV(a.r,b.r,c,A.bV(),q) +l=A.aW9(a.w,b.w,c) +return new A.Cr(r,p,n,m,o,s,q,l,A.aV(a.x,b.x,c,A.ye(),t.PM))}, +Cr:function Cr(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +Y5:function Y5(){}, +aDR(a,b){return new A.Cw(a,b,null)}, +o5:function o5(a,b){this.a=a +this.b=b}, +ahC:function ahC(a,b){this.a=a +this.b=b}, +atp:function atp(a,b){this.a=a +this.b=b}, +Cw:function Cw(a,b,c){this.c=a +this.f=b +this.a=c}, +Cx:function Cx(a,b){var _=this +_.x=_.w=_.r=_.f=_.e=_.d=$ +_.as=_.Q=_.y=null +_.at=$ +_.de$=a +_.aW$=b +_.c=_.a=null}, +ahx:function ahx(a){this.a=a}, +ahv:function ahv(a,b){this.a=a +this.b=b}, +ahw:function ahw(a){this.a=a}, +ahA:function ahA(a,b){this.a=a +this.b=b}, +ahy:function ahy(a){this.a=a}, +ahz:function ahz(a,b){this.a=a +this.b=b}, +ahB:function ahB(a,b){this.a=a +this.b=b}, +Hm:function Hm(){}, +i_(a,b,c){return new A.D8(a,b,c,null)}, +aj6(a){var s=a.kD(t.Np) +if(s!=null)return s +throw A.e(A.nk(A.b([A.kh("Scaffold.of() called with a context that does not contain a Scaffold."),A.br("No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."),A.Ab('There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is "under" the Scaffold. For an example of this, please see the documentation for Scaffold.of():\n https://api.flutter.dev/flutter/material/Scaffold/of.html'),A.Ab("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function."),a.aoz("The context used was")],t.D)))}, +aWv(a,b){return A.hC(b,new A.aj5(b),null)}, +hy:function hy(a,b){this.a=a +this.b=b}, +Da:function Da(a,b){this.c=a +this.a=b}, +Db:function Db(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.r=c +_.x=_.w=null +_.y=$ +_.de$=d +_.aW$=e +_.c=_.a=null}, +aj_:function aj_(a){this.a=a}, +aj0:function aj0(a,b){this.a=a +this.b=b}, +aiW:function aiW(a){this.a=a}, +aiX:function aiX(){}, +aiZ:function aiZ(a,b){this.a=a +this.b=b}, +aiY:function aiY(a,b){this.a=a +this.b=b}, +HP:function HP(a,b,c){this.f=a +this.b=b +this.a=c}, +aj1:function aj1(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.y=i}, +Qm:function Qm(a,b){this.a=a +this.b=b}, +Z5:function Z5(a,b,c){var _=this +_.a=a +_.b=null +_.c=b +_.M$=0 +_.P$=c +_.I$=_.n$=0}, +Fc:function Fc(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.a=d +_.b=e +_.c=f +_.d=g}, +Tq:function Tq(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +axW:function axW(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.as=j +_.at=k +_.ax=l +_.ay=m +_.a=n +_.b=null}, +G4:function G4(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +G5:function G5(a,b){var _=this +_.d=$ +_.r=_.f=_.e=null +_.Q=_.z=_.y=_.x=_.w=$ +_.as=null +_.de$=a +_.aW$=b +_.c=_.a=null}, +arV:function arV(a,b){this.a=a +this.b=b}, +D8:function D8(a,b,c,d){var _=this +_.f=a +_.r=b +_.db=c +_.a=d}, +aj5:function aj5(a){this.a=a}, +vN:function vN(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.d=a +_.e=b +_.f=c +_.r=null +_.w=d +_.x=e +_.Q=_.z=_.y=null +_.as=f +_.at=null +_.ax=g +_.ay=null +_.CW=_.ch=$ +_.cy=_.cx=null +_.dy=_.dx=_.db=$ +_.fr=!1 +_.bw$=h +_.fo$=i +_.oQ$=j +_.e7$=k +_.fp$=l +_.de$=m +_.aW$=n +_.c=_.a=null}, +aj3:function aj3(a,b){this.a=a +this.b=b}, +aj2:function aj2(a,b){this.a=a +this.b=b}, +aj4:function aj4(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +UJ:function UJ(a,b){this.e=a +this.a=b +this.b=null}, +D9:function D9(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +Z6:function Z6(a,b,c){this.f=a +this.b=b +this.a=c}, +axX:function axX(){}, +HQ:function HQ(){}, +HR:function HR(){}, +HS:function HS(){}, +Jr:function Jr(){}, +QG:function QG(a,b,c){this.c=a +this.d=b +this.a=c}, +xe:function xe(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.w=e +_.Q=f +_.ay=g +_.ch=h +_.cx=i +_.cy=j +_.db=k +_.dx=l +_.a=m}, +Wu:function Wu(a,b,c,d){var _=this +_.fr=$ +_.fy=_.fx=!1 +_.k1=_.id=_.go=$ +_.w=_.r=_.f=_.e=_.d=null +_.y=_.x=$ +_.z=a +_.Q=!1 +_.as=null +_.at=!1 +_.ay=_.ax=null +_.ch=b +_.CW=$ +_.de$=c +_.aW$=d +_.c=_.a=null}, +auw:function auw(a){this.a=a}, +aut:function aut(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +auv:function auv(a,b,c){this.a=a +this.b=b +this.c=c}, +auu:function auu(a,b,c){this.a=a +this.b=b +this.c=c}, +aus:function aus(a){this.a=a}, +auC:function auC(a){this.a=a}, +auB:function auB(a){this.a=a}, +auA:function auA(a){this.a=a}, +auy:function auy(a){this.a=a}, +auz:function auz(a){this.a=a}, +aux:function aux(a){this.a=a}, +aWI(a,b,c){var s,r,q,p,o,n,m,l,k,j +if(a===b)return a +s=t.X7 +r=A.aV(a.a,b.a,c,A.aNw(),s) +q=A.aV(a.b,b.b,c,A.ye(),t.PM) +s=A.aV(a.c,b.c,c,A.aNw(),s) +p=a.d +o=b.d +p=c<0.5?p:o +o=A.Cs(a.e,b.e,c) +n=t._ +m=A.aV(a.f,b.f,c,A.bV(),n) +l=A.aV(a.r,b.r,c,A.bV(),n) +n=A.aV(a.w,b.w,c,A.bV(),n) +k=A.V(a.x,b.x,c) +j=A.V(a.y,b.y,c) +return new A.Dl(r,q,s,p,o,m,l,n,k,j,A.V(a.z,b.z,c))}, +b02(a,b,c){return c<0.5?a:b}, +Dl:function Dl(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k}, +Zb:function Zb(){}, +aWJ(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.aV(a.a,b.a,c,A.ye(),t.PM) +r=t._ +q=A.aV(a.b,b.b,c,A.bV(),r) +p=A.aV(a.c,b.c,c,A.bV(),r) +o=A.aV(a.d,b.d,c,A.bV(),r) +r=A.aV(a.e,b.e,c,A.bV(),r) +n=A.aEk(a.f,b.f,c) +m=A.aV(a.r,b.r,c,A.a1S(),t.KX) +l=A.aV(a.w,b.w,c,A.aFf(),t.pc) +k=t.p8 +j=A.aV(a.x,b.x,c,A.yc(),k) +k=A.aV(a.y,b.y,c,A.yc(),k) +i=A.hD(a.z,b.z,c) +if(c<0.5)h=a.Q +else h=b.Q +return new A.Dm(s,q,p,o,r,n,m,l,j,k,i,h)}, +Dm:function Dm(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l}, +Zc:function Zc(){}, +aWL(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.V(a.b,b.b,c) +q=A.z(a.c,b.c,c) +p=A.aWK(a.d,b.d,c) +o=A.aDH(a.e,b.e,c) +n=A.V(a.f,b.f,c) +m=a.r +l=b.r +k=A.bm(m,l,c) +m=A.bm(m,l,c) +l=A.hD(a.x,b.x,c) +j=A.cZ(a.y,b.y,c) +i=A.cZ(a.z,b.z,c) +if(c<0.5)h=a.Q +else h=b.Q +return new A.Dn(s,r,q,p,o,n,k,m,l,j,i,h,A.z(a.as,b.as,c))}, +aWK(a,b,c){if(a==null&&b==null)return null +if(a instanceof A.ib)a=a.x.$1(B.aO) +if(b instanceof A.ib)b=b.x.$1(B.aO) +if(a==null)a=new A.aW(b.a.dh(0),0,B.v,-1) +return A.aX(a,b==null?new A.aW(a.a.dh(0),0,B.v,-1):b,c)}, +Dn:function Dn(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +Zd:function Zd(){}, +aWN(a,b,c){var s,r +if(a===b)return a +s=A.k6(a.a,b.a,c) +if(c<0.5)r=a.b +else r=b.b +return new A.Do(s,r)}, +Do:function Do(a,b){this.a=a +this.b=b}, +Ze:function Ze(){}, +aX4(b7,b8,b9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6 +if(b7===b8)return b7 +s=A.V(b7.a,b8.a,b9) +r=A.z(b7.b,b8.b,b9) +q=A.z(b7.c,b8.c,b9) +p=A.z(b7.d,b8.d,b9) +o=A.z(b7.e,b8.e,b9) +n=A.z(b7.r,b8.r,b9) +m=A.z(b7.f,b8.f,b9) +l=A.z(b7.w,b8.w,b9) +k=A.z(b7.x,b8.x,b9) +j=A.z(b7.y,b8.y,b9) +i=A.z(b7.z,b8.z,b9) +h=A.z(b7.Q,b8.Q,b9) +g=A.z(b7.as,b8.as,b9) +f=A.z(b7.at,b8.at,b9) +e=A.z(b7.ax,b8.ax,b9) +d=A.z(b7.ay,b8.ay,b9) +c=A.z(b7.ch,b8.ch,b9) +b=b9<0.5 +a=b?b7.CW:b8.CW +a0=b?b7.cx:b8.cx +a1=b?b7.cy:b8.cy +a2=b?b7.db:b8.db +a3=b?b7.dx:b8.dx +a4=b?b7.dy:b8.dy +a5=b?b7.fr:b8.fr +a6=b?b7.fx:b8.fx +a7=b?b7.fy:b8.fy +a8=b?b7.go:b8.go +a9=A.bm(b7.id,b8.id,b9) +b0=A.V(b7.k1,b8.k1,b9) +b1=b?b7.k2:b8.k2 +b2=b?b7.k3:b8.k3 +b3=b?b7.k4:b8.k4 +b4=A.cZ(b7.ok,b8.ok,b9) +b5=A.aV(b7.p1,b8.p1,b9,A.yd(),t.tW) +b6=A.V(b7.p2,b8.p2,b9) +return new A.DK(s,r,q,p,o,m,n,l,k,j,i,h,g,f,e,d,c,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b?b7.p3:b8.p3)}, +DK:function DK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6}, +ZF:function ZF(){}, +w0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.jJ(h,d,k,n,p,a0,r,l,e,a,b,s,g,j,q==null?a!=null:q,c,o,i,f,m)}, +aLz(a){var s=null +return new A.ayG(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +jK:function jK(a,b){this.a=a +this.b=b}, +DN:function DN(a,b,c,d){var _=this +_.c=a +_.r=b +_.w=c +_.a=d}, +If:function If(){this.d=!1 +this.c=this.a=null}, +ayx:function ayx(a){this.a=a}, +ayA:function ayA(a,b,c){this.a=a +this.b=b +this.c=c}, +ayB:function ayB(a,b,c){this.a=a +this.b=b +this.c=c}, +ayy:function ayy(a,b){this.a=a +this.b=b}, +ayz:function ayz(a,b){this.a=a +this.b=b}, +jJ:function jJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.a=a0}, +Ig:function Ig(a){var _=this +_.d=!1 +_.x=_.w=_.r=_.f=_.e=null +_.y=a +_.c=_.a=null}, +ayD:function ayD(a){this.a=a}, +ayC:function ayC(a){this.a=a}, +ayE:function ayE(){}, +ayF:function ayF(){}, +ayG:function ayG(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.ay=a +_.CW=_.ch=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o}, +ayH:function ayH(a){this.a=a}, +aX6(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.w1(d,c,i,g,k,m,e,n,l,f,b,a,h,j)}, +aX7(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.z(a.b,b.b,c) +q=A.z(a.c,b.c,c) +p=A.bm(a.d,b.d,c) +o=A.V(a.e,b.e,c) +n=A.dv(a.f,b.f,c) +m=c<0.5 +if(m)l=a.r +else l=b.r +k=A.V(a.w,b.w,c) +j=A.A1(a.x,b.x,c) +i=A.z(a.z,b.z,c) +h=A.V(a.Q,b.Q,c) +g=A.z(a.as,b.as,c) +f=A.z(a.at,b.at,c) +if(m)m=a.ax +else m=b.ax +return A.aX6(g,h,r,s,l,i,p,f,q,m,o,j,n,k)}, +Rl:function Rl(a,b){this.a=a +this.b=b}, +w1:function w1(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n}, +ZL:function ZL(){}, +aXm(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b)return a +s=t._ +r=A.aV(a.a,b.a,c,A.bV(),s) +q=A.aV(a.b,b.b,c,A.bV(),s) +p=A.aV(a.c,b.c,c,A.bV(),s) +o=A.aV(a.d,b.d,c,A.ye(),t.PM) +n=c<0.5 +if(n)m=a.e +else m=b.e +if(n)l=a.f +else l=b.f +s=A.aV(a.r,b.r,c,A.bV(),s) +k=A.V(a.w,b.w,c) +if(n)n=a.x +else n=b.x +return new A.E5(r,q,p,o,m,l,s,k,n,A.cZ(a.y,b.y,c))}, +E5:function E5(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j}, +a__:function a__(){}, +aXq(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c +if(a===b)return a +s=A.a5q(a.a,b.a,a0) +r=A.z(a.b,b.b,a0) +q=a0<0.5 +p=q?a.c:b.c +o=A.z(a.d,b.d,a0) +n=q?a.e:b.e +m=A.z(a.f,b.f,a0) +l=A.cZ(a.r,b.r,a0) +k=A.bm(a.w,b.w,a0) +j=A.z(a.x,b.x,a0) +i=A.bm(a.y,b.y,a0) +h=A.aV(a.z,b.z,a0,A.bV(),t._) +g=q?a.Q:b.Q +f=q?a.as:b.as +e=q?a.at:b.at +d=q?a.ax:b.ax +q=q?a.ay:b.ay +c=a.ch +return new A.E9(s,r,p,o,n,m,l,k,j,i,h,g,f,e,d,q,A.j4(c,c,a0))}, +E9:function E9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q}, +a_7:function a_7(){}, +kM(a,b,c){var s=null +return new A.RS(b,s,s,s,c,s,s,!1,s,!0,s,a,s)}, +amf(a,b,c,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=null +$label0$0:{if(c!=null)s=a0==null +else s=!1 +if(s){s=new A.b2(c,t.rc) +break $label0$0}s=A.k5(c,a0) +break $label0$0}$label1$1:{r=A.k5(d,d) +break $label1$1}$label2$2:{q=a6==null +if(q){p=a9==null +o=a9}else{o=d +p=!1}n=d +if(p){p=n +break $label2$2}if(q)p=o +else{p=a9 +o=p +q=!0}m=t.G +if(m.b(p)){if(q)p=o +else{p=a9 +o=p +q=!0}p=0===(p==null?m.a(p):p).a}else p=!1 +if(p){p=new A.b2(a9,t.rc) +break $label2$2}if(q)p=o +else{p=a9 +o=p +q=!0}p=m.b(p) +if(p){l=q?o:a9 +if(l==null)l=m.a(l)}else l=d +if(!p){p=m.b(a6) +if(p)l=a6}else p=!0 +if(p){p=new A.fV(A.ab([B.T,l.b_(0.1),B.A,l.b_(0.08),B.E,l.b_(0.1)],t.l,t._),t.GC) +break $label2$2}p=n}n=b6==null?d:new A.b2(b6,t.uE) +m=A.k5(a6,a1) +k=b1==null?d:new A.b2(b1,t.De) +j=a3==null?d:new A.b2(a3,t.XR) +i=b0==null?d:new A.b2(b0,t.mD) +h=a8==null?d:new A.b2(a8,t.W7) +g=a7==null?d:new A.b2(a7,t.W7) +f=b3==null?d:new A.b2(b3,t.y2) +e=b2==null?d:new A.b2(b2,t.dy) +return A.px(a,b,d,s,j,a4,d,d,m,d,r,d,g,h,new A.fV(A.ab([B.u,a2,B.eG,a5],t.Ag,t.WV),t.ZX),p,i,k,e,f,b4,d,b5,n,b7)}, +b0h(a){var s=A.J(a).ok.as,r=s==null?null:s.r +if(r==null)r=14 +s=A.bW(a,B.bz) +s=s==null?null:s.gcA() +s=(s==null?B.aB:s).aJ(0,r) +return A.Lb(B.GN,B.GY,B.GW,s/14)}, +RS:function RS(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.at=k +_.ax=l +_.a=m}, +a_f:function a_f(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.fy=a +_.go=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6}, +ayT:function ayT(a){this.a=a}, +ayW:function ayW(a){this.a=a}, +ayU:function ayU(a){this.a=a}, +ayV:function ayV(){}, +aXu(a,b,c){if(a===b)return a +return new A.we(A.k6(a.a,b.a,c))}, +aKk(a,b){return new A.Eh(b,a,null)}, +we:function we(a){this.a=a}, +Eh:function Eh(a,b,c){this.w=a +this.b=b +this.a=c}, +a_g:function a_g(){}, +El(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4){var s,r,q,p +if(e1==null)s=c0?B.Ar:B.As +else s=e1 +if(e2==null)r=c0?B.At:B.Au +else r=e2 +if(b3==null)q=b7===1?B.SH:B.md +else q=b3 +if(a3==null)p=!0 +else p=a3 +return new A.Ek(b4,a8,i,a7,a0,q,f2,f0,e6,e5,e8,e9,f1,!1,e4,c1,c0,a,s,r,!0,b7,b8,!1,!1,f3,e0,b5,b6,c3,c4,c5,c2,b1,a5,b0,o,l,n,m,j,k,d8,d9,b2,d4,p,d6,d7,a1,c6,!1,c8,c9,b9,d,d5,d3,b,f,d1,!0,!0,!0,g,h,!0,f4,a9,e3,null)}, +aXy(a,b){var s +if(!b.a.x){s=b.c +s.toString +s=A.aKg(s)}else s=!1 +if(s)return A.aKf(b) +return A.aGu(b)}, +aXz(a){return B.fH}, +b04(a){return A.J2(new A.aB3(a))}, +a_i:function a_i(a,b){var _=this +_.x=a +_.a=b +_.c=_.b=!0 +_.d=!1 +_.f=_.e=0 +_.r=null +_.w=!1}, +Ek:function Ek(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k3=a9 +_.k4=b0 +_.ok=b1 +_.p1=b2 +_.p2=b3 +_.p3=b4 +_.p4=b5 +_.R8=b6 +_.RG=b7 +_.rx=b8 +_.ry=b9 +_.to=c0 +_.x1=c1 +_.x2=c2 +_.xr=c3 +_.y1=c4 +_.y2=c5 +_.M=c6 +_.P=c7 +_.n=c8 +_.I=c9 +_.X=d0 +_.a2=d1 +_.S=d2 +_.a9=d3 +_.ab=d4 +_.au=d5 +_.aX=d6 +_.b9=d7 +_.aL=d8 +_.bO=d9 +_.bf=e0 +_.br=e1 +_.bF=e2 +_.ao=e3 +_.aE=e4 +_.dW=e5 +_.bK=e6 +_.f3=e7 +_.bW=e8 +_.D=e9 +_.cb=f0 +_.a=f1}, +Iz:function Iz(a,b,c,d,e,f){var _=this +_.e=_.d=null +_.r=_.f=!1 +_.x=_.w=$ +_.y=a +_.z=null +_.bw$=b +_.fo$=c +_.oQ$=d +_.e7$=e +_.fp$=f +_.c=_.a=null}, +ayY:function ayY(){}, +az_:function az_(a,b){this.a=a +this.b=b}, +ayZ:function ayZ(a,b){this.a=a +this.b=b}, +az0:function az0(){}, +az3:function az3(a){this.a=a}, +az4:function az4(a){this.a=a}, +az5:function az5(a){this.a=a}, +az6:function az6(a){this.a=a}, +az7:function az7(a){this.a=a}, +az8:function az8(a){this.a=a}, +az9:function az9(a,b,c){this.a=a +this.b=b +this.c=c}, +azb:function azb(a){this.a=a}, +azc:function azc(a){this.a=a}, +aza:function aza(a,b){this.a=a +this.b=b}, +az2:function az2(a){this.a=a}, +az1:function az1(a){this.a=a}, +aB3:function aB3(a){this.a=a}, +aAi:function aAi(){}, +JH:function JH(){}, +os(a,b,c,d,e,f,g){var s=null,r=a.a.a,q=b.a2 +return new A.Em(a,new A.aml(b,s,s,B.c8,s,s,c,f,s,s,B.az,s,s,B.em,!1,s,s,!1,s,"\u2022",d,!0,s,s,!0,s,1,s,!1,s,s,!1,s,s,s,e,s,s,s,2,s,s,s,s,B.dQ,s,s,s,s,s,s,s,s,!0,s,A.b2H(),s,s,s,s,s,s,s,B.a9,s,B.B,!0,!0,!0,s),s,g,r,q!==!1,B.jw,s,s)}, +aXA(a,b){var s +if(!b.a.x){s=b.c +s.toString +s=A.aKg(s)}else s=!1 +if(s)return A.aKf(b) +return A.aGu(b)}, +Em:function Em(a,b,c,d,e,f,g,h,i){var _=this +_.at=a +_.c=b +_.f=c +_.r=d +_.x=e +_.y=f +_.z=g +_.Q=h +_.a=i}, +aml:function aml(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6 +_.p4=b7 +_.R8=b8 +_.RG=b9 +_.rx=c0 +_.ry=c1 +_.to=c2 +_.x1=c3 +_.x2=c4 +_.xr=c5 +_.y1=c6 +_.y2=c7 +_.M=c8 +_.P=c9 +_.n=d0 +_.I=d1 +_.X=d2 +_.a2=d3 +_.S=d4 +_.a9=d5 +_.ab=d6 +_.au=d7 +_.aX=d8 +_.b9=d9 +_.aL=e0 +_.bO=e1 +_.bf=e2 +_.br=e3 +_.bF=e4 +_.ao=e5 +_.aE=e6 +_.dW=e7 +_.bK=e8 +_.f3=e9 +_.bW=f0}, +amm:function amm(a,b){this.a=a +this.b=b}, +xL:function xL(a,b,c,d,e,f,g){var _=this +_.ay=null +_.e=_.d=$ +_.f=a +_.r=b +_.bw$=c +_.fo$=d +_.oQ$=e +_.e7$=f +_.fp$=g +_.c=_.a=null}, +Om:function Om(){}, +aec:function aec(){}, +a_k:function a_k(a,b){this.b=a +this.a=b}, +Ww:function Ww(){}, +aXD(a,b,c){var s,r +if(a===b)return a +s=A.z(a.a,b.a,c) +r=A.z(a.b,b.b,c) +return new A.Ev(s,r,A.z(a.c,b.c,c))}, +Ev:function Ev(a,b,c){this.a=a +this.b=b +this.c=c}, +a_l:function a_l(){}, +aXE(a,b,c){return new A.S2(a,b,c,null)}, +aXL(a,b){return new A.a_m(b,null)}, +aZf(a){var s,r=null,q=a.a.a +switch(q){case 1:s=A.wl(r,r,r,r,r,r,r,r).ax.k2===a.k2 +break +case 0:s=A.wl(r,B.am,r,r,r,r,r,r).ax.k2===a.k2 +break +default:s=r}if(!s)return a.k2 +switch(q){case 1:q=B.k +break +case 0:q=B.cE +break +default:q=r}return q}, +S2:function S2(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +IE:function IE(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +a_q:function a_q(a,b,c){var _=this +_.d=!1 +_.e=a +_.de$=b +_.aW$=c +_.c=_.a=null}, +azt:function azt(a){this.a=a}, +azs:function azs(a){this.a=a}, +a_r:function a_r(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +a_s:function a_s(a,b,c,d,e){var _=this +_.A=null +_.R=a +_.af=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +azu:function azu(a){this.a=a}, +a_n:function a_n(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +a_o:function a_o(a,b,c){var _=this +_.p1=$ +_.p2=a +_.c=_.b=_.a=_.CW=_.ay=null +_.d=$ +_.e=b +_.r=_.f=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +YM:function YM(a,b,c,d,e,f,g,h){var _=this +_.n=-1 +_.I=a +_.X=b +_.a2=c +_.c0$=d +_.a4$=e +_.c6$=f +_.dy=g +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +axl:function axl(a,b,c){this.a=a +this.b=b +this.c=c}, +axm:function axm(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +axn:function axn(a,b,c){this.a=a +this.b=b +this.c=c}, +axo:function axo(a,b,c){this.a=a +this.b=b +this.c=c}, +axq:function axq(a,b){this.a=a +this.b=b}, +axp:function axp(a){this.a=a}, +axr:function axr(a){this.a=a}, +a_m:function a_m(a,b){this.c=a +this.a=b}, +a_p:function a_p(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +a16:function a16(){}, +a1k:function a1k(){}, +aXK(a){if(a===B.BA||a===B.mT)return 14.5 +return 9.5}, +aXH(a){if(a===B.BB||a===B.mT)return 14.5 +return 9.5}, +aXJ(a,b){if(a===0)return b===1?B.mT:B.BA +if(a===b-1)return B.BB +return B.a_q}, +aXI(a){var s,r=null,q=a.a.a +switch(q){case 1:s=A.wl(r,r,r,r,r,r,r,r).ax.k3===a.k3 +break +case 0:s=A.wl(r,B.am,r,r,r,r,r,r).ax.k3===a.k3 +break +default:s=r}if(!s)return a.k3 +switch(q){case 1:q=B.l +break +case 0:q=B.k +break +default:q=r}return q}, +xN:function xN(a,b){this.a=a +this.b=b}, +S4:function S4(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +aE7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.e2(d,e,f,g,h,i,m,n,o,a,b,c,j,k,l)}, +wk(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b)return a +s=A.bm(a.a,b.a,c) +r=A.bm(a.b,b.b,c) +q=A.bm(a.c,b.c,c) +p=A.bm(a.d,b.d,c) +o=A.bm(a.e,b.e,c) +n=A.bm(a.f,b.f,c) +m=A.bm(a.r,b.r,c) +l=A.bm(a.w,b.w,c) +k=A.bm(a.x,b.x,c) +j=A.bm(a.y,b.y,c) +i=A.bm(a.z,b.z,c) +h=A.bm(a.Q,b.Q,c) +g=A.bm(a.as,b.as,c) +f=A.bm(a.at,b.at,c) +return A.aE7(j,i,h,s,r,q,p,o,n,g,f,A.bm(a.ax,b.ax,c),m,l,k)}, +e2:function e2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o}, +a_u:function a_u(){}, +J(a){var s,r,q,p,o,n,m=null,l=a.ad(t.Nr),k=A.f3(a,B.b6,t.C)==null?m:B.zy +if(k==null)k=B.zy +s=a.ad(t.ri) +r=l==null?m:l.w.c +if(r==null)if(s!=null){q=s.w.c +p=q.ger() +o=q.gil() +n=q.ger() +p=A.wl(m,m,m,A.aH3(o,q.gjk(),n,m,p),m,m,m,m) +r=p}else{q=$.aOX() +r=q}return A.aXR(r,r.p1.a_K(k))}, +aXS(a){var s=a.ad(t.Nr),r=s==null?null:s.w.c.ax.a +if(r==null){r=A.bW(a,B.j7) +r=r==null?null:r.e +if(r==null)r=B.ag}return r}, +aGz(a,b,c,d){return new A.ys(c,a,b,d,null,null)}, +rW:function rW(a,b,c){this.c=a +this.d=b +this.a=c}, +Go:function Go(a,b,c){this.w=a +this.b=b +this.a=c}, +rX:function rX(a,b){this.a=a +this.b=b}, +ys:function ys(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +T4:function T4(a,b){var _=this +_.CW=null +_.e=_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +aoq:function aoq(){}, +wl(c9,d0,d1,d2,d3,d4,d5,d6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5=null,c6=A.b([],t.FO),c7=A.b([],t.lY),c8=A.aM() +switch(c8.a){case 0:case 1:case 2:s=B.MY +break +case 3:case 4:case 5:s=B.MZ +break +default:s=c5}r=A.aY6(c8) +d6=d6!==!1 +if(d6)q=B.Dr +else q=B.Ds +if(d0==null){p=d2==null?c5:d2.a +o=p}else o=d0 +if(o==null)o=B.ag +n=o===B.am +if(d6){if(d2==null)d2=n?B.DT:B.DS +m=n?d2.k2:d2.b +l=n?d2.k3:d2.c +if(d3==null)d3=m +k=d2.k2 +if(d5==null)d5=k +j=d2.ry +if(j==null){p=d2.n +j=p==null?d2.k3:p}i=d0===B.am +h=l +g=k +f=g}else{h=c5 +j=h +g=j +f=g +k=f +i=k}if(d4==null)d4=B.fm +if(d3==null)d3=n?B.nA:d4 +e=A.S7(d3) +if(n)d=B.eR +else{p=d4.f.h(0,100) +p.toString +d=p}if(n)c=B.l +else{p=d4.f.h(0,700) +p.toString +c=p}b=e===B.am +a=n?A.aC(31,B.k.C()>>>16&255,B.k.C()>>>8&255,B.k.C()&255):A.aC(31,B.l.C()>>>16&255,B.l.C()>>>8&255,B.l.C()&255) +a0=n?A.aC(10,B.k.C()>>>16&255,B.k.C()>>>8&255,B.k.C()&255):A.aC(10,B.l.C()>>>16&255,B.l.C()>>>8&255,B.l.C()&255) +if(k==null)k=n?B.jO:B.nO +if(d5==null)d5=k +if(f==null)f=n?B.cE:B.k +if(j==null)j=n?B.F8:B.EU +if(d2==null){if(n)a1=B.Ee +else{p=d4.f.h(0,500) +p.toString +a1=p}if(n)p=B.dI +else{p=d4.f.h(0,200) +p.toString}a2=A.S7(d4)===B.am +a3=A.S7(a1) +a4=a2?B.k:B.l +a3=a3===B.am?B.k:B.l +a5=n?B.k:B.l +a6=n?B.l:B.k +d2=A.a4K(p,o,B.h6,c5,c5,c5,a2?B.k:B.l,a6,c5,c5,a4,c5,c5,c5,a3,c5,c5,c5,a5,c5,c5,c5,c5,c5,c5,c5,d4,c5,c5,c5,c5,a1,c5,c5,c5,c5,f,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5)}a7=n?B.Y:B.S +if(n)a8=B.dI +else{p=d4.f.h(0,50) +p.toString +a8=p}a9=n?B.Ff:A.aC(153,B.l.C()>>>16&255,B.l.C()>>>8&255,B.l.C()&255) +if(n){p=d4.f.h(0,600) +p.toString}else p=B.aN +b0=new A.Lc(p,c5,a,a0,c5,c5,d2,s) +b1=n?B.Fb:B.F2 +b2=n?B.nM:B.jQ +b3=n?B.nM:B.E5 +if(d6){b4=A.aKG(c8,c5,c5,B.WQ,B.WV,B.WX) +p=d2.a===B.ag +b5=p?d2.k3:d2.k2 +b6=p?d2.k2:d2.k3 +p=b4.a.V2(b5,b5,b5) +a3=b4.b.V2(b6,b6,b6) +b7=new A.wq(p,a3,b4.c,b4.d,b4.e)}else b7=A.aY_(c8) +b8=n?b7.b:b7.a +b9=b?b7.b:b7.a +c0=b8.aZ(c5) +c1=b9.aZ(c5) +c2=n?new A.cP(c5,c5,c5,c5,c5,$.aGe(),c5,c5,c5):new A.cP(c5,c5,c5,c5,c5,$.aGd(),c5,c5,c5) +c3=b?B.HS:B.HT +if(c9!=null)c9=c9.gqT(0) +if(d1==null)d1=B.DD +if(g==null)g=n?B.cE:B.k +if(h==null){h=d2.y +if(h.j(0,d3))h=B.k}p=A.aXN(c7) +a3=A.aXP(c6) +t.Q6.a(c9) +a4=c9==null?B.BK:c9 +c4=A.aE8(c5,p,a4,i===!0,B.BS,B.MW,B.C9,B.Ca,B.Cb,B.Cj,b0,k,f,d1,B.DE,B.DI,B.DK,d2,c5,B.FW,B.FX,g,B.G9,b1,j,B.Gc,B.Gf,B.Gg,B.H_,B.H3,a3,B.Ha,B.Hc,a,b2,a9,a0,B.Hm,c2,h,B.Iu,B.IZ,s,B.N1,B.N2,B.N3,B.Ne,B.Ni,B.Nk,B.Oi,B.D3,c8,B.Pa,d3,c,d,c3,c1,B.Pd,B.Pe,d5,B.Q3,B.Q4,B.Q5,a8,B.Q6,B.l,B.RR,B.S_,b3,q,B.Sh,B.Ss,B.St,B.SN,c0,B.Xz,B.XA,B.XG,b7,a7,d6,r) +return c4}, +aE8(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3){return new A.iM(d,s,b1,b,c1,c3,d1,d2,e2,f1,!0,g3,l,m,r,a4,a5,b4,b5,b6,b7,d4,d5,d6,e1,e5,e7,f0,g1,b9,d7,d8,f6,g0,a,c,e,f,g,h,i,k,n,o,p,q,a0,a1,a3,a6,a7,a8,a9,b0,b2,b3,b8,c2,c4,c5,c6,c7,c8,c9,d0,d3,d9,e0,e3,e4,e6,e8,e9,f2,f3,f4,f5,f7,f8,f9,j,a2,c0)}, +aXM(){var s=null +return A.wl(s,B.ag,s,s,s,s,s,s)}, +aXN(a){var s,r,q=A.w(t.u,t.gj) +for(s=0;!1;++s){r=a[s] +q.m(0,r.geR(r),r)}return q}, +aXR(a,b){return $.aOW().bY(0,new A.x5(a,b),new A.amX(a,b))}, +S7(a){var s=a.HN()+0.05 +if(s*s>0.15)return B.ag +return B.am}, +aXO(a,b,c){var s=a.c,r=s.pa(s,new A.amU(b,c),t.K,t.zo) +s=b.c +s=s.gj3(s) +r.UP(r,s.l2(s,new A.amV(a))) +return r}, +aXP(a){var s,r,q=t.K,p=t.ZF,o=A.w(q,p) +for(s=0;!1;++s){r=a[s] +o.m(0,r.geR(r),p.a(r))}return A.aCL(o,q,t.zo)}, +aXQ(h0,h1,h2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9 +if(h0===h1)return h0 +s=h2<0.5 +r=s?h0.d:h1.d +q=s?h0.a:h1.a +p=s?h0.b:h1.b +o=A.aXO(h0,h1,h2) +n=s?h0.e:h1.e +m=s?h0.f:h1.f +l=s?h0.r:h1.r +k=s?h0.w:h1.w +j=A.aWI(h0.x,h1.x,h2) +i=s?h0.y:h1.y +h=A.aY7(h0.Q,h1.Q,h2) +g=A.z(h0.as,h1.as,h2) +g.toString +f=A.z(h0.at,h1.at,h2) +f.toString +e=A.aSc(h0.ax,h1.ax,h2) +d=A.z(h0.ay,h1.ay,h2) +d.toString +c=A.z(h0.ch,h1.ch,h2) +c.toString +b=A.z(h0.CW,h1.CW,h2) +b.toString +a=A.z(h0.cx,h1.cx,h2) +a.toString +a0=A.z(h0.cy,h1.cy,h2) +a0.toString +a1=A.z(h0.db,h1.db,h2) +a1.toString +a2=A.z(h0.dx,h1.dx,h2) +a2.toString +a3=A.z(h0.dy,h1.dy,h2) +a3.toString +a4=A.z(h0.fr,h1.fr,h2) +a4.toString +a5=A.z(h0.fx,h1.fx,h2) +a5.toString +a6=A.z(h0.fy,h1.fy,h2) +a6.toString +a7=A.z(h0.go,h1.go,h2) +a7.toString +a8=A.z(h0.id,h1.id,h2) +a8.toString +a9=A.z(h0.k1,h1.k1,h2) +a9.toString +b0=A.lC(h0.k2,h1.k2,h2) +b1=A.lC(h0.k3,h1.k3,h2) +b2=A.wk(h0.k4,h1.k4,h2) +b3=A.wk(h0.ok,h1.ok,h2) +b4=A.aY0(h0.p1,h1.p1,h2) +b5=A.aRo(h0.p2,h1.p2,h2) +b6=A.aRv(h0.p3,h1.p3,h2) +b7=A.aRy(h0.p4,h1.p4,h2) +b8=h0.R8 +b9=h1.R8 +c0=A.z(b8.a,b9.a,h2) +c1=A.z(b8.b,b9.b,h2) +c2=A.z(b8.c,b9.c,h2) +c3=A.z(b8.d,b9.d,h2) +c4=A.bm(b8.e,b9.e,h2) +c5=A.V(b8.f,b9.f,h2) +c6=A.cZ(b8.r,b9.r,h2) +b8=A.cZ(b8.w,b9.w,h2) +b9=A.aRB(h0.RG,h1.RG,h2) +c7=A.aRC(h0.rx,h1.rx,h2) +c8=A.aRE(h0.ry,h1.ry,h2) +s=s?h0.to:h1.to +c9=A.aRP(h0.x1,h1.x1,h2) +d0=A.aRQ(h0.x2,h1.x2,h2) +d1=A.aRV(h0.xr,h1.xr,h2) +d2=A.aS_(h0.y1,h1.y1,h2) +d3=A.aSu(h0.y2,h1.y2,h2) +d4=A.aSy(h0.M,h1.M,h2) +d5=A.aSQ(h0.P,h1.P,h2) +d6=A.aSY(h0.n,h1.n,h2) +d7=A.aTe(h0.I,h1.I,h2) +d8=A.aTf(h0.X,h1.X,h2) +d9=A.aTq(h0.a2,h1.a2,h2) +e0=A.aTL(h0.S,h1.S,h2) +e1=A.aTQ(h0.a9,h1.a9,h2) +e2=A.aTS(h0.ab,h1.ab,h2) +e3=A.aUq(h0.au,h1.au,h2) +e4=A.aUM(h0.aX,h1.aX,h2) +e5=A.aV2(h0.b9,h1.b9,h2) +e6=A.aV3(h0.aL,h1.aL,h2) +e7=A.aV4(h0.bO,h1.bO,h2) +e8=A.aVp(h0.bf,h1.bf,h2) +e9=A.aVq(h0.br,h1.br,h2) +f0=A.aVr(h0.bF,h1.bF,h2) +f1=A.aVw(h0.ao,h1.ao,h2) +f2=A.aVW(h0.aE,h1.aE,h2) +f3=A.aW6(h0.dW,h1.dW,h2) +f4=A.aWa(h0.bK,h1.bK,h2) +f5=A.aWJ(h0.f3,h1.f3,h2) +f6=A.aWL(h0.bW,h1.bW,h2) +f7=A.aWN(h0.D,h1.D,h2) +f8=A.aX4(h0.cb,h1.cb,h2) +f9=A.aX7(h0.ep,h1.ep,h2) +g0=A.aXm(h0.eq,h1.eq,h2) +g1=A.aXq(h0.an,h1.an,h2) +g2=A.aXu(h0.eB,h1.eB,h2) +g3=A.aXD(h0.c1,h1.c1,h2) +g4=A.aXT(h0.A,h1.A,h2) +g5=A.aXU(h0.R,h1.R,h2) +g6=A.aXX(h0.af,h1.af,h2) +g7=A.aRK(h0.bT,h1.bT,h2) +g8=A.z(h0.bB,h1.bB,h2) +g8.toString +g9=A.z(h0.bU,h1.bU,h2) +g9.toString +return A.aE8(b5,r,b6,q,b7,new A.Bz(c0,c1,c2,c3,c4,c5,c6,b8),b9,c7,c8,g7,s,g,f,c9,d0,d1,d2,e,p,d3,d4,g8,d5,d,c,d6,d7,d8,d9,e0,o,e1,e2,b,a,a0,a1,e3,b0,g9,n,e4,m,e5,e6,e7,e8,e9,f0,f1,l,k,f2,a2,a3,a4,b1,b2,f3,f4,a5,j,f5,f6,a6,f7,a7,f8,f9,a8,i,g0,g1,g2,g3,b3,g4,g5,g6,b4,a9,!0,h)}, +aUV(a,b){var s=b.r +if(s==null)s=a.c1.c +return new A.Ok(a,b,B.mz,b.a,b.b,b.c,b.d,b.e,b.f,s,b.w)}, +aY6(a){var s +$label0$0:{if(B.ad===a||B.L===a||B.bw===a){s=B.es +break $label0$0}if(B.bx===a||B.aY===a||B.by===a){s=B.Z1 +break $label0$0}s=null}return s}, +aY7(a,b,c){var s,r +if(a===b)return a +s=A.V(a.a,b.a,c) +s.toString +r=A.V(a.b,b.b,c) +r.toString +return new A.mm(s,r)}, +qK:function qK(a,b){this.a=a +this.b=b}, +iM:function iM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6 +_.p4=b7 +_.R8=b8 +_.RG=b9 +_.rx=c0 +_.ry=c1 +_.to=c2 +_.x1=c3 +_.x2=c4 +_.xr=c5 +_.y1=c6 +_.y2=c7 +_.M=c8 +_.P=c9 +_.n=d0 +_.I=d1 +_.X=d2 +_.a2=d3 +_.S=d4 +_.a9=d5 +_.ab=d6 +_.au=d7 +_.aX=d8 +_.b9=d9 +_.aL=e0 +_.bO=e1 +_.bf=e2 +_.br=e3 +_.bF=e4 +_.ao=e5 +_.aE=e6 +_.dW=e7 +_.bK=e8 +_.f3=e9 +_.bW=f0 +_.D=f1 +_.cb=f2 +_.ep=f3 +_.eq=f4 +_.an=f5 +_.eB=f6 +_.c1=f7 +_.A=f8 +_.R=f9 +_.af=g0 +_.bT=g1 +_.bB=g2 +_.bU=g3}, +amW:function amW(a,b){this.a=a +this.b=b}, +amX:function amX(a,b){this.a=a +this.b=b}, +amU:function amU(a,b){this.a=a +this.b=b}, +amV:function amV(a){this.a=a}, +Ok:function Ok(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.CW=a +_.cx=b +_.x=c +_.a=d +_.b=e +_.c=f +_.d=g +_.e=h +_.f=i +_.r=j +_.w=k}, +aCP:function aCP(a){this.a=a}, +x5:function x5(a,b){this.a=a +this.b=b}, +Vg:function Vg(a,b,c){this.a=a +this.b=b +this.$ti=c}, +mm:function mm(a,b){this.a=a +this.b=b}, +a_y:function a_y(){}, +a0k:function a0k(){}, +aXT(a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 +if(a4===a5)return a4 +s=a4.d +if(s==null)r=a5.d==null +else r=!1 +if(r)s=null +else if(s==null)s=a5.d +else{r=a5.d +if(!(r==null)){s.toString +r.toString +s=A.aX(s,r,a6)}}r=A.z(a4.a,a5.a,a6) +q=A.k6(a4.b,a5.b,a6) +p=A.k6(a4.c,a5.c,a6) +o=a4.gv8() +n=a5.gv8() +o=A.z(o,n,a6) +n=t.KX.a(A.dv(a4.f,a5.f,a6)) +m=A.z(a4.r,a5.r,a6) +l=A.bm(a4.w,a5.w,a6) +k=A.z(a4.x,a5.x,a6) +j=A.z(a4.y,a5.y,a6) +i=A.z(a4.z,a5.z,a6) +h=A.bm(a4.Q,a5.Q,a6) +g=A.V(a4.as,a5.as,a6) +f=A.z(a4.at,a5.at,a6) +e=A.bm(a4.ax,a5.ax,a6) +d=A.z(a4.ay,a5.ay,a6) +c=A.dv(a4.ch,a5.ch,a6) +b=A.z(a4.CW,a5.CW,a6) +a=A.bm(a4.cx,a5.cx,a6) +if(a6<0.5)a0=a4.gfs() +else a0=a5.gfs() +a1=A.cZ(a4.db,a5.db,a6) +a2=A.dv(a4.dx,a5.dx,a6) +a3=A.aV(a4.dy,a5.dy,a6,A.bV(),t._) +return new A.EB(r,q,p,s,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,A.aV(a4.fr,a5.fr,a6,A.yc(),t.p8))}, +EB:function EB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4}, +an_:function an_(a){this.a=a}, +a_A:function a_A(){}, +aXU(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b)return a +s=A.bm(a.a,b.a,c) +r=A.hD(a.b,b.b,c) +q=A.z(a.c,b.c,c) +p=A.z(a.d,b.d,c) +o=A.z(a.e,b.e,c) +n=A.z(a.f,b.f,c) +m=A.z(a.r,b.r,c) +l=A.z(a.w,b.w,c) +k=A.z(a.y,b.y,c) +j=A.z(a.x,b.x,c) +i=A.z(a.z,b.z,c) +h=A.z(a.Q,b.Q,c) +g=A.z(a.as,b.as,c) +f=A.j4(a.ax,b.ax,c) +return new A.EC(s,r,q,p,o,n,m,l,j,k,i,h,g,A.V(a.at,b.at,c),f)}, +EC:function EC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o}, +a_B:function a_B(){}, +aL5(a,b,c,d){return new A.Vc(c,null,d,b,a,null)}, +aKz(a,b,c,d,e){return new A.EH(c,e,d,b,a,null)}, +aXY(){var s,r,q +if($.t_.length!==0){s=A.b($.t_.slice(0),A.a2($.t_)) +for(r=s.length,q=0;qo/m?new A.I(o*p/m,p):new A.I(q,m*q/o) +r=b +break +case 2:q=c.a +p=c.b +o=b.a +r=q/p>o/m?new A.I(o,o*p/q):new A.I(m*q/p,m) +s=c +break +case 3:q=c.a +p=c.b +o=b.a +if(q/p>o/m){r=new A.I(o,o*p/q) +s=c}else{s=new A.I(q,m*q/o) +r=b}break +case 4:q=c.a +p=c.b +o=b.a +if(q/p>o/m){s=new A.I(o*p/m,p) +r=b}else{r=new A.I(m*q/p,m) +s=c}break +case 5:r=new A.I(Math.min(b.a,c.a),Math.min(m,c.b)) +s=r +break +case 6:n=b.a/m +q=c.b +s=m>q?new A.I(q*n,q):b +m=c.a +if(s.a>m)s=new A.I(m,m/n) +r=b +break +default:r=null +s=null}return new A.MS(r,s)}, +a3n:function a3n(a,b){this.a=a +this.b=b}, +MS:function MS(a,b){this.a=a +this.b=b}, +aRJ(a,b,c){var s,r,q,p,o +if(a===b)return a +s=A.z(a.a,b.a,c) +s.toString +r=A.ky(a.b,b.b,c) +r.toString +q=A.V(a.c,b.c,c) +q.toString +p=A.V(a.d,b.d,c) +p.toString +o=a.e +return new A.dU(p,o===B.dB?b.e:o,s,r,q)}, +aCD(a,b,c){var s,r,q,p,o,n +if(a==null?b==null:a===b)return a +if(a==null)a=A.b([],t.sq) +if(b==null)b=A.b([],t.sq) +s=Math.min(a.length,b.length) +r=A.b([],t.sq) +for(q=0;q>>16&255)/255,o=(a.C()>>>8&255)/255,n=(a.C()&255)/255,m=Math.max(p,Math.max(o,n)),l=Math.min(p,Math.min(o,n)),k=m-l,j=a.C(),i=A.c9() +if(m===0)i.b=0 +else if(m===p)i.b=60*B.d.bh((o-n)/k,6) +else if(m===o)i.b=60*((n-p)/k+2) +else if(m===n)i.b=60*((p-o)/k+4) +i.b=isNaN(i.aS())?0:i.aS() +s=i.aS() +r=(m+l)/2 +q=l===m?0:A.A(k/(1-Math.abs(2*r-1)),0,1) +return new A.AH((j>>>24&255)/255,s,q,r)}, +AH:function AH(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +n5:function n5(){}, +a5q(a,b,c){var s,r=null +if(a==b)return a +if(a==null){s=b.d1(r,c) +return s==null?b:s}if(b==null){s=a.d2(r,c) +return s==null?a:s}if(c===0)return a +if(c===1)return b +s=b.d1(a,c) +if(s==null)s=a.d2(b,c) +if(s==null)if(c<0.5){s=a.d2(r,c*2) +if(s==null)s=a}else{s=b.d1(r,(c-0.5)*2) +if(s==null)s=b}return s}, +iq:function iq(){}, +L4:function L4(){}, +Uv:function Uv(){}, +aCS(a,b,c){if(a==b||c===0)return a +if(c===1)return b +return new A.Tp(a,b,c)}, +b2m(a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 +if(b4.ga7(0))return +s=b4.a +r=b4.c-s +q=b4.b +p=b4.d-q +o=new A.I(r,p) +n=b0.b +n===$&&A.a() +n=n.a +n===$&&A.a() +n=J.ap(n.a.width()) +m=b0.b.a +m===$&&A.a() +m=J.ap(m.a.height()) +l=A.b0B(a8,new A.I(n,m).dE(0,b6),o) +k=l.a.a6(0,b6) +j=l.b +if(b5!==B.f5&&j.j(0,o))b5=B.f5 +$.a3() +i=A.bc() +i.f=!1 +if(a5!=null)i.samX(a5) +i.r=A.aH2(0,0,0,A.A(b3,0,1)).gq(0) +i.Q=a7 +i.sJA(b1) +i.a=a2 +h=j.a +g=(r-h)/2 +f=j.b +e=(p-f)/2 +p=a1.a +p=s+(g+(a9?-p:p)*g) +q+=e+a1.b*e +d=new A.x(p,q,p+h,q+f) +c=b5!==B.f5||a9 +if(c)J.ap(a3.a.save()) +q=b5===B.f5 +if(!q)a3.a.clipRect(A.cU(b4),$.mQ()[1],!0) +if(a9){b=-(s+r/2) +s=a3.a +s.translate(-b,0) +a3.t7(0,-1,1) +s.translate(b,0)}a=a1.art(k,new A.x(0,0,n,m)) +if(q)a3.vk(b0,a,d,i) +else for(s=A.b_v(b4,d,b5),r=s.length,a0=0;a0=B.b.gae(b))return B.b.gae(a) +s=B.b.asa(b,new A.aB9(c)) +r=a[s] +q=s+1 +p=a[q] +o=b[s] +o=A.z(r,p,(c-o)/(b[q]-o)) +o.toString +return o}, +b_J(a,b,c,d,e){var s,r,q=A.alu(null,null,t.i) +q.O(0,b) +q.O(0,d) +s=A.a6(q,q.$ti.c) +s.$flags=1 +r=s +s=A.a2(r).i("ae<1,u>") +s=A.a6(new A.ae(r,new A.aAS(a,b,c,d,e),s),s.i("ax.E")) +s.$flags=1 +return new A.aqk(s,r)}, +aI7(a,b,c){var s +if(a==b)return a +s=b!=null?b.d1(a,c):null +if(s==null&&a!=null)s=a.d2(b,c) +if(s!=null)return s +return c<0.5?a.aJ(0,1-c*2):b.aJ(0,(c-0.5)*2)}, +aIH(a,b,c){var s,r,q,p,o +if(a==b)return a +if(a==null)return b.aJ(0,c) +if(b==null)return a.aJ(0,1-c) +s=A.b_J(a.a,a.Fl(),b.a,b.Fl(),c) +r=A.pn(a.d,b.d,c) +r.toString +q=A.pn(a.e,b.e,c) +q.toString +p=c<0.5 +o=p?a.f:b.f +p=p?a.c:b.c +return new A.uY(r,q,o,s.a,s.b,p)}, +aqk:function aqk(a,b){this.a=a +this.b=b}, +aB9:function aB9(a){this.a=a}, +aAS:function aAS(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a9f:function a9f(){}, +uY:function uY(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.f=c +_.a=d +_.b=e +_.c=f}, +abq:function abq(a){this.a=a}, +aYL(a,b){var s=new A.xb(a,null,a.rn()) +s.a66(a,b,null) +return s}, +aaa:function aaa(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.f=0}, +aad:function aad(a,b,c){this.a=a +this.b=b +this.c=c}, +aac:function aac(a,b){this.a=a +this.b=b}, +aae:function aae(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +TD:function TD(){}, +apB:function apB(a){this.a=a}, +Fh:function Fh(a,b,c){this.a=a +this.b=b +this.c=c}, +xb:function xb(a,b,c){var _=this +_.d=$ +_.a=a +_.b=b +_.c=c}, +au4:function au4(a,b){this.a=a +this.b=b}, +Xj:function Xj(a,b){this.a=a +this.b=b}, +aKV(){return new A.SN(A.b([],t.XZ),A.b([],t.SM),A.b([],t.qj))}, +aWr(a,b,c){return c}, +AT:function AT(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +jj:function jj(){}, +aau:function aau(a,b,c){this.a=a +this.b=b +this.c=c}, +aav:function aav(a,b){this.a=a +this.b=b}, +aar:function aar(a,b){this.a=a +this.b=b}, +aaq:function aaq(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aas:function aas(a){this.a=a}, +aat:function aat(a,b){this.a=a +this.b=b}, +SN:function SN(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.f=!1 +_.r=0 +_.w=!1 +_.x=c}, +arx:function arx(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.f=!1 +_.r=0 +_.w=!1 +_.x=c}, +ji:function ji(a,b,c){this.a=a +this.b=b +this.c=c}, +hP:function hP(a,b,c){this.a=a +this.b=b +this.c=c}, +hO:function hO(a,b){this.a=a +this.b=b}, +aay:function aay(){this.b=this.a=null}, +aaz:function aaz(a){this.a=a}, +qr:function qr(){}, +aaA:function aaA(){}, +aaB:function aaB(){}, +VT:function VT(){}, +VV:function VV(){}, +VU:function VU(){}, +aIj(a,b,c,d,e){return new A.lE(a,d,c,b,!1,!1,e)}, +aF9(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null,e=A.b([],t.O_),d=t.oU,c=A.b([],d) +for(s=a.length,r="",q="",p=0;pl?m:l)){o=t.N +k=A.dj(o) +n=t.c4 +j=A.h9(d,d,d,o,n) +for(i=p;i")),o=o.c;n.u();){h=n.d +if(h==null)h=o.a(h) +e=A.aI0(j.h(0,h),g.h(0,h),c) +if(e!=null)s.push(e)}}return s}, +p:function p(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +a_t:function a_t(){}, +aMm(a,b,c,d,e){var s,r +for(s=c,r=0;r0){n=-n +l=2*l +s=(n-Math.sqrt(j))/l +r=(n+Math.sqrt(j))/l +q=(c-s*b)/(r-s) +l=new A.avm(s,r,b-q,q) +n=l +break $label0$0}if(j<0){p=Math.sqrt(k-m)/(2*l) +o=-(n/2/l) +n=new A.azI(p,o,b,(c-o*b)/p) +break $label0$0}o=-n/(2*l) +n=new A.aqr(o,b,c-o*b) +break $label0$0}return n}, +alv:function alv(a,b,c){this.a=a +this.b=b +this.c=c}, +DT:function DT(a,b){this.a=a +this.b=b}, +DS:function DS(a,b,c){this.b=a +this.c=b +this.a=c}, +rA:function rA(a,b,c){this.b=a +this.c=b +this.a=c}, +aqr:function aqr(a,b,c){this.a=a +this.b=b +this.c=c}, +avm:function avm(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +azI:function azI(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +EF:function EF(a,b){this.a=a +this.c=b}, +aWj(a,b,c,d,e,f,g,h){var s=null,r=new A.CC(new A.R5(s,s),B.zt,b,h,A.ah(),a,g,s,new A.aO(),A.ah()) +r.aF() +r.saU(s) +r.a5T(a,s,b,c,d,e,f,g,h) +return r}, +vF:function vF(a,b){this.a=a +this.b=b}, +CC:function CC(a,b,c,d,e,f,g,h,i,j){var _=this +_.cn=_.bN=$ +_.c_=a +_.eo=$ +_.eA=null +_.fY=b +_.f2=c +_.j4=d +_.r3=null +_.oO=$ +_.vr=e +_.A=null +_.R=f +_.af=g +_.D$=h +_.dy=i +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=j +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ahE:function ahE(a){this.a=a}, +aYq(a){}, +CZ:function CZ(){}, +aix:function aix(a){this.a=a}, +aiz:function aiz(a){this.a=a}, +aiy:function aiy(a){this.a=a}, +aiw:function aiw(a){this.a=a}, +aiv:function aiv(a){this.a=a}, +Fb:function Fb(a,b){var _=this +_.a=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +Uy:function Uy(a,b,c,d,e,f,g,h){var _=this +_.b=a +_.c=b +_.d=c +_.e=null +_.f=!1 +_.r=d +_.z=e +_.Q=f +_.at=null +_.ch=g +_.CW=h +_.cx=null}, +YV:function YV(a,b,c,d){var _=this +_.I=!1 +_.dy=a +_.fr=null +_.fx=b +_.go=null +_.D$=c +_.b=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +n_(a){var s=a.a,r=a.b +return new A.ak(s,s,r,r)}, +le(a,b){var s,r,q=b==null,p=q?0:b +q=q?1/0:b +s=a==null +r=s?0:a +return new A.ak(p,q,r,s?1/0:a)}, +j6(a,b){var s,r,q=b!==1/0,p=q?b:0 +q=q?b:1/0 +s=a!==1/0 +r=s?a:0 +return new A.ak(p,q,r,s?a:1/0)}, +yS(a){return new A.ak(0,a.a,0,a.b)}, +hD(a,b,c){var s,r,q,p +if(a==b)return a +if(a==null)return b.a6(0,c) +if(b==null)return a.a6(0,1-c) +s=a.a +if(isFinite(s)){s=A.V(s,b.a,c) +s.toString}else s=1/0 +r=a.b +if(isFinite(r)){r=A.V(r,b.b,c) +r.toString}else r=1/0 +q=a.c +if(isFinite(q)){q=A.V(q,b.c,c) +q.toString}else q=1/0 +p=a.d +if(isFinite(p)){p=A.V(p,b.d,c) +p.toString}else p=1/0 +return new A.ak(s,r,q,p)}, +aGQ(a){return new A.n0(a.a,a.b,a.c)}, +KY(a,b){return a==null?null:a+b}, +tT(a,b){var s,r,q,p,o,n +$label0$0:{s=a!=null +r=null +q=!1 +if(s){q=b!=null +r=b +p=a}else p=null +o=null +if(q){n=s?r:b +q=p>=(n==null?A.cp(n):n)?b:a +break $label0$0}q=!1 +if(a!=null){if(s)q=r +else{q=b +r=q +s=!0}q=q==null +p=a}else p=o +if(q){q=p +break $label0$0}q=a==null +if(q)if(!s){r=b +s=!0}if(q){n=s?r:b +q=n +break $label0$0}q=o}return q}, +ak:function ak(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a3m:function a3m(){}, +n0:function n0(a,b,c){this.a=a +this.b=b +this.c=c}, +pw:function pw(a,b){this.c=a +this.a=b +this.b=null}, +fg:function fg(a){this.a=a}, +zo:function zo(){}, +arl:function arl(){}, +arm:function arm(a,b){this.a=a +this.b=b}, +aoP:function aoP(){}, +aoQ:function aoQ(a,b){this.a=a +this.b=b}, +te:function te(a,b){this.a=a +this.b=b}, +atP:function atP(a,b){this.a=a +this.b=b}, +aO:function aO(){var _=this +_.d=_.c=_.b=_.a=null}, +y:function y(){}, +ahG:function ahG(a){this.a=a}, +d9:function d9(){}, +ahF:function ahF(a){this.a=a}, +Fx:function Fx(){}, +iz:function iz(a,b,c){var _=this +_.e=null +_.ca$=a +_.am$=b +_.a=c}, +af2:function af2(){}, +CG:function CG(a,b,c,d,e,f){var _=this +_.n=a +_.c0$=b +_.a4$=c +_.c6$=d +_.dy=e +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Hq:function Hq(){}, +Yu:function Yu(){}, +aJJ(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e +if(a==null)a=B.l0 +s=J.aE(a) +r=s.gv(a)-1 +q=A.bz(0,null,!1,t.LQ) +p=0<=r +for(;;){if(!!1)break +s.h(a,0) +o=b[0] +o.gBn(o) +break}for(;;){if(!!1)break +s.h(a,r) +n=b[-1] +n.gBn(n) +break}m=A.c9() +l=0 +if(p){m.sdL(A.w(t.D2,t.bu)) +for(k=m.a;l<=r;){j=s.h(a,l) +i=j.a +if(i!=null){h=m.b +if(h===m)A.a0(A.Bf(k)) +J.dR(h,i,j)}++l}}for(k=m.a,g=0;!1;){o=b[g] +j=null +if(p){f=o.gBn(o) +i=m.b +if(i===m)A.a0(A.Bf(k)) +e=J.aK(i,f) +if(e!=null)o.gBn(o) +else j=e}q[g]=A.aJI(j,o);++g}s.gv(a) +for(;;){if(!!1)break +q[g]=A.aJI(s.h(a,l),b[g]);++g;++l}return new A.eY(q,A.a2(q).i("eY<1,cM>"))}, +aJI(a,b){var s=a==null?A.Dx(b.gBn(b),null):a,r=b.gZq(),q=A.hk() +r.gav7(r) +q.y1=r.gav7(r) +q.r=!0 +r.ga1e() +q.p3=r.ga1e() +q.r=!0 +r.gamF(r) +q.sYd(r.gamF(r)) +r.gasN() +q.sYc(r.gasN()) +r.ga0y(r) +q.sYr(r.ga0y(r)) +r.gamt(r) +q.sYb(r.gamt(r)) +r.gaph(r) +q.sarR(r.gaph(r)) +r.gp8() +q.sarY(r.gp8()) +r.gJR() +q.sJR(r.gJR()) +r.gavo() +q.sYt(r.gavo()) +r.ga1c() +q.sas2(r.ga1c()) +r.gas9() +q.sarX(r.gas9()) +r.gKD(r) +q.sYo(r.gKD(r)) +r.gapI() +q.sJF(r.gapI()) +r.gapJ(r) +q.sp5(r.gapJ(r)) +r.gmT(r) +q.sYg(0,r.gmT(r)) +r.garj() +q.sarU(r.garj()) +r.gwh() +q.sYl(r.gwh()) +r.gasR(r) +q.sYk(r.gasR(r)) +r.gar3(r) +q.sYi(r.gar3(r)) +r.gar1() +q.sYh(r.gar1()) +r.gJp() +q.sJp(r.gJp()) +r.gx9() +q.sx9(r.gx9()) +r.gBy() +q.sBy(r.gBy()) +r.gBs() +q.sBs(r.gBs()) +r.gJI() +q.sJI(r.gJI()) +r.gJZ() +q.sJZ(r.gJZ()) +r.gAb() +q.sAb(r.gAb()) +r.gavw() +q.sas5(r.gavw()) +r.gja(r) +q.sYj(r.gja(r)) +r.gJN(r) +q.y2=new A.cW(r.gJN(r),B.aI) +q.r=!0 +r.gq(r) +q.M=new A.cW(r.gq(r),B.aI) +q.r=!0 +r.garn() +q.P=new A.cW(r.garn(),B.aI) +q.r=!0 +r.gaot() +q.n=new A.cW(r.gaot(),B.aI) +q.r=!0 +r.gJr(r) +q.I=new A.cW(r.gJr(r),B.aI) +q.r=!0 +r.garg(r) +q.xr=r.garg(r) +q.r=!0 +r.gavA() +q.X=r.gavA() +q.r=!0 +r.gBf() +q.sBf(r.gBf()) +r.gavk() +q.zB(r.gavk()) +r.ganb() +q.bO=r.ganb() +q.r=!0 +r.gJr(r) +q.I=new A.cW(r.gJr(r),B.aI) +q.r=!0 +r.gbC() +q.S=r.gbC() +q.r=!0 +r.gavS() +q.bf=r.gavS() +q.r=!0 +r.gars() +q.br=r.gars() +q.r=!0 +r.gnb() +q.snb(r.gnb()) +r.gna() +q.sna(r.gna()) +r.gBP() +q.sBP(r.gBP()) +r.gBQ() +q.sBQ(r.gBQ()) +r.gBR() +q.sBR(r.gBR()) +r.gBO() +q.sBO(r.gBO()) +r.gKg() +q.sKg(r.gKg()) +r.gKa() +q.sKa(r.gKa()) +r.gBB(r) +q.sBB(0,r.gBB(r)) +r.gBC(r) +q.sBC(0,r.gBC(r)) +r.gBM(r) +q.sBM(0,r.gBM(r)) +r.gBK() +q.sBK(r.gBK()) +r.gBI() +q.sBI(r.gBI()) +r.gBL() +q.sBL(r.gBL()) +r.gBJ() +q.sBJ(r.gBJ()) +r.gBS() +q.sBS(r.gBS()) +r.gBT() +q.sBT(r.gBT()) +r.gBD() +q.sBD(r.gBD()) +r.gBE() +q.sBE(r.gBE()) +r.gBG(r) +q.sBG(0,r.gBG(r)) +r.gBF() +q.sBF(r.gBF()) +r.gKf() +q.sKf(r.gKf()) +r.gK8() +q.sK8(r.gK8()) +s.lY(0,B.l0,q) +s.sbl(0,b.gbl(b)) +s.sc2(0,b.gc2(b)) +s.dy=b.gawK() +return s}, +M0:function M0(){}, +CH:function CH(a,b,c,d,e,f,g,h){var _=this +_.A=a +_.R=b +_.af=c +_.bT=d +_.bB=e +_.iq=_.kC=_.eC=_.bU=null +_.D$=f +_.dy=g +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +a5n:function a5n(){}, +aJK(a,b){return new A.j(A.A(a.a,b.a,b.c),A.A(a.b,b.b,b.d))}, +aLo(a){var s=new A.Yv(a,new A.aO(),A.ah()) +s.aF() +return s}, +aLB(){$.a3() +return new A.IA(A.bc(),B.fX,B.cV,$.aw())}, +rU:function rU(a,b){this.a=a +this.b=b}, +ant:function ant(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=!0 +_.r=f}, +rp:function rp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this +_.a2=_.X=_.I=_.n=null +_.S=$ +_.a9=a +_.ab=b +_.aX=_.au=null +_.b9=c +_.aL=d +_.bO=e +_.bf=f +_.br=g +_.bF=h +_.ao=i +_.aE=j +_.f3=_.bK=_.dW=null +_.bW=k +_.D=l +_.cb=m +_.ep=n +_.eq=o +_.an=p +_.eB=q +_.c1=r +_.A=s +_.R=a0 +_.af=a1 +_.bT=a2 +_.bB=a3 +_.bU=a4 +_.eC=a5 +_.iq=!1 +_.rb=$ +_.IW=a6 +_.hn=0 +_.du=a7 +_.rd=_.lD=_.hO=null +_.WY=_.WX=$ +_.apu=_.vA=_.eP=null +_.jM=$ +_.hP=a8 +_.r1=null +_.lz=!0 +_.mX=_.mW=_.oN=_.r2=!1 +_.cv=null +_.dt=a9 +_.bN=b0 +_.c0$=b1 +_.a4$=b2 +_.c6$=b3 +_.AG$=b4 +_.dy=b5 +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=b6 +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ahL:function ahL(a){this.a=a}, +ahK:function ahK(){}, +ahH:function ahH(a,b){this.a=a +this.b=b}, +ahM:function ahM(){}, +ahJ:function ahJ(){}, +ahI:function ahI(){}, +Yv:function Yv(a,b,c){var _=this +_.n=a +_.dy=b +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +o6:function o6(){}, +IA:function IA(a,b,c,d){var _=this +_.r=a +_.x=_.w=null +_.y=b +_.z=c +_.M$=0 +_.P$=d +_.I$=_.n$=0}, +Fi:function Fi(a,b,c){var _=this +_.r=!0 +_.w=!1 +_.x=a +_.y=$ +_.Q=_.z=null +_.as=b +_.ax=_.at=null +_.M$=0 +_.P$=c +_.I$=_.n$=0}, +wJ:function wJ(a,b){var _=this +_.r=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +Hs:function Hs(){}, +Ht:function Ht(){}, +Yw:function Yw(){}, +CJ:function CJ(a,b,c){var _=this +_.n=a +_.I=$ +_.dy=b +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aoL(a,b){var s +switch(b.a){case 0:s=a +break +case 1:s=new A.I(a.b,a.a) +break +default:s=null}return s}, +aYk(a,b,c){var s +switch(c.a){case 0:s=b +break +case 1:s=b.gX2() +break +default:s=null}return s.b3(a)}, +aYj(a,b){return new A.I(a.a+b.a,Math.max(a.b,b.b))}, +aKX(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=null +$label0$0:{s=a==null +if(s){r=b +q=r}else{r=d +q=r}if(!s){p=!1 +p=b==null +q=b +r=a +s=!0}else p=!0 +if(p){p=r +break $label0$0}p=t.mi +o=d +n=!1 +m=d +l=d +k=d +j=!1 +if(p.b(a)){i=!0 +h=a.a +g=h +if(typeof g=="number"){A.cp(h) +f=a.b +g=f +if(typeof g=="number"){A.cp(f) +if(s)g=q +else{g=b +s=i +q=g}if(p.b(g)){if(s)g=q +else{g=b +s=i +q=g}e=(g==null?p.a(g):g).a +g=e +n=typeof g=="number" +if(n){A.cp(e) +if(s)j=q +else{j=b +s=i +q=j}o=(j==null?p.a(j):j).b +j=o +j=typeof j=="number" +k=e}}l=f}m=h}}if(j){if(n)p=o +else{j=s?q:b +o=(j==null?p.a(j):j).b +p=o}A.cp(p) +a=new A.am(Math.max(A.l4(m),A.l4(k)),Math.max(A.l4(l),p)) +p=a +break $label0$0}p=d}return p}, +aWk(a,b,c,d,e,f,g,h,i){var s,r=null,q=A.ah(),p=J.aIs(4,t.iy) +for(s=0;s<4;++s)p[s]=new A.Er(r,B.az,B.al,new A.iT(1),r,r,r,r,B.aP,r) +q=new A.CK(c,d,e,b,h,i,g,a,f,q,p,!0,0,r,r,new A.aO(),A.ah()) +q.aF() +q.O(0,r) +return q}, +aWl(a){var s=a.b +s.toString +s=t.US.a(s).e +return s==null?0:s}, +au0:function au0(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +MV:function MV(a,b){this.a=a +this.b=b}, +h7:function h7(a,b,c){var _=this +_.f=_.e=null +_.ca$=a +_.am$=b +_.a=c}, +Oi:function Oi(a,b){this.a=a +this.b=b}, +nJ:function nJ(a,b){this.a=a +this.b=b}, +pQ:function pQ(a,b){this.a=a +this.b=b}, +CK:function CK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.n=a +_.I=b +_.X=c +_.a2=d +_.S=e +_.a9=f +_.ab=g +_.au=0 +_.aX=h +_.b9=i +_.aL=j +_.apo$=k +_.aww$=l +_.c0$=m +_.a4$=n +_.c6$=o +_.dy=p +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=q +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ahN:function ahN(a,b){this.a=a +this.b=b}, +ahS:function ahS(){}, +ahQ:function ahQ(){}, +ahR:function ahR(){}, +ahP:function ahP(){}, +ahO:function ahO(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Yy:function Yy(){}, +Yz:function Yz(){}, +Hu:function Hu(){}, +CM:function CM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this +_.I=_.n=null +_.X=a +_.a2=b +_.S=c +_.a9=d +_.ab=e +_.au=null +_.aX=f +_.b9=g +_.aL=h +_.bO=i +_.bf=j +_.br=k +_.bF=l +_.ao=m +_.aE=n +_.dW=o +_.bK=p +_.f3=q +_.dy=r +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=s +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ah(){return new A.O0()}, +aJb(a){return new A.jw(a,A.w(t.S,t.M),A.ah())}, +aKC(a){return new A.wp(a,B.i,A.w(t.S,t.M),A.ah())}, +aDG(){return new A.OT(B.i,A.w(t.S,t.M),A.ah())}, +aGF(a){return new A.yG(a,B.cA,A.w(t.S,t.M),A.ah())}, +abp(a,b){return new A.Bj(a,b,A.w(t.S,t.M),A.ah())}, +aI_(a){var s,r,q=new A.b6(new Float64Array(16)) +q.dF() +for(s=a.length-1;s>0;--s){r=a[s] +if(r!=null)r.qB(a[s-1],q)}return q}, +a8p(a,b,c,d){var s,r +if(a==null||b==null)return null +if(a===b)return a +s=a.z +r=b.z +if(sr){c.push(a.r) +return A.a8p(a.r,b,c,d)}c.push(a.r) +d.push(b.r) +return A.a8p(a.r,b.r,c,d)}, +yA:function yA(a,b,c){this.a=a +this.b=b +this.$ti=c}, +KA:function KA(a,b){this.a=a +this.$ti=b}, +es:function es(){}, +abl:function abl(a,b){this.a=a +this.b=b}, +abm:function abm(a,b){this.a=a +this.b=b}, +O0:function O0(){this.a=null}, +Pb:function Pb(a,b,c){var _=this +_.ax=a +_.ay=null +_.CW=_.ch=!1 +_.a=b +_.b=0 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +f_:function f_(){}, +jw:function jw(a,b,c){var _=this +_.k3=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +ze:function ze(a,b,c){var _=this +_.k3=null +_.k4=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +zd:function zd(a,b,c){var _=this +_.k3=null +_.k4=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +zc:function zc(a,b,c){var _=this +_.k3=null +_.k4=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +AU:function AU(a,b,c,d){var _=this +_.M=a +_.k3=b +_.ay=_.ax=null +_.a=c +_.b=0 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +wp:function wp(a,b,c,d){var _=this +_.M=a +_.n=_.P=null +_.I=!0 +_.k3=b +_.ay=_.ax=null +_.a=c +_.b=0 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +OT:function OT(a,b,c){var _=this +_.M=null +_.k3=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +yG:function yG(a,b,c,d){var _=this +_.k3=a +_.k4=b +_.ay=_.ax=_.ok=null +_.a=c +_.b=0 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +Bg:function Bg(){this.d=this.a=null}, +Bj:function Bj(a,b,c,d){var _=this +_.k3=a +_.k4=b +_.ay=_.ax=null +_.a=c +_.b=0 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +Aw:function Aw(a,b,c,d,e,f){var _=this +_.k3=a +_.k4=b +_.ok=c +_.p1=d +_.p4=_.p3=_.p2=null +_.R8=!0 +_.ay=_.ax=null +_.a=e +_.b=0 +_.e=f +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null}, +yz:function yz(a,b,c,d,e,f){var _=this +_.k3=a +_.k4=b +_.ok=c +_.ay=_.ax=null +_.a=d +_.b=0 +_.e=e +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.as=_.Q=null +_.$ti=f}, +Wa:function Wa(){}, +aV6(a,b){var s +if(a==null)return!0 +s=a.b +if(t.ks.b(b))return!1 +return t.ge.b(s)||t.PB.b(b)||!s.gby(s).j(0,b.gby(b))}, +aV5(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=a5.d +if(a4==null)a4=a5.c +s=a5.a +r=a5.b +q=a4.grW() +p=a4.gk7(a4) +o=a4.gbt() +n=a4.gcK(a4) +m=a4.gjJ(a4) +l=a4.gby(a4) +k=a4.goA() +j=a4.gdR(a4) +a4.gwh() +i=a4.gC1() +h=a4.gwp() +g=a4.gcj() +f=a4.gIq() +e=a4.gt(a4) +d=a4.gKy() +c=a4.gKB() +b=a4.gKA() +a=a4.gKz() +a0=a4.gpf(a4) +a1=a4.gKS() +s.aj(0,new A.aeX(r,A.aVK(j,k,m,g,f,a4.gAq(),0,n,!1,a0,o,l,h,i,d,a,b,c,e,a4.gtr(),a1,p,q).bp(a4.gc2(a4)),s)) +q=A.n(r).i("bs<1>") +p=q.i("aY") +a2=A.a6(new A.aY(new A.bs(r,q),new A.aeY(s),p),p.i("o.E")) +q=a4.grW() +p=a4.gk7(a4) +o=a4.gbt() +n=a4.gcK(a4) +m=a4.gjJ(a4) +l=a4.gby(a4) +k=a4.goA() +j=a4.gdR(a4) +a4.gwh() +i=a4.gC1() +h=a4.gwp() +g=a4.gcj() +f=a4.gIq() +e=a4.gt(a4) +d=a4.gKy() +c=a4.gKB() +b=a4.gKA() +a=a4.gKz() +a0=a4.gpf(a4) +a1=a4.gKS() +a3=A.aVI(j,k,m,g,f,a4.gAq(),0,n,!1,a0,o,l,h,i,d,a,b,c,e,a4.gtr(),a1,p,q).bp(a4.gc2(a4)) +for(q=A.a2(a2).i("cc<1>"),p=new A.cc(a2,q),p=new A.bd(p,p.gv(0),q.i("bd")),q=q.i("ax.E");p.u();){o=p.d +if(o==null)o=q.a(o) +if(o.gLb()){n=o.gYW(o) +if(n!=null)n.$1(a3.bp(r.h(0,o)))}}}, +WJ:function WJ(a,b){this.a=a +this.b=b}, +WK:function WK(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Ov:function Ov(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.M$=0 +_.P$=d +_.I$=_.n$=0}, +aeZ:function aeZ(){}, +af1:function af1(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +af0:function af0(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +af_:function af_(a){this.a=a}, +aeX:function aeX(a,b,c){this.a=a +this.b=b +this.c=c}, +aeY:function aeY(a){this.a=a}, +a0L:function a0L(){}, +aJj(a,b){var s,r,q=a.ch,p=t.dJ.a(q.a) +if(p==null){s=a.rS(null) +q.saB(0,s) +p=s}else{p.KK() +a.rS(p)}a.db=!1 +r=new A.r2(p,a.gkP()) +a.FQ(r,B.i) +r.tj()}, +aVA(a){var s=a.ch.a +s.toString +a.rS(t.gY.a(s)) +a.db=!1}, +aVB(a,b,c){var s=t.TT +return new A.lQ(a,c,b,A.b([],s),A.b([],s),A.b([],s),A.aP(t.I9),A.aP(t.sv))}, +aEG(a6,a7,a8,a9,b0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=null +if(b0==null)s=a5 +else{r=new A.b6(new Float64Array(16)) +r.cB(b0) +s=r}if(s==null){s=new A.b6(new Float64Array(16)) +s.dF()}q=a6.b +p=a7.b +r=t.TT +o=A.b([q],r) +for(n=p,m=q,l=a5;m!==n;){k=m.c +j=n.c +if(k>=j){i=m.gaT(m) +i.toString +o.push(i) +m=i}if(k<=j){i=n.gaT(n) +i.toString +if(l==null){l=new A.b6(new Float64Array(16)) +l.dF() +h=l}else h=l +i.cP(n,h) +n=i}}for(g=o.length-1;g>0;g=f){f=g-1 +o[g].cP(o[f],s)}if(l!=null)if(l.hM(l)!==0)s.dZ(0,l) +else s.D9() +if(B.b.gae(o)===p)for(g=o.length-1,e=a9,d=a8;g>0;g=f){f=g-1 +c=A.aLv(o[g],o[f],e,d) +d=c.a +e=c.b}else{b=A.b([q],r) +a=q.gaT(q) +for(;;){r=a==null +i=!r +if(!(i&&a.geM().r==null))break +b.push(a) +a=a.gaT(a)}a0=r?a5:a.geM().r +r=a0==null +d=r?a5:a0.r +e=r?a5:a0.f +if(i)for(g=b.length-1,a7=a;g>=0;--g){a1=A.aLv(a7,b[g],e,d) +d=a1.a +e=a1.b +a7=b[g]}}a2=e==null?a5:e.dM(q.ghB()) +if(a2==null)a2=q.ghB() +if(d!=null){a3=d.dM(a2) +a4=a3.ga7(0)&&!a2.ga7(0) +if(!a4)a2=a3}else a4=!1 +return new A.Zr(s,e,d,a2,a4)}, +aLx(a,b){if(a==null)return null +if(a.ga7(0)||b.Yz())return B.a1 +return A.aIV(b,a)}, +aLv(a,b,c,d){var s,r,q,p=a.mN(b) +if(d==null&&p==null)return B.PG +s=$.aPs() +s.dF() +a.cP(b,s) +r=A.aLx(A.aLw(p,d),s) +r.toString +q=a.Ic(b) +return new A.am(r,A.aLx(q==null?A.aLw(c,p):q,s))}, +aLw(a,b){var s +if(b==null)return a +s=a==null?null:a.dM(b) +return s==null?b:s}, +cx:function cx(){}, +r2:function r2(a,b){var _=this +_.a=a +_.b=b +_.e=_.d=_.c=null}, +ag7:function ag7(a,b,c){this.a=a +this.b=b +this.c=c}, +ag6:function ag6(a,b,c){this.a=a +this.b=b +this.c=c}, +ag5:function ag5(a,b,c){this.a=a +this.b=b +this.c=c}, +lh:function lh(){}, +lQ:function lQ(a,b,c,d,e,f,g,h){var _=this +_.b=a +_.c=b +_.d=c +_.e=null +_.f=!1 +_.r=d +_.z=e +_.Q=f +_.at=null +_.ch=g +_.CW=h +_.cx=null}, +age:function age(){}, +agd:function agd(){}, +agf:function agf(){}, +agg:function agg(a){this.a=a}, +agh:function agh(){}, +t:function t(){}, +ai_:function ai_(a){this.a=a}, +ai3:function ai3(a,b,c){this.a=a +this.b=b +this.c=c}, +ai0:function ai0(a){this.a=a}, +ai1:function ai1(a){this.a=a}, +ai2:function ai2(){}, +aN:function aN(){}, +ahY:function ahY(){}, +ahZ:function ahZ(a){this.a=a}, +dA:function dA(){}, +a9:function a9(){}, +vE:function vE(){}, +ahD:function ahD(a){this.a=a}, +QR:function QR(){}, +I9:function I9(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +ayk:function ayk(a){var _=this +_.a=a +_.b=!1 +_.d=_.c=null}, +ayl:function ayl(a){this.a=a}, +dE:function dE(){}, +Gl:function Gl(a,b){this.b=a +this.c=b}, +fX:function fX(a,b,c,d,e,f,g){var _=this +_.b=a +_.c=!1 +_.d=null +_.f=_.e=!1 +_.r=null +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.at=_.as=null +_.ax=g}, +axb:function axb(a){this.a=a}, +axc:function axc(){}, +axd:function axd(a){this.a=a}, +axe:function axe(a){this.a=a}, +axf:function axf(a){this.a=a}, +ax5:function ax5(a){this.a=a}, +ax3:function ax3(a,b){this.a=a +this.b=b}, +ax4:function ax4(a,b){this.a=a +this.b=b}, +ax8:function ax8(){}, +ax9:function ax9(){}, +ax6:function ax6(){}, +ax7:function ax7(){}, +axa:function axa(a){this.a=a}, +Zr:function Zr(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Xk:function Xk(){}, +YB:function YB(){}, +a12:function a12(){}, +aWm(a,b,c,d){var s,r,q,p,o=a.b +o.toString +s=t.ot.a(o).b +if(s==null)o=B.P4 +else{o=c.$2(a,b) +r=s.b +q=s.c +$label0$0:{p=null +if(B.zl===r||B.zm===r||B.ef===r||B.zo===r||B.zn===r)break $label0$0 +if(B.zk===r){q.toString +p=d.$3(a,b,q) +break $label0$0}}q=new A.vq(o,r,p,q) +o=q}return o}, +aEF(a,b){var s=a.a,r=b.a +if(sr)return-1 +else{s=a.b +if(s===b.b)return 0 +else return s===B.ak?1:-1}}, +lR:function lR(a,b){this.b=a +this.a=b}, +iK:function iK(a,b){var _=this +_.b=_.a=null +_.ca$=a +_.am$=b}, +PR:function PR(){}, +ahW:function ahW(a){this.a=a}, +azL:function azL(){}, +o7:function o7(a,b,c,d,e,f,g,h,i,j){var _=this +_.n=a +_.a9=_.S=_.a2=_.X=_.I=null +_.ab=b +_.au=c +_.aX=d +_.b9=!1 +_.br=_.bf=_.bO=_.aL=null +_.AG$=e +_.c0$=f +_.a4$=g +_.c6$=h +_.dy=i +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=j +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ai7:function ai7(){}, +ai9:function ai9(){}, +ai6:function ai6(){}, +ai5:function ai5(){}, +ai8:function ai8(){}, +ai4:function ai4(a,b){this.a=a +this.b=b}, +l_:function l_(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=null +_.f=!1 +_.w=_.r=null +_.x=$ +_.z=_.y=null +_.M$=0 +_.P$=d +_.I$=_.n$=0}, +HA:function HA(){}, +YC:function YC(){}, +YD:function YD(){}, +IC:function IC(){}, +a19:function a19(){}, +a1a:function a1a(){}, +a1b:function a1b(){}, +aJH(a){var s=new A.CF(a,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +ahX(a,b){return a}, +aWn(a,b,c,d,e,f){var s=b==null?B.aH:b +s=new A.CP(!0,c,e,d,a,s,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +PZ:function PZ(){}, +eO:function eO(){}, +AK:function AK(a,b){this.a=a +this.b=b}, +CT:function CT(){}, +CF:function CF(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PT:function PT(a,b,c,d,e){var _=this +_.A=a +_.R=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +CO:function CO(a,b,c,d,e){var _=this +_.A=a +_.R=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PV:function PV(a,b,c,d,e,f){var _=this +_.A=a +_.R=b +_.af=c +_.D$=d +_.dy=e +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +CB:function CB(){}, +PG:function PG(a,b,c,d,e,f,g){var _=this +_.r6$=a +_.IJ$=b +_.r7$=c +_.IK$=d +_.D$=e +_.dy=f +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PH:function PH(a,b,c,d,e,f,g){var _=this +_.A=a +_.R=b +_.af=c +_.bT=d +_.D$=e +_.dy=f +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +zy:function zy(){}, +ol:function ol(a,b,c){this.b=a +this.c=b +this.a=c}, +xt:function xt(){}, +PL:function PL(a,b,c,d,e){var _=this +_.A=a +_.R=null +_.af=b +_.bB=null +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PK:function PK(a,b,c,d,e,f,g){var _=this +_.c_=a +_.eo=b +_.A=c +_.R=null +_.af=d +_.bB=null +_.D$=e +_.dy=f +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PJ:function PJ(a,b,c,d,e){var _=this +_.A=a +_.R=null +_.af=b +_.bB=null +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +HB:function HB(){}, +PW:function PW(a,b,c,d,e,f,g,h,i,j){var _=this +_.a4=a +_.c6=b +_.c_=c +_.eo=d +_.eA=e +_.A=f +_.R=null +_.af=g +_.bB=null +_.D$=h +_.dy=i +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=j +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aia:function aia(a,b){this.a=a +this.b=b}, +PX:function PX(a,b,c,d,e,f,g,h){var _=this +_.c_=a +_.eo=b +_.eA=c +_.A=d +_.R=null +_.af=e +_.bB=null +_.D$=f +_.dy=g +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aib:function aib(a,b){this.a=a +this.b=b}, +M6:function M6(a,b){this.a=a +this.b=b}, +PM:function PM(a,b,c,d,e,f){var _=this +_.A=null +_.R=a +_.af=b +_.bT=c +_.D$=d +_.dy=e +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Q6:function Q6(a,b,c,d){var _=this +_.af=_.R=_.A=null +_.bT=a +_.bU=_.bB=null +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aiq:function aiq(a){this.a=a}, +PP:function PP(a,b,c,d,e){var _=this +_.A=a +_.R=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ahU:function ahU(a){this.a=a}, +PY:function PY(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.cv=a +_.dt=b +_.bN=c +_.cn=d +_.c_=e +_.eo=f +_.eA=g +_.fY=h +_.f2=i +_.A=j +_.D$=k +_.dy=l +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=m +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +CP:function CP(a,b,c,d,e,f,g,h,i){var _=this +_.cv=a +_.dt=b +_.bN=c +_.cn=d +_.c_=e +_.eo=!0 +_.A=f +_.D$=g +_.dy=h +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=i +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Q0:function Q0(a,b,c){var _=this +_.D$=a +_.dy=b +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +CL:function CL(a,b,c,d,e){var _=this +_.A=a +_.R=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +CQ:function CQ(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Cz:function Cz(a,b,c,d,e){var _=this +_.A=a +_.R=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +m0:function m0(a,b,c,d){var _=this +_.c_=_.cn=_.bN=_.dt=_.cv=null +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Q1:function Q1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.c5$=a +_.AA$=b +_.AB$=c +_.AC$=d +_.AD$=e +_.AE$=f +_.WT$=g +_.r4$=h +_.II$=i +_.WU$=j +_.WV$=k +_.AF$=l +_.D$=m +_.dy=n +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=o +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PI:function PI(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PU:function PU(a,b,c){var _=this +_.D$=a +_.dy=b +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PN:function PN(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PQ:function PQ(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PS:function PS(a,b,c,d){var _=this +_.A=a +_.R=null +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PO:function PO(a,b,c,d,e,f,g,h){var _=this +_.A=a +_.R=b +_.af=c +_.bT=d +_.bB=e +_.D$=f +_.dy=g +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ahT:function ahT(a){this.a=a}, +CD:function CD(a,b,c,d,e,f,g){var _=this +_.A=a +_.R=b +_.af=c +_.D$=d +_.dy=e +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$ +_.$ti=g}, +Yq:function Yq(){}, +HC:function HC(){}, +HD:function HD(){}, +YE:function YE(){}, +Dt(a,b){var s +if(a.p(0,b))return B.P +s=b.b +if(sa.d)return B.G +return b.a>=a.c?B.G:B.M}, +Ds(a,b,c){var s,r +if(a.p(0,b))return b +s=b.b +r=a.b +if(!(s<=r))s=s<=a.d&&b.a<=a.a +else s=!0 +if(s)return c===B.al?new A.j(a.a,r):new A.j(a.c,r) +else{s=a.d +return c===B.al?new A.j(a.c,s):new A.j(a.a,s)}}, +ajB(a,b){return new A.Dq(a,b==null?B.mc:b,B.Q7)}, +ajA(a,b){return new A.Dq(a,b==null?B.mc:b,B.cL)}, +of:function of(a,b){this.a=a +this.b=b}, +ez:function ez(){}, +QL:function QL(){}, +rF:function rF(a,b){this.a=a +this.b=b}, +rS:function rS(a,b){this.a=a +this.b=b}, +ajC:function ajC(){}, +zb:function zb(a){this.a=a}, +Dq:function Dq(a,b,c){this.b=a +this.c=b +this.a=c}, +vQ:function vQ(a,b){this.a=a +this.b=b}, +Dr:function Dr(a,b){this.a=a +this.b=b}, +oe:function oe(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +rG:function rG(a,b,c){this.a=a +this.b=b +this.c=c}, +Eu:function Eu(a,b){this.a=a +this.b=b}, +Zl:function Zl(){}, +Zm:function Zm(){}, +rq:function rq(){}, +aic:function aic(a){this.a=a}, +CR:function CR(a,b,c,d,e){var _=this +_.A=null +_.R=a +_.af=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +PF:function PF(){}, +CS:function CS(a,b,c,d,e,f,g){var _=this +_.bN=a +_.cn=b +_.A=null +_.R=c +_.af=d +_.D$=e +_.dy=f +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +al7:function al7(){}, +CI:function CI(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +HG:function HG(){}, +mJ(a,b){var s +switch(b.a){case 0:s=a +break +case 1:s=A.b1B(a) +break +default:s=null}return s}, +b0D(a,b){var s +switch(b.a){case 0:s=a +break +case 1:s=A.b1C(a) +break +default:s=null}return s}, +m7(a,b,c,d,e,f,g,h,i){var s=d==null?f:d,r=c==null?f:c,q=a==null?d:a +if(q==null)q=f +return new A.Rc(h,g,f,s,e,r,f>0,b,i,q)}, +Nc:function Nc(a,b){this.a=a +this.b=b}, +m6:function m6(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l}, +Rc:function Rc(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j}, +vZ:function vZ(a,b,c){this.a=a +this.b=b +this.c=c}, +Rf:function Rf(a,b,c){var _=this +_.c=a +_.d=b +_.a=c +_.b=null}, +m9:function m9(){}, +m8:function m8(a,b){this.ca$=a +this.am$=b +this.a=null}, +oo:function oo(a){this.a=a}, +ma:function ma(a,b,c){this.ca$=a +this.am$=b +this.a=c}, +d1:function d1(){}, +aif:function aif(){}, +aig:function aig(a,b){this.a=a +this.b=b}, +ZG:function ZG(){}, +ZH:function ZH(){}, +ZK:function ZK(){}, +alj:function alj(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +alk:function alk(){}, +all:function all(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +ali:function ali(){}, +Re:function Re(a){this.d=a}, +vY:function vY(a,b,c){var _=this +_.b=_.w=null +_.c=!1 +_.ra$=a +_.ca$=b +_.am$=c +_.a=null}, +Q3:function Q3(a,b,c,d,e,f,g){var _=this +_.eB=a +_.y1=b +_.y2=c +_.c0$=d +_.a4$=e +_.c6$=f +_.b=_.dy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Q4:function Q4(a,b,c,d,e,f){var _=this +_.y1=a +_.y2=b +_.c0$=c +_.a4$=d +_.c6$=e +_.b=_.dy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aih:function aih(a,b,c){this.a=a +this.b=b +this.c=c}, +jm:function jm(){}, +ail:function ail(){}, +fO:function fO(a,b,c){var _=this +_.b=null +_.c=!1 +_.ra$=a +_.ca$=b +_.am$=c +_.a=null}, +rr:function rr(){}, +aii:function aii(a,b,c){this.a=a +this.b=b +this.c=c}, +aik:function aik(a,b){this.a=a +this.b=b}, +aij:function aij(){}, +HI:function HI(){}, +YI:function YI(){}, +YJ:function YJ(){}, +ZI:function ZI(){}, +ZJ:function ZJ(){}, +CU:function CU(){}, +aie:function aie(a,b){this.a=a +this.b=b}, +aid:function aid(a,b){this.a=a +this.b=b}, +Q5:function Q5(a,b,c,d){var _=this +_.bW=null +_.D=a +_.cb=b +_.D$=c +_.b=_.dy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +YH:function YH(){}, +aWo(a,b,c,d,e){var s=new A.vG(a,e,d,c,A.ah(),0,null,null,new A.aO(),A.ah()) +s.aF() +s.O(0,b) +return s}, +rs(a,b){var s,r,q,p +for(s=t.B,r=a,q=0;r!=null;){p=r.b +p.toString +s.a(p) +if(!p.gp6())q=Math.max(q,A.l4(b.$1(r))) +r=p.am$}return q}, +aJM(a,b,c,d){var s,r,q,p,o,n,m,l,k,j +a.c3(b.Kv(c),!0) +$label0$0:{s=b.w +r=s!=null +if(r)if(s==null)A.cp(s) +if(r){q=s==null?A.cp(s):s +r=q +break $label0$0}p=b.f +r=p!=null +if(r)if(p==null)A.cp(p) +if(r){o=p==null?A.cp(p):p +r=c.a-o-a.gt(0).a +break $label0$0}r=d.lo(t.v.a(c.a0(0,a.gt(0)))).a +break $label0$0}$label1$1:{n=b.e +m=n!=null +if(m)if(n==null)A.cp(n) +if(m){l=n==null?A.cp(n):n +m=l +break $label1$1}k=b.r +m=k!=null +if(m)if(k==null)A.cp(k) +if(m){j=k==null?A.cp(k):k +m=c.b-j-a.gt(0).b +break $label1$1}m=d.lo(t.v.a(c.a0(0,a.gt(0)))).b +break $label1$1}b.a=new A.j(r,m) +return r<0||r+a.gt(0).a>c.a||m<0||m+a.gt(0).b>c.b}, +aJL(a,b,c,d,e){var s,r,q,p,o,n,m,l=a.b +l.toString +t.B.a(l) +s=l.gp6()?l.Kv(b):c +r=a.eU(s,e) +if(r==null)return null +$label0$0:{q=l.e +p=q!=null +if(p)if(q==null)A.cp(q) +if(p){o=q==null?A.cp(q):q +l=o +break $label0$0}n=l.r +l=n!=null +if(l)if(n==null)A.cp(n) +if(l){m=n==null?A.cp(n):n +l=b.b-m-a.ap(B.R,s,a.gc8()).b +break $label0$0}l=d.lo(t.v.a(b.a0(0,a.ap(B.R,s,a.gc8())))).b +break $label0$0}return r+l}, +dN:function dN(a,b,c){var _=this +_.y=_.x=_.w=_.r=_.f=_.e=null +_.ca$=a +_.am$=b +_.a=c}, +Rz:function Rz(a,b){this.a=a +this.b=b}, +vG:function vG(a,b,c,d,e,f,g,h,i,j){var _=this +_.n=!1 +_.I=null +_.X=a +_.a2=b +_.S=c +_.a9=d +_.ab=e +_.c0$=f +_.a4$=g +_.c6$=h +_.dy=i +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=j +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aip:function aip(a){this.a=a}, +ain:function ain(a){this.a=a}, +aio:function aio(a){this.a=a}, +aim:function aim(a){this.a=a}, +CN:function CN(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.rb=a +_.n=!1 +_.I=null +_.X=b +_.a2=c +_.S=d +_.a9=e +_.ab=f +_.c0$=g +_.a4$=h +_.c6$=i +_.dy=j +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=k +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +ahV:function ahV(a){this.a=a}, +YK:function YK(){}, +YL:function YL(){}, +mU:function mU(a,b){this.a=a +this.b=b}, +aY5(a){var s,r,q,p,o,n=$.dy(),m=n.d +if(m==null)m=n.gcu() +s=A.aKQ(a.Q,a.grB().dE(0,m)).a6(0,m) +r=s.a +q=s.b +p=s.c +s=s.d +o=n.d +if(o==null)o=n.gcu() +return new A.EV(new A.ak(r/o,q/o,p/o,s/o),new A.ak(r,q,p,s),o)}, +EV:function EV(a,b,c){this.a=a +this.b=b +this.c=c}, +rt:function rt(){}, +YN:function YN(){}, +aWi(a){var s +for(s=t.NW;a!=null;){if(s.b(a))return a +a=a.gaT(a)}return null}, +aWs(a,b,c){var s=b.aq.a)return q +else if(a0)return a.aw5(0,1e5) +return!0}, +x0:function x0(a){this.a=a}, +rw:function rw(a,b){this.a=a +this.b=b}, +ag9:function ag9(a){this.a=a}, +kE:function kE(){}, +aja:function aja(a){this.a=a}, +aj8:function aj8(a){this.a=a}, +ajb:function ajb(a){this.a=a}, +ajc:function ajc(a,b){this.a=a +this.b=b}, +ajd:function ajd(a){this.a=a}, +aj7:function aj7(a){this.a=a}, +aj9:function aj9(a){this.a=a}, +aE9(){var s=new A.rY(new A.bB(new A.au($.aq,t.W),t.Q)) +s.Tw() +return s}, +wm:function wm(a){var _=this +_.a=null +_.b=!1 +_.c=null +_.d=a +_.e=null}, +rY:function rY(a){this.a=a +this.c=this.b=null}, +amZ:function amZ(a){this.a=a}, +Ez:function Ez(a){this.a=a}, +Dv:function Dv(){}, +akD:function akD(a){this.a=a}, +a5d(a){var s=$.aCR.h(0,a) +if(s==null){s=$.aHi +$.aHi=s+1 +$.aCR.m(0,a,s) +$.aHh.m(0,s,a)}return s}, +aWS(a,b){var s,r=a.length +if(r!==b.length)return!1 +for(s=0;s=0 +if(o){B.c.a1(q,0,p).split("\n") +B.c.bZ(q,p+2) +m.push(new A.Bk())}else m.push(new A.Bk())}return m}, +aWU(a){var s +$label0$0:{if("AppLifecycleState.resumed"===a){s=B.cz +break $label0$0}if("AppLifecycleState.inactive"===a){s=B.fV +break $label0$0}if("AppLifecycleState.hidden"===a){s=B.fW +break $label0$0}if("AppLifecycleState.paused"===a){s=B.jt +break $label0$0}if("AppLifecycleState.detached"===a){s=B.cT +break $label0$0}s=null +break $label0$0}return s}, +DA:function DA(){}, +akT:function akT(a){this.a=a}, +akS:function akS(a){this.a=a}, +aqZ:function aqZ(){}, +ar_:function ar_(a){this.a=a}, +ar0:function ar0(a){this.a=a}, +alZ:function alZ(){}, +a3q:function a3q(){}, +LD(a){var s=0,r=A.H(t.H) +var $async$LD=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=2 +return A.v(B.aW.cJ("Clipboard.setData",A.ab(["text",a.a],t.N,t.z),t.H),$async$LD) +case 2:return A.F(null,r)}}) +return A.G($async$LD,r)}, +a4C(a){var s=0,r=A.H(t.VC),q,p +var $async$a4C=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=3 +return A.v(B.aW.cJ("Clipboard.getData",a,t.a),$async$a4C) +case 3:p=c +if(p==null){q=null +s=1 +break}q=new A.ub(A.bt(J.aK(p,"text"))) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$a4C,r)}, +ub:function ub(a){this.a=a}, +aIz(a,b,c,d,e){return new A.qw(c,b,null,e,d)}, +aIy(a,b,c,d,e){return new A.uV(d,c,a,e,!1)}, +aUz(a){var s,r,q=a.d,p=B.MV.h(0,q) +if(p==null)p=new A.q(q) +q=a.e +s=B.My.h(0,q) +if(s==null)s=new A.h(q) +r=a.a +switch(a.b.a){case 0:return new A.lG(p,s,a.f,r,a.r) +case 1:return A.aIz(B.kX,s,p,a.r,r) +case 2:return A.aIy(a.f,B.kX,s,p,r)}}, +uW:function uW(a,b,c){this.c=a +this.a=b +this.b=c}, +iv:function iv(){}, +lG:function lG(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e}, +qw:function qw(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e}, +uV:function uV(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e}, +a9l:function a9l(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.e=null}, +NT:function NT(a,b){this.a=a +this.b=b}, +Bd:function Bd(a,b){this.a=a +this.b=b}, +NU:function NU(a,b,c,d){var _=this +_.a=null +_.b=a +_.c=b +_.d=null +_.e=c +_.f=d}, +W7:function W7(){}, +abd:function abd(a,b,c){this.a=a +this.b=b +this.c=c}, +abw(a){var s=A.n(a).i("f0<1,h>") +return A.eu(new A.f0(a,new A.abx(),s),s.i("o.E"))}, +abe:function abe(){}, +h:function h(a){this.a=a}, +abx:function abx(){}, +q:function q(a){this.a=a}, +W8:function W8(){}, +aDJ(a,b,c,d){return new A.Cj(a,c,b,d)}, +aeL(a){return new A.BJ(a)}, +js:function js(a,b){this.a=a +this.b=b}, +Cj:function Cj(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +BJ:function BJ(a){this.a=a}, +alR:function alR(){}, +aaP:function aaP(){}, +aaR:function aaR(){}, +alz:function alz(){}, +alA:function alA(a,b){this.a=a +this.b=b}, +alD:function alD(){}, +aYr(a){var s,r,q +for(s=A.n(a),r=new A.nK(J.bb(a.a),a.b,s.i("nK<1,2>")),s=s.y[1];r.u();){q=r.a +if(q==null)q=s.a(q) +if(!q.j(0,B.bV))return q}return null}, +aeW:function aeW(a,b){this.a=a +this.b=b}, +BL:function BL(){}, +dt:function dt(){}, +UB:function UB(){}, +a_5:function a_5(a,b){this.a=a +this.b=b}, +kI:function kI(a){this.a=a}, +WI:function WI(){}, +mZ:function mZ(a,b,c){this.a=a +this.b=b +this.$ti=c}, +a3g:function a3g(a,b){this.a=a +this.b=b}, +v9:function v9(a,b){this.a=a +this.b=b}, +aeG:function aeG(a,b){this.a=a +this.b=b}, +hZ:function hZ(a,b){this.a=a +this.b=b}, +aJp(a){var s,r,q,p=t.wh.a(a.h(0,"touchOffset")) +if(p==null)s=null +else{s=J.aE(p) +r=s.h(p,0) +r.toString +A.eU(r) +s=s.h(p,1) +s.toString +s=new A.j(r,A.eU(s))}r=a.h(0,"progress") +r.toString +A.eU(r) +q=a.h(0,"swipeEdge") +q.toString +return new A.nY(s,r,B.Kb[A.eT(q)])}, +E4:function E4(a,b){this.a=a +this.b=b}, +nY:function nY(a,b,c){this.a=a +this.b=b +this.c=c}, +vv:function vv(a,b){this.a=a +this.b=b}, +a5s:function a5s(){this.a=$}, +aWb(a){var s,r,q,p,o={} +o.a=null +s=new A.aha(o,a).$0() +r=$.aFQ().d +q=A.n(r).i("bs<1>") +p=A.eu(new A.bs(r,q),q.i("o.E")).p(0,s.gjX()) +q=J.aK(a,"type") +q.toString +A.bt(q) +$label0$0:{if("keydown"===q){r=new A.o2(o.a,p,s) +break $label0$0}if("keyup"===q){r=new A.vB(null,!1,s) +break $label0$0}r=A.a0(A.je("Unknown key event type: "+q))}return r}, +qx:function qx(a,b){this.a=a +this.b=b}, +hV:function hV(a,b){this.a=a +this.b=b}, +Ct:function Ct(){}, +m_:function m_(){}, +aha:function aha(a,b){this.a=a +this.b=b}, +o2:function o2(a,b,c){this.a=a +this.b=b +this.c=c}, +vB:function vB(a,b,c){this.a=a +this.b=b +this.c=c}, +ahd:function ahd(a,b){this.a=a +this.d=b}, +dg:function dg(a,b){this.a=a +this.b=b}, +Y7:function Y7(){}, +Y6:function Y6(){}, +Py:function Py(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +D0:function D0(a,b){var _=this +_.b=_.a=null +_.f=_.d=_.c=!1 +_.r=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +aiG:function aiG(a){this.a=a}, +aiH:function aiH(a){this.a=a}, +dB:function dB(a,b,c,d,e,f){var _=this +_.a=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=!1}, +aiD:function aiD(){}, +aiE:function aiE(){}, +aiC:function aiC(){}, +aiF:function aiF(){}, +b3p(a,b){var s,r,q,p,o=A.b([],t.bt),n=J.aE(a),m=0,l=0 +for(;;){if(!(m1 +if(a0===0)m=0===a0 +else m=!1 +l=n&&a0b +s=!l +i=s&&!m&&a2e||!s||k +if(d===o)return new A.wh(d,p,r) +else if((!q||i)&&a2)return new A.RT(new A.c4(!n?b-1:c,b),d,p,r) +else if((c===b||j)&&a2)return new A.RU(B.c.a1(a,e,e+(a0-e)),b,d,p,r) +else if(f)return new A.RV(a,new A.c4(c,b),d,p,r) +return new A.wh(d,p,r)}, +or:function or(){}, +RU:function RU(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.c=e}, +RT:function RT(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.c=d}, +RV:function RV(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.c=e}, +wh:function wh(a,b,c){this.a=a +this.b=b +this.c=c}, +a_h:function a_h(){}, +On:function On(a,b){this.a=a +this.b=b}, +rT:function rT(){}, +WN:function WN(a,b){this.a=a +this.b=b}, +ayX:function ayX(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +MR:function MR(a,b,c){this.a=a +this.b=b +this.c=c}, +a7W:function a7W(a,b,c){this.a=a +this.b=b +this.c=c}, +aKm(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){return new A.RY(r,k,n,m,c,d,o,p,!0,g,a,j,q,l,!0,b,i,!1)}, +b0t(a){var s +$label0$0:{if("TextAffinity.downstream"===a){s=B.j +break $label0$0}if("TextAffinity.upstream"===a){s=B.ak +break $label0$0}s=null +break $label0$0}return s}, +aKl(a){var s,r,q,p,o=J.aE(a),n=A.bt(o.h(a,"text")),m=A.hz(o.h(a,"selectionBase")) +if(m==null)m=-1 +s=A.hz(o.h(a,"selectionExtent")) +if(s==null)s=-1 +r=A.b0t(A.cC(o.h(a,"selectionAffinity"))) +if(r==null)r=B.j +q=A.l2(o.h(a,"selectionIsDirectional")) +p=A.c8(r,m,s,q===!0) +m=A.hz(o.h(a,"composingBase")) +if(m==null)m=-1 +o=A.hz(o.h(a,"composingExtent")) +return new A.cA(n,p,new A.c4(m,o==null?-1:o))}, +aKn(a){var s=A.b([],t.u1),r=$.aKo +$.aKo=r+1 +return new A.amq(s,r,a)}, +b0v(a){var s +$label0$0:{if("TextInputAction.none"===a){s=B.Sy +break $label0$0}if("TextInputAction.unspecified"===a){s=B.Sz +break $label0$0}if("TextInputAction.go"===a){s=B.SC +break $label0$0}if("TextInputAction.search"===a){s=B.AU +break $label0$0}if("TextInputAction.send"===a){s=B.SD +break $label0$0}if("TextInputAction.next"===a){s=B.dp +break $label0$0}if("TextInputAction.previous"===a){s=B.SE +break $label0$0}if("TextInputAction.continueAction"===a){s=B.SF +break $label0$0}if("TextInputAction.join"===a){s=B.SG +break $label0$0}if("TextInputAction.route"===a){s=B.SA +break $label0$0}if("TextInputAction.emergencyCall"===a){s=B.SB +break $label0$0}if("TextInputAction.done"===a){s=B.fJ +break $label0$0}if("TextInputAction.newline"===a){s=B.AT +break $label0$0}s=A.a0(A.nk(A.b([A.kh("Unknown text input action: "+a)],t.D)))}return s}, +b0u(a){var s +$label0$0:{if("FloatingCursorDragState.start"===a){s=B.oH +break $label0$0}if("FloatingCursorDragState.update"===a){s=B.hF +break $label0$0}if("FloatingCursorDragState.end"===a){s=B.hG +break $label0$0}s=A.a0(A.nk(A.b([A.kh("Unknown text cursor action: "+a)],t.D)))}return s}, +Rj:function Rj(a,b){this.a=a +this.b=b}, +Rk:function Rk(a,b){this.a=a +this.b=b}, +me:function me(a,b,c){this.a=a +this.b=b +this.c=c}, +fS:function fS(a,b){this.a=a +this.b=b}, +amg:function amg(a,b){this.a=a +this.b=b}, +RY:function RY(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r}, +Aq:function Aq(a,b){this.a=a +this.b=b}, +vz:function vz(a,b,c){this.a=a +this.b=b +this.c=c}, +cA:function cA(a,b,c){this.a=a +this.b=b +this.c=c}, +amk:function amk(a,b){this.a=a +this.b=b}, +iF:function iF(a,b){this.a=a +this.b=b}, +amQ:function amQ(){}, +amo:function amo(){}, +rH:function rH(a,b,c){this.a=a +this.b=b +this.c=c}, +amq:function amq(a,b,c){var _=this +_.d=_.c=_.b=_.a=null +_.e=a +_.f=b +_.r=c}, +RX:function RX(a,b,c){var _=this +_.a=a +_.b=b +_.c=$ +_.d=null +_.e=$ +_.f=c +_.w=_.r=!1}, +amG:function amG(a){this.a=a}, +amD:function amD(){}, +amE:function amE(a,b){this.a=a +this.b=b}, +amF:function amF(a){this.a=a}, +amH:function amH(a){this.a=a}, +Eo:function Eo(){}, +Xl:function Xl(){}, +avy:function avy(){}, +am_:function am_(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.f=_.e=!1}, +am0:function am0(){}, +fp:function fp(){}, +Nq:function Nq(){}, +Nr:function Nr(){}, +Nu:function Nu(){}, +Nw:function Nw(){}, +Nt:function Nt(a){this.a=a}, +Nv:function Nv(a){this.a=a}, +Ns:function Ns(){}, +VL:function VL(){}, +VM:function VM(){}, +a_1:function a_1(){}, +a_2:function a_2(){}, +a0Q:function a0Q(){}, +Sg:function Sg(a,b){this.a=a +this.b=b}, +Sh:function Sh(){this.a=$ +this.b=null}, +ani:function ani(){}, +b1e(){if(!$.aQI())return new A.a0s() +return new A.a0s()}, +anP:function anP(){}, +a0s:function a0s(){}, +b_A(a){var s=A.c9() +a.k8(new A.aAP(s)) +return s.aS()}, +tH(a,b){return new A.la(a,b,null)}, +Kp(a,b){var s,r,q +if(a.e==null)return!1 +s=t.L1 +r=a.fD(s) +while(q=r!=null,q){if(b.$1(r))break +r=A.b_A(r).fD(s)}return q}, +aCr(a){var s={} +s.a=null +A.Kp(a,new A.a2y(s)) +return B.Cn}, +aCt(a,b,c){var s={} +s.a=null +if((b==null?null:A.r(b))==null)A.bZ(c) +A.Kp(a,new A.a2B(s,b,a,c)) +return s.a}, +aCs(a,b){var s={} +s.a=null +A.bZ(b) +A.Kp(a,new A.a2z(s,null,b)) +return s.a}, +a2x(a,b,c){var s,r=b==null?null:A.r(b) +if(r==null)r=A.bZ(c) +s=a.r.h(0,r) +if(c.i("b9<0>?").b(s))return s +else return null}, +lb(a,b,c){var s={} +s.a=null +A.Kp(a,new A.a2A(s,b,a,c)) +return s.a}, +aRp(a,b,c){var s={} +s.a=null +A.Kp(a,new A.a2C(s,b,a,c)) +return s.a}, +aHZ(a,b,c,d,e,f,g,h,i){return new A.q9(d,e,!1,a,h,i,g,f,c,null)}, +aHz(a){return new A.zQ(a,new A.ba(A.b([],t.e),t.c))}, +aAP:function aAP(a){this.a=a}, +b0:function b0(){}, +b9:function b9(){}, +cG:function cG(){}, +d4:function d4(a,b,c){var _=this +_.c=a +_.a=b +_.b=null +_.$ti=c}, +a2w:function a2w(){}, +la:function la(a,b,c){this.d=a +this.e=b +this.a=c}, +a2y:function a2y(a){this.a=a}, +a2B:function a2B(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a2z:function a2z(a,b,c){this.a=a +this.b=b +this.c=c}, +a2A:function a2A(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a2C:function a2C(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +F3:function F3(a,b){var _=this +_.d=a +_.e=b +_.c=_.a=null}, +ao0:function ao0(a){this.a=a}, +F2:function F2(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.b=d +_.a=e}, +q9:function q9(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.w=d +_.y=e +_.z=f +_.Q=g +_.as=h +_.ax=i +_.a=j}, +G8:function G8(a){var _=this +_.f=_.e=_.d=!1 +_.r=a +_.c=_.a=null}, +as7:function as7(a){this.a=a}, +as5:function as5(a){this.a=a}, +as0:function as0(a){this.a=a}, +as1:function as1(a){this.a=a}, +as_:function as_(a,b){this.a=a +this.b=b}, +as4:function as4(a){this.a=a}, +as2:function as2(a){this.a=a}, +as3:function as3(a,b){this.a=a +this.b=b}, +as6:function as6(a,b){this.a=a +this.b=b}, +SA:function SA(a){this.a=a +this.b=null}, +zQ:function zQ(a,b){this.c=a +this.a=b +this.b=null}, +tI:function tI(){}, +tW:function tW(){}, +h5:function h5(){}, +Mm:function Mm(){}, +lX:function lX(){}, +Pq:function Pq(a){var _=this +_.f=_.e=$ +_.a=a +_.b=null}, +xm:function xm(){}, +H0:function H0(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.app$=c +_.apq$=d +_.apr$=e +_.aps$=f +_.a=g +_.b=null +_.$ti=h}, +H1:function H1(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.app$=c +_.apq$=d +_.apr$=e +_.aps$=f +_.a=g +_.b=null +_.$ti=h}, +Fy:function Fy(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=null +_.$ti=d}, +SS:function SS(){}, +SQ:function SQ(){}, +W3:function W3(){}, +Jw:function Jw(){}, +Jx:function Jx(){}, +aGy(a,b,c){return new A.yr(a,b,c,null)}, +yr:function yr(a,b,c,d){var _=this +_.c=a +_.e=b +_.f=c +_.a=d}, +T3:function T3(a,b){var _=this +_.dV$=a +_.bq$=b +_.c=_.a=null}, +T2:function T2(a,b,c,d,e,f,g,h,i){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.z=g +_.c=h +_.a=i}, +a0y:function a0y(){}, +yy:function yy(a,b,c,d){var _=this +_.e=a +_.c=b +_.a=c +_.$ti=d}, +b0L(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=null +if(a1==null||a1.length===0)return B.b.ga3(a2) +s=t.N +r=t.da +q=A.h9(a0,a0,a0,s,r) +p=A.h9(a0,a0,a0,s,r) +o=A.h9(a0,a0,a0,s,r) +n=A.h9(a0,a0,a0,s,r) +m=A.h9(a0,a0,a0,t.ob,r) +for(l=0;l<1;++l){k=a2[l] +s=k.a +r=B.bQ.h(0,s) +if(r==null)r=s +j=A.k(k.b) +i=k.c +h=B.ck.h(0,i) +if(h==null)h=i +h=r+"_"+j+"_"+A.k(h) +if(q.h(0,h)==null)q.m(0,h,k) +r=B.bQ.h(0,s) +r=(r==null?s:r)+"_"+j +if(o.h(0,r)==null)o.m(0,r,k) +r=B.bQ.h(0,s) +if(r==null)r=s +j=B.ck.h(0,i) +if(j==null)j=i +j=r+"_"+A.k(j) +if(p.h(0,j)==null)p.m(0,j,k) +r=B.bQ.h(0,s) +s=r==null?s:r +if(n.h(0,s)==null)n.m(0,s,k) +s=B.ck.h(0,i) +if(s==null)s=i +if(m.h(0,s)==null)m.m(0,s,k)}for(g=a0,f=g,e=0;e")),new A.a5V(),r.i("f4<1,x>"))}, +aST(a,b){var s,r,q,p,o=B.b.ga3(a),n=A.aHw(b,o) +for(s=a.length,r=0;rr)return a.a0(0,new A.j(p,r)).gcj() +else return p-q}}else{p=b.c +if(q>p){s=a.b +r=b.b +if(sr)return a.a0(0,new A.j(p,r)).gcj() +else return q-p}}else{q=a.b +p=b.b +if(qp)return q-p +else return 0}}}}, +aSW(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=t.AO,f=A.b([a],g) +for(s=b.$ti,r=new A.nK(J.bb(b.a),b.b,s.i("nK<1,2>")),s=s.y[1];r.u();f=p){q=r.a +if(q==null)q=s.a(q) +p=A.b([],g) +for(o=f.length,n=q.a,m=q.b,l=q.d,q=q.c,k=0;k=m&&j.d<=l){h=j.a +if(hq)p.push(new A.x(q,i,q+(h-q),i+(j.d-i)))}else{h=j.a +if(h>=n&&j.c<=q){if(il)p.push(new A.x(h,l,h+(j.c-h),l+(i-l)))}else p.push(j)}}}return f}, +aSS(a,b){var s=a.a,r=!1 +if(s>=0)if(s<=b.a){r=a.b +r=r>=0&&r<=b.b}if(r)return a +else return new A.j(Math.min(Math.max(0,s),b.a),Math.min(Math.max(0,a.b),b.b))}, +zO:function zO(a,b,c){this.c=a +this.d=b +this.a=c}, +a5U:function a5U(){}, +a5V:function a5V(){}, +Mp:function Mp(a){this.a=a}, +nd:function nd(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +FW:function FW(a,b){var _=this +_.d=$ +_.e=a +_.f=b +_.c=_.a=null}, +aHE(){return B.n9}, +aHF(){if(A.aM()===B.L||$.aFF().gdI()===B.bq)return B.Ci +return B.cV}, +aTk(){return!0}, +aTl(a){return!0}, +aTi(){var s,r,q,p=null,o=$.aw(),n=t.A,m=new A.a5s() +m.a=B.Oa +s=A.b([],t.RW) +r=A.aM() +$label0$0:{if(B.ad===r||B.L===r){q=!0 +break $label0$0}if(B.bw===r||B.bx===r||B.aY===r||B.by===r){q=!1 +break $label0$0}q=p}return new A.ne(new A.ct(!0,o),new A.bu(p,n),new A.a0l(B.jH,B.jI,o),new A.bu(p,n),new A.Bg(),new A.Bg(),new A.Bg(),m,s,q,p,p,p)}, +aTj(a){var s=a.a,r=a.j(0,B.fH),q=s==null +if(q){$.aa.toString +$.aR()}if(r||q)return B.fH +return a.anL(s)}, +p5(a,b,c,d,e,f,g){return new A.IU(a,e,f,d,b,c,new A.ba(A.b([],t.e),t.c),g.i("IU<0>"))}, +TP:function TP(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +Ys:function Ys(a,b,c,d,e){var _=this +_.A=a +_.R=null +_.af=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +f9:function f9(a,b){var _=this +_.a=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +wo:function wo(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +hv:function hv(a,b){this.a=a +this.b=b}, +are:function are(a,b,c){var _=this +_.b=a +_.c=b +_.d=0 +_.a=c}, +uy:function uy(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.x=e +_.z=f +_.Q=g +_.as=h +_.at=i +_.ax=j +_.ay=k +_.ch=l +_.CW=m +_.cx=n +_.cy=o +_.db=p +_.dx=q +_.dy=r +_.go=s +_.id=a0 +_.k1=a1 +_.k2=a2 +_.k3=a3 +_.k4=a4 +_.ok=a5 +_.p1=a6 +_.p2=a7 +_.p3=a8 +_.p4=a9 +_.R8=b0 +_.RG=b1 +_.rx=b2 +_.ry=b3 +_.to=b4 +_.x1=b5 +_.x2=b6 +_.xr=b7 +_.y1=b8 +_.y2=b9 +_.M=c0 +_.P=c1 +_.n=c2 +_.I=c3 +_.X=c4 +_.a2=c5 +_.S=c6 +_.a9=c7 +_.ab=c8 +_.au=c9 +_.aX=d0 +_.b9=d1 +_.aL=d2 +_.bO=d3 +_.bf=d4 +_.br=d5 +_.bF=d6 +_.ao=d7 +_.aE=d8 +_.dW=d9 +_.bK=e0 +_.f3=e1 +_.bW=e2 +_.cb=e3 +_.ep=e4 +_.eq=e5 +_.an=e6 +_.eB=e7 +_.c1=e8 +_.a=e9}, +ne:function ne(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.e=_.d=null +_.f=$ +_.r=a +_.w=b +_.x=c +_.at=_.as=_.Q=_.z=null +_.ax=!1 +_.ay=d +_.ch=null +_.CW=e +_.cx=f +_.cy=g +_.db=!1 +_.dx=null +_.fr=_.dy=$ +_.fx=null +_.fy=h +_.go=i +_.k1=_.id=null +_.k2=$ +_.k3=!1 +_.k4=!0 +_.p4=_.p3=_.p2=_.p1=_.ok=null +_.R8=0 +_.ry=_.rx=_.RG=!1 +_.to=j +_.x2=_.x1=!1 +_.xr=$ +_.y1=0 +_.M=_.y2=null +_.P=$ +_.n=-1 +_.X=_.I=null +_.au=_.ab=_.a9=_.S=_.a2=$ +_.de$=k +_.aW$=l +_.fZ$=m +_.c=_.a=null}, +a6o:function a6o(){}, +a6U:function a6U(a){this.a=a}, +a6s:function a6s(a){this.a=a}, +a6I:function a6I(a){this.a=a}, +a6J:function a6J(a){this.a=a}, +a6K:function a6K(a){this.a=a}, +a6L:function a6L(a){this.a=a}, +a6M:function a6M(a){this.a=a}, +a6N:function a6N(a){this.a=a}, +a6O:function a6O(a){this.a=a}, +a6P:function a6P(a){this.a=a}, +a6Q:function a6Q(a){this.a=a}, +a6R:function a6R(a){this.a=a}, +a6S:function a6S(a){this.a=a}, +a6T:function a6T(a){this.a=a}, +a6y:function a6y(a,b,c){this.a=a +this.b=b +this.c=c}, +a6Y:function a6Y(a){this.a=a}, +a6W:function a6W(a,b,c){this.a=a +this.b=b +this.c=c}, +a6X:function a6X(a){this.a=a}, +a6t:function a6t(a,b){this.a=a +this.b=b}, +a6V:function a6V(a){this.a=a}, +a6m:function a6m(a){this.a=a}, +a6x:function a6x(a){this.a=a}, +a6p:function a6p(){}, +a6q:function a6q(a){this.a=a}, +a6r:function a6r(a){this.a=a}, +a6l:function a6l(){}, +a6n:function a6n(a){this.a=a}, +a6Z:function a6Z(a){this.a=a}, +a7_:function a7_(a){this.a=a}, +a70:function a70(a,b,c){this.a=a +this.b=b +this.c=c}, +a6u:function a6u(a,b){this.a=a +this.b=b}, +a6v:function a6v(a,b){this.a=a +this.b=b}, +a6w:function a6w(a,b){this.a=a +this.b=b}, +a6H:function a6H(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a6A:function a6A(a,b){this.a=a +this.b=b}, +a6G:function a6G(a,b){this.a=a +this.b=b}, +a6D:function a6D(a){this.a=a}, +a6B:function a6B(a){this.a=a}, +a6C:function a6C(){}, +a6E:function a6E(a){this.a=a}, +a6F:function a6F(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a6z:function a6z(a){this.a=a}, +FX:function FX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.z=g +_.Q=h +_.as=i +_.at=j +_.ax=k +_.ay=l +_.ch=m +_.CW=n +_.cx=o +_.cy=p +_.db=q +_.dx=r +_.dy=s +_.fr=a0 +_.fx=a1 +_.fy=a2 +_.go=a3 +_.id=a4 +_.k1=a5 +_.k2=a6 +_.k3=a7 +_.k4=a8 +_.ok=a9 +_.p1=b0 +_.p2=b1 +_.p3=b2 +_.p4=b3 +_.R8=b4 +_.RG=b5 +_.rx=b6 +_.ry=b7 +_.to=b8 +_.c=b9 +_.a=c0}, +WY:function WY(a){this.a=a}, +axZ:function axZ(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +HT:function HT(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +Z7:function Z7(a){this.d=a +this.c=this.a=null}, +ay_:function ay_(a){this.a=a}, +mB:function mB(a,b,c,d,e){var _=this +_.x=a +_.e=b +_.b=c +_.c=d +_.a=e}, +TN:function TN(a){this.a=a}, +mr:function mr(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.a=d +_.b=null +_.$ti=e}, +IU:function IU(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.a=g +_.b=null +_.$ti=h}, +IV:function IV(a,b,c){var _=this +_.e=a +_.r=_.f=null +_.a=b +_.b=null +_.$ti=c}, +J0:function J0(a,b,c,d){var _=this +_.f=a +_.c=b +_.a=c +_.b=null +_.$ti=d}, +Zf:function Zf(a,b){this.e=a +this.a=b +this.b=null}, +U4:function U4(a,b){this.e=a +this.a=b +this.b=null}, +Xi:function Xi(a,b){this.e=a +this.a=b +this.b=null}, +a0l:function a0l(a,b,c){var _=this +_.ay=a +_.w=!1 +_.a=b +_.M$=0 +_.P$=c +_.I$=_.n$=0}, +V2:function V2(a){this.a=a +this.b=null}, +V3:function V3(a){this.a=a +this.b=null}, +FY:function FY(){}, +V_:function V_(){}, +FZ:function FZ(){}, +V0:function V0(){}, +V1:function V1(){}, +aF8(a){var s,r,q +for(s=a.length,r=!1,q=0;q>"),n=new A.ae(a,new A.awl(),o) +for(s=new A.bd(n,n.gv(0),o.i("bd")),o=o.i("ax.E"),r=null;s.u();){q=s.d +p=q==null?o.a(q):q +r=(r==null?p:r).kI(0,p)}if(r.ga7(r))return B.b.ga3(a).a +return B.b.apE(B.b.ga3(a).gWu(),r.glu(r)).w}, +aLn(a,b){A.mO(a,new A.awn(b),t.zP)}, +aYY(a,b){A.mO(a,new A.awk(b),t.h7)}, +ahr(){return new A.ahq(A.w(t.l5,t.UJ),A.b1E())}, +aWg(a){var s,r,q,p,o,n,m,l,k,j,i +if(a.length<=1)return a +s=A.b([],t.qi) +for(r=a.length,q=t.V2,p=t.I,o=0;o"))}, +AA:function AA(a,b,c){this.c=a +this.x=b +this.a=c}, +AB:function AB(a){var _=this +_.d=0 +_.e=!1 +_.f=a +_.c=_.a=null}, +a8C:function a8C(){}, +a8D:function a8D(a){this.a=a}, +a8E:function a8E(a,b,c){this.a=a +this.b=b +this.c=c}, +G9:function G9(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +lx:function lx(){}, +hL:function hL(a,b,c,d,e,f,g,h){var _=this +_.e=_.d=$ +_.f=a +_.r=b +_.bw$=c +_.fo$=d +_.oQ$=e +_.e7$=f +_.fp$=g +_.c=_.a=null +_.$ti=h}, +a8B:function a8B(a){this.a=a}, +a8A:function a8A(a,b){this.a=a +this.b=b}, +a8z:function a8z(a){this.a=a}, +a8y:function a8y(a){this.a=a}, +a8x:function a8x(a){this.a=a}, +tR:function tR(a,b){this.a=a +this.b=b}, +as8:function as8(){}, +wZ:function wZ(){}, +aLd(a){a.bg(new A.atn()) +a.l1()}, +aLc(a){var s +try{a.dJ()}catch(s){A.aD2(a) +throw s}a.bg(A.b1I())}, +aTn(a,b){var s,r,q,p=a.d +p===$&&A.a() +s=b.d +s===$&&A.a() +r=p-s +if(r!==0)return r +q=b.as +if(a.as!==q)return q?-1:1 +return 0}, +aTo(a,b){var s=A.a2(b).i("ae<1,dJ>") +s=A.a6(new A.ae(b,new A.a75(),s),s.i("ax.E")) +return A.aSK(!0,s,a,B.KG,!0,B.G8,null)}, +aD2(a){var s +try{a.dJ()}catch(s){a.P0()}a.w=B.Zk +try{a.bg(A.b1H())}catch(s){}}, +aTm(a){a.bA() +a.bg(A.aN9())}, +Ac(a){var s=a.a,r=s instanceof A.uD?s:null +return new A.MJ("",r,new A.kO())}, +aUr(a){return new A.fJ(A.h9(null,null,null,t.h,t.X),a,B.Z)}, +aV7(a){return new A.hW(A.dj(t.h),a,B.Z)}, +aB7(a,b,c,d){var s=new A.bO(b,c,"widgets library",a,d,!1) +A.d6(s) +return s}, +jg:function jg(){}, +bu:function bu(a,b){this.a=a +this.$ti=b}, +qi:function qi(a,b){this.a=a +this.$ti=b}, +f:function f(){}, +aj:function aj(){}, +Y:function Y(){}, +X:function X(){}, +aQ:function aQ(){}, +ef:function ef(){}, +b5:function b5(){}, +as:function as(){}, +O3:function O3(){}, +b7:function b7(){}, +ev:function ev(){}, +t8:function t8(a,b){this.a=a +this.b=b}, +VW:function VW(a){this.b=a}, +atn:function atn(){}, +La:function La(a,b){var _=this +_.b=_.a=!1 +_.c=a +_.d=null +_.e=b}, +a3x:function a3x(a){this.a=a}, +a3w:function a3w(a,b,c){var _=this +_.a=null +_.b=a +_.c=!1 +_.d=b +_.x=c}, +C2:function C2(){}, +av4:function av4(a,b){this.a=a +this.b=b}, +aB:function aB(){}, +a78:function a78(a){this.a=a}, +a76:function a76(a){this.a=a}, +a75:function a75(){}, +a79:function a79(a){this.a=a}, +a7a:function a7a(a){this.a=a}, +a7b:function a7b(a){this.a=a}, +a73:function a73(a){this.a=a}, +a72:function a72(){}, +a77:function a77(){}, +a74:function a74(a){this.a=a}, +MJ:function MJ(a,b,c){this.d=a +this.e=b +this.a=c}, +zj:function zj(){}, +a4M:function a4M(){}, +a4N:function a4N(){}, +w5:function w5(a,b){var _=this +_.c=_.b=_.a=_.ay=null +_.d=$ +_.e=a +_.r=_.f=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +iI:function iI(a,b,c){var _=this +_.ok=a +_.p1=!1 +_.c=_.b=_.a=_.ay=null +_.d=$ +_.e=b +_.r=_.f=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +Cp:function Cp(){}, +nT:function nT(a,b,c){var _=this +_.c=_.b=_.a=_.ay=null +_.d=$ +_.e=a +_.r=_.f=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1 +_.$ti=c}, +ag8:function ag8(a){this.a=a}, +fJ:function fJ(a,b,c){var _=this +_.n=a +_.c=_.b=_.a=_.ay=null +_.d=$ +_.e=b +_.r=_.f=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +b_:function b_(){}, +aiJ:function aiJ(){}, +O2:function O2(a,b){var _=this +_.c=_.b=_.a=_.CW=_.ay=null +_.d=$ +_.e=a +_.r=_.f=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +DE:function DE(a,b){var _=this +_.c=_.b=_.a=_.CW=_.ay=_.p1=null +_.d=$ +_.e=a +_.r=_.f=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +hW:function hW(a,b,c){var _=this +_.p1=$ +_.p2=a +_.c=_.b=_.a=_.CW=_.ay=null +_.d=$ +_.e=b +_.r=_.f=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +af3:function af3(a){this.a=a}, +Q7:function Q7(){}, +nt:function nt(a,b,c){this.a=a +this.b=b +this.$ti=c}, +X1:function X1(a,b){var _=this +_.c=_.b=_.a=null +_.d=$ +_.e=a +_.r=_.f=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +X4:function X4(a){this.a=a}, +ZP:function ZP(){}, +qf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return new A.N7(b,a1,a2,s,a0,o,q,r,p,f,l,m,a4,a5,a3,h,j,k,i,g,n,a,d,c,e)}, +FM(a){var s=a.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}, +qh:function qh(){}, +cr:function cr(a,b,c){this.a=a +this.b=b +this.$ti=c}, +N7:function N7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.ch=j +_.db=k +_.fr=l +_.ry=m +_.to=n +_.x1=o +_.xr=p +_.y1=q +_.y2=r +_.M=s +_.P=a0 +_.a2=a1 +_.bf=a2 +_.br=a3 +_.bF=a4 +_.a=a5}, +a90:function a90(a){this.a=a}, +a91:function a91(a,b){this.a=a +this.b=b}, +a92:function a92(a){this.a=a}, +a94:function a94(a,b){this.a=a +this.b=b}, +a95:function a95(a){this.a=a}, +a96:function a96(a,b){this.a=a +this.b=b}, +a97:function a97(a){this.a=a}, +a98:function a98(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a99:function a99(a){this.a=a}, +a9a:function a9a(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a9b:function a9b(a){this.a=a}, +a93:function a93(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +iB:function iB(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +vA:function vA(a){var _=this +_.d=a +_.c=_.a=_.e=null}, +VE:function VE(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +akC:function akC(){}, +ar2:function ar2(a){this.a=a}, +ar7:function ar7(a,b){this.a=a +this.b=b}, +ar6:function ar6(a,b){this.a=a +this.b=b}, +ar3:function ar3(a,b){this.a=a +this.b=b}, +ar4:function ar4(a,b){this.a=a +this.b=b}, +ar5:function ar5(a,b){this.a=a +this.b=b}, +ar8:function ar8(a,b){this.a=a +this.b=b}, +ar9:function ar9(a,b){this.a=a +this.b=b}, +ara:function ara(a,b){this.a=a +this.b=b}, +aI8(a,b,c){var s=A.w(t.K,t.U3) +a.bg(new A.a9v(c,new A.a9u(b,s))) +return s}, +aLa(a,b){var s,r=a.gU() +r.toString +t.x.a(r) +s=r.aM(0,b==null?null:b.gU()) +r=r.gt(0) +return A.dK(s,new A.x(0,0,0+r.a,0+r.b))}, +uH:function uH(a,b){this.a=a +this.b=b}, +ql:function ql(a,b,c,d){var _=this +_.c=a +_.e=b +_.w=c +_.a=d}, +a9u:function a9u(a,b){this.a=a +this.b=b}, +a9v:function a9v(a,b){this.a=a +this.b=b}, +x4:function x4(a){var _=this +_.d=a +_.e=null +_.f=!0 +_.c=_.a=null}, +asH:function asH(a,b){this.a=a +this.b=b}, +asG:function asG(){}, +asD:function asD(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=null +_.ax=_.at=_.as=$}, +mw:function mw(a,b){var _=this +_.a=a +_.b=$ +_.c=null +_.d=b +_.e=$ +_.r=_.f=null +_.x=_.w=!1}, +asE:function asE(a){this.a=a}, +asF:function asF(a,b){this.a=a +this.b=b}, +AJ:function AJ(a,b){this.a=a +this.b=b}, +a9t:function a9t(){}, +a9s:function a9s(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a9r:function a9r(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +dX(a,b,c,d){return new A.ca(a,d,b,c,null)}, +ca:function ca(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.x=c +_.z=d +_.a=e}, +by:function by(a,b,c){this.a=a +this.b=b +this.d=c}, +AR(a,b,c){return new A.qq(b,a,c)}, +uJ(a,b){return new A.e8(new A.aa7(null,b,a),null)}, +aa8(a){var s,r,q,p,o,n,m=A.aIc(a).Y(a),l=m.a,k=l==null +if(!k&&m.b!=null&&m.c!=null&&m.d!=null&&m.e!=null&&m.f!=null&&m.gcR(0)!=null&&m.x!=null)l=m +else{if(k)l=24 +k=m.b +if(k==null)k=0 +s=m.c +if(s==null)s=400 +r=m.d +if(r==null)r=0 +q=m.e +if(q==null)q=48 +p=m.f +if(p==null)p=B.l +o=m.gcR(0) +if(o==null)o=B.oU.gcR(0) +n=m.w +if(n==null)n=null +l=m.ox(m.x===!0,p,k,r,o,q,n,l,s)}return l}, +aIc(a){var s=a.ad(t.Oh),r=s==null?null:s.w +return r==null?B.oU:r}, +qq:function qq(a,b,c){this.w=a +this.b=b +this.a=c}, +aa7:function aa7(a,b,c){this.a=a +this.b=b +this.c=c}, +lC(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=null +if(a==b&&a!=null)return a +s=a==null +r=s?i:a.a +q=b==null +r=A.V(r,q?i:b.a,c) +p=s?i:a.b +p=A.V(p,q?i:b.b,c) +o=s?i:a.c +o=A.V(o,q?i:b.c,c) +n=s?i:a.d +n=A.V(n,q?i:b.d,c) +m=s?i:a.e +m=A.V(m,q?i:b.e,c) +l=s?i:a.f +l=A.z(l,q?i:b.f,c) +k=s?i:a.gcR(0) +k=A.V(k,q?i:b.gcR(0),c) +j=s?i:a.w +j=A.aK0(j,q?i:b.w,c) +if(c<0.5)s=s?i:a.x +else s=q?i:b.x +return new A.cP(r,p,o,n,m,l,k,j,s)}, +cP:function cP(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +VS:function VS(){}, +a1U(a,b){var s,r +a.ad(t.l4) +s=$.aCm() +r=A.bW(a,B.cS) +r=r==null?null:r.b +if(r==null)r=1 +return new A.AT(s,r,A.Br(a),A.dh(a),b,A.aM())}, +AS:function AS(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.z=h +_.Q=i +_.as=j +_.at=k +_.ax=l +_.ch=m +_.a=n}, +Gk:function Gk(){var _=this +_.f=_.e=_.d=null +_.r=!1 +_.w=$ +_.x=null +_.y=!1 +_.z=$ +_.c=_.a=_.ax=_.at=_.as=_.Q=null}, +atm:function atm(a){this.a=a}, +atf:function atf(a){this.a=a}, +ate:function ate(a,b,c){this.a=a +this.b=b +this.c=c}, +ath:function ath(a,b,c){this.a=a +this.b=b +this.c=c}, +atg:function atg(a,b){this.a=a +this.b=b}, +ati:function ati(a){this.a=a}, +atk:function atk(a){this.a=a}, +atl:function atl(a){this.a=a}, +atj:function atj(){}, +a0I:function a0I(){}, +aSD(a,b){return new A.lk(a,b)}, +aGx(a,b,c,d,e){return new A.yq(a,d,e,b,c,null,null)}, +aGw(a,b,c,d){return new A.yn(a,d,b,c,null,null)}, +ym(a,b,c,d){return new A.yl(a,d,b,c,null,null)}, +pv:function pv(a,b){this.a=a +this.b=b}, +lk:function lk(a,b){this.a=a +this.b=b}, +A0:function A0(a,b){this.a=a +this.b=b}, +ln:function ln(a,b){this.a=a +this.b=b}, +pu:function pu(a,b){this.a=a +this.b=b}, +qP:function qP(a,b){this.a=a +this.b=b}, +rV:function rV(a,b){this.a=a +this.b=b}, +NG:function NG(){}, +uM:function uM(){}, +aaF:function aaF(a){this.a=a}, +aaE:function aaE(a){this.a=a}, +aaD:function aaD(a){this.a=a}, +tN:function tN(){}, +a2K:function a2K(){}, +yk:function yk(a,b,c,d,e,f,g,h){var _=this +_.r=a +_.y=b +_.z=c +_.Q=d +_.c=e +_.d=f +_.e=g +_.a=h}, +SX:function SX(a,b){var _=this +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +ao4:function ao4(){}, +ao5:function ao5(){}, +ao6:function ao6(){}, +ao7:function ao7(){}, +ao8:function ao8(){}, +ao9:function ao9(){}, +aoa:function aoa(){}, +aob:function aob(){}, +yo:function yo(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +T_:function T_(a,b){var _=this +_.CW=null +_.e=_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +aoe:function aoe(){}, +yq:function yq(a,b,c,d,e,f,g){var _=this +_.r=a +_.w=b +_.x=c +_.c=d +_.d=e +_.e=f +_.a=g}, +T1:function T1(a,b){var _=this +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +aoj:function aoj(){}, +aok:function aok(){}, +aol:function aol(){}, +aom:function aom(){}, +aon:function aon(){}, +aoo:function aoo(){}, +yn:function yn(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +SZ:function SZ(a,b){var _=this +_.z=null +_.e=_.d=_.Q=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +aod:function aod(){}, +yl:function yl(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +SY:function SY(a,b){var _=this +_.CW=null +_.e=_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +aoc:function aoc(){}, +yp:function yp(a,b,c,d,e,f,g,h,i,j){var _=this +_.r=a +_.x=b +_.z=c +_.Q=d +_.as=e +_.at=f +_.c=g +_.d=h +_.e=i +_.a=j}, +T0:function T0(a,b){var _=this +_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +aof:function aof(){}, +aog:function aog(){}, +aoh:function aoh(){}, +aoi:function aoi(){}, +x6:function x6(){}, +aUs(a,b,c,d){var s=a.fD(d) +if(s==null)return +c.push(s) +d.a(s.gaa()) +return}, +bP(a,b,c){var s,r,q,p,o,n +if(b==null)return a.ad(c) +s=A.b([],t.Fa) +A.aUs(a,b,s,c) +if(s.length===0)return null +r=B.b.gae(s) +for(q=s.length,p=0;p>")),i).bo(new A.aB2(k,h),t.e3)}, +Br(a){var s=a.ad(t.Gk) +return s==null?null:s.r.f}, +f3(a,b,c){var s=a.ad(t.Gk) +return s==null?null:c.i("0?").a(J.aK(s.r.e,b))}, +xo:function xo(a,b){this.a=a +this.b=b}, +aB0:function aB0(a){this.a=a}, +aB1:function aB1(){}, +aB2:function aB2(a,b){this.a=a +this.b=b}, +fL:function fL(){}, +a0q:function a0q(){}, +Me:function Me(){}, +GA:function GA(a,b,c,d){var _=this +_.r=a +_.w=b +_.b=c +_.a=d}, +qE:function qE(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Wl:function Wl(a,b){var _=this +_.d=a +_.e=b +_.c=_.a=_.f=null}, +au6:function au6(a){this.a=a}, +au7:function au7(a,b){this.a=a +this.b=b}, +au5:function au5(a,b,c){this.a=a +this.b=b +this.c=c}, +v0:function v0(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=null +_.M$=0 +_.P$=f +_.I$=_.n$=0}, +Wk:function Wk(){}, +aIN(a,b){var s +a.ad(t.bS) +s=A.abE(a,b) +if(s==null)return null +a.xu(s,null) +return b.a(s.gaa())}, +aUR(a,b){var s=A.abE(a,b) +if(s==null)return null +return b.a(s.gaa())}, +abE(a,b){var s,r,q,p=a.fD(b) +if(p==null)return null +s=a.fD(t.bS) +if(s!=null){r=s.d +r===$&&A.a() +q=p.d +q===$&&A.a() +q=r>q +r=q}else r=!1 +if(r)return null +return p}, +aDy(a,b){var s={} +s.a=null +a.k8(new A.abD(s,b)) +s=s.a +s=s==null?null:s.gU() +return b.i("0?").a(s)}, +abD:function abD(a,b){this.a=a +this.b=b}, +aXB(a,b,c){return null}, +aIO(a,b){var s,r=b.a,q=a.a +if(rq?B.i.V(0,new A.j(q-r,0)):B.i}r=b.b +q=a.b +if(rq)s=s.V(0,new A.j(0,q-r))}return b.dj(s)}, +aJC(a,b,c,d,e,f){return new A.PA(a,c,b,d,e,f,null)}, +lJ:function lJ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +amJ:function amJ(a,b){this.a=a +this.b=b}, +qG:function qG(){this.b=this.a=null}, +abF:function abF(a,b){this.a=a +this.b=b}, +v4:function v4(a,b,c){this.a=a +this.b=b +this.c=c}, +PA:function PA(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +WW:function WW(a,b){this.b=a +this.a=b}, +Wp:function Wp(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +YA:function YA(a,b,c,d,e){var _=this +_.A=a +_.R=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +v7(a,b){return new A.jr(b,a,null)}, +aIX(a,b,c,d,e,f){return new A.jr(A.bP(b,null,t.w).w.ZK(c,d,e,f),a,null)}, +aV1(a){return new A.e8(new A.ael(a),null)}, +aIY(a,b){return new A.e8(new A.aek(0,b,a),null)}, +bW(a,b){var s=A.bP(a,b,t.w) +return s==null?null:s.w}, +OV:function OV(a,b){this.a=a +this.b=b}, +dD:function dD(a,b){this.a=a +this.b=b}, +BD:function BD(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=o +_.ch=p +_.CW=q +_.cx=r +_.cy=s +_.db=a0}, +aei:function aei(a){this.a=a}, +jr:function jr(a,b,c){this.w=a +this.b=b +this.a=c}, +ael:function ael(a){this.a=a}, +aek:function aek(a,b,c){this.a=a +this.b=b +this.c=c}, +aej:function aej(a,b){this.a=a +this.b=b}, +OD:function OD(a,b){this.a=a +this.b=b}, +GJ:function GJ(a,b,c){this.c=a +this.e=b +this.a=c}, +Wx:function Wx(){var _=this +_.c=_.a=_.e=_.d=null}, +auE:function auE(a,b){this.a=a +this.b=b}, +azM:function azM(){}, +RL:function RL(a,b){this.a=a +this.b=b}, +a0K:function a0K(){}, +aeP(a,b,c,d,e,f,g){return new A.va(c,d,e,!0,f,b,g,null)}, +aGv(a,b,c,d,e,f){return new A.Kx(d,e,!0,b,f,c,null)}, +Zo:function Zo(a,b,c){this.e=a +this.c=b +this.a=c}, +YF:function YF(a,b,c,d){var _=this +_.A=a +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +va:function va(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.a=h}, +aeQ:function aeQ(a,b){this.a=a +this.b=b}, +Kx:function Kx(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.x=d +_.y=e +_.c=f +_.a=g}, +wE:function wE(a,b,c,d,e,f,g,h,i,j){var _=this +_.n=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=a +_.ax=b +_.ay=c +_.ch=d +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=e +_.r=f +_.w=null +_.a=g +_.b=null +_.c=h +_.d=i +_.e=j}, +T8:function T8(a){this.a=a}, +WG:function WG(a,b,c){this.c=a +this.d=b +this.a=c}, +OE:function OE(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +IK:function IK(a,b){this.a=a +this.b=b}, +azy:function azy(a,b,c,d){var _=this +_.d=a +_.e=b +_.f=c +_.a=d +_.b=null}, +aDF(a){return A.c3(a,!1).asG(null)}, +c3(a,b){var s,r,q=a instanceof A.iI,p=null +if(q){s=a.ok +s.toString +p=s +s=s instanceof A.jv}else s=!1 +if(s){if(q)s=p +else{s=a.ok +s.toString}t.uK.a(s) +r=s}else r=null +if(b){s=a.apA(t.uK) +r=s==null?r:s}else if(r==null)r=a.kD(t.uK) +r.toString +return r}, +aJ7(a){var s,r,q,p=a.ok +p.toString +s=p instanceof A.jv +r=p +p=s +if(p){t.uK.a(r) +q=r}else q=null +p=q==null?a.kD(t.uK):q +return p}, +aVs(a,b){var s,r,q,p,o,n,m=null,l=A.b([],t.ny) +if(B.c.bz(b,"/")&&b.length>1){b=B.c.bZ(b,1) +s=t.z +l.push(a.yT("/",!0,m,s)) +r=b.split("/") +if(b.length!==0)for(q=r.length,p="",o=0;o=3}, +aZ9(a){return a.gavZ()}, +aLs(a){return new A.axN(a)}, +aJ6(a,b){var s,r,q,p +for(s=a.a,r=s.r,q=r.length,p=0;p") +n.w!==$&&A.bw() +n.w=new A.al(m,p,q) +n.y!==$&&A.bw() +n.y=new A.al(m,o,q) +q=c.v5(n.gake()) +n.z!==$&&A.bw() +n.z=q +return n}, +AG:function AG(a,b,c,d){var _=this +_.e=a +_.f=b +_.w=c +_.a=d}, +Ge:function Ge(a,b,c){var _=this +_.r=_.f=_.e=_.d=null +_.w=a +_.de$=b +_.aW$=c +_.c=_.a=null}, +x2:function x2(a,b){this.a=a +this.b=b}, +Gd:function Gd(a,b,c,d,e,f){var _=this +_.a=a +_.b=$ +_.c=null +_.e=_.d=0 +_.f=$ +_.r=b +_.w=$ +_.x=c +_.z=_.y=$ +_.Q=null +_.at=_.as=0.5 +_.ax=0 +_.ay=d +_.ch=e +_.M$=0 +_.P$=f +_.I$=_.n$=0}, +asr:function asr(a){this.a=a}, +VF:function VF(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +ZS:function ZS(a,b){this.a=a +this.b=b}, +DZ:function DZ(a,b,c,d){var _=this +_.c=a +_.e=b +_.f=c +_.a=d}, +Iw:function Iw(a,b){var _=this +_.d=$ +_.f=_.e=null +_.r=0 +_.w=!0 +_.de$=a +_.aW$=b +_.c=_.a=null}, +ayL:function ayL(a){this.a=a}, +xH:function xH(a,b){this.a=a +this.b=b}, +Iv:function Iv(a,b,c,d){var _=this +_.c=_.b=_.a=$ +_.d=a +_.e=b +_.f=0 +_.r=c +_.M$=0 +_.P$=d +_.I$=_.n$=0}, +nQ:function nQ(a,b){this.a=a +this.c=!0 +this.hm$=b}, +H2:function H2(){}, +Js:function Js(){}, +JG:function JG(){}, +aJg(a,b){var s=a.gaa() +return!(s instanceof A.vo)}, +aJi(a){var s=a.IX(t.Mf) +return s==null?null:s.d}, +It:function It(a){this.a=a}, +Cd:function Cd(){this.a=null}, +ag2:function ag2(a){this.a=a}, +vo:function vo(a,b,c){this.c=a +this.d=b +this.a=c}, +kz:function kz(){}, +Cc:function Cc(){}, +aeE:function aeE(){}, +agn:function agn(){}, +Mb:function Mb(a,b){this.a=a +this.d=b}, +aJq(a){return new A.vu(null,null,B.QI,a,null)}, +aJr(a,b){var s,r=a.IX(t.bb) +if(r==null)return!1 +s=A.od(a).ka(a) +if(r.w.p(0,s))return r.r===b +return!1}, +Pn(a){var s=a.ad(t.bb) +return s==null?null:s.f}, +vu:function vu(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.b=d +_.a=e}, +o9(a){var s=a.ad(t.lQ) +return s==null?null:s.f}, +EQ(a,b){return new A.t1(a,b,null)}, +o8:function o8(a,b,c){this.c=a +this.d=b +this.a=c}, +YU:function YU(a,b,c,d,e){var _=this +_.bw$=a +_.fo$=b +_.oQ$=c +_.e7$=d +_.fp$=e +_.c=_.a=null}, +t1:function t1(a,b,c){this.f=a +this.b=b +this.a=c}, +D3:function D3(a,b,c){this.c=a +this.d=b +this.a=c}, +HM:function HM(){var _=this +_.d=null +_.e=!1 +_.r=_.f=null +_.w=!1 +_.c=_.a=null}, +axB:function axB(a){this.a=a}, +axA:function axA(a,b){this.a=a +this.b=b}, +e_:function e_(){}, +iD:function iD(){}, +aiI:function aiI(a,b){this.a=a +this.b=b}, +aAg:function aAg(){}, +a18:function a18(){}, +bJ:function bJ(){}, +i9:function i9(){}, +HK:function HK(){}, +D_:function D_(a,b,c){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.M$=0 +_.P$=b +_.I$=_.n$=0 +_.$ti=c}, +ru:function ru(a,b){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +Qc:function Qc(a,b){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +aAh:function aAh(){}, +ob:function ob(a,b){this.b=a +this.c=b}, +Qi:function Qi(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f +_.$ti=g}, +aiM:function aiM(a,b){this.a=a +this.b=b}, +xA:function xA(a,b,c,d,e,f,g){var _=this +_.e=_.d=null +_.f=a +_.r=$ +_.w=!1 +_.bw$=b +_.fo$=c +_.oQ$=d +_.e7$=e +_.fp$=f +_.c=_.a=null +_.$ti=g}, +axU:function axU(a){this.a=a}, +axV:function axV(a){this.a=a}, +axT:function axT(a){this.a=a}, +axR:function axR(a,b,c){this.a=a +this.b=b +this.c=c}, +axO:function axO(a){this.a=a}, +axP:function axP(a,b){this.a=a +this.b=b}, +axS:function axS(){}, +axQ:function axQ(){}, +Z2:function Z2(a,b,c,d,e,f,g){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.b=f +_.a=g}, +YR:function YR(a){var _=this +_.y=null +_.a=!1 +_.c=_.b=null +_.M$=0 +_.P$=a +_.I$=_.n$=0}, +xW:function xW(){}, +vb(a,b,c){var s=A.bP(a,b,t.Fe) +s=s==null?null:s.Q +return c.i("ee<0>?").a(s)}, +aJ_(a){var s=A.vb(a,B.ZL,t.X) +return s==null?null:s.giw()}, +vn:function vn(){}, +eh:function eh(){}, +anc:function anc(a,b,c){this.a=a +this.b=b +this.c=c}, +ana:function ana(a,b,c){this.a=a +this.b=b +this.c=c}, +anb:function anb(a,b,c){this.a=a +this.b=b +this.c=c}, +an9:function an9(a,b){this.a=a +this.b=b}, +an8:function an8(a,b){this.a=a +this.b=b}, +Oc:function Oc(){}, +UK:function UK(a,b){this.e=a +this.a=b +this.b=null}, +oS:function oS(a,b){this.a=a +this.b=b}, +GM:function GM(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.b=f +_.a=g}, +auR:function auR(a,b){this.a=a +this.b=b}, +xg:function xg(a,b,c){this.c=a +this.a=b +this.$ti=c}, +my:function my(a,b,c){var _=this +_.d=null +_.e=$ +_.f=a +_.r=b +_.c=_.a=null +_.$ti=c}, +auL:function auL(a){this.a=a}, +auP:function auP(a){this.a=a}, +auQ:function auQ(a){this.a=a}, +auO:function auO(a){this.a=a}, +auM:function auM(a){this.a=a}, +auN:function auN(a){this.a=a}, +ee:function ee(){}, +aeU:function aeU(a,b){this.a=a +this.b=b}, +aeS:function aeS(a,b){this.a=a +this.b=b}, +aeT:function aeT(){}, +Cm:function Cm(){}, +vy:function vy(){}, +ti:function ti(){}, +oc(a,b,c,d,e){return new A.Ql(e,a,d,!1,b,null)}, +Ql:function Ql(a,b,c,d,e,f){var _=this +_.d=a +_.f=b +_.r=c +_.w=d +_.x=e +_.a=f}, +Qx:function Qx(){}, +np:function np(a){this.a=a +this.b=!1}, +a9T:function a9T(a,b){this.c=a +this.a=b +this.b=!1}, +ajn:function ajn(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +a6b:function a6b(a,b){this.c=a +this.a=b +this.b=!1}, +KT:function KT(a,b){var _=this +_.c=$ +_.d=a +_.a=b +_.b=!1}, +My:function My(a){var _=this +_.d=_.c=$ +_.a=a +_.b=!1}, +De:function De(a,b,c){this.a=a +this.b=b +this.$ti=c}, +ajj:function ajj(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aji:function aji(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +od(a){var s=a.ad(t.Cy),r=s==null?null:s.f +return r==null?B.Da:r}, +Qy:function Qy(){}, +ajk:function ajk(){}, +ajl:function ajl(){}, +ajm:function ajm(){}, +aA9:function aA9(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +Df:function Df(a,b,c){this.f=a +this.b=b +this.a=c}, +Qz(){return new A.Dg(A.b([],t.ZP),$.aw())}, +Dg:function Dg(a,b){var _=this +_.f=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +aMj(a,b){return b}, +alh:function alh(){}, +Z4:function Z4(a){this.a=a}, +Rb:function Rb(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.w=f}, +I6:function I6(a,b){this.c=a +this.a=b}, +I7:function I7(a){var _=this +_.f=_.e=_.d=null +_.r=!1 +_.fZ$=a +_.c=_.a=null}, +ayj:function ayj(a,b){this.a=a +this.b=b}, +a1d:function a1d(){}, +QC:function QC(){}, +a7Z:function a7Z(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +Vm:function Vm(){}, +aDW(a,b,c,d,e){var s=new A.kF(c,e,d,a,0) +if(b!=null)s.hm$=b +return s}, +b1p(a){return a.hm$===0}, +fU:function fU(){}, +Sy:function Sy(){}, +fN:function fN(){}, +rB:function rB(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.hm$=d}, +kF:function kF(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.hm$=e}, +jx:function jx(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.f=c +_.a=d +_.b=e +_.hm$=f}, +iE:function iE(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.hm$=d}, +Sr:function Sr(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.hm$=d}, +HW:function HW(){}, +aJW(a){var s=a.ad(t.yd) +return s==null?null:s.f}, +HV:function HV(a,b,c){this.f=a +this.b=b +this.a=c}, +mx:function mx(a){var _=this +_.a=a +_.j7$=_.j6$=_.j5$=null}, +Di:function Di(a,b){this.c=a +this.a=b}, +QD:function QD(a){this.d=a +this.c=this.a=null}, +ajo:function ajo(a){this.a=a}, +ajp:function ajp(a){this.a=a}, +ajq:function ajq(a){this.a=a}, +aRG(a,b,c){var s,r +if(a>0){s=a/c +if(b"))}, +aEY(a,b){var s=$.aa.an$.x.h(0,a).gU() +s.toString +return t.x.a(s).dQ(b)}, +aMi(a,b){var s +if($.aa.an$.x.h(0,a)==null)return!1 +s=t.ip.a($.aa.an$.x.h(0,a).gaa()).f +s.toString +return t.sm.a(s).XL(A.aEY(a,b.gby(b)),b.gcK(b))}, +b0_(a,b){var s,r,q +if($.aa.an$.x.h(0,a)==null)return!1 +s=t.ip.a($.aa.an$.x.h(0,a).gaa()).f +s.toString +t.sm.a(s) +r=A.aEY(a,b.gby(b)) +q=b.gcK(b) +return s.ard(r,q)&&!s.XL(r,q)}, +vO:function vO(a,b){this.a=a +this.b=b}, +vP:function vP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=null +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=!1 +_.ch=null +_.CW=o +_.cx=null +_.db=_.cy=$ +_.dy=_.dx=null +_.M$=0 +_.P$=p +_.I$=_.n$=0}, +vC:function vC(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.w=e +_.Q=f +_.ay=g +_.ch=h +_.cx=i +_.cy=j +_.db=k +_.dx=l +_.a=m}, +kC:function kC(a,b,c,d,e){var _=this +_.w=_.r=_.f=_.e=_.d=null +_.y=_.x=$ +_.z=a +_.Q=!1 +_.as=null +_.at=!1 +_.ay=_.ax=null +_.ch=b +_.CW=$ +_.de$=c +_.aW$=d +_.c=_.a=null +_.$ti=e}, +ahm:function ahm(a){this.a=a}, +ahk:function ahk(a,b){this.a=a +this.b=b}, +ahl:function ahl(a){this.a=a}, +ahg:function ahg(a){this.a=a}, +ahh:function ahh(a){this.a=a}, +ahi:function ahi(a){this.a=a}, +ahj:function ahj(a){this.a=a}, +ahn:function ahn(a){this.a=a}, +aho:function aho(a){this.a=a}, +l1:function l1(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.bB=a +_.bO=_.aL=_.b9=_.aX=_.au=_.ab=_.a9=_.S=_.a2=_.X=_.I=_.n=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=b +_.ax=c +_.ay=d +_.ch=e +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=f +_.r=g +_.w=null +_.a=h +_.b=null +_.c=i +_.d=j +_.e=k}, +p7:function p7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.eC=a +_.at=b +_.ax=c +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null +_.fr=!1 +_.fx=d +_.fy=e +_.k1=_.id=_.go=$ +_.k4=_.k3=_.k2=null +_.ok=$ +_.p1=!1 +_.p2=f +_.p3=g +_.p4=null +_.R8=h +_.RG=i +_.rx=null +_.f=j +_.r=k +_.w=null +_.a=l +_.b=null +_.c=m +_.d=n +_.e=o}, +oN:function oN(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.eC=a +_.at=b +_.ax=c +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null +_.fr=!1 +_.fx=d +_.fy=e +_.k1=_.id=_.go=$ +_.k4=_.k3=_.k2=null +_.ok=$ +_.p1=!1 +_.p2=f +_.p3=g +_.p4=null +_.R8=h +_.RG=i +_.rx=null +_.f=j +_.r=k +_.w=null +_.a=l +_.b=null +_.c=m +_.d=n +_.e=o}, +xs:function xs(){}, +aJ2(a){var s,r=B.b.ga3(a.glr()) +for(s=1;s-3))s=q-r<3&&b.d-a.d>-3 +else s=!0 +if(s)return 0 +if(Math.abs(p)>3)return r>q?1:-1 +return a.d>b.d?1:-1}, +aVa(a,b){var s=a.a,r=b.a,q=s-r +if(q<1e-10&&a.c-b.c>-1e-10)return-1 +if(r-s<1e-10&&b.c-a.c>-1e-10)return 1 +if(Math.abs(q)>1e-10)return s>r?1:-1 +return a.c>b.c?1:-1}, +w6:function w6(){}, +alG:function alG(a){this.a=a}, +alH:function alH(a){this.a=a}, +vc:function vc(){}, +aff:function aff(a){this.a=a}, +afg:function afg(a,b,c){this.a=a +this.b=b +this.c=c}, +afh:function afh(){}, +afb:function afb(a,b){this.a=a +this.b=b}, +afc:function afc(a){this.a=a}, +afd:function afd(a,b){this.a=a +this.b=b}, +afe:function afe(a){this.a=a}, +WM:function WM(){}, +Dp(a){var s=a.ad(t.Wu) +return s==null?null:s.f}, +aJX(a,b){return new A.vR(b,a,null)}, +rE:function rE(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +Zk:function Zk(a,b,c){var _=this +_.d=a +_.AH$=b +_.r5$=c +_.c=_.a=null}, +vR:function vR(a,b,c){this.f=a +this.b=b +this.a=c}, +QJ:function QJ(){}, +a1c:function a1c(){}, +JD:function JD(){}, +DB:function DB(a,b){this.c=a +this.a=b}, +Zu:function Zu(){this.d=$ +this.c=this.a=null}, +Zv:function Zv(a,b,c){this.x=a +this.b=b +this.a=c}, +eA(a,b,c,d,e){return new A.ag(a,c,e,b,d,B.m)}, +aX_(a){var s=A.w(t.oC,t.JF) +a.aj(0,new A.al1(s)) +return s}, +aE_(a,b,c){return new A.rM(null,c,a,b,null)}, +Bs:function Bs(a,b){this.a=a +this.b=b}, +ag:function ag(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +oE:function oE(a,b){this.a=a +this.b=b}, +vX:function vX(a,b){var _=this +_.b=a +_.c=null +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +al1:function al1(a){this.a=a}, +al0:function al0(){}, +al2:function al2(a,b){this.a=a +this.b=b}, +al3:function al3(){}, +al4:function al4(a,b){this.a=a +this.b=b}, +rM:function rM(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Id:function Id(){this.c=this.a=this.d=null}, +DD:function DD(a,b){var _=this +_.c=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +DC:function DC(a,b){this.c=a +this.a=b}, +Ic:function Ic(a,b){var _=this +_.d=a +_.e=b +_.c=_.a=null}, +Zy:function Zy(a,b,c){this.f=a +this.b=b +this.a=c}, +Zw:function Zw(){}, +Zx:function Zx(){}, +Zz:function Zz(){}, +ZB:function ZB(){}, +ZC:function ZC(){}, +a0x:function a0x(){}, +om(a,b){return new A.R_(b,a,null)}, +R_:function R_(a,b,c){this.e=a +this.x=b +this.a=c}, +al8:function al8(a,b,c){this.a=a +this.b=b +this.c=c}, +xC:function xC(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +ZE:function ZE(a,b){var _=this +_.c=_.b=_.a=_.CW=_.ay=_.p1=null +_.d=$ +_.e=a +_.r=_.f=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +HH:function HH(a,b,c,d,e,f,g){var _=this +_.n=a +_.I=b +_.X=c +_.a2=d +_.D$=e +_.dy=f +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +axk:function axk(a,b){this.a=a +this.b=b}, +axj:function axj(a){this.a=a}, +JA:function JA(){}, +a1e:function a1e(){}, +a1f:function a1f(){}, +R2:function R2(){}, +R3:function R3(a,b){this.c=a +this.a=b}, +alb:function alb(a){this.a=a}, +YG:function YG(a,b,c,d){var _=this +_.A=a +_.R=null +_.D$=b +_.dy=c +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aK9(a,b){return new A.w_(b,A.aKb(t.S,t.Dv),a,B.Z)}, +aX5(a,b,c,d,e){if(b===e-1)return d +return d+(d-c)/(b-a+1)*(e-b-1)}, +aUy(a,b){return new A.Ba(b,a,null)}, +Ri:function Ri(){}, +on:function on(){}, +Rg:function Rg(a,b){this.d=a +this.a=b}, +Rd:function Rd(a,b,c){this.f=a +this.d=b +this.a=c}, +w_:function w_(a,b,c,d){var _=this +_.p1=a +_.p2=b +_.p4=_.p3=null +_.R8=!1 +_.c=_.b=_.a=_.CW=_.ay=null +_.d=$ +_.e=c +_.r=_.f=null +_.w=d +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +alp:function alp(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aln:function aln(){}, +alo:function alo(a,b){this.a=a +this.b=b}, +alm:function alm(a,b,c){this.a=a +this.b=b +this.c=c}, +alq:function alq(a,b){this.a=a +this.b=b}, +Ba:function Ba(a,b,c){this.f=a +this.b=b +this.a=c}, +DL:function DL(){}, +hl:function hl(){}, +kG:function kG(){}, +DM:function DM(a,b,c,d,e){var _=this +_.p1=a +_.p2=b +_.c=_.b=_.a=_.CW=_.ay=null +_.d=$ +_.e=c +_.r=_.f=null +_.w=d +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1 +_.$ti=e}, +Ie:function Ie(){}, +aKa(a,b,c,d,e){return new A.Rn(c,d,!0,e,b,null)}, +DP:function DP(a,b){this.a=a +this.b=b}, +DO:function DO(a){var _=this +_.a=!1 +_.M$=0 +_.P$=a +_.I$=_.n$=0}, +Rn:function Rn(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +xx:function xx(a,b,c,d,e,f,g,h){var _=this +_.A=a +_.R=b +_.af=c +_.bT=d +_.bB=e +_.eC=_.bU=null +_.kC=!1 +_.iq=null +_.D$=f +_.dy=g +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +Rm:function Rm(){}, +FN:function FN(){}, +Rv:function Rv(a){this.a=a}, +b_6(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=A.b([],t.bt) +for(s=J.aE(c),r=a.length,q=0,p=0,o=0;q=0){f=o+j +e=f+(m-l) +o=Math.min(e+1,r) +p=f-l +d.push(new A.wa(new A.c4(f,e),n.b))}++q}return d}, +b0R(a,b,c,d,e){var s=null,r=e.b,q=e.a,p=a.a +if(q!==p)r=A.b_6(p,q,r) +if(A.aM()===B.ad)return A.d2(A.aZN(r,a,c,d,b),s,c,s) +return A.d2(A.aZO(r,a,c,d,a.b.c),s,c,s)}, +aZO(a,b,c,d,e){var s,r,q,p,o=null,n=A.b([],t.Ne),m=b.a,l=c.aZ(d),k=0,j=m.length,i=J.aE(a),h=0 +for(;;){if(!(kk){r=r=e?c:l +n.push(A.d2(o,o,s,B.c.a1(m,r,p)));++h +k=p}}i=m.length +if(kj){r=r=j&&f<=r&&e){o.push(A.d2(p,p,c,B.c.a1(n,j,i))) +o.push(A.d2(p,p,l,B.c.a1(n,i,f))) +o.push(A.d2(p,p,c,B.c.a1(n,f,r)))}else o.push(A.d2(p,p,c,B.c.a1(n,j,r))) +j=r}else{q=s.b +q=q=i&&q<=f&&e?l:k +o.push(A.d2(p,p,s,B.c.a1(n,r,q)));++d +j=q}}i=n.length +if(j-3))s=q-r<3&&b.d-a.d>-3 +else s=!0 +if(s)return 0 +if(Math.abs(p)>3)return r>q?1:-1 +return a.d>b.d?1:-1}, +aZa(a,b){var s=a.a,r=b.a,q=s-r +if(q<1e-10&&a.c-b.c>-1e-10)return-1 +if(r-s<1e-10&&b.c-a.c>-1e-10)return 1 +if(Math.abs(q)>1e-10)return s>r?1:-1 +return a.c>b.c?1:-1}, +uq:function uq(a,b,c,d,e,f,g,h,i){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.as=f +_.at=g +_.b=h +_.a=i}, +X5:function X5(a){this.a=a}, +bH:function bH(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.w=e +_.z=f +_.at=g +_.ax=h +_.a=i}, +I3:function I3(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.a=m}, +Zj:function Zj(a){var _=this +_.d=$ +_.e=a +_.c=_.a=null}, +YY:function YY(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.a=n}, +Zi:function Zi(a,b,c,d,e,f,g){var _=this +_.y1=a +_.dx=b +_.dy=c +_.fx=_.fr=null +_.b=d +_.d=_.c=-1 +_.w=_.r=_.f=_.e=null +_.z=_.y=_.x=!1 +_.Q=e +_.as=!1 +_.at=f +_.M$=0 +_.P$=g +_.I$=_.n$=0 +_.a=null}, +ayf:function ayf(a,b){this.a=a +this.b=b}, +ayg:function ayg(a){this.a=a}, +zR:function zR(){}, +Ml:function Ml(){}, +pT:function pT(a){this.a=a}, +pV:function pV(a){this.a=a}, +pU:function pU(a){this.a=a}, +zK:function zK(){}, +lp:function lp(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +ls:function ls(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +q4:function q4(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +q0:function q0(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +q1:function q1(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +hI:function hI(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +nh:function nh(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +lt:function lt(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +lr:function lr(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +q3:function q3(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +lq:function lq(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +m3:function m3(a){this.a=a}, +m4:function m4(){}, +kb:function kb(a){this.b=a}, +lO:function lO(){}, +o4:function o4(){}, +jD:function jD(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +oz:function oz(){}, +iO:function iO(a,b,c){this.a=a +this.b=b +this.c=c}, +ow:function ow(){}, +kf:function kf(a,b){this.a=a +this.b=b}, +kg:function kg(){}, +aLu(a,b,c,d,e,f,g,h,i,j){return new A.I4(b,f,d,e,c,h,j,g,i,a,null)}, +xM(a){var s +switch(A.aM().a){case 0:case 1:case 3:if(a<=3)s=a +else{s=B.f.bh(a,3) +if(s===0)s=3}return s +case 2:case 4:return Math.min(a,3) +case 5:return a<2?a:2+B.f.bh(a,2)}}, +fy:function fy(a,b,c){var _=this +_.e=!1 +_.ca$=a +_.am$=b +_.a=c}, +amP:function amP(){}, +S1:function S1(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=$ +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=!1 +_.as=_.Q=$ +_.at=null +_.ay=_.ax=$}, +QK:function QK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.w=_.r=!1 +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ay=_.ax=!1 +_.ch=m +_.CW=n +_.cx=o +_.cy=p +_.db=q +_.dx=r +_.dy=s +_.fr=a0 +_.fx=a1 +_.fy=a2 +_.go=a3 +_.id=a4 +_.k1=a5 +_.k2=a6 +_.k3=a7 +_.k4=a8 +_.p1=_.ok=null +_.p2=a9 +_.p3=b0 +_.p4=!1}, +ajH:function ajH(a){this.a=a}, +ajF:function ajF(a,b){this.a=a +this.b=b}, +ajG:function ajG(a,b){this.a=a +this.b=b}, +ajI:function ajI(a,b,c){this.a=a +this.b=b +this.c=c}, +ajE:function ajE(a){this.a=a}, +ajD:function ajD(a,b,c){this.a=a +this.b=b +this.c=c}, +p_:function p_(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +I8:function I8(a,b){var _=this +_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +I4:function I4(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.a=k}, +I5:function I5(a,b){var _=this +_.d=$ +_.dV$=a +_.bq$=b +_.c=_.a=null}, +ayh:function ayh(a){this.a=a}, +ayi:function ayi(a,b){this.a=a +this.b=b}, +S0:function S0(){}, +amR:function amR(a){this.a=a}, +Et:function Et(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.a=a3}, +ID:function ID(){this.c=this.a=null}, +azi:function azi(a){this.a=a}, +azj:function azj(a){this.a=a}, +azk:function azk(a){this.a=a}, +azl:function azl(a){this.a=a}, +azm:function azm(a){this.a=a}, +azn:function azn(a){this.a=a}, +azo:function azo(a){this.a=a}, +azp:function azp(a){this.a=a}, +azq:function azq(a){this.a=a}, +azr:function azr(a){this.a=a}, +zg:function zg(){}, +uc:function uc(a,b){this.a=a +this.b=b}, +jO:function jO(){}, +TM:function TM(){}, +JE:function JE(){}, +JF:function JF(){}, +aXF(a,b,c,d){var s,r,q,p,o=A.aKt(b,d,a,c) +if(o.j(0,B.a1))return B.SO +s=A.aKs(b) +r=o.a +r+=(o.c-r)/2 +q=s.b +p=s.d +return new A.Ew(new A.j(r,A.A(o.b,q,p)),new A.j(r,A.A(o.d,q,p)))}, +aKs(a){var s=A.bj(a.aM(0,null),B.i),r=a.gt(0).zL(0,B.i) +return A.rl(s,A.bj(a.aM(0,null),r))}, +aKt(a,b,c,d){var s,r,q,p,o=A.aKs(a),n=o.a +if(isNaN(n)||isNaN(o.b)||isNaN(o.c)||isNaN(o.d))return B.a1 +s=B.b.gae(d).a.b-B.b.ga3(d).a.b>c/2 +r=s?n:n+B.b.ga3(d).a.a +q=o.b +p=B.b.ga3(d) +n=s?o.c:n+B.b.gae(d).a.a +return new A.x(r,q+p.a.b-b,n,q+B.b.gae(d).a.b)}, +Ew:function Ew(a,b){this.a=a +this.b=b}, +aXG(a,b,c){var s=b/2,r=a-s +if(r<0)return 0 +if(a+s>c)return c-b +return r}, +S3:function S3(a,b,c){this.b=a +this.c=b +this.d=c}, +aEa(a){var s=a.ad(t.l3),r=s==null?null:s.f +return r!==!1}, +aKv(a){var s=a.wX(t.l3),r=s==null?null:s.r +return r==null?B.Dn:r}, +wn:function wn(a,b,c){this.c=a +this.d=b +this.a=c}, +a_z:function a_z(a){var _=this +_.d=!0 +_.e=a +_.c=_.a=null}, +G_:function G_(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +f6:function f6(){}, +dC:function dC(){}, +a0p:function a0p(a,b){var _=this +_.w=a +_.a=null +_.b=!1 +_.c=null +_.d=b +_.e=null}, +Fw:function Fw(){}, +Sa:function Sa(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +EE:function EE(){}, +an2:function an2(a,b){this.a=a +this.b=b}, +an3:function an3(a){this.a=a}, +an0:function an0(a,b){this.a=a +this.b=b}, +an1:function an1(a,b){this.a=a +this.b=b}, +ED:function ED(){}, +rN(a,b,c,d){return new A.Ra(c,d,a,b,null)}, +aDV(a,b){return new A.Qn(A.b2S(),B.a_,null,a,b,null)}, +aWw(a){return A.qQ(a,a,1)}, +aJR(a,b){return new A.Qh(A.b2R(),B.a_,null,a,b,null)}, +aWt(a){var s,r,q=a*3.141592653589793*2,p=new Float64Array(16) +p[15]=1 +s=Math.cos(q) +r=Math.sin(q) +p[0]=s +p[1]=r +p[2]=0 +p[4]=-r +p[5]=s +p[6]=0 +p[8]=0 +p[9]=0 +p[10]=1 +p[3]=0 +p[7]=0 +p[11]=0 +return new A.b6(p)}, +aK4(a,b,c,d){return new A.R4(a,b,c,d,null)}, +hC(a,b,c){return new A.Kw(b,c,a,null)}, +yt:function yt(){}, +F5:function F5(){this.c=this.a=null}, +aop:function aop(){}, +Ra:function Ra(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +BC:function BC(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +Qn:function Qn(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +Qh:function Qh(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +R4:function R4(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.w=c +_.c=d +_.a=e}, +d5:function d5(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +M5:function M5(a,b,c,d){var _=this +_.e=a +_.r=b +_.c=c +_.a=d}, +nH:function nH(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +Kw:function Kw(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +b0q(a,b,c){var s={} +s.a=null +return new A.aBb(s,A.c9(),a,b,c)}, +ws:function ws(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.a=h +_.$ti=i}, +wt:function wt(a,b){var _=this +_.d=a +_.e=$ +_.f=null +_.r=!1 +_.c=_.a=_.x=_.w=null +_.$ti=b}, +anh:function anh(a){this.a=a}, +wu:function wu(a,b){this.a=a +this.b=b}, +EP:function EP(a,b,c,d){var _=this +_.w=a +_.x=b +_.a=c +_.M$=0 +_.P$=d +_.I$=_.n$=0}, +a05:function a05(a,b){this.a=a +this.b=-1 +this.$ti=b}, +aBb:function aBb(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aBa:function aBa(a,b,c){this.a=a +this.b=b +this.c=c}, +IO:function IO(){}, +t2:function t2(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.$ti=e}, +xT:function xT(a){var _=this +_.d=$ +_.c=_.a=null +_.$ti=a}, +azY:function azY(a){this.a=a}, +ml(a){var s=A.aIN(a,t._l) +return s==null?null:s.f}, +aKR(a){var s=a.ad(t.Li) +s=s==null?null:s.f +if(s==null){s=$.m1.CW$ +s===$&&A.a()}return s}, +EU:function EU(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +IZ:function IZ(a,b){var _=this +_.d=a +_.e=b +_.f=!1 +_.c=_.a=null}, +PB:function PB(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +ahp:function ahp(a){this.a=a}, +Hg:function Hg(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Y8:function Y8(a,b){var _=this +_.X=$ +_.c=_.b=_.a=_.CW=_.ay=_.S=_.a2=null +_.d=$ +_.e=a +_.r=_.f=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +tv:function tv(a,b,c){this.f=a +this.b=b +this.a=c}, +H6:function H6(a,b,c){this.f=a +this.b=b +this.a=c}, +FO:function FO(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +a1F:function a1F(){}, +anD(a,b){switch(b.a){case 0:return A.aFz(a.ad(t.I).w) +case 1:return B.aC +case 2:return A.aFz(a.ad(t.I).w) +case 3:return B.aC}}, +EX:function EX(a,b,c,d,e,f,g,h,i){var _=this +_.e=a +_.r=b +_.w=c +_.x=d +_.y=e +_.Q=f +_.as=g +_.c=h +_.a=i}, +a0i:function a0i(a,b,c){var _=this +_.S=!1 +_.a9=null +_.p1=$ +_.p2=a +_.c=_.b=_.a=_.CW=_.ay=null +_.d=$ +_.e=b +_.r=_.f=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +QY:function QY(a,b,c,d,e,f){var _=this +_.e=a +_.r=b +_.w=c +_.x=d +_.c=e +_.a=f}, +a1G:function a1G(){}, +a1H:function a1H(){}, +aKS(a){var s,r,q,p={} +p.a=a +s=t.ps +r=a.fD(s) +q=!0 +for(;;){if(!(q&&r!=null))break +q=s.a(a.vb(r)).f +r.k8(new A.anE(p)) +r=p.a.fD(s)}return q}, +Sz:function Sz(a,b,c,d,e,f,g){var _=this +_.c=a +_.e=b +_.f=c +_.r=d +_.w=e +_.y=f +_.a=g}, +anE:function anE(a){this.a=a}, +J_:function J_(a,b,c){this.f=a +this.b=b +this.a=c}, +a0j:function a0j(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +YO:function YO(a,b,c,d,e){var _=this +_.A=a +_.R=b +_.D$=c +_.dy=d +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +aKT(a,b){var s={},r=A.b([],t.p),q=A.b([14],t.n) +s.a=0 +new A.anM(s,q,b,r).$1(a) +return r}, +wA:function wA(){}, +anM:function anM(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a0m:function a0m(a,b,c){this.f=a +this.b=b +this.a=c}, +Tm:function Tm(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +HE:function HE(a,b,c,d,e,f){var _=this +_.n=a +_.I=b +_.X=c +_.D$=d +_.dy=e +_.b=_.fy=null +_.c=0 +_.y=_.d=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=$}, +axi:function axi(a){this.a=a}, +axh:function axh(a){this.a=a}, +a15:function a15(){}, +xU(a){var s=J.aR8(a.$1(B.aO)) +return new A.tx(a,(s>>>24&255)/255,(s>>>16&255)/255,(s>>>8&255)/255,(s&255)/255,B.e)}, +aEl(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +aY9(a){if(a.p(0,B.u))return B.b5 +return B.AE}, +aEk(a,b,c){if(a==null&&b==null)return null +if(a==b)return a +return new A.We(a,b,c)}, +aEO(a){return new A.ib(a,B.l,1,B.v,-1)}, +J2(a){var s=null +return new A.a0o(a,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +cu(a,b,c){if(c.i("bM<0>").b(a))return a.Y(b) +return a}, +aYa(a,b){return new A.bh(a,b.i("bh<0>"))}, +aV(a,b,c,d,e){if(a==null&&b==null)return null +return new A.Gw(a,b,c,d,e.i("Gw<0>"))}, +anN(){return new A.SI(A.aP(t.l),$.aw())}, +T9:function T9(){}, +bY:function bY(a,b){this.a=a +this.b=b}, +oC:function oC(){}, +tx:function tx(a,b,c,d,e,f){var _=this +_.z=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +SF:function SF(){}, +J1:function J1(a,b){this.a=a +this.b=b}, +SE:function SE(){}, +We:function We(a,b,c){this.a=a +this.b=b +this.c=c}, +ib:function ib(a,b,c,d,e){var _=this +_.x=a +_.a=b +_.b=c +_.c=d +_.d=e}, +SG:function SG(){}, +a0o:function a0o(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a2=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6 +_.fy=a7}, +bM:function bM(){}, +Gw:function Gw(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +bh:function bh(a,b){this.a=a +this.$ti=b}, +fV:function fV(a,b){this.a=a +this.$ti=b}, +b2:function b2(a,b){this.a=a +this.$ti=b}, +SI:function SI(a,b){var _=this +_.a=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +a0n:function a0n(){}, +F0:function F0(a,b,c){this.c=a +this.d=b +this.a=c}, +a0r:function a0r(){this.c=this.a=this.d=null}, +a3E:function a3E(){}, +a5r:function a5r(a,b,c){var _=this +_.awx$=a +_.a=b +_.b=c +_.c=$}, +Ux:function Ux(){}, +aab:function aab(){}, +aRL(a){var s=t.N,r=Date.now() +return new A.a3F(A.w(s,t.lC),A.w(s,t.LE),a.b,a,a.a.wi(0).bo(new A.a3H(a),t.Pt),new A.ep(r,0,!1))}, +a3F:function a3F(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=null}, +a3H:function a3H(a){this.a=a}, +a3I:function a3I(a,b,c){this.a=a +this.b=b +this.c=c}, +a3G:function a3G(a){this.a=a}, +a4O:function a4O(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e}, +a3D:function a3D(){}, +uw:function uw(a,b){this.b=a +this.c=b}, +nj:function nj(a,b){this.b=a +this.d=b}, +jd:function jd(){}, +OI:function OI(){}, +aGS(a,b,c,d,e,f,g,h){return new A.il(c,a,d,f,h,b,e,g)}, +il:function il(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +aeq:function aeq(a){this.a=a}, +aUo(){A.aNJ() +var s=new A.yU(A.b([],t.O)) +return new A.a9Y(s)}, +a7T:function a7T(){}, +a9Y:function a9Y(a){this.b=a}, +Nm:function Nm(a,b){this.a=a +this.b=b}, +Pu:function Pu(a,b,c){this.a=a +this.b=b +this.c=c}, +anH:function anH(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=0}, +anI:function anI(a,b,c){this.a=a +this.b=b +this.c=c}, +anJ:function anJ(a,b){this.a=a +this.b=b}, +AN:function AN(a,b,c){this.c=a +this.a=b +this.b=c}, +PE:function PE(){}, +agy:function agy(a){this.a=a}, +pg(a,b){return A.a1R(new A.aBA(a,b),t.Wd)}, +JU(a,b,c){return A.a1R(new A.aBU(a,c,b,null),t.Wd)}, +a1R(a,b){return A.b0A(a,b,b)}, +b0A(a,b,c){var s=0,r=A.H(c),q,p=2,o=[],n=[],m,l +var $async$a1R=A.B(function(d,e){if(d===1){o.push(e) +s=p}for(;;)switch(s){case 0:A.aNJ() +l=A.b([],t.O) +m=new A.yU(l) +p=3 +s=6 +return A.v(a.$1(m),$async$a1R) +case 6:l=e +q=l +n=[1] +s=4 +break +n.push(5) +s=4 +break +case 3:n=[2] +case 4:p=2 +J.aCp(m) +s=n.pop() +break +case 5:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$a1R,r)}, +aBA:function aBA(a,b){this.a=a +this.b=b}, +aBU:function aBU(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Q8:function Q8(a,b){this.a=a +this.b=b}, +KV:function KV(){}, +KW:function KW(){}, +a36:function a36(){}, +a37:function a37(){}, +a38:function a38(){}, +aMJ(a,b){var s +if(t.m.b(a)&&"AbortError"===a.name)return new A.Q8("Request aborted by `abortTrigger`",b.b) +if(!(a instanceof A.pI)){s=J.dr(a) +if(B.c.bz(s,"TypeError: "))s=B.c.bZ(s,11) +a=new A.pI(s,b.b)}return a}, +aMv(a,b,c){A.aHS(A.aMJ(a,c),b)}, +aZL(a,b){return new A.tj(!1,new A.aAn(a,b),t.pA)}, +y_(a,b,c){return A.b0e(a,b,c)}, +b0e(a0,a1,a2){var s=0,r=A.H(t.H),q,p=2,o=[],n,m,l,k,j,i,h,g,f,e,d,c,b,a +var $async$y_=A.B(function(a3,a4){if(a3===1){o.push(a4) +s=p}for(;;)switch(s){case 0:d={} +c=a1.body +b=c==null?null:c.getReader() +s=b==null?3:4 +break +case 3:s=5 +return A.v(a2.aO(0),$async$y_) +case 5:s=1 +break +case 4:d.a=null +d.b=d.c=!1 +a2.f=new A.aB5(d) +a2.r=new A.aB6(d,b,a0) +c=t.u9,k=t.m,j=t.W,i=t.Q +case 6:n=null +p=9 +s=12 +return A.v(A.eV(b.read(),k),$async$y_) +case 12:n=a4 +p=2 +s=11 +break +case 9:p=8 +a=o.pop() +m=A.a1(a) +l=A.aH(a) +s=!d.c?13:14 +break +case 13:d.b=!0 +c=A.aMJ(m,a0) +k=l +j=a2.b +if(j>=4)A.a0(a2.jx()) +if((j&1)!==0){g=a2.a +if((j&8)!==0)g=g.c +g.hc(c,k==null?B.dF:k)}s=15 +return A.v(a2.aO(0),$async$y_) +case 15:case 14:s=7 +break +s=11 +break +case 8:s=2 +break +case 11:if(n.done){a2.VH() +s=7 +break}else{f=n.value +f.toString +c.a(f) +e=a2.b +if(e>=4)A.a0(a2.jx()) +if((e&1)!==0){g=a2.a;((e&8)!==0?g.c:g).i7(0,f)}}f=a2.b +if((f&1)!==0){g=a2.a +e=(((f&8)!==0?g.c:g).e&4)!==0 +f=e}else f=(f&2)===0 +s=f?16:17 +break +case 16:f=d.a +s=18 +return A.v((f==null?d.a=new A.bB(new A.au($.aq,j),i):f).a,$async$y_) +case 18:case 17:if((a2.b&1)===0){s=7 +break}s=6 +break +case 7:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$y_,r)}, +yU:function yU(a){this.b=!1 +this.c=a}, +a3p:function a3p(a){this.a=a}, +aAn:function aAn(a,b){this.a=a +this.b=b}, +aB5:function aB5(a){this.a=a}, +aB6:function aB6(a,b,c){this.a=a +this.b=b +this.c=c}, +tX:function tX(a){this.a=a}, +a3A:function a3A(a){this.a=a}, +aGX(a,b){return new A.pI(a,b)}, +pI:function pI(a,b){this.a=a +this.b=b}, +aJO(a,b){var s=new Uint8Array(0),r=$.aNK() +if(!r.b.test(a))A.a0(A.ij(a,"method","Not a valid method")) +r=t.N +return new A.aiA(B.a5,s,a,b,A.aDw(new A.a36(),new A.a37(),r,r))}, +aiA:function aiA(a,b,c,d,e){var _=this +_.x=a +_.y=b +_.a=c +_.b=d +_.r=e +_.w=!1}, +aiB(a){var s=0,r=A.H(t.Wd),q,p,o,n,m,l,k,j +var $async$aiB=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=3 +return A.v(a.w.a_8(),$async$aiB) +case 3:p=c +o=a.b +n=a.a +m=a.e +l=a.c +k=A.aND(p) +j=p.length +k=new A.vJ(k,n,o,l,j,m,!1,!0) +k.N5(o,j,m,!1,!0,l,n) +q=k +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$aiB,r)}, +iY(a){var s=a.h(0,"content-type") +if(s!=null)return A.aIZ(s) +return A.aem("application","octet-stream",null)}, +vJ:function vJ(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h}, +DY:function DY(){}, +RF:function RF(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h}, +aRR(a){return a.toLowerCase()}, +z_:function z_(a,b,c){this.a=a +this.c=b +this.$ti=c}, +aIZ(a){return A.b2X("media type",a,new A.aen(a))}, +aem(a,b,c){var s=t.N +if(c==null)s=A.w(s,s) +else{s=new A.z_(A.b0W(),A.w(s,t.mT),t.WG) +s.O(0,c)}return new A.BE(a.toLowerCase(),b.toLowerCase(),new A.mk(s,t.G5))}, +BE:function BE(a,b,c){this.a=a +this.b=b +this.c=c}, +aen:function aen(a){this.a=a}, +aep:function aep(a){this.a=a}, +aeo:function aeo(){}, +b1v(a){var s +a.WR($.aQh(),"quoted string") +s=a.gJO().h(0,0) +return A.aNz(B.c.a1(s,1,s.length-1),$.aQg(),new A.aBt(),null)}, +aBt:function aBt(){}, +b2d(){var s,r,q,p,o,n,m,l,k,j,i,h=null +if($.aa==null){s=t.GA +r=A.b([],s) +s=A.b([],s) +q=$.aq +p=A.b([],t.hh) +o=$.aw() +n=A.b([],t.Jh) +m=A.bz(7,h,!1,t.tC) +l=t.S +k=t.j1 +l=new A.SK(h,h,!1,h,$,r,s,!0,new A.bB(new A.au(q,t.W),t.Q),!1,h,!1,$,$,h,$,$,$,A.w(t.K,t.Ju),!1,0,!1,$,new A.ba(p,t.Xx),0,h,$,$,new A.a_4(A.aP(t.M)),$,$,$,new A.ct(h,o),$,h,h,n,h,A.b0P(),new A.Nf(A.b0O(),m,t.G7),!1,0,A.w(l,t.h1),A.dj(l),A.b([],k),A.b([],k),h,!1,B.dm,!0,!1,h,B.F,B.F,h,0,h,!1,h,h,0,A.lI(h,t.qL),new A.agE(A.w(l,t.rr),A.w(t.Ld,t.iD)),new A.a8W(A.w(l,t.cK)),new A.agH(),A.w(l,t.YX),$,!1,B.Gw) +l.ho() +l.a52()}s=$.aa +s.toString +r=$.aR().gd8().b +q=t.e8 +if(q.a(r.h(0,0))==null)A.a0(A.a5('The app requested a view, but the platform did not provide one.\nThis is likely because the app called `runApp` to render its root widget, which expects the platform to provide a default view to render into (the "implicit" view).\nHowever, the platform likely has multi-view mode enabled, which does not create this default "implicit" view.\nTry using `runWidget` instead of `runApp` to start your app.\n`runWidget` allows you to provide a `View` widget, without requiring a default view.\nSee: https://flutter.dev/to/web-multiview-runwidget')) +p=q.a(r.h(0,0)) +p.toString +o=s.gBZ() +j=s.ch$ +if(j===$){r=q.a(r.h(0,0)) +r.toString +i=new A.YV(B.I,r,h,A.ah()) +i.aF() +i.a5V(h,h,r) +s.ch$!==$&&A.aA() +s.ch$=i +j=i}s.a0p(new A.EU(p,B.Hl,o,j,h)) +s.LM()}, +Nn:function Nn(a){this.a=a}, +aa1:function aa1(){}, +aa2:function aa2(){}, +Ks:function Ks(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k}, +n2:function n2(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +pP:function pP(a,b,c,d,e){var _=this +_.a=a +_.c=b +_.d=c +_.e=d +_.f=e}, +aJd(a){var s,r,q,p,o,n,m,l,k="date_created",j="first_name",i="last_name",h="address_1",g="address_2",f="postcode",e="shipping",d=J.aE(a),c=t.kc.a(d.h(a,"line_items")) +if(c==null)s=null +else{c=J.h0(c,new A.afU(),t.L_) +c=A.a6(c,c.$ti.i("ax.E")) +s=c}if(s==null)s=A.b([],t.n3) +c=d.h(a,"id") +if(c==null)c=0 +r=d.h(a,"status") +if(r==null)r="" +q=d.h(a,"total") +if(q==null)q="0" +p=d.h(a,"currency") +if(p==null)p="EUR" +o=d.h(a,k)!=null?A.aSC(d.h(a,k)):new A.ep(Date.now(),0,!1) +if(d.h(a,"billing")!=null){n=d.h(a,"billing") +m=J.aE(n) +n=new A.a3i(m.h(n,j),m.h(n,i),m.h(n,"company"),m.h(n,h),m.h(n,g),m.h(n,"city"),m.h(n,"state"),m.h(n,f),m.h(n,"country"),m.h(n,"email"),m.h(n,"phone"))}else n=null +if(d.h(a,e)!=null){m=d.h(a,e) +l=J.aE(m) +m=new A.al_(l.h(m,j),l.h(m,i),l.h(m,"company"),l.h(m,h),l.h(m,g),l.h(m,"city"),l.h(m,"state"),l.h(m,f),l.h(m,"country"))}else m=null +d.h(a,"payment_method") +return new A.nO(c,r,q,p,o,s,n,m,d.h(a,"payment_method_title"))}, +nO:function nO(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.y=i}, +afU:function afU(){}, +lN:function lN(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.e=d}, +a3i:function a3i(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k}, +al_:function al_(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +aDN(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f="images",e="categories",d="average_rating",c=A.b([],t.s),b=J.aE(a) +if(b.h(a,f)!=null&&t.j.b(b.h(a,f)))for(s=J.bb(b.h(a,f));s.u();){r=s.gN(s) +q=J.aE(r) +if(q.h(r,"src")!=null)c.push(q.h(r,"src"))}s=b.h(a,"id") +if(s==null)s=0 +q=b.h(a,"name") +if(q==null)q="" +p=b.h(a,"description") +if(p==null)p="" +o=b.h(a,"price") +if(o==null)o="0" +n=b.h(a,"regular_price") +m=b.h(a,"sale_price") +l=c.length!==0?c[0]:null +k=J.d(b.h(a,"stock_status"),"instock") +j=b.h(a,"stock_quantity") +if(j==null)j=0 +i=b.h(a,"sku") +h=b.h(a,e)!=null?A.hU(b.h(a,e),!0,t.a):null +g=b.h(a,d)!=null?A.agT(J.dr(b.h(a,d))):null +return new A.nZ(s,q,p,o,n,m,l,c,k,j,i,h,g,b.h(a,"rating_count"))}, +nZ:function nZ(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n}, +ano(a){var s,r,q,p,o,n=J.aE(a),m=n.h(a,"id") +if(m==null)m=0 +s=n.h(a,"email") +if(s==null)s="" +r=n.h(a,"username") +q=n.h(a,"first_name") +p=n.h(a,"last_name") +o=n.h(a,"display_name") +if(o==null)o=n.h(a,"name") +return new A.Sq(m,s,r,q,p,o,n.h(a,"avatar_url"))}, +Sq:function Sq(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +en:function en(a,b){this.a=a +this.b=b}, +fh:function fh(a,b){var _=this +_.a=a +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +a43:function a43(){}, +a46:function a46(){}, +a40:function a40(){}, +a41:function a41(){}, +a42:function a42(a){this.a=a}, +a45:function a45(a){this.a=a}, +a44:function a44(a){this.a=a}, +fz:function fz(a,b){var _=this +_.a=a +_.b=null +_.c=!1 +_.M$=0 +_.P$=b +_.I$=_.n$=0}, +Fj:function Fj(a,b){var _=this +_.d=a +_.e=b +_.f=null +_.r=!1 +_.c=_.a=null}, +apE:function apE(a){this.a=a}, +apF:function apF(a,b){this.a=a +this.b=b}, +apG:function apG(a){this.a=a}, +apR:function apR(a){this.a=a}, +apP:function apP(a){this.a=a}, +apO:function apO(a,b){this.a=a +this.b=b}, +apH:function apH(a){this.a=a}, +apK:function apK(){}, +apJ:function apJ(){}, +apL:function apL(a,b){this.a=a +this.b=b}, +apM:function apM(a,b){this.a=a +this.b=b}, +apN:function apN(a,b,c){this.a=a +this.b=b +this.c=c}, +apQ:function apQ(a){this.a=a}, +apI:function apI(){}, +pA:function pA(a){this.a=a}, +pF:function pF(a){this.a=a}, +Fl:function Fl(a,b){var _=this +_.d=a +_.e=b +_.f=!0 +_.c=_.a=_.r=null}, +apX:function apX(a){this.a=a}, +apY:function apY(a,b){this.a=a +this.b=b}, +apZ:function apZ(a,b){this.a=a +this.b=b}, +aq_:function aq_(a){this.a=a}, +apW:function apW(a,b){this.a=a +this.b=b}, +apT:function apT(a){this.a=a}, +apV:function apV(){}, +apU:function apU(){}, +pG:function pG(a){this.a=a}, +TK:function TK(){var _=this +_.d=$ +_.e=!0 +_.c=_.a=_.f=null}, +aqc:function aqc(a){this.a=a}, +aqb:function aqb(){}, +aq9:function aq9(a){this.a=a}, +aqa:function aqa(a){this.a=a}, +aqd:function aqd(a){this.a=a}, +AL:function AL(a){this.a=a}, +Gj:function Gj(a,b){var _=this +_.d=a +_.e=b +_.f=!0 +_.c=_.a=_.r=null}, +asT:function asT(a){this.a=a}, +asU:function asU(a,b){this.a=a +this.b=b}, +asV:function asV(a,b){this.a=a +this.b=b}, +asW:function asW(a,b){this.a=a +this.b=b}, +at6:function at6(a){this.a=a}, +at5:function at5(){}, +at7:function at7(a){this.a=a}, +at4:function at4(){}, +at8:function at8(a){this.a=a}, +at3:function at3(a,b,c){this.a=a +this.b=b +this.c=c}, +at1:function at1(){}, +at9:function at9(){}, +at2:function at2(a){this.a=a}, +at0:function at0(){}, +asP:function asP(a){this.a=a}, +asO:function asO(){}, +asQ:function asQ(a){this.a=a}, +asN:function asN(){}, +asR:function asR(a){this.a=a}, +asM:function asM(){}, +asS:function asS(a){this.a=a}, +asL:function asL(a,b,c){this.a=a +this.b=b +this.c=c}, +asK:function asK(a,b){this.a=a +this.b=b}, +at_:function at_(a){this.a=a}, +asY:function asY(a){this.a=a}, +asX:function asX(){}, +asZ:function asZ(a,b){this.a=a +this.b=b}, +qF:function qF(a){this.a=a}, +GB:function GB(a,b,c){var _=this +_.d=a +_.e=b +_.f=c +_.r=!0 +_.c=_.a=_.w=null}, +au8:function au8(a){this.a=a}, +au9:function au9(a){this.a=a}, +aud:function aud(){}, +aue:function aue(a){this.a=a}, +auc:function auc(a){this.a=a}, +auf:function auf(a){this.a=a}, +aug:function aug(){}, +auh:function auh(a){this.a=a}, +aui:function aui(a){this.a=a}, +aub:function aub(){}, +auj:function auj(a){this.a=a}, +aua:function aua(){}, +Bu:function Bu(a){this.a=a}, +GC:function GC(a){var _=this +_.d=0 +_.e=a +_.c=_.a=null}, +auk:function auk(a,b){this.a=a +this.b=b}, +aul:function aul(a){this.a=a}, +vl:function vl(a,b){this.c=a +this.a=b}, +afP:function afP(a,b){this.a=a +this.b=b}, +afO:function afO(){}, +r_:function r_(a){this.a=a}, +GZ:function GZ(a,b){var _=this +_.d=a +_.e=b +_.f=!0 +_.c=_.a=_.r=null}, +av8:function av8(a){this.a=a}, +av9:function av9(a,b){this.a=a +this.b=b}, +ava:function ava(a,b){this.a=a +this.b=b}, +avb:function avb(a){this.a=a}, +av7:function av7(a,b){this.a=a +this.b=b}, +av5:function av5(a){this.a=a}, +av6:function av6(){}, +r4:function r4(a){this.a=a}, +H5:function H5(a,b){var _=this +_.d=a +_.e=b +_.r=_.f=!1 +_.c=_.a=null}, +avr:function avr(a){this.a=a}, +avs:function avs(a,b){this.a=a +this.b=b}, +avt:function avt(a){this.a=a}, +avu:function avu(a){this.a=a}, +avv:function avv(){}, +avw:function avw(a){this.a=a}, +lY:function lY(a,b){this.c=a +this.a=b}, +ah4:function ah4(){}, +ah3:function ah3(){}, +ah5:function ah5(a){this.a=a}, +ah2:function ah2(){}, +ah1:function ah1(){}, +ah6:function ah6(a){this.a=a}, +agX:function agX(a){this.a=a}, +agY:function agY(a){this.a=a}, +agZ:function agZ(a,b){this.a=a +this.b=b}, +ah_:function ah_(a,b){this.a=a +this.b=b}, +ah0:function ah0(a,b,c){this.a=a +this.b=b +this.c=c}, +o0:function o0(a,b,c){this.c=a +this.d=b +this.a=c}, +Hb:function Hb(a,b,c){var _=this +_.d=a +_.e=b +_.f=!0 +_.r=!1 +_.w=null +_.x=1 +_.z=!0 +_.Q=c +_.c=_.a=null}, +avU:function avU(a){this.a=a}, +avV:function avV(a,b){this.a=a +this.b=b}, +avW:function avW(a,b){this.a=a +this.b=b}, +avR:function avR(a){this.a=a}, +avS:function avS(a,b,c){this.a=a +this.b=b +this.c=c}, +avT:function avT(a){this.a=a}, +avQ:function avQ(a){this.a=a}, +avP:function avP(a,b,c){this.a=a +this.b=b +this.c=c}, +avO:function avO(a,b){this.a=a +this.b=b}, +Cn:function Cn(a){this.a=a}, +Hc:function Hc(a,b){var _=this +_.d=a +_.e=b +_.r=_.f=null +_.w=!1 +_.c=_.a=null}, +avZ:function avZ(a){this.a=a}, +aw_:function aw_(a,b){this.a=a +this.b=b}, +aw0:function aw0(a){this.a=a}, +aw4:function aw4(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aw3:function aw3(a,b,c){this.a=a +this.b=b +this.c=c}, +awe:function awe(a){this.a=a}, +aw9:function aw9(a){this.a=a}, +aw8:function aw8(){}, +awa:function awa(a){this.a=a}, +aw7:function aw7(){}, +awb:function awb(a){this.a=a}, +awc:function awc(a){this.a=a}, +awd:function awd(a,b,c){this.a=a +this.b=b +this.c=c}, +aw5:function aw5(){}, +aw6:function aw6(){}, +aw2:function aw2(a,b){this.a=a +this.b=b}, +aw1:function aw1(a){this.a=a}, +tm:function tm(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +XY:function XY(){var _=this +_.f=_.e=_.d=$ +_.c=_.a=null}, +avX:function avX(a){this.a=a}, +avY:function avY(a){this.a=a}, +rm:function rm(a){this.a=a}, +Hn:function Hn(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.Q=_.z=!0 +_.at=_.as=!1 +_.c=_.a=null}, +aws:function aws(a){this.a=a}, +awt:function awt(a){this.a=a}, +awu:function awu(a){this.a=a}, +awA:function awA(){}, +awB:function awB(){}, +awC:function awC(a){this.a=a}, +awz:function awz(a){this.a=a}, +awD:function awD(){}, +awE:function awE(a){this.a=a}, +awy:function awy(a){this.a=a}, +awF:function awF(a){this.a=a}, +awG:function awG(a){this.a=a}, +awH:function awH(a){this.a=a}, +awx:function awx(a,b){this.a=a +this.b=b}, +awI:function awI(a){this.a=a}, +aww:function aww(a){this.a=a}, +awJ:function awJ(a){this.a=a}, +awv:function awv(){}, +rD:function rD(a){this.a=a}, +I1:function I1(a,b,c){var _=this +_.d=a +_.e=b +_.f=c +_.r=!1 +_.w=null +_.x="" +_.c=_.a=null}, +ay4:function ay4(a){this.a=a}, +ay5:function ay5(a,b){this.a=a +this.b=b}, +ay6:function ay6(a,b){this.a=a +this.b=b}, +ay7:function ay7(a,b){this.a=a +this.b=b}, +ayb:function ayb(a){this.a=a}, +ayc:function ayc(a){this.a=a}, +aya:function aya(){}, +ayd:function ayd(a){this.a=a}, +aye:function aye(a){this.a=a}, +ay9:function ay9(a,b,c){this.a=a +this.b=b +this.c=c}, +ay8:function ay8(a,b){this.a=a +this.b=b}, +mW:function mW(){}, +a30:function a30(a){this.a=a}, +a31:function a31(){}, +a4W:function a4W(){}, +OU:function OU(a){this.a=a}, +afT:function afT(){}, +afS:function afS(){}, +afQ:function afQ(a){this.a=a}, +afR:function afR(){}, +wB:function wB(){}, +anT:function anT(){}, +anS:function anS(){}, +anR:function anR(){}, +MG(a,b){var s,r=null,q=J.dr(b).toLowerCase() +if(typeof b=="string")s=b +else if(B.c.p(q,"failed host lookup")||B.c.p(q,"socketexception")||B.c.p(q,"network")||B.c.p(q,"connection"))s="Keine Internetverbindung. Bitte pr\xfcfe deine Verbindung." +else if(B.c.p(q,"timeout")||B.c.p(q,"timed out"))s="Zeit\xfcberschreitung. Bitte versuche es erneut." +else if(t.bE.b(b))s="Datenfehler. Bitte versuche es erneut." +else if(B.c.p(q,"404")||B.c.p(q,"not found"))s="Nicht gefunden." +else if(B.c.p(q,"401")||B.c.p(q,"403")||B.c.p(q,"unauthorized")||B.c.p(q,"forbidden"))s="Nicht autorisiert. Bitte melde dich an." +else s=B.c.p(q,"500")||B.c.p(q,"server error")||B.c.p(q,"internal server")?"Server-Fehler. Bitte versuche es sp\xe4ter erneut.":"Ein Fehler ist aufgetreten" +a.ad(t.d).f.jq(A.w0(new A.DN(B.k,"OK",new A.a7M(),r),r,r,B.aV,r,B.B,r,A.ai(s,r,r,r,r,r,r),r,B.bW,r,r,r,r,r,r,r,r,r,r))}, +a7M:function a7M(){}, +Bp:function Bp(a,b){this.c=a +this.a=b}, +o_:function o_(a,b,c){this.c=a +this.d=b +this.a=c}, +agW:function agW(){}, +agV:function agV(){}, +aJP(a,b){return new A.Qd(a,b,null)}, +Qd:function Qd(a,b,c){this.c=a +this.d=b +this.a=c}, +a5k:function a5k(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.ax=n +_.ay=o +_.ch=p +_.CW=q}, +aHj(a){var s=A.aNH(null,A.b1l(),null) +s.toString +s=new A.kc(new A.a5j(),s) +s.H4(a) +return s}, +aSw(a){var s=$.aCf() +s.toString +if(A.y6(a)!=="en_US")s.qq() +return!0}, +aSv(){return A.b([new A.a5g(),new A.a5h(),new A.a5i()],t.xf)}, +aYp(a){var s,r +if(a==="''")return"'" +else{s=B.c.a1(a,1,a.length-1) +r=$.aPj() +return A.mP(s,r,"'")}}, +kc:function kc(a,b){var _=this +_.a=a +_.c=b +_.x=_.w=_.f=_.e=_.d=null}, +a5j:function a5j(){}, +a5g:function a5g(){}, +a5h:function a5h(){}, +a5i:function a5i(){}, +oJ:function oJ(){}, +wO:function wO(a,b){this.a=a +this.b=b}, +wQ:function wQ(a,b,c){this.d=a +this.a=b +this.b=c}, +wP:function wP(a,b){this.a=a +this.b=b}, +aKH(a,b){return new A.Sk(a,b,A.b([],t.s))}, +aME(a){var s,r=a.length +if(r<3)return-1 +s=a[2] +if(s==="-"||s==="_")return 2 +if(r<4)return-1 +r=a[3] +if(r==="-"||r==="_")return 3 +return-1}, +y6(a){var s,r,q +if(a==="C")return"en_ISO" +if(a.length<5)return a +s=A.aME(a) +if(s===-1)return a +r=B.c.a1(a,0,s) +q=B.c.bZ(a,s+1) +if(q.length<=3)q=q.toUpperCase() +return r+"_"+q}, +aNH(a,b,c){var s,r,q +if(a==null){if(A.aN1()==null)$.aM7="en_US" +s=A.aN1() +s.toString +return A.aNH(s,b,c)}if(b.$1(a))return a +for(s=[A.y6(a),A.b2y(a),"fallback"],r=0;r<3;++r){q=s[r] +if(b.$1(q))return q}return A.b0r(a)}, +b0r(a){throw A.e(A.bF('Invalid locale "'+a+'"',null))}, +b2y(a){var s,r +if(a==="invalid")return"in" +s=a.length +if(s<2)return a +r=A.aME(a) +if(r===-1)if(s<4)return a.toLowerCase() +else return a +return B.c.a1(a,0,r).toLowerCase()}, +Sk:function Sk(a,b,c){this.a=a +this.b=b +this.c=c}, +Oe:function Oe(a){this.a=a}, +bD(a,b,c,d,e,f,g,h){return new A.zZ(d,e,g,c,a,f,b,h,A.w(t.ML,t.bq))}, +A_(a,b){var s,r=A.aHb(b,a),q=r<0?100:r,p=A.aHa(b,a),o=p<0?0:p,n=A.pO(q,a),m=A.pO(o,a) +if(B.d.aI(a)<60){s=Math.abs(n-m)<0.1&&n=b||n>=m||s?q:o}else return m>=b||m>=n?o:q}, +zZ:function zZ(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +a6g(a,b,c){var s,r,q,p,o,n=a.a +n===$&&A.a() +for(s=0;s<=7;s=q){r=b[s] +q=s+1 +p=b[q] +if(r>>16&255 +m=p>>>8&255 +l=p&255 +k=A.kt(A.b([A.cN(n),A.cN(m),A.cN(l)],s),$.j7) +j=A.a3R(k[0],k[1],k[2],h) +o.a=j.a +h=o.b=j.b +o.c=116*A.n6(A.kt(A.b([A.cN(n),A.cN(m),A.cN(l)],s),$.j7)[1]/100)-16 +if(r>h)break +n=Math.abs(h-b) +if(n<0.4)break +if(n=360?k-360:k +i=j*3.141592653589793/180 +h=a4.r +g=a4.y +f=100*Math.pow((40*p+c+n)/20*a4.w/h,g*a4.ay)/100 +Math.sqrt(f) +e=Math.pow(3846.153846153846*(0.25*(Math.cos((j<20.14?j+360:j)*3.141592653589793/180+2)+3.8))*a4.z*a4.x*Math.sqrt(m*m+l*l)/((20*p+c+21*n)/20+0.305),0.9)*Math.pow(1.64-Math.pow(0.29,a4.f),0.73) +d=e*Math.sqrt(f) +Math.sqrt(e*g/(h+4)) +Math.log(1+0.0228*(d*a4.ax)) +Math.cos(i) +Math.sin(i) +return new A.a3Q(j,d,A.b([0,0,0],t.n))}, +a3Q:function a3Q(a,b,c){this.a=a +this.b=b +this.y=c}, +hb(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6=new A.ha() +a6.d=a7 +s=$.Kc() +r=A.aH6(a7) +q=r[0] +p=r[1] +o=r[2] +n=s.as +m=n[0]*(0.401288*q+0.650173*p-0.051461*o) +l=n[1]*(-0.250268*q+1.204414*p+0.045854*o) +k=n[2]*(-0.002079*q+0.048952*p+0.953127*o) +n=s.at +j=Math.pow(n*Math.abs(m)/100,0.42) +i=Math.pow(n*Math.abs(l)/100,0.42) +h=Math.pow(n*Math.abs(k)/100,0.42) +g=A.qM(m)*400*j/(j+27.13) +f=A.qM(l)*400*i/(i+27.13) +e=A.qM(k)*400*h/(h+27.13) +d=(11*g+-12*f+e)/11 +c=(g+f-2*e)/9 +n=20*f +b=Math.atan2(c,d)*180/3.141592653589793 +if(b<0)a=b+360 +else a=b>=360?b-360:b +a0=a*3.141592653589793/180 +a1=s.r +a2=s.y +a3=100*Math.pow((40*g+n+e)/20*s.w/a1,a2*s.ay)/100 +Math.sqrt(a3) +a4=Math.pow(3846.153846153846*(0.25*(Math.cos((a<20.14?a+360:a)*3.141592653589793/180+2)+3.8))*s.z*s.x*Math.sqrt(d*d+c*c)/((20*g+n+21*e)/20+0.305),0.9)*Math.pow(1.64-Math.pow(0.29,s.f),0.73) +a5=a4*Math.sqrt(a3) +Math.sqrt(a4*a2/(a1+4)) +Math.log(1+0.0228*(a5*s.ax)) +Math.cos(a0) +Math.sin(a0) +a6.a=a +a6.b=a5 +a6.c=116*A.n6(A.aH6(a7)[1]/100)-16 +return a6}, +ha:function ha(){var _=this +_.d=_.c=_.b=_.a=$}, +anC:function anC(a,b,c,d,e,f,g,h,i,j){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.z=f +_.as=g +_.at=h +_.ax=i +_.ay=j}, +aKy(a){var s,r=t.S,q=a.a +q===$&&A.a() +s=a.b +s===$&&A.a() +return new A.rZ(q,s,A.w(r,r))}, +bv(a,b){var s=t.S +A.aXV(a,b) +return new A.rZ(a,b,A.w(s,s))}, +aXV(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.hb(A.qk(a,b,50)),d=e.b +d===$&&A.a() +s=Math.abs(d-b) +for(d=t.n,r=1;r<50;++r){q=B.d.aI(b) +p=e.b +p===$&&A.a() +if(q===B.d.aI(p))return e +o=A.qk(a,b,50+r) +n=new A.ha() +n.d=o +q=$.Kc() +p=o>>>16&255 +m=o>>>8&255 +l=o&255 +k=A.kt(A.b([A.cN(p),A.cN(m),A.cN(l)],d),$.j7) +j=A.a3R(k[0],k[1],k[2],q) +n.a=j.a +i=j.b +n.b=i +n.c=116*A.n6(A.kt(A.b([A.cN(p),A.cN(m),A.cN(l)],d),$.j7)[1]/100)-16 +h=Math.abs(i-b) +if(h>>16&255 +m=o>>>8&255 +l=o&255 +k=A.kt(A.b([A.cN(p),A.cN(m),A.cN(l)],d),$.j7) +j=A.a3R(k[0],k[1],k[2],q) +g.a=j.a +q=j.b +g.b=q +g.c=116*A.n6(A.kt(A.b([A.cN(p),A.cN(m),A.cN(l)],d),$.j7)[1]/100)-16 +f=Math.abs(q-b) +if(f=1;s=q){q=s-1 +if(b[q]!=null)break}p=new A.cK("") +o=a+"(" +p.a=o +n=A.a2(b) +m=n.i("i2<1>") +l=new A.i2(b,0,s,m) +l.xD(b,0,s,n.c) +m=o+new A.ae(l,new A.aBd(),m.i("ae")).bn(0,", ") +p.a=m +p.a=m+("): part "+(r-1)+" was null, but part "+r+" was not.") +throw A.e(A.bF(p.k(0),null))}}, +LN:function LN(a,b){this.a=a +this.b=b}, +a4U:function a4U(){}, +a4V:function a4V(){}, +aBd:function aBd(){}, +aaN:function aaN(){}, +r3(a,b){var s,r,q,p,o,n=b.a0b(a),m=b.n3(a) +if(n!=null)a=B.c.bZ(a,n.length) +s=t.s +r=A.b([],s) +q=A.b([],s) +s=a.length +if(s!==0&&b.lK(a.charCodeAt(0))){q.push(a[0]) +p=1}else{q.push("") +p=0}for(o=p;o")),s,s,s,s,b.i("z0<0>"))}, +aRS(a,b){if(b!=null)b.l()}, +z0:function z0(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e +_.$ti=f}, +zm(a,b){return new A.zl(a,null,null,b.i("zl<0>"))}, +zl:function zl(a,b,c,d){var _=this +_.e=a +_.c=b +_.a=c +_.$ti=d}, +zn:function zn(a,b,c,d){var _=this +_.e=a +_.c=b +_.a=c +_.$ti=d}, +aUP(a,b){if(b!=null)b.Z(0,a.gYL()) +return new A.abv(b,a)}, +Bn:function Bn(){}, +abv:function abv(a,b){this.a=a +this.b=b}, +aV8(a,b){var s=A.aV9(b) +return new A.Ox(s,a,null)}, +aV9(a){var s,r,q,p,o,n={} +n.a=null +for(s=0,r=null;q=s<2,q;++s,r=o){p=a[s] +o=r==null?new A.af8(p):new A.af9(r,p) +n.a=o}r=A.b([],t.Ds) +if(n.a!=null)r.push(new A.QZ(new A.afa(n),null,null)) +if(q)B.b.O(r,B.b.hb(a,s)) +return r}, +Co(a,b,c){var s,r=c.i("tc<0?>?").a(a.fD(c.i("fb<0?>"))),q=r==null +if(q&&!c.b(null))A.a0(new A.Ps(A.bZ(c),A.r(a.gaa()))) +if(b)a.ad(c.i("fb<0?>")) +s=q?null:r.gtH().gq(0) +if($.aPU()){if(!c.b(s))throw A.e(new A.Pt(A.bZ(c),A.r(a.gaa()))) +return s}return s==null?c.a(s):s}, +uN:function uN(){}, +Gn:function Gn(a,b,c){var _=this +_.lA$=a +_.c=_.b=_.a=_.ay=null +_.d=$ +_.e=b +_.r=_.f=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1}, +fb:function fb(a,b,c,d){var _=this +_.f=a +_.b=b +_.a=c +_.$ti=d}, +tc:function tc(a,b,c,d){var _=this +_.bK=!1 +_.bW=!0 +_.cb=_.D=!1 +_.ep=$ +_.n=a +_.c=_.b=_.a=_.ay=null +_.d=$ +_.e=b +_.r=_.f=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.at=!1 +_.$ti=d}, +atq:function atq(a,b){this.a=a +this.b=b}, +UD:function UD(){}, +jU:function jU(){}, +wL:function wL(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.e=d +_.f=e +_.$ti=f}, +Fz:function Fz(a){var _=this +_.b=null +_.c=!1 +_.a=_.f=_.e=_.d=null +_.$ti=a}, +Ox:function Ox(a,b,c){this.c=a +this.d=b +this.a=c}, +af8:function af8(a){this.a=a}, +af9:function af9(a,b){this.a=a +this.b=b}, +afa:function afa(a){this.a=a}, +Pt:function Pt(a,b){this.a=a +this.b=b}, +Ps:function Ps(a,b){this.a=a +this.b=b}, +aSI(a,b,c){return new A.zF(a,!0,c.i("zF<0>"))}, +zF:function zF(a,b,c){this.a=a +this.b=b +this.$ti=c}, +aRz(a,b,c,d){return new A.a3h(a,b,d)}, +yJ:function yJ(a,b,c,d){var _=this +_.e=a +_.b=b +_.c=!1 +_.a=c +_.$ti=d}, +a3h:function a3h(a,b,c){this.a=a +this.b=b +this.c=c}, +a0t:function a0t(a){this.a=!1 +this.b=a +this.c=null}, +oF:function oF(a,b){this.a=a +this.$ti=b}, +w9:function w9(){}, +xJ:function xJ(a,b){this.a=a +this.$ti=b}, +xE:function xE(a){this.c=a +this.a=null}, +RB:function RB(a,b){this.a=a +this.$ti=b}, +alF:function alF(a){this.a=a}, +xD:function xD(a,b){this.c=a +this.d=b +this.a=null}, +RA:function RA(a,b,c){this.a=a +this.b=b +this.$ti=c}, +alE:function alE(a){this.a=a}, +art:function art(){}, +MF:function MF(a,b){this.a=a +this.b=b}, +AC:function AC(){}, +aN7(a,b,c,d){var s +if(a.giv())s=A.b_p(a,b,c,d) +else s=A.b_o(a,b,c,d) +return s}, +b_p(a,b,c,d){return new A.tj(!0,new A.aAC(b,a,d),d.i("tj<0>"))}, +b_o(a,b,c,d){var s,r,q=null,p={} +if(a.giv())s=new A.l0(q,q,d.i("l0<0>")) +else s=A.rP(q,q,q,!0,d) +p.a=null +p.b=!1 +r=A.td(new A.aAG(b,c,d)) +s.sYZ(new A.aAH(p,a,r,s)) +s.sYV(0,new A.aAI(p,r)) +return s.gpK(s)}, +aAC:function aAC(a,b,c){this.a=a +this.b=b +this.c=c}, +aAD:function aAD(a,b,c){this.a=a +this.b=b +this.c=c}, +aAB:function aAB(a,b){this.a=a +this.b=b}, +aAG:function aAG(a,b,c){this.a=a +this.b=b +this.c=c}, +aAH:function aAH(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aAJ:function aAJ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aAE:function aAE(a,b){this.a=a +this.b=b}, +aAF:function aAF(a,b){this.a=a +this.b=b}, +aAI:function aAI(a,b){this.a=a +this.b=b}, +WL:function WL(a){this.a=a}, +V9:function V9(a){this.a=a}, +jG(){var s=0,r=A.H(t.cZ),q,p=2,o=[],n,m,l,k,j,i +var $async$jG=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:s=$.akY==null?3:4 +break +case 3:n=new A.bB(new A.au($.aq,t.cN),t.Iy) +$.akY=n +p=6 +s=9 +return A.v(A.akZ(),$async$jG) +case 9:m=b +J.aQZ(n,new A.vV(m)) +p=2 +s=8 +break +case 6:p=5 +i=o.pop() +l=A.a1(i) +n.ot(l) +k=n.a +$.akY=null +q=k +s=1 +break +s=8 +break +case 5:s=2 +break +case 8:case 4:q=$.akY.a +s=1 +break +case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$jG,r)}, +akZ(){var s=0,r=A.H(t.nf),q,p,o,n,m,l,k,j +var $async$akZ=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:n=t.N +m=t.K +l=A.w(n,m) +k=J +j=l +s=3 +return A.v($.aCd().nq(0),$async$akZ) +case 3:k.aCn(j,b) +p=A.w(n,m) +for(n=l,n=new A.eK(n,n.r,n.e);n.u();){m=n.d +o=B.c.bZ(m,8) +m=J.aK(l,m) +m.toString +p.m(0,o,m)}q=p +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$akZ,r)}, +vV:function vV(a){this.a=a}, +aeF:function aeF(){}, +akX:function akX(){}, +agM:function agM(a,b){this.a=a +this.b=b}, +a9c:function a9c(a){this.a=a}, +b_w(a){var s=A.aUD(v.G.window.localStorage) +return new A.aY(s,new A.aAL(a),A.a2(s).i("aY<1>"))}, +b_7(a){var s,r=null +try{r=B.a4.bM(0,a)}catch(s){if(t.bE.b(A.a1(s)))return null +else throw s}if(t.j.b(r))return J.Kh(r,t.N) +return r}, +akV:function akV(){}, +akW:function akW(a){this.a=a}, +aAL:function aAL(a){this.a=a}, +aD8(a,b){if(b<0)A.a0(A.eM("Offset may not be negative, was "+b+".")) +else if(b>a.c.length)A.a0(A.eM("Offset "+b+u.D+a.gv(0)+".")) +return new A.MO(a,b)}, +als:function als(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +MO:function MO(a,b){this.a=a +this.b=b}, +wW:function wW(a,b,c){this.a=a +this.b=b +this.c=c}, +aUk(a,b){var s=A.aUl(A.b([A.aYC(a,!0)],t._Y)),r=new A.a9Q(b).$0(),q=B.f.k(B.b.gae(s).b+1),p=A.aUm(s)?0:3,o=A.a2(s) +return new A.a9w(s,r,null,1+Math.max(q.length,p),new A.ae(s,new A.a9y(),o.i("ae<1,m>")).Ca(0,B.Cm),!A.b21(new A.ae(s,new A.a9z(),o.i("ae<1,R?>"))),new A.cK(""))}, +aUm(a){var s,r,q +for(s=0;s") +r=s.i("f0") +s=A.a6(new A.f0(new A.et(q,s),new A.a9D(),r),r.i("o.E")) +return s}, +aYC(a,b){var s=new A.asI(a).$0() +return new A.fA(s,!0,null)}, +aYE(a){var s,r,q,p,o,n,m=a.gcW(a) +if(!B.c.p(m,"\r\n"))return a +s=a.gbv(a) +r=s.gck(s) +for(s=m.length-1,q=0;q")) +for(s=c.i("D<0>"),r=0;r<1;++r){q=a[r] +p=b.$1(q) +o=n.h(0,p) +if(o==null){o=A.b([],s) +n.m(0,p,o) +p=o}else p=o +J.fF(p,q)}return n}, +aUv(a,b){var s,r,q +for(s=A.cl(a,a.r,A.n(a).c),r=s.$ti.c;s.u();){q=s.d +if(q==null)q=r.a(q) +if(b.$1(q))return q}return null}, +aSm(a){return B.fH}, +aBl(a,b,c,d,e){return A.b14(a,b,c,d,e,e)}, +b14(a,b,c,d,e,f){var s=0,r=A.H(f),q,p +var $async$aBl=A.B(function(g,h){if(g===1)return A.E(h,r) +for(;;)switch(s){case 0:p=A.iS(null,t.P) +s=3 +return A.v(p,$async$aBl) +case 3:q=a.$1(b) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$aBl,r)}, +aM(){var s=$.aPK() +return s}, +b0d(a){var s +switch(a.a){case 1:s=B.ad +break +case 0:s=B.L +break +case 2:s=B.bx +break +case 4:s=B.aY +break +case 3:s=B.by +break +case 5:s=B.ad +break +default:s=null}return s}, +yb(a,b){var s +if(a==null)return b==null +if(b==null||a.gv(a)!==b.gv(b))return!1 +if(a===b)return!0 +for(s=a.gag(a);s.u();)if(!b.p(0,s.gN(s)))return!1 +return!0}, +cE(a,b){var s,r,q +if(a==null)return b==null +if(b==null||J.cg(a)!==J.cg(b))return!1 +if(a===b)return!0 +for(s=J.aE(a),r=J.aE(b),q=0;q>>1 +r=p-s +q=A.bz(r,a[0],!1,c) +A.aB4(a,b,s,p,q,0) +A.aB4(a,b,0,s,a,r) +A.aMl(b,a,r,p,q,0,r,a,0)}, +b_E(a,b,c,d,e){var s,r,q,p,o +for(s=d+1;s1e6){if(q.b==null)q.b=$.Pp.$0() +q.k5(0) +$.a1J=0}for(;;){if(!($.a1J<12288?!$.a2f().ga7(0):r))break +s=$.a2f().po() +$.a1J=$.a1J+s.length +A.aNr(s)}if(!$.a2f().ga7(0)){$.aEU=!0 +$.a1J=0 +A.co(B.d1,A.b2p()) +if($.aAx==null)$.aAx=new A.bB(new A.au($.aq,t.W),t.Q)}else{$.aFZ().pI(0) +r=$.aAx +if(r!=null)r.f1(0) +$.aAx=null}}, +aef(a){var s,r,q=a.a,p=null,o=null,n=!1 +if(1===q[0])if(0===q[1])if(0===q[2])if(0===q[3])if(0===q[4])if(1===q[5])if(0===q[6])if(0===q[7])if(0===q[8])if(0===q[9])if(1===q[10])if(0===q[11]){s=q[12] +r=q[13] +n=0===q[14]&&1===q[15] +o=r +p=s}if(n)return new A.j(p,o) +return null}, +aIW(a,b){var s,r,q +if(a==b)return!0 +if(a==null){b.toString +return A.aeg(b)}if(b==null)return A.aeg(a) +s=a.a +r=s[0] +q=b.a +return r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}, +aeg(a){var s=a.a +return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, +bj(a,b){var s=a.a,r=b.a,q=b.b,p=s[0]*r+s[4]*q+s[12],o=s[1]*r+s[5]*q+s[13],n=s[3]*r+s[7]*q+s[15] +if(n===1)return new A.j(p,o) +else return new A.j(p/n,o/n)}, +aee(a,b,c,d,e){var s,r=e?1:1/(a[3]*b+a[7]*c+a[15]),q=(a[0]*b+a[4]*c+a[12])*r,p=(a[1]*b+a[5]*c+a[13])*r +if(d){s=$.aCa() +s.$flags&2&&A.aI(s) +s[2]=q +s[0]=q +s[3]=p +s[1]=p}else{s=$.aCa() +if(qs[2]){s.$flags&2&&A.aI(s) +s[2]=q}if(p>s[3]){s.$flags&2&&A.aI(s) +s[3]=p}}}, +dK(b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=b1.a,a5=b2.a,a6=b2.b,a7=b2.c,a8=a7-a5,a9=b2.d,b0=a9-a6 +if(!isFinite(a8)||!isFinite(b0)){s=a4[3]===0&&a4[7]===0&&a4[15]===1 +A.aee(a4,a5,a6,!0,s) +A.aee(a4,a7,a6,!1,s) +A.aee(a4,a5,a9,!1,s) +A.aee(a4,a7,a9,!1,s) +a7=$.aCa() +return new A.x(a7[0],a7[1],a7[2],a7[3])}a7=a4[0] +r=a7*a8 +a9=a4[4] +q=a9*b0 +p=a7*a5+a9*a6+a4[12] +a9=a4[1] +o=a9*a8 +a7=a4[5] +n=a7*b0 +m=a9*a5+a7*a6+a4[13] +a7=a4[3] +if(a7===0&&a4[7]===0&&a4[15]===1){l=p+r +if(r<0)k=p +else{k=l +l=p}if(q<0)l+=q +else k+=q +j=m+o +if(o<0)i=m +else{i=j +j=m}if(n<0)j+=n +else i+=n +return new A.x(l,j,k,i)}else{a9=a4[7] +h=a9*b0 +g=a7*a5+a9*a6+a4[15] +f=p/g +e=m/g +a9=p+r +a7=g+a7*a8 +d=a9/a7 +c=m+o +b=c/a7 +a=g+h +a0=(p+q)/a +a1=(m+n)/a +a7+=h +a2=(a9+q)/a7 +a3=(c+n)/a7 +return new A.x(A.aIU(f,d,a0,a2),A.aIU(e,b,a1,a3),A.aIT(f,d,a0,a2),A.aIT(e,b,a1,a3))}}, +aIU(a,b,c,d){var s=ab?a:b,r=c>d?c:d +return s>r?s:r}, +aIV(a,b){var s +if(A.aeg(a))return b +s=new A.b6(new Float64Array(16)) +s.cB(a) +s.hM(s) +return A.dK(s,b)}, +JT(a,b,c){if(a==null)return a===b +return a>b-c&&ab?a:b,r=s===b?a:b +return(s+5)/(r+5)}, +aHb(a,b){var s,r,q,p +if(b<0||b>100)return-1 +s=A.pL(b) +r=a*(s+5)-5 +q=A.aCO(r,s) +if(q0.04)return-1 +p=A.aH5(r)+0.4 +if(p<0||p>100)return-1 +return p}, +aHa(a,b){var s,r,q,p +if(b<0||b>100)return-1 +s=A.pL(b) +r=(s+5)/a-5 +q=A.aCO(s,r) +if(q0.04)return-1 +p=A.aH5(r)-0.4 +if(p<0||p>100)return-1 +return p}, +aCZ(a){var s,r,q,p,o,n=a.a +n===$&&A.a() +s=B.d.aI(n) +r=s>=90&&s<=111 +s=a.b +s===$&&A.a() +q=B.d.aI(s) +p=a.c +p===$&&A.a() +o=B.d.aI(p)<65 +if(r&&q>16&&o)return A.hb(A.qk(n,s,70)) +return a}, +a9q(a){var s=a/100 +return(s<=0.0031308?s*12.92:1.055*Math.pow(s,0.4166666666666667)-0.055)*255}, +aDj(a){var s=Math.pow(Math.abs(a),0.42) +return A.qM(a)*400*s/(s+27.13)}, +aDk(a){var s=A.kt(a,$.aUj),r=A.aDj(s[0]),q=A.aDj(s[1]),p=A.aDj(s[2]) +return Math.atan2((r+q-2*p)/9,(11*r+-12*q+p)/11)}, +aUi(a,b){var s,r,q,p,o,n=$.AI[0],m=$.AI[1],l=$.AI[2],k=B.f.bh(b,4)<=1?0:100,j=B.f.bh(b,2)===0?0:100 +if(b<4){s=(a-k*m-j*l)/n +r=0<=s&&s<=100 +q=t.n +if(r)return A.b([s,k,j],q) +else return A.b([-1,-1,-1],q)}else if(b<8){p=(a-j*n-k*l)/m +r=0<=p&&p<=100 +q=t.n +if(r)return A.b([j,p,k],q) +else return A.b([-1,-1,-1],q)}else{o=(a-k*n-j*m)/l +r=0<=o&&o<=100 +q=t.n +if(r)return A.b([k,j,o],q) +else return A.b([-1,-1,-1],q)}}, +aUe(a,b){var s,r,q,p,o,n,m,l,k=A.b([-1,-1,-1],t.n) +for(s=k,r=0,q=0,p=!1,o=!0,n=0;n<12;++n){m=A.aUi(a,n) +if(m[0]<0)continue +l=A.aDk(m) +if(!p){q=l +r=q +s=m +k=s +p=!0 +continue}if(o||B.d.bh(l-r+25.132741228718345,6.283185307179586)100.01||b>100.01||a>100.01)return 0 +return((A.uf(g)&255)<<16|(A.uf(f[1])&255)<<8|A.uf(f[2])&255|4278190080)>>>0}a1-=(a0-a9)*a1/(2*a0)}return 0}, +qk(a,b,c){var s,r,q,p +if(b<0.0001||c<0.0001||c>99.9999){s=A.uf(A.pL(c)) +return A.aH4(s,s,s)}r=A.BB(a)/180*3.141592653589793 +q=A.pL(c) +p=A.aUg(r,b,q) +if(p!==0)return p +return A.aSe(A.aUd(q,r))}, +aH4(a,b,c){return((a&255)<<16|(b&255)<<8|c&255|4278190080)>>>0}, +aSe(a){return A.aH4(A.uf(a[0]),A.uf(a[1]),A.uf(a[2]))}, +aH6(a){return A.kt(A.b([A.cN(B.f.eX(a,16)&255),A.cN(B.f.eX(a,8)&255),A.cN(a&255)],t.n),$.j7)}, +pL(a){return 100*A.aSd((a+16)/116)}, +aH5(a){return A.n6(a/100)*116-16}, +cN(a){var s=a/255 +if(s<=0.040449936)return s/12.92*100 +else return Math.pow((s+0.055)/1.055,2.4)*100}, +uf(a){var s=a/100 +return A.aUY(0,255,B.d.aI((s<=0.0031308?s*12.92:1.055*Math.pow(s,0.4166666666666667)-0.055)*255))}, +n6(a){if(a>0.008856451679035631)return Math.pow(a,0.3333333333333333) +else return(903.2962962962963*a+16)/116}, +aSd(a){var s=a*a*a +if(s>0.008856451679035631)return s +else return(116*a-16)/903.2962962962963}, +qM(a){if(a<0)return-1 +else if(a===0)return 0 +else return 1}, +aDA(a,b,c){return(1-c)*a+c*b}, +aUY(a,b,c){if(cb)return b +return c}, +aed(a,b,c){if(cb)return b +return c}, +BB(a){a=B.d.bh(a,360) +return a<0?a+360:a}, +kt(a,b){var s,r,q,p,o=a[0],n=b[0],m=n[0],l=a[1],k=n[1],j=a[2] +n=n[2] +s=b[1] +r=s[0] +q=s[1] +s=s[2] +p=b[2] +return A.b([o*m+l*k+j*n,o*r+l*q+j*s,o*p[0]+l*p[1]+j*p[2]],t.n)}, +aFd(){var s,r,q,p,o=null +try{o=A.ank()}catch(s){if(t.VI.b(A.a1(s))){r=$.aAw +if(r!=null)return r +throw s}else throw s}if(J.d(o,$.aM3)){r=$.aAw +r.toString +return r}$.aM3=o +if($.aFS()===$.Kb())r=$.aAw=o.Y(".").k(0) +else{q=o.KT() +p=q.length-1 +r=$.aAw=p===0?q:B.c.a1(q,0,p)}return r}, +aNh(a){var s +if(!(a>=65&&a<=90))s=a>=97&&a<=122 +else s=!0 +return s}, +aN3(a,b){var s,r,q=null,p=a.length,o=b+2 +if(p")),q=q.i("ax.E");r.u();){p=r.d +if(!J.d(p==null?q.a(p):p,s))return!1}return!0}, +b2s(a,b){var s=B.b.hR(a,null) +if(s<0)throw A.e(A.bF(A.k(a)+" contains no null elements.",null)) +a[s]=b}, +aNu(a,b){var s=B.b.hR(a,b) +if(s<0)throw A.e(A.bF(A.k(a)+" contains no elements matching "+b.k(0)+".",null)) +a[s]=null}, +b1d(a,b){var s,r,q,p +for(s=new A.fG(a),r=t.Hz,s=new A.bd(s,s.gv(0),r.i("bd")),r=r.i("a_.E"),q=0;s.u();){p=s.d +if((p==null?r.a(p):p)===b)++q}return q}, +aBy(a,b,c){var s,r,q +if(b.length===0)for(s=0;;){r=B.c.jR(a,"\n",s) +if(r===-1)return a.length-s>=c?s:null +if(r-s>=c)return s +s=r+1}r=B.c.hR(a,b) +while(r!==-1){q=r===0?0:B.c.Bp(a,"\n",r-1)+1 +if(c===r-q)return q +r=B.c.jR(a,b,r+1)}return null}, +aVC(a){var s=null.aws(a) +A.agm(s,$.aOB(),!0) +return s}, +aVD(a){var s=null.awt(a) +A.agm(s,$.aOC(),!0) +return s}},B={} +var w=[A,J,B] +var $={} +A.Kt.prototype={ +saoo(a){var s,r,q,p,o=this +if(J.d(a,o.c))return +if(a==null){o.E4() +o.c=null +return}s=o.a.$0() +if(a.JD(s)){o.E4() +o.c=a +return}if(o.b==null)o.b=A.co(a.fU(s),o.gGq()) +else{r=o.c +q=r.a +p=a.a +if(q<=p)r=q===p&&r.b>a.b +else r=!0 +if(r){o.E4() +o.b=A.co(a.fU(s),o.gGq())}}o.c=a}, +E4(){var s=this.b +if(s!=null)s.aR(0) +this.b=null}, +akg(){var s=this,r=s.a.$0(),q=s.c +q.toString +if(!r.JD(q)){s.b=null +q=s.d +if(q!=null)q.$0()}else s.b=A.co(q.fU(r),s.gGq())}} +A.a2N.prototype={ +qD(){var s=0,r=A.H(t.H),q=this +var $async$qD=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=2 +return A.v(q.a.$0(),$async$qD) +case 2:s=3 +return A.v(q.b.$0(),$async$qD) +case 3:return A.F(null,r)}}) +return A.G($async$qD,r)}, +au8(){return A.aTW(new A.a2R(this),new A.a2S(this))}, +ahI(){return A.aTU(new A.a2O(this))}, +RJ(){return A.aTV(new A.a2P(this),new A.a2Q(this))}} +A.a2R.prototype={ +$0(){var s=0,r=A.H(t.m),q,p=this,o +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:o=p.a +s=3 +return A.v(o.qD(),$async$$0) +case 3:q=o.RJ() +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$$0,r)}, +$S:599} +A.a2S.prototype={ +$1(a){return this.a_z(a)}, +$0(){return this.$1(null)}, +a_z(a){var s=0,r=A.H(t.m),q,p=this,o +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:o=p.a +s=3 +return A.v(o.a.$1(a),$async$$1) +case 3:q=o.ahI() +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$$1,r)}, +$S:134} +A.a2O.prototype={ +$1(a){return this.a_y(a)}, +$0(){return this.$1(null)}, +a_y(a){var s=0,r=A.H(t.m),q,p=this,o +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:o=p.a +s=3 +return A.v(o.b.$0(),$async$$1) +case 3:q=o.RJ() +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$$1,r)}, +$S:134} +A.a2P.prototype={ +$1(a){var s,r,q,p=$.aR().gd8(),o=p.a,n=a.hostElement +n.toString +s=a.viewConstraints +r=$.aMn +$.aMn=r+1 +q=new A.V8(r,o,A.aHP(n),s,B.er,A.aHo(n)) +q.N6(r,o,n,s) +p.ZF(q,a) +return r}, +$S:304} +A.a2Q.prototype={ +$1(a){return $.aR().gd8().Wz(a)}, +$S:119} +A.a2V.prototype={ +amV(){var s,r,q,p,o=this.a +this.a=A.b([],t.s8) +for(s=o.length,r=0;rs||q.b>r +else k=!1 +if(k)return a +p=q.a +o=q.b +k=v.G +n=new k.OffscreenCanvas(p,o) +m=A.aD_(n,"2d") +m.toString +A.aHA(A.dP(m),a.c.gHA(),0,0,s,r,0,0,p,o) +l=n.transferToImageBitmap() +m=$.be.bd().MakeLazyImageFromTextureSource(l,0,!0) +n.width=0 +n.height=0 +if(m==null){k.window.console.warn("Failed to scale image.") +return a}a.l() +return A.z6(m,new A.aa9(l))}} +A.Ln.prototype={ +W9(a,b,c){return A.aMX(a,b,c)}} +A.z7.prototype={ +W9(a,b,c){return A.aMX(a,b,c)}} +A.aC0.prototype={ +$1(a){var s=this,r=s.a,q=r.a+a.length +r.a=q +s.b.$2(q,s.c) +s.d.set(a,r.b) +r.b=r.b+a.length}, +$S:168} +A.n3.prototype={ +a5I(a,b){var s +this.Fm() +s=this.b +s===$&&A.a();++s.b +s=this.c +if(s!=null)++s.a}, +Fm(){}, +l(){var s,r=this.b +r===$&&A.a() +if(--r.b===0){r=r.a +r===$&&A.a() +r.l()}r=this.c +s=r==null +if(!s)--r.a +if(!s)if(r.a===0)r.EB()}, +arP(a){var s,r=a.b +r===$&&A.a() +r=r.a +r===$&&A.a() +r=r.a +r.toString +s=this.b +s===$&&A.a() +s=s.a +s===$&&A.a() +s=s.a +s.toString +s=r.isAliasOf(s) +return s}, +k(a){var s,r=this.b +r===$&&A.a() +r=r.a +r===$&&A.a() +r=J.ap(r.a.width()) +s=this.b.a +s===$&&A.a() +return"["+r+"\xd7"+J.ap(s.a.height())+"]"}, +$iaId:1} +A.aax.prototype={} +A.anv.prototype={ +EB(){}, +gHA(){return this.c}} +A.aaf.prototype={ +EB(){}, +gHA(){return this.c}} +A.aa9.prototype={ +EB(){this.c.close()}, +gHA(){return this.c}} +A.Lo.prototype={ +gHk(){return B.ep}, +AQ(a){var s=A.kU("result") +this.l3(new A.a4i(s,a),B.mi) +return s.aS()}, +$ihR:1} +A.a4i.prototype={ +$1(a){this.a.b=A.aNt(a.getOutputBounds(A.cU(this.b)))}, +$S:2} +A.z5.prototype={ +l3(a,b){var s=this.a.XR() +a.$1(s) +s.delete()}, +gB(a){var s=this.a +return s.gB(s)}, +j(a,b){if(b==null)return!1 +if(A.r(this)!==J.U(b))return!1 +return b instanceof A.z5&&b.a.j(0,this.a)}, +k(a){return this.a.k(0)}} +A.Fo.prototype={ +gHk(){return this.c}, +l3(a,b){var s,r,q=this.a,p=q===0&&this.b===0 +if(p){q=$.be.bd().ImageFilter +p=A.aFC(A.qO().a) +s=$.aG_().h(0,B.dY) +s.toString +r=A.fD(q,"MakeMatrixTransform",[p,s,null])}else{p=$.be.bd().ImageFilter +r=p.MakeBlur(q,this.b,A.aFD(b),null)}a.$1(r) +r.delete()}, +j(a,b){var s +if(b==null)return!1 +if(A.r(this)!==J.U(b))return!1 +s=!1 +if(b instanceof A.Fo)if(b.a===this.a)s=b.b===this.b +return s}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"ImageFilter.blur("+this.a+", "+this.b+", unspecified)"}} +A.Fq.prototype={ +l3(a,b){var s=$.be.bd().ImageFilter,r=A.b2P(this.a),q=$.aG_().h(0,this.b) +q.toString +q=A.fD(s,"MakeMatrixTransform",[r,q,null]) +a.$1(q) +q.delete()}, +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.Fq&&b.b===this.b&&A.mN(b.a,this.a)}, +gB(a){return A.T(this.b,A.bI(this.a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"ImageFilter.matrix("+A.k(this.a)+", "+this.b.k(0)+")"}} +A.Fp.prototype={ +l3(a,b){this.a.l3(new A.aqi(this,a,b),b)}, +j(a,b){if(b==null)return!1 +if(A.r(this)!==J.U(b))return!1 +return b instanceof A.Fp&&b.a.j(0,this.a)&&b.b.j(0,this.b)}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"ImageFilter.compose("+this.a.k(0)+", "+this.b.k(0)+")"}} +A.aqi.prototype={ +$1(a){this.a.b.l3(new A.aqh(a,this.b),this.c)}, +$S:2} +A.aqh.prototype={ +$1(a){var s=$.be.bd().ImageFilter.MakeCompose(this.a,a) +this.b.$1(s) +s.delete()}, +$S:2} +A.Lj.prototype={ +l(){var s=this.a +s===$&&A.a() +s.l()}, +goT(){return this.d}, +grH(){return this.e}, +fE(){var s,r,q=this.a +q===$&&A.a() +s=q.a +q=A.ea(0,J.ap(s.currentFrameDuration()),0) +r=A.z6(s.makeImageAtCurrentFrame(),null) +s.decodeNextFrame() +return A.dc(new A.tM(q,r),t.Uy)}, +$idI:1} +A.z4.prototype={} +A.afi.prototype={ +I3(a){return this.a.bY(0,a,new A.afj(this,a))}, +M1(a){var s,r,q +for(s=this.a,s=new A.dl(s,s.r,s.e);s.u();){r=s.d.x +q=new A.afk(a) +q.$1(r.gHm()) +B.b.aj(r.d,q) +B.b.aj(r.c,q)}}} +A.afj.prototype={ +$0(){return A.aVd(this.b,this.a)}, +$S:334} +A.afk.prototype={ +$1(a){a.z=this.a +a.Go()}, +$S:386} +A.qS.prototype={ +Zk(){this.x.gHm().v4(this.c)}, +nf(a,b,c){return this.aul(a,b,c)}, +aul(a,b,c){var s=0,r=A.H(t.H),q=this,p,o,n,m,l,k,j,i,h,g +var $async$nf=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:if(a.length!==b.length)throw A.e(A.bF(u.q,null)) +p=A.b([],t.mo) +for(o=t.W,n=t.Oz,m=0;m0){o=p.a +s=$.be.bd().MaskFilter.MakeBlur($.aQm()[o.a],s,!0) +s.toString +l.setMaskFilter(s)}}n=m.ay +if(n!=null)n.l3(new A.a4j(l),a) +return l}, +ef(){return this.a_e(B.mi)}, +sJA(a){var s,r=this +if(a===r.w)return +if(!a){r.at=r.x +r.x=null}else{s=r.x=r.at +if(s==null)r.at=$.aCh() +else r.at=A.abG(new A.u4($.aCh(),s))}r.w=a}, +sDa(a){if(this.y==a)return +this.y=a}, +samX(a){var s,r=this +if(J.d(r.as,a))return +r.as=a +r.x=null +s=A.aMW(a) +s.toString +s=r.at=A.abG(s) +if(r.w){r.x=s +r.at=A.abG(new A.u4($.aCh(),s))}}, +sXP(a){if(J.d(this.ay,a))return +this.ay=a}, +k(a){return"Paint()"}, +$iP2:1} +A.a4j.prototype={ +$1(a){this.a.setImageFilter(a)}, +$S:2} +A.u6.prototype={ +sAO(a){var s +if(this.b===a)return +this.b=a +s=this.a +s===$&&A.a() +s=s.a +s.toString +s.setFillType($.a2h()[a.a])}, +UT(a,b,c,d){var s,r,q=A.qO() +q.pE(c.a,c.b,0) +s=A.aFC(q.a) +q=this.a +q===$&&A.a() +q=q.a +q.toString +r=b.a +r===$&&A.a() +r=r.a +r.toString +A.fD(q,"addPath",[r,s[0],s[1],s[2],s[3],s[4],s[5],s[6],s[7],s[8],!1])}, +alL(a,b,c){return this.UT(0,b,c,null)}, +$ir5:1} +A.Lr.prototype={ +aog(){var s=new v.G.window.flutterCanvasKit.Path() +s.setFillType($.a2h()[0]) +return A.aCI(s,B.ib)}} +A.Ls.prototype={ +l(){var s=this.a +s===$&&A.a() +s.l()}, +KU(a,b){var s,r,q,p,o=$.aCF.bd().r.v4(new A.k3(a,b)).a,n=o.getCanvas() +n.clear(A.aF0($.aCj(),B.y)) +s=this.a +s===$&&A.a() +s=s.a +s.toString +n.drawPicture(s) +r=o.makeImageSnapshot() +o=$.be.bd().AlphaType.Premul +q={width:a,height:b,colorType:$.be.bd().ColorType.RGBA_8888,alphaType:o,colorSpace:v.G.window.flutterCanvasKit.ColorSpace.SRGB} +p=r.readPixels(0,0,q) +if(p==null)p=null +if(p==null)throw A.e(A.a5("Unable to read pixels from SkImage.")) +o=$.be.bd().MakeImage(q,p,4*a) +if(o==null)throw A.e(A.a5("Unable to convert image pixels into SkImage.")) +return A.z6(o,null)}, +$iagb:1} +A.lf.prototype={ +Hp(a){var s=new v.G.window.flutterCanvasKit.PictureRecorder() +this.a=s +return new A.Ll(s.beginRecording(A.cU(a),!0))}, +oK(){var s,r,q,p=this.a +if(p==null)throw A.e(A.a5("PictureRecorder is not recording")) +s=p.finishRecordingAsPicture() +p.delete() +this.a=null +r=new A.Ls() +q=new A.iN("Picture",t.Pj) +q.nT(r,s,"Picture",t.m) +r.a!==$&&A.bw() +r.a=q +return r}, +$iabh:1, +$iagc:1} +A.a3Z.prototype={ +gy3(){var s,r,q,p=this.f +if(p===$){if(A.dq().gmH()===B.cD)s=new A.anF() +else{r=t.N +q=t.Pc +s=new A.R7(A.aP(r),A.b([],t.LX),A.b([],q),A.b([],q),A.w(r,t.Lc))}this.f!==$&&A.aA() +p=this.f=s}return p}, +hS(a){var s=0,r=A.H(t.H),q,p=this,o +var $async$hS=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:o=p.e +q=o==null?p.e=new A.a4_(p).$0():o +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$hS,r)}, +vV(a,b,c,d){return this.arx(a,b,c,d)}, +XY(a){return this.vV(a,!0,null,null)}, +arx(a,b,c,d){var s=0,r=A.H(t.hP),q +var $async$vV=A.B(function(e,f){if(e===1)return A.E(f,r) +for(;;)switch(s){case 0:q=A.a22(a,d,c,b) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$vV,r)}} +A.a4_.prototype={ +$0(){var s=0,r=A.H(t.P),q=this,p,o +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p=v.G +s=p.window.flutterCanvasKit!=null?2:4 +break +case 2:p=p.window.flutterCanvasKit +p.toString +$.be.b=p +s=3 +break +case 4:s=p.window.flutterCanvasKitLoaded!=null?5:7 +break +case 5:p=p.window.flutterCanvasKitLoaded +p.toString +o=$.be +s=8 +return A.v(A.eV(p,t.m),$async$$0) +case 8:o.b=b +s=6 +break +case 7:o=$.be +s=9 +return A.v(A.a1W(),$async$$0) +case 9:o.b=b +p.window.flutterCanvasKit=$.be.bd() +case 6:case 3:p=q.a +p.a=A.aRM() +$.aCF.b=p +p=A.iS(p.a36(0),t.H) +s=10 +return A.v(p,$async$$0) +case 10:return A.F(null,r)}}) +return A.G($async$$0,r)}, +$S:579} +A.al5.prototype={ +a5Y(){var s,r=this,q="Gradient.linear",p=$.be.bd().Shader,o=A.aNC(r.c),n=A.aNC(r.d),m=A.b2M(r.e),l=A.b2N(r.f),k=A.aFD(r.r),j=r.w +j=j!=null?A.aFC(j):null +s=new A.iN(q,t.Pj) +s.nT(r,A.fD(p,"MakeLinearGradient",[o,n,m,l,k,j==null?null:j]),q,t.m) +r.a!==$&&A.bw() +r.a=s}, +a0e(a){var s=this.a +s===$&&A.a() +s=s.a +s.toString +return s}} +A.a9g.prototype={ +garS(){return!0}, +k(a){return"Gradient()"}} +A.a4h.prototype={} +A.iJ.prototype={ +Go(){var s,r=this.z +if(r!=null){s=this.x +if(s!=null)s.setResourceCacheLimitBytes(r)}}, +C7(a,b,c){return this.auo(a,b,c)}, +auo(a,b,c){var s=0,r=A.H(t.H),q=this,p,o,n,m,l,k +var $async$C7=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:k=q.a.a.getCanvas() +k.clear(A.aF0($.aCj(),B.y)) +p=c.a +p===$&&A.a() +p=p.a +p.toString +k.drawPicture(p) +q.a.a.flush() +if(v.G.window.createImageBitmap!=null)k=!A.b23() +else k=!1 +s=k?2:4 +break +case 2:s=q.b?5:7 +break +case 5:o=q.Q.transferToImageBitmap() +s=6 +break +case 7:k=q.as +k.toString +p=a.b +s=8 +return A.v(A.b1h(k,new A.Yn([p,a.a,0,q.ay-p])),$async$C7) +case 8:o=e +case 6:b.P3(new A.k3(o.width,o.height)) +n=b.e +if(n===$){k=A.uv(b.b,"bitmaprenderer") +k.toString +A.dP(k) +b.e!==$&&A.aA() +b.e=k +n=k}n.transferFromImageBitmap(o) +s=3 +break +case 4:if(q.b){k=q.Q +k.toString +m=k}else{k=q.as +k.toString +m=k}k=q.ay +b.P3(a) +n=b.f +if(n===$){p=A.uv(b.b,"2d") +p.toString +A.dP(p) +b.f!==$&&A.aA() +b.f=p +n=p}p=a.b +l=a.a +A.aHA(n,m,0,k-p,l,p,0,0,l,p) +case 3:return A.F(null,r)}}) +return A.G($async$C7,r)}, +og(){var s,r,q=this,p=$.dy(),o=p.d +if(o==null)o=p.gcu() +p=q.ax +s=q.ay +r=q.as.style +A.Z(r,"width",A.k(p/o)+"px") +A.Z(r,"height",A.k(s/o)+"px") +q.ch=o}, +ap8(){if(this.a!=null)return +this.v4(B.BW)}, +v4(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=a.a +if(h===0||a.b===0)throw A.e(A.aCE("Cannot create surfaces of empty size.")) +if(!i.d){s=i.a +r=s==null +q=r?null:s.b +if(q!=null&&h===q.a&&a.b===q.b){h=$.dy() +p=h.d +if(p==null)p=h.gcu() +if(i.c&&p!==i.ch)i.og() +h=i.a +h.toString +return h}o=i.cy +if(o!=null)o=h!==o.a||a.b!==o.b +else o=!1 +if(o){if(!r)s.l() +i.a=null +i.ax=h +i.ay=a.b +if(i.b){s=i.Q +s.toString +s.width=h +s=i.Q +s.toString +s.height=i.ay}else{s=i.as +s.toString +s.width=h +s=i.as +s.toString +s.height=i.ay}i.cy=new A.k3(i.ax,i.ay) +if(i.c)i.og()}}s=i.a +if(s!=null)s.l() +i.a=null +if(i.d||i.cy==null){s=i.x +if(s!=null)s.releaseResourcesAndAbandonContext() +s=i.x +if(s!=null)s.delete() +i.x=null +s=i.Q +if(s!=null){s.removeEventListener("webglcontextrestored",i.w,!1) +i.Q.removeEventListener("webglcontextlost",i.r,!1) +i.r=i.w=i.Q=null}else{s=i.as +if(s!=null){s.removeEventListener("webglcontextrestored",i.w,!1) +i.as.removeEventListener("webglcontextlost",i.r,!1) +i.as.remove() +i.r=i.w=i.as=null}}i.ax=h +s=i.ay=a.b +r=i.b +if(r){n=i.Q=new v.G.OffscreenCanvas(h,s) +i.as=null}else{m=i.as=A.aBm(s,h) +i.Q=null +if(i.c){h=A.ad("true") +h.toString +m.setAttribute("aria-hidden",h) +A.Z(i.as.style,"position","absolute") +h=i.as +h.toString +i.at.append(h) +i.og()}n=m}i.w=A.b3(i.ga87()) +h=A.b3(i.ga85()) +i.r=h +n.addEventListener("webglcontextlost",h,!1) +n.addEventListener("webglcontextrestored",i.w,!1) +h=i.d=!1 +s=$.pa +if((s==null?$.pa=A.a1K():s)!==-1?!A.dq().gVx():h){h=$.pa +if(h==null)h=$.pa=A.a1K() +l={antialias:0,majorVersion:h} +if(r){h=$.be.bd() +s=i.Q +s.toString +k=J.ap(h.GetWebGLContext(s,l))}else{h=$.be.bd() +s=i.as +s.toString +k=J.ap(h.GetWebGLContext(s,l))}i.y=k +if(k!==0){h=$.be.bd().MakeGrContext(k) +i.x=h +if(h==null)A.a0(A.aCE("Failed to initialize CanvasKit. CanvasKit.MakeGrContext returned null.")) +if(i.CW===-1||i.cx===-1){h=$.pa +if(r){s=i.Q +s.toString +j=A.aT8(s,h==null?$.pa=A.a1K():h)}else{s=i.as +s.toString +j=A.aT4(s,h==null?$.pa=A.a1K():h)}i.CW=j.getParameter(j.SAMPLES) +i.cx=j.getParameter(j.STENCIL_BITS)}i.Go()}}i.cy=a}return i.a=i.a8l(a)}, +a88(a){$.aR().JB() +a.stopPropagation() +a.preventDefault()}, +a86(a){this.d=!0 +a.preventDefault()}, +a8l(a){var s,r,q=this,p=$.pa +if((p==null?$.pa=A.a1K():p)===-1)return q.yt("WebGL support not detected",a) +else if(A.dq().gVx())return q.yt("CPU rendering forced by application",a) +else if(q.y===0)return q.yt("Failed to initialize WebGL context",a) +else{p=$.be.bd() +s=q.x +s.toString +r=A.fD(p,"MakeOnScreenGLSurface",[s,a.a,a.b,v.G.window.flutterCanvasKit.ColorSpace.SRGB,q.CW,q.cx]) +if(r==null)return q.yt("Failed to initialize WebGL surface",a) +return new A.Lv(r,a,q.y)}}, +yt(a,b){var s,r,q,p,o +if(!$.aKe){$.el().$1("WARNING: Falling back to CPU-only rendering. "+a+".") +$.aKe=!0}try{s=null +if(this.b){q=$.be.bd() +p=this.Q +p.toString +s=q.MakeSWCanvasSurface(p)}else{q=$.be.bd() +p=this.as +p.toString +s=q.MakeSWCanvasSurface(p)}q=s +return new A.Lv(q,b,null)}catch(o){r=A.a1(o) +q=A.aCE("Failed to create CPU-based surface: "+A.k(r)+".") +throw A.e(q)}}, +hS(a){this.ap8()}, +l(){var s=this,r=s.Q +if(r!=null)r.removeEventListener("webglcontextlost",s.r,!1) +r=s.Q +if(r!=null)r.removeEventListener("webglcontextrestored",s.w,!1) +s.w=s.r=null +r=s.a +if(r!=null)r.l()}, +gn1(){return this.at}} +A.Lv.prototype={ +l(){if(this.d)return +this.a.dispose() +this.d=!0}} +A.z9.prototype={ +a0g(){var s=this,r=null,q=s.z +q=q==null?r:q.c +return A.aCJ(r,r,r,r,r,r,s.w,r,r,s.x,s.e,r,s.d,r,s.y,q,r,r,s.r,r,r,r,r)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.z9&&b.b===s.b&&b.c==s.c&&b.d==s.d&&b.f==s.f&&b.r==s.r&&b.x==s.x&&b.y==s.y&&J.d(b.z,s.z)&&J.d(b.Q,s.Q)&&b.as==s.as&&J.d(b.at,s.at)}, +gB(a){var s=this +return A.T(s.b,s.c,s.d,s.e,s.f,s.r,s.x,s.y,s.z,s.Q,s.as,s.at,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return this.ke(0)}} +A.u7.prototype={ +gMa(){var s,r=this,q=r.fx +if(q===$){s=new A.a4l(r).$0() +r.fx!==$&&A.aA() +r.fx=s +q=s}return q}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.u7&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&J.d(b.c,s.c)&&b.d==s.d&&b.f==s.f&&b.w==s.w&&b.ch==s.ch&&b.x==s.x&&b.as==s.as&&b.at==s.at&&b.ax==s.ax&&b.ay==s.ay&&b.e==s.e&&b.cx==s.cx&&b.cy==s.cy&&A.mN(b.db,s.db)&&A.mN(b.z,s.z)&&A.mN(b.dx,s.dx)&&A.mN(b.dy,s.dy)}, +gB(a){var s=this,r=null,q=s.db,p=s.dy,o=s.z,n=o==null?r:A.bI(o),m=q==null?r:A.bI(q) +return A.T(s.a,s.b,s.c,s.d,s.f,s.r,s.w,s.ch,s.x,n,s.as,s.at,s.ax,s.ay,s.CW,s.cx,s.cy,m,s.e,A.T(r,p==null?r:A.bI(p),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, +k(a){return this.ke(0)}} +A.a4l.prototype={ +$0(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this.a,f=g.a,e=g.b,d=g.c,c=g.d,b=g.e,a=g.f,a0=g.w,a1=g.as,a2=g.at,a3=g.ax,a4=g.ay,a5=g.cx,a6=g.cy,a7=g.db,a8=g.dy,a9={} +if(a5!=null){s=A.y9(A.bq(a5.r)) +a9.backgroundColor=s}if(f!=null){s=A.y9(f) +a9.color=s}if(e!=null){r=J.ap($.be.bd().NoDecoration) +s=e.a +if((s|1)===s)r=(r|J.ap($.be.bd().UnderlineDecoration))>>>0 +if((s|2)===s)r=(r|J.ap($.be.bd().OverlineDecoration))>>>0 +if((s|4)===s)r=(r|J.ap($.be.bd().LineThroughDecoration))>>>0 +a9.decoration=r}if(b!=null)a9.decorationThickness=b +if(d!=null){s=A.y9(d) +a9.decorationColor=s}if(c!=null)a9.decorationStyle=$.aQv()[c.a] +if(a0!=null)a9.textBaseline=$.aG5()[a0.a] +if(a1!=null)a9.fontSize=a1 +if(a2!=null)a9.letterSpacing=a2 +if(a3!=null)a9.wordSpacing=a3 +if(a4!=null)a9.heightMultiplier=a4 +switch(g.ch){case null:case void 0:break +case B.D:a9.halfLeading=!0 +break +case B.me:a9.halfLeading=!1 +break}q=g.fr +if(q===$){p=A.aET(g.y,g.Q) +g.fr!==$&&A.aA() +g.fr=p +q=p}A.aK7(a9,q) +if(a!=null)a9.fontStyle=A.aFA(a,g.r) +if(a6!=null){g=A.y9(A.bq(a6.r)) +a9.foregroundColor=g}if(a7!=null){o=A.b([],t.O) +for(g=a7.length,n=0;n")),o=o.i("a_.E");q.u();){p=q.d +if(p==null)p=o.a(p) +if(r>=p.startIndex&&r<=p.endIndex)return new A.c4(J.ap(p.startIndex),J.ap(p.endIndex))}return B.bg}, +qM(){var s,r,q,p,o=this.a +o===$&&A.a() +o=o.a.getLineMetrics() +s=B.b.hk(o,t.m) +r=A.b([],t.ER) +for(o=s.$ti,q=new A.bd(s,s.gv(0),o.i("bd")),o=o.i("a_.E");q.u();){p=q.d +r.push(new A.z8(p==null?o.a(p):p))}return r}, +CP(a){var s,r=this.a +r===$&&A.a() +s=r.a.getLineMetricsAt(a) +return s==null?null:new A.z8(s)}, +gK5(){var s=this.a +s===$&&A.a() +return J.ap(s.a.getNumberOfLines())}, +l(){var s=this.a +s===$&&A.a() +s.l()}} +A.z8.prototype={ +gVd(){return this.a.ascent}, +gIb(){return this.a.descent}, +ga_k(){return this.a.ascent}, +gXC(){return this.a.isHardBreak}, +gks(){return this.a.baseline}, +gb4(a){var s=this.a +return B.d.aI(s.ascent+s.descent)}, +gw1(a){return this.a.left}, +gfC(a){return this.a.width}, +gBr(a){return J.ap(this.a.lineNumber)}, +$inG:1} +A.a4k.prototype={ +zz(a,b,c,d,e){var s;++this.c +this.d.push(1) +s=e==null?b:e +A.fD(this.a,"addPlaceholder",[a,b,$.aQp()[c.a],$.aG5()[0],s])}, +UU(a,b,c){return this.zz(a,b,c,null,null)}, +uI(a){var s=A.b([],t.s),r=B.b.gae(this.e),q=r.y +if(q!=null)s.push(q) +q=r.Q +if(q!=null)B.b.O(s,q) +$.a3().gy3().gIZ().ap6(a,s) +this.a.addText(a)}, +hj(){var s,r,q="Paragraph",p=this.a +A.aX3(p) +s=p.build() +p.delete() +p=new A.Lq(this.b) +r=new A.iN(q,t.Pj) +r.nT(p,s,q,t.m) +p.a!==$&&A.bw() +p.a=r +return p}, +gZe(){return this.c}, +dB(){var s=this.e +if(s.length<=1)return +s.pop() +this.a.pop()}, +rD(a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5 +t.BQ.a(a6) +s=this.e +r=B.b.gae(s) +q=a6.ay +if(q===0)p=null +else p=q==null?r.ay:q +q=a6.a +if(q==null)q=r.a +o=a6.b +if(o==null)o=r.b +n=a6.c +if(n==null)n=r.c +m=a6.d +if(m==null)m=r.d +l=a6.e +if(l==null)l=r.e +k=a6.f +if(k==null)k=r.f +j=a6.w +if(j==null)j=r.w +i=a6.x +if(i==null)i=r.x +h=a6.y +if(h==null)h=r.y +g=a6.z +if(g==null)g=r.z +f=a6.Q +if(f==null)f=r.Q +e=a6.as +if(e==null)e=r.as +d=a6.at +if(d==null)d=r.at +c=a6.ax +if(c==null)c=r.ax +b=a6.ch +if(b==null)b=r.ch +a=a6.cx +if(a==null)a=r.cx +a0=a6.cy +if(a0==null)a0=r.cy +a1=a6.db +if(a1==null)a1=r.db +a2=a6.dy +if(a2==null)a2=r.dy +a3=A.aCJ(a,q,o,n,m,l,h,f,r.dx,e,r.r,a2,k,a0,p,b,d,r.CW,i,g,a1,j,c) +s.push(a3) +s=a3.cy +q=s==null +if(!q||a3.cx!=null){if(!q)a4=s.ef() +else{a4=new v.G.window.flutterCanvasKit.Paint() +s=a3.a +s=s==null?null:s.gq(s) +if(s==null)s=4278190080 +a4.setColorInt(s)}s=a3.cx +if(s!=null)a5=s.ef() +else{a5=new v.G.window.flutterCanvasKit.Paint() +a5.setColorInt(0)}this.a.pushPaintStyle(a3.gMa(),a4,a5) +a4.delete() +a5.delete()}else this.a.pushStyle(a3.gMa())}} +A.aAr.prototype={ +$1(a){return this.a===a}, +$S:30} +A.Ld.prototype={ +k(a){return"CanvasKitError: "+this.a}} +A.zf.prototype={ +a0K(a,b){this.a.xf(0,b).bo(new A.a4A(a),t.H).on(new A.a4B(a))}, +a_R(a,b){if(b!=null&&b!=="text/plain"){a.toString +a.$1(B.a6.c4([null])) +return}this.a.wT(0).bo(new A.a4w(a),t.P).on(new A.a4x(a))}, +ar_(a){this.a.wT(0).bo(new A.a4y(a),t.P).on(new A.a4z(a))}} +A.a4A.prototype={ +$1(a){var s=this.a +s.toString +return s.$1(B.a6.c4([null]))}, +$S:282} +A.a4B.prototype={ +$1(a){var s=a instanceof A.fQ?a.a:"Clipboard.setData failed.",r=this.a +r.toString +r.$1(B.a6.c4(["copy_fail",s,null]))}, +$S:98} +A.a4w.prototype={ +$1(a){var s=A.ab(["text",a],t.N,t.X),r=this.a +r.toString +r.$1(B.a6.c4([s]))}, +$S:138} +A.a4x.prototype={ +$1(a){var s=a instanceof A.fQ?a.a:"Clipboard.getData failed.",r=this.a +r.toString +r.$1(B.a6.c4(["paste_fail",s,null]))}, +$S:98} +A.a4y.prototype={ +$1(a){var s=A.ab(["value",a.length!==0],t.N,t.X),r=this.a +r.toString +r.$1(B.a6.c4([s]))}, +$S:138} +A.a4z.prototype={ +$1(a){var s=a instanceof A.fQ?a.a:"Clipboard.hasStrings failed.",r=this.a +r.toString +r.$1(B.a6.c4(["has_strings_fail",s,null]))}, +$S:98} +A.zh.prototype={ +gO9(){var s=v.G.window.navigator.clipboard +if(s==null)throw A.e(A.a5("Clipboard is not available in the context.")) +return s}, +xf(a,b){return this.a0J(0,b)}, +a0J(a,b){var s=0,r=A.H(t.H),q=this,p +var $async$xf=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:p=q.gO9() +b.toString +s=2 +return A.v(A.eV(p.writeText(b),t.X),$async$xf) +case 2:return A.F(null,r)}}) +return A.G($async$xf,r)}, +wT(a){var s=0,r=A.H(t.N),q,p=this +var $async$wT=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:q=A.aT1(p.gO9()) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$wT,r)}} +A.a4J.prototype={ +K(){return"ColorFilterType."+this.b}} +A.A8.prototype={ +AQ(a){return a}, +k(a){var s,r=this +switch(r.d.a){case 0:s="ColorFilter.mode("+A.k(r.a)+", "+A.k(r.b)+")" +break +case 1:s="ColorFilter.matrix("+A.k(r.c)+")" +break +case 2:s="ColorFilter.linearToSrgbGamma()" +break +case 3:s="ColorFilter.srgbToLinearGamma()" +break +default:s=null}return s}, +j(a,b){if(b==null)return!1 +if(!(b instanceof A.A8))return!1 +return b.d===this.d&&b.b==this.b&&A.mN(b.c,this.c)}, +gB(a){var s=this,r=s.c +return A.T(s.d,s.a,s.b,A.bI(r==null?B.KI:r),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +$ihR:1} +A.uh.prototype={ +oL(a){var s,r=a.a,q=this.a +if(r.length!==q.length)return!1 +for(s=0;s=200&&s.status<300,q=s.status,p=s.status,o=s.status>307&&s.status<400 +return r||q===0||p===304||o}, +grA(){var s=this +if(!s.gBb())throw A.e(new A.Nk(s.a,s.gaN(0))) +return new A.a9W(s.b)}, +$iaIa:1} +A.a9W.prototype={ +wt(a,b){var s=0,r=A.H(t.H),q=this,p,o,n,m +var $async$wt=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:m=q.a.body.getReader() +p=t.u9 +case 2:s=4 +return A.v(A.aYt(m),$async$wt) +case 4:o=d +if(o.done){s=3 +break}n=o.value +n.toString +b.$1(p.a(n)) +s=2 +break +case 3:return A.F(null,r)}}) +return A.G($async$wt,r)}} +A.Nk.prototype={ +k(a){return'Flutter Web engine failed to fetch "'+this.a+'". HTTP request succeeded, but the server responded with HTTP status '+this.b+"."}, +$ibL:1} +A.AO.prototype={ +k(a){return'Flutter Web engine failed to complete HTTP request to fetch "'+this.a+'": '+A.k(this.b)}, +$ibL:1} +A.a61.prototype={ +$1(a){a.toString +return t.LZ.a(a)}, +$S:600} +A.ari.prototype={ +$1(a){a.toString +return A.dP(a)}, +$S:90} +A.a5Y.prototype={ +$1(a){a.toString +return A.dP(a)}, +$S:90} +A.a5W.prototype={ +$1(a){a.toString +return A.bt(a)}, +$S:150} +A.Mt.prototype={} +A.zS.prototype={} +A.aBn.prototype={ +$2(a,b){this.a.$2(B.b.hk(a,t.m),b)}, +$S:273} +A.aBc.prototype={ +$1(a){var s=A.d3(a) +if(B.QE.p(0,B.b.gae(s.gwl())))return s.k(0) +v.G.window.console.error("URL rejected by TrustedTypes policy flutter-engine: "+a+"(download prevented)") +return null}, +$S:277} +A.t7.prototype={ +u(){var s=++this.b,r=this.a +if(s>r.length)throw A.e(A.a5("Iterator out of bounds")) +return s"))}, +gv(a){return J.ap(this.a.length)}} +A.Mr.prototype={ +gN(a){var s=this.b +s===$&&A.a() +return s}, +u(){var s=this.a.next() +if(s.done)return!1 +this.b=this.$ti.c.a(s.value) +return!0}} +A.aC5.prototype={ +$1(a){$.aEW=!1 +$.aR().jd("flutter/system",$.aPQ(),new A.aC4())}, +$S:120} +A.aC4.prototype={ +$1(a){}, +$S:29} +A.a8q.prototype={ +ap6(a,b){var s,r,q,p,o,n,m=this +if($.i3==null)$.i3=B.cY +s=A.aP(t.S) +for(r=new A.aiT(a),q=m.d,p=m.c;r.u();){o=r.d +if(!(o<160||q.p(0,o)||p.p(0,o)))s.E(0,o)}if(s.a===0)return +n=A.a6(s,s.$ti.c) +if(m.a.a_Z(n,b).length!==0)m.alK(n)}, +alK(a){var s=this +s.z.O(0,a) +if(!s.Q){s.Q=!0 +s.x=A.N6(B.F,new A.a8s(s),t.H)}}, +a9u(){var s,r +this.Q=!1 +s=this.z +if(s.a===0)return +r=A.a6(s,A.n(s).c) +s.a5(0) +this.apy(r)}, +apy(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=A.b([],t.t),d=A.b([],t.XS),c=t.Qg,b=A.b([],c) +for(s=a.length,r=t.Ie,q=0;qo){B.b.a5(r) +r.push(m) +o=m.d +p=m}else if(s===o){r.push(m) +if(m.c1){l=this.w +if(B.b.p(r,l))p=l +else{k=A.Am(r,A.aMa()) +if(k!=null)p=k}}p.toString +return p}, +a8t(a){var s,r,q,p=A.b([],t.XS) +for(s=a.split(","),r=s.length,q=0;q=q[r])s=r+1 +else p=r}}} +A.Vf.prototype={ +avW(){var s=this.d +if(s==null)return A.dc(null,t.H) +else return s.a}, +E(a,b){var s,r,q=this +if(q.b.p(0,b)||q.c.az(0,b.b))return +s=q.c +r=s.a +s.m(0,b.b,b) +if(q.d==null)q.d=new A.bB(new A.au($.aq,t.W),t.Q) +if(r===0)A.co(B.F,q.ga1j())}, +pJ(){var s=0,r=A.H(t.H),q=this,p,o,n,m,l,k,j,i +var $async$pJ=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:j=A.w(t.N,t.uz) +i=A.b([],t.s) +for(p=q.c,o=new A.dl(p,p.r,p.e),n=t.H;o.u();){m=o.d +j.m(0,m.b,A.a8P(new A.arB(q,m,i),n))}s=2 +return A.v(A.lA(new A.bf(j,j.$ti.i("bf<2>")),n),$async$pJ) +case 2:B.b.jr(i) +for(o=i.length,n=q.a,m=n.y,l=0;l1 +o.uh() +if(p>=1)return!0 +o.ajI();++p}}, +uh(){var s,r,q,p=this +for(s=p.a;p.a7v();){r=s.getUint8(++p.b) +q=++p.b +if(r===254)p.z0() +else{p.b=q+12 +p.z0()}}}, +a7v(){var s,r=this.a +if(r.getUint8(this.b)!==33)return!1 +s=r.getUint8(this.b+1) +return s>=250&&s<=255}, +ajI(){var s,r=this +r.uh() +if(r.a7t())r.b+=8 +r.uh() +if(r.a7u()){r.b+=15 +r.z0() +return}r.uh() +r.b+=9 +s=r.RO() +if((s&128)!==0)r.b+=3*B.f.SV(1,(s&7)+1);++r.b +r.z0()}, +a7t(){var s=this.a +if(s.getUint8(this.b)!==33)return!1 +return s.getUint8(this.b+1)===249}, +a7u(){var s=this.a +if(s.getUint8(this.b)!==33)return!1 +return s.getUint8(this.b+1)===1}, +z0(){var s,r,q,p=this +for(s=p.a;;){r=s.getUint8(p.b) +q=++p.b +if(r===0)return +p.b=q+r}}, +RN(){var s=this,r=s.a,q=A.b([r.getUint8(s.b),r.getUint8(s.b+1),r.getUint8(s.b+2)],t.t) +s.b+=3 +return A.fR(q,0,null)}, +RO(){var s=this.a.getUint8(this.b);++this.b +return s}} +A.pS.prototype={ +K(){return"DebugEngineInitializationState."+this.b}} +A.aBH.prototype={ +$2(a,b){var s,r +for(s=$.iZ.length,r=0;r<$.iZ.length;$.iZ.length===s||(0,A.K)($.iZ),++r)$.iZ[r].$0() +return A.dc(new A.oj(),t.HS)}, +$S:626} +A.aBI.prototype={ +$0(){var s=0,r=A.H(t.H),q +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:q=$.a3().hS(0) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$$0,r)}, +$S:9} +A.a84.prototype={ +$1(a){return this.a.$1(a)}, +$S:119} +A.a86.prototype={ +$1(a){return A.aCQ(this.a.$1(a))}, +$0(){return this.$1(null)}, +$S:129} +A.a87.prototype={ +$0(){return A.aCQ(this.a.$0())}, +$S:123} +A.a83.prototype={ +$1(a){return A.aCQ(this.a.$1(a))}, +$0(){return this.$1(null)}, +$S:129} +A.a5c.prototype={ +$2(a,b){this.a.hZ(new A.a5a(a),new A.a5b(b),t.P)}, +$S:389} +A.a5a.prototype={ +$1(a){var s=this.a +s.call(s,a)}, +$S:642} +A.a5b.prototype={ +$2(a,b){var s,r,q,p=v.G.Error +p.toString +t.lT.a(p) +s=A.k(a)+"\n" +r=b.k(0) +if(!B.c.bz(r,"\n"))s+="\nDart stack trace:\n"+r +q=this.a +q.call(q,A.b0T(p,[s]))}, +$S:48} +A.aAT.prototype={ +$1(a){return a.a.altKey}, +$S:39} +A.aAU.prototype={ +$1(a){return a.a.altKey}, +$S:39} +A.aAV.prototype={ +$1(a){return a.a.ctrlKey}, +$S:39} +A.aAW.prototype={ +$1(a){return a.a.ctrlKey}, +$S:39} +A.aAX.prototype={ +$1(a){return a.gxk(0)}, +$S:39} +A.aAY.prototype={ +$1(a){return a.gxk(0)}, +$S:39} +A.aAZ.prototype={ +$1(a){return a.a.metaKey}, +$S:39} +A.aB_.prototype={ +$1(a){return a.a.metaKey}, +$S:39} +A.aAo.prototype={ +$0(){var s=this.a,r=s.a +return r==null?s.a=this.b.$0():r}, +$S(){return this.c.i("0()")}} +A.NV.prototype={ +a5N(){var s=this +s.Nb(0,"keydown",new A.aaZ(s)) +s.Nb(0,"keyup",new A.ab_(s))}, +gEp(){var s,r,q,p=this,o=p.a +if(o===$){s=$.bn().gdz() +r=t.S +q=s===B.c2||s===B.be +s=A.aUC(s) +p.a!==$&&A.aA() +o=p.a=new A.ab2(p.gagd(),q,s,A.w(r,r),A.w(r,t.M))}return o}, +Nb(a,b,c){var s=A.l3(new A.ab0(c)) +this.b.m(0,b,s) +v.G.window.addEventListener(b,s,!0)}, +age(a){var s={} +s.a=null +$.aR().arK(a,new A.ab1(s)) +s=s.a +s.toString +return s}} +A.aaZ.prototype={ +$1(a){var s +this.a.gEp().is(new A.kk(a)) +s=$.Pz +if(s!=null)s.Xo(a)}, +$S:2} +A.ab_.prototype={ +$1(a){var s +this.a.gEp().is(new A.kk(a)) +s=$.Pz +if(s!=null)s.Xo(a)}, +$S:2} +A.ab0.prototype={ +$1(a){var s=$.bU +if((s==null?$.bU=A.eb():s).KE(a))this.a.$1(a)}, +$S:2} +A.ab1.prototype={ +$1(a){this.a.a=a}, +$S:16} +A.kk.prototype={ +gxk(a){var s=this.a.shiftKey +return s==null?!1:s}} +A.ab2.prototype={ +Sk(a,b,c){var s,r={} +r.a=!1 +s=t.H +A.N6(a,null,s).bo(new A.ab8(r,this,c,b),s) +return new A.ab9(r)}, +ajR(a,b,c){var s,r,q,p=this +if(!p.b)return +s=p.Sk(B.hr,new A.aba(c,a,b),new A.abb(p,a)) +r=p.r +q=r.F(0,a) +if(q!=null)q.$0() +r.m(0,a,s)}, +abK(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=a.a,d=e.timeStamp +d.toString +s=A.aEV(d) +d=e.key +d.toString +r=e.code +r.toString +q=A.aUB(r) +p=!(d.length>1&&d.charCodeAt(0)<127&&d.charCodeAt(1)<127) +o=A.aZP(new A.ab4(g,d,a,p,q),t.S) +if(e.type!=="keydown")if(g.b){r=e.code +r.toString +r=r==="CapsLock" +n=r}else n=!1 +else n=!0 +if(g.b){r=e.code +r.toString +r=r==="CapsLock"}else r=!1 +if(r){g.Sk(B.F,new A.ab5(s,q,o),new A.ab6(g,q)) +m=B.bZ}else if(n){r=g.f +if(r.h(0,q)!=null){l=e.repeat +if(l===!0)m=B.IU +else{l=g.d +l.toString +k=r.h(0,q) +k.toString +l.$1(new A.he(s,B.bF,q,k,f,!0)) +r.F(0,q) +m=B.bZ}}else m=B.bZ}else{if(g.f.h(0,q)==null){e.preventDefault() +return}m=B.bF}r=g.f +j=r.h(0,q) +i=f +switch(m.a){case 0:i=o.$0() +break +case 1:break +case 2:i=j +break}l=i==null +if(l)r.F(0,q) +else r.m(0,q,i) +$.aPZ().aj(0,new A.ab7(g,o,a,s)) +if(p)if(!l)g.ajR(q,o.$0(),s) +else{r=g.r.F(0,q) +if(r!=null)r.$0()}if(p)h=d +else h=f +d=j==null?o.$0():j +r=m===B.bF?f:h +if(g.d.$1(new A.he(s,m,q,d,r,!1)))e.preventDefault()}, +is(a){var s=this,r={},q=a.a +if(q.key==null||q.code==null)return +r.a=!1 +s.d=new A.abc(r,s) +try{s.abK(a)}finally{if(!r.a)s.d.$1(B.IT) +s.d=null}}, +z8(a,b,c,d,e){var s,r=this,q=r.f,p=q.az(0,a),o=q.az(0,b),n=p||o,m=d===B.bZ&&!n,l=d===B.bF&&n +if(m){r.a.$1(new A.he(A.aEV(e),B.bZ,a,c,null,!0)) +q.m(0,a,c)}if(l&&p){s=q.h(0,a) +s.toString +r.Te(e,a,s)}if(l&&o){q=q.h(0,b) +q.toString +r.Te(e,b,q)}}, +Te(a,b,c){this.a.$1(new A.he(A.aEV(a),B.bF,b,c,null,!0)) +this.f.F(0,b)}} +A.ab8.prototype={ +$1(a){var s=this +if(!s.a.a&&!s.b.e){s.c.$0() +s.b.a.$1(s.d.$0())}}, +$S:28} +A.ab9.prototype={ +$0(){this.a.a=!0}, +$S:0} +A.aba.prototype={ +$0(){return new A.he(new A.aZ(this.a.a+2e6),B.bF,this.b,this.c,null,!0)}, +$S:133} +A.abb.prototype={ +$0(){this.a.f.F(0,this.b)}, +$S:0} +A.ab4.prototype={ +$0(){var s,r,q,p,o,n,m=this,l=m.b,k=B.ME.h(0,l) +if(k!=null)return k +s=m.c +r=s.a +if(B.vB.az(0,r.key)){l=r.key +l.toString +l=B.vB.h(0,l) +q=l==null?null:l[J.ap(r.location)] +q.toString +return q}if(m.d){p=m.a.c.a_X(r.code,r.key,J.ap(r.keyCode)) +if(p!=null)return p}if(l==="Dead"){l=r.altKey +o=r.ctrlKey +n=s.gxk(0) +r=r.metaKey +l=l?1073741824:0 +s=o?268435456:0 +o=n?536870912:0 +r=r?2147483648:0 +return m.e+(l+s+o+r)+98784247808}return B.c.gB(l)+98784247808}, +$S:67} +A.ab5.prototype={ +$0(){return new A.he(this.a,B.bF,this.b,this.c.$0(),null,!0)}, +$S:133} +A.ab6.prototype={ +$0(){this.a.f.F(0,this.b)}, +$S:0} +A.ab7.prototype={ +$2(a,b){var s,r,q=this +if(J.d(q.b.$0(),a))return +s=q.a +r=s.f +if(r.an7(0,a)&&!b.$1(q.c))r.k0(r,new A.ab3(s,a,q.d))}, +$S:246} +A.ab3.prototype={ +$2(a,b){var s=this.b +if(b!==s)return!1 +this.a.d.$1(new A.he(this.c,B.bF,a,s,null,!0)) +return!0}, +$S:254} +A.abc.prototype={ +$1(a){this.a.a=!0 +return this.b.a.$1(a)}, +$S:121} +A.f2.prototype={ +gBz(){return!this.b.ga7(0)}} +A.zp.prototype={} +A.Qf.prototype={ +eN(a,b){return b.no(this)}, +iR(a,b){return this.eN(0,b,t.z)}} +A.KS.prototype={ +eN(a,b){return b.Lc(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaGE:1} +A.Ly.prototype={ +eN(a,b){return b.Ld(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaGY:1} +A.LC.prototype={ +eN(a,b){return b.Lf(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaH_:1} +A.LA.prototype={ +eN(a,b){return b.Le(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaGZ:1} +A.OS.prototype={ +eN(a,b){return b.Li(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaJc:1} +A.EK.prototype={ +eN(a,b){return b.rX(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaEe:1} +A.C6.prototype={ +eN(a,b){return b.Lh(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaJa:1} +A.ND.prototype={ +eN(a,b){return b.Lg(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +$iaIe:1} +A.lP.prototype={ +eN(a,b){return b.Lj(this)}, +iR(a,b){return this.eN(0,b,t.z)}, +gBz(){return A.f2.prototype.gBz.call(this)&&!this.w}} +A.abi.prototype={} +A.abj.prototype={ +dB(){var s=this.b +s===$&&A.a() +if(s===this.a)return +s=s.a +s.toString +this.b=s}, +wq(a,b){return this.lR(new A.EK(new A.ku(A.JY(a)),A.b([],t.k5),B.a1))}, +auh(a){return this.wq(a,null)}, +auf(a){var s=this.b +s===$&&A.a() +a.a=s +s.c.push(a) +return this.b=a}, +lR(a){return this.auf(a,t.vn)}} +A.abk.prototype={} +A.a8F.prototype={ +auk(a,b,c){A.aNB("preroll_frame",new A.a8L(this,a,b,c)) +A.aNB("apply_frame",new A.a8M(this,a)) +return!0}} +A.a8L.prototype={ +$0(){var s,r,q,p=this,o=p.a.a,n=p.b.a +new A.Pl(new A.vd(A.b([],t.YE)),o).no(n) +s=A.b([],t.HU) +$.a3() +r=new A.lf() +q=new A.aeh(s,r,o) +s=p.c.avu() +q.c=A.a4e(r,new A.x(0,0,0+s.a,0+s.b)) +if(!n.b.ga7(0))q.no(n) +r.oK().l() +o.atQ() +o=p.d +if(o!=null)o.ZA()}, +$S:0} +A.a8M.prototype={ +$0(){var s,r=new A.BP(A.b([],t.k_)),q=this.a.a,p=q.c.e +p.toString +B.b.aj(p,r.galE()) +p=A.b([],t.Ay) +s=this.b.a +if(!s.b.ga7(0))new A.P3(r,q,p,A.w(t.uy,t.gm),null).no(s)}, +$S:0} +A.LL.prototype={} +A.O1.prototype={} +A.Pl.prototype={ +gaok(){var s,r,q,p,o +$label0$1:for(s=this.a.a,r=A.a2(s).i("cc<1>"),s=new A.cc(s,r),s=new A.bd(s,s.gv(0),r.i("bd")),r=r.i("ax.E"),q=B.dj;s.u();){p=s.d +if(p==null)p=r.a(p) +switch(p.a.a){case 0:p=p.b +p.toString +o=p +break +case 1:p=p.c +o=new A.x(p.a,p.b,p.c,p.d) +break +case 2:p=p.d.gfj().a +p===$&&A.a() +p=p.a.getBounds() +o=new A.x(p[0],p[1],p[2],p[3]) +break +default:continue $label0$1}q=q.dM(o)}return q}, +ne(a){var s,r,q,p,o +for(s=a.c,r=s.length,q=B.a1,p=0;p=q.c||q.b>=q.d)q=a.b +else{o=a.b +if(!(o.a>=o.c||o.b>=o.d))q=q.fX(o)}}return q}, +no(a){a.b=this.ne(a)}, +Lc(a){a.b=this.ne(a).fX(this.gaok())}, +Ld(a){var s,r,q=null,p=a.f,o=this.a.a +o.push(new A.ju(B.N8,q,q,p,q,q)) +s=this.ne(a) +p=p.gfj().a +p===$&&A.a() +r=A.aBz(p.a.getBounds()) +if(s.ft(r))a.b=s.dM(r) +o.pop()}, +Le(a){var s,r,q,p,o=null,n=a.f,m=this.a.a +m.push(new A.ju(B.N7,o,n,o,o,o)) +s=this.ne(a) +r=n.a +q=n.b +p=n.c +n=n.d +if(s.ft(new A.x(r,q,p,n)))a.b=s.dM(new A.x(r,q,p,n)) +m.pop()}, +Lf(a){var s,r=null,q=a.f,p=this.a.a +p.push(new A.ju(B.N6,q,r,r,r,r)) +s=this.ne(a) +if(s.ft(q))a.b=s.dM(q) +p.pop()}, +Lg(a){var s,r,q=a.f,p=q.a +q=q.b +s=A.qO() +s.pE(p,q,0) +r=this.a.a +r.push(A.aDC(s)) +a.b=a.r.AQ(this.ne(a).l0(0,p,q)) +r.pop()}, +Lh(a){this.rX(a)}, +Li(a){var s,r,q=null,p=a.r,o=p.a +p=p.b +s=A.qO() +s.pE(o,p,0) +r=this.a.a +r.push(A.aDC(s)) +r.push(new A.ju(B.Na,q,q,q,q,a.f)) +a.b=this.ne(a) +r.pop() +r.pop() +a.b=a.b.l0(0,o,p)}, +Lj(a){var s=a.c.a +s===$&&A.a() +a.b=A.aBz(s.a.cullRect()).dj(a.d) +a.w=!1}, +rX(a){var s=a.f,r=this.a.a +r.push(A.aDC(s)) +a.b=A.JZ(s,this.ne(a)) +r.pop()}} +A.aeh.prototype={ +n8(a){var s,r,q,p +for(s=a.c,r=s.length,q=0;q"),o=new A.cc(o,n),o=new A.bd(o,o.gv(0),n.i("bd")),n=n.i("ax.E");o.u();){m=o.d +p=(m==null?n.a(m):m).AQ(p)}a.r=p +a.w=l.a.quickReject(A.cU(A.aBz(s.a.cullRect()))) +l.a.restore() +this.d.c.b.push(new A.Ci(a))}} +A.P3.prototype={ +nc(a){var s,r,q,p +for(s=a.c,r=s.length,q=0;q0?3:4 +break +case 3:s=5 +return A.v(p.d.x4(0,-o),$async$kW) +case 5:case 4:n=p.gL() +n.toString +t.f.a(n) +m=p.d +m.toString +m.pq(0,J.aK(n,"state"),"flutter",p.gmK()) +case 1:return A.F(q,r)}}) +return A.G($async$kW,r)}, +gnn(){return this.d}} +A.af4.prototype={ +$1(a){}, +$S:29} +A.DG.prototype={ +a5Z(a){var s=this,r=s.d +if(r==null)return +s.a=r.H5(s.gKj(s)) +s.e=s.gmK() +if(!A.aE0(s.gL())){r.pq(0,A.ab(["origin",!0,"state",s.gL()],t.N,t.z),"origin","") +s.ST(r)}}, +M2(a,b,c){var s=this.d +if(s!=null){this.e=a +this.SU(s,!0)}}, +Kk(a,b){var s,r=this,q="flutter/navigation" +if(A.aK3(b)){s=r.d +s.toString +r.ST(s) +$.aR().jd(q,B.bl.jL(B.N4),new A.al9())}else if(A.aE0(b))$.aR().jd(q,B.bl.jL(new A.iy("pushRoute",r.e)),new A.ala()) +else{r.e=r.gmK() +r.d.x4(0,-1)}}, +SU(a,b){var s=b?a.gauY(a):a.gaug(a) +s.$3(this.f,"flutter",this.e)}, +ST(a){return this.SU(a,!1)}, +kW(){var s=0,r=A.H(t.H),q,p=this,o,n +var $async$kW=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p.l() +if(p.b||p.d==null){s=1 +break}p.b=!0 +o=p.d +s=3 +return A.v(o.x4(0,-1),$async$kW) +case 3:n=p.gL() +n.toString +o.pq(0,J.aK(t.f.a(n),"state"),"flutter",p.gmK()) +case 1:return A.F(q,r)}}) +return A.G($async$kW,r)}, +gnn(){return this.d}} +A.al9.prototype={ +$1(a){}, +$S:29} +A.ala.prototype={ +$1(a){}, +$S:29} +A.lL.prototype={} +A.Ai.prototype={} +A.OO.prototype={ +lG(a,b){return new A.qY(b)}, +ft(a){return!1}} +A.qY.prototype={ +gkt(a){return this.a}, +lG(a,b){var s=this,r=s.a +if(A.aFu(r,b))return s +if(A.aFu(b,r))return new A.qY(b) +r=new A.qY(b) +return new A.vk(s,r,s.gkt(0).fX(r.gkt(0)))}, +ft(a){return this.a.ft(a)}} +A.vk.prototype={ +Nv(a,b){return(Math.max(a.c,b.c)-Math.min(a.a,b.a))*(Math.max(a.d,b.d)-Math.min(a.b,b.b))}, +lG(a,b){var s,r,q,p,o,n,m,l=this,k=l.c +if(A.aFu(b,k))return new A.qY(b) +s=l.a +r=l.Nv(s.gkt(s),b) +q=l.b +p=l.Nv(q.gkt(q),b) +o=(k.c-k.a)*(k.d-k.b) +if(r")).n4(m)) +o=o.e +p.push(new A.cT(o,A.n(o).i("cT<1>")).n4(m))}q.push(r) +r.$1(s.a) +s=l.gzm() +r=v.G +q=r.document.body +if(q!=null)q.addEventListener("keydown",s.gQc()) +q=r.document.body +if(q!=null)q.addEventListener("keyup",s.gQd()) +q=s.a.d +s.e=new A.cT(q,A.n(q).i("cT<1>")).n4(s.gae8()) +r=r.document.body +if(r!=null)r.prepend(l.c) +s=l.gd8().e +l.a=new A.cT(s,A.n(s).i("cT<1>")).n4(new A.a7v(l)) +l.a6u()}, +l(){var s,r,q,p=this +p.p3.removeListener(p.p4) +p.p4=null +s=p.ok +if(s!=null)s.disconnect() +p.ok=null +s=p.k2 +if(s!=null)s.b.removeEventListener(s.a,s.c) +p.k2=null +s=$.aC8() +r=s.a +B.b.F(r,p.gU4()) +if(r.length===0)s.b.removeListener(s.gRk()) +s=p.gNr() +r=s.b +B.b.F(r,p.gSL()) +if(r.length===0)s.dJ() +s=p.gzm() +r=v.G +q=r.document.body +if(q!=null)q.removeEventListener("keydown",s.gQc()) +r=r.document.body +if(r!=null)r.removeEventListener("keyup",s.gQd()) +s=s.e +if(s!=null)s.aR(0) +p.c.remove() +s=p.a +s===$&&A.a() +s.aR(0) +s=p.gd8() +r=s.b +q=A.n(r).i("bs<1>") +r=A.a6(new A.bs(r,q),q.i("o.E")) +B.b.aj(r,s.gaoP()) +s.d.aO(0) +s.e.aO(0)}, +gd8(){var s,r,q=null,p=this.w +if(p===$){s=t.S +r=t.mm +p=this.w=new A.MX(this,A.w(s,t.lz),A.w(s,t.m),new A.l0(q,q,r),new A.l0(q,q,r))}return p}, +gNr(){var s,r,q,p=this,o=p.x +if(o===$){s=p.gd8() +r=A.b([],t.Gl) +q=A.b([],t.LY) +p.x!==$&&A.aA() +o=p.x=new A.Tx(s,r,B.cz,q)}return o}, +JB(){var s=this.y +if(s!=null)A.l5(s,this.z)}, +gzm(){var s,r=this,q=r.Q +if(q===$){s=r.gd8() +r.Q!==$&&A.aA() +q=r.Q=new A.Sv(s,r.garL(),B.Bd)}return q}, +arM(a){A.mL(this.as,this.at,a)}, +arK(a,b){var s=this.dx +if(s!=null)A.l5(new A.a7w(b,s,a),this.dy) +else b.$1(!1)}, +jd(a,b,c){var s +if(a==="dev.flutter/channel-buffers")try{s=$.a2j() +b.toString +s.aqi(b)}finally{c.$1(null)}else $.a2j().aud(a,b,c)}, +ajc(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null +switch(a1){case"flutter/skia":s=B.bl.j_(a2) +switch(s.a){case"Skia.setResourceCacheMaxBytes":r=A.eT(s.b) +q=$.a3().a +q===$&&A.a() +q.M1(r) +a.f7(a3,B.a6.c4([A.b([!0],t.HZ)])) +break}return +case"flutter/assets":a2.toString +a.tV(B.a5.bM(0,J.tE(B.ax.gc9(a2))),a3) +return +case"flutter/platform":s=B.bl.j_(a2) +switch(s.a){case"SystemNavigator.pop":q=a.gd8().b +p=t.e8 +if(p.a(q.h(0,0))!=null)p.a(q.h(0,0)).gHt().vp().bo(new A.a7q(a,a3),t.P) +else a.f7(a3,B.a6.c4([!0])) +return +case"HapticFeedback.vibrate":o=a.aap(A.cC(s.b)) +n=v.G.window.navigator +if("vibrate" in n)n.vibrate(o) +a.f7(a3,B.a6.c4([!0])) +return +case u.p:m=t.xE.a(s.b) +q=J.aE(m) +l=A.cC(q.h(m,"label")) +if(l==null)l="" +k=A.hz(q.h(m,"primaryColor")) +if(k==null)k=4278190080 +v.G.document.title=l +A.aNy(A.bq(k)) +a.f7(a3,B.a6.c4([!0])) +return +case"SystemChrome.setSystemUIOverlayStyle":j=A.hz(J.aK(t.xE.a(s.b),"statusBarColor")) +A.aNy(j==null?a0:A.bq(j)) +a.f7(a3,B.a6.c4([!0])) +return +case"SystemChrome.setPreferredOrientations":B.D9.xh(t.j.a(s.b)).bo(new A.a7r(a,a3),t.P) +return +case"SystemSound.play":a.f7(a3,B.a6.c4([!0])) +return +case"Clipboard.setData":new A.zf(new A.zh()).a0K(a3,A.cC(J.aK(t.xE.a(s.b),"text"))) +return +case"Clipboard.getData":new A.zf(new A.zh()).a_R(a3,A.cC(s.b)) +return +case"Clipboard.hasStrings":new A.zf(new A.zh()).ar_(a3) +return}break +case"flutter/service_worker":q=v.G +p=q.window +i=q.document.createEvent("Event") +i.initEvent("flutter-first-frame",!0,!0) +p.dispatchEvent(i) +return +case"flutter/textinput":$.yi().guT(0).aqS(a2,a3) +return +case"flutter/contextmenu":switch(B.bl.j_(a2).a){case"enableContextMenu":t.e8.a(a.gd8().b.h(0,0)).gVT().aoY(0) +a.f7(a3,B.a6.c4([!0])) +return +case"disableContextMenu":t.e8.a(a.gd8().b.h(0,0)).gVT().j2(0) +a.f7(a3,B.a6.c4([!0])) +return}return +case"flutter/mousecursor":s=B.dC.j_(a2) +m=t.f.a(s.b) +switch(s.a){case"activateSystemCursor":q=a.gd8().b +q=A.aIo(new A.bf(q,A.n(q).i("bf<2>"))) +if(q!=null){if(q.w===$){q.gfl() +q.w!==$&&A.aA() +q.w=new A.aeV()}h=B.MG.h(0,A.cC(J.aK(m,"kind"))) +if(h==null)h="default" +q=v.G +if(h==="default")q.document.body.style.removeProperty("cursor") +else A.Z(q.document.body.style,"cursor",h)}break}return +case"flutter/web_test_e2e":a.f7(a3,B.a6.c4([A.b_C(B.bl,a2)])) +return +case"flutter/platform_views":g=B.dC.j_(a2) +m=a0 +f=g.b +m=f +q=$.aOA() +a3.toString +q.aqs(g.a,m,a3) +return +case"flutter/accessibility":e=$.bU +if(e==null)e=$.bU=A.eb() +if(e.b){q=t.f +d=q.a(J.aK(q.a(B.c9.hN(a2)),"data")) +c=A.cC(J.aK(d,"message")) +if(c!=null&&c.length!==0){b=A.aDu(d,"assertiveness") +e.a.V1(c,B.JS[b==null?0:b])}}a.f7(a3,B.c9.c4(!0)) +return +case"flutter/navigation":q=a.gd8().b +p=t.e8 +if(p.a(q.h(0,0))!=null)p.a(q.h(0,0)).J9(a2).bo(new A.a7s(a,a3),t.P) +else if(a3!=null)a3.$1(a0) +a.M="/" +return}q=$.aNq +if(q!=null){q.$3(a1,a2,a3) +return}a.f7(a3,a0)}, +tV(a,b){return this.abN(a,b)}, +abN(a,b){var s=0,r=A.H(t.H),q=1,p=[],o=this,n,m,l,k,j,i,h +var $async$tV=A.B(function(c,d){if(c===1){p.push(d) +s=q}for(;;)switch(s){case 0:q=3 +k=$.JK +h=t.Lk +s=6 +return A.v(A.tB(k.wQ(a)),$async$tV) +case 6:n=h.a(d) +s=7 +return A.v(A.a60(n.grA().a),$async$tV) +case 7:m=d +o.f7(b,J.Kf(m)) +q=1 +s=5 +break +case 3:q=2 +i=p.pop() +l=A.a1(i) +$.el().$1("Error while trying to load an asset: "+A.k(l)) +o.f7(b,null) +s=5 +break +case 2:s=1 +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$tV,r)}, +aap(a){var s +$label0$0:{s=10 +if("HapticFeedbackType.lightImpact"===a)break $label0$0 +if("HapticFeedbackType.mediumImpact"===a){s=20 +break $label0$0}if("HapticFeedbackType.heavyImpact"===a){s=30 +break $label0$0}if("HapticFeedbackType.selectionClick"===a)break $label0$0 +s=50 +break $label0$0}return s}, +M4(a){var s +if(!a)for(s=this.gd8().b,s=new A.dl(s,s.r,s.e);s.u();)s.d.gxd().k5(0)}, +Cg(a,b){return this.auS(a,b)}, +auS(a,b){var s=0,r=A.H(t.H),q=this,p +var $async$Cg=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:p=q.ax +p=p==null?null:p.E(0,b) +s=p===!0?2:3 +break +case 2:s=4 +return A.v($.a3().KL(a,b),$async$Cg) +case 4:case 3:return A.F(null,r)}}) +return A.G($async$Cg,r)}, +a6t(){var s=this +if(s.k2!=null)return +s.d=s.d.VX(A.aD4()) +s.k2=A.c1(v.G.window,"languagechange",A.b3(new A.a7o(s)))}, +a6p(){var s,r,q=v.G,p=new q.MutationObserver(A.aAK(new A.a7n(this))) +this.ok=p +q=q.document.documentElement +q.toString +s=A.b(["style"],t.s) +r=A.w(t.N,t.z) +r.m(0,"attributes",!0) +r.m(0,"attributeFilter",s) +s=A.ad(r) +s.toString +p.observe(q,s)}, +ajf(a){this.jd("flutter/lifecycle",J.Kf(B.O.gc9(B.bD.d_(a.K()))),new A.a7t())}, +Uc(a){var s=this,r=s.d +if(r.d!==a){s.d=r.anI(a) +A.l5(null,null) +A.l5(s.R8,s.RG)}}, +akL(a){var s=this.d,r=s.a +if((r.a&32)!==0!==a){this.d=s.VU(r.anm(a)) +A.l5(null,null)}}, +a6k(){var s,r=this,q=r.p3 +r.Uc(q.matches?B.am:B.ag) +s=A.l3(new A.a7m(r)) +r.p4=s +q.addListener(s)}, +rl(a,b,c,d){var s=new A.a7x(this,c,b,a,d),r=$.ly +if(r==null){r=new A.qe(B.hI) +$.iZ.push(r.gxW()) +$.ly=r}if(r.d)A.co(B.F,s) +else s.$0()}, +gI7(){var s=this.M +if(s==null){s=t.e8.a(this.gd8().b.h(0,0)) +s=s==null?null:s.gHt().gmK() +s=this.M=s==null?"/":s}return s}, +f7(a,b){A.N6(B.F,null,t.H).bo(new A.a7y(a,b),t.P)}, +a6u(){var s=A.b3(new A.a7p(this)) +v.G.document.addEventListener("click",s,!0)}, +a9R(a){var s,r,q=a.target +while(q!=null){s=A.fq(q,"Element") +if(s){r=q.getAttribute("id") +if(r!=null&&B.c.bz(r,"flt-semantic-node-"))if(this.QP(q))if(A.ri(B.c.bZ(r,18),null)!=null)return new A.afx(q)}q=q.parentNode}return null}, +a9Q(a){var s,r=a.tabIndex +if(r!=null&&r>=0)return a +if(this.Tc(a))return a +s=a.querySelector('[tabindex]:not([tabindex="-1"])') +if(s!=null)return s +return this.a9P(a)}, +Tc(a){var s,r,q,p,o=a.getAttribute("id") +if(o==null||!B.c.bz(o,"flt-semantic-node-"))return!1 +s=A.ri(B.c.bZ(o,18),null) +if(s==null)return!1 +r=t.e8.a($.aR().gd8().b.h(0,0)) +q=r==null?null:r.gxd().e +if(q==null)return!1 +p=q.h(0,s) +if(p==null)r=null +else{r=p.b +r.toString +r=(r&4194304)!==0}return r===!0}, +a9P(a){var s,r,q=a.querySelectorAll('[id^="flt-semantic-node-"]') +for(s=new A.t7(q,t.rM);s.u();){r=A.dP(q.item(s.b)) +if(this.Tc(r))return r}return null}, +aeD(a){var s,r,q=A.fq(a,"MouseEvent") +if(!q)return!1 +s=a.clientX +r=a.clientY +if(s<=2&&r<=2&&s>=0&&r>=0)return!0 +if(this.aeC(a,s,r))return!0 +return!1}, +aeC(a,b,c){var s +if(b!==B.d.aI(b)||c!==B.d.aI(c))return!1 +s=a.target +if(s==null)return!1 +return this.QP(s)}, +QP(a){var s=a.getAttribute("role"),r=a.tagName.toLowerCase() +return r==="button"||s==="button"||r==="a"||s==="link"||s==="tab"}} +A.a7v.prototype={ +$1(a){this.a.JB()}, +$S:24} +A.a7w.prototype={ +$0(){return this.a.$1(this.b.$1(this.c))}, +$S:0} +A.a7u.prototype={ +$1(a){this.a.wD(this.b,a)}, +$S:29} +A.a7q.prototype={ +$1(a){this.a.f7(this.b,B.a6.c4([!0]))}, +$S:28} +A.a7r.prototype={ +$1(a){this.a.f7(this.b,B.a6.c4([a]))}, +$S:125} +A.a7s.prototype={ +$1(a){var s=this.b +if(a)this.a.f7(s,B.a6.c4([!0])) +else if(s!=null)s.$1(null)}, +$S:125} +A.a7o.prototype={ +$1(a){var s=this.a +s.d=s.d.VX(A.aD4()) +A.l5(s.k3,s.k4)}, +$S:2} +A.a7n.prototype={ +$2(a,b){var s,r,q,p,o=B.b.gag(a),n=this.a,m=v.G +while(o.u()){s=o.gN(0) +s.toString +A.dP(s) +if(J.d(s.type,"attributes")&&J.d(s.attributeName,"style")){r=m.document.documentElement +r.toString +q=A.b2n(r) +p=(q==null?16:q)/16 +r=n.d +if(r.e!==p){n.d=r.anN(p) +A.l5(null,null) +A.l5(n.p1,n.p2)}}}}, +$S:305} +A.a7t.prototype={ +$1(a){}, +$S:29} +A.a7m.prototype={ +$1(a){var s=a.matches +s.toString +s=s?B.am:B.ag +this.a.Uc(s)}, +$S:53} +A.a7x.prototype={ +$0(){var s=this,r=s.a +A.mL(r.x2,r.xr,new A.oi(s.b,s.d,s.c,s.e))}, +$S:0} +A.a7y.prototype={ +$1(a){var s=this.a +if(s!=null)s.$1(this.b)}, +$S:28} +A.a7p.prototype={ +$1(a){var s,r,q,p,o=this.a +if(!o.aeD(a))return +s=o.a9R(a) +if(s!=null){r=s.a +q=v.G.document.activeElement +if(q!=null)r=q===r||r.contains(q) +else r=!1 +r=!r}else r=!1 +if(r){p=o.a9Q(s.a) +if(p!=null)p.focus($.ej())}}, +$S:2} +A.aBK.prototype={ +$0(){this.a.$2(this.b,this.c)}, +$S:0} +A.anw.prototype={ +k(a){return A.r(this).k(0)+"[view: null]"}} +A.Pe.prototype={ +v1(a,b,c,d,e){var s=this,r=a==null?s.a:a,q=d==null?s.c:d,p=c==null?s.d:c,o=e==null?s.e:e,n=b==null?s.f:b +return new A.Pe(r,!1,q,p,o,n,s.r,s.w)}, +VU(a){var s=null +return this.v1(a,s,s,s,s)}, +VX(a){var s=null +return this.v1(s,a,s,s,s)}, +anN(a){var s=null +return this.v1(s,s,s,s,a)}, +anI(a){var s=null +return this.v1(s,s,a,s,s)}, +anK(a){var s=null +return this.v1(s,s,s,a,s)}} +A.afx.prototype={} +A.a2T.prototype={ +rt(a){var s,r,q +if(a!==this.a){this.a=a +for(s=this.b,r=s.length,q=0;q") +i=A.a6(new A.ae(c,new A.agq(),o),o.i("ax.E")) +c=p.c.d +c.toString +o=A.a2(c).i("ae<1,agb>") +h=A.a6(new A.ae(c,new A.agr(),o),o.i("ax.E")) +s=3 +return A.v(p.b.nf(i,h,b),$async$xn) +case 3:for(c=h.length,g=0;g=0;--o){m=p[o] +if(m instanceof A.dz){if(!n){n=!0 +continue}B.b.hr(p,o) +B.b.rk(q,0,m.b);--r +if(r===0)break}}n=A.dq().gHB()===1 +for(o=p.length-1;o>0;--o){m=p[o] +if(m instanceof A.dz){if(n){B.b.O(m.b,q) +break}n=!0}}B.b.O(l,p) +return new A.uh(l)}, +akH(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this +if(a.oL(d.x))return +s=d.aar(d.x,a) +r=A.a2(s).i("aY<1>") +q=A.a6(new A.aY(s,new A.ago(),r),r.i("o.E")) +p=A.aNk(q) +for(r=p.length,o=0;o") +n=A.a6(new A.bs(o,n),n.i("o.E")) +B.b.aj(n,p.gWA()) +p.c=new A.A5(A.w(t.sT,t.Cc),A.b([],t.y8)) +p.d.a5(0) +o.a5(0) +p.f.a5(0) +B.b.a5(p.w) +B.b.a5(p.r) +o=t.SF +o=A.a6(new A.cd(p.x.a,o),o.i("o.E")) +n=o.length +s=0 +for(;s") +s=new A.cc(s,r) +return new A.bd(s,s.gv(0),r.i("bd"))}} +A.Dc.prototype={} +A.Ci.prototype={} +A.agv.prototype={} +A.A5.prototype={} +A.agu.prototype={ +a8n(a,b,c,d){var s=this.b +if(!s.a.az(0,d)){a.$1(B.dC.oJ("unregistered_view_type","If you are the author of the PlatformView, make sure `registerViewFactory` is invoked.","A HtmlElementView widget is trying to create a platform view with an unregistered type: <"+d+">.")) +return}if(s.b.az(0,c)){a.$1(B.dC.oJ("recreating_view","view id: "+c,"trying to create an already created view")) +return}s.auT(d,c,b) +a.$1(B.dC.vm(null))}, +aqs(a,b,c){var s,r,q +switch(a){case"create":t.f.a(b) +s=J.aE(b) +r=B.d.h6(A.eU(s.h(b,"id"))) +q=A.bt(s.h(b,"viewType")) +this.a8n(c,s.h(b,"params"),r,q) +return +case"dispose":s=this.b.b.F(0,A.eT(b)) +if(s!=null)s.remove() +c.$1(B.dC.vm(null)) +return}c.$1(null)}} +A.aiU.prototype={ +aw_(){if(this.a==null){var s=A.b3(new A.aiV()) +this.a=s +v.G.document.addEventListener("touchstart",s)}}} +A.aiV.prototype={ +$1(a){}, +$S:2} +A.agz.prototype={ +a8h(){if("PointerEvent" in v.G.window){var s=new A.avz(A.w(t.S,t.ZW),this,A.b([],t.H8)) +s.a0T() +return s}throw A.e(A.af("This browser does not support pointer events which are necessary to handle interactions with Flutter Web apps."))}} +A.Lx.prototype={ +ati(a,b){var s,r,q,p=this,o="pointerup",n=$.aR() +if(!n.d.c){s=A.b(b.slice(0),A.a2(b)) +A.mL(n.cy,n.db,new A.nV(s)) +return}if(p.c){n=p.a.a +s=n[0] +r=a.timeStamp +r.toString +s.push(new A.Hj(b,a,A.wF(r))) +if(J.d(a.type,o))if(!J.d(a.target,n[2]))p.ER()}else if(J.d(a.type,"pointerdown")){q=a.target +if(q!=null&&A.fq(q,"Element")&&q.hasAttribute("flt-tappable")){p.c=!0 +n=a.target +n.toString +s=A.co(B.F,p.ga95()) +r=a.timeStamp +r.toString +p.a=new A.Hl([A.b([new A.Hj(b,a,A.wF(r))],t.lN),!1,n,s])}else{s=A.b(b.slice(0),A.a2(b)) +A.mL(n.cy,n.db,new A.nV(s))}}else{if(J.d(a.type,o)){s=a.timeStamp +s.toString +p.b=A.wF(s)}s=A.b(b.slice(0),A.a2(b)) +A.mL(n.cy,n.db,new A.nV(s))}}, +at0(a,b,c,d,e){var s,r=this +if(!r.c){if(e&&r.ajv(b))r.SI(b,c,d) +return}if(e){s=r.a +s.toString +r.a=null +s.a[3].aR(0) +r.SI(b,c,d)}else r.ER()}, +SI(a,b,c){var s,r=this +a.stopPropagation() +$.aR().rl(b,c,B.fx,null) +s=r.a +if(s!=null)s.a[3].aR(0) +r.a=null +r.c=!1 +r.b=null}, +a96(){var s,r,q=this +if(!q.c)return +s=q.a.a +r=s[2] +q.a=new A.Hl([s[0],!0,r,A.co(B.N,q.gagz())])}, +agA(){if(!this.c)return +this.ER()}, +ajv(a){var s,r=this.b +if(r==null)return!0 +s=a.timeStamp +s.toString +return A.wF(s).a-r.a>=5e4}, +ER(){var s,r,q,p,o,n=this,m=n.a.a +m[3].aR(0) +s=t.D9 +r=A.b([],s) +for(m=m[0],q=m.length,p=0;p1}, +aeJ(a){var s,r,q,p,o,n,m=this +if($.bn().gdI()===B.cW)return!1 +if(m.QM(a.deltaX,a.wheelDeltaX)||m.QM(a.deltaY,a.wheelDeltaY))return!1 +if(!(B.d.bh(a.deltaX,120)===0&&B.d.bh(a.deltaY,120)===0)){s=a.wheelDeltaX +if(B.d.bh(s==null?1:s,120)===0){s=a.wheelDeltaY +s=B.d.bh(s==null?1:s,120)===0}else s=!1}else s=!0 +if(s){s=a.deltaX +r=m.c +q=r==null +p=q?null:r.deltaX +o=Math.abs(s-(p==null?0:p)) +s=a.deltaY +p=q?null:r.deltaY +n=Math.abs(s-(p==null?0:p)) +s=!0 +if(!q)if(!(o===0&&n===0))s=!(o<20&&n<20) +if(s){if(a.timeStamp!=null)s=(q?null:r.timeStamp)!=null +else s=!1 +if(s){s=a.timeStamp +s.toString +r=r.timeStamp +r.toString +if(s-r<50&&m.d)return!0}return!1}}return!0}, +a8f(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null +if(b.aeJ(a0)){s=B.bf +r=-2}else{s=B.bG +r=-1}q=a0.deltaX +p=a0.deltaY +switch(J.ap(a0.deltaMode)){case 1:o=$.aLW +if(o==null){o=v.G +n=A.c0(o.document,"div") +m=n.style +A.Z(m,"font-size","initial") +A.Z(m,"display","none") +o.document.body.append(n) +o=A.aD0(o.window,n).getPropertyValue("font-size") +if(B.c.p(o,"px"))l=A.agT(A.mP(o,"px","")) +else l=a +n.remove() +o=$.aLW=l==null?16:l/4}q*=o +p*=o +break +case 2:o=b.a.b +q*=o.grB().a +p*=o.grB().b +break +case 0:if($.bn().gdz()===B.c2){o=$.dy() +m=o.d +k=m==null +q*=k?o.gcu():m +p*=k?o.gcu():m}break +default:break}j=A.b([],t.D9) +o=b.a +m=o.b +i=A.aMR(a0,m,a) +if($.bn().gdz()===B.c2){k=o.e +h=k==null +if(h)g=a +else{g=$.aGf() +g=k.f.az(0,g)}if(g!==!0){if(h)k=a +else{h=$.aGg() +h=k.f.az(0,h) +k=h}f=k===!0}else f=!0}else f=!1 +k=a0.ctrlKey&&!f +o=o.d +m=m.a +h=i.a +if(k){k=a0.timeStamp +k.toString +k=A.wF(k) +g=$.dy() +e=g.d +d=e==null +c=d?g.gcu():e +g=d?g.gcu():e +e=a0.buttons +e.toString +o.anc(j,J.ap(e),B.dh,r,s,h*c,i.b*g,1,1,Math.exp(-p/200),B.P8,k,m)}else{k=a0.timeStamp +k.toString +k=A.wF(k) +g=$.dy() +e=g.d +d=e==null +c=d?g.gcu():e +g=d?g.gcu():e +e=a0.buttons +e.toString +o.ane(j,J.ap(e),B.dh,r,s,new A.aA0(b),h*c,i.b*g,1,1,q,p,B.P7,k,m)}b.c=a0 +b.d=s===B.bf +return j}, +aec(a){var s=this,r=$.bU +if(!(r==null?$.bU=A.eb():r).KE(a))return +s.e=!1 +s.pS(a,s.a8f(a)) +if(!s.e)a.preventDefault()}} +A.aA0.prototype={ +$1$allowPlatformDefault(a){var s=this.a +s.e=B.e0.t6(s.e,a)}, +$0(){return this.$1$allowPlatformDefault(!1)}, +$S:390} +A.kZ.prototype={ +k(a){return A.r(this).k(0)+"(change: "+this.a.k(0)+", buttons: "+this.b+")"}} +A.wG.prototype={ +a0k(a,b){var s +if(this.a!==0)return this.LK(b) +s=(b===0&&a>-1?A.b18(a):b)&1073741823 +this.a=s +return new A.kZ(B.P6,s)}, +LK(a){var s=a&1073741823,r=this.a +if(r===0&&s!==0)return new A.kZ(B.dh,r) +this.a=s +return new A.kZ(s===0?B.dh:B.ie,s)}, +LJ(a){if(this.a!==0&&(a&1073741823)===0){this.a=0 +return new A.kZ(B.zr,0)}return null}, +a0l(a){if((a&1073741823)===0){this.a=0 +return new A.kZ(B.dh,0)}return null}, +a0m(a){var s +if(this.a===0)return null +s=this.a=(a==null?0:a)&1073741823 +if(s===0)return new A.kZ(B.zr,s) +else return new A.kZ(B.ie,s)}} +A.avz.prototype={ +EH(a){return this.f.bY(0,a,new A.avB())}, +S3(a){if(J.d(a.pointerType,"touch"))this.f.F(0,a.pointerId)}, +DO(a,b,c,d){this.alJ(0,a,b,new A.avA(this,d,c))}, +DN(a,b,c){return this.DO(a,b,c,!0)}, +a0T(){var s=this,r=s.a.b,q=r.gfl().a +s.DN(q,"pointerdown",new A.avD(s)) +r=r.c +s.DN(r.gCS(),"pointermove",new A.avE(s)) +s.DO(q,"pointerleave",new A.avF(s),!1) +s.DN(r.gCS(),"pointerup",new A.avG(s)) +s.DO(q,"pointercancel",new A.avH(s),!1) +s.b.push(A.aIL("wheel",new A.avI(s),!1,q))}, +En(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i,h=c.pointerType +h.toString +s=this.RE(h) +h=c.tiltX +h.toString +h=J.aGh(h) +r=c.tiltY +r.toString +h=h>J.aGh(r)?c.tiltX:c.tiltY +h.toString +r=c.timeStamp +r.toString +q=A.wF(r) +p=c.pressure +r=this.a +o=r.b +n=A.aMR(c,o,d) +m=e==null?this.q3(c):e +l=$.dy() +k=l.d +j=k==null +i=j?l.gcu():k +l=j?l.gcu():k +k=p==null?0:p +r.d.and(a,b.b,b.a,m,s,n.a*i,n.b*l,k,1,B.ig,h/180*3.141592653589793,q,o.a)}, +tE(a,b,c){return this.En(a,b,c,null,null)}, +a9D(a){var s,r +if("getCoalescedEvents" in a){s=a.getCoalescedEvents() +s=B.b.hk(s,t.m) +r=new A.eY(s.a,s.$ti.i("eY<1,W>")) +if(!r.ga7(r))return r}return A.b([a],t.O)}, +RE(a){var s +$label0$0:{if("mouse"===a){s=B.bG +break $label0$0}if("pen"===a){s=B.b4 +break $label0$0}if("touch"===a){s=B.at +break $label0$0}s=B.bu +break $label0$0}return s}, +q3(a){var s,r=a.pointerType +r.toString +s=this.RE(r) +$label0$0:{if(B.bG===s){r=-1 +break $label0$0}if(B.b4===s||B.c4===s){r=-4 +break $label0$0}r=B.bf===s?A.a0(A.cO("Unreachable")):null +if(B.at===s||B.bu===s){r=a.pointerId +r.toString +r=J.ap(r) +break $label0$0}}return r}} +A.avB.prototype={ +$0(){return new A.wG()}, +$S:397} +A.avA.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k +if(this.b){s=this.a.a.e +if(s!=null){r=a.getModifierState("Alt") +q=a.getModifierState("Control") +p=a.getModifierState("Meta") +o=a.getModifierState("Shift") +n=a.timeStamp +n.toString +m=$.aQ4() +l=$.aQ5() +k=$.aG0() +s.z8(m,l,k,r?B.bZ:B.bF,n) +m=$.aGf() +l=$.aGg() +k=$.aG1() +s.z8(m,l,k,q?B.bZ:B.bF,n) +r=$.aQ6() +m=$.aQ7() +l=$.aG2() +s.z8(r,m,l,p?B.bZ:B.bF,n) +r=$.aQ8() +q=$.aQ9() +m=$.aG3() +s.z8(r,q,m,o?B.bZ:B.bF,n)}}this.c.$1(a)}, +$S:2} +A.avD.prototype={ +$1(a){var s,r,q=this.a,p=q.q3(a),o=A.b([],t.D9),n=q.EH(p),m=a.buttons +m.toString +s=n.LJ(J.ap(m)) +if(s!=null)q.tE(o,s,a) +m=J.ap(a.button) +r=a.buttons +r.toString +q.tE(o,n.a0k(m,J.ap(r)),a) +q.pS(a,o) +if(J.d(a.target,q.a.b.gfl().a)){a.preventDefault() +A.co(B.F,new A.avC(q))}}, +$S:53} +A.avC.prototype={ +$0(){$.aR().gzm().VA(this.a.a.b.a,B.ms)}, +$S:0} +A.avE.prototype={ +$1(a){var s,r,q,p,o=this.a,n=o.q3(a),m=o.EH(n),l=A.b([],t.D9) +for(s=J.bb(o.a9D(a));s.u();){r=s.gN(s) +q=r.buttons +q.toString +p=m.LJ(J.ap(q)) +if(p!=null)o.En(l,p,r,a.target,n) +q=r.buttons +q.toString +o.En(l,m.LK(J.ap(q)),r,a.target,n)}o.pS(a,l)}, +$S:53} +A.avF.prototype={ +$1(a){var s,r=this.a,q=r.EH(r.q3(a)),p=A.b([],t.D9),o=a.buttons +o.toString +s=q.a0l(J.ap(o)) +if(s!=null){r.tE(p,s,a) +r.pS(a,p)}}, +$S:53} +A.avG.prototype={ +$1(a){var s,r,q,p=this.a,o=p.q3(a),n=p.f +if(n.az(0,o)){s=A.b([],t.D9) +n=n.h(0,o) +n.toString +r=a.buttons +q=n.a0m(r==null?null:J.ap(r)) +p.S3(a) +if(q!=null){p.tE(s,q,a) +p.pS(a,s)}}}, +$S:53} +A.avH.prototype={ +$1(a){var s,r=this.a,q=r.q3(a),p=r.f +if(p.az(0,q)){s=A.b([],t.D9) +p.h(0,q).a=0 +r.S3(a) +r.tE(s,new A.kZ(B.zq,0),a) +r.pS(a,s)}}, +$S:53} +A.avI.prototype={ +$1(a){this.a.aec(a)}, +$S:2} +A.xq.prototype={} +A.asp.prototype={ +Ax(a,b,c){return this.a.bY(0,a,new A.asq(b,c))}} +A.asq.prototype={ +$0(){return new A.xq(this.a,this.b)}, +$S:401} +A.agA.prototype={ +Pm(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var s,r=$.l8().a.h(0,c),q=r.b,p=r.c +r.b=j +r.c=k +s=r.a +if(s==null)s=0 +return A.aJo(a,b,c,d,e,f,!1,h,i,j-q,k-p,j,k,l,s,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,!1,a9,b0,b1)}, +q1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){return this.Pm(a,b,c,d,e,f,g,null,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6)}, +Fx(a,b,c){var s=$.l8().a.h(0,a) +return s.b!==b||s.c!==c}, +mz(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var s,r=$.l8().a.h(0,c),q=r.b,p=r.c +r.b=i +r.c=j +s=r.a +if(s==null)s=0 +return A.aJo(a,b,c,d,e,f,!1,null,h,i-q,j-p,i,j,k,s,l,m,n,o,a0,a1,a2,a3,a4,a5,B.ig,a6,!0,a7,a8,a9)}, +HS(a,b,c,d,e,f,g,h,i,j,k,l,m,a0,a1,a2,a3){var s,r,q,p,o,n=this +if(a0===B.ig)switch(c.a){case 1:$.l8().Ax(d,g,h) +a.push(n.q1(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) +break +case 3:s=$.l8() +r=s.a.az(0,d) +s.Ax(d,g,h) +if(!r)a.push(n.mz(b,B.ly,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +a.push(n.q1(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) +s.b=b +break +case 4:s=$.l8() +r=s.a.az(0,d) +s.Ax(d,g,h).a=$.aLl=$.aLl+1 +if(!r)a.push(n.mz(b,B.ly,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +if(n.Fx(d,g,h))a.push(n.mz(0,B.dh,d,0,0,e,!1,0,g,h,0,0,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +a.push(n.q1(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) +s.b=b +break +case 5:a.push(n.q1(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) +$.l8().b=b +break +case 6:case 0:s=$.l8() +q=s.a +p=q.h(0,d) +p.toString +if(c===B.zq){g=p.b +h=p.c}if(n.Fx(d,g,h))a.push(n.mz(s.b,B.ie,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +a.push(n.q1(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) +if(e===B.at){a.push(n.mz(0,B.P5,d,0,0,e,!1,0,g,h,0,0,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +q.F(0,d)}break +case 2:s=$.l8().a +o=s.h(0,d) +a.push(n.q1(b,c,d,0,0,e,!1,0,o.b,o.c,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) +s.F(0,d) +break +case 7:case 8:case 9:break}else switch(a0.a){case 1:case 2:case 3:s=$.l8() +r=s.a.az(0,d) +s.Ax(d,g,h) +if(!r)a.push(n.mz(b,B.ly,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +if(n.Fx(d,g,h))if(b!==0)a.push(n.mz(b,B.ie,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +else a.push(n.mz(b,B.dh,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) +a.push(n.Pm(b,c,d,0,0,e,!1,f,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) +break +case 0:break +case 4:break}}, +anc(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.HS(a,b,c,d,e,null,f,g,h,i,j,0,0,k,0,l,m)}, +ane(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return this.HS(a,b,c,d,e,f,g,h,i,j,1,k,l,m,0,n,o)}, +and(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.HS(a,b,c,d,e,null,f,g,h,i,1,0,0,j,k,l,m)}} +A.aDO.prototype={} +A.ahb.prototype={ +a5S(a){$.iZ.push(new A.ahc(this))}, +l(){var s,r +for(s=this.a,r=new A.eK(s,s.r,s.e);r.u();)s.h(0,r.d).aR(0) +s.a5(0) +$.Pz=null}, +Xo(a){var s,r,q,p,o,n=this,m=A.fq(a,"KeyboardEvent") +if(!m)return +s=new A.kk(a) +m=a.code +m.toString +if(a.type==="keydown"&&a.key==="Tab"&&a.isComposing)return +r=a.key +r.toString +if(!(r==="Meta"||r==="Shift"||r==="Alt"||r==="Control")&&n.c){r=n.a +q=r.h(0,m) +if(q!=null)q.aR(0) +if(a.type==="keydown")q=a.ctrlKey||s.gxk(0)||a.altKey||a.metaKey +else q=!1 +if(q)r.m(0,m,A.co(B.hr,new A.ahe(n,m,s))) +else r.F(0,m)}p=a.getModifierState("Shift")?1:0 +if(a.getModifierState("Alt")||a.getModifierState("AltGraph"))p|=2 +if(a.getModifierState("Control"))p|=4 +if(a.getModifierState("Meta"))p|=8 +n.b=p +if(a.type==="keydown")if(a.key==="CapsLock")n.b=p|32 +else if(a.code==="NumLock")n.b=p|16 +else if(a.key==="ScrollLock")n.b=p|64 +else if(a.key==="Meta"&&$.bn().gdz()===B.ia)n.b|=8 +else if(a.code==="MetaLeft"&&a.key==="Process")n.b|=8 +o=A.ab(["type",a.type,"keymap","web","code",a.code,"key",a.key,"location",J.ap(a.location),"metaState",n.b,"keyCode",J.ap(a.keyCode)],t.N,t.z) +$.aR().jd("flutter/keyevent",B.a6.c4(o),new A.ahf(s))}} +A.ahc.prototype={ +$0(){this.a.l()}, +$S:0} +A.ahe.prototype={ +$0(){var s,r,q=this.a +q.a.F(0,this.b) +s=this.c.a +r=A.ab(["type","keyup","keymap","web","code",s.code,"key",s.key,"location",J.ap(s.location),"metaState",q.b,"keyCode",J.ap(s.keyCode)],t.N,t.z) +$.aR().jd("flutter/keyevent",B.a6.c4(r),A.b_k())}, +$S:0} +A.ahf.prototype={ +$1(a){var s +if(a==null)return +if(A.ty(J.aK(t.a.a(B.a6.hN(a)),"handled"))){s=this.a.a +s.preventDefault() +s.stopPropagation()}}, +$S:29} +A.CY.prototype={ +hS(a){var s,r,q,p,o,n=this,m=$.aR(),l=m.gd8() +for(s=l.b,s=new A.dl(s,s.r,s.e),r=n.d;s.u();){q=s.d.a +p=m.gd8().b.h(0,q) +q=p.a +o=n.a +o===$&&A.a() +r.m(0,q,o.I3(p))}m=l.d +n.b=new A.cT(m,A.n(m).i("cT<1>")).n4(n.gagF()) +m=l.e +n.c=new A.cT(m,A.n(m).i("cT<1>")).n4(n.gagH())}, +agG(a){var s=$.aR().gd8().b.h(0,a),r=s.a,q=this.a +q===$&&A.a() +this.d.m(0,r,q.I3(s))}, +agI(a){var s,r=this.d +if(!r.az(0,a))return +s=r.F(0,a) +s.ga_s().l() +s.gAp().l()}, +KL(a,b){return this.auU(a,b)}, +auU(a,b){var s=0,r=A.H(t.H),q,p=this,o,n,m,l +var $async$KL=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:n=p.d.h(0,b.a) +m=n.b +l=$.aR().fr!=null?new A.a8K($.aI4,$.aI5,$.aI3):null +if(m.a!=null){o=m.b +if(o!=null)o.a.f1(0) +o=new A.au($.aq,t.W) +m.b=new A.Hi(new A.bB(o,t.Q),l,a) +q=o +s=1 +break}o=new A.au($.aq,t.W) +m.a=new A.Hi(new A.bB(o,t.Q),l,a) +p.u5(n) +q=o +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$KL,r)}, +u5(a){return this.aeL(a)}, +aeL(a){var s=0,r=A.H(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g +var $async$u5=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:i=a.b +h=i.a +h.toString +m=h +p=4 +s=7 +return A.v(n.yN(m.c,a,m.b),$async$u5) +case 7:m.a.f1(0) +p=2 +s=6 +break +case 4:p=3 +g=o.pop() +l=A.a1(g) +k=A.aH(g) +m.a.ou(l,k) +s=6 +break +case 3:s=2 +break +case 6:h=i.b +i.a=h +i.b=null +if(h==null){s=1 +break}else{q=n.u5(a) +s=1 +break}case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$u5,r)}, +yN(a,b,c){return this.ai7(a,b,c)}, +ai7(a,b,c){var s=0,r=A.H(t.H),q,p,o,n,m,l +var $async$yN=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:s=2 +return A.v(b.At(a.a,c),$async$yN) +case 2:if(c!=null){q=c.b +p=c.c +o=c.d +o.toString +n=c.e +n.toString +m=c.f +m.toString +m=A.b([q,p,o,n,m,m,0,0,0,0,c.a],t.t) +$.aDg.push(new A.no(m)) +l=A.uF() +if(l-$.aO0()>1e5){$.aU7=l +q=$.aR() +p=$.aDg +A.mL(q.fr,q.fx,p) +$.aDg=A.b([],t.no)}}return A.F(null,r)}}) +return A.G($async$yN,r)}} +A.yD.prototype={ +K(){return"Assertiveness."+this.b}} +A.a2q.prototype={ +am4(a){var s +switch(a.a){case 0:s=this.a +break +case 1:s=this.b +break +default:s=null}return s}, +V1(a,b){var s=this,r=s.am4(b),q=A.c0(v.G.document,"div"),p=s.c?a+"\xa0":a +q.textContent=p +s.c=!s.c +r.append(q) +A.co(B.cG,new A.a2r(q))}} +A.a2r.prototype={ +$0(){return this.a.remove()}, +$S:0} +A.ajJ.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.akh.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.Fm.prototype={ +K(){return"_CheckableKind."+this.b}} +A.ak7.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.ajM.prototype={ +d6(a){var s,r,q,p=this,o="true" +p.hC(0) +s=p.c +if((s.R8&1)!==0){switch(p.w.a){case 0:r=p.a +r===$&&A.a() +q=A.ad("checkbox") +q.toString +r.setAttribute("role",q) +break +case 1:r=p.a +r===$&&A.a() +q=A.ad("radio") +q.toString +r.setAttribute("role",q) +break +case 2:r=p.a +r===$&&A.a() +q=A.ad("switch") +q.toString +r.setAttribute("role",q) +break}r=s.Aw() +q=p.a +if(r===B.f0){q===$&&A.a() +r=A.ad(o) +r.toString +q.setAttribute("aria-disabled",r) +r=A.ad(o) +r.toString +q.setAttribute("disabled",r)}else{q===$&&A.a() +q.removeAttribute("aria-disabled") +q.removeAttribute("disabled")}s=s.a +s=s.a===B.cZ||s.d===B.au?o:"false" +r=p.a +r===$&&A.a() +s=A.ad(s) +s.toString +r.setAttribute("aria-checked",s)}}, +l(){this.tq() +var s=this.a +s===$&&A.a() +s.removeAttribute("aria-disabled") +s.removeAttribute("disabled")}, +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.QI.prototype={ +d6(a){var s,r,q=this.a +if((q.R8&1)!==0){s=q.a.b +if(s!==B.J){q=q.p1 +q===$&&A.a() +r=s===B.au +q=B.QN.p(0,q) +s=this.b.a +if(q){s===$&&A.a() +q=A.ad(r) +q.toString +s.setAttribute("aria-selected",q) +s.removeAttribute("aria-current")}else{s===$&&A.a() +s.removeAttribute("aria-selected") +q=A.ad(r) +q.toString +s.setAttribute("aria-current",q)}}else{q=this.b.a +q===$&&A.a() +q.removeAttribute("aria-selected") +q.removeAttribute("aria-current")}}}} +A.z1.prototype={ +d6(a){var s,r=this,q=r.a +if((q.R8&1)!==0)if(q.gJE()){q=q.a.a +if(q===B.cZ){q=r.b.a +q===$&&A.a() +s=A.ad("true") +s.toString +q.setAttribute("aria-checked",s)}else{s=r.b.a +if(q===B.dH){s===$&&A.a() +q=A.ad("mixed") +q.toString +s.setAttribute("aria-checked",q)}else{s===$&&A.a() +q=A.ad("false") +q.toString +s.setAttribute("aria-checked",q)}}}else{q=r.b.a +q===$&&A.a() +q.removeAttribute("aria-checked")}}} +A.tZ.prototype={ +d6(a){var s,r=this.a +if((r.R8&1)!==0){r=r.Aw() +s=this.b.a +if(r===B.f0){s===$&&A.a() +r=A.ad("true") +r.toString +s.setAttribute("aria-disabled",r)}else{s===$&&A.a() +s.removeAttribute("aria-disabled")}}}} +A.ML.prototype={ +d6(a){var s,r=this.a +if((r.R8&1)!==0){r=r.a.e +s=this.b.a +if(r!==B.J){s===$&&A.a() +r=A.ad(r===B.au) +r.toString +s.setAttribute("aria-expanded",r)}else{s===$&&A.a() +s.removeAttribute("aria-expanded")}}}} +A.q8.prototype={ +aQ(){this.d.c=B.jn +var s=this.b.a +s===$&&A.a() +s.focus($.ej()) +return!0}, +d6(a){var s,r,q=this,p=q.a +if(p.a.r!==B.J){s=q.d +if(s.b==null){r=q.b.a +r===$&&A.a() +s.YJ(p.k4,r)}p=p.a +if(p.r===B.au){p=p.c +p=p===B.J||p===B.au}else p=!1 +s.Vz(p)}else q.d.Dm()}} +A.tF.prototype={ +K(){return"AccessibilityFocusManagerEvent."+this.b}} +A.pm.prototype={ +YJ(a,b){var s,r,q=this,p=q.b,o=p==null +if(b===(o?null:p.a[2])){o=p.a +if(a===o[3])return +s=o[2] +r=o[1] +q.b=new A.Hk([o[0],r,s,a]) +return}if(!o)q.Dm() +o=A.b3(new A.a2t(q)) +o=[A.b3(new A.a2u(q)),o,b,a] +q.b=new A.Hk(o) +q.c=B.dy +b.tabIndex=0 +b.addEventListener("focus",o[1]) +b.addEventListener("blur",o[0])}, +Dm(){var s,r=this.b +this.d=this.b=null +if(r==null)return +s=r.a +s[2].removeEventListener("focus",s[1]) +s[2].removeEventListener("blur",s[0])}, +a8H(){var s=this,r=s.b +if(r==null)return +if(s.c!==B.jn)$.aR().rl(s.a.a,r.a[3],B.iy,null) +s.c=B.BC}, +Vz(a){var s,r=this,q=r.b +if(q==null){r.d=null +return}if(a===r.d)return +r.d=a +if(a){s=r.a +s.y=!0}else return +s.x.push(new A.a2s(r,q))}} +A.a2t.prototype={ +$1(a){this.a.a8H()}, +$S:2} +A.a2u.prototype={ +$1(a){this.a.c=B.BD}, +$S:2} +A.a2s.prototype={ +$0(){var s=this.a,r=this.b +if(!J.d(s.b,r))return +s.c=B.jn +r.a[2].focus($.ej())}, +$S:0} +A.ajQ.prototype={ +bJ(a){return A.c0(v.G.document,"form")}, +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.ajR.prototype={ +bJ(a){return A.c0(v.G.document,"header")}, +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.ajS.prototype={ +bJ(a){var s=this.c.gaoW(),r=A.c0(v.G.document,"h"+s) +s=r.style +A.Z(s,"margin","0") +A.Z(s,"padding","0") +A.Z(s,"font-size","10px") +return r}, +aQ(){if(this.c.a.r!==B.J){var s=this.e +if(s!=null){s.aQ() +return!0}}this.f.EW().aQ() +return!0}} +A.ajT.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}, +d6(a){var s,r,q,p=this +p.hC(0) +s=p.c +if(s.gJL()){r=s.dy +r=r!=null&&!B.bR.ga7(r)}else r=!1 +if(r){if(p.w==null){p.w=A.c0(v.G.document,"flt-semantics-img") +r=s.dy +if(r!=null&&!B.bR.ga7(r)){r=p.w.style +A.Z(r,"position","absolute") +A.Z(r,"top","0") +A.Z(r,"left","0") +q=s.y +A.Z(r,"width",A.k(q.c-q.a)+"px") +s=s.y +A.Z(r,"height",A.k(s.d-s.b)+"px")}A.Z(p.w.style,"font-size","6px") +s=p.w +s.toString +r=p.a +r===$&&A.a() +r.append(s)}s=p.w +s.toString +r=A.ad("img") +r.toString +s.setAttribute("role",r) +p.SN(p.w)}else if(s.gJL()){s=p.a +s===$&&A.a() +r=A.ad("img") +r.toString +s.setAttribute("role",r) +p.SN(s) +p.Ea()}else{p.Ea() +s=p.a +s===$&&A.a() +s.removeAttribute("aria-label")}}, +SN(a){var s=this.c.z +if(s!=null&&s.length!==0){a.toString +s=A.ad(s) +s.toString +a.setAttribute("aria-label",s)}}, +Ea(){var s=this.w +if(s!=null){s.remove() +this.w=null}}, +l(){this.tq() +this.Ea() +var s=this.a +s===$&&A.a() +s.removeAttribute("aria-label")}} +A.ajU.prototype={ +a5X(a){var s,r,q=this,p=q.c +q.cT(new A.nI(p,q)) +q.cT(new A.rv(p,q)) +q.H2(B.a3) +p=q.w +s=q.a +s===$&&A.a() +s.append(p) +p.type="range" +s=A.ad("slider") +s.toString +p.setAttribute("role",s) +p.addEventListener("change",A.b3(new A.ajV(q,a))) +s=new A.ajW(q) +q.z!==$&&A.bw() +q.z=s +r=$.bU;(r==null?$.bU=A.eb():r).w.push(s) +q.x.YJ(a.k4,p)}, +aQ(){this.w.focus($.ej()) +return!0}, +L8(){A.aDY(this.w,this.c.k3)}, +d6(a){var s,r=this +r.hC(0) +s=$.bU +switch((s==null?$.bU=A.eb():s).f.a){case 1:r.a9p() +r.akO() +break +case 0:r.OK() +break}r.x.Vz(r.c.a.r===B.au)}, +a9p(){var s=this.w,r=s.disabled +r.toString +if(!r)return +s.disabled=!1}, +akO(){var s,r,q,p,o,n,m,l=this +if(!l.Q){s=l.c.R8 +r=(s&4096)!==0||(s&8192)!==0||(s&16384)!==0}else r=!0 +if(!r)return +l.Q=!1 +q=""+l.y +s=l.w +s.value=q +p=A.ad(q) +p.toString +s.setAttribute("aria-valuenow",p) +p=l.c +o=p.ax +o.toString +o=A.ad(o) +o.toString +s.setAttribute("aria-valuetext",o) +n=p.ch.length!==0?""+(l.y+1):q +s.max=n +o=A.ad(n) +o.toString +s.setAttribute("aria-valuemax",o) +m=p.cx.length!==0?""+(l.y-1):q +s.min=m +p=A.ad(m) +p.toString +s.setAttribute("aria-valuemin",p)}, +OK(){var s=this.w,r=s.disabled +r.toString +if(r)return +s.disabled=!0}, +l(){var s,r,q=this +q.tq() +q.x.Dm() +s=$.bU +if(s==null)s=$.bU=A.eb() +r=q.z +r===$&&A.a() +B.b.F(s.w,r) +q.OK() +q.w.remove()}} +A.ajV.prototype={ +$1(a){var s,r=this.a,q=r.w,p=q.disabled +p.toString +if(p)return +r.Q=!0 +s=A.h_(q.value,null) +q=r.y +if(s>q){r.y=q+1 +$.aR().rl(r.c.ok.a,this.b.k4,B.zL,null)}else if(s1)for(q=0;q=0;--q,a=a1){i=n[q] +a1=i.k4 +if(!B.b.p(b,a1)){r=a0.ry +l=i.ry +if(a==null){r=r.a +r===$&&A.a() +l=l.a +l===$&&A.a() +r.append(l)}else{r=r.a +r===$&&A.a() +l=l.a +l===$&&A.a() +r.insertBefore(l,a)}i.RG=a0 +m.r.m(0,a1,a0)}a1=i.ry.a +a1===$&&A.a()}a0.rx=n}, +aam(){var s,r,q=this +if(q.go!==-1)return B.kG +s=q.p1 +s===$&&A.a() +switch(s.a){case 1:return B.ke +case 3:return B.kg +case 2:return B.kf +case 4:return B.kh +case 5:return B.ki +case 6:return B.kj +case 7:return B.kk +case 8:return B.kl +case 9:return B.km +case 25:return B.kD +case 14:return B.ks +case 13:return B.kt +case 15:return B.ku +case 16:return B.kv +case 17:return B.kw +case 27:return B.ko +case 26:return B.kn +case 18:return B.kp +case 19:return B.kq +case 28:return B.kx +case 29:return B.ky +case 30:return B.kz +case 31:return B.kA +case 32:return B.kB +case 20:return B.kC +case 10:case 11:case 12:case 21:case 22:case 23:case 24:case 0:break}if(q.id===0){s=!1 +if(q.a.z){r=q.z +if(r!=null&&r.length!==0){s=q.dy +s=!(s!=null&&!B.bR.ga7(s))}}}else s=!0 +if(s)return B.om +else{s=q.a +if(s.x)return B.ol +else{r=q.b +r.toString +if((r&64)!==0||(r&128)!==0)return B.ok +else if(q.gJL())return B.on +else if(q.gJE())return B.kE +else if(s.db)return B.kc +else if(s.w)return B.hu +else if(s.CW)return B.kb +else if(s.as)return B.kF +else if(s.z)return B.kd +else{if((r&1)!==0){s=q.dy +s=!(s!=null&&!B.bR.ga7(s))}else s=!1 +if(s)return B.hu +else return B.kr}}}}, +a8o(a){var s,r,q,p=this +switch(a.a){case 3:s=new A.akm(B.ol,p) +r=A.rI(s.bJ(0),p) +s.a!==$&&A.bw() +s.a=r +s.aes() +break +case 1:s=new A.akd(A.c0(v.G.document,"flt-semantics-scroll-overflow"),B.kb,p) +s.cO(B.kb,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("group") +q.toString +r.setAttribute("role",q) +break +case 0:s=A.aWQ(p) +break +case 2:s=new A.ajK(B.hu,p) +s.cO(B.hu,p,B.hU) +s.cT(A.wd(p,s)) +r=s.a +r===$&&A.a() +q=A.ad("button") +q.toString +r.setAttribute("role",q) +break +case 4:s=new A.ak7(B.kD,p) +s.cO(B.kD,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("radiogroup") +q.toString +r.setAttribute("role",q) +break +case 5:s=new A.ajM(A.b_0(p),B.kE,p) +s.cO(B.kE,p,B.a3) +s.cT(A.wd(p,s)) +break +case 8:s=A.aWR(p) +break +case 7:s=new A.ajT(B.on,p) +r=A.rI(s.bJ(0),p) +s.a!==$&&A.bw() +s.a=r +r=new A.q8(new A.pm(p.ok,B.dy),p,s) +s.e=r +s.cT(r) +s.cT(new A.nI(p,s)) +s.cT(new A.rv(p,s)) +s.cT(A.wd(p,s)) +s.H6() +break +case 9:s=new A.ak6(B.kG,p) +s.cO(B.kG,p,B.a3) +break +case 10:s=new A.ajX(B.kc,p) +s.cO(B.kc,p,B.hU) +s.cT(A.wd(p,s)) +break +case 23:s=new A.ajY(B.kp,p) +s.cO(B.kp,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("list") +q.toString +r.setAttribute("role",q) +break +case 24:s=new A.ajZ(B.kq,p) +s.cO(B.kq,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("listitem") +q.toString +r.setAttribute("role",q) +break +case 6:s=new A.ajS(B.om,p) +r=A.rI(s.bJ(0),p) +s.a!==$&&A.bw() +s.a=r +r=new A.q8(new A.pm(p.ok,B.dy),p,s) +s.e=r +s.cT(r) +s.cT(new A.nI(p,s)) +s.cT(new A.rv(p,s)) +s.H2(B.hU) +s.H6() +break +case 11:s=new A.ajR(B.kd,p) +s.cO(B.kd,p,B.f8) +break +case 12:s=new A.aki(B.ke,p) +s.cO(B.ke,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("tab") +q.toString +r.setAttribute("role",q) +s.cT(A.wd(p,s)) +break +case 13:s=new A.akj(B.kf,p) +s.cO(B.kf,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("tablist") +q.toString +r.setAttribute("role",q) +break +case 14:s=new A.akk(B.kg,p) +s.cO(B.kg,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("tabpanel") +q.toString +r.setAttribute("role",q) +break +case 15:s=A.aWP(p) +break +case 16:s=A.aWO(p) +break +case 17:s=new A.akl(B.kj,p) +s.cO(B.kj,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("table") +q.toString +r.setAttribute("role",q) +break +case 18:s=new A.ajL(B.kk,p) +s.cO(B.kk,p,B.f8) +r=s.a +r===$&&A.a() +q=A.ad("cell") +q.toString +r.setAttribute("role",q) +break +case 19:s=new A.akc(B.kl,p) +s.cO(B.kl,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("row") +q.toString +r.setAttribute("role",q) +break +case 20:s=new A.ajN(B.km,p) +s.cO(B.km,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("columnheader") +q.toString +r.setAttribute("role",q) +break +case 26:s=new A.QO(B.ks,p) +s.cO(B.ks,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("menu") +q.toString +r.setAttribute("role",q) +break +case 27:s=new A.QP(B.kt,p) +s.cO(B.kt,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("menubar") +q.toString +r.setAttribute("role",q) +break +case 28:s=new A.ak1(B.ku,p) +s.cO(B.ku,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("menuitem") +q.toString +r.setAttribute("role",q) +s.cT(new A.tZ(p,s)) +s.cT(A.wd(p,s)) +break +case 29:s=new A.ak2(B.kv,p) +s.cO(B.kv,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("menuitemcheckbox") +q.toString +r.setAttribute("role",q) +s.cT(new A.z1(p,s)) +s.cT(new A.tZ(p,s)) +break +case 30:s=new A.ak3(B.kw,p) +s.cO(B.kw,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("menuitemradio") +q.toString +r.setAttribute("role",q) +s.cT(new A.z1(p,s)) +s.cT(new A.tZ(p,s)) +break +case 22:s=new A.ajJ(B.ko,p) +s.cO(B.ko,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("alert") +q.toString +r.setAttribute("role",q) +break +case 21:s=new A.akh(B.kn,p) +s.cO(B.kn,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("status") +q.toString +r.setAttribute("role",q) +break +case 25:s=new A.a8V(B.kr,p) +s.cO(B.kr,p,B.f8) +r=p.b +r.toString +if((r&1)!==0)s.cT(A.wd(p,s)) +break +case 31:s=new A.ajO(B.kx,p) +s.cO(B.kx,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("complementary") +q.toString +r.setAttribute("role",q) +break +case 32:s=new A.ajP(B.ky,p) +s.cO(B.ky,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("contentinfo") +q.toString +r.setAttribute("role",q) +break +case 33:s=new A.ak_(B.kz,p) +s.cO(B.kz,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("main") +q.toString +r.setAttribute("role",q) +break +case 34:s=new A.ak5(B.kA,p) +s.cO(B.kA,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("navigation") +q.toString +r.setAttribute("role",q) +break +case 35:s=new A.ak8(B.kB,p) +s.cO(B.kB,p,B.a3) +r=s.a +r===$&&A.a() +q=A.ad("region") +q.toString +r.setAttribute("role",q) +break +case 36:s=new A.ajQ(B.kC,p) +s.cO(B.kC,p,B.a3) +break +default:s=null}return s}, +akU(){var s,r,q,p,o,n,m,l=this,k=l.ry,j=l.aam(),i=l.ry +if(i==null)s=null +else{i=i.a +i===$&&A.a() +s=i}if(k!=null)if(k.b===j){k.d6(0) +return}else{k.l() +k=l.ry=null}if(k==null){k=l.ry=l.a8o(j) +k.aw() +k.d6(0)}i=l.ry.a +i===$&&A.a() +if(!J.d(s,i)){i=l.rx +if(i!=null)for(r=i.length,q=0;q>>0}o=m.k1 +l=n.ax +if(o!==l){k=o==null?null:o.length!==0 +if(k===!0)m.ok.f.F(0,o) +m.k1=l +if(l.length!==0===!0)m.ok.f.m(0,l,m.k4) +m.R8=(m.R8|33554432)>>>0}o=n.cy +if(m.ax!==o){m.ax=o +m.R8=(m.R8|4096)>>>0}o=n.db +if(m.ay!==o){m.ay=o +m.R8=(m.R8|4096)>>>0}o=n.ay +if(m.z!==o){m.z=o +m.R8=(m.R8|1024)>>>0}o=n.ch +if(m.Q!==o){m.Q=o +m.R8=(m.R8|1024)>>>0}o=n.at +if(!J.d(m.y,o)){m.y=o +m.R8=(m.R8|512)>>>0}o=n.id +if(m.dx!==o){m.dx=o +m.R8=(m.R8|65536)>>>0}o=n.z +if(m.r!==o){m.r=o +m.R8=(m.R8|64)>>>0}o=n.c +if(m.b!==o){m.b=o +m.R8=(m.R8|2)>>>0}o=n.f +if(m.c!==o){m.c=o +m.R8=(m.R8|4)>>>0}o=n.r +if(m.d!==o){m.d=o +m.R8=(m.R8|8)>>>0}o=n.x +if(m.e!==o){m.e=o +m.R8=(m.R8|16)>>>0}o=n.y +if(m.f!==o){m.f=o +m.R8=(m.R8|32)>>>0}o=n.Q +if(m.w!==o){m.w=o +m.R8=(m.R8|128)>>>0}o=n.as +if(m.x!==o){m.x=o +m.R8=(m.R8|256)>>>0}o=n.CW +if(m.as!==o){m.as=o +m.R8=(m.R8|2048)>>>0}o=n.cx +if(m.at!==o){m.at=o +m.R8=(m.R8|2048)>>>0}o=n.dx +if(m.ch!==o){m.ch=o +m.R8=(m.R8|8192)>>>0}o=n.dy +if(m.CW!==o){m.CW=o +m.R8=(m.R8|8192)>>>0}o=n.fr +if(m.cx!==o){m.cx=o +m.R8=(m.R8|16384)>>>0}o=n.fx +if(m.cy!==o){m.cy=o +m.R8=(m.R8|16384)>>>0}o=n.fy +if(m.fy!==o){m.fy=o +m.R8=(m.R8|4194304)>>>0}o=n.k4 +if(m.id!==o){m.id=o +m.R8=(m.R8|16777216)>>>0}o=n.go +if(m.db!=o){m.db=o +m.R8=(m.R8|32768)>>>0}o=n.k2 +if(m.fr!==o){m.fr=o +m.R8=(m.R8|1048576)>>>0}o=n.k1 +if(m.dy!==o){m.dy=o +m.R8=(m.R8|524288)>>>0}o=n.k3 +if(m.fx!==o){m.fx=o +m.R8=(m.R8|2097152)>>>0}o=n.w +if(m.go!==o){m.go=o +m.R8=(m.R8|8388608)>>>0}o=n.ok +if(m.k2!==o){m.k2=o +m.R8=(m.R8|67108864)>>>0}o=n.p3 +if(m.k3!==o){m.k3=o +m.R8=(m.R8|134217728)>>>0}m.p1=n.p1 +m.p2=n.p4 +o=n.p2 +if(!A.b2T(m.p3,o,r)){m.p3=o +m.R8=(m.R8|134217728)>>>0}o=n.R8 +if(!J.d(m.p4,o)){m.p4=o +m.R8=(m.R8|268435456)>>>0}m.akU() +o=m.ry.gqv() +l=m.ry +if(o){o=l.a +o===$&&A.a() +o=o.style +o.setProperty("pointer-events","all","")}else{o=l.a +o===$&&A.a() +o=o.style +o.setProperty("pointer-events","none","")}}j=A.aP(t.UF) +for(p=0;p"),n=A.a6(new A.bs(p,o),o.i("o.E")),m=n.length +for(s=0;s=20)return i.d=!0 +if(!B.QM.p(0,a.type))return!0 +if(i.a!=null)return!1 +r=A.kU("activationPoint") +switch(a.type){case"click":r.sdL(new A.zS(a.offsetX,a.offsetY)) +break +case"touchstart":case"touchend":s=new A.wU(a.changedTouches,t.s5).ga3(0) +r.sdL(new A.zS(s.clientX,s.clientY)) +break +case"pointerdown":case"pointerup":r.sdL(new A.zS(a.clientX,a.clientY)) +break +default:return!0}q=i.b.getBoundingClientRect() +s=q.left +p=q.right +o=q.left +n=q.top +m=q.bottom +l=q.top +k=r.aS().a-(s+(p-o)/2) +j=r.aS().b-(n+(m-l)/2) +if(k*k+j*j<1){i.d=!0 +i.a=A.co(B.cG,new A.aeO(i)) +return!1}return!0}, +Zi(){var s,r=this.b=A.c0(v.G.document,"flt-semantics-placeholder") +r.addEventListener("click",A.b3(new A.aeN(this)),!0) +s=A.ad("button") +s.toString +r.setAttribute("role",s) +s=A.ad("Enable accessibility") +s.toString +r.setAttribute("aria-label",s) +s=r.style +A.Z(s,"position","absolute") +A.Z(s,"left","0") +A.Z(s,"top","0") +A.Z(s,"right","0") +A.Z(s,"bottom","0") +return r}, +l(){var s=this.b +if(s!=null)s.remove() +this.a=this.b=null}} +A.aeO.prototype={ +$0(){this.a.l() +var s=$.bU;(s==null?$.bU=A.eb():s).sD3(!0)}, +$S:0} +A.aeN.prototype={ +$1(a){this.a.Ct(a)}, +$S:2} +A.akl.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.ajL.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.akc.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.ajN.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.aki.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.akk.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.akj.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}} +A.ajK.prototype={ +aQ(){var s=this.e +if(s==null)s=null +else{s.aQ() +s=!0}return s===!0}, +d6(a){var s,r +this.hC(0) +s=this.c.Aw() +r=this.a +if(s===B.f0){r===$&&A.a() +s=A.ad("true") +s.toString +r.setAttribute("aria-disabled",s)}else{r===$&&A.a() +r.removeAttribute("aria-disabled")}}} +A.RP.prototype={ +a61(a,b){var s,r=A.b3(new A.amb(this)) +this.d=r +s=this.b.a +s===$&&A.a() +s.addEventListener("click",r)}, +gqv(){return!0}, +d6(a){var s,r=this,q=r.e,p=r.a +if(p.Aw()!==B.f0){p=p.b +p.toString +p=(p&1)!==0}else p=!1 +r.e=p +if(q!==p){s=r.b.a +if(p){s===$&&A.a() +p=A.ad("") +p.toString +s.setAttribute("flt-tappable",p)}else{s===$&&A.a() +s.removeAttribute("flt-tappable")}}}} +A.amb.prototype={ +$1(a){var s=this.a,r=s.a +$.aFO().at0(0,a,r.ok.a,r.k4,s.e)}, +$S:2} +A.akO.prototype={ +IA(a,b,c,d){this.cx=b +this.x=d +this.y=c}, +aly(a){var s,r,q=this,p=q.CW +if(p===a)return +else if(p!=null)q.j2(0) +q.CW=a +p=a.w +p===$&&A.a() +q.c=p +q.Td() +p=q.cx +p.toString +s=q.x +s.toString +r=q.y +r.toString +q.a1Q(0,p,r,s)}, +j2(a){var s,r,q,p=this +if(!p.b)return +p.b=!1 +p.w=p.r=null +for(s=p.z,r=0;r=this.b)throw A.e(A.aDo(b,this,null,null,null)) +return this.a[b]}, +m(a,b,c){var s +if(b>=this.b)throw A.e(A.aDo(b,this,null,null,null)) +s=this.a +s.$flags&2&&A.aI(s) +s[b]=c}, +sv(a,b){var s,r,q,p,o=this,n=o.b +if(bn){if(n===0)p=new Uint8Array(b) +else p=o.Es(b) +B.O.i3(p,0,o.b,o.a) +o.a=p}}o.b=b}, +eV(a,b){var s,r=this,q=r.b +if(q===r.a.length)r.N8(q) +q=r.a +s=r.b++ +q.$flags&2&&A.aI(q) +q[s]=b}, +E(a,b){var s,r=this,q=r.b +if(q===r.a.length)r.N8(q) +q=r.a +s=r.b++ +q.$flags&2&&A.aI(q) +q[s]=b}, +zu(a,b,c,d){A.eg(c,"start") +if(d!=null&&c>d)throw A.e(A.cy(d,c,null,"end",null)) +this.a69(b,c,d)}, +O(a,b){return this.zu(0,b,0,null)}, +a69(a,b,c){var s,r,q +if(t.j.b(a))c=c==null?J.cg(a):c +if(c!=null){this.aez(this.b,a,b,c) +return}for(s=J.bb(a),r=0;s.u();){q=s.gN(s) +if(r>=b)this.eV(0,q);++r}if(ro.gv(b)||d>o.gv(b))throw A.e(A.a5("Too few elements")) +s=d-c +r=p.b+s +p.a9t(r) +o=p.a +q=a+s +B.O.e0(o,q,p.b+s,o,a) +B.O.e0(p.a,a,q,b,c) +p.b=r}, +a9t(a){var s,r=this +if(a<=r.a.length)return +s=r.Es(a) +B.O.i3(s,0,r.b,r.a) +r.a=s}, +Es(a){var s=this.a.length*2 +if(a!=null&&s=b.a.byteLength)throw A.e(B.bE) +return this.lU(b.pz(0),b)}, +lU(a,b){var s,r,q,p,o,n,m,l,k,j=this +switch(a){case 0:s=null +break +case 1:s=!0 +break +case 2:s=!1 +break +case 3:r=b.a.getInt32(b.b,B.aM===$.e6()) +b.b+=4 +s=r +break +case 4:s=b.CM(0) +break +case 5:q=j.fw(b) +s=A.h_(B.eq.d_(b.pA(q)),16) +break +case 6:b.md(8) +r=b.a.getFloat64(b.b,B.aM===$.e6()) +b.b+=8 +s=r +break +case 7:q=j.fw(b) +s=B.eq.d_(b.pA(q)) +break +case 8:s=b.pA(j.fw(b)) +break +case 9:q=j.fw(b) +b.md(4) +p=b.a +o=J.aGk(B.ax.gc9(p),p.byteOffset+b.b,q) +b.b=b.b+4*q +s=o +break +case 10:s=b.CN(j.fw(b)) +break +case 11:q=j.fw(b) +b.md(8) +p=b.a +o=J.aGj(B.ax.gc9(p),p.byteOffset+b.b,q) +b.b=b.b+8*q +s=o +break +case 12:q=j.fw(b) +n=[] +for(p=b.a,m=0;m=p.byteLength)A.a0(B.bE) +b.b=l+1 +n.push(j.lU(p.getUint8(l),b))}s=n +break +case 13:q=j.fw(b) +p=t.X +n=A.w(p,p) +for(p=b.a,m=0;m=p.byteLength)A.a0(B.bE) +b.b=l+1 +l=j.lU(p.getUint8(l),b) +k=b.b +if(k>=p.byteLength)A.a0(B.bE) +b.b=k+1 +n.m(0,l,j.lU(p.getUint8(k),b))}s=n +break +default:throw A.e(B.bE)}return s}, +hx(a,b){var s,r,q,p,o +if(b<254)a.b.eV(0,b) +else{s=a.b +r=a.c +q=a.d +p=r.$flags|0 +if(b<=65535){s.eV(0,254) +o=$.e6() +p&2&&A.aI(r,10) +r.setUint16(0,b,B.aM===o) +s.zu(0,q,0,2)}else{s.eV(0,255) +o=$.e6() +p&2&&A.aI(r,11) +r.setUint32(0,b,B.aM===o) +s.zu(0,q,0,4)}}}, +fw(a){var s,r=a.pz(0) +$label0$0:{if(254===r){r=a.a.getUint16(a.b,B.aM===$.e6()) +a.b+=2 +s=r +break $label0$0}if(255===r){r=a.a.getUint32(a.b,B.aM===$.e6()) +a.b+=4 +s=r +break $label0$0}s=r +break $label0$0}return s}} +A.alB.prototype={ +$2(a,b){var s=this.a,r=this.b +s.eT(0,r,a) +s.eT(0,r,b)}, +$S:148} +A.alC.prototype={ +j_(a){var s,r,q +a.toString +s=new A.PC(a) +r=B.c9.jl(0,s) +q=B.c9.jl(0,s) +if(typeof r=="string"&&s.b>=a.byteLength)return new A.iy(r,q) +else throw A.e(B.oM)}, +vm(a){var s=A.aEn() +s.b.eV(0,0) +B.c9.eT(0,s,a) +return s.mQ()}, +oJ(a,b,c){var s=A.aEn() +s.b.eV(0,1) +B.c9.eT(0,s,a) +B.c9.eT(0,s,c) +B.c9.eT(0,s,b) +return s.mQ()}} +A.anV.prototype={ +md(a){var s,r,q=this.b,p=B.f.bh(q.b,a) +if(p!==0)for(s=a-p,r=0;r")).aj(0,new A.a7h(this,r)) +return r}} +A.a7h.prototype={ +$1(a){var s=this.a,r=s.b.h(0,a) +r.toString +this.b.push(A.c1(r,"input",A.b3(new A.a7i(s,a,r))))}, +$S:37} +A.a7i.prototype={ +$1(a){var s,r=this.a.c,q=this.b +if(r.h(0,q)==null)throw A.e(A.a5("AutofillInfo must have a valid uniqueIdentifier.")) +else{r=r.h(0,q) +r.toString +s=A.aHG(this.c) +$.aR().jd("flutter/textinput",B.bl.jL(new A.iy(u.l,[0,A.ab([r.b,s.a_a()],t.ob,t.z)])),A.a1M())}}, +$S:2} +A.KN.prototype={ +V5(a,b){var s,r=this.d,q=this.e,p=A.fq(a,"HTMLInputElement") +if(p){if(q!=null)a.placeholder=q +p=r==null +if(!p){a.name=r +a.id=r +if(B.c.p(r,"password"))a.type="password" +else a.type="text"}p=p?"on":r +a.autocomplete=p}else{p=A.fq(a,"HTMLTextAreaElement") +if(p){if(q!=null)a.placeholder=q +p=r==null +if(!p){a.name=r +a.id=r}s=A.ad(p?"on":r) +s.toString +a.setAttribute("autocomplete",s)}}}, +eZ(a){return this.V5(a,!1)}} +A.wi.prototype={} +A.jb.prototype={ +W5(a,b,c,d){var s=this,r=a==null?s.b:a,q=d==null?s.c:d,p=b==null?s.d:b,o=c==null?s.e:c +return new A.jb(s.a,Math.max(0,r),Math.max(0,q),p,o)}, +anV(a,b){return this.W5(null,a,b,null)}, +qQ(a,b){return this.W5(a,null,null,b)}, +a_a(){var s=this +return A.ab(["text",s.a,"selectionBase",s.b,"selectionExtent",s.c,"composingBase",s.d,"composingExtent",s.e],t.N,t.z)}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r,q,p,o=this +if(b==null)return!1 +if(o===b)return!0 +if(A.r(o)!==J.U(b))return!1 +s=!1 +if(b instanceof A.jb)if(b.a===o.a){s=b.b +r=b.c +q=o.b +p=o.c +s=Math.min(s,r)===Math.min(q,p)&&Math.max(s,r)===Math.max(q,p)&&b.d===o.d&&b.e===o.e}return s}, +k(a){return this.ke(0)}, +eZ(a){var s,r=this,q=a==null,p=!q +if(p)s=A.fq(a,"HTMLInputElement") +else s=!1 +if(s){a.value=r.a +q=r.b +p=r.c +a.setSelectionRange(Math.min(q,p),Math.max(q,p))}else{if(p)p=A.fq(a,"HTMLTextAreaElement") +else p=!1 +if(p){a.value=r.a +q=r.b +p=r.c +a.setSelectionRange(Math.min(q,p),Math.max(q,p))}else throw A.e(A.af("Unsupported DOM element type: <"+A.k(q?null:A.M(a,"tagName"))+"> ("+J.U(a).k(0)+")"))}}} +A.aaJ.prototype={} +A.Na.prototype={ +jY(){var s,r=this,q=r.w +if(q!=null){s=r.c +s.toString +q.eZ(s)}q=r.d +q===$&&A.a() +if(q.x!=null){r.wm() +q=r.e +if(q!=null)q.eZ(r.c) +q=r.d.x +q=q==null?null:q.a +q.toString +s=$.ej() +q.focus(s) +r.c.focus(s)}}} +A.vM.prototype={ +jY(){var s,r=this,q=r.w +if(q!=null){s=r.c +s.toString +q.eZ(s)}q=r.d +q===$&&A.a() +if(q.x!=null){r.wm() +q=r.c +q.toString +q.focus($.ej()) +q=r.e +if(q!=null){s=r.c +s.toString +q.eZ(s)}}}, +vT(){if(this.w!=null)this.jY() +var s=this.c +s.toString +s.focus($.ej())}} +A.zE.prototype={ +gjK(){var s=null,r=this.f +return r==null?this.f=new A.wi(this.e.a,"",-1,-1,s,s,s,s):r}, +ri(a,b,c){var s,r,q=this,p="none",o="transparent",n=a.b.A7() +n.tabIndex=-1 +q.c=n +q.He(a) +n=q.c +n.classList.add("flt-text-editing") +s=n.style +A.Z(s,"forced-color-adjust",p) +A.Z(s,"white-space","pre-wrap") +A.Z(s,"position","absolute") +A.Z(s,"top","0") +A.Z(s,"left","0") +A.Z(s,"padding","0") +A.Z(s,"opacity","1") +A.Z(s,"color",o) +A.Z(s,"background-color",o) +A.Z(s,"background",o) +A.Z(s,"caret-color",o) +A.Z(s,"outline",p) +A.Z(s,"border",p) +A.Z(s,"resize",p) +A.Z(s,"text-shadow",p) +A.Z(s,"overflow","hidden") +A.Z(s,"transform-origin","0 0 0") +if($.bn().gdI()===B.cB||$.bn().gdI()===B.bq)n.classList.add("transparentTextEditing") +n=q.r +if(n!=null){r=q.c +r.toString +n.eZ(r)}n=q.d +n===$&&A.a() +if(n.x==null){n=q.c +n.toString +A.aAR(n,a.a) +q.Q=!1}q.vT() +q.b=!0 +q.x=c +q.y=b}, +He(a){var s,r,q,p,o,n=this +n.d=a +s=n.c +if(a.d){s.toString +r=A.ad("readonly") +r.toString +s.setAttribute("readonly",r)}else s.removeAttribute("readonly") +if(a.e){s=n.c +s.toString +r=A.ad("password") +r.toString +s.setAttribute("type",r)}if(a.b.gjb()==="none"){s=n.c +s.toString +r=A.ad("none") +r.toString +s.setAttribute("inputmode",r)}q=A.aTz(a.c) +s=n.c +s.toString +q.an2(s) +p=a.w +s=n.c +if(p!=null){s.toString +p.V5(s,!0)}else{s.toString +r=A.ad("off") +r.toString +s.setAttribute("autocomplete",r) +r=n.c +r.toString +A.b_m(r,n.d.a)}o=a.f?"on":"off" +s=n.c +s.toString +r=A.ad(o) +r.toString +s.setAttribute("autocorrect",r)}, +vT(){this.jY()}, +uG(){var s,r,q=this,p=q.d +p===$&&A.a() +p=p.x +if(p!=null)B.b.O(q.z,p.uH()) +p=q.z +s=q.c +s.toString +r=q.gvH() +p.push(A.c1(s,"input",A.b3(r))) +s=q.c +s.toString +p.push(A.c1(s,"keydown",A.b3(q.gw9()))) +p.push(A.c1(v.G.document,"selectionchange",A.b3(r))) +r=q.c +r.toString +p.push(A.c1(r,"beforeinput",A.b3(q.gAY()))) +if(!(q instanceof A.vM)){s=q.c +s.toString +p.push(A.c1(s,"blur",A.b3(q.gAZ())))}s=q.c +s.toString +r=q.gB0() +p.push(A.c1(s,"copy",A.b3(r))) +s=q.c +s.toString +p.push(A.c1(s,"paste",A.b3(r))) +r=q.c +r.toString +q.zv(r) +q.C2()}, +L1(a){var s,r=this +r.w=a +if(r.b)if(r.d$!=null){s=r.c +s.toString +a.eZ(s)}else r.jY()}, +L2(a){var s +this.r=a +if(this.b){s=this.c +s.toString +a.eZ(s)}}, +j2(a){var s,r,q,p=this +p.b=!1 +p.w=p.r=p.f=p.e=null +for(s=p.z,r=0;r=0&&a.c>=0) +else s=!0 +if(s)return +a.eZ(this.c)}, +jY(){var s=this.c +s.toString +s.focus($.ej())}, +wm(){var s,r,q=this.d +q===$&&A.a() +q=q.x +q.toString +s=this.c +s.toString +if($.yi().giH() instanceof A.vM)A.Z(s.style,"pointer-events","all") +r=q.a +if(!r.contains(s))r.insertBefore(s,q.d) +A.aAR(r,q.f) +this.Q=!0}, +Xj(a){var s,r,q=this,p=q.c +p.toString +s=q.aoD(q.a5G(A.aHG(p))) +p=q.d +p===$&&A.a() +if(p.r){q.gjK().r=s.d +q.gjK().w=s.e +r=A.aXw(s,q.e,q.gjK())}else r=null +if(!s.j(0,q.e)){q.e=s +q.f=r +q.x.$2(s,r)}q.f=null}, +a5G(a){var s,r=this.d +r===$&&A.a() +if(r.z)return a +r=a.c +if(a.b===r)return a +s=a.qQ(r,r) +r=this.c +r.toString +s.eZ(r) +return s}, +apY(a){var s,r,q,p,o=this,n=A.cC(a.data) +if(n==null)n=null +s=A.cC(a.inputType) +if(s==null)s=null +if(s!=null){r=o.e +q=r.b +p=r.c +q=q>p?q:p +if(B.c.p(s,"delete")){o.gjK().b="" +o.gjK().d=q}else if(s==="insertLineBreak"){o.gjK().b="\n" +o.gjK().c=q +o.gjK().d=q}else if(n!=null){o.gjK().b=n +o.gjK().c=q +o.gjK().d=q}}}, +apZ(a){var s,r,q,p=a.relatedTarget +if(p==null)$.yi().LS() +else{s=$.aR().gd8() +r=s.vB(p) +q=this.c +q.toString +if(r==s.vB(q)){s=this.c +s.toString +s.focus($.ej())}}}, +aq_(a){var s=this.d +s===$&&A.a() +if(!s.z)a.preventDefault()}, +asH(a){var s,r=A.fq(a,"KeyboardEvent") +if(r)if(J.d(a.keyCode,13)){r=this.y +r.toString +s=this.d +s===$&&A.a() +r.$1(s.c) +r=this.d +if(r.b instanceof A.BO&&r.c==="TextInputAction.newline")return +a.preventDefault()}}, +IA(a,b,c,d){var s,r=this +r.ri(b,c,d) +r.uG() +s=r.e +if(s!=null)r.LW(s) +s=r.c +s.toString +s.focus($.ej())}, +C2(){var s=this,r=s.z,q=s.c +q.toString +r.push(A.c1(q,"mousedown",A.b3(new A.a5v()))) +q=s.c +q.toString +r.push(A.c1(q,"mouseup",A.b3(new A.a5w()))) +q=s.c +q.toString +r.push(A.c1(q,"mousemove",A.b3(new A.a5x())))}} +A.a5v.prototype={ +$1(a){a.preventDefault()}, +$S:2} +A.a5w.prototype={ +$1(a){a.preventDefault()}, +$S:2} +A.a5x.prototype={ +$1(a){a.preventDefault()}, +$S:2} +A.aa3.prototype={ +ri(a,b,c){var s,r=this +r.Dr(a,b,c) +s=r.c +s.toString +a.b.VQ(s) +s=r.d +s===$&&A.a() +if(s.x!=null)r.wm() +s=r.c +s.toString +a.y.LT(s)}, +vT(){A.Z(this.c.style,"transform","translate(-9999px, -9999px)") +this.p3=!1}, +uG(){var s,r,q=this,p=q.d +p===$&&A.a() +p=p.x +if(p!=null)B.b.O(q.z,p.uH()) +p=q.z +s=q.c +s.toString +r=q.gvH() +p.push(A.c1(s,"input",A.b3(r))) +s=q.c +s.toString +p.push(A.c1(s,"keydown",A.b3(q.gw9()))) +p.push(A.c1(v.G.document,"selectionchange",A.b3(r))) +r=q.c +r.toString +p.push(A.c1(r,"beforeinput",A.b3(q.gAY()))) +r=q.c +r.toString +p.push(A.c1(r,"blur",A.b3(q.gAZ()))) +r=q.c +r.toString +s=q.gB0() +p.push(A.c1(r,"copy",A.b3(s))) +r=q.c +r.toString +p.push(A.c1(r,"paste",A.b3(s))) +s=q.c +s.toString +q.zv(s) +s=q.c +s.toString +p.push(A.c1(s,"focus",A.b3(new A.aa6(q)))) +q.a6v()}, +L1(a){var s=this +s.w=a +if(s.b&&s.p3)s.jY()}, +j2(a){var s +this.a1P(0) +s=this.p2 +if(s!=null)s.aR(0) +this.p2=null}, +a6v(){var s=this.c +s.toString +this.z.push(A.c1(s,"click",A.b3(new A.aa4(this))))}, +So(){var s=this.p2 +if(s!=null)s.aR(0) +this.p2=A.co(B.bd,new A.aa5(this))}, +jY(){var s,r=this.c +r.toString +r.focus($.ej()) +r=this.w +if(r!=null){s=this.c +s.toString +r.eZ(s)}}} +A.aa6.prototype={ +$1(a){this.a.So()}, +$S:2} +A.aa4.prototype={ +$1(a){var s=this.a +if(s.p3){s.vT() +s.So()}}, +$S:2} +A.aa5.prototype={ +$0(){var s=this.a +s.p3=!0 +s.jY()}, +$S:0} +A.a2J.prototype={ +ri(a,b,c){var s,r=this +r.Dr(a,b,c) +s=r.c +s.toString +a.b.VQ(s) +s=r.d +s===$&&A.a() +if(s.x!=null)r.wm() +else{s=r.c +s.toString +A.aAR(s,a.a)}s=r.c +s.toString +a.y.LT(s)}, +uG(){var s,r,q=this,p=q.d +p===$&&A.a() +p=p.x +if(p!=null)B.b.O(q.z,p.uH()) +p=q.z +s=q.c +s.toString +r=q.gvH() +p.push(A.c1(s,"input",A.b3(r))) +s=q.c +s.toString +p.push(A.c1(s,"keydown",A.b3(q.gw9()))) +p.push(A.c1(v.G.document,"selectionchange",A.b3(r))) +r=q.c +r.toString +p.push(A.c1(r,"beforeinput",A.b3(q.gAY()))) +r=q.c +r.toString +p.push(A.c1(r,"blur",A.b3(q.gAZ()))) +r=q.c +r.toString +s=q.gB0() +p.push(A.c1(r,"copy",A.b3(s))) +r=q.c +r.toString +p.push(A.c1(r,"paste",A.b3(s))) +s=q.c +s.toString +q.zv(s) +q.C2()}, +jY(){var s,r=this.c +r.toString +r.focus($.ej()) +r=this.w +if(r!=null){s=this.c +s.toString +r.eZ(s)}}} +A.a7X.prototype={ +ri(a,b,c){var s +this.Dr(a,b,c) +s=this.d +s===$&&A.a() +if(s.x!=null)this.wm()}, +uG(){var s,r,q=this,p=q.d +p===$&&A.a() +p=p.x +if(p!=null)B.b.O(q.z,p.uH()) +p=q.z +s=q.c +s.toString +r=q.gvH() +p.push(A.c1(s,"input",A.b3(r))) +s=q.c +s.toString +p.push(A.c1(s,"keydown",A.b3(q.gw9()))) +s=q.c +s.toString +p.push(A.c1(s,"beforeinput",A.b3(q.gAY()))) +s=q.c +s.toString +q.zv(s) +s=q.c +s.toString +p.push(A.c1(s,"keyup",A.b3(new A.a7Y(q)))) +s=q.c +s.toString +p.push(A.c1(s,"select",A.b3(r))) +r=q.c +r.toString +p.push(A.c1(r,"blur",A.b3(q.gAZ()))) +r=q.c +r.toString +s=q.gB0() +p.push(A.c1(r,"copy",A.b3(s))) +r=q.c +r.toString +p.push(A.c1(r,"paste",A.b3(s))) +q.C2()}, +jY(){var s,r=this,q=r.c +q.toString +q.focus($.ej()) +q=r.w +if(q!=null){s=r.c +s.toString +q.eZ(s)}q=r.e +if(q!=null){s=r.c +s.toString +q.eZ(s)}}} +A.a7Y.prototype={ +$1(a){this.a.Xj(a)}, +$S:2} +A.amp.prototype={} +A.amv.prototype={ +hu(a){var s=a.b +if(s!=null&&s!==this.a&&a.c){a.c=!1 +a.giH().j2(0)}a.b=this.a +a.d=this.b}} +A.amC.prototype={ +hu(a){var s=a.giH(),r=a.d +r.toString +s.He(r)}} +A.amx.prototype={ +hu(a){a.giH().LW(this.a)}} +A.amA.prototype={ +hu(a){if(!a.c)a.ajQ()}} +A.amw.prototype={ +hu(a){a.giH().L1(this.a)}} +A.amz.prototype={ +hu(a){a.giH().L2(this.a)}} +A.amn.prototype={ +hu(a){if(a.c){a.c=!1 +a.giH().j2(0)}}} +A.ams.prototype={ +hu(a){if(a.c){a.c=!1 +a.giH().j2(0)}}} +A.amy.prototype={ +hu(a){}} +A.amu.prototype={ +hu(a){}} +A.amt.prototype={ +hu(a){}} +A.amr.prototype={ +hu(a){a.LS() +if(this.a)A.b2u() +A.b1_()}} +A.aC3.prototype={ +$2(a,b){new A.wU(b.getElementsByClassName("submitBtn"),t.s5).ga3(0).click()}, +$S:530} +A.ami.prototype={ +aqS(a,b){var s,r,q,p,o,n,m,l,k=B.bl.j_(a) +switch(k.a){case"TextInput.setClient":s=k.b +s.toString +t.Dn.a(s) +r=J.aE(s) +q=r.h(s,0) +q.toString +A.eT(q) +s=r.h(s,1) +s.toString +p=new A.amv(q,A.aIk(t.xE.a(s))) +break +case"TextInput.updateConfig":this.a.d=A.aIk(t.a.a(k.b)) +p=B.Dl +break +case"TextInput.setEditingState":p=new A.amx(A.aHH(t.a.a(k.b))) +break +case"TextInput.show":p=B.Dj +break +case"TextInput.setEditableSizeAndTransform":p=new A.amw(A.aTh(t.a.a(k.b))) +break +case"TextInput.setStyle":s=t.a.a(k.b) +r=J.aE(s) +o=A.eT(r.h(s,"textAlignIndex")) +n=A.eT(r.h(s,"textDirectionIndex")) +m=A.hz(r.h(s,"fontWeightIndex")) +l=m!=null?A.b1F(m):"normal" +q=A.aEP(r.h(s,"fontSize")) +if(q==null)q=null +p=new A.amz(new A.a71(q,l,A.cC(r.h(s,"fontFamily")),B.JP[o],B.l_[n])) +break +case"TextInput.clearClient":p=B.De +break +case"TextInput.hide":p=B.Df +break +case"TextInput.requestAutofill":p=B.Dg +break +case"TextInput.finishAutofillContext":p=new A.amr(A.ty(k.b)) +break +case"TextInput.setMarkedTextRect":p=B.Di +break +case"TextInput.setCaretRect":p=B.Dh +break +default:$.aR().f7(b,null) +return}p.hu(this.a) +new A.amj(b).$0()}} +A.amj.prototype={ +$0(){$.aR().f7(this.a,B.a6.c4([!0]))}, +$S:0} +A.a9Z.prototype={ +guT(a){var s=this.a +return s===$?this.a=new A.ami(this):s}, +giH(){var s,r,q,p=this,o=null,n=p.f +if(n===$){s=$.bU +if((s==null?$.bU=A.eb():s).b){s=A.aWT(p) +r=s}else{if($.bn().gdz()===B.be)q=new A.aa3(p,A.b([],t.Up),$,$,$,o,o) +else if($.bn().gdz()===B.fn)q=new A.a2J(p,A.b([],t.Up),$,$,$,o,o) +else if($.bn().gdI()===B.bq)q=new A.vM(p,A.b([],t.Up),$,$,$,o,o) +else q=$.bn().gdI()===B.cW?new A.a7X(p,A.b([],t.Up),$,$,$,o,o):A.aUb(p) +r=q}p.f!==$&&A.aA() +n=p.f=r}return n}, +ajQ(){var s,r,q=this +q.c=!0 +s=q.giH() +r=q.d +r.toString +s.IA(0,r,new A.aa_(q),new A.aa0(q))}, +LS(){var s,r=this +if(r.c){r.c=!1 +r.giH().j2(0) +r.guT(0) +s=r.b +$.aR().jd("flutter/textinput",B.bl.jL(new A.iy("TextInputClient.onConnectionClosed",[s])),A.a1M())}}} +A.aa0.prototype={ +$2(a,b){var s,r,q="flutter/textinput",p=this.a +if(p.d.r){p.guT(0) +p=p.b +s=t.N +r=t.z +$.aR().jd(q,B.bl.jL(new A.iy(u.s,[p,A.ab(["deltas",A.b([A.ab(["oldText",b.a,"deltaText",b.b,"deltaStart",b.c,"deltaEnd",b.d,"selectionBase",b.e,"selectionExtent",b.f,"composingBase",b.r,"composingExtent",b.w],s,r)],t.H7)],s,r)])),A.a1M())}else{p.guT(0) +p=p.b +$.aR().jd(q,B.bl.jL(new A.iy("TextInputClient.updateEditingState",[p,a.a_a()])),A.a1M())}}, +$S:534} +A.aa_.prototype={ +$1(a){var s=this.a +s.guT(0) +s=s.b +$.aR().jd("flutter/textinput",B.bl.jL(new A.iy("TextInputClient.performAction",[s,a])),A.a1M())}, +$S:549} +A.a71.prototype={ +eZ(a){var s=this,r=a.style +A.Z(r,"text-align",A.b2F(s.d,s.e)) +A.Z(r,"font",s.b+" "+A.k(s.a)+"px "+A.k(A.b0U(s.c)))}} +A.a6j.prototype={ +eZ(a){var s=A.aN6(this.c),r=a.style +A.Z(r,"width",A.k(this.a)+"px") +A.Z(r,"height",A.k(this.b)+"px") +A.Z(r,"transform",s)}} +A.a6k.prototype={ +$1(a){return A.eU(a)}, +$S:580} +A.B3.prototype={ +K(){return"IntlSegmenterGranularity."+this.b}} +A.EL.prototype={ +K(){return"TransformKind."+this.b}} +A.aBj.prototype={ +$1(a){return"0x"+B.c.eb(B.f.lV(a,16),2,"0")}, +$S:70} +A.Og.prototype={ +gv(a){return this.b.b}, +h(a,b){var s=this.c.h(0,b) +return s==null?null:s.d.b}, +N7(a,b,c){var s,r,q,p=this.b +p.zw(new A.Yf(b,c)) +s=this.c +r=p.a +q=r.b.xI() +q.toString +s.m(0,b,q) +if(p.b>this.a){s.F(0,r.a.gAv().a) +p.hX(0)}}} +A.k3.prototype={ +j(a,b){if(b==null)return!1 +return b instanceof A.k3&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"BitmapSize("+this.a+", "+this.b+")"}, +avu(){return new A.I(this.a,this.b)}} +A.ku.prototype={ +cB(a){var s=a.a,r=this.a,q=s[15] +r.$flags&2&&A.aI(r) +r[15]=q +r[14]=s[14] +r[13]=s[13] +r[12]=s[12] +r[11]=s[11] +r[10]=s[10] +r[9]=s[9] +r[8]=s[8] +r[7]=s[7] +r[6]=s[6] +r[5]=s[5] +r[4]=s[4] +r[3]=s[3] +r[2]=s[2] +r[1]=s[1] +r[0]=s[0]}, +h(a,b){return this.a[b]}, +pE(a,b,c){var s=this.a +s.$flags&2&&A.aI(s) +s[14]=c +s[13]=b +s[12]=a}, +dZ(b5,b6){var s=this.a,r=s[15],q=s[0],p=s[4],o=s[8],n=s[12],m=s[1],l=s[5],k=s[9],j=s[13],i=s[2],h=s[6],g=s[10],f=s[14],e=s[3],d=s[7],c=s[11],b=b6.a,a=b[15],a0=b[0],a1=b[4],a2=b[8],a3=b[12],a4=b[1],a5=b[5],a6=b[9],a7=b[13],a8=b[2],a9=b[6],b0=b[10],b1=b[14],b2=b[3],b3=b[7],b4=b[11] +s.$flags&2&&A.aI(s) +s[0]=q*a0+p*a4+o*a8+n*b2 +s[4]=q*a1+p*a5+o*a9+n*b3 +s[8]=q*a2+p*a6+o*b0+n*b4 +s[12]=q*a3+p*a7+o*b1+n*a +s[1]=m*a0+l*a4+k*a8+j*b2 +s[5]=m*a1+l*a5+k*a9+j*b3 +s[9]=m*a2+l*a6+k*b0+j*b4 +s[13]=m*a3+l*a7+k*b1+j*a +s[2]=i*a0+h*a4+g*a8+f*b2 +s[6]=i*a1+h*a5+g*a9+f*b3 +s[10]=i*a2+h*a6+g*b0+f*b4 +s[14]=i*a3+h*a7+g*b1+f*a +s[3]=e*a0+d*a4+c*a8+r*b2 +s[7]=e*a1+d*a5+c*a9+r*b3 +s[11]=e*a2+d*a6+c*b0+r*b4 +s[15]=e*a3+d*a7+c*b1+r*a}, +k(a){return this.ke(0)}} +A.a56.prototype={ +a5J(a,b){var s=this,r=b.n4(new A.a57(s)) +s.d=r +r=A.b1g(new A.a58(s)) +s.c=r +r.observe(s.b)}, +aO(a){var s,r=this +r.Mo(0) +s=r.c +s===$&&A.a() +s.disconnect() +s=r.d +s===$&&A.a() +if(s!=null)s.aR(0) +r.e.aO(0)}, +gZ2(a){var s=this.e +return new A.cT(s,A.n(s).i("cT<1>"))}, +HO(){var s=$.dy(),r=s.d +if(r==null)r=s.gcu() +s=this.b +return new A.I(s.clientWidth*r,s.clientHeight*r)}, +VN(a,b){return B.er}} +A.a57.prototype={ +$1(a){this.a.e.E(0,null)}, +$S:120} +A.a58.prototype={ +$2(a,b){var s,r,q,p +for(s=a.$ti,r=new A.bd(a,a.gv(0),s.i("bd")),q=this.a.e,s=s.i("a_.E");r.u();){p=r.d +if(p==null)s.a(p) +if(!q.go4())A.a0(q.nU()) +q.iN(null)}}, +$S:581} +A.Mk.prototype={ +aO(a){}} +A.N5.prototype={ +agK(a){this.c.E(0,null)}, +aO(a){var s +this.Mo(0) +s=this.b +s===$&&A.a() +s.b.removeEventListener(s.a,s.c) +this.c.aO(0)}, +gZ2(a){var s=this.c +return new A.cT(s,A.n(s).i("cT<1>"))}, +HO(){var s,r,q=A.kU("windowInnerWidth"),p=A.kU("windowInnerHeight"),o=v.G,n=o.window.visualViewport,m=$.dy(),l=m.d +if(l==null)l=m.gcu() +if(n!=null)if($.bn().gdz()===B.be){s=o.document.documentElement.clientWidth +r=o.document.documentElement.clientHeight +q.b=s*l +p.b=r*l}else{o=n.width +o.toString +q.b=o*l +o=n.height +o.toString +p.b=o*l}else{m=o.window.innerWidth +m.toString +q.b=m*l +o=o.window.innerHeight +o.toString +p.b=o*l}return new A.I(q.aS(),p.aS())}, +VN(a,b){var s,r,q=$.dy(),p=q.d +if(p==null)p=q.gcu() +q=v.G +s=q.window.visualViewport +r=A.kU("windowInnerHeight") +if(s!=null)if($.bn().gdz()===B.be&&!b)r.b=q.document.documentElement.clientHeight*p +else{q=s.height +q.toString +r.b=q*p}else{q=q.window.innerHeight +q.toString +r.b=q*p}return new A.Sx(0,0,0,a-r.aS())}} +A.Mo.prototype={ +Tb(){var s,r=this,q=v.G.window,p=r.b +r.d=q.matchMedia("(resolution: "+A.k(p)+"dppx)") +q=r.d +q===$&&A.a() +p=A.b3(r.gafY()) +s=A.ad(A.ab(["once",!0,"passive",!0],t.N,t.K)) +s.toString +q.addEventListener("change",p,s)}, +afZ(a){var s=this,r=s.a,q=r.d +r=q==null?r.gcu():q +s.b=r +s.c.E(0,r) +s.Tb()}} +A.a5Z.prototype={ +M3(a){var s,r=this +if(!J.d(a,r.r)){s=r.r +if(s!=null)s.remove() +r.r=a +r.d.append(a)}}} +A.a59.prototype={ +gCS(){var s=this.b +s===$&&A.a() +return s}, +Ve(a){A.Z(a.style,"width","100%") +A.Z(a.style,"height","100%") +A.Z(a.style,"display","block") +A.Z(a.style,"overflow","hidden") +A.Z(a.style,"position","relative") +A.Z(a.style,"touch-action","none") +this.a.appendChild(a) +$.aCg() +this.b!==$&&A.bw() +this.b=a}, +gn1(){return this.a}} +A.a8O.prototype={ +gCS(){return v.G.window}, +Ve(a){var s=a.style +A.Z(s,"position","absolute") +A.Z(s,"top","0") +A.Z(s,"right","0") +A.Z(s,"bottom","0") +A.Z(s,"left","0") +this.a.append(a) +$.aCg()}, +a6L(){var s,r,q,p +for(s=v.G,r=s.document.head.querySelectorAll('meta[name="viewport"]'),q=new A.t7(r,t.rM);q.u();)A.dP(r.item(q.b)).remove() +p=A.c0(s.document,"meta") +r=A.ad("") +r.toString +p.setAttribute("flt-viewport",r) +p.name="viewport" +p.content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" +s.document.head.append(p) +$.aCg()}, +gn1(){return this.a}} +A.MX.prototype={ +h(a,b){return this.b.h(0,b)}, +ZF(a,b){var s=a.a +this.b.m(0,s,a) +if(b!=null)this.c.m(0,s,b) +this.d.E(0,s) +return a}, +auB(a){return this.ZF(a,null)}, +Wz(a){var s,r=this.b,q=r.h(0,a) +if(q==null)return null +r.F(0,a) +s=this.c.F(0,a) +this.e.E(0,a) +q.l() +return s}, +vB(a){var s,r=a==null?null:a.closest("flutter-view[flt-view-id]") +if(r==null)return null +s=r.getAttribute("flt-view-id") +s.toString +return this.b.h(0,A.ri(s,null))}, +LI(a){return A.a8P(new A.a8d(this,a),t.H)}, +a0j(a){return A.a8P(new A.a8e(this,a),t.H)}, +Gu(a,b){var s,r,q=v.G.document.activeElement +if(!J.d(a,q))s=b&&a.contains(q) +else s=!0 +if(s){r=this.vB(a) +if(r!=null)r.gfl().a.focus($.ej())}if(b)a.remove()}, +ako(a){return this.Gu(a,!1)}} +A.a8d.prototype={ +$0(){this.a.ako(this.b)}, +$S:13} +A.a8e.prototype={ +$0(){this.a.Gu(this.b,!0) +return null}, +$S:0} +A.a9d.prototype={} +A.aAQ.prototype={ +$0(){return null}, +$S:614} +A.pK.prototype={ +k(a){var s=this,r=A.b([],t.s) +if((s.a&1)!==0)r.push("whitespace") +if((s.a&2)!==0)r.push("grapheme") +if((s.a&4)!==0)r.push("softBreak") +if((s.a&8)!==0)r.push("hardBreak") +if((s.a&16)!==0)r.push("word") +return B.b.bn(r," ")}} +A.a4I.prototype={ +$1(a){return new A.pK(a.flags)}, +$S:245} +A.anF.prototype={ +lM(a){return this.asi(a)}, +asi(a0){var s=0,r=A.H(t.S7),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a +var $async$lM=A.B(function(a1,a2){if(a1===1)return A.E(a2,r) +for(;;)switch(s){case 0:b=A.b([],t.Rh) +for(o=a0.a,n=o.length,m=0;m")) +h=h.i("a_.E") +while(i.u()){g=i.d +if(g==null)g=h.a(g) +e=g.begin +if(e==null)e=g.start +e=f.getSelectionRects(e,g.end) +d=J.Kh(m.b(e)?e:new A.eY(e,A.a2(e).i("eY<1,R>")),p) +if(d.gv(0)===0)A.a0(A.cj()) +e=d.h(0,0).left +if(d.gv(0)===0)A.a0(A.cj()) +c=d.h(0,0).top +if(d.gv(0)===0)A.a0(A.cj()) +b=d.h(0,0).width +if(d.gv(0)===0)A.a0(A.cj()) +a=d.h(0,0).height +a0=g.begin +a1=a0==null?g.start:a0 +for(;a1"),p=new A.bd(q,q.gv(0),r),s=s.i("a_.E");p.u();){o=p.d +if(o==null)o=s.a(o) +A.k(o.start) +A.k(o.end) +A.k(o.level)}for(r=new A.bd(q,q.gv(0),r),p=this.f;r.u();){o=r.d +if(o==null)o=s.a(o) +n=o.start +m=o.end +n=p.h(0,n) +n.toString +m=p.h(0,m) +m.toString +l=new A.fi() +l.a=n +l.b=m +k.push(new A.yK(o.level,l))}}, +H3(a,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=A.b([],t.tM) +$.a3() +s=new A.S_(a,B.a1,b) +r=A.b([],t.t) +for(q=c.d,p=q.length,o=0,n=0;n")),p=p.i("a_.E");l.u();){k=l.d +if(k==null)k=p.a(k) +g=q[k.index+o] +k=g.b +j=Math.max(k.a,a.a) +k=Math.min(k.b,a.b) +i=new A.fi() +i.a=j +i.b=k +b.push(new A.yK(g.a,i))}s.x=s.w=0 +for(f=a.a,q=c.c;f1)B.b.hr(p,0) +else B.b.ga3(p).b=o.length +q.IY() +for(s=p.length,r=0;r1){s.pop() +this.Mf()}else A.ie("ERROR: Cannot perform pop operation: empty style list")}, +rD(a){var s,r=this +t.Vu.a(a) +r.c.push(a) +s=B.b.gae(r.b) +if(s.b===r.d.a.length&&s.c.j(0,a))return +r.Mf()}, +Mf(){var s,r,q=this +q.IY() +s=q.d.a +r=new A.E2(B.b.gae(q.c)) +r.b=r.a=s.length +q.b.push(r)}, +IY(){var s=this.b,r=this.d +for(;;){if(!(s.length>1&&B.b.gae(s).a===r.a.length))break +s.pop()}B.b.gae(s).b=r.a.length}} +A.amT.prototype={ +Me(a,b){var s,r=this +r.c=a +s=new A.fi() +s.b=s.a=a +r.e=s +r.r=r.f=0 +r.w=b +r.d=0}, +aml(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +f.Me(0,0) +for(s=f.b,r=s.c,q=!1,p=0;o=r.length-1,pa){j=f.e +j===$&&A.a() +i=j.a +h=f.c +if(i!==h)k=i +else if(p>h)if(k>0){o=l+k +f.f=o +f.w=f.r=0 +j.a=j.b=p +k=p +l=0}else{f.f=0 +k=i +o=0}else{f.f=m +o=p+1 +j.a=j.b=o +k=o +o=m +m=0}i=f.d +g=new A.fi() +g.a=h +g.b=k +j=j.b +h=new A.fi() +h.a=k +h.b=j +f.d=i+s.H3(g,o,h,l,q,i) +i=f.e.b +l=f.w +f.c=i +h=new A.fi() +h.b=h.a=i +f.e=h +f.d=f.r=f.f=0 +o=l}else o=k +f.w=o+m}r=f.e +r===$&&A.a() +if(r.bq&&rs&&a.a=a.length)return +if(a.charCodeAt(q)===c)return +r.$1(b) +new A.asw(p,this,a,b,c,r,!1,s,new A.asu(r)).$0()}} +A.asA.prototype={ +$2(a,b){var s,r,q,p,o=this.a,n=(o.a+="; ")+a +o.a=n +if(b!=null){o.a=n+"=" +if(A.aYB(b))o.a+=b +else{n=A.dn(34) +s=o.a+=n +for(r=b.length,q=0;q=s)return +n=g.$0() +k.a=A.JP(j,k.a) +if(f.$1(61)){k.a=A.JP(j,k.a) +m=e.$0() +q.m(0,n,n==="charset"?m.toLowerCase():m)}else if(n.length!==0)q.m(0,n,null) +o=k.a=A.JP(j,k.a) +if(o>=s)return +if(j.charCodeAt(o)===h)return +r.$1(i)}}, +$S:0} +A.asx.prototype={ +$0(){var s,r,q,p,o,n,m,l=this,k=l.a,j=k.a +for(s=l.b,r=s.length,q=l.c,p=l.d,o=j;o").bR(b).i("eY<1,2>"))}, +E(a,b){a.$flags&1&&A.aI(a,29) +a.push(b)}, +hr(a,b){a.$flags&1&&A.aI(a,"removeAt",1) +if(b<0||b>=a.length)throw A.e(A.ah8(b,null)) +return a.splice(b,1)[0]}, +rj(a,b,c){a.$flags&1&&A.aI(a,"insert",2) +if(b<0||b>a.length)throw A.e(A.ah8(b,null)) +a.splice(b,0,c)}, +rk(a,b,c){var s,r +a.$flags&1&&A.aI(a,"insertAll",2) +A.aJB(b,0,a.length,"index") +if(!t.Ee.b(c))c=J.a2p(c) +s=J.cg(c) +a.length=a.length+s +r=b+s +this.e0(a,r,a.length,a,b) +this.i3(a,b,r,c)}, +hX(a){a.$flags&1&&A.aI(a,"removeLast",1) +if(a.length===0)throw A.e(A.a1V(a,-1)) +return a.pop()}, +F(a,b){var s +a.$flags&1&&A.aI(a,"remove",1) +for(s=0;s"))}, +O(a,b){var s +a.$flags&1&&A.aI(a,"addAll",2) +if(Array.isArray(b)){this.a6j(a,b) +return}for(s=J.bb(b);s.u();)a.push(s.gN(s))}, +a6j(a,b){var s,r=b.length +if(r===0)return +if(a===b)throw A.e(A.c6(a)) +for(s=0;s").bR(c).i("ae<1,2>"))}, +bn(a,b){var s,r=A.bz(a.length,"",!1,t.N) +for(s=0;ss)throw A.e(A.cy(b,0,s,"start",null)) +if(c==null)c=s +else if(cs)throw A.e(A.cy(c,b,s,"end",null)) +if(b===c)return A.b([],A.a2(a)) +return A.b(a.slice(b,c),A.a2(a))}, +hb(a,b){return this.cr(a,b,null)}, +wY(a,b,c){A.dZ(b,c,a.length,null,null) +return A.jN(a,b,c,A.a2(a).c)}, +ga3(a){if(a.length>0)return a[0] +throw A.e(A.cj())}, +gae(a){var s=a.length +if(s>0)return a[s-1] +throw A.e(A.cj())}, +gc7(a){var s=a.length +if(s===1)return a[0] +if(s===0)throw A.e(A.cj()) +throw A.e(A.aIm())}, +auP(a,b,c){a.$flags&1&&A.aI(a,18) +A.dZ(b,c,a.length,null,null) +a.splice(b,c-b)}, +e0(a,b,c,d,e){var s,r,q,p,o +a.$flags&2&&A.aI(a,5) +A.dZ(b,c,a.length,null,null) +s=c-b +if(s===0)return +A.eg(e,"skipCount") +if(t.j.b(d)){r=d +q=e}else{r=J.a2n(d,e).ee(0,!1) +q=0}p=J.aE(r) +if(q+s>p.gv(r))throw A.e(A.aIl()) +if(q=0;--o)a[b+o]=p.h(r,q+o) +else for(o=0;o0){a[0]=q +a[1]=r}return}p=0 +if(A.a2(a).c.b(null))for(o=0;o0)this.aia(a,p)}, +jr(a){return this.fa(a,null)}, +aia(a,b){var s,r=a.length +for(;s=r-1,r>0;r=s)if(a[s]===null){a[s]=void 0;--b +if(b===0)break}}, +hR(a,b){var s,r=a.length +if(0>=r)return-1 +for(s=0;s"))}, +gB(a){return A.f5(a)}, +gv(a){return a.length}, +sv(a,b){a.$flags&1&&A.aI(a,"set length","change the length of") +if(b<0)throw A.e(A.cy(b,0,null,"newLength",null)) +if(b>a.length)A.a2(a).c.a(null) +a.length=b}, +h(a,b){if(!(b>=0&&b=0&&b"))}, +V(a,b){var s=A.a6(a,A.a2(a).c) +this.O(s,b) +return s}, +XQ(a,b,c){var s +if(c>=a.length)return-1 +for(s=c;s=0;--s)if(b.$1(a[s]))return s +return-1}, +gdO(a){return A.bZ(A.a2(a))}, +$ia8:1, +$io:1, +$iO:1} +J.NO.prototype={ +avG(a){var s,r,q +if(!Array.isArray(a))return null +s=a.$flags|0 +if((s&4)!==0)r="const, " +else if((s&2)!==0)r="unmodifiable, " +else r=(s&1)!==0?"fixed, ":"" +q="Instance of '"+A.Po(a)+"'" +if(r==="")return q +return q+" ("+r+"length: "+a.length+")"}} +J.aaS.prototype={} +J.cV.prototype={ +gN(a){var s=this.d +return s==null?this.$ti.c.a(s):s}, +u(){var s,r=this,q=r.a,p=q.length +if(r.b!==p)throw A.e(A.K(q)) +s=r.c +if(s>=p){r.d=null +return!1}r.d=q[s] +r.c=s+1 +return!0}} +J.nC.prototype={ +b5(a,b){var s +if(ab)return 1 +else if(a===b){if(a===0){s=this.gvY(b) +if(this.gvY(a)===s)return 0 +if(this.gvY(a))return-1 +return 1}return 0}else if(isNaN(a)){if(isNaN(b))return 0 +return 1}else return-1}, +gvY(a){return a===0?1/a<0:a<0}, +UN(a){return Math.abs(a)}, +gDg(a){var s +if(a>0)s=1 +else s=a<0?-1:a +return s}, +h6(a){var s +if(a>=-2147483648&&a<=2147483647)return a|0 +if(isFinite(a)){s=a<0?Math.ceil(a):Math.floor(a) +return s+0}throw A.e(A.af(""+a+".toInt()"))}, +oo(a){var s,r +if(a>=0){if(a<=2147483647){s=a|0 +return a===s?s:s+1}}else if(a>=-2147483648)return a|0 +r=Math.ceil(a) +if(isFinite(r))return r +throw A.e(A.af(""+a+".ceil()"))}, +h_(a){var s,r +if(a>=0){if(a<=2147483647)return a|0}else if(a>=-2147483648){s=a|0 +return a===s?s:s-1}r=Math.floor(a) +if(isFinite(r))return r +throw A.e(A.af(""+a+".floor()"))}, +aI(a){if(a>0){if(a!==1/0)return Math.round(a)}else if(a>-1/0)return 0-Math.round(0-a) +throw A.e(A.af(""+a+".round()"))}, +f0(a,b,c){if(B.f.b5(b,c)>0)throw A.e(A.y4(b)) +if(this.b5(a,b)<0)return b +if(this.b5(a,c)>0)return c +return a}, +ah(a,b){var s +if(b>20)throw A.e(A.cy(b,0,20,"fractionDigits",null)) +s=a.toFixed(b) +if(a===0&&this.gvY(a))return"-"+s +return s}, +avv(a,b){var s +if(b<1||b>21)throw A.e(A.cy(b,1,21,"precision",null)) +s=a.toPrecision(b) +if(a===0&&this.gvY(a))return"-"+s +return s}, +lV(a,b){var s,r,q,p +if(b<2||b>36)throw A.e(A.cy(b,2,36,"radix",null)) +s=a.toString(b) +if(s.charCodeAt(s.length-1)!==41)return s +r=/^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(s) +if(r==null)A.a0(A.af("Unexpected toString result: "+s)) +s=r[1] +q=+r[3] +p=r[2] +if(p!=null){s+=p +q-=p.length}return s+B.c.a6("0",q)}, +k(a){if(a===0&&1/a<0)return"-0.0" +else return""+a}, +gB(a){var s,r,q,p,o=a|0 +if(a===o)return o&536870911 +s=Math.abs(a) +r=Math.log(s)/0.6931471805599453|0 +q=Math.pow(2,r) +p=s<1?s/q:q/s +return((p*9007199254740992|0)+(p*3542243181176521|0))*599197+r*1259&536870911}, +V(a,b){return a+b}, +a0(a,b){return a-b}, +a6(a,b){return a*b}, +bh(a,b){var s=a%b +if(s===0)return 0 +if(s>0)return s +if(b<0)return s-b +else return s+b}, +jw(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 +return this.Tk(a,b)}, +fh(a,b){return(a|0)===a?a/b|0:this.Tk(a,b)}, +Tk(a,b){var s=a/b +if(s>=-2147483648&&s<=2147483647)return s|0 +if(s>0){if(s!==1/0)return Math.floor(s)}else if(s>-1/0)return Math.ceil(s) +throw A.e(A.af("Result of truncating division is "+A.k(s)+": "+A.k(a)+" ~/ "+A.k(b)))}, +a0W(a,b){if(b<0)throw A.e(A.y4(b)) +return b>31?0:a<>>0}, +SV(a,b){return b>31?0:a<>>0}, +eX(a,b){var s +if(a>0)s=this.T0(a,b) +else{s=b>31?31:b +s=a>>s>>>0}return s}, +ajD(a,b){if(0>b)throw A.e(A.y4(b)) +return this.T0(a,b)}, +T0(a,b){return b>31?0:a>>>b}, +qk(a,b){if(b>31)return 0 +return a>>>b}, +gdO(a){return A.bZ(t.Ci)}, +$ic5:1, +$iS:1, +$ice:1} +J.uS.prototype={ +UN(a){return Math.abs(a)}, +gDg(a){var s +if(a>0)s=1 +else s=a<0?-1:a +return s}, +gdO(a){return A.bZ(t.S)}, +$icB:1, +$im:1} +J.B7.prototype={ +gdO(a){return A.bZ(t.i)}, +$icB:1} +J.lF.prototype={ +H9(a,b,c){var s=b.length +if(c>s)throw A.e(A.cy(c,0,s,null,null)) +return new A.ZT(b,a,c)}, +qx(a,b){return this.H9(a,b,0)}, +pb(a,b,c){var s,r,q=null +if(c<0||c>b.length)throw A.e(A.cy(c,0,b.length,q,q)) +s=a.length +if(c+s>b.length)return q +for(r=0;rr)return!1 +return b===this.bZ(a,r-s)}, +ZR(a,b,c){A.aJB(0,0,a.length,"startIndex") +return A.b2E(a,b,c,0)}, +kV(a,b,c,d){var s=A.dZ(b,c,a.length,null,null) +return A.aNA(a,b,s,d)}, +da(a,b,c){var s +if(c<0||c>a.length)throw A.e(A.cy(c,0,a.length,null,null)) +s=c+b.length +if(s>a.length)return!1 +return b===a.substring(c,s)}, +bz(a,b){return this.da(a,b,0)}, +a1(a,b,c){return a.substring(b,A.dZ(b,c,a.length,null,null))}, +bZ(a,b){return this.a1(a,b,null)}, +dq(a){var s,r,q,p=a.trim(),o=p.length +if(o===0)return p +if(p.charCodeAt(0)===133){s=J.aIv(p,1) +if(s===o)return""}else s=0 +r=o-1 +q=p.charCodeAt(r)===133?J.aIw(p,r):o +if(s===0&&q===o)return p +return p.substring(s,q)}, +avE(a){var s=a.trimStart() +if(s.length===0)return s +if(s.charCodeAt(0)!==133)return s +return s.substring(J.aIv(s,1))}, +Cs(a){var s,r=a.trimEnd(),q=r.length +if(q===0)return r +s=q-1 +if(r.charCodeAt(s)!==133)return r +return r.substring(0,J.aIw(r,s))}, +a6(a,b){var s,r +if(0>=b)return"" +if(b===1||a.length===0)return a +if(b!==b>>>0)throw A.e(B.D2) +for(s=a,r="";;){if((b&1)===1)r=s+r +b=b>>>1 +if(b===0)break +s+=s}return r}, +eb(a,b,c){var s=b-a.length +if(s<=0)return a +return this.a6(c,s)+a}, +atV(a,b){var s=b-a.length +if(s<=0)return a +return a+this.a6(" ",s)}, +jR(a,b,c){var s,r,q,p +if(c<0||c>a.length)throw A.e(A.cy(c,0,a.length,null,null)) +if(typeof b=="string")return a.indexOf(b,c) +if(b instanceof A.nD){s=b.P5(a,c) +return s==null?-1:s.b.index}for(r=a.length,q=J.aFi(b),p=c;p<=r;++p)if(q.pb(b,a,p)!=null)return p +return-1}, +hR(a,b){return this.jR(a,b,0)}, +Bp(a,b,c){var s,r +if(c==null)c=a.length +else if(c<0||c>a.length)throw A.e(A.cy(c,0,a.length,null,null)) +s=b.length +r=a.length +if(c+s>r)c=r-s +return a.lastIndexOf(b,c)}, +Bo(a,b){return this.Bp(a,b,null)}, +an6(a,b,c){var s=a.length +if(c>s)throw A.e(A.cy(c,0,s,null,null)) +return A.aFx(a,b,c)}, +p(a,b){return this.an6(a,b,0)}, +b5(a,b){var s +if(a===b)s=0 +else s=a>6}r=r+((r&67108863)<<3)&536870911 +r^=r>>11 +return r+((r&16383)<<15)&536870911}, +gdO(a){return A.bZ(t.N)}, +gv(a){return a.length}, +h(a,b){if(!(b>=0&&b"))}, +gv(a){return J.cg(this.giO())}, +ga7(a){return J.eW(this.giO())}, +gbV(a){return J.mR(this.giO())}, +iG(a,b){var s=A.n(this) +return A.pC(J.a2n(this.giO(),b),s.c,s.y[1])}, +bm(a,b){return A.n(this).y[1].a(J.Ki(this.giO(),b))}, +ga3(a){return A.n(this).y[1].a(J.Kj(this.giO()))}, +gae(a){return A.n(this).y[1].a(J.Kk(this.giO()))}, +p(a,b){return J.aCq(this.giO(),b)}, +k(a){return J.dr(this.giO())}} +A.Lf.prototype={ +u(){return this.a.u()}, +gN(a){var s=this.a +return this.$ti.y[1].a(s.gN(s))}} +A.pB.prototype={ +giO(){return this.a}} +A.G0.prototype={$ia8:1} +A.Fk.prototype={ +h(a,b){return this.$ti.y[1].a(J.aK(this.a,b))}, +m(a,b,c){J.dR(this.a,b,this.$ti.c.a(c))}, +sv(a,b){J.aRk(this.a,b)}, +E(a,b){J.fF(this.a,this.$ti.c.a(b))}, +O(a,b){var s=this.$ti +J.aCn(this.a,A.pC(b,s.y[1],s.c))}, +fa(a,b){var s=b==null?null:new A.apS(this,b) +J.a2o(this.a,s)}, +F(a,b){return J.mS(this.a,b)}, +hX(a){return this.$ti.y[1].a(J.aRj(this.a))}, +wY(a,b,c){var s=this.$ti +return A.pC(J.aRa(this.a,b,c),s.c,s.y[1])}, +$ia8:1, +$iO:1} +A.apS.prototype={ +$2(a,b){var s=this.a.$ti.y[1] +return this.b.$2(s.a(a),s.a(b))}, +$S(){return this.a.$ti.i("m(1,1)")}} +A.eY.prototype={ +hk(a,b){return new A.eY(this.a,this.$ti.i("@<1>").bR(b).i("eY<1,2>"))}, +giO(){return this.a}} +A.pE.prototype={ +E(a,b){return this.a.E(0,this.$ti.c.a(b))}, +O(a,b){var s=this.$ti +this.a.O(0,A.pC(b,s.y[1],s.c))}, +F(a,b){return this.a.F(0,b)}, +kI(a,b){var s=this +if(s.b!=null)return s.Oo(b,!0) +return new A.pE(s.a.kI(0,b),null,s.$ti)}, +fU(a){var s=this +if(s.b!=null)return s.Oo(a,!1) +return new A.pE(s.a.fU(a),null,s.$ti)}, +Oo(a,b){var s,r=this.b,q=this.$ti,p=q.y[1],o=r==null?A.ks(p):r.$1$0(p) +for(p=this.a,p=p.gag(p),q=q.y[1];p.u();){s=q.a(p.gN(p)) +if(b===a.p(0,s))o.E(0,s)}return o}, +a7L(){var s=this.b,r=this.$ti.y[1],q=s==null?A.ks(r):s.$1$0(r) +q.O(0,this) +return q}, +hv(a){var s=this.b,r=this.$ti.y[1],q=s==null?A.ks(r):s.$1$0(r) +q.O(0,this) +return q}, +$ia8:1, +$ibg:1, +giO(){return this.a}} +A.pD.prototype={ +lt(a,b,c){return new A.pD(this.a,this.$ti.i("@<1,2>").bR(b).bR(c).i("pD<1,2,3,4>"))}, +az(a,b){return J.yj(this.a,b)}, +h(a,b){return this.$ti.i("4?").a(J.aK(this.a,b))}, +m(a,b,c){var s=this.$ti +J.dR(this.a,s.c.a(b),s.y[1].a(c))}, +bY(a,b,c){var s=this.$ti +return s.y[3].a(J.Kl(this.a,s.c.a(b),new A.a49(this,c)))}, +F(a,b){return this.$ti.i("4?").a(J.mS(this.a,b))}, +aj(a,b){J.pl(this.a,new A.a48(this,b))}, +gbX(a){var s=this.$ti +return A.pC(J.a2m(this.a),s.c,s.y[2])}, +geu(a){var s=this.$ti +return A.pC(J.aR9(this.a),s.y[1],s.y[3])}, +gv(a){return J.cg(this.a)}, +ga7(a){return J.eW(this.a)}, +gbV(a){return J.mR(this.a)}, +gj3(a){var s=J.aGn(this.a) +return s.jV(s,new A.a47(this),this.$ti.i("b1<3,4>"))}} +A.a49.prototype={ +$0(){return this.a.$ti.y[1].a(this.b.$0())}, +$S(){return this.a.$ti.i("2()")}} +A.a48.prototype={ +$2(a,b){var s=this.a.$ti +this.b.$2(s.y[2].a(a),s.y[3].a(b))}, +$S(){return this.a.$ti.i("~(1,2)")}} +A.a47.prototype={ +$1(a){var s=this.a.$ti +return new A.b1(s.y[2].a(a.a),s.y[3].a(a.b),s.i("b1<3,4>"))}, +$S(){return this.a.$ti.i("b1<3,4>(b1<1,2>)")}} +A.jn.prototype={ +k(a){return"LateInitializationError: "+this.a}} +A.fG.prototype={ +gv(a){return this.a.length}, +h(a,b){return this.a.charCodeAt(b)}} +A.aBT.prototype={ +$0(){return A.dc(null,t.H)}, +$S:9} +A.akR.prototype={} +A.a8.prototype={} +A.ax.prototype={ +gag(a){var s=this +return new A.bd(s,s.gv(s),A.n(s).i("bd"))}, +aj(a,b){var s,r=this,q=r.gv(r) +for(s=0;s").bR(c).i("ae<1,2>"))}, +Ca(a,b){var s,r,q=this,p=q.gv(q) +if(p===0)throw A.e(A.cj()) +s=q.bm(0,0) +for(r=1;rs)throw A.e(A.cy(r,0,s,"start",null))}}, +ga9s(){var s=J.cg(this.a),r=this.c +if(r==null||r>s)return s +return r}, +gajS(){var s=J.cg(this.a),r=this.b +if(r>s)return s +return r}, +gv(a){var s,r=J.cg(this.a),q=this.b +if(q>=r)return 0 +s=this.c +if(s==null||s>=r)return r-q +return s-q}, +bm(a,b){var s=this,r=s.gajS()+b +if(b<0||r>=s.ga9s())throw A.e(A.dk(b,s.gv(0),s,null,"index")) +return J.Ki(s.a,r)}, +iG(a,b){var s,r,q=this +A.eg(b,"count") +s=q.b+b +r=q.c +if(r!=null&&s>=r)return new A.hH(q.$ti.i("hH<1>")) +return A.jN(q.a,s,r,q.$ti.c)}, +ee(a,b){var s,r,q,p=this,o=p.b,n=p.a,m=J.aE(n),l=m.gv(n),k=p.c +if(k!=null&&k=o){r.d=null +return!1}r.d=p.bm(q,s);++r.c +return!0}} +A.f4.prototype={ +gag(a){return new A.nK(J.bb(this.a),this.b,A.n(this).i("nK<1,2>"))}, +gv(a){return J.cg(this.a)}, +ga7(a){return J.eW(this.a)}, +ga3(a){return this.b.$1(J.Kj(this.a))}, +gae(a){return this.b.$1(J.Kk(this.a))}, +bm(a,b){return this.b.$1(J.Ki(this.a,b))}} +A.pX.prototype={$ia8:1} +A.nK.prototype={ +u(){var s=this,r=s.b +if(r.u()){s.a=s.c.$1(r.gN(r)) +return!0}s.a=null +return!1}, +gN(a){var s=this.a +return s==null?this.$ti.y[1].a(s):s}} +A.ae.prototype={ +gv(a){return J.cg(this.a)}, +bm(a,b){return this.b.$1(J.Ki(this.a,b))}} +A.aY.prototype={ +gag(a){return new A.oB(J.bb(this.a),this.b)}, +jV(a,b,c){return new A.f4(this,b,this.$ti.i("@<1>").bR(c).i("f4<1,2>"))}} +A.oB.prototype={ +u(){var s,r +for(s=this.a,r=this.b;s.u();)if(r.$1(s.gN(s)))return!0 +return!1}, +gN(a){var s=this.a +return s.gN(s)}} +A.f0.prototype={ +gag(a){return new A.ki(J.bb(this.a),this.b,B.eD,this.$ti.i("ki<1,2>"))}} +A.ki.prototype={ +gN(a){var s=this.d +return s==null?this.$ti.y[1].a(s):s}, +u(){var s,r,q=this,p=q.c +if(p==null)return!1 +for(s=q.a,r=q.b;!p.u();){q.d=null +if(s.u()){q.c=null +p=J.bb(r.$1(s.gN(s))) +q.c=p}else return!1}p=q.c +q.d=p.gN(p) +return!0}} +A.rR.prototype={ +gag(a){return new A.RM(J.bb(this.a),this.b,A.n(this).i("RM<1>"))}} +A.A2.prototype={ +gv(a){var s=J.cg(this.a),r=this.b +if(s>r)return r +return s}, +$ia8:1} +A.RM.prototype={ +u(){if(--this.b>=0)return this.a.u() +this.b=-1 +return!1}, +gN(a){var s +if(this.b<0){this.$ti.c.a(null) +return null}s=this.a +return s.gN(s)}} +A.m5.prototype={ +iG(a,b){A.pr(b,"count") +A.eg(b,"count") +return new A.m5(this.a,this.b+b,A.n(this).i("m5<1>"))}, +gag(a){return new A.R8(J.bb(this.a),this.b)}} +A.uz.prototype={ +gv(a){var s=J.cg(this.a)-this.b +if(s>=0)return s +return 0}, +iG(a,b){A.pr(b,"count") +A.eg(b,"count") +return new A.uz(this.a,this.b+b,this.$ti)}, +$ia8:1} +A.R8.prototype={ +u(){var s,r +for(s=this.a,r=0;r"))}, +iG(a,b){A.eg(b,"count") +return this}, +ee(a,b){var s=this.$ti.c +return b?J.uR(0,s):J.B4(0,s)}, +f8(a){return this.ee(0,!0)}, +hv(a){return A.ks(this.$ti.c)}} +A.Mz.prototype={ +u(){return!1}, +gN(a){throw A.e(A.cj())}} +A.qa.prototype={ +gag(a){return new A.N_(J.bb(this.a),this.b)}, +gv(a){return J.cg(this.a)+this.b.gv(0)}, +ga7(a){return J.eW(this.a)&&!this.b.gag(0).u()}, +gbV(a){return J.mR(this.a)||!this.b.ga7(0)}, +p(a,b){return J.aCq(this.a,b)||this.b.p(0,b)}, +ga3(a){var s=J.bb(this.a) +if(s.u())return s.gN(s) +return this.b.ga3(0)}, +gae(a){var s,r=this.b,q=r.$ti,p=new A.ki(J.bb(r.a),r.b,B.eD,q.i("ki<1,2>")) +if(p.u()){s=p.d +if(s==null)s=q.y[1].a(s) +for(r=q.y[1];p.u();){s=p.d +if(s==null)s=r.a(s)}return s}return J.Kk(this.a)}} +A.N_.prototype={ +u(){var s,r=this +if(r.a.u())return!0 +s=r.b +if(s!=null){s=new A.ki(J.bb(s.a),s.b,B.eD,s.$ti.i("ki<1,2>")) +r.a=s +r.b=null +return s.u()}return!1}, +gN(a){var s=this.a +return s.gN(s)}} +A.cd.prototype={ +gag(a){return new A.kQ(J.bb(this.a),this.$ti.i("kQ<1>"))}} +A.kQ.prototype={ +u(){var s,r +for(s=this.a,r=this.$ti.c;s.u();)if(r.b(s.gN(s)))return!0 +return!1}, +gN(a){var s=this.a +return this.$ti.c.a(s.gN(s))}} +A.An.prototype={ +sv(a,b){throw A.e(A.af("Cannot change the length of a fixed-length list"))}, +E(a,b){throw A.e(A.af("Cannot add to a fixed-length list"))}, +O(a,b){throw A.e(A.af("Cannot add to a fixed-length list"))}, +F(a,b){throw A.e(A.af("Cannot remove from a fixed-length list"))}, +hX(a){throw A.e(A.af("Cannot remove from a fixed-length list"))}} +A.Sm.prototype={ +m(a,b,c){throw A.e(A.af("Cannot modify an unmodifiable list"))}, +sv(a,b){throw A.e(A.af("Cannot change the length of an unmodifiable list"))}, +E(a,b){throw A.e(A.af("Cannot add to an unmodifiable list"))}, +O(a,b){throw A.e(A.af("Cannot add to an unmodifiable list"))}, +F(a,b){throw A.e(A.af("Cannot remove from an unmodifiable list"))}, +fa(a,b){throw A.e(A.af("Cannot modify an unmodifiable list"))}, +hX(a){throw A.e(A.af("Cannot remove from an unmodifiable list"))}} +A.wv.prototype={} +A.cc.prototype={ +gv(a){return J.cg(this.a)}, +bm(a,b){var s=this.a,r=J.aE(s) +return r.bm(s,r.gv(s)-1-b)}} +A.f8.prototype={ +gB(a){var s=this._hashCode +if(s!=null)return s +s=664597*B.c.gB(this.a)&536870911 +this._hashCode=s +return s}, +k(a){return'Symbol("'+this.a+'")'}, +j(a,b){if(b==null)return!1 +return b instanceof A.f8&&this.a===b.a}, +$iE6:1} +A.Jg.prototype={} +A.am.prototype={$r:"+(1,2)",$s:1} +A.Yd.prototype={$r:"+boundaryEnd,boundaryStart(1,2)",$s:2} +A.Hh.prototype={$r:"+endGlyphHeight,startGlyphHeight(1,2)",$s:5} +A.Ye.prototype={$r:"+end,start(1,2)",$s:4} +A.Yf.prototype={$r:"+key,value(1,2)",$s:6} +A.Yg.prototype={$r:"+localPosition,paragraph(1,2)",$s:7} +A.Yh.prototype={$r:"+representation,targetSize(1,2)",$s:8} +A.hx.prototype={$r:"+(1,2,3)",$s:10} +A.Yi.prototype={$r:"+ascent,bottomHeight,subtextHeight(1,2,3)",$s:11} +A.Yj.prototype={$r:"+breaks,graphemes,words(1,2,3)",$s:12} +A.Hi.prototype={$r:"+completer,recorder,scene(1,2,3)",$s:13} +A.Hj.prototype={$r:"+data,event,timeStamp(1,2,3)",$s:14} +A.Yk.prototype={$r:"+domSize,representation,targetSize(1,2,3)",$s:15} +A.Yl.prototype={$r:"+large,medium,small(1,2,3)",$s:16} +A.Ym.prototype={$r:"+textConstraints,tileSize,titleY(1,2,3)",$s:17} +A.Hk.prototype={$r:"+domBlurListener,domFocusListener,element,semanticsNodeId(1,2,3,4)",$s:19} +A.Yn.prototype={$r:"+height,width,x,y(1,2,3,4)",$s:20} +A.Hl.prototype={$r:"+queue,started,target,timer(1,2,3,4)",$s:21} +A.pM.prototype={} +A.uj.prototype={ +lt(a,b,c){var s=A.n(this) +return A.aIP(this,s.c,s.y[1],b,c)}, +ga7(a){return this.gv(this)===0}, +gbV(a){return this.gv(this)!==0}, +k(a){return A.abI(this)}, +m(a,b,c){A.aCM()}, +bY(a,b,c){A.aCM()}, +F(a,b){A.aCM()}, +gj3(a){return new A.jZ(this.apa(0),A.n(this).i("jZ>"))}, +apa(a){var s=this +return function(){var r=a +var q=0,p=1,o=[],n,m,l +return function $async$gj3(b,c,d){if(c===1){o.push(d) +q=p}for(;;)switch(q){case 0:n=s.gbX(s),n=n.gag(n),m=A.n(s).i("b1<1,2>") +case 2:if(!n.u()){q=3 +break}l=n.gN(n) +q=4 +return b.b=new A.b1(l,s.h(0,l),m),1 +case 4:q=2 +break +case 3:return 0 +case 1:return b.c=o.at(-1),3}}}}, +pa(a,b,c,d){var s=A.w(c,d) +this.aj(0,new A.a4R(this,b,s)) +return s}, +$iaT:1} +A.a4R.prototype={ +$2(a,b){var s=this.b.$2(a,b) +this.c.m(0,s.a,s.b)}, +$S(){return A.n(this.a).i("~(1,2)")}} +A.bT.prototype={ +gv(a){return this.b.length}, +gQT(){var s=this.$keys +if(s==null){s=Object.keys(this.a) +this.$keys=s}return s}, +az(a,b){if(typeof b!="string")return!1 +if("__proto__"===b)return!1 +return this.a.hasOwnProperty(b)}, +h(a,b){if(!this.az(0,b))return null +return this.b[this.a[b]]}, +aj(a,b){var s,r,q=this.gQT(),p=this.b +for(s=q.length,r=0;r"))}, +geu(a){return new A.tf(this.b,this.$ti.i("tf<2>"))}} +A.tf.prototype={ +gv(a){return this.a.length}, +ga7(a){return 0===this.a.length}, +gbV(a){return 0!==this.a.length}, +gag(a){var s=this.a +return new A.oP(s,s.length,this.$ti.i("oP<1>"))}} +A.oP.prototype={ +gN(a){var s=this.d +return s==null?this.$ti.c.a(s):s}, +u(){var s=this,r=s.c +if(r>=s.b){s.d=null +return!1}s.d=s.a[r] +s.c=r+1 +return!0}} +A.d0.prototype={ +ml(){var s=this,r=s.$map +if(r==null){r=new A.qv(s.$ti.i("qv<1,2>")) +A.aN5(s.a,r) +s.$map=r}return r}, +az(a,b){return this.ml().az(0,b)}, +h(a,b){return this.ml().h(0,b)}, +aj(a,b){this.ml().aj(0,b)}, +gbX(a){var s=this.ml() +return new A.bs(s,A.n(s).i("bs<1>"))}, +geu(a){var s=this.ml() +return new A.bf(s,A.n(s).i("bf<2>"))}, +gv(a){return this.ml().a}} +A.zk.prototype={ +E(a,b){A.aCN()}, +O(a,b){A.aCN()}, +F(a,b){A.aCN()}} +A.fH.prototype={ +gv(a){return this.b}, +ga7(a){return this.b===0}, +gbV(a){return this.b!==0}, +gag(a){var s,r=this,q=r.$keys +if(q==null){q=Object.keys(r.a) +r.$keys=q}s=q +return new A.oP(s,s.length,r.$ti.i("oP<1>"))}, +p(a,b){if(typeof b!="string")return!1 +if("__proto__"===b)return!1 +return this.a.hasOwnProperty(b)}, +hv(a){return A.eu(this,this.$ti.c)}} +A.dW.prototype={ +gv(a){return this.a.length}, +ga7(a){return this.a.length===0}, +gbV(a){return this.a.length!==0}, +gag(a){var s=this.a +return new A.oP(s,s.length,this.$ti.i("oP<1>"))}, +ml(){var s,r,q,p,o=this,n=o.$map +if(n==null){n=new A.qv(o.$ti.i("qv<1,1>")) +for(s=o.a,r=s.length,q=0;q")}} +A.nw.prototype={ +$0(){return this.a.$1$0(this.$ti.y[0])}, +$1(a){return this.a.$1$1(a,this.$ti.y[0])}, +$2(a,b){return this.a.$1$2(a,b,this.$ti.y[0])}, +$S(){return A.b2_(A.a1T(this.a),this.$ti)}} +A.B6.prototype={ +gYO(){var s=this.a +if(s instanceof A.f8)return s +return this.a=new A.f8(s)}, +gau6(){var s,r,q,p,o,n=this +if(n.c===1)return B.pw +s=n.d +r=J.aE(s) +q=r.gv(s)-J.cg(n.e)-n.f +if(q===0)return B.pw +p=[] +for(o=0;o>>0}, +k(a){return"Closure '"+this.$_name+"' of "+("Instance of '"+A.Po(this.a)+"'")}} +A.Qk.prototype={ +k(a){return"RuntimeError: "+this.a}} +A.fs.prototype={ +gv(a){return this.a}, +ga7(a){return this.a===0}, +gbV(a){return this.a!==0}, +gbX(a){return new A.bs(this,A.n(this).i("bs<1>"))}, +geu(a){return new A.bf(this,A.n(this).i("bf<2>"))}, +gj3(a){return new A.et(this,A.n(this).i("et<1,2>"))}, +az(a,b){var s,r +if(typeof b=="string"){s=this.b +if(s==null)return!1 +return s[b]!=null}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=this.c +if(r==null)return!1 +return r[b]!=null}else return this.Y0(b)}, +Y0(a){var s=this.d +if(s==null)return!1 +return this.p0(s[this.p_(a)],a)>=0}, +an7(a,b){return new A.bs(this,A.n(this).i("bs<1>")).jG(0,new A.aaV(this,b))}, +O(a,b){J.pl(b,new A.aaU(this))}, +h(a,b){var s,r,q,p,o=null +if(typeof b=="string"){s=this.b +if(s==null)return o +r=s[b] +q=r==null?o:r.b +return q}else if(typeof b=="number"&&(b&0x3fffffff)===b){p=this.c +if(p==null)return o +r=p[b] +q=r==null?o:r.b +return q}else return this.Y2(b)}, +Y2(a){var s,r,q=this.d +if(q==null)return null +s=q[this.p_(a)] +r=this.p0(s,a) +if(r<0)return null +return s[r].b}, +m(a,b,c){var s,r,q=this +if(typeof b=="string"){s=q.b +q.Nc(s==null?q.b=q.FF():s,b,c)}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=q.c +q.Nc(r==null?q.c=q.FF():r,b,c)}else q.Y4(b,c)}, +Y4(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.d=p.FF() +s=p.p_(a) +r=o[s] +if(r==null)o[s]=[p.FG(a,b)] +else{q=p.p0(r,a) +if(q>=0)r[q].b=b +else r.push(p.FG(a,b))}}, +bY(a,b,c){var s,r,q=this +if(q.az(0,b)){s=q.h(0,b) +return s==null?A.n(q).y[1].a(s):s}r=c.$0() +q.m(0,b,r) +return r}, +F(a,b){var s=this +if(typeof b=="string")return s.S1(s.b,b) +else if(typeof b=="number"&&(b&0x3fffffff)===b)return s.S1(s.c,b) +else return s.Y3(b)}, +Y3(a){var s,r,q,p,o=this,n=o.d +if(n==null)return null +s=o.p_(a) +r=n[s] +q=o.p0(r,a) +if(q<0)return null +p=r.splice(q,1)[0] +o.TH(p) +if(r.length===0)delete n[s] +return p.b}, +a5(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=s.f=null +s.a=0 +s.FD()}}, +aj(a,b){var s=this,r=s.e,q=s.r +while(r!=null){b.$2(r.a,r.b) +if(q!==s.r)throw A.e(A.c6(s)) +r=r.c}}, +Nc(a,b,c){var s=a[b] +if(s==null)a[b]=this.FG(b,c) +else s.b=c}, +S1(a,b){var s +if(a==null)return null +s=a[b] +if(s==null)return null +this.TH(s) +delete a[b] +return s.b}, +FD(){this.r=this.r+1&1073741823}, +FG(a,b){var s,r=this,q=new A.abr(a,b) +if(r.e==null)r.e=r.f=q +else{s=r.f +s.toString +q.d=s +r.f=s.c=q}++r.a +r.FD() +return q}, +TH(a){var s=this,r=a.d,q=a.c +if(r==null)s.e=q +else r.c=q +if(q==null)s.f=r +else q.d=r;--s.a +s.FD()}, +p_(a){return J.C(a)&1073741823}, +p0(a,b){var s,r +if(a==null)return-1 +s=a.length +for(r=0;r"]=s +delete s[""] +return s}} +A.aaV.prototype={ +$1(a){return J.d(this.a.h(0,a),this.b)}, +$S(){return A.n(this.a).i("Q(1)")}} +A.aaU.prototype={ +$2(a,b){this.a.m(0,a,b)}, +$S(){return A.n(this.a).i("~(1,2)")}} +A.abr.prototype={} +A.bs.prototype={ +gv(a){return this.a.a}, +ga7(a){return this.a.a===0}, +gag(a){var s=this.a +return new A.eK(s,s.r,s.e)}, +p(a,b){return this.a.az(0,b)}, +aj(a,b){var s=this.a,r=s.e,q=s.r +while(r!=null){b.$1(r.a) +if(q!==s.r)throw A.e(A.c6(s)) +r=r.c}}} +A.eK.prototype={ +gN(a){return this.d}, +u(){var s,r=this,q=r.a +if(r.b!==q.r)throw A.e(A.c6(q)) +s=r.c +if(s==null){r.d=null +return!1}else{r.d=s.a +r.c=s.c +return!0}}} +A.bf.prototype={ +gv(a){return this.a.a}, +ga7(a){return this.a.a===0}, +gag(a){var s=this.a +return new A.dl(s,s.r,s.e)}, +aj(a,b){var s=this.a,r=s.e,q=s.r +while(r!=null){b.$1(r.b) +if(q!==s.r)throw A.e(A.c6(s)) +r=r.c}}} +A.dl.prototype={ +gN(a){return this.d}, +u(){var s,r=this,q=r.a +if(r.b!==q.r)throw A.e(A.c6(q)) +s=r.c +if(s==null){r.d=null +return!1}else{r.d=s.b +r.c=s.c +return!0}}} +A.et.prototype={ +gv(a){return this.a.a}, +ga7(a){return this.a.a===0}, +gag(a){var s=this.a +return new A.O7(s,s.r,s.e,this.$ti.i("O7<1,2>"))}} +A.O7.prototype={ +gN(a){var s=this.d +s.toString +return s}, +u(){var s,r=this,q=r.a +if(r.b!==q.r)throw A.e(A.c6(q)) +s=r.c +if(s==null){r.d=null +return!1}else{r.d=new A.b1(s.a,s.b,r.$ti.i("b1<1,2>")) +r.c=s.c +return!0}}} +A.B8.prototype={ +p_(a){return A.pi(a)&1073741823}, +p0(a,b){var s,r,q +if(a==null)return-1 +s=a.length +for(r=0;r0;){--q;--s +j[q]=r[s]}}return A.abu(j,k)}} +A.Ya.prototype={ +y5(){return[this.a,this.b]}, +j(a,b){if(b==null)return!1 +return b instanceof A.Ya&&this.$s===b.$s&&J.d(this.a,b.a)&&J.d(this.b,b.b)}, +gB(a){return A.T(this.$s,this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Yb.prototype={ +y5(){return[this.a,this.b,this.c]}, +j(a,b){var s=this +if(b==null)return!1 +return b instanceof A.Yb&&s.$s===b.$s&&J.d(s.a,b.a)&&J.d(s.b,b.b)&&J.d(s.c,b.c)}, +gB(a){var s=this +return A.T(s.$s,s.a,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Yc.prototype={ +y5(){return this.a}, +j(a,b){if(b==null)return!1 +return b instanceof A.Yc&&this.$s===b.$s&&A.aZ_(this.a,b.a)}, +gB(a){return A.T(this.$s,A.bI(this.a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.nD.prototype={ +k(a){return"RegExp/"+this.a+"/"+this.b.flags}, +gRc(){var s=this,r=s.c +if(r!=null)return r +r=s.b +return s.c=A.aDr(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,"g")}, +gafB(){var s=this,r=s.d +if(r!=null)return r +r=s.b +return s.d=A.aDr(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,"y")}, +n_(a){var s=this.b.exec(a) +if(s==null)return null +return new A.xd(s)}, +a1p(a){var s=this.n_(a) +if(s!=null)return s.b[0] +return null}, +H9(a,b,c){var s=b.length +if(c>s)throw A.e(A.cy(c,0,s,null,null)) +return new A.SU(this,b,c)}, +qx(a,b){return this.H9(0,b,0)}, +P5(a,b){var s,r=this.gRc() +r.lastIndex=b +s=r.exec(a) +if(s==null)return null +return new A.xd(s)}, +a9A(a,b){var s,r=this.gafB() +r.lastIndex=b +s=r.exec(a) +if(s==null)return null +return new A.xd(s)}, +pb(a,b,c){if(c<0||c>b.length)throw A.e(A.cy(c,0,b.length,null,null)) +return this.a9A(b,c)}, +$iaJF:1} +A.xd.prototype={ +gbI(a){return this.b.index}, +gbv(a){var s=this.b +return s.index+s[0].length}, +h(a,b){return this.b[b]}, +$iqI:1, +$iPD:1} +A.SU.prototype={ +gag(a){return new A.F4(this.a,this.b,this.c)}} +A.F4.prototype={ +gN(a){var s=this.d +return s==null?t.Qz.a(s):s}, +u(){var s,r,q,p,o,n,m=this,l=m.b +if(l==null)return!1 +s=m.c +r=l.length +if(s<=r){q=m.a +p=q.P5(l,s) +if(p!=null){m.d=p +o=p.gbv(0) +if(p.b.index===o){s=!1 +if(q.b.unicode){q=m.c +n=q+1 +if(n=55296&&r<=56319){s=l.charCodeAt(n) +s=s>=56320&&s<=57343}}}o=(s?o+1:o)+1}m.c=o +return!0}}m.b=m.d=null +return!1}} +A.w8.prototype={ +gbv(a){return this.a+this.c.length}, +h(a,b){if(b!==0)A.a0(A.ah8(b,null)) +return this.c}, +$iqI:1, +gbI(a){return this.a}} +A.ZT.prototype={ +gag(a){return new A.ZU(this.a,this.b,this.c)}, +ga3(a){var s=this.b,r=this.a.indexOf(s,this.c) +if(r>=0)return new A.w8(r,s) +throw A.e(A.cj())}} +A.ZU.prototype={ +u(){var s,r,q=this,p=q.c,o=q.b,n=o.length,m=q.a,l=m.length +if(p+n>l){q.d=null +return!1}s=m.indexOf(o,p) +if(s<0){q.c=l+1 +q.d=null +return!1}r=s+n +q.d=new A.w8(s,o) +q.c=r===q.c?r+1:r +return!0}, +gN(a){var s=this.d +s.toString +return s}} +A.TG.prototype={ +aS(){var s=this.b +if(s===this)throw A.e(new A.jn("Local '"+this.a+"' has not been initialized.")) +return s}, +bd(){var s=this.b +if(s===this)throw A.e(A.abg(this.a)) +return s}, +sdL(a){var s=this +if(s.b!==s)throw A.e(new A.jn("Local '"+s.a+"' has already been initialized.")) +s.b=a}} +A.atr.prototype={ +cD(){var s,r=this,q=r.b +if(q===r){s=r.c.$0() +if(r.b!==r)throw A.e(new A.jn("Local '' has been assigned during initialization.")) +r.b=s +q=s}return q}} +A.ve.prototype={ +gdO(a){return B.XO}, +zJ(a,b,c){A.mI(a,b,c) +return c==null?new Uint8Array(a,b):new Uint8Array(a,b,c)}, +Hh(a){return this.zJ(a,0,null)}, +V9(a,b,c){A.mI(a,b,c) +return new Int32Array(a,b,c)}, +Va(a,b,c){throw A.e(A.af("Int64List not supported by dart2js."))}, +V7(a,b,c){A.mI(a,b,c) +return new Float32Array(a,b,c)}, +V8(a,b,c){A.mI(a,b,c) +return new Float64Array(a,b,c)}, +zI(a,b,c){A.mI(a,b,c) +return c==null?new DataView(a,b):new DataView(a,b,c)}, +V6(a){return this.zI(a,0,null)}, +$icB:1, +$ik7:1} +A.qU.prototype={$iqU:1} +A.BV.prototype={ +gc9(a){if(((a.$flags|0)&2)!==0)return new A.a0b(a.buffer) +else return a.buffer}, +gWL(a){return a.BYTES_PER_ELEMENT}, +aeA(a,b,c,d){var s=A.cy(b,0,c,d,null) +throw A.e(s)}, +NV(a,b,c,d){if(b>>>0!==b||b>c)this.aeA(a,b,c,d)}} +A.a0b.prototype={ +zJ(a,b,c){var s=A.aVn(this.a,b,c) +s.$flags=3 +return s}, +Hh(a){return this.zJ(0,0,null)}, +V9(a,b,c){var s=A.aVk(this.a,b,c) +s.$flags=3 +return s}, +Va(a,b,c){J.aCo(this.a,b,c)}, +V7(a,b,c){var s=A.aVh(this.a,b,c) +s.$flags=3 +return s}, +V8(a,b,c){var s=A.aVj(this.a,b,c) +s.$flags=3 +return s}, +zI(a,b,c){var s=A.aVf(this.a,b,c) +s.$flags=3 +return s}, +V6(a){return this.zI(0,0,null)}, +$ik7:1} +A.BQ.prototype={ +gdO(a){return B.XP}, +gWL(a){return 1}, +Lu(a,b,c){throw A.e(A.af("Int64 accessor not supported by dart2js."))}, +LY(a,b,c,d){throw A.e(A.af("Int64 accessor not supported by dart2js."))}, +$icB:1, +$idb:1} +A.vf.prototype={ +gv(a){return a.length}, +ajn(a,b,c,d,e){var s,r,q=a.length +this.NV(a,b,q,"start") +this.NV(a,c,q,"end") +if(b>c)throw A.e(A.cy(b,0,c,null,null)) +s=c-b +if(e<0)throw A.e(A.bF(e,null)) +r=d.length +if(r-e0){s=Date.now()-r.c +if(s>(p+1)*o)p=B.f.jw(s,o)}q.c=p +r.d.$1(q)}, +$S:13} +A.Th.prototype={ +hL(a,b){var s,r=this +if(b==null)b=r.$ti.c.a(b) +if(!r.b)r.a.hD(b) +else{s=r.a +if(r.$ti.i("av<1>").b(b))s.NN(b) +else s.nY(b)}}, +ou(a,b){var s=this.a +if(this.b)s.hd(new A.da(a,b)) +else s.nW(new A.da(a,b))}} +A.aAl.prototype={ +$1(a){return this.a.$2(0,a)}, +$S:56} +A.aAm.prototype={ +$2(a,b){this.a.$2(1,new A.Ad(a,b))}, +$S:351} +A.aBf.prototype={ +$2(a,b){this.a(a,b)}, +$S:362} +A.aAj.prototype={ +$0(){var s,r=this.a,q=r.a +q===$&&A.a() +s=q.b +if((s&1)!==0?(q.gjE().e&4)!==0:(s&2)===0){r.b=!0 +return}r=r.c!=null?2:0 +this.b.$2(r,null)}, +$S:0} +A.aAk.prototype={ +$1(a){var s=this.a.c!=null?2:0 +this.b.$2(s,null)}, +$S:46} +A.Tj.prototype={ +a64(a,b){var s=new A.aoz(a) +this.a=A.rP(new A.aoB(this,a),new A.aoC(s),new A.aoD(this,s),!1,b)}} +A.aoz.prototype={ +$0(){A.dx(new A.aoA(this.a))}, +$S:13} +A.aoA.prototype={ +$0(){this.a.$2(0,null)}, +$S:0} +A.aoC.prototype={ +$0(){this.a.$0()}, +$S:0} +A.aoD.prototype={ +$0(){var s=this.a +if(s.b){s.b=!1 +this.b.$0()}}, +$S:0} +A.aoB.prototype={ +$0(){var s=this.a,r=s.a +r===$&&A.a() +if((r.b&4)===0){s.c=new A.au($.aq,t.LR) +if(s.b){s.b=!1 +A.dx(new A.aoy(this.b))}return s.c}}, +$S:370} +A.aoy.prototype={ +$0(){this.a.$2(2,null)}, +$S:0} +A.Gv.prototype={ +k(a){return"IterationMarker("+this.b+", "+A.k(this.a)+")"}} +A.mE.prototype={ +gN(a){return this.b}, +aip(a,b){var s,r,q +a=a +b=b +s=this.a +for(;;)try{r=s(this,a,b) +return r}catch(q){b=q +a=1}}, +u(){var s,r,q,p,o,n=this,m=null,l=0 +for(;;){s=n.d +if(s!=null)try{if(s.u()){r=s +n.b=r.gN(r) +return!0}else n.d=null}catch(q){m=q +l=1 +n.d=null}p=n.aip(l,m) +if(1===p)return!0 +if(0===p){n.b=null +o=n.e +if(o==null||o.length===0){n.a=A.aLA +return!1}n.a=o.pop() +l=0 +m=null +continue}if(2===p){l=0 +m=null +continue}if(3===p){m=n.c +n.c=null +o=n.e +if(o==null||o.length===0){n.b=null +n.a=A.aLA +throw m +return!1}n.a=o.pop() +l=1 +continue}throw A.e(A.a5("sync*"))}return!1}, +UM(a){var s,r,q=this +if(a instanceof A.jZ){s=a.a() +r=q.e +if(r==null)r=q.e=[] +r.push(q.a) +q.a=s +return 2}else{q.d=J.bb(a) +return 2}}} +A.jZ.prototype={ +gag(a){return new A.mE(this.a())}} +A.da.prototype={ +k(a){return A.k(this.a)}, +$icm:1, +gtg(){return this.b}} +A.cT.prototype={ +giv(){return!0}} +A.t5.prototype={ +ms(){}, +mt(){}} +A.oG.prototype={ +sZ0(a,b){throw A.e(A.af(u.X))}, +sZ3(a,b){throw A.e(A.af(u.X))}, +gpK(a){return new A.cT(this,A.n(this).i("cT<1>"))}, +go4(){return this.c<4}, +S2(a){var s=a.CW,r=a.ch +if(s==null)this.d=r +else s.ch=r +if(r==null)this.e=s +else r.CW=s +a.CW=a +a.ch=a}, +Gm(a,b,c,d){var s,r,q,p,o,n,m,l,k=this +if((k.c&4)!==0)return A.aL3(c,A.n(k).c) +s=$.aq +r=d?1:0 +q=b!=null?32:0 +p=A.ap2(s,a) +o=A.aEq(s,b) +n=c==null?A.aMN():c +m=new A.t5(k,p,o,n,s,r|q,A.n(k).i("t5<1>")) +m.CW=m +m.ch=m +m.ay=k.c&1 +l=k.e +k.e=m +m.ch=null +m.CW=l +if(l==null)k.d=m +else l.ch=m +if(k.d===m)A.a1P(k.a) +return m}, +RQ(a){var s,r=this +A.n(r).i("t5<1>").a(a) +if(a.ch===a)return null +s=a.ay +if((s&2)!==0)a.ay=s|4 +else{r.S2(a) +if((r.c&2)===0&&r.d==null)r.E0()}return null}, +RS(a){}, +RT(a){}, +nU(){if((this.c&4)!==0)return new A.fQ("Cannot add new events after calling close") +return new A.fQ("Cannot add new events while doing an addStream")}, +E(a,b){if(!this.go4())throw A.e(this.nU()) +this.iN(b)}, +hh(a,b){var s +if(!this.go4())throw A.e(this.nU()) +s=A.a1O(a,b) +this.lj(s.a,s.b)}, +aO(a){var s,r,q=this +if((q.c&4)!==0){s=q.r +s.toString +return s}if(!q.go4())throw A.e(q.nU()) +q.c|=4 +r=q.r +if(r==null)r=q.r=new A.au($.aq,t.W) +q.mw() +return r}, +hc(a,b){this.lj(a,b)}, +mg(){var s=this.f +s.toString +this.f=null +this.c&=4294967287 +s.a.hD(null)}, +EU(a){var s,r,q,p=this,o=p.c +if((o&2)!==0)throw A.e(A.a5(u.c)) +s=p.d +if(s==null)return +r=o&1 +p.c=o^3 +while(s!=null){o=s.ay +if((o&1)===r){s.ay=o|2 +a.$1(s) +o=s.ay^=1 +q=s.ch +if((o&4)!==0)p.S2(s) +s.ay&=4294967293 +s=q}else s=s.ch}p.c&=4294967293 +if(p.d==null)p.E0()}, +E0(){if((this.c&4)!==0){var s=this.r +if((s.a&30)===0)s.hD(null)}A.a1P(this.b)}, +sYZ(a){return this.a=a}, +sYV(a,b){return this.b=b}} +A.l0.prototype={ +go4(){return A.oG.prototype.go4.call(this)&&(this.c&2)===0}, +nU(){if((this.c&2)!==0)return new A.fQ(u.c) +return this.a3V()}, +iN(a){var s=this,r=s.d +if(r==null)return +if(r===s.e){s.c|=2 +r.i7(0,a) +s.c&=4294967293 +if(s.d==null)s.E0() +return}s.EU(new A.ayP(s,a))}, +lj(a,b){if(this.d==null)return +this.EU(new A.ayR(this,a,b))}, +mw(){var s=this +if(s.d!=null)s.EU(new A.ayQ(s)) +else s.r.hD(null)}} +A.ayP.prototype={ +$1(a){a.i7(0,this.b)}, +$S(){return this.a.$ti.i("~(iQ<1>)")}} +A.ayR.prototype={ +$1(a){a.hc(this.b,this.c)}, +$S(){return this.a.$ti.i("~(iQ<1>)")}} +A.ayQ.prototype={ +$1(a){a.mg()}, +$S(){return this.a.$ti.i("~(iQ<1>)")}} +A.kS.prototype={ +iN(a){var s +for(s=this.d;s!=null;s=s.ch)s.lc(new A.mq(a))}, +lj(a,b){var s +for(s=this.d;s!=null;s=s.ch)s.lc(new A.wR(a,b))}, +mw(){var s=this.d +if(s!=null)for(;s!=null;s=s.ch)s.lc(B.h_) +else this.r.hD(null)}} +A.a8S.prototype={ +$0(){var s,r,q,p,o,n,m=null +try{m=this.a.$0()}catch(q){s=A.a1(q) +r=A.aH(q) +p=s +o=r +n=A.JM(p,o) +p=new A.da(p,o) +this.b.hd(p) +return}this.b.pT(m)}, +$S:0} +A.a8R.prototype={ +$0(){var s,r,q,p,o,n,m=null +try{m=this.a.$0()}catch(q){s=A.a1(q) +r=A.aH(q) +p=s +o=r +n=A.JM(p,o) +p=new A.da(p,o) +this.b.hd(p) +return}this.b.pT(m)}, +$S:0} +A.a8Q.prototype={ +$0(){var s,r,q,p,o,n,m=this,l=m.a +if(l==null){m.c.a(null) +m.b.pT(null)}else{s=null +try{s=l.$0()}catch(p){r=A.a1(p) +q=A.aH(p) +l=r +o=q +n=A.JM(l,o) +l=new A.da(l,o) +m.b.hd(l) +return}m.b.pT(s)}}, +$S:0} +A.a8U.prototype={ +$2(a,b){var s=this,r=s.a,q=--r.b +if(r.a!=null){r.a=null +r.d=a +r.c=b +if(q===0||s.c)s.d.hd(new A.da(a,b))}else if(q===0&&!s.c){q=r.d +q.toString +r=r.c +r.toString +s.d.hd(new A.da(q,r))}}, +$S:36} +A.a8T.prototype={ +$1(a){var s,r,q,p,o,n,m=this,l=m.a,k=--l.b,j=l.a +if(j!=null){J.dR(j,m.b,a) +if(J.d(k,0)){l=m.d +s=A.b([],l.i("D<0>")) +for(q=j,p=q.length,o=0;o")) +r=b==null?1:3 +this.tv(new A.kV(s,r,a,b,this.$ti.i("@<1>").bR(c).i("kV<1,2>"))) +return s}, +bo(a,b){return this.hZ(a,null,b)}, +Tu(a,b,c){var s=new A.au($.aq,c.i("au<0>")) +this.tv(new A.kV(s,19,a,b,this.$ti.i("@<1>").bR(c).i("kV<1,2>"))) +return s}, +qI(a,b){var s=this.$ti,r=$.aq,q=new A.au(r,s) +if(r!==B.aE)a=A.aMt(a,r) +this.tv(new A.kV(q,2,b,a,s.i("kV<1,1>"))) +return q}, +on(a){return this.qI(a,null)}, +i_(a){var s=this.$ti,r=new A.au($.aq,s) +this.tv(new A.kV(r,8,a,null,s.i("kV<1,1>"))) +return r}, +ajl(a){this.a=this.a&1|16 +this.c=a}, +xO(a){this.a=a.a&30|this.a&1 +this.c=a.c}, +tv(a){var s=this,r=s.a +if(r<=3){a.a=s.c +s.c=a}else{if((r&4)!==0){r=s.c +if((r.a&24)===0){r.tv(a) +return}s.xO(r)}A.y1(null,null,s.b,new A.as9(s,a))}}, +RK(a){var s,r,q,p,o,n=this,m={} +m.a=a +if(a==null)return +s=n.a +if(s<=3){r=n.c +n.c=a +if(r!=null){q=a.a +for(p=a;q!=null;p=q,q=o)o=q.a +p.a=r}}else{if((s&4)!==0){s=n.c +if((s.a&24)===0){s.RK(a) +return}n.xO(s)}m.a=n.yS(a) +A.y1(null,null,n.b,new A.ash(m,n))}}, +uo(){var s=this.c +this.c=null +return this.yS(s)}, +yS(a){var s,r,q +for(s=a,r=null;s!=null;r=s,s=q){q=s.a +s.a=r}return r}, +E5(a){var s,r,q,p=this +p.a^=2 +try{a.hZ(new A.ase(p),new A.asf(p),t.P)}catch(q){s=A.a1(q) +r=A.aH(q) +A.dx(new A.asg(p,s,r))}}, +pT(a){var s,r=this +if(r.$ti.i("av<1>").b(a))if(a instanceof A.au)A.asc(a,r,!0) +else r.E5(a) +else{s=r.uo() +r.a=8 +r.c=a +A.ta(r,s)}}, +nY(a){var s=this,r=s.uo() +s.a=8 +s.c=a +A.ta(s,r)}, +a7T(a){var s,r,q=this +if((a.a&16)!==0){s=q.b===a.b +s=!(s||s)}else s=!1 +if(s)return +r=q.uo() +q.xO(a) +A.ta(q,r)}, +hd(a){var s=this.uo() +this.ajl(a) +A.ta(this,s)}, +a7S(a,b){this.hd(new A.da(a,b))}, +hD(a){if(this.$ti.i("av<1>").b(a)){this.NN(a) +return}this.Nw(a)}, +Nw(a){this.a^=2 +A.y1(null,null,this.b,new A.asb(this,a))}, +NN(a){if(a instanceof A.au){A.asc(a,this,!1) +return}this.E5(a)}, +nW(a){this.a^=2 +A.y1(null,null,this.b,new A.asa(this,a))}, +$iav:1} +A.as9.prototype={ +$0(){A.ta(this.a,this.b)}, +$S:0} +A.ash.prototype={ +$0(){A.ta(this.b,this.a.a)}, +$S:0} +A.ase.prototype={ +$1(a){var s,r,q,p=this.a +p.a^=2 +try{p.nY(p.$ti.c.a(a))}catch(q){s=A.a1(q) +r=A.aH(q) +p.hd(new A.da(s,r))}}, +$S:46} +A.asf.prototype={ +$2(a,b){this.a.hd(new A.da(a,b))}, +$S:48} +A.asg.prototype={ +$0(){this.a.hd(new A.da(this.b,this.c))}, +$S:0} +A.asd.prototype={ +$0(){A.asc(this.a.a,this.b,!0)}, +$S:0} +A.asb.prototype={ +$0(){this.a.nY(this.b)}, +$S:0} +A.asa.prototype={ +$0(){this.a.hd(this.b)}, +$S:0} +A.ask.prototype={ +$0(){var s,r,q,p,o,n,m,l,k=this,j=null +try{q=k.a.a +j=q.b.b.hu(q.d)}catch(p){s=A.a1(p) +r=A.aH(p) +if(k.c&&k.b.a.c.a===s){q=k.a +q.c=k.b.a.c}else{q=s +o=r +if(o==null)o=A.a2Y(q) +n=k.a +n.c=new A.da(q,o) +q=n}q.b=!0 +return}if(j instanceof A.au&&(j.a&24)!==0){if((j.a&16)!==0){q=k.a +q.c=j.c +q.b=!0}return}if(t.L0.b(j)){m=k.b.a +l=new A.au(m.b,m.$ti) +j.hZ(new A.asl(l,m),new A.asm(l),t.H) +q=k.a +q.c=l +q.b=!1}}, +$S:0} +A.asl.prototype={ +$1(a){this.a.a7T(this.b)}, +$S:46} +A.asm.prototype={ +$2(a,b){this.a.hd(new A.da(a,b))}, +$S:48} +A.asj.prototype={ +$0(){var s,r,q,p,o,n +try{q=this.a +p=q.a +q.c=p.b.b.Cl(p.d,this.b)}catch(o){s=A.a1(o) +r=A.aH(o) +q=s +p=r +if(p==null)p=A.a2Y(q) +n=this.a +n.c=new A.da(q,p) +n.b=!0}}, +$S:0} +A.asi.prototype={ +$0(){var s,r,q,p,o,n,m,l=this +try{s=l.a.a.c +p=l.b +if(p.a.asD(s)&&p.a.e!=null){p.c=p.a.aq5(s) +p.b=!1}}catch(o){r=A.a1(o) +q=A.aH(o) +p=l.a.a.c +if(p.a===r){n=l.b +n.c=p +p=n}else{p=r +n=q +if(n==null)n=A.a2Y(p) +m=l.b +m.c=new A.da(p,n) +p=m}p.b=!0}}, +$S:0} +A.Ti.prototype={} +A.cs.prototype={ +giv(){return!1}, +au3(a){return a.alM(0,this).bo(new A.alO(a),t.z)}, +gv(a){var s={},r=new A.au($.aq,t.wJ) +s.a=0 +this.d3(new A.alM(s,this),!0,new A.alN(s,r),r.ga7R()) +return r}} +A.alK.prototype={ +$1(a){var s=this.a +s.i7(0,a) +s.tB()}, +$S(){return this.b.i("bk(0)")}} +A.alL.prototype={ +$2(a,b){var s=this.a +s.hc(a,b) +s.tB()}, +$S:189} +A.alO.prototype={ +$1(a){return this.a.aO(0)}, +$S:395} +A.alM.prototype={ +$1(a){++this.a.a}, +$S(){return A.n(this.b).i("~(cs.T)")}} +A.alN.prototype={ +$0(){this.b.pT(this.a.a)}, +$S:0} +A.DX.prototype={ +giv(){return this.a.giv()}, +d3(a,b,c,d){return this.a.d3(a,b,c,d)}, +kK(a,b,c){return this.d3(a,null,b,c)}} +A.RE.prototype={} +A.ts.prototype={ +gpK(a){return new A.df(this,A.n(this).i("df<1>"))}, +gah3(){if((this.b&8)===0)return this.a +return this.a.c}, +tJ(){var s,r,q=this +if((q.b&8)===0){s=q.a +return s==null?q.a=new A.xp():s}r=q.a +s=r.c +return s==null?r.c=new A.xp():s}, +gjE(){var s=this.a +return(this.b&8)!==0?s.c:s}, +jx(){if((this.b&4)!==0)return new A.fQ("Cannot add event after closing") +return new A.fQ("Cannot add event while adding a stream")}, +alN(a,b,c){var s,r,q,p=this,o=p.b +if(o>=4)throw A.e(p.jx()) +if((o&2)!==0){o=new A.au($.aq,t.LR) +o.hD(null) +return o}o=p.a +s=c===!0 +r=new A.au($.aq,t.LR) +q=s?A.aYc(p):p.ga6o() +q=b.d3(p.ga6h(p),s,p.ga7M(),q) +s=p.b +if((s&1)!==0?(p.gjE().e&4)!==0:(s&2)===0)q.rz(0) +p.a=new A.ZR(o,r,q) +p.b|=8 +return r}, +P1(){var s=this.c +if(s==null)s=this.c=(this.b&2)!==0?$.yf():new A.au($.aq,t.W) +return s}, +E(a,b){if(this.b>=4)throw A.e(this.jx()) +this.i7(0,b)}, +hh(a,b){var s +if(this.b>=4)throw A.e(this.jx()) +s=A.a1O(a,b) +this.hc(s.a,s.b)}, +UQ(a){return this.hh(a,null)}, +aO(a){var s=this,r=s.b +if((r&4)!==0)return s.P1() +if(r>=4)throw A.e(s.jx()) +s.tB() +return s.P1()}, +tB(){var s=this.b|=4 +if((s&1)!==0)this.mw() +else if((s&3)===0)this.tJ().E(0,B.h_)}, +i7(a,b){var s=this.b +if((s&1)!==0)this.iN(b) +else if((s&3)===0)this.tJ().E(0,new A.mq(b))}, +hc(a,b){var s=this.b +if((s&1)!==0)this.lj(a,b) +else if((s&3)===0)this.tJ().E(0,new A.wR(a,b))}, +mg(){var s=this.a +this.a=s.c +this.b&=4294967287 +s.a.hD(null)}, +Gm(a,b,c,d){var s,r,q,p=this +if((p.b&3)!==0)throw A.e(A.a5("Stream has already been listened to.")) +s=A.aYn(p,a,b,c,d,A.n(p).c) +r=p.gah3() +if(((p.b|=1)&8)!==0){q=p.a +q.c=s +q.b.rK(0)}else p.a=s +s.ajm(r) +s.F2(new A.ayK(p)) +return s}, +RQ(a){var s,r,q,p,o,n,m,l=this,k=null +if((l.b&8)!==0)k=l.a.aR(0) +l.a=null +l.b=l.b&4294967286|2 +s=l.r +if(s!=null)if(k==null)try{r=s.$0() +if(t.uz.b(r))k=r}catch(o){q=A.a1(o) +p=A.aH(o) +n=new A.au($.aq,t.W) +n.nW(new A.da(q,p)) +k=n}else k=k.i_(s) +m=new A.ayJ(l) +if(k!=null)k=k.i_(m) +else m.$0() +return k}, +RS(a){if((this.b&8)!==0)this.a.b.rz(0) +A.a1P(this.e)}, +RT(a){if((this.b&8)!==0)this.a.b.rK(0) +A.a1P(this.f)}, +sYZ(a){return this.d=a}, +sZ0(a,b){return this.e=b}, +sZ3(a,b){return this.f=b}, +sYV(a,b){return this.r=b}} +A.ayK.prototype={ +$0(){A.a1P(this.a.d)}, +$S:0} +A.ayJ.prototype={ +$0(){var s=this.a.c +if(s!=null&&(s.a&30)===0)s.hD(null)}, +$S:0} +A.a_0.prototype={ +iN(a){this.gjE().i7(0,a)}, +lj(a,b){this.gjE().hc(a,b)}, +mw(){this.gjE().mg()}} +A.Tk.prototype={ +iN(a){this.gjE().lc(new A.mq(a))}, +lj(a,b){this.gjE().lc(new A.wR(a,b))}, +mw(){this.gjE().lc(B.h_)}} +A.iP.prototype={} +A.p2.prototype={} +A.df.prototype={ +gB(a){return(A.f5(this.a)^892482866)>>>0}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.df&&b.a===this.a}} +A.oI.prototype={ +FK(){return this.w.RQ(this)}, +ms(){this.w.RS(this)}, +mt(){this.w.RT(this)}} +A.ST.prototype={ +aR(a){var s=this.b.aR(0) +return s.i_(new A.ao2(this))}} +A.ao3.prototype={ +$2(a,b){var s=this.a +s.hc(a,b) +s.mg()}, +$S:48} +A.ao2.prototype={ +$0(){this.a.a.hD(null)}, +$S:13} +A.ZR.prototype={} +A.iQ.prototype={ +ajm(a){var s=this +if(a==null)return +s.r=a +if(a.c!=null){s.e=(s.e|128)>>>0 +a.x5(s)}}, +ru(a){this.a=A.ap2(this.d,a)}, +rz(a){var s,r,q=this,p=q.e +if((p&8)!==0)return +s=(p+256|4)>>>0 +q.e=s +if(p<256){r=q.r +if(r!=null)if(r.a===1)r.a=3}if((p&4)===0&&(s&64)===0)q.F2(q.gyE())}, +rK(a){var s=this,r=s.e +if((r&8)!==0)return +if(r>=256){r=s.e=r-256 +if(r<256)if((r&128)!==0&&s.r.c!=null)s.r.x5(s) +else{r=(r&4294967291)>>>0 +s.e=r +if((r&64)===0)s.F2(s.gyH())}}}, +aR(a){var s=this,r=(s.e&4294967279)>>>0 +s.e=r +if((r&8)===0)s.E3() +r=s.f +return r==null?$.yf():r}, +E3(){var s,r=this,q=r.e=(r.e|8)>>>0 +if((q&128)!==0){s=r.r +if(s.a===1)s.a=3}if((q&64)===0)r.r=null +r.f=r.FK()}, +i7(a,b){var s=this.e +if((s&8)!==0)return +if(s<64)this.iN(b) +else this.lc(new A.mq(b))}, +hc(a,b){var s +if(t.Lt.b(a))A.aDL(a,b) +s=this.e +if((s&8)!==0)return +if(s<64)this.lj(a,b) +else this.lc(new A.wR(a,b))}, +mg(){var s=this,r=s.e +if((r&8)!==0)return +r=(r|2)>>>0 +s.e=r +if(r<64)s.mw() +else s.lc(B.h_)}, +ms(){}, +mt(){}, +FK(){return null}, +lc(a){var s,r=this,q=r.r +if(q==null)q=r.r=new A.xp() +q.E(0,a) +s=r.e +if((s&128)===0){s=(s|128)>>>0 +r.e=s +if(s<256)q.x5(r)}}, +iN(a){var s=this,r=s.e +s.e=(r|64)>>>0 +s.d.wD(s.a,a) +s.e=(s.e&4294967231)>>>0 +s.E9((r&4)!==0)}, +lj(a,b){var s,r=this,q=r.e,p=new A.ap4(r,a,b) +if((q&1)!==0){r.e=(q|16)>>>0 +r.E3() +s=r.f +if(s!=null&&s!==$.yf())s.i_(p) +else p.$0()}else{p.$0() +r.E9((q&4)!==0)}}, +mw(){var s,r=this,q=new A.ap3(r) +r.E3() +r.e=(r.e|16)>>>0 +s=r.f +if(s!=null&&s!==$.yf())s.i_(q) +else q.$0()}, +F2(a){var s=this,r=s.e +s.e=(r|64)>>>0 +a.$0() +s.e=(s.e&4294967231)>>>0 +s.E9((r&4)!==0)}, +E9(a){var s,r,q=this,p=q.e +if((p&128)!==0&&q.r.c==null){p=q.e=(p&4294967167)>>>0 +s=!1 +if((p&4)!==0)if(p<256){s=q.r +s=s==null?null:s.c==null +s=s!==!1}if(s){p=(p&4294967291)>>>0 +q.e=p}}for(;;a=r){if((p&8)!==0){q.r=null +return}r=(p&4)!==0 +if(a===r)break +q.e=(p^64)>>>0 +if(r)q.ms() +else q.mt() +p=(q.e&4294967231)>>>0 +q.e=p}if((p&128)!==0&&p<256)q.r.x5(q)}, +$iw7:1} +A.ap4.prototype={ +$0(){var s,r,q=this.a,p=q.e +if((p&8)!==0&&(p&16)===0)return +q.e=(p|64)>>>0 +s=q.b +p=this.b +r=q.d +if(t.hK.b(s))r.avd(s,p,this.c) +else r.wD(s,p) +q.e=(q.e&4294967231)>>>0}, +$S:0} +A.ap3.prototype={ +$0(){var s=this.a,r=s.e +if((r&16)===0)return +s.e=(r|74)>>>0 +s.d.wC(s.c) +s.e=(s.e&4294967231)>>>0}, +$S:0} +A.xG.prototype={ +d3(a,b,c,d){return this.a.Gm(a,d,c,b===!0)}, +n4(a){return this.d3(a,null,null,null)}, +YE(a,b){return this.d3(a,null,null,b)}, +kK(a,b,c){return this.d3(a,null,b,c)}} +A.UC.prototype={ +glN(a){return this.a}, +slN(a,b){return this.a=b}} +A.mq.prototype={ +Ks(a){a.iN(this.b)}} +A.wR.prototype={ +Ks(a){a.lj(this.b,this.c)}} +A.arb.prototype={ +Ks(a){a.mw()}, +glN(a){return null}, +slN(a,b){throw A.e(A.a5("No events after a done."))}} +A.xp.prototype={ +x5(a){var s=this,r=s.a +if(r===1)return +if(r>=1){s.a=1 +return}A.dx(new A.avx(s,a)) +s.a=1}, +E(a,b){var s=this,r=s.c +if(r==null)s.b=s.c=b +else{r.slN(0,b) +s.c=b}}} +A.avx.prototype={ +$0(){var s,r,q=this.a,p=q.a +q.a=0 +if(p===3)return +s=q.b +r=s.glN(s) +q.b=r +if(r==null)q.c=null +s.Ks(this.b)}, +$S:0} +A.wV.prototype={ +ru(a){}, +rz(a){var s=this.a +if(s>=0)this.a=s+2}, +rK(a){var s=this,r=s.a-2 +if(r<0)return +if(r===0){s.a=1 +A.dx(s.gRl())}else s.a=r}, +aR(a){this.a=-1 +this.c=null +return $.yf()}, +agf(){var s,r=this,q=r.a-1 +if(q===0){r.a=-1 +s=r.c +if(s!=null){r.c=null +r.b.wC(s)}}else r.a=q}, +$iw7:1} +A.p1.prototype={ +gN(a){if(this.c)return this.b +return null}, +u(){var s,r=this,q=r.a +if(q!=null){if(r.c){s=new A.au($.aq,t.tq) +r.b=s +r.c=!1 +q.rK(0) +return s}throw A.e(A.a5("Already waiting for next."))}return r.aet()}, +aet(){var s,r,q=this,p=q.b +if(p!=null){s=new A.au($.aq,t.tq) +q.b=s +r=p.d3(q.gafU(),!0,q.gafW(),q.gag2()) +if(q.b!=null)q.a=r +return s}return $.aO1()}, +aR(a){var s=this,r=s.a,q=s.b +s.b=null +if(r!=null){s.a=null +if(!s.c)q.hD(!1) +else s.c=!1 +return r.aR(0)}return $.yf()}, +afV(a){var s,r,q=this +if(q.a==null)return +s=q.b +q.b=a +q.c=!0 +s.pT(!0) +if(q.c){r=q.a +if(r!=null)r.rz(0)}}, +ag3(a,b){var s=this,r=s.a,q=s.b +s.b=s.a=null +if(r!=null)q.hd(new A.da(a,b)) +else q.nW(new A.da(a,b))}, +afX(){var s=this,r=s.a,q=s.b +s.b=s.a=null +if(r!=null)q.nY(!1) +else q.Nw(!1)}} +A.G1.prototype={ +d3(a,b,c,d){return A.aL3(c,this.$ti.c)}, +kK(a,b,c){return this.d3(a,null,b,c)}, +giv(){return!0}} +A.tj.prototype={ +d3(a,b,c,d){var s=null,r=new A.GN(s,s,s,s,this.$ti.i("GN<1>")) +r.d=new A.auT(this,r) +return r.Gm(a,d,c,b===!0)}, +kK(a,b,c){return this.d3(a,null,b,c)}, +giv(){return this.a}} +A.auT.prototype={ +$0(){this.a.b.$1(this.b)}, +$S:0} +A.GN.prototype={ +alO(a){var s=this.b +if(s>=4)throw A.e(this.jx()) +if((s&1)!==0)this.gjE().i7(0,a)}, +alI(a,b){var s=this.b +if(s>=4)throw A.e(this.jx()) +if((s&1)!==0){s=this.gjE() +s.hc(a,b==null?B.dF:b)}}, +VH(){var s=this,r=s.b +if((r&4)!==0)return +if(r>=4)throw A.e(s.jx()) +r|=4 +s.b=r +if((r&1)!==0)s.gjE().mg()}, +gpK(a){throw A.e(A.af("Not available"))}, +$iOy:1} +A.Ga.prototype={ +giv(){return this.a.giv()}, +d3(a,b,c,d){var s=$.aq,r=b===!0?1:0,q=A.ap2(s,a),p=A.aEq(s,d) +s=new A.x_(this,q,p,c,s,r|32,this.$ti.i("x_<1,2>")) +s.x=this.a.kK(s.gabh(),s.gabp(),s.gabI()) +return s}, +kK(a,b,c){return this.d3(a,null,b,c)}} +A.x_.prototype={ +i7(a,b){if((this.e&2)!==0)return +this.a3W(0,b)}, +hc(a,b){if((this.e&2)!==0)return +this.a3X(a,b)}, +ms(){var s=this.x +if(s!=null)s.rz(0)}, +mt(){var s=this.x +if(s!=null)s.rK(0)}, +FK(){var s=this.x +if(s!=null){this.x=null +return s.aR(0)}return null}, +abi(a){this.w.abj(a,this)}, +abJ(a,b){this.hc(a,b)}, +abq(){this.mg()}} +A.GE.prototype={ +abj(a,b){var s,r,q,p,o,n=null +try{n=this.b.$1(a)}catch(q){s=A.a1(q) +r=A.aH(q) +p=s +o=r +A.JM(p,o) +b.hc(p,o) +return}b.i7(0,n)}} +A.aAa.prototype={} +A.aB8.prototype={ +$0(){A.aHS(this.a,this.b)}, +$S:0} +A.axC.prototype={ +wC(a){var s,r,q +try{if(B.aE===$.aq){a.$0() +return}A.aMw(null,null,this,a)}catch(q){s=A.a1(q) +r=A.aH(q) +A.y0(s,r)}}, +avi(a,b){var s,r,q +try{if(B.aE===$.aq){a.$1(b) +return}A.aMy(null,null,this,a,b)}catch(q){s=A.a1(q) +r=A.aH(q) +A.y0(s,r)}}, +wD(a,b){return this.avi(a,b,t.z)}, +avc(a,b,c){var s,r,q +try{if(B.aE===$.aq){a.$2(b,c) +return}A.aMx(null,null,this,a,b,c)}catch(q){s=A.a1(q) +r=A.aH(q) +A.y0(s,r)}}, +avd(a,b,c){var s=t.z +return this.avc(a,b,c,s,s)}, +Vj(a,b,c){return new A.axG(this,a,c,b)}, +ame(a,b,c,d){return new A.axD(this,a,c,d,b)}, +Hr(a){return new A.axE(this,a)}, +amf(a,b){return new A.axF(this,a,b)}, +h(a,b){return null}, +av9(a){if($.aq===B.aE)return a.$0() +return A.aMw(null,null,this,a)}, +hu(a){return this.av9(a,t.z)}, +avh(a,b){if($.aq===B.aE)return a.$1(b) +return A.aMy(null,null,this,a,b)}, +Cl(a,b){var s=t.z +return this.avh(a,b,s,s)}, +avb(a,b,c){if($.aq===B.aE)return a.$2(b,c) +return A.aMx(null,null,this,a,b,c)}, +a_5(a,b,c){var s=t.z +return this.avb(a,b,c,s,s,s)}, +auz(a){return a}, +KJ(a){var s=t.z +return this.auz(a,s,s,s)}} +A.axG.prototype={ +$1(a){return this.a.Cl(this.b,a)}, +$S(){return this.d.i("@<0>").bR(this.c).i("1(2)")}} +A.axD.prototype={ +$2(a,b){return this.a.a_5(this.b,a,b)}, +$S(){return this.e.i("@<0>").bR(this.c).bR(this.d).i("1(2,3)")}} +A.axE.prototype={ +$0(){return this.a.wC(this.b)}, +$S:0} +A.axF.prototype={ +$1(a){return this.a.wD(this.b,a)}, +$S(){return this.c.i("~(0)")}} +A.mv.prototype={ +gv(a){return this.a}, +ga7(a){return this.a===0}, +gbV(a){return this.a!==0}, +gbX(a){return new A.tb(this,A.n(this).i("tb<1>"))}, +geu(a){var s=A.n(this) +return A.v5(new A.tb(this,s.i("tb<1>")),new A.ass(this),s.c,s.y[1])}, +az(a,b){var s,r +if(typeof b=="string"&&b!=="__proto__"){s=this.b +return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c +return r==null?!1:r[b]!=null}else return this.Ou(b)}, +Ou(a){var s=this.d +if(s==null)return!1 +return this.hF(this.Pp(s,a),a)>=0}, +h(a,b){var s,r,q +if(typeof b=="string"&&b!=="__proto__"){s=this.b +r=s==null?null:A.aEt(s,b) +return r}else if(typeof b=="number"&&(b&1073741823)===b){q=this.c +r=q==null?null:A.aEt(q,b) +return r}else return this.Pn(0,b)}, +Pn(a,b){var s,r,q=this.d +if(q==null)return null +s=this.Pp(q,b) +r=this.hF(s,b) +return r<0?null:s[r+1]}, +m(a,b,c){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +q.Oc(s==null?q.b=A.aEu():s,b,c)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +q.Oc(r==null?q.c=A.aEu():r,b,c)}else q.SJ(b,c)}, +SJ(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.d=A.aEu() +s=p.ia(a) +r=o[s] +if(r==null){A.aEv(o,s,[a,b]);++p.a +p.e=null}else{q=p.hF(r,a) +if(q>=0)r[q+1]=b +else{r.push(a,b);++p.a +p.e=null}}}, +bY(a,b,c){var s,r,q=this +if(q.az(0,b)){s=q.h(0,b) +return s==null?A.n(q).y[1].a(s):s}r=c.$0() +q.m(0,b,r) +return r}, +F(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.mh(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.mh(s.c,b) +else return s.qc(0,b)}, +qc(a,b){var s,r,q,p,o=this,n=o.d +if(n==null)return null +s=o.ia(b) +r=n[s] +q=o.hF(r,b) +if(q<0)return null;--o.a +o.e=null +p=r.splice(q,2)[1] +if(0===r.length)delete n[s] +return p}, +aj(a,b){var s,r,q,p,o,n=this,m=n.Eg() +for(s=m.length,r=A.n(n).y[1],q=0;q"))}, +p(a,b){return this.a.az(0,b)}} +A.x3.prototype={ +gN(a){var s=this.d +return s==null?this.$ti.c.a(s):s}, +u(){var s=this,r=s.b,q=s.c,p=s.a +if(r!==p.e)throw A.e(A.c6(p)) +else if(q>=r.length){s.d=null +return!1}else{s.d=r[q] +s.c=q+1 +return!0}}} +A.Gz.prototype={ +h(a,b){if(!this.y.$1(b))return null +return this.a2e(b)}, +m(a,b,c){this.a2g(b,c)}, +az(a,b){if(!this.y.$1(b))return!1 +return this.a2d(b)}, +F(a,b){if(!this.y.$1(b))return null +return this.a2f(b)}, +p_(a){return this.x.$1(a)&1073741823}, +p0(a,b){var s,r,q +if(a==null)return-1 +s=a.length +for(r=this.w,q=0;q"))}, +gag(a){return new A.hu(this,this.pU(),A.n(this).i("hu<1>"))}, +gv(a){return this.a}, +ga7(a){return this.a===0}, +gbV(a){return this.a!==0}, +p(a,b){var s,r +if(typeof b=="string"&&b!=="__proto__"){s=this.b +return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c +return r==null?!1:r[b]!=null}else return this.Ej(b)}, +Ej(a){var s=this.d +if(s==null)return!1 +return this.hF(s[this.ia(a)],a)>=0}, +E(a,b){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +return q.tC(s==null?q.b=A.aEw():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +return q.tC(r==null?q.c=A.aEw():r,b)}else return q.fd(0,b)}, +fd(a,b){var s,r,q=this,p=q.d +if(p==null)p=q.d=A.aEw() +s=q.ia(b) +r=p[s] +if(r==null)p[s]=[b] +else{if(q.hF(r,b)>=0)return!1 +r.push(b)}++q.a +q.e=null +return!0}, +O(a,b){var s +for(s=J.bb(b);s.u();)this.E(0,s.gN(s))}, +F(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.mh(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.mh(s.c,b) +else return s.qc(0,b)}, +qc(a,b){var s,r,q,p=this,o=p.d +if(o==null)return!1 +s=p.ia(b) +r=o[s] +q=p.hF(r,b) +if(q<0)return!1;--p.a +p.e=null +r.splice(q,1) +if(0===r.length)delete o[s] +return!0}, +a5(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=null +s.a=0}}, +pU(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.e +if(h!=null)return h +h=A.bz(i.a,null,!1,t.z) +s=i.b +r=0 +if(s!=null){q=Object.getOwnPropertyNames(s) +p=q.length +for(o=0;o=r.length){s.d=null +return!1}else{s.d=r[q] +s.c=q+1 +return!0}}} +A.hw.prototype={ +yD(){return new A.hw(A.n(this).i("hw<1>"))}, +Rd(a){return new A.hw(a.i("hw<0>"))}, +afI(){return this.Rd(t.z)}, +gag(a){var s=this,r=new A.oQ(s,s.r,A.n(s).i("oQ<1>")) +r.c=s.e +return r}, +gv(a){return this.a}, +ga7(a){return this.a===0}, +gbV(a){return this.a!==0}, +p(a,b){var s,r +if(typeof b=="string"&&b!=="__proto__"){s=this.b +if(s==null)return!1 +return s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c +if(r==null)return!1 +return r[b]!=null}else return this.Ej(b)}, +Ej(a){var s=this.d +if(s==null)return!1 +return this.hF(s[this.ia(a)],a)>=0}, +aj(a,b){var s=this,r=s.e,q=s.r +while(r!=null){b.$1(r.a) +if(q!==s.r)throw A.e(A.c6(s)) +r=r.b}}, +ga3(a){var s=this.e +if(s==null)throw A.e(A.a5("No elements")) +return s.a}, +gae(a){var s=this.f +if(s==null)throw A.e(A.a5("No elements")) +return s.a}, +E(a,b){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +return q.tC(s==null?q.b=A.aEx():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +return q.tC(r==null?q.c=A.aEx():r,b)}else return q.fd(0,b)}, +fd(a,b){var s,r,q=this,p=q.d +if(p==null)p=q.d=A.aEx() +s=q.ia(b) +r=p[s] +if(r==null)p[s]=[q.Ed(b)] +else{if(q.hF(r,b)>=0)return!1 +r.push(q.Ed(b))}return!0}, +F(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.mh(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.mh(s.c,b) +else return s.qc(0,b)}, +qc(a,b){var s,r,q,p,o=this,n=o.d +if(n==null)return!1 +s=o.ia(b) +r=n[s] +q=o.hF(r,b) +if(q<0)return!1 +p=r.splice(q,1)[0] +if(0===r.length)delete n[s] +o.Od(p) +return!0}, +EL(a,b){var s,r,q,p,o=this,n=o.e +for(;n!=null;n=r){s=n.a +r=n.b +q=o.r +p=a.$1(s) +if(q!==o.r)throw A.e(A.c6(o)) +if(!0===p)o.F(0,s)}}, +a5(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=s.f=null +s.a=0 +s.Ec()}}, +tC(a,b){if(a[b]!=null)return!1 +a[b]=this.Ed(b) +return!0}, +mh(a,b){var s +if(a==null)return!1 +s=a[b] +if(s==null)return!1 +this.Od(s) +delete a[b] +return!0}, +Ec(){this.r=this.r+1&1073741823}, +Ed(a){var s,r=this,q=new A.au2(a) +if(r.e==null)r.e=r.f=q +else{s=r.f +s.toString +q.c=s +r.f=s.b=q}++r.a +r.Ec() +return q}, +Od(a){var s=this,r=a.c,q=a.b +if(r==null)s.e=q +else r.b=q +if(q==null)s.f=r +else q.c=r;--s.a +s.Ec()}, +ia(a){return J.C(a)&1073741823}, +hF(a,b){var s,r +if(a==null)return-1 +s=a.length +for(r=0;r"))}, +gv(a){return this.b}, +ga3(a){var s +if(this.b===0)throw A.e(A.a5("No such element")) +s=this.c +s.toString +return s}, +gae(a){var s +if(this.b===0)throw A.e(A.a5("No such element")) +s=this.c.j7$ +s.toString +return s}, +ga7(a){return this.b===0}, +ym(a,b,c){var s,r,q=this +if(b.j5$!=null)throw A.e(A.a5("LinkedListEntry is already in a LinkedList"));++q.a +b.j5$=q +s=q.b +if(s===0){b.j6$=b +q.c=b.j7$=b +q.b=s+1 +return}r=a.j7$ +r.toString +b.j7$=r +b.j6$=a +a.j7$=r.j6$=b +if(c&&a==q.c)q.c=b +q.b=s+1}, +TG(a){var s,r,q=this;++q.a +s=a.j6$ +s.j7$=a.j7$ +a.j7$.j6$=s +r=--q.b +a.j5$=a.j6$=a.j7$=null +if(r===0)q.c=null +else if(a===q.c)q.c=s}} +A.xa.prototype={ +gN(a){var s=this.c +return s==null?this.$ti.c.a(s):s}, +u(){var s=this,r=s.a +if(s.b!==r.a)throw A.e(A.c6(s)) +if(r.b!==0)r=s.e&&s.d===r.ga3(0) +else r=!0 +if(r){s.c=null +return!1}s.e=!0 +r=s.d +s.c=r +s.d=r.j6$ +return!0}} +A.ix.prototype={ +glN(a){var s=this.j5$ +if(s==null||s.ga3(0)===this.j6$)return null +return this.j6$}, +gZn(){var s=this.j5$ +if(s==null||this===s.ga3(0))return null +return this.j7$}} +A.a_.prototype={ +gag(a){return new A.bd(a,this.gv(a),A.bR(a).i("bd"))}, +bm(a,b){return this.h(a,b)}, +aj(a,b){var s,r=this.gv(a) +for(s=0;s"))}, +Lk(a,b){return new A.cd(a,b.i("cd<0>"))}, +jV(a,b,c){return new A.ae(a,b,A.bR(a).i("@").bR(c).i("ae<1,2>"))}, +iG(a,b){return A.jN(a,b,null,A.bR(a).i("a_.E"))}, +KQ(a,b){return A.jN(a,0,A.mK(b,"count",t.S),A.bR(a).i("a_.E"))}, +ee(a,b){var s,r,q,p,o=this +if(o.ga7(a)){s=A.bR(a).i("a_.E") +return b?J.uR(0,s):J.B4(0,s)}r=o.h(a,0) +q=A.bz(o.gv(a),r,b,A.bR(a).i("a_.E")) +for(p=1;p").bR(b).i("eY<1,2>"))}, +hX(a){var s,r=this +if(r.gv(a)===0)throw A.e(A.cj()) +s=r.h(a,r.gv(a)-1) +r.sv(a,r.gv(a)-1) +return s}, +fa(a,b){var s=b==null?A.b10():b +A.Ro(a,0,this.gv(a)-1,s)}, +V(a,b){var s=A.a6(a,A.bR(a).i("a_.E")) +B.b.O(s,b) +return s}, +cr(a,b,c){var s,r=this.gv(a) +if(c==null)c=r +A.dZ(b,c,r,null,null) +s=A.a6(this.wY(a,b,c),A.bR(a).i("a_.E")) +return s}, +hb(a,b){return this.cr(a,b,null)}, +wY(a,b,c){A.dZ(b,c,this.gv(a),null,null) +return A.jN(a,b,c,A.bR(a).i("a_.E"))}, +apv(a,b,c,d){var s +A.dZ(b,c,this.gv(a),null,null) +for(s=b;sp.gv(q))throw A.e(A.aIl()) +if(r=0;--o)this.m(a,b+o,p.h(q,r+o)) +else for(o=0;o"))}, +pa(a,b,c,d){var s,r,q,p,o,n=A.w(c,d) +for(s=J.bb(this.gbX(a)),r=A.bR(a).i("aU.V");s.u();){q=s.gN(s) +p=this.h(a,q) +o=b.$2(q,p==null?r.a(p):p) +n.m(0,o.a,o.b)}return n}, +UP(a,b){var s,r +for(s=b.gag(b);s.u();){r=s.gN(s) +this.m(a,r.a,r.b)}}, +k0(a,b){var s,r,q,p,o=A.bR(a),n=A.b([],o.i("D")) +for(s=J.bb(this.gbX(a)),o=o.i("aU.V");s.u();){r=s.gN(s) +q=this.h(a,r) +if(b.$2(r,q==null?o.a(q):q))n.push(r)}for(o=n.length,p=0;p"))}, +k(a){return A.abI(a)}, +$iaT:1} +A.abH.prototype={ +$1(a){var s=this.a,r=J.aK(s,a) +if(r==null)r=A.bR(s).i("aU.V").a(r) +return new A.b1(a,r,A.bR(s).i("b1"))}, +$S(){return A.bR(this.a).i("b1(aU.K)")}} +A.abJ.prototype={ +$2(a,b){var s,r=this.a +if(!r.a)this.b.a+=", " +r.a=!1 +r=this.b +s=A.k(a) +r.a=(r.a+=s)+": " +s=A.k(b) +r.a+=s}, +$S:95} +A.GD.prototype={ +gv(a){return J.cg(this.a)}, +ga7(a){return J.eW(this.a)}, +gbV(a){return J.mR(this.a)}, +ga3(a){var s=this.a,r=J.dF(s) +s=r.h(s,J.Kj(r.gbX(s))) +return s==null?this.$ti.y[1].a(s):s}, +gae(a){var s=this.a,r=J.dF(s) +s=r.h(s,J.Kk(r.gbX(s))) +return s==null?this.$ti.y[1].a(s):s}, +gag(a){var s=this.a +return new A.Wq(J.bb(J.a2m(s)),s,this.$ti.i("Wq<1,2>"))}} +A.Wq.prototype={ +u(){var s=this,r=s.a +if(r.u()){s.c=J.aK(s.b,r.gN(r)) +return!0}s.c=null +return!1}, +gN(a){var s=this.c +return s==null?this.$ti.y[1].a(s):s}} +A.a0a.prototype={ +m(a,b,c){throw A.e(A.af("Cannot modify unmodifiable map"))}, +F(a,b){throw A.e(A.af("Cannot modify unmodifiable map"))}, +bY(a,b,c){throw A.e(A.af("Cannot modify unmodifiable map"))}} +A.Bv.prototype={ +lt(a,b,c){var s=this.a +return s.lt(s,b,c)}, +h(a,b){return this.a.h(0,b)}, +m(a,b,c){this.a.m(0,b,c)}, +bY(a,b,c){return this.a.bY(0,b,c)}, +az(a,b){return this.a.az(0,b)}, +aj(a,b){this.a.aj(0,b)}, +ga7(a){var s=this.a +return s.ga7(s)}, +gbV(a){var s=this.a +return s.gbV(s)}, +gv(a){var s=this.a +return s.gv(s)}, +gbX(a){var s=this.a +return s.gbX(s)}, +F(a,b){return this.a.F(0,b)}, +k(a){var s=this.a +return s.k(s)}, +geu(a){var s=this.a +return s.geu(s)}, +gj3(a){var s=this.a +return s.gj3(s)}, +pa(a,b,c,d){var s=this.a +return s.pa(s,b,c,d)}, +$iaT:1} +A.mk.prototype={ +lt(a,b,c){var s=this.a +return new A.mk(s.lt(s,b,c),b.i("@<0>").bR(c).i("mk<1,2>"))}} +A.FS.prototype={ +aeT(a,b){var s=this +s.b=b +s.a=a +if(a!=null)a.b=s +if(b!=null)b.a=s}, +akw(){var s,r=this,q=r.a +if(q!=null)q.b=r.b +s=r.b +if(s!=null)s.a=q +r.a=r.b=null}} +A.FR.prototype={ +RY(a){var s,r,q=this +q.c=null +s=q.a +if(s!=null)s.b=q.b +r=q.b +if(r!=null)r.a=s +q.a=q.b=null +return q.d}, +f6(a){var s=this,r=s.c +if(r!=null)--r.b +s.c=null +s.akw() +return s.d}, +xI(){return this}, +$iaHD:1, +gAv(){return this.d}} +A.FT.prototype={ +xI(){return null}, +RY(a){throw A.e(A.cj())}, +gAv(){throw A.e(A.cj())}} +A.zV.prototype={ +gv(a){return this.b}, +zw(a){var s=this.a +new A.FR(this,a,s.$ti.i("FR<1>")).aeT(s,s.b);++this.b}, +hX(a){var s=this.a.a.RY(0);--this.b +return s}, +ga3(a){return this.a.b.gAv()}, +gae(a){return this.a.a.gAv()}, +ga7(a){var s=this.a +return s.b===s}, +gag(a){return new A.UQ(this,this.a.b,this.$ti.i("UQ<1>"))}, +k(a){return A.nz(this,"{","}")}, +$ia8:1} +A.UQ.prototype={ +u(){var s=this,r=s.b,q=r==null?null:r.xI() +if(q==null){s.a=s.b=s.c=null +return!1}r=s.a +if(r!=q.c)throw A.e(A.c6(r)) +s.c=q.d +s.b=q.b +return!0}, +gN(a){var s=this.c +return s==null?this.$ti.c.a(s):s}} +A.Bm.prototype={ +gag(a){var s=this +return new A.Wg(s,s.c,s.d,s.b,s.$ti.i("Wg<1>"))}, +ga7(a){return this.b===this.c}, +gv(a){return(this.c-this.b&this.a.length-1)>>>0}, +ga3(a){var s=this,r=s.b +if(r===s.c)throw A.e(A.cj()) +r=s.a[r] +return r==null?s.$ti.c.a(r):r}, +gae(a){var s=this,r=s.b,q=s.c +if(r===q)throw A.e(A.cj()) +r=s.a +r=r[(q-1&r.length-1)>>>0] +return r==null?s.$ti.c.a(r):r}, +bm(a,b){var s,r=this +A.aIh(b,r.gv(0),r,null) +s=r.a +s=s[(r.b+b&s.length-1)>>>0] +return s==null?r.$ti.c.a(s):s}, +ee(a,b){var s,r,q,p,o,n,m=this,l=m.a.length-1,k=(m.c-m.b&l)>>>0 +if(k===0){s=m.$ti.c +return b?J.uR(0,s):J.B4(0,s)}s=m.$ti.c +r=A.bz(k,m.ga3(0),b,s) +for(q=m.a,p=m.b,o=0;o>>0] +r[o]=n==null?s.a(n):n}return r}, +f8(a){return this.ee(0,!0)}, +O(a,b){var s,r,q,p,o,n,m,l,k=this +if(t.j.b(b)){s=b.length +r=k.gv(0) +q=r+s +p=k.a +o=p.length +if(q>=o){n=A.bz(A.aIJ(q+(q>>>1)),null,!1,k.$ti.i("1?")) +k.c=k.als(n) +k.a=n +k.b=0 +B.b.e0(n,r,q,b,0) +k.c+=s}else{q=k.c +m=o-q +if(s>>0)s[p]=null +q.b=q.c=0;++q.d}}, +k(a){return A.nz(this,"{","}")}, +zw(a){var s=this,r=s.b,q=s.a +r=s.b=(r-1&q.length-1)>>>0 +q[r]=a +if(r===s.c)s.PW();++s.d}, +po(){var s,r,q=this,p=q.b +if(p===q.c)throw A.e(A.cj());++q.d +s=q.a +r=s[p] +if(r==null)r=q.$ti.c.a(r) +s[p]=null +q.b=(p+1&s.length-1)>>>0 +return r}, +hX(a){var s,r=this,q=r.b,p=r.c +if(q===p)throw A.e(A.cj());++r.d +q=r.a +p=r.c=(p-1&q.length-1)>>>0 +s=q[p] +if(s==null)s=r.$ti.c.a(s) +q[p]=null +return s}, +fd(a,b){var s=this,r=s.a,q=s.c +r[q]=b +r=(q+1&r.length-1)>>>0 +s.c=r +if(s.b===r)s.PW();++s.d}, +PW(){var s=this,r=A.bz(s.a.length*2,null,!1,s.$ti.i("1?")),q=s.a,p=s.b,o=q.length-p +B.b.e0(r,0,o,q,p) +B.b.e0(r,o,o+s.b,s.a,0) +s.b=0 +s.c=s.a.length +s.a=r}, +als(a){var s,r,q=this,p=q.b,o=q.c,n=q.a +if(p<=o){s=o-p +B.b.e0(a,0,s,n,p) +return s}else{r=n.length-p +B.b.e0(a,0,r,n,p) +B.b.e0(a,r,r+q.c,q.a,0) +return q.c+r}}} +A.Wg.prototype={ +gN(a){var s=this.e +return s==null?this.$ti.c.a(s):s}, +u(){var s,r=this,q=r.a +if(r.c!==q.d)A.a0(A.c6(q)) +s=r.d +if(s===r.b){r.e=null +return!1}q=q.a +r.e=q[s] +r.d=(s+1&q.length-1)>>>0 +return!0}} +A.iH.prototype={ +ga7(a){return this.gv(this)===0}, +gbV(a){return this.gv(this)!==0}, +O(a,b){var s +for(s=J.bb(b);s.u();)this.E(0,s.gN(s))}, +auH(a){var s,r +for(s=a.length,r=0;r").bR(c).i("pX<1,2>"))}, +k(a){return A.nz(this,"{","}")}, +aj(a,b){var s +for(s=this.gag(this);s.u();)b.$1(s.gN(s))}, +jG(a,b){var s +for(s=this.gag(this);s.u();)if(b.$1(s.gN(s)))return!0 +return!1}, +iG(a,b){return A.aK8(this,b,A.n(this).c)}, +ga3(a){var s=this.gag(this) +if(!s.u())throw A.e(A.cj()) +return s.gN(s)}, +gae(a){var s,r=this.gag(this) +if(!r.u())throw A.e(A.cj()) +do s=r.gN(r) +while(r.u()) +return s}, +bm(a,b){var s,r +A.eg(b,"index") +s=this.gag(this) +for(r=b;s.u();){if(r===0)return s.gN(s);--r}throw A.e(A.dk(b,b-r,this,null,"index"))}, +$ia8:1, +$io:1, +$ibg:1} +A.xB.prototype={ +fU(a){var s,r,q=this.yD() +for(s=this.gag(this);s.u();){r=s.gN(s) +if(!a.p(0,r))q.E(0,r)}return q}, +kI(a,b){var s,r,q=this.yD() +for(s=this.gag(this);s.u();){r=s.gN(s) +if(b.p(0,r))q.E(0,r)}return q}, +hv(a){var s=this.yD() +s.O(0,this) +return s}} +A.Il.prototype={} +A.fZ.prototype={} +A.fY.prototype={} +A.p0.prototype={ +qm(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.ghe() +if(f==null){h.Ef(a,a) +return-1}s=h.gEe() +for(r=g,q=f,p=r,o=p,n=o,m=n;;){r=s.$2(q.a,a) +if(r>0){l=q.b +if(l==null)break +r=s.$2(l.a,a) +if(r>0){q.b=l.c +l.c=q +k=l.b +if(k==null){q=l +break}q=l +l=k}if(m==null)n=q +else m.b=q +m=q +q=l}else{if(r<0){j=q.c +if(j==null)break +r=s.$2(j.a,a) +if(r<0){q.c=j.b +j.b=q +i=j.c +if(i==null){q=j +break}q=j +j=i}if(o==null)p=q +else o.c=q}else break +o=q +q=j}}if(o!=null){o.c=q.b +q.b=p}if(m!=null){m.b=q.c +q.c=n}if(h.ghe()!==q){h.she(q);++h.c}return r}, +T2(a){var s,r,q +for(s=a,r=0;;s=q,r=1){q=s.b +if(q!=null){s.b=q.c +q.c=s}else break}this.c+=r +return s}, +Gi(a){var s,r,q +for(s=a,r=0;;s=q,r=1){q=s.c +if(q!=null){s.c=q.b +q.b=s}else break}this.c+=r +return s}, +S4(){var s,r=this,q=r.ghe(),p=q.b,o=q.c +if(p==null)r.she(o) +else if(o==null)r.she(p) +else{s=r.Gi(p) +s.c=o +r.she(s)}--r.a;++r.b}, +DM(a,b){var s=this,r=s.ghe() +if(r!=null)if(b<0){a.b=r +a.c=r.c +r.c=null}else{a.c=r +a.b=r.b +r.b=null}++s.b;++s.a +s.she(a)}, +lm(a){var s=this +s.gUA() +if(!A.n(s).i("p0.K").b(a))return null +if(s.qm(a)===0)return s.ghe() +return null}, +Ef(a,b){return this.gEe().$2(a,b)}} +A.DR.prototype={ +h(a,b){var s=this.lm(b) +return s==null?null:s.d}, +F(a,b){var s=this.lm(b) +if(s==null)return null +this.S4() +return s.d}, +m(a,b,c){var s=this,r=s.qm(b) +if(r===0){s.d.d=c +return}s.DM(new A.fY(c,b,s.$ti.i("fY<1,2>")),r)}, +bY(a,b,c){var s,r,q,p=this,o=p.qm(b) +if(o===0)return p.d.d +s=p.b +r=p.c +q=c.$0() +if(s!==p.b||r!==p.c){o=p.qm(b) +if(o===0)return p.d.d=q}p.DM(new A.fY(q,b,p.$ti.i("fY<1,2>")),o) +return q}, +ga7(a){return this.d==null}, +gbV(a){return this.d!=null}, +aj(a,b){var s,r=this.$ti,q=new A.tq(this,A.b([],r.i("D>")),this.c,r.i("tq<1,2>")) +while(q.e=null,q.DF()){s=q.gN(0) +b.$2(s.a,s.b)}}, +gv(a){return this.a}, +az(a,b){return this.lm(b)!=null}, +gbX(a){return new A.mC(this,this.$ti.i("mC<1,fY<1,2>>"))}, +geu(a){return new A.tr(this,this.$ti.i("tr<1,2>"))}, +gj3(a){return new A.Ij(this,this.$ti.i("Ij<1,2>"))}, +apD(){var s,r=this.d +if(r==null)return null +s=this.T2(r) +this.d=s +return s.a}, +YB(){var s,r=this.d +if(r==null)return null +s=this.Gi(r) +this.d=s +return s.a}, +$iaT:1, +Ef(a,b){return this.e.$2(a,b)}, +ghe(){return this.d}, +gEe(){return this.e}, +gUA(){return null}, +she(a){return this.d=a}} +A.jY.prototype={ +gN(a){var s=this.b +if(s.length===0){A.n(this).i("jY.T").a(null) +return null}return this.F_(B.b.gae(s))}, +ahO(a){var s,r,q=this,p=q.b +B.b.a5(p) +s=q.a +if(s.qm(a)===0){r=s.ghe() +r.toString +p.push(r) +q.d=s.c +return}throw A.e(A.c6(q))}, +u(){var s,r,q=this,p=q.c,o=q.a,n=o.b +if(p!==n){if(p==null){q.c=n +s=o.ghe() +for(p=q.b;s!=null;){p.push(s) +s=s.b}return p.length!==0}throw A.e(A.c6(o))}p=q.b +if(p.length===0)return!1 +if(q.d!==o.c)q.ahO(B.b.gae(p).a) +s=B.b.gae(p) +r=s.c +if(r!=null){while(r!=null){p.push(r) +r=r.b}return!0}p.pop() +for(;;){if(!(p.length!==0&&B.b.gae(p).c===s))break +s=p.pop()}return p.length!==0}} +A.mC.prototype={ +gv(a){return this.a.a}, +ga7(a){return this.a.a===0}, +gag(a){var s=this.a,r=this.$ti +return new A.mD(s,A.b([],r.i("D<2>")),s.c,r.i("mD<1,2>"))}, +p(a,b){return this.a.lm(b)!=null}, +hv(a){var s=this.a,r=A.alu(s.e,null,this.$ti.c),q=s.d +if(q!=null){r.d=r.Eq(q) +r.a=s.a}return r}} +A.tr.prototype={ +gv(a){return this.a.a}, +ga7(a){return this.a.a===0}, +gag(a){var s=this.a,r=this.$ti +return new A.Io(s,A.b([],r.i("D>")),s.c,r.i("Io<1,2>"))}} +A.Ij.prototype={ +gv(a){return this.a.a}, +ga7(a){return this.a.a===0}, +gag(a){var s=this.a,r=this.$ti +return new A.tq(s,A.b([],r.i("D>")),s.c,r.i("tq<1,2>"))}} +A.mD.prototype={ +F_(a){return a.a}} +A.Io.prototype={ +u(){var s=this.DF() +this.e=s?B.b.gae(this.b).d:null +return s}, +F_(a){var s=this.e +return s==null?this.$ti.y[1].a(s):s}} +A.tq.prototype={ +F_(a){var s=this.e +return s==null?this.e=new A.b1(a.a,a.d,this.$ti.i("b1<1,2>")):s}, +u(){this.e=null +return this.DF()}} +A.w4.prototype={ +gag(a){var s=this.$ti +return new A.mD(this,A.b([],s.i("D>")),this.c,s.i("mD<1,fZ<1>>"))}, +gv(a){return this.a}, +ga7(a){return this.d==null}, +gbV(a){return this.d!=null}, +ga3(a){var s,r=this.d +if(r==null)throw A.e(A.cj()) +s=this.T2(r) +this.d=s +return s.a}, +gae(a){var s,r=this.d +if(r==null)throw A.e(A.cj()) +s=this.Gi(r) +this.d=s +return s.a}, +p(a,b){return this.lm(b)!=null}, +E(a,b){return this.fd(0,b)}, +fd(a,b){var s=this.qm(b) +if(s===0)return!1 +this.DM(new A.fZ(b,this.$ti.i("fZ<1>")),s) +return!0}, +F(a,b){if(this.lm(b)==null)return!1 +this.S4() +return!0}, +O(a,b){var s +for(s=J.bb(b);s.u();)this.fd(0,s.gN(s))}, +kI(a,b){return this.P8(0,b,!0)}, +fU(a){return this.P8(0,a,!1)}, +P8(a,b,c){var s,r,q,p,o,n,m,l=this +for(s=l.$ti,r=s.i("fZ<1>"),q=new A.mD(l,A.b([],s.i("D>")),l.c,s.i("mD<1,fZ<1>>")),p=null,o=0;q.u();){n=q.gN(0) +if(b.p(0,n)===c){m=new A.fZ(n,r) +m.b=p;++o +p=m}}s=A.alu(l.e,l.f,s.c) +s.d=p +s.a=o +return s}, +a8g(a){var s,r,q,p,o=this.$ti.i("fZ<1>"),n=new A.fZ(a.a,o) +for(s=n;;){r=a.b +q=a.c +if(r!=null)if(q!=null)s.b=this.Eq(r) +else{p=new A.fZ(r.a,o) +s.b=p +s=p +a=r +continue}else if(q==null)break +p=new A.fZ(q.a,o) +s.c=p +s=p +a=q}return n}, +Eq(a){return this.a8g(a,this.$ti.i("Il<1,@>"))}, +hv(a){var s=this,r=A.alu(s.e,s.f,s.$ti.c),q=s.d +if(q!=null){r.d=s.Eq(q) +r.a=s.a}return r}, +k(a){return A.nz(this,"{","}")}, +$ia8:1, +$ibg:1, +Ef(a,b){return this.e.$2(a,b)}, +ghe(){return this.d}, +gEe(){return this.e}, +gUA(){return this.f}, +she(a){return this.d=a}} +A.Ik.prototype={} +A.Im.prototype={} +A.In.prototype={} +A.IT.prototype={} +A.W5.prototype={ +h(a,b){var s,r=this.b +if(r==null)return this.c.h(0,b) +else if(typeof b!="string")return null +else{s=r[b] +return typeof s=="undefined"?this.ahJ(b):s}}, +gv(a){return this.b==null?this.c.a:this.pV().length}, +ga7(a){return this.gv(0)===0}, +gbV(a){return this.gv(0)>0}, +gbX(a){var s +if(this.b==null){s=this.c +return new A.bs(s,A.n(s).i("bs<1>"))}return new A.W6(this)}, +geu(a){var s,r=this +if(r.b==null){s=r.c +return new A.bf(s,A.n(s).i("bf<2>"))}return A.v5(r.pV(),new A.atT(r),t.N,t.z)}, +m(a,b,c){var s,r,q=this +if(q.b==null)q.c.m(0,b,c) +else if(q.az(0,b)){s=q.b +s[b]=c +r=q.a +if(r==null?s!=null:r!==s)r[b]=null}else q.Uw().m(0,b,c)}, +az(a,b){if(this.b==null)return this.c.az(0,b) +if(typeof b!="string")return!1 +return Object.prototype.hasOwnProperty.call(this.a,b)}, +bY(a,b,c){var s +if(this.az(0,b))return this.h(0,b) +s=c.$0() +this.m(0,b,s) +return s}, +F(a,b){if(this.b!=null&&!this.az(0,b))return null +return this.Uw().F(0,b)}, +aj(a,b){var s,r,q,p,o=this +if(o.b==null)return o.c.aj(0,b) +s=o.pV() +for(r=0;r"))}return s}, +p(a,b){return this.a.az(0,b)}} +A.x8.prototype={ +aO(a){var s,r,q=this +q.a4O(0) +s=q.a +r=s.a +s.a="" +s=q.c +s.E(0,A.aMq(r.charCodeAt(0)==0?r:r,q.b)) +s.aO(0)}} +A.azW.prototype={ +$0(){var s,r +try{s=new TextDecoder("utf-8",{fatal:true}) +return s}catch(r){}return null}, +$S:206} +A.azV.prototype={ +$0(){var s,r +try{s=new TextDecoder("utf-8",{fatal:false}) +return s}catch(r){}return null}, +$S:206} +A.KF.prototype={ +gn9(a){return"us-ascii"}, +hl(a){return B.BN.d_(a)}, +bM(a,b){var s=B.BM.d_(b) +return s}} +A.a08.prototype={ +d_(a){var s,r,q,p=A.dZ(0,null,a.length,null,null),o=new Uint8Array(p) +for(s=~this.a,r=0;rb)s.eO(a,b,r,!1) +s.E(0,B.J4) +b=r+1}if(b=0){g=u.z.charCodeAt(f) +if(g===k)continue +k=g}else{if(f===-1){if(o<0){e=p==null?a:p.a.length +if(e==null)e=0 +o=e+(r-q) +n=r}++m +if(k===61)continue}k=g}if(f!==-2){if(p==null){p=new A.cK("") +e=p}else e=p +e.a+=B.c.a1(a2,q,r) +d=A.dn(k) +e.a+=d +q=l +continue}}throw A.e(A.cI("Invalid base64 data",a2,r))}if(p!=null){e=B.c.a1(a2,q,a4) +e=p.a+=e +d=e.length +if(o>=0)A.aGG(a2,n,a4,o,m,d) +else{c=B.f.bh(d-1,4)+1 +if(c===1)throw A.e(A.cI(a0,a2,a4)) +while(c<4){e+="=" +p.a=e;++c}}e=p.a +return B.c.kV(a2,a3,a4,e.charCodeAt(0)==0?e:e)}b=a4-a3 +if(o>=0)A.aGG(a2,n,a4,o,m,b) +else{c=B.f.bh(b,4) +if(c===1)throw A.e(A.cI(a0,a2,a4)) +if(c>1)a2=B.c.kV(a2,a4,a4,c===2?"==":"=")}return a2}} +A.KU.prototype={ +d_(a){var s=a.length +if(s===0)return"" +s=new A.F9(u.z).IB(a,0,s,!0) +s.toString +return A.fR(s,0,null)}, +js(a){var s=u.z +if(t.NC.b(a))return new A.azT(new A.a0h(new A.xS(!1),a,a.a),new A.F9(s)) +return new A.aot(a,new A.ap1(s))}} +A.F9.prototype={ +W8(a,b){return new Uint8Array(b)}, +IB(a,b,c,d){var s,r=this,q=(r.a&3)+(c-b),p=B.f.fh(q,3),o=p*4 +if(d&&q-p*3>0)o+=4 +s=r.W8(0,o) +r.a=A.aYl(r.b,a,b,c,d,s,0,r.a) +if(o>0)return s +return null}} +A.ap1.prototype={ +W8(a,b){var s=this.c +if(s==null||s.lengthp.length-o){p=q.b +s=n.gv(b)+p.length-1 +s|=B.f.eX(s,1) +s|=s>>>2 +s|=s>>>4 +s|=s>>>8 +r=new Uint8Array((((s|s>>>16)>>>0)+1)*2) +p=q.b +B.O.i3(r,0,p.length,p) +q.b=r}p=q.b +o=q.c +B.O.i3(p,o,o+n.gv(b),b) +q.c=q.c+n.gv(b)}, +aO(a){this.a.$1(B.O.cr(this.b,0,this.c))}} +A.Lh.prototype={} +A.ZA.prototype={ +E(a,b){this.b.push(b)}, +aO(a){this.a.$1(this.b)}} +A.LI.prototype={} +A.c7.prototype={ +apX(a,b){return new A.Gb(this,a,A.n(this).i("@").bR(b).i("Gb<1,2,3>"))}, +js(a){throw A.e(A.af("This converter does not support chunked conversions: "+this.k(0)))}} +A.Gb.prototype={ +js(a){return this.a.js(new A.x8(this.b.a,a,new A.cK("")))}} +A.pZ.prototype={} +A.B9.prototype={ +k(a){var s=A.q_(this.a) +return(this.b!=null?"Converting object to an encodable object failed:":"Converting object did not return an encodable object:")+" "+s}} +A.NQ.prototype={ +k(a){return"Cyclic error in JSON stringify"}} +A.aaW.prototype={ +bM(a,b){var s=A.aMq(b,this.gaos().a) +return s}, +hl(a){var s=A.aYI(a,this.gvn().b,null) +return s}, +gvn(){return B.IQ}, +gaos(){return B.pf}} +A.NS.prototype={ +js(a){var s=t.NC.b(a)?a:new A.tt(a) +return new A.atS(null,this.b,s)}} +A.atS.prototype={ +E(a,b){var s,r=this +if(r.d)throw A.e(A.a5("Only one call to add allowed")) +r.d=!0 +s=r.c.Vc() +A.aLf(b,s,r.b,r.a) +s.aO(0)}, +aO(a){}} +A.NR.prototype={ +js(a){return new A.x8(this.a,a,new A.cK(""))}} +A.atV.prototype={ +a_x(a){var s,r,q,p,o,n=this,m=a.length +for(s=0,r=0;r92){if(q>=55296){p=q&64512 +if(p===55296){o=r+1 +o=!(o=0&&(a.charCodeAt(p)&64512)===55296)}else p=!1 +else p=!0 +if(p){if(r>s)n.CE(a,s,r) +s=r+1 +n.e_(92) +n.e_(117) +n.e_(100) +p=q>>>8&15 +n.e_(p<10?48+p:87+p) +p=q>>>4&15 +n.e_(p<10?48+p:87+p) +p=q&15 +n.e_(p<10?48+p:87+p)}}continue}if(q<32){if(r>s)n.CE(a,s,r) +s=r+1 +n.e_(92) +switch(q){case 8:n.e_(98) +break +case 9:n.e_(116) +break +case 10:n.e_(110) +break +case 12:n.e_(102) +break +case 13:n.e_(114) +break +default:n.e_(117) +n.e_(48) +n.e_(48) +p=q>>>4&15 +n.e_(p<10?48+p:87+p) +p=q&15 +n.e_(p<10?48+p:87+p) +break}}else if(q===34||q===92){if(r>s)n.CE(a,s,r) +s=r+1 +n.e_(92) +n.e_(q)}}if(s===0)n.i0(a) +else if(s255){if(s>b){q=this.a +q.toString +q.E(0,A.fR(a,b,s))}q=this.a +q.toString +q.E(0,A.fR(B.JG,0,1)) +b=s+1}}if(b16)this.Em()}, +wO(a,b){if(this.a.a.length!==0)this.Em() +this.b.E(0,b)}, +Em(){var s=this.a,r=s.a +s.a="" +this.b.E(0,r.charCodeAt(0)==0?r:r)}} +A.xI.prototype={ +aO(a){}, +eO(a,b,c,d){var s,r,q +if(b!==0||c!==a.length)for(s=this.a,r=b;r>>18|240 +q=o.b=p+1 +r[p]=s>>>12&63|128 +p=o.b=q+1 +r[q]=s>>>6&63|128 +o.b=p+1 +r[p]=s&63|128 +return!0}else{o.zo() +return!1}}, +P7(a,b,c){var s,r,q,p,o,n,m,l,k=this +if(b!==c&&(a.charCodeAt(c-1)&64512)===55296)--c +for(s=k.c,r=s.$flags|0,q=s.length,p=b;p=q)break +k.b=n+1 +r&2&&A.aI(s) +s[n]=o}else{n=o&64512 +if(n===55296){if(k.b+4>q)break +m=p+1 +if(k.UL(o,a.charCodeAt(m)))p=m}else if(n===56320){if(k.b+3>q)break +k.zo()}else if(o<=2047){n=k.b +l=n+1 +if(l>=q)break +k.b=l +r&2&&A.aI(s) +s[n]=o>>>6|192 +k.b=l+1 +s[l]=o&63|128}else{n=k.b +if(n+2>=q)break +l=k.b=n+1 +r&2&&A.aI(s) +s[n]=o>>>12|224 +n=k.b=l+1 +s[l]=o>>>6&63|128 +k.b=n+1 +s[n]=o&63|128}}}return p}} +A.a0g.prototype={ +aO(a){if(this.a!==0){this.eO("",0,0,!0) +return}this.d.a.aO(0)}, +eO(a,b,c,d){var s,r,q,p,o,n=this +n.b=0 +s=b===c +if(s&&!d)return +r=n.a +if(r!==0){if(n.UL(r,!s?a.charCodeAt(b):0))++b +n.a=0}s=n.d +r=n.c +q=c-1 +p=r.length-3 +do{b=n.P7(a,b,c) +o=d&&b===c +if(b===q&&(a.charCodeAt(b)&64512)===55296){if(d&&n.b=15){p=m.a +o=A.aZF(p,r,b,l) +if(o!=null){if(!p)return o +if(o.indexOf("\ufffd")<0)return o}}o=m.Ew(r,b,l,d) +p=m.b +if((p&1)!==0){n=A.aLU(p) +m.b=0 +throw A.e(A.cI(n,a,q+m.c))}return o}, +Ew(a,b,c,d){var s,r,q=this +if(c-b>1000){s=B.f.fh(b+c,2) +r=q.Ew(a,b,s,!1) +if((q.b&1)!==0)return r +return r+q.Ew(a,s,c,d)}return q.aor(a,b,c,d)}, +X4(a,b){var s,r=this.b +this.b=0 +if(r<=32)return +if(this.a){s=A.dn(65533) +b.a+=s}else throw A.e(A.cI(A.aLU(77),null,null))}, +aor(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=65533,j=l.b,i=l.c,h=new A.cK(""),g=b+1,f=a[b] +$label0$0:for(s=l.a;;){for(;;g=p){r="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE".charCodeAt(f)&31 +i=j<=32?f&61694>>>r:(f&63|i<<6)>>>0 +j=" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA".charCodeAt(j+r) +if(j===0){q=A.dn(i) +h.a+=q +if(g===c)break $label0$0 +break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:q=A.dn(k) +h.a+=q +break +case 65:q=A.dn(k) +h.a+=q;--g +break +default:q=A.dn(k) +h.a=(h.a+=q)+q +break}else{l.b=j +l.c=g-1 +return""}j=0}if(g===c)break $label0$0 +p=g+1 +f=a[g]}p=g+1 +f=a[g] +if(f<128){for(;;){if(!(p=128){o=n-1 +p=n +break}p=n}if(o-g<20)for(m=g;m32)if(s){s=A.dn(k) +h.a+=s}else{l.b=77 +l.c=c +return""}l.b=j +l.c=i +s=h.a +return s.charCodeAt(0)==0?s:s}} +A.a1E.prototype={} +A.tw.prototype={} +A.afH.prototype={ +$2(a,b){var s=this.b,r=this.a,q=(s.a+=r.a)+a.a +s.a=q +s.a=q+": " +q=A.q_(b) +s.a+=q +r.a=", "}, +$S:478} +A.azR.prototype={ +$2(a,b){var s,r +if(typeof b=="string")this.a.set(a,b) +else if(b==null)this.a.set(a,"") +else for(s=J.bb(b),r=this.a;s.u();){b=s.gN(s) +if(typeof b=="string")r.append(a,b) +else if(b==null)r.append(a,"") +else A.cC(b)}}, +$S:27} +A.M2.prototype={ +$0(){var s=this +return A.a0(A.bF("("+s.a+", "+s.b+", "+s.c+", "+s.d+", "+s.e+", "+s.f+", "+s.r+", "+s.w+")",null))}, +$S:498} +A.ep.prototype={ +Nd(a){var s=1000,r=B.f.bh(a,s),q=B.f.fh(a-r,s),p=this.b+r,o=B.f.bh(p,s),n=this.c +return new A.ep(A.zC(this.a+B.f.fh(p-o,s)+q,o,n),o,n)}, +fU(a){return A.ea(this.b-a.b,this.a-a.a,0)}, +j(a,b){if(b==null)return!1 +return b instanceof A.ep&&this.a===b.a&&this.b===b.b&&this.c===b.c}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +JD(a){var s=this.a,r=a.a +if(s>=r)s=s===r&&this.br)s=": Not in inclusive range "+A.k(r)+".."+A.k(q) +else s=qe.length +else s=!1 +if(s)f=null +if(f==null){if(e.length>78)e=B.c.a1(e,0,75)+"..." +return g+"\n"+e}for(r=1,q=0,p=!1,o=0;o1?g+(" (at line "+r+", character "+(f-q+1)+")\n"):g+(" (at character "+(f+1)+")\n") +m=e.length +for(o=f;o78){k="..." +if(f-q<75){j=q+75 +i=q}else{if(m-f<75){i=m-75 +j=m +k=""}else{i=f-36 +j=f+36}l="..."}}else{j=m +i=q +k=""}return g+l+B.c.a1(e,i,j)+k+"\n"+B.c.a6(" ",f-i+l.length)+"^\n"}else return f!=null?g+(" (at offset "+A.k(f)+")"):g}, +$ibL:1, +gwa(a){return this.a}, +gDh(a){return this.b}, +gck(a){return this.c}} +A.o.prototype={ +hk(a,b){return A.pC(this,A.bR(this).i("o.E"),b)}, +apL(a,b){var s=this +if(t.Ee.b(s))return A.aU2(s,b,A.bR(s).i("o.E")) +return new A.qa(s,b,A.bR(s).i("qa"))}, +jV(a,b,c){return A.v5(this,b,A.bR(this).i("o.E"),c)}, +l2(a,b){return new A.aY(this,b,A.bR(this).i("aY"))}, +Lk(a,b){return new A.cd(this,b.i("cd<0>"))}, +p(a,b){var s +for(s=this.gag(this);s.u();)if(J.d(s.gN(s),b))return!0 +return!1}, +aj(a,b){var s +for(s=this.gag(this);s.u();)b.$1(s.gN(s))}, +bn(a,b){var s,r,q=this.gag(this) +if(!q.u())return"" +s=J.dr(q.gN(q)) +if(!q.u())return s +if(b.length===0){r=s +do r+=J.dr(q.gN(q)) +while(q.u())}else{r=s +do r=r+b+J.dr(q.gN(q)) +while(q.u())}return r.charCodeAt(0)==0?r:r}, +Bm(a){return this.bn(0,"")}, +jG(a,b){var s +for(s=this.gag(this);s.u();)if(b.$1(s.gN(s)))return!0 +return!1}, +ee(a,b){var s=A.bR(this).i("o.E") +if(b)s=A.a6(this,s) +else{s=A.a6(this,s) +s.$flags=1 +s=s}return s}, +f8(a){return this.ee(0,!0)}, +hv(a){return A.eu(this,A.bR(this).i("o.E"))}, +gv(a){var s,r=this.gag(this) +for(s=0;r.u();)++s +return s}, +ga7(a){return!this.gag(this).u()}, +gbV(a){return!this.ga7(this)}, +KQ(a,b){return A.aXr(this,b,A.bR(this).i("o.E"))}, +iG(a,b){return A.aK8(this,b,A.bR(this).i("o.E"))}, +ga3(a){var s=this.gag(this) +if(!s.u())throw A.e(A.cj()) +return s.gN(s)}, +gae(a){var s,r=this.gag(this) +if(!r.u())throw A.e(A.cj()) +do s=r.gN(r) +while(r.u()) +return s}, +vC(a,b,c){var s,r +for(s=this.gag(this);s.u();){r=s.gN(s) +if(b.$1(r))return r}s=c.$0() +return s}, +YC(a,b){var s,r,q=this.gag(this) +do{if(!q.u())throw A.e(A.cj()) +s=q.gN(q)}while(!b.$1(s)) +while(q.u()){r=q.gN(q) +if(b.$1(r))s=r}return s}, +bm(a,b){var s,r +A.eg(b,"index") +s=this.gag(this) +for(r=b;s.u();){if(r===0)return s.gN(s);--r}throw A.e(A.dk(b,b-r,this,null,"index"))}, +k(a){return A.aIq(this,"(",")")}} +A.Gc.prototype={ +bm(a,b){A.aIh(b,this.a,this,null) +return this.b.$1(b)}, +gv(a){return this.a}} +A.b1.prototype={ +k(a){return"MapEntry("+A.k(this.a)+": "+A.k(this.b)+")"}} +A.bk.prototype={ +gB(a){return A.R.prototype.gB.call(this,0)}, +k(a){return"null"}} +A.R.prototype={$iR:1, +j(a,b){return this===b}, +gB(a){return A.f5(this)}, +k(a){return"Instance of '"+A.Po(this)+"'"}, +G(a,b){throw A.e(A.kw(this,b))}, +gdO(a){return A.r(this)}, +toString(){return this.k(this)}, +$0(){return this.G(this,A.N("call","$0",0,[],[],0))}, +$1(a){return this.G(this,A.N("call","$1",0,[a],[],0))}, +$2(a,b){return this.G(this,A.N("call","$2",0,[a,b],[],0))}, +$1$2$onError(a,b,c){return this.G(this,A.N("call","$1$2$onError",0,[a,b,c],["onError"],1))}, +$3(a,b,c){return this.G(this,A.N("call","$3",0,[a,b,c],[],0))}, +$4(a,b,c,d){return this.G(this,A.N("call","$4",0,[a,b,c,d],[],0))}, +$4$cancelOnError$onDone$onError(a,b,c,d){return this.G(this,A.N("call","$4$cancelOnError$onDone$onError",0,[a,b,c,d],["cancelOnError","onDone","onError"],0))}, +$1$growable(a){return this.G(this,A.N("call","$1$growable",0,[a],["growable"],0))}, +$1$highContrast(a){return this.G(this,A.N("call","$1$highContrast",0,[a],["highContrast"],0))}, +$1$accessibilityFeatures(a){return this.G(this,A.N("call","$1$accessibilityFeatures",0,[a],["accessibilityFeatures"],0))}, +$1$1(a,b){return this.G(this,A.N("call","$1$1",0,[a,b],[],1))}, +$1$locales(a){return this.G(this,A.N("call","$1$locales",0,[a],["locales"],0))}, +$1$textScaleFactor(a){return this.G(this,A.N("call","$1$textScaleFactor",0,[a],["textScaleFactor"],0))}, +$1$platformBrightness(a){return this.G(this,A.N("call","$1$platformBrightness",0,[a],["platformBrightness"],0))}, +$1$accessibleNavigation(a){return this.G(this,A.N("call","$1$accessibleNavigation",0,[a],["accessibleNavigation"],0))}, +$1$semanticsEnabled(a){return this.G(this,A.N("call","$1$semanticsEnabled",0,[a],["semanticsEnabled"],0))}, +$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.G(this,A.N("call","$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","scale","signalKind","timeStamp","viewId"],0))}, +$15$buttons$change$device$kind$onRespond$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return this.G(this,A.N("call","$15$buttons$change$device$kind$onRespond$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o],["buttons","change","device","kind","onRespond","physicalX","physicalY","pressure","pressureMax","scrollDeltaX","scrollDeltaY","signalKind","timeStamp","viewId"],0))}, +$26$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scale$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){return this.G(this,A.N("call","$26$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scale$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6],["buttons","change","device","distance","distanceMax","kind","obscured","orientation","physicalX","physicalY","platformData","pressure","pressureMax","pressureMin","radiusMajor","radiusMax","radiusMin","radiusMinor","scale","scrollDeltaX","scrollDeltaY","signalKind","size","tilt","timeStamp","viewId"],0))}, +$3$data$details$event(a,b,c){return this.G(this,A.N("call","$3$data$details$event",0,[a,b,c],["data","details","event"],0))}, +$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.G(this,A.N("call","$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","signalKind","tilt","timeStamp","viewId"],0))}, +$1$style(a){return this.G(this,A.N("call","$1$style",0,[a],["style"],0))}, +$2$priority$scheduler(a,b){return this.G(this,A.N("call","$2$priority$scheduler",0,[a,b],["priority","scheduler"],0))}, +$1$allowPlatformDefault(a){return this.G(this,A.N("call","$1$allowPlatformDefault",0,[a],["allowPlatformDefault"],0))}, +$3$replace$state(a,b,c){return this.G(this,A.N("call","$3$replace$state",0,[a,b,c],["replace","state"],0))}, +$2$params(a,b){return this.G(this,A.N("call","$2$params",0,[a,b],["params"],0))}, +$3$onAction$onChange(a,b,c){return this.G(this,A.N("call","$3$onAction$onChange",0,[a,b,c],["onAction","onChange"],0))}, +$2$composingBaseOffset$composingExtentOffset(a,b){return this.G(this,A.N("call","$2$composingBaseOffset$composingExtentOffset",0,[a,b],["composingBaseOffset","composingExtentOffset"],0))}, +$2$baseOffset$extentOffset(a,b){return this.G(this,A.N("call","$2$baseOffset$extentOffset",0,[a,b],["baseOffset","extentOffset"],0))}, +$1$0(a){return this.G(this,A.N("call","$1$0",0,[a],[],1))}, +$2$position(a,b){return this.G(this,A.N("call","$2$position",0,[a,b],["position"],0))}, +$1$debugBuildRoot(a){return this.G(this,A.N("call","$1$debugBuildRoot",0,[a],["debugBuildRoot"],0))}, +$3$bodyColor$decorationColor$displayColor(a,b,c){return this.G(this,A.N("call","$3$bodyColor$decorationColor$displayColor",0,[a,b,c],["bodyColor","decorationColor","displayColor"],0))}, +$2$1(a,b,c){return this.G(this,A.N("call","$2$1",0,[a,b,c],[],2))}, +$1$2(a,b,c){return this.G(this,A.N("call","$1$2",0,[a,b,c],[],1))}, +$2$0(a,b){return this.G(this,A.N("call","$2$0",0,[a,b],[],2))}, +$1$isLiveRegion(a){return this.G(this,A.N("call","$1$isLiveRegion",0,[a],["isLiveRegion"],0))}, +$1$namesRoute(a){return this.G(this,A.N("call","$1$namesRoute",0,[a],["namesRoute"],0))}, +$1$scopesRoute(a){return this.G(this,A.N("call","$1$scopesRoute",0,[a],["scopesRoute"],0))}, +$1$isImage(a){return this.G(this,A.N("call","$1$isImage",0,[a],["isImage"],0))}, +$1$isFocused(a){return this.G(this,A.N("call","$1$isFocused",0,[a],["isFocused"],0))}, +$1$isHeader(a){return this.G(this,A.N("call","$1$isHeader",0,[a],["isHeader"],0))}, +$1$isButton(a){return this.G(this,A.N("call","$1$isButton",0,[a],["isButton"],0))}, +$1$isSelected(a){return this.G(this,A.N("call","$1$isSelected",0,[a],["isSelected"],0))}, +$1$isChecked(a){return this.G(this,A.N("call","$1$isChecked",0,[a],["isChecked"],0))}, +$1$isEnabled(a){return this.G(this,A.N("call","$1$isEnabled",0,[a],["isEnabled"],0))}, +$2$after(a,b){return this.G(this,A.N("call","$2$after",0,[a,b],["after"],0))}, +$1$range(a){return this.G(this,A.N("call","$1$range",0,[a],["range"],0))}, +$4$boxHeightStyle$boxWidthStyle(a,b,c,d){return this.G(this,A.N("call","$4$boxHeightStyle$boxWidthStyle",0,[a,b,c,d],["boxHeightStyle","boxWidthStyle"],0))}, +$3$dimensions$textScaler(a,b,c){return this.G(this,A.N("call","$3$dimensions$textScaler",0,[a,b,c],["dimensions","textScaler"],0))}, +$2$defaultBlurTileMode(a,b){return this.G(this,A.N("call","$2$defaultBlurTileMode",0,[a,b],["defaultBlurTileMode"],0))}, +$3$boxHeightStyle(a,b,c){return this.G(this,A.N("call","$3$boxHeightStyle",0,[a,b,c],["boxHeightStyle"],0))}, +$3$includePlaceholders$includeSemanticsLabels(a,b,c){return this.G(this,A.N("call","$3$includePlaceholders$includeSemanticsLabels",0,[a,b,c],["includePlaceholders","includeSemanticsLabels"],0))}, +$1$selectable(a){return this.G(this,A.N("call","$1$selectable",0,[a],["selectable"],0))}, +$1$direction(a){return this.G(this,A.N("call","$1$direction",0,[a],["direction"],0))}, +$2$aspect(a,b){return this.G(this,A.N("call","$2$aspect",0,[a,b],["aspect"],0))}, +$9$applyTextScaling$color$fill$grade$opacity$opticalSize$shadows$size$weight(a,b,c,d,e,f,g,h,i){return this.G(this,A.N("call","$9$applyTextScaling$color$fill$grade$opacity$opticalSize$shadows$size$weight",0,[a,b,c,d,e,f,g,h,i],["applyTextScaling","color","fill","grade","opacity","opticalSize","shadows","size","weight"],0))}, +$1$iconColor(a){return this.G(this,A.N("call","$1$iconColor",0,[a],["iconColor"],0))}, +$2$maxWidth$minWidth(a,b){return this.G(this,A.N("call","$2$maxWidth$minWidth",0,[a,b],["maxWidth","minWidth"],0))}, +$2$maxHeight$minHeight(a,b){return this.G(this,A.N("call","$2$maxHeight$minHeight",0,[a,b],["maxHeight","minHeight"],0))}, +$1$iconTheme(a){return this.G(this,A.N("call","$1$iconTheme",0,[a],["iconTheme"],0))}, +$1$side(a){return this.G(this,A.N("call","$1$side",0,[a],["side"],0))}, +$1$color(a){return this.G(this,A.N("call","$1$color",0,[a],["color"],0))}, +$1$alpha(a){return this.G(this,A.N("call","$1$alpha",0,[a],["alpha"],0))}, +$2$reversed(a,b){return this.G(this,A.N("call","$2$reversed",0,[a,b],["reversed"],0))}, +$4$borderRadius$circularity$eccentricity$side(a,b,c,d){return this.G(this,A.N("call","$4$borderRadius$circularity$eccentricity$side",0,[a,b,c,d],["borderRadius","circularity","eccentricity","side"],0))}, +$2$textDirection(a,b){return this.G(this,A.N("call","$2$textDirection",0,[a,b],["textDirection"],0))}, +$13$blRadiusX$blRadiusY$bottom$brRadiusX$brRadiusY$left$right$tlRadiusX$tlRadiusY$top$trRadiusX$trRadiusY$uniformRadii(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.G(this,A.N("call","$13$blRadiusX$blRadiusY$bottom$brRadiusX$brRadiusY$left$right$tlRadiusX$tlRadiusY$top$trRadiusX$trRadiusY$uniformRadii",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["blRadiusX","blRadiusY","bottom","brRadiusX","brRadiusY","left","right","tlRadiusX","tlRadiusY","top","trRadiusX","trRadiusY","uniformRadii"],0))}, +$1$minimum(a){return this.G(this,A.N("call","$1$minimum",0,[a],["minimum"],0))}, +$2$color$fontSize(a,b){return this.G(this,A.N("call","$2$color$fontSize",0,[a,b],["color","fontSize"],0))}, +$3$textDirection(a,b,c){return this.G(this,A.N("call","$3$textDirection",0,[a,b,c],["textDirection"],0))}, +$2$rescheduling(a,b){return this.G(this,A.N("call","$2$rescheduling",0,[a,b],["rescheduling"],0))}, +$1$withDelay(a){return this.G(this,A.N("call","$1$withDelay",0,[a],["withDelay"],0))}, +$3$debugReport(a,b,c){return this.G(this,A.N("call","$3$debugReport",0,[a,b,c],["debugReport"],0))}, +$3$cancel$down$reason(a,b,c){return this.G(this,A.N("call","$3$cancel$down$reason",0,[a,b,c],["cancel","down","reason"],0))}, +$2$down$up(a,b){return this.G(this,A.N("call","$2$down$up",0,[a,b],["down","up"],0))}, +$1$down(a){return this.G(this,A.N("call","$1$down",0,[a],["down"],0))}, +$1$move(a){return this.G(this,A.N("call","$1$move",0,[a],["move"],0))}, +$1$findFirstFocus(a){return this.G(this,A.N("call","$1$findFirstFocus",0,[a],["findFirstFocus"],0))}, +$2$value(a,b){return this.G(this,A.N("call","$2$value",0,[a,b],["value"],0))}, +$1$details(a){return this.G(this,A.N("call","$1$details",0,[a],["details"],0))}, +$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(a,b,c,d,e,f,g,h,i,j,k){return this.G(this,A.N("call","$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection",0,[a,b,c,d,e,f,g,h,i,j,k],["borderRadius","color","containedInkWell","controller","customBorder","onRemoved","position","radius","rectCallback","referenceBox","textDirection"],0))}, +$1$context(a){return this.G(this,A.N("call","$1$context",0,[a],["context"],0))}, +$5$alpha$blue$colorSpace$green$red(a,b,c,d,e){return this.G(this,A.N("call","$5$alpha$blue$colorSpace$green$red",0,[a,b,c,d,e],["alpha","blue","colorSpace","green","red"],0))}, +$1$textTheme(a){return this.G(this,A.N("call","$1$textTheme",0,[a],["textTheme"],0))}, +$1$brightness(a){return this.G(this,A.N("call","$1$brightness",0,[a],["brightness"],0))}, +$2$minHeight$minWidth(a,b){return this.G(this,A.N("call","$2$minHeight$minWidth",0,[a,b],["minHeight","minWidth"],0))}, +$2$primaryTextTheme$textTheme(a,b){return this.G(this,A.N("call","$2$primaryTextTheme$textTheme",0,[a,b],["primaryTextTheme","textTheme"],0))}, +$3$foregroundColor$iconSize$overlayColor(a,b,c){return this.G(this,A.N("call","$3$foregroundColor$iconSize$overlayColor",0,[a,b,c],["foregroundColor","iconSize","overlayColor"],0))}, +$2$padding$viewPadding(a,b){return this.G(this,A.N("call","$2$padding$viewPadding",0,[a,b],["padding","viewPadding"],0))}, +$2$maxScaleFactor$minScaleFactor(a,b){return this.G(this,A.N("call","$2$maxScaleFactor$minScaleFactor",0,[a,b],["maxScaleFactor","minScaleFactor"],0))}, +$1$textScaler(a){return this.G(this,A.N("call","$1$textScaler",0,[a],["textScaler"],0))}, +$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.G(this,A.N("call","$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["removeBottomInset","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, +$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g){return this.G(this,A.N("call","$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g],["removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, +$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.G(this,A.N("call","$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["maintainBottomViewPadding","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, +$1$bottom(a){return this.G(this,A.N("call","$1$bottom",0,[a],["bottom"],0))}, +$1$floatingActionButtonScale(a){return this.G(this,A.N("call","$1$floatingActionButtonScale",0,[a],["floatingActionButtonScale"],0))}, +$1$removeBottom(a){return this.G(this,A.N("call","$1$removeBottom",0,[a],["removeBottom"],0))}, +$1$padding(a){return this.G(this,A.N("call","$1$padding",0,[a],["padding"],0))}, +$2$reverse(a,b){return this.G(this,A.N("call","$2$reverse",0,[a,b],["reverse"],0))}, +$2$color$size(a,b){return this.G(this,A.N("call","$2$color$size",0,[a,b],["color","size"],0))}, +$1$task(a){return this.G(this,A.N("call","$1$task",0,[a],["task"],0))}, +$1$oldWidget(a){return this.G(this,A.N("call","$1$oldWidget",0,[a],["oldWidget"],0))}, +$1$selection(a){return this.G(this,A.N("call","$1$selection",0,[a],["selection"],0))}, +$1$rect(a){return this.G(this,A.N("call","$1$rect",0,[a],["rect"],0))}, +$4$curve$descendant$duration$rect(a,b,c,d){return this.G(this,A.N("call","$4$curve$descendant$duration$rect",0,[a,b,c,d],["curve","descendant","duration","rect"],0))}, +$2$cause$from(a,b){return this.G(this,A.N("call","$2$cause$from",0,[a,b],["cause","from"],0))}, +$1$composing(a){return this.G(this,A.N("call","$1$composing",0,[a],["composing"],0))}, +$2$ignoreCurrentFocus(a,b){return this.G(this,A.N("call","$2$ignoreCurrentFocus",0,[a,b],["ignoreCurrentFocus"],0))}, +$3$alignmentPolicy$forward(a,b,c){return this.G(this,A.N("call","$3$alignmentPolicy$forward",0,[a,b,c],["alignmentPolicy","forward"],0))}, +$5$alignment$alignmentPolicy$curve$duration(a,b,c,d,e){return this.G(this,A.N("call","$5$alignment$alignmentPolicy$curve$duration",0,[a,b,c,d,e],["alignment","alignmentPolicy","curve","duration"],0))}, +$4$axis$rect(a,b,c,d){return this.G(this,A.N("call","$4$axis$rect",0,[a,b,c,d],["axis","rect"],0))}, +$1$affinity(a){return this.G(this,A.N("call","$1$affinity",0,[a],["affinity"],0))}, +$3$code$details$message(a,b,c){return this.G(this,A.N("call","$3$code$details$message",0,[a,b,c],["code","details","message"],0))}, +$2$code$message(a,b){return this.G(this,A.N("call","$2$code$message",0,[a,b],["code","message"],0))}, +$5$baseline$baselineOffset(a,b,c,d,e){return this.G(this,A.N("call","$5$baseline$baselineOffset",0,[a,b,c,d,e],["baseline","baselineOffset"],0))}, +$3$curve$duration$rect(a,b,c){return this.G(this,A.N("call","$3$curve$duration$rect",0,[a,b,c],["curve","duration","rect"],0))}, +$1$text(a){return this.G(this,A.N("call","$1$text",0,[a],["text"],0))}, +$2$viewInsets$viewPadding(a,b){return this.G(this,A.N("call","$2$viewInsets$viewPadding",0,[a,b],["viewInsets","viewPadding"],0))}, +$1$hasImplicitScrolling(a){return this.G(this,A.N("call","$1$hasImplicitScrolling",0,[a],["hasImplicitScrolling"],0))}, +$3$rect(a,b,c){return this.G(this,A.N("call","$3$rect",0,[a,b,c],["rect"],0))}, +$2$alignmentPolicy(a,b){return this.G(this,A.N("call","$2$alignmentPolicy",0,[a,b],["alignmentPolicy"],0))}, +$2$affinity$extentOffset(a,b){return this.G(this,A.N("call","$2$affinity$extentOffset",0,[a,b],["affinity","extentOffset"],0))}, +$1$extentOffset(a){return this.G(this,A.N("call","$1$extentOffset",0,[a],["extentOffset"],0))}, +$2$overscroll$scrollbars(a,b){return this.G(this,A.N("call","$2$overscroll$scrollbars",0,[a,b],["overscroll","scrollbars"],0))}, +$1$isReadOnly(a){return this.G(this,A.N("call","$1$isReadOnly",0,[a],["isReadOnly"],0))}, +$1$isTextField(a){return this.G(this,A.N("call","$1$isTextField",0,[a],["isTextField"],0))}, +$1$isMultiline(a){return this.G(this,A.N("call","$1$isMultiline",0,[a],["isMultiline"],0))}, +$1$isObscured(a){return this.G(this,A.N("call","$1$isObscured",0,[a],["isObscured"],0))}, +$1$spellCheckService(a){return this.G(this,A.N("call","$1$spellCheckService",0,[a],["spellCheckService"],0))}, +$1$height(a){return this.G(this,A.N("call","$1$height",0,[a],["height"],0))}, +$1$borderSide(a){return this.G(this,A.N("call","$1$borderSide",0,[a],["borderSide"],0))}, +$35$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintFadeDuration$hintMaxLines$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixIconConstraints$prefixStyle$suffixIconColor$suffixIconConstraints$suffixStyle$visualDensity(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5){return this.G(this,A.N("call","$35$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintFadeDuration$hintMaxLines$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixIconConstraints$prefixStyle$suffixIconColor$suffixIconConstraints$suffixStyle$visualDensity",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5],["alignLabelWithHint","border","constraints","contentPadding","counterStyle","disabledBorder","enabledBorder","errorBorder","errorMaxLines","errorStyle","fillColor","filled","floatingLabelAlignment","floatingLabelBehavior","floatingLabelStyle","focusColor","focusedBorder","focusedErrorBorder","helperMaxLines","helperStyle","hintFadeDuration","hintMaxLines","hintStyle","hoverColor","iconColor","isCollapsed","isDense","labelStyle","prefixIconColor","prefixIconConstraints","prefixStyle","suffixIconColor","suffixIconConstraints","suffixStyle","visualDensity"],0))}, +$2$enabled$hintMaxLines(a,b){return this.G(this,A.N("call","$2$enabled$hintMaxLines",0,[a,b],["enabled","hintMaxLines"],0))}, +$2$composing$selection(a,b){return this.G(this,A.N("call","$2$composing$selection",0,[a,b],["composing","selection"],0))}, +$2$backgroundColor$foregroundColor(a,b){return this.G(this,A.N("call","$2$backgroundColor$foregroundColor",0,[a,b],["backgroundColor","foregroundColor"],0))}, +$1$end(a){return this.G(this,A.N("call","$1$end",0,[a],["end"],0))}, +$1$line(a){return this.G(this,A.N("call","$1$line",0,[a],["line"],0))}, +$2$color(a,b){return this.G(this,A.N("call","$2$color",0,[a,b],["color"],0))}, +$2$withDrive(a,b){return this.G(this,A.N("call","$2$withDrive",0,[a,b],["withDrive"],0))}, +$1$scheme(a){return this.G(this,A.N("call","$1$scheme",0,[a],["scheme"],0))}, +$1$fontWeight(a){return this.G(this,A.N("call","$1$fontWeight",0,[a],["fontWeight"],0))}, +$5(a,b,c,d,e){return this.G(this,A.N("call","$5",0,[a,b,c,d,e],[],0))}, +$1$foregroundColor(a){return this.G(this,A.N("call","$1$foregroundColor",0,[a],["foregroundColor"],0))}, +$3$imperativeRemoval$isReplaced(a,b,c){return this.G(this,A.N("call","$3$imperativeRemoval$isReplaced",0,[a,b,c],["imperativeRemoval","isReplaced"],0))}, +$5$email$firstName$lastName$password$username(a,b,c,d,e){return this.G(this,A.N("call","$5$email$firstName$lastName$password$username",0,[a,b,c,d,e],["email","firstName","lastName","password","username"],0))}, +$2$orElse(a,b){return this.G(this,A.N("call","$2$orElse",0,[a,b],["orElse"],0))}, +$1$errorText(a){return this.G(this,A.N("call","$1$errorText",0,[a],["errorText"],0))}, +$2$bottom$top(a,b){return this.G(this,A.N("call","$2$bottom$top",0,[a,b],["bottom","top"],0))}, +$2$left$right(a,b){return this.G(this,A.N("call","$2$left$right",0,[a,b],["left","right"],0))}, +$2$hitTest$paintTransform(a,b){return this.G(this,A.N("call","$2$hitTest$paintTransform",0,[a,b],["hitTest","paintTransform"],0))}, +$3$crossAxisPosition$mainAxisPosition(a,b,c){return this.G(this,A.N("call","$3$crossAxisPosition$mainAxisPosition",0,[a,b,c],["crossAxisPosition","mainAxisPosition"],0))}, +$2$hitTest$paintOffset(a,b){return this.G(this,A.N("call","$2$hitTest$paintOffset",0,[a,b],["hitTest","paintOffset"],0))}, +$1$queryParameters(a){return this.G(this,A.N("call","$1$queryParameters",0,[a],["queryParameters"],0))}, +$2$color$fontWeight(a,b){return this.G(this,A.N("call","$2$color$fontWeight",0,[a,b],["color","fontWeight"],0))}, +$3$context$exception$stack(a,b,c){return this.G(this,A.N("call","$3$context$exception$stack",0,[a,b,c],["context","exception","stack"],0))}, +$2$onError(a,b){return this.G(this,A.N("call","$2$onError",0,[a,b],["onError"],0))}, +$1$tailVisitor(a){return this.G(this,A.N("call","$1$tailVisitor",0,[a],["tailVisitor"],0))}, +$1$url(a){return this.G(this,A.N("call","$1$url",0,[a],["url"],0))}, +$3$eTag$relativePath$validTill(a,b,c){return this.G(this,A.N("call","$3$eTag$relativePath$validTill",0,[a,b,c],["eTag","relativePath","validTill"],0))}, +$1$length(a){return this.G(this,A.N("call","$1$length",0,[a],["length"],0))}, +$3$onDone$onError(a,b,c){return this.G(this,A.N("call","$3$onDone$onError",0,[a,b,c],["onDone","onError"],0))}, +$2$createChild$followTailLink(a,b){return this.G(this,A.N("call","$2$createChild$followTailLink",0,[a,b],["createChild","followTailLink"],0))}, +$1$recursive(a){return this.G(this,A.N("call","$1$recursive",0,[a],["recursive"],0))}, +$2$color$decoration(a,b){return this.G(this,A.N("call","$2$color$decoration",0,[a,b],["color","decoration"],0))}, +$3$category$page$perPage(a,b,c){return this.G(this,A.N("call","$3$category$page$perPage",0,[a,b,c],["category","page","perPage"],0))}, +$2$page$perPage(a,b){return this.G(this,A.N("call","$2$page$perPage",0,[a,b],["page","perPage"],0))}, +$1$perPage(a){return this.G(this,A.N("call","$1$perPage",0,[a],["perPage"],0))}, +$2$perPage$search(a,b){return this.G(this,A.N("call","$2$perPage$search",0,[a,b],["perPage","search"],0))}, +$1$2$arguments(a,b,c){return this.G(this,A.N("call","$1$2$arguments",0,[a,b,c],["arguments"],1))}, +$1$5(a,b,c,d,e,f){return this.G(this,A.N("call","$1$5",0,[a,b,c,d,e,f],[],1))}, +$4$displayFeatures$padding$viewInsets$viewPadding(a,b,c,d){return this.G(this,A.N("call","$4$displayFeatures$padding$viewInsets$viewPadding",0,[a,b,c,d],["displayFeatures","padding","viewInsets","viewPadding"],0))}, +$2$isClosing(a,b){return this.G(this,A.N("call","$2$isClosing",0,[a,b],["isClosing"],0))}, +$1$reversed(a){return this.G(this,A.N("call","$1$reversed",0,[a],["reversed"],0))}, +$2$imperativeRemoval(a,b){return this.G(this,A.N("call","$2$imperativeRemoval",0,[a,b],["imperativeRemoval"],0))}, +$1$includeChildren(a){return this.G(this,A.N("call","$1$includeChildren",0,[a],["includeChildren"],0))}, +$1$usedSemanticsIds(a){return this.G(this,A.N("call","$1$usedSemanticsIds",0,[a],["usedSemanticsIds"],0))}, +$1$isHidden(a){return this.G(this,A.N("call","$1$isHidden",0,[a],["isHidden"],0))}, +$1$config(a){return this.G(this,A.N("call","$1$config",0,[a],["config"],0))}, +$2$descendant$rect(a,b){return this.G(this,A.N("call","$2$descendant$rect",0,[a,b],["descendant","rect"],0))}, +$1$isToggled(a){return this.G(this,A.N("call","$1$isToggled",0,[a],["isToggled"],0))}, +$1$isRequired(a){return this.G(this,A.N("call","$1$isRequired",0,[a],["isRequired"],0))}, +$1$isInMutuallyExclusiveGroup(a){return this.G(this,A.N("call","$1$isInMutuallyExclusiveGroup",0,[a],["isInMutuallyExclusiveGroup"],0))}, +$1$isKeyboardKey(a){return this.G(this,A.N("call","$1$isKeyboardKey",0,[a],["isKeyboardKey"],0))}, +$1$isSlider(a){return this.G(this,A.N("call","$1$isSlider",0,[a],["isSlider"],0))}, +$1$isLink(a){return this.G(this,A.N("call","$1$isLink",0,[a],["isLink"],0))}, +$1$isExpanded(a){return this.G(this,A.N("call","$1$isExpanded",0,[a],["isExpanded"],0))}, +$1$3$onlyFirst(a,b,c,d){return this.G(this,A.N("call","$1$3$onlyFirst",0,[a,b,c,d],["onlyFirst"],1))}, +$1$oldLayer(a){return this.G(this,A.N("call","$1$oldLayer",0,[a],["oldLayer"],0))}, +$6(a,b,c,d,e,f){return this.G(this,A.N("call","$6",0,[a,b,c,d,e,f],[],0))}, +$6$oldLayer(a,b,c,d,e,f){return this.G(this,A.N("call","$6$oldLayer",0,[a,b,c,d,e,f],["oldLayer"],0))}, +$5$borderRadius$shape$textDirection(a,b,c,d,e){return this.G(this,A.N("call","$5$borderRadius$shape$textDirection",0,[a,b,c,d,e],["borderRadius","shape","textDirection"],0))}, +$6$blend$blendMode(a,b,c,d,e,f){return this.G(this,A.N("call","$6$blend$blendMode",0,[a,b,c,d,e,f],["blend","blendMode"],0))}, +$4$textDirection(a,b,c,d){return this.G(this,A.N("call","$4$textDirection",0,[a,b,c,d],["textDirection"],0))}, +$1$maximum(a){return this.G(this,A.N("call","$1$maximum",0,[a],["maximum"],0))}, +$6$gapExtent$gapPercentage$gapStart$textDirection(a,b,c,d,e,f){return this.G(this,A.N("call","$6$gapExtent$gapPercentage$gapStart$textDirection",0,[a,b,c,d,e,f],["gapExtent","gapPercentage","gapStart","textDirection"],0))}, +$2$parentUsesSize(a,b){return this.G(this,A.N("call","$2$parentUsesSize",0,[a,b],["parentUsesSize"],0))}, +$1$maxWidth(a){return this.G(this,A.N("call","$1$maxWidth",0,[a],["maxWidth"],0))}, +$1$width(a){return this.G(this,A.N("call","$1$width",0,[a],["width"],0))}, +$1$maxHeight(a){return this.G(this,A.N("call","$1$maxHeight",0,[a],["maxHeight"],0))}, +$4$isScrolling$newPosition$oldPosition$velocity(a,b,c,d){return this.G(this,A.N("call","$4$isScrolling$newPosition$oldPosition$velocity",0,[a,b,c,d],["isScrolling","newPosition","oldPosition","velocity"],0))}, +$2$from$to(a,b){return this.G(this,A.N("call","$2$from$to",0,[a,b],["from","to"],0))}, +$2$bottomNavigationBarTop$floatingActionButtonArea(a,b){return this.G(this,A.N("call","$2$bottomNavigationBarTop$floatingActionButtonArea",0,[a,b],["bottomNavigationBarTop","floatingActionButtonArea"],0))}, +$2$scheduleNewFrame(a,b){return this.G(this,A.N("call","$2$scheduleNewFrame",0,[a,b],["scheduleNewFrame"],0))}, +h(a,b){return this.G(a,A.N("[]","h",0,[b],[],0))}, +UM(a){return this.G(this,A.N("_yieldStar","UM",0,[a],[],0))}, +fB(){return this.G(this,A.N("toJson","fB",0,[],[],0))}, +bk(){return this.G(this,A.N("didRegisterListener","bk",0,[],[],0))}, +a0(a,b){return this.G(a,A.N("-","a0",0,[b],[],0))}, +a6(a,b){return this.G(a,A.N("*","a6",0,[b],[],0))}, +V(a,b){return this.G(a,A.N("+","V",0,[b],[],0))}, +r_(){return this.G(this,A.N("didUnregisterListener","r_",0,[],[],0))}, +gv(a){return this.G(a,A.N("length","gv",1,[],[],0))}} +A.ZX.prototype={ +k(a){return""}, +$icS:1} +A.DW.prototype={ +gaoX(){var s=this.gWK() +if($.Ka()===1e6)return s +return s*1000}, +gIy(){var s=this.gWK() +if($.Ka()===1000)return s +return B.f.fh(s,1000)}, +pI(a){var s=this,r=s.b +if(r!=null){s.a=s.a+($.Pp.$0()-r) +s.b=null}}, +k5(a){var s=this.b +this.a=s==null?$.Pp.$0():s}, +gWK(){var s=this.b +if(s==null)s=$.Pp.$0() +return s-this.a}} +A.aiT.prototype={ +gN(a){return this.d}, +u(){var s,r,q,p=this,o=p.b=p.c,n=p.a,m=n.length +if(o===m){p.d=-1 +return!1}s=n.charCodeAt(o) +r=o+1 +if((s&64512)===55296&&r=0}, +ww(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i=j.a +if(c!=null){c=A.aEL(c,0,c.length) +s=c!==i}else{c=i +s=!1}r=c==="file" +q=j.b +p=j.d +if(s)p=A.azN(p,c) +o=j.c +if(!(o!=null))o=q.length!==0||p!=null||r?"":null +n=j.e +if(!r)m=o!=null&&n.length!==0 +else m=!0 +if(m&&!B.c.bz(n,"/"))n="/"+n +l=n +if(b!=null)k=A.azO(null,0,0,b) +else k=j.f +return A.IX(c,q,o,p,l,k,j.r)}, +ZQ(a,b){return this.ww(0,null,b)}, +pp(a,b){return this.ww(0,b,null)}, +Rb(a,b){var s,r,q,p,o,n,m +for(s=0,r=0;B.c.da(b,"../",r);){r+=3;++s}q=B.c.Bo(a,"/") +for(;;){if(!(q>0&&s>0))break +p=B.c.Bp(a,"/",q-1) +if(p<0)break +o=q-p +n=o!==2 +m=!1 +if(!n||o===3)if(a.charCodeAt(p+1)===46)n=!n||a.charCodeAt(p+2)===46 +else n=m +else n=m +if(n)break;--s +q=p}return B.c.kV(a,q+1,null,B.c.bZ(b,r-3*s))}, +Y(a){return this.wA(A.d3(a))}, +wA(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +if(a.gf9().length!==0)return a +else{s=h.a +if(a.gJk()){r=a.ZQ(0,s) +return r}else{q=h.b +p=h.c +o=h.d +n=h.e +if(a.gXD())m=a.gBc()?a.grE(a):h.f +else{l=A.aZE(h,n) +if(l>0){k=B.c.a1(n,0,l) +n=a.gJi()?k+A.tu(a.geF(a)):k+A.tu(h.Rb(B.c.bZ(n,k.length),a.geF(a)))}else if(a.gJi())n=A.tu(a.geF(a)) +else if(n.length===0)if(p==null)n=s.length===0?a.geF(a):A.tu(a.geF(a)) +else n=A.tu("/"+a.geF(a)) +else{j=h.Rb(n,a.geF(a)) +r=s.length===0 +if(!r||p!=null||B.c.bz(n,"/"))n=A.tu(j) +else n=A.aEN(j,!r||p!=null)}m=a.gBc()?a.grE(a):null}}}i=a.gJm()?a.gkE():null +return A.IX(s,q,p,o,n,m,i)}, +gXF(){return this.a.length!==0}, +gJk(){return this.c!=null}, +gBc(){return this.f!=null}, +gJm(){return this.r!=null}, +gXD(){return this.e.length===0}, +gJi(){return B.c.bz(this.e,"/")}, +KT(){var s,r=this,q=r.a +if(q!==""&&q!=="file")throw A.e(A.af("Cannot extract a file path from a "+q+" URI")) +q=r.f +if((q==null?"":q)!=="")throw A.e(A.af(u.B)) +q=r.r +if((q==null?"":q)!=="")throw A.e(A.af(u.A)) +if(r.c!=null&&r.goX(0)!=="")A.a0(A.af(u.Q)) +s=r.gwl() +A.aZv(s,!1) +q=A.alP(B.c.bz(r.e,"/")?"/":"",s,"/") +q=q.charCodeAt(0)==0?q:q +return q}, +k(a){return this.guy()}, +j(a,b){var s,r,q,p=this +if(b==null)return!1 +if(p===b)return!0 +s=!1 +if(t.Xu.b(b))if(p.a===b.gf9())if(p.c!=null===b.gJk())if(p.b===b.gLa())if(p.goX(0)===b.goX(b))if(p.gwn(0)===b.gwn(b))if(p.e===b.geF(b)){r=p.f +q=r==null +if(!q===b.gBc()){if(q)r="" +if(r===b.grE(b)){r=p.r +q=r==null +if(!q===b.gJm()){s=q?"":r +s=s===b.gkE()}}}}return s}, +$iSn:1, +gf9(){return this.a}, +geF(a){return this.e}} +A.azQ.prototype={ +$2(a,b){var s=this.b,r=this.a +s.a+=r.a +r.a="&" +r=A.a0e(1,a,B.a5,!0) +r=s.a+=r +if(b!=null&&b.length!==0){s.a=r+"=" +r=A.a0e(1,b,B.a5,!0) +s.a+=r}}, +$S:163} +A.azP.prototype={ +$2(a,b){var s,r +if(b==null||typeof b=="string")this.a.$2(a,b) +else for(s=J.bb(b),r=this.a;s.u();)r.$2(a,s.gN(s))}, +$S:27} +A.azS.prototype={ +$3(a,b,c){var s,r,q,p +if(a===c)return +s=this.a +r=this.b +if(b<0){q=A.p6(s,a,c,r,!0) +p=""}else{q=A.p6(s,a,b,r,!0) +p=A.p6(s,b+1,c,r,!0)}J.fF(this.c.bY(0,q,A.b1c()),p)}, +$S:665} +A.anj.prototype={ +grU(){var s,r,q,p,o=this,n=null,m=o.c +if(m==null){m=o.a +s=o.b[0]+1 +r=B.c.jR(m,"?",s) +q=m.length +if(r>=0){p=A.IY(m,r+1,q,256,!1,!1) +q=r}else p=n +m=o.c=new A.Uq("data","",n,n,A.IY(m,s,q,128,!1,!1),p,n)}return m}, +k(a){var s=this.a +return this.b[0]===-1?"data:"+s:s}} +A.iW.prototype={ +gXF(){return this.b>0}, +gJk(){return this.c>0}, +gJn(){return this.c>0&&this.d+1r?B.c.a1(this.a,r,s-1):""}, +goX(a){var s=this.c +return s>0?B.c.a1(this.a,s,this.d):""}, +gwn(a){var s,r=this +if(r.gJn())return A.h_(B.c.a1(r.a,r.d+1,r.e),null) +s=r.b +if(s===4&&B.c.bz(r.a,"http"))return 80 +if(s===5&&B.c.bz(r.a,"https"))return 443 +return 0}, +geF(a){return B.c.a1(this.a,this.e,this.f)}, +grE(a){var s=this.f,r=this.r +return s=this.r)return B.vx +var s=A.aLS(this.grE(0)) +s.a_l(s,A.aMT()) +return A.aCL(s,t.N,t.yp)}, +QQ(a){var s=this.d+1 +return s+a.length===this.e&&B.c.da(this.a,a,s)}, +auN(){var s=this,r=s.r,q=s.a +if(r>=q.length)return s +return new A.iW(B.c.a1(q,0,r),s.b,s.c,s.d,s.e,s.f,r,s.w)}, +ww(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null +if(c!=null){c=A.aEL(c,0,c.length) +s=!(h.b===c.length&&B.c.bz(h.a,c))}else{c=h.gf9() +s=!1}r=c==="file" +q=h.c +p=q>0?B.c.a1(h.a,h.b+3,q):"" +o=h.gJn()?h.gwn(0):g +if(s)o=A.azN(o,c) +q=h.c +if(q>0)n=B.c.a1(h.a,q,h.d) +else n=p.length!==0||o!=null||r?"":g +q=h.a +m=h.f +l=B.c.a1(q,h.e,m) +if(!r)k=n!=null&&l.length!==0 +else k=!0 +if(k&&!B.c.bz(l,"/"))l="/"+l +if(b!=null)j=A.azO(g,0,0,b) +else{k=h.r +j=m0)return b +s=b.c +if(s>0){r=a.b +if(r<=0)return b +q=r===4 +if(q&&B.c.bz(a.a,"file"))p=b.e!==b.f +else if(q&&B.c.bz(a.a,"http"))p=!b.QQ("80") +else p=!(r===5&&B.c.bz(a.a,"https"))||!b.QQ("443") +if(p){o=r+1 +return new A.iW(B.c.a1(a.a,0,o)+B.c.bZ(b.a,c+1),r,s+o,b.d+o,b.e+o,b.f+o,b.r+o,a.w)}else return this.Tx().wA(b)}n=b.e +c=b.f +if(n===c){s=b.r +if(c0?l:m +o=k-n +return new A.iW(B.c.a1(a.a,0,k)+B.c.bZ(s,n),a.b,a.c,a.d,m,c+o,b.r+o,a.w)}j=a.e +i=a.f +if(j===i&&a.c>0){while(B.c.da(s,"../",n))n+=3 +o=j-n+1 +return new A.iW(B.c.a1(a.a,0,j)+"/"+B.c.bZ(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}h=a.a +l=A.aLy(this) +if(l>=0)g=l +else for(g=j;B.c.da(h,"../",g);)g+=3 +f=0 +for(;;){e=n+3 +if(!(e<=c&&B.c.da(s,"../",n)))break;++f +n=e}for(d="";i>g;){--i +if(h.charCodeAt(i)===47){if(f===0){d="/" +break}--f +d="/"}}if(i===g&&a.b<=0&&!B.c.da(h,"/",j)){n-=f*3 +d=""}o=i-n+d.length +return new A.iW(B.c.a1(h,0,i)+d+B.c.bZ(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}, +KT(){var s,r=this,q=r.b +if(q>=0){s=!(q===4&&B.c.bz(r.a,"file")) +q=s}else q=!1 +if(q)throw A.e(A.af("Cannot extract a file path from a "+r.gf9()+" URI")) +q=r.f +s=r.a +if(q0?s.goX(0):r,n=s.gJn()?s.gwn(0):r,m=s.a,l=s.f,k=B.c.a1(m,s.e,l),j=s.r +l=l>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.zU.prototype={ +k(a){var s,r=a.left +r.toString +s=a.top +s.toString +return"Rectangle ("+A.k(r)+", "+A.k(s)+") "+A.k(this.gfC(a))+" x "+A.k(this.gb4(a))}, +j(a,b){var s,r,q +if(b==null)return!1 +s=!1 +if(t.Gb.b(b)){r=a.left +r.toString +q=J.dF(b) +if(r===q.gw1(b)){s=a.top +s.toString +s=s===q.grR(b)&&this.gfC(a)===q.gfC(b)&&this.gb4(a)===q.gb4(b)}}return s}, +gB(a){var s,r=a.left +r.toString +s=a.top +s.toString +return A.T(r,s,this.gfC(a),this.gb4(a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +gQx(a){return a.height}, +gb4(a){var s=this.gQx(a) +s.toString +return s}, +gw1(a){var s=a.left +s.toString +return s}, +grR(a){var s=a.top +s.toString +return s}, +gUH(a){return a.width}, +gfC(a){var s=this.gUH(a) +s.toString +return s}, +$iiC:1} +A.Ms.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.Mu.prototype={ +gv(a){var s=a.length +s.toString +return s}} +A.aF.prototype={ +k(a){var s=a.localName +s.toString +return s}} +A.a4.prototype={} +A.h6.prototype={$ih6:1} +A.MN.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.MQ.prototype={ +gv(a){return a.length}} +A.N1.prototype={ +gv(a){return a.length}} +A.h8.prototype={$ih8:1} +A.Nh.prototype={ +gv(a){var s=a.length +s.toString +return s}} +A.qn.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.Of.prototype={ +k(a){var s=String(a) +s.toString +return s}} +A.Oo.prototype={ +gv(a){return a.length}} +A.Os.prototype={ +az(a,b){return A.j_(a.get(b))!=null}, +h(a,b){return A.j_(a.get(b))}, +aj(a,b){var s,r,q=a.entries() +for(;;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.j_(s.value[1]))}}, +gbX(a){var s=A.b([],t.s) +this.aj(a,new A.aeH(s)) +return s}, +geu(a){var s=A.b([],t.n4) +this.aj(a,new A.aeI(s)) +return s}, +gv(a){var s=a.size +s.toString +return s}, +ga7(a){var s=a.size +s.toString +return s===0}, +gbV(a){var s=a.size +s.toString +return s!==0}, +m(a,b,c){throw A.e(A.af("Not supported"))}, +bY(a,b,c){throw A.e(A.af("Not supported"))}, +F(a,b){throw A.e(A.af("Not supported"))}, +$iaT:1} +A.aeH.prototype={ +$2(a,b){return this.a.push(a)}, +$S:27} +A.aeI.prototype={ +$2(a,b){return this.a.push(b)}, +$S:27} +A.Ot.prototype={ +az(a,b){return A.j_(a.get(b))!=null}, +h(a,b){return A.j_(a.get(b))}, +aj(a,b){var s,r,q=a.entries() +for(;;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.j_(s.value[1]))}}, +gbX(a){var s=A.b([],t.s) +this.aj(a,new A.aeJ(s)) +return s}, +geu(a){var s=A.b([],t.n4) +this.aj(a,new A.aeK(s)) +return s}, +gv(a){var s=a.size +s.toString +return s}, +ga7(a){var s=a.size +s.toString +return s===0}, +gbV(a){var s=a.size +s.toString +return s!==0}, +m(a,b,c){throw A.e(A.af("Not supported"))}, +bY(a,b,c){throw A.e(A.af("Not supported"))}, +F(a,b){throw A.e(A.af("Not supported"))}, +$iaT:1} +A.aeJ.prototype={ +$2(a,b){return this.a.push(a)}, +$S:27} +A.aeK.prototype={ +$2(a,b){return this.a.push(b)}, +$S:27} +A.hg.prototype={$ihg:1} +A.Ou.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.bA.prototype={ +k(a){var s=a.nodeValue +return s==null?this.a2c(a):s}, +$ibA:1} +A.C1.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.hh.prototype={ +gv(a){return a.length}, +$ihh:1} +A.Pg.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.Qj.prototype={ +az(a,b){return A.j_(a.get(b))!=null}, +h(a,b){return A.j_(a.get(b))}, +aj(a,b){var s,r,q=a.entries() +for(;;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.j_(s.value[1]))}}, +gbX(a){var s=A.b([],t.s) +this.aj(a,new A.aiR(s)) +return s}, +geu(a){var s=A.b([],t.n4) +this.aj(a,new A.aiS(s)) +return s}, +gv(a){var s=a.size +s.toString +return s}, +ga7(a){var s=a.size +s.toString +return s===0}, +gbV(a){var s=a.size +s.toString +return s!==0}, +m(a,b,c){throw A.e(A.af("Not supported"))}, +bY(a,b,c){throw A.e(A.af("Not supported"))}, +F(a,b){throw A.e(A.af("Not supported"))}, +$iaT:1} +A.aiR.prototype={ +$2(a,b){return this.a.push(a)}, +$S:27} +A.aiS.prototype={ +$2(a,b){return this.a.push(b)}, +$S:27} +A.QH.prototype={ +gv(a){return a.length}} +A.hm.prototype={$ihm:1} +A.Rp.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.hn.prototype={$ihn:1} +A.Rw.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.ho.prototype={ +gv(a){return a.length}, +$iho:1} +A.RD.prototype={ +az(a,b){return a.getItem(A.bt(b))!=null}, +h(a,b){return a.getItem(A.bt(b))}, +m(a,b,c){a.setItem(b,c)}, +bY(a,b,c){var s +if(a.getItem(b)==null)a.setItem(b,c.$0()) +s=a.getItem(b) +return s==null?A.bt(s):s}, +F(a,b){var s +A.bt(b) +s=a.getItem(b) +a.removeItem(b) +return s}, +aj(a,b){var s,r,q +for(s=0;;++s){r=a.key(s) +if(r==null)return +q=a.getItem(r) +q.toString +b.$2(r,q)}}, +gbX(a){var s=A.b([],t.s) +this.aj(a,new A.alI(s)) +return s}, +geu(a){var s=A.b([],t.s) +this.aj(a,new A.alJ(s)) +return s}, +gv(a){var s=a.length +s.toString +return s}, +ga7(a){return a.key(0)==null}, +gbV(a){return a.key(0)!=null}, +$iaT:1} +A.alI.prototype={ +$2(a,b){return this.a.push(a)}, +$S:103} +A.alJ.prototype={ +$2(a,b){return this.a.push(b)}, +$S:103} +A.fu.prototype={$ifu:1} +A.hs.prototype={$ihs:1} +A.fx.prototype={$ifx:1} +A.S5.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.S6.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.S8.prototype={ +gv(a){var s=a.length +s.toString +return s}} +A.ht.prototype={$iht:1} +A.Sb.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.Sc.prototype={ +gv(a){return a.length}} +A.Sp.prototype={ +k(a){var s=String(a) +s.toString +return s}} +A.Su.prototype={ +gv(a){return a.length}} +A.U6.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.FQ.prototype={ +k(a){var s,r,q,p=a.left +p.toString +s=a.top +s.toString +r=a.width +r.toString +q=a.height +q.toString +return"Rectangle ("+A.k(p)+", "+A.k(s)+") "+A.k(r)+" x "+A.k(q)}, +j(a,b){var s,r,q +if(b==null)return!1 +s=!1 +if(t.Gb.b(b)){r=a.left +r.toString +q=J.dF(b) +if(r===q.gw1(b)){r=a.top +r.toString +if(r===q.grR(b)){r=a.width +r.toString +if(r===q.gfC(b)){s=a.height +s.toString +q=s===q.gb4(b) +s=q}}}}return s}, +gB(a){var s,r,q,p=a.left +p.toString +s=a.top +s.toString +r=a.width +r.toString +q=a.height +q.toString +return A.T(p,s,r,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +gQx(a){return a.height}, +gb4(a){var s=a.height +s.toString +return s}, +gUH(a){return a.width}, +gfC(a){var s=a.width +s.toString +return s}} +A.VC.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){if(a.length>0)return a[0] +throw A.e(A.a5("No elements"))}, +gae(a){var s=a.length +if(s>0)return a[s-1] +throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.GO.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.ZO.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.ZZ.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.e(A.dk(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return a[b]}, +$ia8:1, +$ibE:1, +$io:1, +$iO:1} +A.b4.prototype={ +gag(a){return new A.MT(a,this.gv(a),A.bR(a).i("MT"))}, +E(a,b){throw A.e(A.af("Cannot add to immutable List."))}, +O(a,b){throw A.e(A.af("Cannot add to immutable List."))}, +fa(a,b){throw A.e(A.af("Cannot sort immutable List."))}, +hX(a){throw A.e(A.af("Cannot remove from immutable List."))}, +F(a,b){throw A.e(A.af("Cannot remove from immutable List."))}} +A.MT.prototype={ +u(){var s=this,r=s.c+1,q=s.b +if(r4294967296)throw A.e(A.eM("max must be in range 0 < max \u2264 2^32, was "+a)) +if(a>255)if(a>65535)s=a>16777215?4:3 +else s=2 +else s=1 +r=this.a +r.$flags&2&&A.aI(r,11) +r.setUint32(0,0,!1) +q=4-s +p=A.eT(Math.pow(256,s)) +for(o=a-1,n=(a&o)>>>0===0;;){crypto.getRandomValues(J.j2(B.ax.gc9(r),q,s)) +m=r.getUint32(0,!1) +if(n)return(m&o)>>>0 +l=m%a +if(m-l+a>>0!==b||b>=s +s.toString +if(s)throw A.e(A.dk(b,this.gv(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return this.h(a,b)}, +$ia8:1, +$io:1, +$iO:1} +A.hY.prototype={$ihY:1} +A.OM.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length +s.toString +s=b>>>0!==b||b>=s +s.toString +if(s)throw A.e(A.dk(b,this.gv(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return this.h(a,b)}, +$ia8:1, +$io:1, +$iO:1} +A.Ph.prototype={ +gv(a){return a.length}} +A.RH.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length +s.toString +s=b>>>0!==b||b>=s +s.toString +if(s)throw A.e(A.dk(b,this.gv(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return this.h(a,b)}, +$ia8:1, +$io:1, +$iO:1} +A.i4.prototype={$ii4:1} +A.Sd.prototype={ +gv(a){var s=a.length +s.toString +return s}, +h(a,b){var s=a.length +s.toString +s=b>>>0!==b||b>=s +s.toString +if(s)throw A.e(A.dk(b,this.gv(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +m(a,b,c){throw A.e(A.af("Cannot assign element of immutable List."))}, +sv(a,b){throw A.e(A.af("Cannot resize immutable List."))}, +ga3(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.e(A.a5("No elements"))}, +gae(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.e(A.a5("No elements"))}, +bm(a,b){return this.h(a,b)}, +$ia8:1, +$io:1, +$iO:1} +A.Wc.prototype={} +A.Wd.prototype={} +A.X6.prototype={} +A.X7.prototype={} +A.ZV.prototype={} +A.ZW.prototype={} +A.a_K.prototype={} +A.a_L.prototype={} +A.MC.prototype={} +A.a4s.prototype={ +K(){return"ClipOp."+this.b}} +A.P8.prototype={ +K(){return"PathFillType."+this.b}} +A.aq0.prototype={ +d0(a,b){A.b20(this.a,this.b,a,b)}} +A.Iu.prototype={ +dv(a){A.mL(this.b,this.c,a)}} +A.mp.prototype={ +gv(a){return this.a.gv(0)}, +dn(a){var s,r,q=this +if(!q.d&&q.e!=null){q.e.d0(a.a,a.gY5()) +return!1}s=q.c +if(s<=0)return!0 +r=q.OW(s-1) +q.a.fd(0,a) +return r}, +OW(a){var s,r,q +for(s=this.a,r=!1;(s.c-s.b&s.a.length-1)>>>0>a;r=!0){q=s.po() +A.mL(q.b,q.c,null)}return r}, +a9b(){var s,r=this,q=r.a +if(!q.ga7(0)&&r.e!=null){s=q.po() +r.e.d0(s.a,s.gY5()) +A.dx(r.gOU())}else r.d=!1}} +A.a4b.prototype={ +aud(a,b,c){this.a.bY(0,a,new A.a4c()).dn(new A.Iu(b,c,$.aq))}, +a0M(a,b){var s=this.a.bY(0,a,new A.a4d()),r=s.e +s.e=new A.aq0(b,$.aq) +if(r==null&&!s.d){s.d=!0 +A.dx(s.gOU())}}, +aqi(a){var s,r,q,p,o,n,m,l="Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and new capacity)",k="Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and flag state)",j=J.j2(B.ax.gc9(a),a.byteOffset,a.byteLength) +if(j[0]===7){s=j[1] +if(s>=254)throw A.e(A.cO("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")) +r=2+s +q=B.a5.bM(0,B.O.cr(j,2,r)) +switch(q){case"resize":if(j[r]!==12)throw A.e(A.cO(l)) +p=r+1 +if(j[p]<2)throw A.e(A.cO(l));++p +if(j[p]!==7)throw A.e(A.cO("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p +o=j[p] +if(o>=254)throw A.e(A.cO("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p +r=p+o +n=B.a5.bM(0,B.O.cr(j,p,r)) +if(j[r]!==3)throw A.e(A.cO("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")) +this.ZV(0,n,a.getUint32(r+1,B.aM===$.e6())) +break +case"overflow":if(j[r]!==12)throw A.e(A.cO(k)) +p=r+1 +if(j[p]<2)throw A.e(A.cO(k));++p +if(j[p]!==7)throw A.e(A.cO("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p +o=j[p] +if(o>=254)throw A.e(A.cO("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p +r=p+o +B.a5.bM(0,B.O.cr(j,p,r)) +r=j[r] +if(r!==1&&r!==2)throw A.e(A.cO("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")) +break +default:throw A.e(A.cO("Unrecognized method '"+q+"' sent to dev.flutter/channel-buffers"))}}else{m=A.b(B.a5.bM(0,j).split("\r"),t.s) +if(m.length===3&&m[0]==="resize")this.ZV(0,m[1],A.h_(m[2],null)) +else throw A.e(A.cO("Unrecognized message "+A.k(m)+" sent to dev.flutter/channel-buffers."))}}, +ZV(a,b,c){var s=this.a,r=s.h(0,b) +if(r==null)s.m(0,b,new A.mp(A.lI(c,t.S8),c)) +else{r.c=c +r.OW(c)}}} +A.a4c.prototype={ +$0(){return new A.mp(A.lI(1,t.S8),1)}, +$S:232} +A.a4d.prototype={ +$0(){return new A.mp(A.lI(1,t.S8),1)}, +$S:232} +A.OQ.prototype={ +j(a,b){if(b==null)return!1 +return b instanceof A.OQ&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"OffsetBase("+B.d.ah(this.a,1)+", "+B.d.ah(this.b,1)+")"}} +A.j.prototype={ +gcj(){var s=this.a,r=this.b +return Math.sqrt(s*s+r*r)}, +gvj(){var s=this.a,r=this.b +return s*s+r*r}, +a0(a,b){return new A.j(this.a-b.a,this.b-b.b)}, +V(a,b){return new A.j(this.a+b.a,this.b+b.b)}, +a6(a,b){return new A.j(this.a*b,this.b*b)}, +dE(a,b){return new A.j(this.a/b,this.b/b)}, +j(a,b){if(b==null)return!1 +return b instanceof A.j&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"Offset("+B.d.ah(this.a,1)+", "+B.d.ah(this.b,1)+")"}} +A.I.prototype={ +ga7(a){return this.a<=0||this.b<=0}, +a0(a,b){var s=this +if(b instanceof A.I)return new A.j(s.a-b.a,s.b-b.b) +if(b instanceof A.j)return new A.I(s.a-b.a,s.b-b.b) +throw A.e(A.bF(b,null))}, +V(a,b){return new A.I(this.a+b.a,this.b+b.b)}, +a6(a,b){return new A.I(this.a*b,this.b*b)}, +dE(a,b){return new A.I(this.a/b,this.b/b)}, +geJ(){return Math.min(Math.abs(this.a),Math.abs(this.b))}, +kv(a){return new A.j(a.a+this.a/2,a.b+this.b/2)}, +zL(a,b){return new A.j(b.a+this.a,b.b+this.b)}, +p(a,b){var s=b.a,r=!1 +if(s>=0)if(s=0&&s=s.c||s.b>=s.d}, +dj(a){var s=this,r=a.a,q=a.b +return new A.x(s.a+r,s.b+q,s.c+r,s.d+q)}, +l0(a,b,c){var s=this +return new A.x(s.a+b,s.b+c,s.c+b,s.d+c)}, +cI(a){var s=this +return new A.x(s.a-a,s.b-a,s.c+a,s.d+a)}, +dM(a){var s=this +return new A.x(Math.max(s.a,a.a),Math.max(s.b,a.b),Math.min(s.c,a.c),Math.min(s.d,a.d))}, +fX(a){var s=this +return new A.x(Math.min(s.a,a.a),Math.min(s.b,a.b),Math.max(s.c,a.c),Math.max(s.d,a.d))}, +ft(a){var s=this +if(s.c<=a.a||a.c<=s.a)return!1 +if(s.d<=a.b||a.d<=s.b)return!1 +return!0}, +geJ(){var s=this +return Math.min(Math.abs(s.c-s.a),Math.abs(s.d-s.b))}, +gVy(){var s=this.b +return new A.j(this.a,s+(this.d-s)/2)}, +gaV(){var s=this,r=s.a,q=s.b +return new A.j(r+(s.c-r)/2,q+(s.d-q)/2)}, +p(a,b){var s=this,r=b.a,q=!1 +if(r>=s.a)if(r=s.b&&rd&&s!==0)return Math.min(a,d/s) +return a}, +CX(){var s=this,r=s.c,q=s.a,p=Math.abs(r-q),o=s.d,n=s.b,m=Math.abs(o-n),l=s.Q,k=s.f,j=s.e,i=s.r,h=s.w,g=s.y,f=s.x,e=s.z,d=s.y7(s.y7(s.y7(s.y7(1,l,k,m),j,i,p),h,g,m),f,e,p) +if(d<1)return s.pX(e*d,l*d,o,f*d,g*d,q,r,j*d,k*d,n,i*d,h*d,s.gqr()) +return s.pX(e,l,o,f,g,q,r,j,k,n,i,h,s.gqr())}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(A.r(s)!==J.U(b))return!1 +return b instanceof A.xr&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.z===s.z&&b.Q===s.Q&&b.x===s.x&&b.y===s.y}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.z,s.Q,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +TE(a){var s,r,q=this,p=B.d.ah(q.a,1)+", "+B.d.ah(q.b,1)+", "+B.d.ah(q.c,1)+", "+B.d.ah(q.d,1),o=q.e,n=q.f,m=q.r,l=q.w +if(new A.aG(o,n).j(0,new A.aG(m,l))){s=q.x +r=q.y +s=new A.aG(m,l).j(0,new A.aG(s,r))&&new A.aG(s,r).j(0,new A.aG(q.z,q.Q))}else s=!1 +if(s){if(o===n)return a+".fromLTRBR("+p+", "+B.d.ah(o,1)+")" +return a+".fromLTRBXY("+p+", "+B.d.ah(o,1)+", "+B.d.ah(n,1)+")"}return a+".fromLTRBAndCorners("+p+", topLeft: "+new A.aG(o,n).k(0)+", topRight: "+new A.aG(m,l).k(0)+", bottomRight: "+new A.aG(q.x,q.y).k(0)+", bottomLeft: "+new A.aG(q.z,q.Q).k(0)+")"}} +A.jB.prototype={ +pX(a,b,c,d,e,f,g,h,i,j,k,l,m){return A.aW7(a,b,c,d,e,f,g,h,i,j,k,l)}, +gqr(){return!1}, +p(a,b){var s,r,q,p,o,n=this,m=b.a,l=n.a,k=!0 +if(!(m=n.c)){k=b.b +k=k=n.d}if(k)return!1 +s=n.CX() +r=s.e +if(mk-r&&b.bk-r&&b.b>n.d-s.y){q=m-k+r +p=s.y +o=b.b-n.d+p}else{r=s.z +if(mn.d-s.Q){q=m-l-r +p=s.Q +o=b.b-n.d+p}else return!0}}}q/=r +o/=p +if(q*q+o*o>1)return!1 +return!0}, +k(a){return this.TE("RRect")}} +A.rk.prototype={ +pX(a,b,c,d,e,f,g,h,i,j,k,l,m){return A.aW8(a,b,c,d,e,f,g,h,i,j,k,l,m)}, +a_c(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this +if(c.as){s=c.a +r=c.c-s +q=c.b +p=c.d-q +return new A.am($.aPp().lZ(0,r,p,c.aiF()),new A.j(s+r/2,q+p/2))}else{s=c.akh() +c=A.bQ($.a3().w) +r=s.a +q=s.c +p=s.e +o=s.r +n=A.awg(r,q,p,o) +m=s.b +l=s.d +k=s.w +j=s.y +i=A.awg(m,l,k,j) +h=s.z +g=s.x +f=A.awg(r,q,h,g) +e=s.f +s=s.Q +d=A.awg(m,l,e,s) +c.aq(new A.eL(n,m)) +A.Y4(new A.j(n,i),new A.j(q,m),new A.aG(o,k),B.Aj).uJ(c,!1) +A.Y4(new A.j(f,i),new A.j(q,l),new A.aG(g,j),B.iN).uJ(c,!0) +A.Y4(new A.j(f,d),new A.j(r,l),new A.aG(h,s),B.An).uJ(c,!1) +A.Y4(new A.j(n,d),new A.j(r,m),new A.aG(p,e),B.Ao).uJ(c,!0) +c.aq(new A.cb(n,m)) +c.aq(new A.pJ()) +return new A.am(c,B.i)}}, +akh(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this,a6=null,a7="Pattern matching error",a8=a5.c,a9=a5.a,b0=a8-a9 +if(!(b0>0&&a5.d-a5.b>0))return new A.rk(!0,a9,a5.b,a8,a5.d,0,0,0,0,0,0,0,0) +s=A.Pv(a5.e,a5.f) +r=s.a +q=a6 +p=s.b +q=p +o=r +n=A.Pv(a5.r,a5.w) +m=n.a +l=a6 +k=n.b +l=k +j=m +i=A.Pv(a5.z,a5.Q) +h=i.a +g=a6 +f=i.b +g=f +e=h +d=A.Pv(a5.x,a5.y) +c=d.a +b=a6 +a=d.b +b=a +a0=c +a1=a5.d +a2=a5.b +a3=a1-a2 +a4=A.Cq(l,b,a3,A.Cq(q,g,a3,A.Cq(e,a0,b0,A.Cq(o,j,b0,1)))) +if(a4<1)return a5.pX(e*a4,g*a4,a1,a0*a4,b*a4,a9,a8,o*a4,q*a4,a2,j*a4,l*a4,a5.as) +else return a5}, +aiF(){var s,r,q,p,o,n,m=this,l=m.c-m.a +if(!(l>0&&m.d-m.b>0))return B.C +s=A.Pv(m.e,m.f) +r=s.a +q=null +p=s.b +q=p +o=r +n=A.Cq(q,q,m.d-m.b,A.Cq(o,o,l,1)) +return new A.aG(o*n,q*n)}, +k(a){return this.TE("RSuperellipse")}, +gqr(){return this.as}} +A.Bc.prototype={ +K(){return"KeyEventType."+this.b}, +gJN(a){var s +switch(this.a){case 0:s="Key Down" +break +case 1:s="Key Up" +break +case 2:s="Key Repeat" +break +default:s=null}return s}} +A.aaY.prototype={ +K(){return"KeyEventDeviceType."+this.b}} +A.he.prototype={ +af4(){var s=this.e,r=B.f.lV(s,16),q=B.d.h_(s/4294967296) +$label0$0:{if(0===q){s=" (Unicode)" +break $label0$0}if(1===q){s=" (Unprintable)" +break $label0$0}if(2===q){s=" (Flutter)" +break $label0$0}if(17===q){s=" (Android)" +break $label0$0}if(18===q){s=" (Fuchsia)" +break $label0$0}if(19===q){s=" (iOS)" +break $label0$0}if(20===q){s=" (macOS)" +break $label0$0}if(21===q){s=" (GTK)" +break $label0$0}if(22===q){s=" (Windows)" +break $label0$0}if(23===q){s=" (Web)" +break $label0$0}if(24===q){s=" (GLFW)" +break $label0$0}s="" +break $label0$0}return"0x"+r+s}, +a9x(){var s,r=this.f +$label0$0:{if(r==null){s="" +break $label0$0}if("\n"===r){s='"\\n"' +break $label0$0}if("\t"===r){s='"\\t"' +break $label0$0}if("\r"===r){s='"\\r"' +break $label0$0}if("\b"===r){s='"\\b"' +break $label0$0}if("\f"===r){s='"\\f"' +break $label0$0}s='"'+r+'"' +break $label0$0}return s}, +ahN(){var s=this.f +if(s==null)return"" +return" (0x"+new A.ae(new A.fG(s),new A.aaX(),t.Hz.i("ae")).bn(0," ")+")"}, +k(a){var s=this,r=s.b.gJN(0),q=B.f.lV(s.d,16),p=s.af4(),o=s.a9x(),n=s.ahN(),m=s.r?", synthesized":"" +return"KeyData("+r+", physical: 0x"+q+", logical: "+p+", character: "+o+n+m+")"}} +A.aaX.prototype={ +$1(a){return B.c.eb(B.f.lV(a,16),2,"0")}, +$S:70} +A.u.prototype={ +gq(a){return this.C()}, +C(){var s=this +return((B.d.aI(s.a*255)&255)<<24|(B.d.aI(s.b*255)&255)<<16|(B.d.aI(s.c*255)&255)<<8|B.d.aI(s.d*255)&255)>>>0}, +gdH(a){return this.C()>>>24&255}, +gcR(a){return(this.C()>>>24&255)/255}, +gKH(){return this.C()>>>16&255}, +gCT(){return this.C()>>>8&255}, +gHs(){return this.C()&255}, +CC(a,b,c,d,e){var s=this,r=new A.u(a,s.b,s.c,s.d,s.e) +return r==null?s:r}, +Ll(a){var s=null +return this.CC(a,s,s,s,s)}, +dh(a){return A.aC(a,this.C()>>>16&255,this.C()>>>8&255,this.C()&255)}, +b_(a){return A.aC(B.d.aI(255*a),this.C()>>>16&255,this.C()>>>8&255,this.C()&255)}, +HN(){return 0.2126*A.aCK(this.b)+0.7152*A.aCK(this.c)+0.0722*A.aCK(this.d)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return t.G.b(b)&&b.gmD(b)===s.a&&b.glT(b)===s.b&&b.gl4()===s.c&&b.glp(b)===s.d&&b.gqL()===s.e}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this +return"Color(alpha: "+B.d.ah(s.a,4)+", red: "+B.d.ah(s.b,4)+", green: "+B.d.ah(s.c,4)+", blue: "+B.d.ah(s.d,4)+", colorSpace: "+s.e.k(0)+")"}, +gmD(a){return this.a}, +glT(a){return this.b}, +gl4(){return this.c}, +glp(a){return this.d}, +gqL(){return this.e}} +A.E0.prototype={ +K(){return"StrokeCap."+this.b}} +A.RJ.prototype={ +K(){return"StrokeJoin."+this.b}} +A.P5.prototype={ +K(){return"PaintingStyle."+this.b}} +A.yL.prototype={ +K(){return"BlendMode."+this.b}} +A.u8.prototype={ +K(){return"Clip."+this.b}} +A.L0.prototype={ +K(){return"BlurStyle."+this.b}} +A.Bw.prototype={ +j(a,b){if(b==null)return!1 +return b instanceof A.Bw&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"MaskFilter.blur("+this.a.k(0)+", "+B.d.ah(this.b,1)+")"}} +A.q5.prototype={ +K(){return"FilterQuality."+this.b}} +A.aDn.prototype={} +A.a4L.prototype={ +K(){return"ColorSpace."+this.b}} +A.ok.prototype={ +aJ(a,b){return new A.ok(this.a,this.b.a6(0,b),this.c*b)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.ok&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"TextShadow("+this.a.k(0)+", "+this.b.k(0)+", "+A.k(this.c)+")"}} +A.ns.prototype={ +gv(a){return this.b}} +A.agk.prototype={} +A.no.prototype={ +k(a){var s,r=A.r(this).k(0),q=this.a,p=A.ea(q[2],0,0),o=q[1],n=A.ea(o,0,0),m=q[4],l=A.ea(m,0,0),k=A.ea(q[3],0,0) +o=A.ea(o,0,0) +s=q[0] +return r+"(buildDuration: "+(A.k((p.a-n.a)*0.001)+"ms")+", rasterDuration: "+(A.k((l.a-k.a)*0.001)+"ms")+", vsyncOverhead: "+(A.k((o.a-A.ea(s,0,0).a)*0.001)+"ms")+", totalSpan: "+(A.k((A.ea(m,0,0).a-A.ea(s,0,0).a)*0.001)+"ms")+", layerCacheCount: "+q[6]+", layerCacheBytes: "+q[7]+", pictureCacheCount: "+q[8]+", pictureCacheBytes: "+q[9]+", frameNumber: "+B.b.gae(q)+")"}} +A.j3.prototype={ +K(){return"AppLifecycleState."+this.b}} +A.yC.prototype={ +K(){return"AppExitResponse."+this.b}} +A.qD.prototype={ +gro(a){var s=this.a,r=B.bQ.h(0,s) +return r==null?s:r}, +gA3(){var s=this.c,r=B.ck.h(0,s) +return r==null?s:r}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.qD&&b.gro(0)===s.gro(0)&&b.b==s.b&&b.gA3()==s.gA3()}, +gB(a){return A.T(this.gro(0),this.b,this.gA3(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return this.RM("_")}, +RM(a){var s=this,r=s.gro(0),q=s.b +if(q!=null)r+=a+q +if(s.c!=null)r+=a+A.k(s.gA3()) +return r.charCodeAt(0)==0?r:r}} +A.a5f.prototype={ +K(){return"DartPerformanceMode."+this.b}} +A.oi.prototype={ +k(a){return"SemanticsActionEvent("+this.a.k(0)+", view: "+this.b+", node: "+this.c+")"}} +A.wy.prototype={ +k(a){return"ViewFocusEvent(viewId: "+this.a+", state: "+this.b.k(0)+", direction: "+this.c.k(0)+")"}} +A.Sw.prototype={ +K(){return"ViewFocusState."+this.b}} +A.EW.prototype={ +K(){return"ViewFocusDirection."+this.b}} +A.lS.prototype={ +K(){return"PointerChange."+this.b}} +A.kA.prototype={ +K(){return"PointerDeviceKind."+this.b}} +A.vs.prototype={ +K(){return"PointerSignalKind."+this.b}} +A.iA.prototype={ +ng(a){var s=this.p4 +if(s!=null)s.$1$allowPlatformDefault(a)}, +k(a){return"PointerData(viewId: "+this.a+", x: "+A.k(this.x)+", y: "+A.k(this.y)+")"}} +A.nV.prototype={} +A.azB.prototype={ +$1(a){return this.a.$1(this.b.$1(a))}, +$S:86} +A.azE.prototype={ +$1(a){var s=this.a +return new A.j(a.a+s.a,a.b+s.b)}, +$S:86} +A.azC.prototype={ +$1(a){var s=this.a +return new A.j(a.a*s.a,a.b*s.b)}, +$S:86} +A.azA.prototype={ +$1(a){return new A.j(a.b,a.a)}, +$S:86} +A.Y3.prototype={ +zD(a8,a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6=this,a7=A.a_M(a9,A.azD(a6.a)) +if(b0)a7=A.a_M(a7,$.aPu()) +s=a6.e +r=a6.f +q=s.a0(0,r) +p=a6.r +o=-p +n=Math.cos(o) +m=Math.sin(o) +o=q.a +l=q.b +k=o*n-l*m +j=o*m+l*n +i=new A.j(k,j) +h=r.V(0,i) +g=new A.j(l,-o).dE(0,q.gcj()) +f=new A.j(-j,k).dE(0,i.gcj()) +e=Math.tan(p/4)*4/3 +d=q.gcj() +c=[s,s.V(0,g.a6(0,e).a6(0,d)),h.V(0,f.a6(0,e).a6(0,d)),h] +p=a6.b +b=new A.j(0,p) +a=s.a0(0,r) +f=new A.j(-a.b,a.a).dE(0,a.gcj()) +a0=A.aYX(a6.c) +a1=a0.a +a2=null +a3=a0.b +a2=a3 +a4=a1 +a5=[b,b.V(0,B.e9.a6(0,a4).a6(0,p)),s.V(0,f.a6(0,a2).a6(0,p)),s] +if(!b1){A.awh(a8,a7.$1(a5[1]),a7.$1(a5[2]),a7.$1(a5[3])) +A.awh(a8,a7.$1(c[1]),a7.$1(c[2]),a7.$1(c[3]))}else{A.awh(a8,a7.$1(c[2]),a7.$1(c[1]),a7.$1(c[0])) +A.awh(a8,a7.$1(a5[2]),a7.$1(a5[1]),a7.$1(a5[0]))}}} +A.awi.prototype={ +zC(a,b,c){var s,r,q=this,p=q.b,o=A.a_M(A.azD(q.a),A.aZj(new A.j(p.a*b.a,p.b*b.b))) +p=q.d +if(p.c<2||q.e.c<2){if(!c){p=q.e +s=A.a_M(o,A.azD(p.a)) +p=p.b +r=s.$1(new A.j(p,p)) +a.aq(new A.cb(r.a,r.b)) +p=s.$1(new A.j(p,0)) +a.aq(new A.cb(p.a,p.b))}else{s=A.a_M(o,A.azD(p.a)) +p=p.b +r=s.$1(new A.j(p,p)) +a.aq(new A.cb(r.a,r.b)) +p=s.$1(new A.j(0,p)) +a.aq(new A.cb(p.a,p.b))}return}r=q.e +if(!c){p.zD(a,o,!1,!1) +r.zD(a,o,!0,!0)}else{r.zD(a,o,!0,!1) +p.zD(a,o,!1,!0)}}, +uJ(a,b){return this.zC(a,B.iN,b)}} +A.aEB.prototype={} +A.Hd.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.Hd&&s.a===b.a&&s.b===b.b&&s.c===b.c&&s.d===b.d}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this +return"_RSuperellipseCacheKey(width: "+A.k(s.a/100)+",height: "+A.k(s.b/100)+",radiusX: "+A.k(s.c/100)+",radiusY: "+A.k(s.d/100)+")"}} +A.awf.prototype={ +lZ(a,b,c,d){var s,r,q=B.d.aI(b*100),p=B.d.aI(c*100),o=B.d.aI(d.a*100),n=B.d.aI(d.b*100),m=new A.Hd(q,p,o,n),l=this.b,k=l.F(0,m) +if(k!=null){l.m(0,m,k) +return k}else{s=A.bQ($.a3().w) +p=p/100/2 +r=A.Y4(B.i,new A.j(q/100/2,p),new A.aG(o/100,n/100),B.iN) +s.aq(new A.eL(0,p)) +r.uJ(s,!1) +r.zC(s,B.Aj,!0) +r.zC(s,B.Ao,!1) +r.zC(s,B.An,!0) +s.aq(new A.cb(0,p)) +s.aq(new A.pJ()) +l.m(0,m,s) +this.a7n() +return s}}, +a7n(){var s,r,q,p +for(s=this.b,r=this.a,q=A.n(s).i("bs<1>");s.a>r;){p=new A.bs(s,q).gag(0) +if(!p.u())A.a0(A.cj()) +s.F(0,p.gN(0))}}} +A.cL.prototype={ +k(a){return"SemanticsAction."+this.b}} +A.u2.prototype={ +K(){return"CheckedState."+this.b}, +aZ(a){if(this===B.dH||a===B.dH)return B.dH +if(this===B.cZ||a===B.cZ)return B.cZ +if(this===B.h1||a===B.h1)return B.h1 +return B.dG}} +A.EN.prototype={ +K(){return"Tristate."+this.b}, +aZ(a){if(this===B.au||a===B.au)return B.au +if(this===B.fO||a===B.fO)return B.fO +return B.J}} +A.Dw.prototype={ +aZ(a4){var s=this,r=s.a.aZ(a4.a),q=s.b.aZ(a4.b),p=s.c.aZ(a4.c),o=s.d.aZ(a4.d),n=s.e.aZ(a4.e),m=s.f.aZ(a4.f),l=s.r.aZ(a4.r),k=s.w||a4.w,j=s.x||a4.x,i=s.y||a4.y,h=s.z||a4.z,g=s.Q||a4.Q,f=s.as||a4.as,e=s.at||a4.at,d=s.ax||a4.ax,c=s.ay||a4.ay,b=s.ch||a4.ch,a=s.CW||a4.CW,a0=s.cx||a4.cx,a1=s.cy||a4.cy,a2=s.db||a4.db,a3=s.dx||a4.dx +return A.aJY(a,k,r,p,n,l,h,d,c,i,s.dy||a4.dy,a2,b,a0,g,a1,m,q,a3,j,o,e,f)}, +dS(a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4){var s=this,r=a4==null?s.a:a4,q=b9==null?s.b:b9,p=a3==null?s.w:a3,o=c1==null?s.x:c1,n=a7==null?s.r:a7,m=a5==null?s.c:a5,l=a8==null?s.z:a8,k=b6==null?s.Q:b6,j=c4==null?s.as:c4,i=c3==null?s.at:c3,h=a9==null?s.ax:a9,g=b0==null?s.ay:b0,f=b4==null?s.ch:b4,e=c2==null?s.d:c2,d=a2==null?s.CW:a2,c=b5==null?s.cx:b5,b=b7==null?s.cy:b7,a=b3==null?s.db:b3,a0=a6==null?s.e:a6,a1=b8==null?s.f:b8 +return A.aJY(d,p,r,m,a0,n,l,h,g,s.y,s.dy,a,f,c,k,b,a1,q,s.dx,o,e,i,j)}, +anx(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s)}, +anH(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s)}, +anJ(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a)}, +ant(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +HW(a){var s=null +return this.dS(s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +ans(a){var s=null +return this.dS(s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anp(a){var s=null +return this.dS(s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anC(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s)}, +VW(a){var s=null +return this.dS(s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anq(a){var s=null +return this.dS(s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anl(a){var s=null +return this.dS(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anA(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s)}, +anE(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s)}, +any(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s)}, +anz(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s)}, +HX(a){var s=null +return this.dS(s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anF(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s)}, +anB(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s)}, +anu(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anv(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s)}, +anD(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s)}, +anw(a){var s=null +return this.dS(s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s)}, +anr(a){var s=null +return this.dS(s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)s=b instanceof A.Dw&&A.r(r)===A.r(b)&&r.a===b.a&&r.b===b.b&&r.c===b.c&&r.d===b.d&&r.e===b.e&&r.f===b.f&&r.r===b.r&&r.w===b.w&&r.x===b.x&&r.y===b.y&&r.z===b.z&&r.Q===b.Q&&r.as===b.as&&r.at===b.at&&r.ax===b.ax&&r.ay===b.ay&&r.ch===b.ch&&r.CW===b.CW&&r.cx===b.cx&&r.cy===b.cy&&r.db===b.db&&r.dx===b.dx&&r.dy===b.dy +else s=!0 +return s}, +gB(a){var s=this +return A.bI([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy])}} +A.iG.prototype={ +K(){return"SemanticsRole."+this.b}} +A.rJ.prototype={ +K(){return"SemanticsInputType."+this.b}} +A.Dz.prototype={ +K(){return"SemanticsValidationResult."+this.b}} +A.akP.prototype={} +A.nU.prototype={ +K(){return"PlaceholderAlignment."+this.b}} +A.it.prototype={ +k(a){var s=B.MC.h(0,this.a) +s.toString +return s}} +A.kl.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.kl&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"FontVariation('"+this.a+"', "+A.k(this.b)+")"}} +A.qj.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.qj&&s.a.j(0,b.a)&&s.b.j(0,b.b)&&s.c===b.c}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"Glyph("+this.a.k(0)+", textRange: "+this.b.k(0)+", direction: "+this.c.k(0)+")"}} +A.md.prototype={ +K(){return"TextAlign."+this.b}} +A.oq.prototype={ +K(){return"TextBaseline."+this.b}} +A.wg.prototype={ +j(a,b){if(b==null)return!1 +return b instanceof A.wg&&b.a===this.a}, +gB(a){return B.f.gB(this.a)}, +k(a){var s,r=this.a +if(r===0)return"TextDecoration.none" +s=A.b([],t.s) +if((r&1)!==0)s.push("underline") +if((r&2)!==0)s.push("overline") +if((r&4)!==0)s.push("lineThrough") +if(s.length===1)return"TextDecoration."+s[0] +return"TextDecoration.combine(["+B.b.bn(s,", ")+"])"}} +A.amh.prototype={ +K(){return"TextDecorationStyle."+this.b}} +A.RZ.prototype={ +K(){return"TextLeadingDistribution."+this.b}} +A.En.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.En&&b.c===this.c}, +gB(a){return A.T(!0,!0,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"TextHeightBehavior(applyHeightToFirstAscent: true, applyHeightToLastDescent: true, leadingDistribution: "+this.c.k(0)+")"}} +A.Ej.prototype={ +K(){return"TextDirection."+this.b}} +A.fw.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.fw&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this +return"TextBox.fromLTRBD("+B.d.ah(s.a,1)+", "+B.d.ah(s.b,1)+", "+B.d.ah(s.c,1)+", "+B.d.ah(s.d,1)+", "+s.e.k(0)+")"}} +A.Eg.prototype={ +K(){return"TextAffinity."+this.b}} +A.ao.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.ao&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return A.r(this).k(0)+"(offset: "+this.a+", affinity: "+this.b.k(0)+")"}} +A.c4.prototype={ +gbG(){return this.a>=0&&this.b>=0}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.c4&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(B.f.gB(this.a),B.f.gB(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"TextRange(start: "+this.a+", end: "+this.b+")"}} +A.nS.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.nS&&b.a===this.a}, +gB(a){return B.d.gB(this.a)}, +k(a){return A.r(this).k(0)+"(width: "+A.k(this.a)+")"}} +A.yT.prototype={ +K(){return"BoxHeightStyle."+this.b}} +A.L7.prototype={ +K(){return"BoxWidthStyle."+this.b}} +A.EA.prototype={ +K(){return"TileMode."+this.b}} +A.a5S.prototype={} +A.L8.prototype={ +K(){return"Brightness."+this.b}} +A.a3P.prototype={ +j(a,b){if(b==null)return!1 +return this===b}, +gB(a){return A.R.prototype.gB.call(this,0)}} +A.AD.prototype={} +A.N9.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.N9}, +gB(a){return A.T(null,null,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"GestureSettings(physicalTouchSlop: null, physicalDoubleTapSlop: null)"}} +A.a2X.prototype={ +wQ(a){var s,r,q,p +if(A.d3(a).gXF())return A.a0e(4,a,B.a5,!1) +s=this.b +if(s==null){s=v.G +r=s.window.document.querySelector("meta[name=assetBase]") +q=r==null?null:r.content +p=q==null +if(!p)s.window.console.warn("The `assetBase` meta tag is now deprecated.\nUse engineInitializer.initializeEngine(config) instead.\nSee: https://docs.flutter.dev/development/platform-integration/web/initialization") +s=this.b=p?"":q}return A.a0e(4,s+"assets/"+a,B.a5,!1)}} +A.yV.prototype={ +K(){return"BrowserEngine."+this.b}} +A.lM.prototype={ +K(){return"OperatingSystem."+this.b}} +A.a3r.prototype={ +gmC(){var s=this.b +return s===$?this.b=v.G.window.navigator.userAgent:s}, +gdI(){var s,r,q,p=this,o=p.d +if(o===$){s=v.G.window.navigator.vendor +r=p.gmC() +q=p.aoB(s,r.toLowerCase()) +p.d!==$&&A.aA() +p.d=q +o=q}r=o +return r}, +aoB(a,b){if(a==="Google Inc.")return B.cB +else if(a==="Apple Computer, Inc.")return B.bq +else if(B.c.p(b,"Edg/"))return B.cB +else if(a===""&&B.c.p(b,"firefox"))return B.cW +A.ie("WARNING: failed to detect current browser engine. Assuming this is a Chromium-compatible browser.") +return B.cB}, +gdz(){var s,r,q=this,p=q.f +if(p===$){s=q.aoC() +q.f!==$&&A.aA() +q.f=s +p=s}r=p +return r}, +aoC(){var s,r,q=v.G,p=q.window +p=p.navigator.platform +p.toString +s=p +if(B.c.bz(s,"Mac")){q=q.window +q=q.navigator.maxTouchPoints +q=q==null?null:J.ap(q) +r=q +if((r==null?0:r)>2)return B.be +return B.c2}else if(B.c.p(s.toLowerCase(),"iphone")||B.c.p(s.toLowerCase(),"ipad")||B.c.p(s.toLowerCase(),"ipod"))return B.be +else{q=this.gmC() +if(B.c.p(q,"Android"))return B.fn +else if(B.c.bz(s,"Linux"))return B.ia +else if(B.c.bz(s,"Win"))return B.lt +else return B.vO}}} +A.aBh.prototype={ +$1(a){return this.a_I(a)}, +$0(){return this.$1(null)}, +a_I(a){var s=0,r=A.H(t.H) +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=2 +return A.v(A.aBG(a),$async$$1) +case 2:return A.F(null,r)}}) +return A.G($async$$1,r)}, +$S:608} +A.aBi.prototype={ +$0(){var s=0,r=A.H(t.H),q=this +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:q.a.$0() +s=2 +return A.v(A.aFl(),$async$$0) +case 2:q.b.$0() +return A.F(null,r)}}) +return A.G($async$$0,r)}, +$S:9} +A.a3t.prototype={ +Lz(a){return $.aMs.bY(0,a,new A.a3u(A.b3(new A.a3v(a))))}} +A.a3v.prototype={ +$1(a){this.a.$1(a)}, +$S:2} +A.a3u.prototype={ +$0(){return this.a}, +$S:609} +A.Ne.prototype={ +H5(a){var s=new A.a9o(a) +v.G.window.addEventListener("popstate",B.nc.Lz(s)) +return new A.a9n(this,s)}, +a05(){var s=v.G.window.location.hash +if(s.length===0||s==="#")return"/" +return B.c.bZ(s,1)}, +LE(a){var s=v.G.window.history.state +if(s==null)s=null +else{s=A.aFe(s) +s.toString}return s}, +Zj(a){var s=a.length===0||a==="/"?"":"#"+a,r=v.G,q=r.window.location.pathname +q.toString +r=r.window.location.search +r.toString +return q+r+s}, +Zu(a,b,c,d){var s=this.Zj(d),r=v.G.window.history,q=A.ad(b) +q.toString +r.pushState(q,c,s)}, +pq(a,b,c,d){var s,r=this.Zj(d),q=v.G.window.history +if(b==null)s=null +else{s=A.ad(b) +s.toString}q.replaceState(s,c,r)}, +x4(a,b){v.G.window.history.go(b) +return this.ali()}, +ali(){var s=new A.au($.aq,t.W),r=A.kU("unsubscribe") +r.b=this.H5(new A.a9m(r,new A.bB(s,t.Q))) +return s}} +A.a9o.prototype={ +$1(a){var s=A.dP(a).state +if(s==null)s=null +else{s=A.aFe(s) +s.toString}this.a.$1(s)}, +$S:618} +A.a9n.prototype={ +$0(){var s=this.b +v.G.window.removeEventListener("popstate",B.nc.Lz(s)) +$.aMs.F(0,s) +return null}, +$S:0} +A.a9m.prototype={ +$1(a){this.a.aS().$0() +this.b.f1(0)}, +$S:10} +A.ame.prototype={} +A.KK.prototype={ +gv(a){return a.length}} +A.KL.prototype={ +az(a,b){return A.j_(a.get(b))!=null}, +h(a,b){return A.j_(a.get(b))}, +aj(a,b){var s,r,q=a.entries() +for(;;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.j_(s.value[1]))}}, +gbX(a){var s=A.b([],t.s) +this.aj(a,new A.a2Z(s)) +return s}, +geu(a){var s=A.b([],t.n4) +this.aj(a,new A.a3_(s)) +return s}, +gv(a){var s=a.size +s.toString +return s}, +ga7(a){var s=a.size +s.toString +return s===0}, +gbV(a){var s=a.size +s.toString +return s!==0}, +m(a,b,c){throw A.e(A.af("Not supported"))}, +bY(a,b,c){throw A.e(A.af("Not supported"))}, +F(a,b){throw A.e(A.af("Not supported"))}, +$iaT:1} +A.a2Z.prototype={ +$2(a,b){return this.a.push(a)}, +$S:27} +A.a3_.prototype={ +$2(a,b){return this.a.push(b)}, +$S:27} +A.KM.prototype={ +gv(a){return a.length}} +A.mY.prototype={} +A.OP.prototype={ +gv(a){return a.length}} +A.Tl.prototype={} +A.yY.prototype={ +H(a){var s,r=this,q=null,p=r.w!=null?r.gafO():q +if(p==null)p=new A.a3N() +s=A.aWr(q,q,r.c) +return new A.C5(s,q,p,q,r.gafM(),B.F,B.d1,B.d_,B.d2,B.dL,r.ay,r.ch,r.CW,B.a_,B.f5,!1,q,q,B.oG,!1,q)}, +afP(a){return this.w.$2(a,this.e)}, +afN(a,b,c){return this.y.$3(a,this.e,b)}} +A.a3N.prototype={ +$1(a){var s=null +return A.c_(s,s,B.n,s,s,s,s,s,s,s,s,s,s)}, +$S:128} +A.n1.prototype={ +K6(a){return new A.dw(this,t.FB)}, +Bt(a,b){var s=A.rP(null,null,null,!1,t.oA),r=A.aJ1(new A.df(s,A.n(s).i("df<1>")),this.aeX(a,s,b),new A.a3L(this,a),a.d) +return r}, +aeX(a,b,c){var s=this,r=$.aFG() +return new A.NF().asj(s.b,s.c,b,c,r,s.r,s.w,s.f,s.x,new A.a3J(a))}, +Bv(a,b){var s=A.rP(null,null,null,!1,t.oA),r=A.aJ1(new A.df(s,A.n(s).i("df<1>")),this.af0(a,s,b),new A.a3M(this,a),a.d) +return r}, +af0(a,b,c){var s=this,r=$.aFG() +return new A.NF().asl(s.b,s.c,b,c,r,s.r,s.w,s.f,s.x,new A.a3K(a))}, +j(a,b){var s +if(b==null)return!1 +if(b instanceof A.n1){s=b.b +if(this.b===s)s=this.d===b.d +else s=!1 +return s}return!1}, +gB(a){var s=this +return A.T(s.b,s.d,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return'CachedNetworkImageProvider("'+this.b+'", scale: '+this.d+")"}} +A.a3L.prototype={ +$0(){var s=null +return A.b([A.h4("Image provider",this.a,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.d0,s),A.h4("Image key",this.b,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.d0,s)],t.D)}, +$S:21} +A.a3J.prototype={ +$0(){var s=$.jy.oP$ +s===$&&A.a() +return s.WQ(this.a)}, +$S:0} +A.a3M.prototype={ +$0(){var s=null +return A.b([A.h4("Image provider",this.a,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.d0,s),A.h4("Image key",this.b,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.d0,s)],t.D)}, +$S:21} +A.a3K.prototype={ +$0(){var s=$.jy.oP$ +s===$&&A.a() +return s.WQ(this.a)}, +$S:0} +A.Ow.prototype={ +a5P(a,b,c,d){var s=this +b.YE(new A.af5(s),new A.af6(s,c)) +s.cx=a.YE(s.gauZ(),new A.af7(s,c))}, +aaX(a){var s,r,q=this,p=q.cy=!1,o=q.a +if(o.length===0)return +s=q.ay +if(s==null||a.a-q.ax.a>=s.a){s=q.at +q.P_(new A.ji(s.gja(s),q.Q,null)) +q.ax=a +s=q.at +q.ay=s.gvl(s) +q.at=null +if(B.f.bh(q.ch,q.y.goT())===0?q.z!=null:p){q.ch=0 +q.CW=null +p=q.z +p.toString +q.y=p +if(o.length!==0)q.nZ() +q.z=null}else{r=B.f.jw(q.ch,q.y.goT()) +if(q.y.grH()===-1||r<=q.y.grH())q.nZ()}return}p=q.ax.a +q.CW=A.co(new A.aZ(B.f.aI(s.a-(a.a-p))),q.gaiG())}, +nZ(){var s=0,r=A.H(t.H),q,p=2,o=[],n=this,m,l,k,j,i +var $async$nZ=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:p=4 +s=7 +return A.v(n.y.fE(),$async$nZ) +case 7:n.at=b +p=2 +s=6 +break +case 4:p=3 +i=o.pop() +m=A.a1(i) +l=A.aH(i) +n.wx(A.br("resolving an image frame"),m,n.as,!0,l) +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:if(n.y.goT()===1){if(n.a.length===0){s=1 +break}j=n.at +n.P_(new A.ji(j.gja(j),n.Q,null)) +s=1 +break}n.Sj() +case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$nZ,r)}, +Sj(){if(this.cy)return +this.cy=!0 +$.bC.x6(this.gaaW())}, +P_(a){this.a0L(a);++this.ch}, +Z(a,b){var s=this +s.db=!0 +if(s.a.length===0&&s.y!=null)s.nZ() +s.a26(0,b)}, +J(a,b){var s,r=this +r.a28(0,b) +if(r.a.length===0){s=r.CW +if(s!=null)s.aR(0) +r.CW=null +r.N9()}}, +rn(){var s=this.a27();++this.dy +return new A.auS(this,s)}, +N9(){var s,r=this +if(!r.db||r.dx||r.a.length!==0||r.dy!==0)return +r.dx=!0 +s=r.cx +if(s!=null)s.ru(null) +s=r.cx +if(s!=null)s.aR(0) +r.cx=null}} +A.af5.prototype={ +$1(a){var s=this.a +if(s.CW!=null)s.z=a +else{s.y=a +if(s.a.length!==0)s.nZ()}}, +$S:446} +A.af6.prototype={ +$2(a,b){this.a.wx(A.br("resolving an image codec"),a,this.b,!0,b)}, +$S:48} +A.af7.prototype={ +$2(a,b){this.a.wx(A.br("loading an image"),a,this.b,!0,b)}, +$S:48} +A.auS.prototype={ +l(){this.b.l() +var s=this.a;--s.dy +s.N9() +this.a=null}} +A.aaw.prototype={ +K(){return"ImageRenderMethodForWeb."+this.b}} +A.Ir.prototype={ +K(){return"_State."+this.b}} +A.NF.prototype={ +asj(a,b,c,d,e,f,g,h,i,j){return this.QX(a,b,c,new A.aao(d),e,f,g,h,i,j)}, +asl(a,b,c,d,e,f,g,h,i,j){return this.QX(a,b,c,new A.aap(d),e,f,g,h,i,j)}, +QX(a,b,c,d,e,f,g,h,i,j){var s +switch(i.a){case 1:return this.aeW(a,b,c,d,e,f,g,h,j) +case 0:s=this.aeV(a,c) +return A.aXh(s,s.$ti.c)}}, +aeW(a,b,c,d,e,f,g,h,i){var s,r,q,p,o,n,m=null,l=A.rP(m,m,m,!1,t.hP) +try{p={} +o=A.rP(m,m,m,!1,t.cL) +e.o6(o,a,a,h,!0) +s=new A.df(o,A.n(o).i("df<1>")) +p.a=B.mP +s.d3(new A.aak(p,c,d,l),!0,new A.aal(p,l,c),new A.aam(i,l))}catch(n){r=A.a1(n) +q=A.aH(n) +A.dx(new A.aan(i)) +l.hh(r,q)}p=l +return new A.df(p,A.n(p).i("df<1>"))}, +aeV(a,b){var s=A.ank().Y(a) +$.a3() +return A.JX(s.k(0),new A.aag(b))}} +A.aao.prototype={ +$1(a){return this.a_C(a)}, +a_C(a){var s=0,r=A.H(t.hP),q,p=this,o +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:o=p.a +s=3 +return A.v(A.aaC(a),$async$$1) +case 3:q=o.$1(c) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$$1,r)}, +$S:104} +A.aap.prototype={ +$1(a){return this.a_D(a)}, +a_D(a){var s=0,r=A.H(t.hP),q,p=this,o +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:o=p.a +s=3 +return A.v(A.aaC(a),$async$$1) +case 3:q=o.$1(c) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$$1,r)}, +$S:104} +A.aak.prototype={ +$1(a){var s,r=this +if(a instanceof A.uw)r.b.E(0,new A.hO(a.c,a.b)) +if(a instanceof A.nj){s=r.a +if(s.a===B.mP)s.a=B.Bx +a.b.KC().bo(new A.aai(r.c),t.hP).bo(new A.aaj(s,r.d,r.b),t.P)}}, +$S:244} +A.aai.prototype={ +$1(a){return this.a.$1(a)}, +$S:104} +A.aaj.prototype={ +$1(a){var s=this.b +s.E(0,a) +if(this.a.a===B.By){s.aO(0) +this.c.aO(0)}}, +$S:266} +A.aam.prototype={ +$2(a,b){A.dx(new A.aah(this.a)) +this.b.hh(a,b)}, +$S:189} +A.aah.prototype={ +$0(){this.a.$0()}, +$S:0} +A.aal.prototype={ +$0(){var s=0,r=A.H(t.H),q=this,p,o +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p=q.a +o=p.a +if(o===B.mP){q.b.aO(0) +q.c.aO(0)}else if(o===B.Bx)p.a=B.By +return A.F(null,r)}}) +return A.G($async$$0,r)}, +$S:9} +A.aan.prototype={ +$0(){this.a.$0()}, +$S:0} +A.aag.prototype={ +$2(a,b){this.a.E(0,new A.hO(a,b))}, +$S:267} +A.f7.prototype={ +gag(a){return new A.E_(this.a,0,0)}, +ga3(a){var s=this.a,r=s.length +return r===0?A.a0(A.a5("No element")):B.c.a1(s,0,new A.k4(s,r,0,240).ji())}, +gae(a){var s=this.a,r=s.length +return r===0?A.a0(A.a5("No element")):B.c.bZ(s,new A.pt(s,0,r,240).ji())}, +ga7(a){return this.a.length===0}, +gbV(a){return this.a.length!==0}, +gv(a){var s,r,q=this.a,p=q.length +if(p===0)return 0 +s=new A.k4(q,p,0,240) +for(r=0;s.ji()>=0;)++r +return r}, +bm(a,b){var s,r,q,p,o,n +A.eg(b,"index") +s=this.a +r=s.length +q=0 +if(r!==0){p=new A.k4(s,r,0,240) +for(o=0;n=p.ji(),n>=0;o=n){if(q===b)return B.c.a1(s,o,n);++q}}throw A.e(A.aDo(b,this,"index",null,q))}, +p(a,b){var s +if(typeof b!="string")return!1 +s=b.length +if(s===0)return!1 +if(new A.k4(b,s,0,240).ji()!==s)return!1 +s=this.a +return A.b_D(s,b,0,s.length)>=0}, +ajJ(a,b,c){var s,r +if(a===0||b===this.a.length)return b +s=this.a +c=new A.k4(s,s.length,b,240) +do{r=c.ji() +if(r<0)break +if(--a,a>0){b=r +continue}else{b=r +break}}while(!0) +return b}, +iG(a,b){A.eg(b,"count") +return this.ajH(b)}, +ajH(a){var s=this.ajJ(a,0,null),r=this.a +if(s===r.length)return B.co +return new A.f7(B.c.bZ(r,s))}, +l2(a,b){var s=this.Du(0,b).Bm(0) +if(s.length===0)return B.co +return new A.f7(s)}, +V(a,b){return new A.f7(this.a+b.a)}, +j(a,b){if(b==null)return!1 +return b instanceof A.f7&&this.a===b.a}, +gB(a){return B.c.gB(this.a)}, +k(a){return this.a}} +A.E_.prototype={ +gN(a){var s=this,r=s.d +return r==null?s.d=B.c.a1(s.a,s.b,s.c):r}, +u(){return this.DQ(1,this.c)}, +DQ(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=u.j,h=u.e +if(a>0){s=j.c +for(r=j.a,q=r.length,p=240;s>>5)+(o&31)) +else{m=1 +if(n>>8)+(l&255))}}}p=u.U.charCodeAt((p&-4)+m) +if((p&1)!==0){--a +k=a===0}else k=!1 +if(k){j.b=b +j.c=s +j.d=null +return!0}}j.b=b +j.c=q +j.d=null +return a===1&&p!==240}else{j.b=b +j.d=null +return!0}}, +Se(a,b){var s,r,q,p=this +A.eg(a,"count") +s=p.b +r=new A.pt(p.a,0,s,240) +for(;a>0;s=q){q=r.ji() +if(q<0)break;--a}p.b=s +p.c=b +p.d=null +return a===0}} +A.k4.prototype={ +ji(){var s,r,q=this +for(s=q.b;r=q.c,r>>5)+(j&31))) +return}if(k>>8)+(s&255)) +q.c=k+1}else r=1 +q.d=n.charCodeAt((q.d&-4)+r)}, +TF(a){var s,r,q,p,o,n,m,l=this,k=u.j,j=u.e,i=l.c +if(i===a){l.d=240 +return i}s=i-1 +r=l.a +q=r.charCodeAt(s) +if((q&63488)!==55296)p=j.charCodeAt(k.charCodeAt(q>>>5)+(q&31)) +else{p=1 +if((q&64512)===55296){if(i>>8)+(o&255))}}else{n=s-1 +if(n>=a){m=r.charCodeAt(n) +i=(m&64512)===55296}else{m=null +i=!1}if(i){p=j.charCodeAt(k.charCodeAt(((m&1023)<<10)+(q&1023)+524288>>>8)+(q&255)) +s=n}}}l.d=u.U.charCodeAt(280+p) +return s}} +A.pt.prototype={ +ji(){var s,r,q,p,o,n=this +for(s=n.b;r=n.c,r>s;){n.th(0) +q=n.d +if((q&3)===0)continue +if((q&2)!==0){p=n.c +o=n.Fy() +if(q>=340)n.c=p +else if((n.d&3)===3)n.c=o}if((n.d&1)!==0)return r}s=u.t.charCodeAt((n.d&-4)+18) +n.d=s +if((s&1)!==0)return r +return-1}, +th(a){var s,r,q=this,p=u.j,o=u.e,n=u.t,m=q.a,l=--q.c,k=m.charCodeAt(l) +if((k&64512)!==56320){q.d=n.charCodeAt((q.d&-4)+o.charCodeAt(p.charCodeAt(k>>>5)+(k&31))) +return}if(l>=q.b){l=q.c=l-1 +s=m.charCodeAt(l) +m=(s&64512)===55296}else{s=null +m=!1}if(m)r=o.charCodeAt(p.charCodeAt(((s&1023)<<10)+(k&1023)+524288>>>8)+(k&255)) +else{q.c=l+1 +r=1}q.d=n.charCodeAt((q.d&-4)+r)}, +Fy(){var s,r,q=this +for(s=q.b;r=q.c,r>s;){q.th(0) +if(q.d<280)return r}q.d=u.t.charCodeAt((q.d&-4)+18) +return s}} +A.a4D.prototype={} +A.bN.prototype={ +h(a,b){var s,r=this +if(!r.yn(b))return null +s=r.c.h(0,r.a.$1(r.$ti.i("bN.K").a(b))) +return s==null?null:s.b}, +m(a,b,c){var s=this +if(!s.yn(b))return +s.c.m(0,s.a.$1(b),new A.b1(b,c,s.$ti.i("b1")))}, +O(a,b){b.aj(0,new A.a3S(this))}, +lt(a,b,c){var s=this.c +return s.lt(s,b,c)}, +az(a,b){var s=this +if(!s.yn(b))return!1 +return s.c.az(0,s.a.$1(s.$ti.i("bN.K").a(b)))}, +gj3(a){var s=this.c,r=A.n(s).i("et<1,2>") +return A.v5(new A.et(s,r),new A.a3T(this),r.i("o.E"),this.$ti.i("b1"))}, +aj(a,b){this.c.aj(0,new A.a3U(this,b))}, +ga7(a){return this.c.a===0}, +gbV(a){return this.c.a!==0}, +gbX(a){var s=this.c,r=A.n(s).i("bf<2>") +return A.v5(new A.bf(s,r),new A.a3V(this),r.i("o.E"),this.$ti.i("bN.K"))}, +gv(a){return this.c.a}, +pa(a,b,c,d){var s=this.c +return s.pa(s,new A.a3W(this,b,c,d),c,d)}, +bY(a,b,c){return this.c.bY(0,this.a.$1(b),new A.a3X(this,b,c)).b}, +F(a,b){var s,r=this +if(!r.yn(b))return null +s=r.c.F(0,r.a.$1(r.$ti.i("bN.K").a(b))) +return s==null?null:s.b}, +geu(a){var s=this.c,r=A.n(s).i("bf<2>") +return A.v5(new A.bf(s,r),new A.a3Y(this),r.i("o.E"),this.$ti.i("bN.V"))}, +k(a){return A.abI(this)}, +yn(a){return this.$ti.i("bN.K").b(a)}, +$iaT:1} +A.a3S.prototype={ +$2(a,b){this.a.m(0,a,b) +return b}, +$S(){return this.a.$ti.i("~(bN.K,bN.V)")}} +A.a3T.prototype={ +$1(a){var s=a.b +return new A.b1(s.a,s.b,this.a.$ti.i("b1"))}, +$S(){return this.a.$ti.i("b1(b1>)")}} +A.a3U.prototype={ +$2(a,b){return this.b.$2(b.a,b.b)}, +$S(){return this.a.$ti.i("~(bN.C,b1)")}} +A.a3V.prototype={ +$1(a){return a.a}, +$S(){return this.a.$ti.i("bN.K(b1)")}} +A.a3W.prototype={ +$2(a,b){return this.b.$2(b.a,b.b)}, +$S(){return this.a.$ti.bR(this.c).bR(this.d).i("b1<1,2>(bN.C,b1)")}} +A.a3X.prototype={ +$0(){return new A.b1(this.b,this.c.$0(),this.a.$ti.i("b1"))}, +$S(){return this.a.$ti.i("b1()")}} +A.a3Y.prototype={ +$1(a){return a.b}, +$S(){return this.a.$ti.i("bN.V(b1)")}} +A.M9.prototype={ +ly(a,b){return J.d(a,b)}, +it(a,b){return J.C(b)}} +A.p4.prototype={ +ly(a,b){var s,r,q,p,o +if(a===b)return!0 +s=this.a +r=A.h9(s.gapb(),s.gar0(s),s.gas6(),A.n(this).i("p4.E"),t.S) +for(s=J.bb(a),q=0;s.u();){p=s.gN(s) +o=r.h(0,p) +r.m(0,p,(o==null?0:o)+1);++q}for(s=J.bb(b);s.u();){p=s.gN(s) +o=r.h(0,p) +if(o==null||o===0)return!1 +r.m(0,p,o-1);--q}return q===0}, +it(a,b){var s,r,q +for(s=J.bb(b),r=this.a,q=0;s.u();)q=q+r.it(0,s.gN(s))&2147483647 +q=q+(q<<3>>>0)&2147483647 +q^=q>>>11 +return q+(q<<15>>>0)&2147483647}} +A.ww.prototype={} +A.vU.prototype={} +A.xc.prototype={ +gB(a){var s=this.a +return 3*s.a.it(0,this.b)+7*s.b.it(0,this.c)&2147483647}, +j(a,b){var s +if(b==null)return!1 +if(b instanceof A.xc){s=this.a +s=s.a.ly(this.b,b.b)&&s.b.ly(this.c,b.c)}else s=!1 +return s}} +A.qH.prototype={ +ly(a,b){var s,r,q,p,o,n,m +if(a===b)return!0 +s=J.aE(a) +r=J.aE(b) +if(s.gv(a)!==r.gv(b))return!1 +q=A.h9(null,null,null,t.PJ,t.S) +for(p=J.bb(s.gbX(a));p.u();){o=p.gN(p) +n=new A.xc(this,o,s.h(a,o)) +m=q.h(0,n) +q.m(0,n,(m==null?0:m)+1)}for(s=J.bb(r.gbX(b));s.u();){o=s.gN(s) +n=new A.xc(this,o,r.h(b,o)) +m=q.h(0,n) +if(m==null||m===0)return!1 +q.m(0,n,m-1)}return!0}, +it(a,b){var s,r,q,p,o,n,m,l,k +for(s=J.dF(b),r=J.bb(s.gbX(b)),q=this.a,p=this.b,o=this.$ti.y[1],n=0;r.u();){m=r.gN(r) +l=q.it(0,m) +k=s.h(b,m) +n=n+3*l+7*p.it(0,k==null?o.a(k):k)&2147483647}n=n+(n<<3>>>0)&2147483647 +n^=n>>>11 +return n+(n<<15>>>0)&2147483647}} +A.M7.prototype={ +ly(a,b){var s,r=this,q=t.Ro +if(q.b(a))return q.b(b)&&new A.vU(r,t.n5).ly(a,b) +q=t.f +if(q.b(a))return q.b(b)&&new A.qH(r,r,t.Dx).ly(a,b) +q=t.JY +if(q.b(a)){s=t.j +if(s.b(a)!==s.b(b))return!1 +return q.b(b)&&new A.ww(r,t.N2).ly(a,b)}return J.d(a,b)}, +it(a,b){var s=this +if(t.Ro.b(b))return new A.vU(s,t.n5).it(0,b) +if(t.f.b(b))return new A.qH(s,s,t.Dx).it(0,b) +if(t.JY.b(b))return new A.ww(s,t.N2).it(0,b) +return J.C(b)}, +as7(a){return!0}} +A.Nf.prototype={ +y_(a){var s=this.b[a] +this.$ti.c.a(null) +s=null +return s}, +gv(a){return this.c}, +k(a){var s=this.b +return A.aIq(A.jN(s,0,A.mK(this.c,"count",t.S),A.a2(s).c),"(",")")}, +a6T(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=b*2+2 +for(s=i.b,r=i.a,q=i.$ti.c;p=i.c,h0){s[b]=j +b=o}}s[b]=a}} +A.a4Q.prototype={} +A.a5e.prototype={} +A.a4P.prototype={} +A.E3.prototype={ +K(){return"SubdomainType."+this.b}} +A.a4E.prototype={} +A.awp.prototype={} +A.BF.prototype={ +gIH(){return B.d5}, +Az(){this.a.d.$2(this.b,B.oF) +var s=this.gHl() +return(s==null?null:s.gDl(0).d)===B.d5}, +Wb(){var s,r=this.b +this.a.d.$2(r,B.H8) +s=this.Y1(new A.aer(!1),!0,!0) +if((s==null?null:s.geR(s))!==B.d5)throw A.e(A.aBS(r))}, +I2(a){return this.aoh(a)}, +aoh(a){var s=0,r=A.H(t.m3),q,p=this +var $async$I2=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:q=p.Wc(a) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$I2,r)}, +Wc(a){var s,r,q,p,o={},n=this.a,m=n.c,l=m.JM(0,this.b,a+"rand"),k=m.aoM(l),j=A.r3(l,m.a).gVi(),i=t.y9.a(n.AT(k)) +if(i==null)A.a0(A.aFr(A.bt(new A.aes(k).$0()))) +A.b0Y(i,new A.aet(k)) +s=$.aG7() +A.q2(n) +r=s.a.get(n) +o.a=r==null?0:r +q=new A.aeu(o,j) +for(s=i.r;s.az(0,q.$0());)++o.a +$.aG7().m(0,n,o.a) +p=A.aHu(i) +s.m(0,q.$0(),p) +n=new A.BF(n,m.JM(0,k,q.$0())) +n.Wb() +return n}, +k(a){return"MemoryDirectory: '"+this.b+"'"}, +$izM:1, +$iaCY:1} +A.aer.prototype={ +$2(a,b){if(this.a||b)return A.aHu(a) +return null}, +$S:308} +A.aes.prototype={ +$0(){return this.a}, +$S:14} +A.aet.prototype={ +$0(){return this.a}, +$S:14} +A.aeu.prototype={ +$0(){return this.b+this.a.a}, +$S:14} +A.Wy.prototype={} +A.BG.prototype={ +gaik(){var s,r=this,q=r.gHl() +if(q==null)q=r.a94() +else{s=q.geR(q) +if(s===B.hD)q=A.aC1(t.C5.a(q),new A.aeC(r),null,null) +A.aF4(B.dX,q.geR(q),new A.aeD(r))}return t.x8.a(q)}, +gIH(){return B.dX}, +Az(){this.a.d.$2(this.b,B.oF) +var s=this.gHl() +return(s==null?null:s.gDl(0).d)===B.dX}, +a94(){var s=this.arC(new A.aeB(!1),!0) +if((s==null?null:s.geR(s))!==B.dX)throw A.e(A.aNg(this.b)) +return s}, +w2(a){var s=0,r=A.H(t.S),q,p=this +var $async$w2=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:q=t.x8.a(p.gZX()).r.length +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$w2,r)}, +KC(){var s=0,r=A.H(t.H3),q,p=this +var $async$KC=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p.a.d.$2(p.b,B.H6) +q=new Uint8Array(A.ic(t.x8.a(p.gZX()).r)) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$KC,r)}, +k(a){return"MemoryFile: '"+this.b+"'"}, +$iAj:1, +$iaD7:1} +A.aeC.prototype={ +$0(){return this.a.b}, +$S:14} +A.aeD.prototype={ +$0(){return this.a.b}, +$S:14} +A.aeB.prototype={ +$2(a,b){var s +if(b){s=new A.hJ(new Uint8Array(0),a) +s.DH(a) +return s}return null}, +$S:337} +A.arC.prototype={ +gYs(){var s=this.c +s=s==null?null:(s.a.a&30)!==0 +return s===!1}, +alM(a,b){var s=this +if(s.gYs())A.a0(A.a5("StreamSink is bound to a stream")) +s.c=new A.bB(new A.au($.aq,t.W),t.Q) +b.d3(new A.arF(s),!0,new A.arG(s),new A.arH(s)) +return s.c.a}, +aO(a){var s=this +if(s.gYs())A.a0(A.a5("StreamSink is bound to a stream")) +if(!s.d){s.d=!0 +s.b.hZ(new A.arI(s),new A.arJ(s),t.H)}return s.a.a}, +a6n(a){this.b=this.b.bo(new A.arE(a),t.x8)}} +A.arD.prototype={ +$0(){var s,r,q=this.a.a +if(q!=null)throw A.e(q) +q=this.c +s=q.aS() +r=this.d +if(r===B.ni||r===B.CB)s.r=new Uint8Array(0) +return q.aS()}, +$S:344} +A.arF.prototype={ +$1(a){return this.a.a6n(a)}, +$S:131} +A.arH.prototype={ +$2(a,b){var s=this.a +s.c.ou(a,b) +s.c=null}, +$S:48} +A.arG.prototype={ +$0(){var s=this.a +s.c.f1(0) +s.c=null}, +$S:0} +A.arI.prototype={ +$1(a){return this.a.a.f1(0)}, +$S:443} +A.arJ.prototype={ +$2(a,b){return this.a.a.ou(a,b)}, +$S:36} +A.arE.prototype={ +$1(a){var s=this.a,r=a.r,q=r.length,p=J.cg(s) +p=new Uint8Array(q+p) +a.r=p +B.O.i3(p,0,q,r) +p=a.r +B.O.i3(p,q,p.length,s) +return a}, +$S:445} +A.aev.prototype={} +A.auF.prototype={ +Wv(a,b){return new A.BF(this,this.LA(b))}, +X1(a,b,c,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null +if(a.length===0)return d +else{s=e.c +if(s.a.ht(a)>0){r=e.a +a=B.c.bZ(a,0)}else{s=s.b +r=t.y9.a(e.AT(s==null?A.aFd():s))}}$.a2a() +q=A.b(a.split("/"),t.s) +B.b.k0(q,A.b2U()) +p=r==null?d:r +o=q.length-1 +for(s=c==null,n=!s,m=t.C5,l=!a0,k=t.Tg,j=p,i=0;i<=o;++i){h=q[i] +switch(h){case".":j=p +break +case"..":g=p==null +j=g?d:p.gaT(p) +p=g?d:p.gaT(p) +break +default:j=p==null?d:p.r.h(0,h)}g=new A.auH(e,q,i) +if((j==null?d:j.geR(j))===B.hD)f=i#"+A.bi(this)+"("+this.wH()+")"}, +wH(){switch(this.gaN(this).a){case 1:var s="\u25b6" +break +case 2:s="\u25c0" +break +case 3:s="\u23ed" +break +case 0:s="\u23ee" +break +default:s=null}return s}} +A.wD.prototype={ +K(){return"_AnimationDirection."+this.b}} +A.Ky.prototype={ +K(){return"AnimationBehavior."+this.b}} +A.tO.prototype={ +gq(a){var s=this.x +s===$&&A.a() +return s}, +sq(a,b){var s=this +s.eL(0) +s.Fr(b) +s.ak() +s.tz()}, +ghw(){var s=this.r +if(!(s!=null&&s.a!=null))return 0 +s=this.w +s.toString +return s.fn(0,this.y.a/1e6)}, +Fr(a){var s=this,r=s.a,q=s.b,p=s.x=A.A(a,r,q) +if(p===r)s.Q=B.Q +else if(p===q)s.Q=B.a2 +else{switch(s.z.a){case 0:r=B.bB +break +case 1:r=B.b9 +break +default:r=null}s.Q=r}}, +gje(){var s=this.r +return s!=null&&s.a!=null}, +gaN(a){var s=this.Q +s===$&&A.a() +return s}, +j9(a,b){var s=this +s.z=B.av +if(b!=null)s.sq(0,b) +return s.No(s.b)}, +bP(a){return this.j9(0,null)}, +Cj(a,b){var s=this +s.z=B.j1 +if(b!=null)s.sq(0,b) +return s.No(s.a)}, +dg(a){return this.Cj(0,null)}, +i8(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i=j.d +$label0$0:{s=B.jq===i +if(s){r=$.vS.vt$ +r===$&&A.a() +q=(r.a&4)!==0 +r=q}else r=!1 +if(r){r=0.05 +break $label0$0}if(s||B.jr===i){r=1 +break $label0$0}r=null}if(c==null){p=j.b-j.a +if(isFinite(p)){o=j.x +o===$&&A.a() +n=Math.abs(a-o)/p}else n=1 +if(j.z===B.j1&&j.f!=null){o=j.f +o.toString +m=o}else{o=j.e +o.toString +m=o}l=new A.aZ(B.d.aI(m.a*n))}else{o=j.x +o===$&&A.a() +l=a===o?B.F:c}j.eL(0) +o=l.a +if(o===0){r=j.x +r===$&&A.a() +if(r!==a){j.x=A.A(a,j.a,j.b) +j.ak()}j.Q=j.z===B.av?B.a2:B.Q +j.tz() +return A.aE9()}k=j.x +k===$&&A.a() +return j.z2(new A.atO(o*r/1e6,k,a,b,B.c7))}, +No(a){return this.i8(a,B.U,null)}, +KN(a){var s,r,q=this,p=q.a,o=q.b,n=q.e +q.eL(0) +s=q.x +s===$&&A.a() +r=n.a/1e6 +s=o===p?0:(A.A(s,p,o)-p)/(o-p)*r +return q.z2(new A.axy(p,o,!1,null,q.ga8K(),r,s,B.c7))}, +a8L(a){this.z=a +this.Q=a===B.av?B.bB:B.b9 +this.tz()}, +vD(a){var s,r,q,p,o,n,m=this,l=$.aPW(),k=a<0 +m.z=k?B.j1:B.av +s=k?m.a-0.01:m.b+0.01 +r=m.d +$label0$0:{q=B.jq===r +if(q){k=$.vS.vt$ +k===$&&A.a() +p=(k.a&4)!==0 +k=p}else k=!1 +if(k){k=200 +break $label0$0}if(q||B.jr===r){k=1 +break $label0$0}k=null}o=m.x +o===$&&A.a() +n=new A.DS(s,A.Ip(l,o-s,a*k),B.c7) +n.a=B.XB +m.eL(0) +return m.z2(n)}, +awz(){return this.vD(1)}, +Hb(a){this.eL(0) +this.z=B.av +return this.z2(a)}, +z2(a){var s,r=this +r.w=a +r.y=B.F +r.x=A.A(a.eG(0,0),r.a,r.b) +s=r.r.pI(0) +r.Q=r.z===B.av?B.bB:B.b9 +r.tz() +return s}, +ti(a,b){this.y=this.w=null +this.r.ti(0,b)}, +eL(a){return this.ti(0,!0)}, +l(){var s=this +s.r.l() +s.r=null +s.co$.a5(0) +s.cF$.a.a5(0) +s.Dp()}, +tz(){var s=this,r=s.Q +r===$&&A.a() +if(s.as!==r){s.as=r +s.wg(r)}}, +a6F(a){var s,r=this +r.y=a +s=a.a/1e6 +r.x=A.A(r.w.eG(0,s),r.a,r.b) +if(r.w.lH(s)){r.Q=r.z===B.av?B.a2:B.Q +r.ti(0,!1)}r.ak() +r.tz()}, +wH(){var s,r=this.r,q=r==null,p=!q&&r.a!=null?"":"; paused" +if(q)s="; DISPOSED" +else s=r.b?"; silenced":"" +r=this.xo() +q=this.x +q===$&&A.a() +return r+" "+B.d.ah(q,3)+p+s}} +A.atO.prototype={ +eG(a,b){var s,r=this,q=A.A(b/r.b,0,1) +$label0$0:{if(0===q){s=r.c +break $label0$0}if(1===q){s=r.d +break $label0$0}s=r.c +s+=(r.d-s)*r.e.a8(0,q) +break $label0$0}return s}, +fn(a,b){return(this.eG(0,b+0.001)-this.eG(0,b-0.001))/0.002}, +lH(a){return a>this.b}} +A.axy.prototype={ +eG(a,b){var s=this,r=b+s.w,q=s.r,p=B.d.bh(r/q,1) +B.d.jw(r,q) +s.f.$1(B.av) +q=A.V(s.b,s.c,p) +q.toString +return q}, +fn(a,b){return(this.c-this.b)/this.r}, +lH(a){return!1}} +A.T5.prototype={} +A.T6.prototype={} +A.T7.prototype={} +A.SV.prototype={ +Z(a,b){}, +J(a,b){}, +el(a){}, +cd(a){}, +gaN(a){return B.a2}, +gq(a){return 1}, +k(a){return"kAlwaysCompleteAnimation"}} +A.SW.prototype={ +Z(a,b){}, +J(a,b){}, +el(a){}, +cd(a){}, +gaN(a){return B.Q}, +gq(a){return 0}, +k(a){return"kAlwaysDismissedAnimation"}} +A.po.prototype={ +Z(a,b){}, +J(a,b){}, +el(a){}, +cd(a){}, +gaN(a){return B.bB}, +wH(){return this.xo()+" "+A.k(this.a)+"; paused"}, +gq(a){return this.a}} +A.yx.prototype={ +Z(a,b){return this.gaT(this).Z(0,b)}, +J(a,b){return this.gaT(this).J(0,b)}, +el(a){return this.gaT(this).el(a)}, +cd(a){return this.gaT(this).cd(a)}, +gaN(a){var s=this.gaT(this) +return s.gaN(s)}} +A.rj.prototype={ +saT(a,b){var s,r=this,q=r.c +if(b==q)return +if(q!=null){r.a=q.gaN(q) +q=r.c +r.b=q.gq(q) +if(r.mY$>0)r.Am()}r.c=b +if(b!=null){if(r.mY$>0)r.Al() +q=r.b +s=r.c +if(q!==s.gq(s))r.ak() +q=r.a +s=r.c +if(q!==s.gaN(s)){q=r.c +r.wg(q.gaN(q))}r.b=r.a=null}}, +Al(){var s=this,r=s.c +if(r!=null){r.Z(0,s.gcV()) +s.c.el(s.gYU())}}, +Am(){var s=this,r=s.c +if(r!=null){r.J(0,s.gcV()) +s.c.cd(s.gYU())}}, +gaN(a){var s=this.c +if(s!=null)s=s.gaN(s) +else{s=this.a +s.toString}return s}, +gq(a){var s=this.c +if(s!=null)s=s.gq(s) +else{s=this.b +s.toString}return s}, +k(a){var s=this.c +if(s==null)return"ProxyAnimation(null; "+this.xo()+" "+B.d.ah(this.gq(0),3)+")" +return s.k(0)+"\u27a9ProxyAnimation"}} +A.hi.prototype={ +Z(a,b){this.bk() +this.a.Z(0,b)}, +J(a,b){this.a.J(0,b) +this.r_()}, +Al(){this.a.el(this.gqn())}, +Am(){this.a.cd(this.gqn())}, +z3(a){this.wg(this.Sf(a))}, +gaN(a){var s=this.a +return this.Sf(s.gaN(s))}, +gq(a){var s=this.a +return 1-s.gq(s)}, +Sf(a){var s +switch(a.a){case 1:s=B.b9 +break +case 2:s=B.bB +break +case 3:s=B.Q +break +case 0:s=B.a2 +break +default:s=null}return s}, +k(a){return this.a.k(0)+"\u27aaReverseAnimation"}} +A.zx.prototype={ +TW(a){var s +if(a.gje()){s=this.d +if(s==null)s=a}else s=null +this.d=s}, +gUx(){if(this.c!=null){var s=this.d +if(s==null){s=this.a +s=s.gaN(s)}s=s!==B.b9}else s=!0 +return s}, +l(){this.a.cd(this.gGy())}, +gq(a){var s=this,r=s.gUx()?s.b:s.c,q=s.a,p=q.gq(q) +if(r==null)return p +if(p===0||p===1)return p +return r.a8(0,p)}, +k(a){var s=this,r=s.c +if(r==null)return s.a.k(0)+"\u27a9"+s.b.k(0) +if(s.gUx())return s.a.k(0)+"\u27a9"+s.b.k(0)+"\u2092\u2099/"+r.k(0) +return s.a.k(0)+"\u27a9"+s.b.k(0)+"/"+r.k(0)+"\u2092\u2099"}, +gaT(a){return this.a}} +A.a_J.prototype={ +K(){return"_TrainHoppingMode."+this.b}} +A.t0.prototype={ +z3(a){if(a!==this.e){this.ak() +this.e=a}}, +gaN(a){var s=this.a +return s.gaN(s)}, +alf(){var s,r,q,p,o=this,n=o.b +if(n!=null){switch(o.c.a){case 0:n=n.gq(n) +s=o.a +s=n<=s.gq(s) +n=s +break +case 1:n=n.gq(n) +s=o.a +s=n>=s.gq(s) +n=s +break +default:n=null}if(n){s=o.a +r=o.gqn() +s.cd(r) +s.J(0,o.gGT()) +s=o.b +o.a=s +o.b=null +s.el(r) +r=o.a +o.z3(r.gaN(r))}q=n}else q=!1 +n=o.a +p=n.gq(n) +if(p!==o.f){o.ak() +o.f=p}if(q&&o.d!=null)o.d.$0()}, +gq(a){var s=this.a +return s.gq(s)}, +l(){var s,r,q=this +q.a.cd(q.gqn()) +s=q.gGT() +q.a.J(0,s) +q.a=null +r=q.b +if(r!=null)r.J(0,s) +q.b=null +q.cF$.a.a5(0) +q.co$.a5(0) +q.Dp()}, +k(a){var s=this +if(s.b!=null)return A.k(s.a)+"\u27a9TrainHoppingAnimation(next: "+A.k(s.b)+")" +return A.k(s.a)+"\u27a9TrainHoppingAnimation(no next)"}} +A.ui.prototype={ +Al(){var s,r=this,q=r.a,p=r.gR7() +q.Z(0,p) +s=r.gR9() +q.el(s) +q=r.b +q.Z(0,p) +q.el(s)}, +Am(){var s,r=this,q=r.a,p=r.gR7() +q.J(0,p) +s=r.gR9() +q.cd(s) +q=r.b +q.J(0,p) +q.cd(s)}, +gaN(a){var s=this.b +if(s.gaN(s).gje())s=s.gaN(s) +else{s=this.a +s=s.gaN(s)}return s}, +k(a){return"CompoundAnimation("+this.a.k(0)+", "+this.b.k(0)+")"}, +afm(a){var s=this +if(s.gaN(0)!==s.c){s.c=s.gaN(0) +s.wg(s.gaN(0))}}, +afl(){var s=this +if(!J.d(s.gq(s),s.d)){s.d=s.gq(s) +s.ak()}}} +A.yw.prototype={ +gq(a){var s=this.a,r=this.b +return Math.min(s.gq(s),r.gq(r))}} +A.Ft.prototype={} +A.Fu.prototype={} +A.Fv.prototype={} +A.Uo.prototype={} +A.Y_.prototype={} +A.Y0.prototype={} +A.Y1.prototype={} +A.YW.prototype={} +A.YX.prototype={} +A.a_G.prototype={} +A.a_H.prototype={} +A.a_I.prototype={} +A.Ce.prototype={ +a8(a,b){return this.lW(b)}, +lW(a){throw A.e(A.eQ(null))}, +k(a){return"ParametricCurve"}} +A.fk.prototype={ +a8(a,b){if(b===0||b===1)return b +return this.a2B(0,b)}} +A.Gy.prototype={ +lW(a){return a}} +A.D7.prototype={ +lW(a){a*=this.a +return a-(a<0?Math.ceil(a):Math.floor(a))}, +k(a){return"SawTooth("+this.a+")"}} +A.ed.prototype={ +lW(a){var s=this.a +a=A.A((a-s)/(this.b-s),0,1) +if(a===0||a===1)return a +return this.c.a8(0,a)}, +k(a){var s=this,r=s.c +if(!(r instanceof A.Gy))return"Interval("+A.k(s.a)+"\u22ef"+A.k(s.b)+")\u27a9"+r.k(0) +return"Interval("+A.k(s.a)+"\u22ef"+A.k(s.b)+")"}} +A.Ry.prototype={ +a8(a,b){var s +if(b===0||b===1)return b +s=this.a +if(b===s)return s +if(b#"+A.bi(this)+"("+A.k(this.a)+", "+B.U.k(0)+", "+this.c.k(0)+")"}} +A.Ey.prototype={ +lW(a){return a"))}} +A.al.prototype={ +gq(a){var s=this.a +return this.b.a8(0,s.gq(s))}, +k(a){var s=this.a,r=this.b +return s.k(0)+"\u27a9"+r.k(0)+"\u27a9"+A.k(r.a8(0,s.gq(s)))}, +wH(){return this.xo()+" "+this.b.k(0)}, +gaT(a){return this.a}} +A.fa.prototype={ +a8(a,b){return this.b.a8(0,this.a.a8(0,b))}, +k(a){return this.a.k(0)+"\u27a9"+this.b.k(0)}} +A.ay.prototype={ +e8(a){var s=this.a +return A.n(this).i("ay.T").a(J.aQT(s,J.aQU(J.aQV(this.b,s),a)))}, +a8(a,b){var s,r=this +if(b===0){s=r.a +return s==null?A.n(r).i("ay.T").a(s):s}if(b===1){s=r.b +return s==null?A.n(r).i("ay.T").a(s):s}return r.e8(b)}, +k(a){return"Animatable("+A.k(this.a)+" \u2192 "+A.k(this.b)+")"}, +sHo(a){return this.a=a}, +sbv(a,b){return this.b=b}} +A.D1.prototype={ +e8(a){return this.c.e8(1-a)}} +A.fj.prototype={ +e8(a){return A.z(this.a,this.b,a)}} +A.R5.prototype={ +e8(a){return A.alc(this.a,this.b,a)}} +A.Cv.prototype={ +e8(a){return A.aWh(this.a,this.b,a)}} +A.nx.prototype={ +e8(a){var s,r=this.a +r.toString +s=this.b +s.toString +return B.d.aI(r+(s-r)*a)}} +A.fl.prototype={ +a8(a,b){if(b===0||b===1)return b +return this.a.a8(0,b)}, +k(a){return"CurveTween(curve: "+this.a.k(0)+")"}} +A.Jd.prototype={} +A.EO.prototype={ +a62(a,b){var s,r,q,p,o,n,m,l=this.a +B.b.O(l,a) +for(s=l.length,r=0,q=0;q=n&&b"}} +A.zq.prototype={ +ac(){return new A.U9(null,null)}} +A.U9.prototype={ +aw(){var s,r=this +r.aK() +s=A.bK(null,B.d1,null,null,r) +r.d=s +if(r.a.d)s.KN(0)}, +aH(a){var s,r +this.b0(a) +s=this.a.d +if(s!==a.d){r=this.d +if(s){r===$&&A.a() +r.KN(0)}else{r===$&&A.a() +r.eL(0)}}}, +l(){var s=this.d +s===$&&A.a() +s.l() +this.a59()}, +H(a){var s,r=this.a +r.toString +s=this.d +s===$&&A.a() +r=r.c +r=B.FT.cL(a) +return A.e1(A.ip(null,null,null,new A.U8(s,r,10,this.a.f,new A.jB(-1,-3.3333333333333335,1,-10,1,1,1,1,1,1,1,1),s),B.I),20,20)}} +A.U8.prototype={ +aA(a,b){var s,r,q,p,o,n,m,l,k,j,i=this +$.a3() +s=A.bc() +r=a.a +J.ap(r.save()) +r.translate(b.a/2,b.b/2) +q=i.b.x +q===$&&A.a() +p=B.d.h_(8*q) +for(q=i.e,o=8*q,n=i.f,q=q<1,m=i.c,l=0;l"))),q,q.$ti.i("al")) +p.SQ()}, +aH(a){this.b0(a) +this.SQ()}, +SQ(){var s=this.a.Q +this.d.b=s}, +l(){var s=this.e +s===$&&A.a() +s.l() +this.a5a()}, +adJ(a){var s=this +s.T(new A.aqx(s)) +if(!s.w){s.w=!0 +s.tx(0)}}, +adS(a){var s,r,q=this +q.T(new A.aqy(q)) +if(q.w){q.w=!1 +q.tx(0)}s=q.c.gU() +s.toString +t.x.a(s) +r=s.dQ(a.a) +s=s.gt(0) +if(new A.x(0,0,0+s.a,0+s.b).cI(A.aHd()).p(0,r))q.Qo()}, +adH(){var s=this +s.T(new A.aqw(s)) +if(s.w){s.w=!1 +s.tx(0)}}, +adN(a){var s,r,q=this,p=q.c.gU() +p.toString +t.x.a(p) +s=p.dQ(a.a) +p=p.gt(0) +r=new A.x(0,0,0+p.a,0+p.b).cI(A.aHd()).p(0,s) +if(q.x&&r!==q.w){q.w=r +q.tx(0)}}, +Qp(a){var s=this.a.w +if(s!=null){s.$0() +this.c.gU().ta(B.ma)}}, +Qo(){return this.Qp(null)}, +tx(a){var s,r,q,p=this.e +p===$&&A.a() +s=p.r +if(s!=null&&s.a!=null)return +r=this.w +if(r){p.z=B.av +q=p.i8(1,B.cr,B.Gi)}else{p.z=B.av +q=p.i8(0,B.FD,B.Go)}q.bo(new A.aqu(this,r),t.H)}, +agn(a){this.T(new A.aqz(this,a))}, +H(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null,a0=b.a,a1=a0.w==null,a2=!a1 +a0=a0.y +s=a0==null?a:new A.I(a0,a0) +r=A.uo(a3) +q=r.ger() +a0=b.a.e +if(a0==null)a0=a +else if(a0 instanceof A.cH)a0=a0.cL(a3) +if(a0==null)p=a +else{o=b.a.e +o=o==null?a:o.gcR(o) +if(o==null)o=1 +p=a0.b_(o)}b.a.toString +n=a +$label0$0:{if(a2){a0=q +break $label0$0}a0=B.FQ.cL(a3) +break $label0$0}n=a0 +b.a.toString +a0=A.aUc((p==null?B.ho:p).b_(0.8)) +m=new A.AH(a0.a,a0.b,0.835,0.69).avr() +b.a.toString +a0=r.gkZ().galx() +l=a0.b1(n) +a0=A.aa8(a3) +o=l.r +k=a0.W3(n,o!=null?o*1.2:20) +a0=A.bW(a3,B.mG) +j=a0==null?a:a0.cx +a0=A.aP(t.l) +if(a1)a0.E(0,B.u) +if(b.x)a0.E(0,B.T) +o=b.r +o===$&&A.a() +if(o)a0.E(0,B.E) +b.a.toString +i=A.cu(a,a0,t.WV) +if(i==null)i=$.aPh().a.$1(a0) +a0=a2&&b.r?new A.aW(m,3.5,B.v,1):B.q +o=b.a.as +a0=A.D5(o==null?$.aQJ().h(0,B.o2):o,a0) +if(p!=null&&a1){a1=b.a.f +if(a1 instanceof A.cH)a1=a1.cL(a3)}else a1=p +h=b.y +if(h===$){g=A.ab([B.mk,new A.d4(b.gadF(),new A.ba(A.b([],t.e),t.c),t.wY)],t.u,t.od) +b.y!==$&&A.aA() +b.y=g +h=g}b.a.toString +o=A.w(t.u,t.xR) +o.m(0,B.iW,new A.cr(new A.aqA(),new A.aqB(b,a2,j),t.UN)) +f=b.a +f.toString +e=s==null +d=e?a:s.a +if(d==null)d=44 +e=e?a:s.b +if(e==null)e=44 +c=b.f +c===$&&A.a() +return A.jt(A.aHZ(h,!1,new A.iB(A.bG(!0,a,new A.eZ(new A.ak(d,1/0,e,1/0),new A.d5(c,!1,A.zD(new A.bo(f.d,new A.eH(f.ax,1,1,A.kd(A.AR(f.c,k,a),a,a,B.c6,!0,l,a,a,B.aP),a),a),new A.i1(a1,a,a,a,a0),B.dM),a),a),!1,a,a,!1,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,B.z,a),o,B.aH,!1,a),a2,a,B.bV,a,b.gagm(),a),i,a,a,a,a)}} +A.aqv.prototype={ +$1(a){var s=a.p(0,B.u) +return!s?B.cp:B.bV}, +$S:84} +A.aqx.prototype={ +$0(){this.a.x=!0}, +$S:0} +A.aqy.prototype={ +$0(){this.a.x=!1}, +$S:0} +A.aqw.prototype={ +$0(){this.a.x=!1}, +$S:0} +A.aqu.prototype={ +$1(a){var s=this.a +if(s.c!=null&&this.b!==s.w)s.tx(0)}, +$S:28} +A.aqz.prototype={ +$0(){this.a.r=this.b}, +$S:0} +A.aqA.prototype={ +$0(){return A.am3(null,null,null)}, +$S:99} +A.aqB.prototype={ +$1(a){var s=this,r=null,q=s.b +a.n=q?s.a.gadI():r +a.I=q?s.a.gadR():r +a.S=q?s.a.gadG():r +a.a2=q?s.a.gadM():r +a.b=s.c}, +$S:97} +A.Jl.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.cH.prototype={ +gu4(){var s=this +return!s.d.j(0,s.e)||!s.w.j(0,s.x)||!s.f.j(0,s.r)||!s.y.j(0,s.z)}, +gu2(){var s=this +return!s.d.j(0,s.f)||!s.e.j(0,s.r)||!s.w.j(0,s.y)||!s.x.j(0,s.z)}, +gu3(){var s=this +return!s.d.j(0,s.w)||!s.e.j(0,s.x)||!s.f.j(0,s.y)||!s.r.j(0,s.z)}, +cL(a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null +if(a0.gu4()){s=a2.ad(t.ri) +r=s==null?a1:s.w.c.gil() +if(r==null){r=A.bW(a2,B.j7) +r=r==null?a1:r.e}q=r==null?B.ag:r}else q=B.ag +if(a0.gu3())a2.ad(t.H5) +if(a0.gu2()){r=A.bW(a2,B.Bo) +r=r==null?a1:r.as +p=r===!0}else p=!1 +$label0$0:{o=B.ag===q +r=o +n=a1 +m=a1 +l=!1 +if(r){n=!p +r=n +m=p +k=!0 +j=!0 +i=B.aT +h=!0 +g=!0 +f=!0}else{r=l +i=a1 +k=i +j=!1 +h=!1 +g=!1 +f=!1}if(r){r=a0.d +break $label0$0}e=a1 +d=!1 +r=!1 +if(o){if(j)l=k +else{if(h)l=i +else{i=B.aT +h=!0 +l=B.aT}k=B.aT===l +l=k +j=!0}if(l){if(f)r=m +else{r=p +m=r +f=!0}e=!0===r +r=e +d=!0}}if(r){r=a0.f +break $label0$0}c=a1 +r=!1 +if(o){if(h)l=i +else{i=B.aT +h=!0 +l=B.aT}c=B.hq===l +l=c +if(l)if(g)r=n +else{if(f)r=m +else{r=p +m=r +f=!0}n=!1===r +r=n +g=!0}b=!0}else b=!1 +if(r){r=a0.w +break $label0$0}r=!1 +if(o){if(b)l=c +else{if(h)l=i +else{i=B.aT +h=!0 +l=B.aT}c=B.hq===l +l=c +b=!0}if(l)if(d)r=e +else{if(f)r=m +else{r=p +m=r +f=!0}e=!0===r +r=e +d=!0}}if(r){r=a0.y +break $label0$0}a=B.am===q +r=a +l=!1 +if(r){if(j)r=k +else{if(h)r=i +else{i=B.aT +h=!0 +r=B.aT}k=B.aT===r +r=k +j=!0}if(r)if(g)r=n +else{if(f)r=m +else{r=p +m=r +f=!0}n=!1===r +r=n +g=!0}else r=l}else r=l +if(r){r=a0.e +break $label0$0}r=!1 +if(a){if(j)l=k +else{if(h)l=i +else{i=B.aT +h=!0 +l=B.aT}k=B.aT===l +l=k}if(l)if(d)r=e +else{if(f)r=m +else{r=p +m=r +f=!0}e=!0===r +r=e +d=!0}}if(r){r=a0.r +break $label0$0}r=!1 +if(a){if(b)l=c +else{if(h)l=i +else{i=B.aT +h=!0 +l=B.aT}c=B.hq===l +l=c +b=!0}if(l)if(g)r=n +else{if(f)r=m +else{r=p +m=r +f=!0}n=!1===r +r=n}}if(r){r=a0.x +break $label0$0}r=!1 +if(a){if(b)l=c +else{c=B.hq===(h?i:B.aT) +l=c}if(l)if(d)r=e +else{e=!0===(f?m:p) +r=e}}if(r){r=a0.z +break $label0$0}r=a1}return new A.cH(r,a0.b,a1,a0.d,a0.e,a0.f,a0.r,a0.w,a0.x,a0.y,a0.z)}, +j(a,b){var s,r,q=this +if(b==null)return!1 +if(q===b)return!0 +if(J.U(b)!==A.r(q))return!1 +if(b instanceof A.cH){s=b.a +r=q.a +s=s.gq(s)===r.gq(r)&&b.d.j(0,q.d)&&b.e.j(0,q.e)&&b.f.j(0,q.f)&&b.r.j(0,q.r)&&b.w.j(0,q.w)&&b.x.j(0,q.x)&&b.y.j(0,q.y)&&b.z.j(0,q.z)}else s=!1 +return s}, +gB(a){var s=this,r=s.a +return A.T(r.gq(r),s.d,s.e,s.f,s.w,s.x,s.r,s.z,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this,r=new A.a5_(s),q=A.b([r.$2("color",s.d)],t.s) +if(s.gu4())q.push(r.$2("darkColor",s.e)) +if(s.gu2())q.push(r.$2("highContrastColor",s.f)) +if(s.gu4()&&s.gu2())q.push(r.$2("darkHighContrastColor",s.r)) +if(s.gu3())q.push(r.$2("elevatedColor",s.w)) +if(s.gu4()&&s.gu3())q.push(r.$2("darkElevatedColor",s.x)) +if(s.gu2()&&s.gu3())q.push(r.$2("highContrastElevatedColor",s.y)) +if(s.gu4()&&s.gu2()&&s.gu3())q.push(r.$2("darkHighContrastElevatedColor",s.z)) +r=s.b +if(r==null)r="CupertinoDynamicColor" +q=B.b.bn(q,", ") +return r+"("+q+", resolved by: UNRESOLVED)"}, +gq(a){var s=this.a +return s.gq(s)}, +gdH(a){var s=this.a +return s.gdH(s)}, +gHs(){return this.a.gHs()}, +HN(){return this.a.HN()}, +gCT(){return this.a.gCT()}, +gcR(a){var s=this.a +return s.gcR(s)}, +gKH(){return this.a.gKH()}, +dh(a){return this.a.dh(a)}, +b_(a){return this.a.b_(a)}, +gmD(a){var s=this.a +return s.gmD(s)}, +glT(a){var s=this.a +return s.glT(s)}, +gl4(){return this.a.gl4()}, +glp(a){var s=this.a +return s.glp(s)}, +gqL(){return this.a.gqL()}, +CC(a,b,c,d,e){return this.a.CC(a,b,c,d,e)}, +Ll(a){var s=null +return this.CC(a,s,s,s,s)}, +$iu:1} +A.a5_.prototype={ +$2(a,b){var s=b.j(0,this.a.a)?"*":"" +return s+a+" = "+b.k(0)+s}, +$S:255} +A.Uc.prototype={} +A.Ub.prototype={} +A.a4Z.prototype={ +t_(a){return B.I}, +zN(a,b,c,d){return B.ay}, +rZ(a,b){return B.i}} +A.a0B.prototype={} +A.LU.prototype={ +H(a){var s=null,r=A.bP(a,B.bK,t.w).w.r.b+8,q=this.c.a0(0,new A.j(8,r)),p=A.bS(this.d,B.w,B.x,B.c1),o=A.b([2.574,-1.43,-0.144,0,0,-0.426,1.57,-0.144,0,0,-0.426,-1.43,2.856,0,0,0,0,0,1,0],t.n) +$.a3() +o=A.aMW(new A.A8(s,s,o,B.DR)) +o.toString +return new A.bo(new A.az(8,r,8,8),new A.lj(new A.Mg(q),A.c_(s,A.aRx(A.zD(new A.bo(B.GX,p,s),new A.i1(B.FO.cL(a),s,s,s,A.D5(B.n3,new A.aW(B.FS.cL(a),1,B.v,-1))),B.dM),new A.Fp(new A.z5(o),new A.Fo(20,20,s))),B.B,s,s,B.QO,s,s,s,s,s,s,222),s),s)}} +A.pR.prototype={ +ac(){return new A.FC()}} +A.FC.prototype={ +ag1(a){this.T(new A.aqD(this))}, +ag5(a){this.T(new A.aqE(this))}, +H(a){var s=this,r=null,q=s.a.f,p=A.ai(q,r,B.aA,r,B.AY.b1(s.d?A.uo(a).gjk():B.hp.cL(a)),r,r) +q=s.d?A.uo(a).ger():r +return A.e1(A.jt(A.aHc(B.mX,B.eB,p,q,B.FU,0,s.a.c,B.GZ,0.7),B.bV,r,s.gag0(),s.gag4(),r),r,1/0)}} +A.aqD.prototype={ +$0(){this.a.d=!0}, +$S:0} +A.aqE.prototype={ +$0(){this.a.d=!1}, +$S:0} +A.LV.prototype={ +Y(a){var s=this.f,r=s instanceof A.cH?s.cL(a):s +return J.d(r,s)?this:this.b1(r)}, +ox(a,b,c,d,e,f,g,h,i){var s=this,r=h==null?s.a:h,q=c==null?s.b:c,p=i==null?s.c:i,o=d==null?s.d:d,n=f==null?s.e:f,m=b==null?s.f:b,l=e==null?s.gcR(0):e,k=g==null?s.w:g +return A.aHe(a==null?s.x:a,m,q,o,l,n,k,r,p)}, +b1(a){var s=null +return this.ox(s,a,s,s,s,s,s,s,s)}, +W3(a,b){var s=null +return this.ox(s,a,s,s,s,s,s,b,s)}} +A.Ud.prototype={} +A.M_.prototype={ +K(){return"CupertinoUserInterfaceLevelData."+this.b}} +A.Ue.prototype={ +JK(a){return a.gro(0)==="en"}, +n5(a,b){return new A.dw(B.Cu,t.u4)}, +De(a){return!1}, +k(a){return"DefaultCupertinoLocalizations.delegate(en_US)"}} +A.M8.prototype={$izs:1} +A.zu.prototype={ +ac(){return new A.FE(B.i,null,null)}} +A.FE.prototype={ +aw(){var s,r,q=this +q.aK() +s=A.bK(null,B.dO,null,0,q) +s.bk() +s.cF$.E(0,new A.aqN(q)) +q.f!==$&&A.bw() +q.f=s +r=q.a +r.d.a=s +r.w.Z(0,q.gFz()) +q.a.toString +s=A.cw(B.d_,s,null) +q.w!==$&&A.bw() +q.w=s +r=t.Y +q.r!==$&&A.bw() +q.r=new A.al(s,new A.ay(0,1,r),r.i("al"))}, +l(){var s,r=this +r.a.d.a=null +s=r.f +s===$&&A.a() +s.l() +s=r.w +s===$&&A.a() +s.l() +r.a.w.J(0,r.gFz()) +r.a5b()}, +aH(a){var s,r=this,q=a.w +if(q!==r.a.w){s=r.gFz() +q.J(0,s) +r.a.w.Z(0,s)}r.b0(a)}, +be(){this.R1() +this.dc()}, +R1(){var s,r,q,p=this,o=p.a.w,n=o.gq(o),m=n.c.gaV().b +o=n.a +s=m-o.b +r=p.a +r.toString +if(s<-48){o=r.d +if(o.gM7())o.vL(!1) +return}if(!r.d.gM7()){r=p.f +r===$&&A.a() +r.bP(0)}p.a.toString +q=Math.max(m,m-s/10) +o=o.a-40 +s=q-73.5 +r=p.c +r.toString +r=A.bP(r,B.j6,t.w).w.a +p.a.toString +s=A.aIO(new A.x(10,-21.5,0+r.a-10,0+r.b+21.5),new A.x(o,s,o+80,s+47.5)) +p.T(new A.aqL(p,new A.j(s.a,s.b),m,q))}, +H(a){var s,r,q,p=this,o=A.uo(a) +p.a.toString +s=p.d +r=p.r +r===$&&A.a() +q=p.e +return A.aGx(new A.LW(new A.aW(o.ger(),2,B.v,-1),r,new A.j(0,q),null),B.d_,B.Gu,s.a,s.b)}} +A.aqN.prototype={ +$0(){return this.a.T(new A.aqM())}, +$S:0} +A.aqM.prototype={ +$0(){}, +$S:0} +A.aqL.prototype={ +$0(){var s=this,r=s.a +r.d=s.b +r.e=s.c-s.d}, +$S:0} +A.LW.prototype={ +H(a){var s,r,q=this.w,p=q.b +q=q.a +p.a8(0,q.gq(q)) +s=new A.j(0,49.75).V(0,this.x) +r=p.a8(0,q.gq(q)) +r=A.ky(B.NC,B.i,r==null?1:r) +r.toString +q=p.a8(0,q.gq(q)) +if(q==null)q=1 +return A.aKB(A.aJC(null,B.n,new A.v4(q,B.Ka,new A.cz(B.C0,this.e)),s,1,B.RK),r)}} +A.Jm.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.a51.prototype={ +$0(){return this.a.giw()}, +$S:62} +A.a50.prototype={ +$0(){return this.a.gBk()}, +$S:62} +A.a52.prototype={ +$0(){var s=this.a +s=A.ee.prototype.gZg.call(s) +return s}, +$S:62} +A.a53.prototype={ +$0(){return A.aSk(this.a)}, +$S(){return this.b.i("FA<0>()")}} +A.zt.prototype={ +ac(){return new A.Uf()}} +A.Uf.prototype={ +aw(){this.aK() +this.SR()}, +aH(a){var s,r=this +r.b0(a) +s=r.a +if(a.d!==s.d||a.e!==s.e||a.f!==s.f){r.OR() +r.SR()}}, +l(){this.OR() +this.aD()}, +OR(){var s=this,r=s.r +if(r!=null)r.l() +r=s.w +if(r!=null)r.l() +r=s.x +if(r!=null)r.l() +s.x=s.w=s.r=null}, +SR(){var s,r,q=this,p=q.a +if(!p.f){q.r=A.cw(B.iU,p.d,new A.lv(B.iU)) +q.w=A.cw(B.jZ,q.a.e,B.o1) +q.x=A.cw(B.jZ,q.a.d,null)}p=q.r +if(p==null)p=q.a.d +s=$.aQa() +r=t.o +q.d=new A.al(r.a(p),s,s.$ti.i("al")) +s=q.w +p=s==null?q.a.e:s +s=$.aG4() +q.e=new A.al(r.a(p),s,s.$ti.i("al")) +s=q.x +p=s==null?q.a.d:s +s=$.aPi() +q.f=new A.al(r.a(p),s,A.n(s).i("al"))}, +H(a){var s,r,q=this,p=a.ad(t.I).w,o=q.e +o===$&&A.a() +s=q.d +s===$&&A.a() +r=q.f +r===$&&A.a() +return A.rN(A.rN(new A.M5(r,q.a.c,r,null),s,p,!0),o,p,!1)}} +A.wM.prototype={ +ac(){return new A.wN(this.$ti.i("wN<1>"))}, +ap_(){return this.d.$0()}, +atE(){return this.e.$0()}} +A.wN.prototype={ +aw(){var s,r=this +r.aK() +s=A.aDm(r,null) +s.ch=r.gaiu() +s.CW=r.gaiw() +s.cx=r.gais() +s.cy=r.gabr() +r.e=s}, +l(){var s=this,r=s.e +r===$&&A.a() +r.p2.a5(0) +r.m9() +if(s.d!=null)$.aa.k4$.push(new A.aqt(s)) +s.aD()}, +aiv(a){this.d=this.a.atE()}, +aix(a){var s,r,q=this.d +q.toString +s=a.e +s.toString +s=this.Ov(s/this.c.gt(0).a) +q=q.a +r=q.x +r===$&&A.a() +q.sq(0,r-s)}, +ait(a){var s=this,r=s.d +r.toString +r.WE(s.Ov(a.c.a.a/s.c.gt(0).a)) +s.d=null}, +abs(){var s=this.d +if(s!=null)s.WE(0) +this.d=null}, +aiz(a){var s +if(this.a.ap_()){s=this.e +s===$&&A.a() +s.UV(a)}}, +Ov(a){var s +switch(this.c.ad(t.I).w.a){case 0:s=-a +break +case 1:s=a +break +default:s=null}return s}, +H(a){var s,r=null +switch(a.ad(t.I).w.a){case 0:s=A.bP(a,B.bK,t.w).w.r.c +break +case 1:s=A.bP(a,B.bK,t.w).w.r.a +break +default:s=r}return A.hp(B.bA,A.b([this.a.c,new A.Pj(0,0,0,Math.max(s,20),A.Bo(B.cI,r,r,this.gaiy(),r,r,r),r)],t.p),B.B,B.Ax,r)}} +A.aqt.prototype={ +$1(a){var s=this.a,r=s.d,q=r==null,p=q?null:r.b.c!=null +if(p===!0)if(!q)r.b.oF() +s.d=null}, +$S:6} +A.FA.prototype={ +WE(a){var s,r,q,p,o=this,n=o.d.$0() +if(!n)s=o.c.$0() +else if(Math.abs(a)>=1)s=a<=0 +else{r=o.a.x +r===$&&A.a() +s=r>0.5}if(s){r=o.a +r.z=B.av +r.i8(1,B.iU,B.ob)}else{if(n)o.b.dB() +r=o.a +q=r.r +if(q!=null&&q.a!=null){r.z=B.j1 +r.i8(0,B.iU,B.ob)}}q=r.r +if(q!=null&&q.a!=null){p=A.c9() +p.b=new A.aqs(o,p) +q=p.aS() +r.bk() +r=r.co$ +r.b=!0 +r.a.push(q)}else o.b.oF()}} +A.aqs.prototype={ +$1(a){var s=this.a +s.b.oF() +s.a.cd(this.b.aS())}, +$S:7} +A.jT.prototype={ +d1(a,b){var s +if(a instanceof A.jT){s=A.aqF(a,this,b) +s.toString +return s}s=A.aqF(null,this,b) +s.toString +return s}, +d2(a,b){var s +if(a instanceof A.jT){s=A.aqF(this,a,b) +s.toString +return s}s=A.aqF(this,null,b) +s.toString +return s}, +A5(a){return new A.aqI(this,a)}, +j(a,b){var s,r +if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +if(b instanceof A.jT){s=b.a +r=this.a +r=s==null?r==null:s===r +s=r}else s=!1 +return s}, +gB(a){return J.C(this.a)}} +A.aqG.prototype={ +$1(a){var s=A.z(null,a,this.a) +s.toString +return s}, +$S:91} +A.aqH.prototype={ +$1(a){var s=A.z(null,a,1-this.a) +s.toString +return s}, +$S:91} +A.aqI.prototype={ +jW(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this.b.a +if(d==null)return +s=c.e +r=s.a +q=0.05*r +p=s.b +o=q/(d.length-1) +switch(c.d.a){case 0:s=new A.am(1,b.a+r) +break +case 1:s=new A.am(-1,b.a) +break +default:s=null}n=s.a +m=null +l=s.b +m=l +k=n +for(s=b.b,r=s+p,j=a.a,i=0,h=0;h=a.b-7?-7:0)}, +ds(a,b){var s,r,q=this.D$ +if(q==null)return null +s=this.Oq(a) +r=q.eU(s,b) +return r==null?null:r+this.Oi(q.ap(B.R,s,q.gc8())).b}, +bx(){var s,r=this,q=r.D$ +if(q==null)return +q.c3(r.Oq(t.k.a(A.t.prototype.gW.call(r))),!0) +s=q.b +s.toString +t.q.a(s).a=r.Oi(q.gt(0)) +r.fy=new A.I(q.gt(0).a,q.gt(0).b-7)}, +a7K(a,b){var s,r,q,p,o,n,m=this,l=A.bQ($.a3().w) +if(30>m.gt(0).a){l.aq(new A.em(b)) +return l}s=a.gt(0) +r=m.A +q=r.b>=s.b-7 +p=A.A(m.dQ(q?r:m.R).a,15,m.gt(0).a-7-8) +s=p+7 +r=p-7 +if(q){o=a.gt(0).b-7 +n=a.gt(0) +l.aq(new A.eL(s,o)) +l.aq(new A.cb(p,n.b)) +l.aq(new A.cb(r,o))}else{l.aq(new A.eL(r,7)) +l.aq(new A.cb(p,0)) +l.aq(new A.cb(s,7))}s=A.aZ0(l,b,q?1.5707963267948966:-1.5707963267948966) +s.aq(new A.pJ()) +return s}, +aA(a,b){var s,r,q,p,o,n,m,l=this,k=l.D$ +if(k==null)return +s=k.b +s.toString +t.q.a(s) +r=A.o1(new A.x(0,7,0+k.gt(0).a,7+(k.gt(0).b-14)),B.ei).CX() +q=l.a7K(k,r) +p=l.af +if(p!=null){o=new A.jB(r.a,r.b,r.c,r.d+7,8,8,8,8,8,8,8,8).dj(b.V(0,s.a).V(0,B.i)) +a.gcg(0).ez(o,new A.dU(0,B.dB,p,B.i,15).h7())}p=l.bT +n=l.cx +n===$&&A.a() +s=b.V(0,s.a) +m=k.gt(0) +p.saB(0,a.aue(n,s,new A.x(0,0,0+m.a,0+m.b),q,new A.awQ(k),p.a))}, +l(){this.bT.saB(0,null) +this.fb()}, +cz(a,b){var s,r,q=this.D$ +if(q==null)return!1 +s=q.b +s.toString +s=t.q.a(s).a +r=s.a +s=s.b+7 +if(!new A.x(r,s,r+q.gt(0).a,s+(q.gt(0).b-14)).p(0,b))return!1 +return this.a32(a,b)}} +A.awQ.prototype={ +$2(a,b){return a.dm(this.a,b)}, +$S:15} +A.FG.prototype={ +ac(){return new A.FH(new A.bu(null,t.A),null,null)}, +avy(a,b,c,d){return this.f.$4(a,b,c,d)}} +A.FH.prototype={ +agc(a){var s=a.d +if(s!=null&&s!==0)if(s>0)this.Qi() +else this.Qg()}, +Qg(){var s=this,r=$.aa.an$.x.h(0,s.r) +r=r==null?null:r.gU() +t.Qv.a(r) +if(r instanceof A.tn){r=r.I +r===$&&A.a()}else r=!1 +if(r){r=s.d +r===$&&A.a() +r.dg(0) +r=s.d +r.bk() +r=r.co$ +r.b=!0 +r.a.push(s.gz4()) +s.e=s.f+1}}, +Qi(){var s=this,r=$.aa.an$.x.h(0,s.r) +r=r==null?null:r.gU() +t.Qv.a(r) +if(r instanceof A.tn){r=r.X +r===$&&A.a()}else r=!1 +if(r){r=s.d +r===$&&A.a() +r.dg(0) +r=s.d +r.bk() +r=r.co$ +r.b=!0 +r.a.push(s.gz4()) +s.e=s.f-1}}, +ajW(a){var s,r=this +if(a!==B.Q)return +r.T(new A.aqR(r)) +s=r.d +s===$&&A.a() +s.bP(0) +r.d.cd(r.gz4())}, +aw(){this.aK() +this.d=A.bK(null,B.k5,null,1,this)}, +aH(a){var s,r=this +r.b0(a) +if(r.a.e!==a.e){r.f=0 +r.e=null +s=r.d +s===$&&A.a() +s.bP(0) +r.d.cd(r.gz4())}}, +l(){var s=this.d +s===$&&A.a() +s.l() +this.a5c()}, +H(a){var s,r,q,p=this,o=null,n=B.hp.cL(a),m=A.dG(A.aHf(A.kn(A.ip(o,o,o,new A.Wb(n,!0,o),B.Ai),!0,o),p.gacU()),1,1),l=A.dG(A.aHf(A.kn(A.ip(o,o,o,new A.YZ(n,!1,o),B.Ai),!0,o),p.gacv()),1,1),k=p.a.e,j=A.a2(k).i("ae<1,hE>"),i=A.a6(new A.ae(k,new A.aqS(),j),j.i("ax.E")) +k=p.a +j=k.c +s=k.d +r=p.d +r===$&&A.a() +q=p.f +return k.avy(a,j,s,new A.d5(r,!1,A.aGy(A.qf(o,new A.FI(m,i,B.FM.cL(a),1/A.bP(a,B.cS,t.w).w.b,l,q,p.r),B.a9,!1,o,o,o,o,p.gagb(),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),B.dE,B.k5),o))}} +A.aqR.prototype={ +$0(){var s=this.a,r=s.e +r.toString +s.f=r +s.e=null}, +$S:0} +A.aqS.prototype={ +$1(a){return A.dG(a,1,1)}, +$S:316} +A.Wb.prototype={} +A.YZ.prototype={} +A.Ua.prototype={ +aA(a,b){var s,r,q,p,o=b.b,n=this.c,m=n?1:-1,l=new A.j(o/4*m,0) +m=o/2 +s=new A.j(m,0).V(0,l) +r=new A.j(n?0:o,m).V(0,l) +q=new A.j(m,o).V(0,l) +$.a3() +p=A.bc() +p.r=this.b.gq(0) +p.b=B.bt +p.c=2 +p.d=B.m7 +p.e=B.AA +a.lw(s,r,p) +a.lw(r,q,p)}, +ew(a){return!a.b.j(0,this.b)||a.c!==this.c}} +A.FI.prototype={ +aG(a){var s=new A.tn(A.w(t.TC,t.x),this.w,this.e,this.f,0,null,null,new A.aO(),A.ah()) +s.aF() +return s}, +aP(a,b){b.satW(0,this.w) +b.saoQ(this.e) +b.saoR(this.f)}, +bJ(a){var s=t.h +return new A.Ui(A.w(t.TC,s),A.dj(s),this,B.Z)}} +A.Ui.prototype={ +gU(){return t.l0.a(A.b_.prototype.gU.call(this))}, +Uf(a,b){var s +switch(b.a){case 0:s=t.l0.a(A.b_.prototype.gU.call(this)) +s.ab=s.TO(s.ab,a,B.mx) +break +case 1:s=t.l0.a(A.b_.prototype.gU.call(this)) +s.au=s.TO(s.au,a,B.my) +break}}, +jc(a,b){var s,r +if(b instanceof A.t6){this.Uf(t.x.a(a),b) +return}if(b instanceof A.nt){s=t.l0.a(A.b_.prototype.gU.call(this)) +t.x.a(a) +r=b.a +r=r==null?null:r.gU() +t.Qv.a(r) +s.ik(a) +s.Fp(a,r) +return}}, +jh(a,b,c){t.l0.a(A.b_.prototype.gU.call(this)).wb(t.x.a(a),t.Qv.a(c.a.gU()))}, +k_(a,b){var s +if(b instanceof A.t6){this.Uf(null,b) +return}s=t.l0.a(A.b_.prototype.gU.call(this)) +t.x.a(a) +s.FX(a) +s.mS(a)}, +bg(a){var s,r,q,p,o=this.p2 +new A.bf(o,A.n(o).i("bf<2>")).aj(0,a) +o=this.p1 +o===$&&A.a() +s=o.length +r=this.p3 +q=0 +for(;q0){q=l.au.b +q.toString +n=t.V +n.a(q) +m=l.ab.b +m.toString +n.a(m) +if(l.a2!==r){q.a=new A.j(o.aS(),0) +q.e=!0 +o.b=o.aS()+l.au.gt(0).a}if(l.a2>0){m.a=B.i +m.e=!0}}else o.b=o.aS()-l.a9 +r=l.a2 +l.I=r!==k.c +l.X=r>0 +l.fy=s.a(A.t.prototype.gW.call(l)).b3(new A.I(o.aS(),k.a))}, +aA(a,b){this.bg(new A.awL(this,b,a))}, +eg(a){if(!(a.b instanceof A.fy))a.b=new A.fy(null,null,B.i)}, +cz(a,b){var s,r,q=this.c6$ +for(s=t.V;q!=null;){r=q.b +r.toString +s.a(r) +if(!r.e){q=r.ca$ +continue}if(A.aEC(q,a,b))return!0 +q=r.ca$}if(A.aEC(this.ab,a,b))return!0 +if(A.aEC(this.au,a,b))return!0 +return!1}, +av(a){var s +this.a5n(a) +for(s=this.n,s=new A.dl(s,s.r,s.e);s.u();)s.d.av(a)}, +ai(a){var s +this.a5o(0) +for(s=this.n,s=new A.dl(s,s.r,s.e);s.u();)s.d.ai(0)}, +fz(){this.bg(new A.awO(this))}, +bg(a){var s=this.ab +if(s!=null)a.$1(s) +s=this.au +if(s!=null)a.$1(s) +this.xt(a)}, +eS(a){this.bg(new A.awP(a))}} +A.awM.prototype={ +$1(a){var s,r +t.x.a(a) +s=this.b +r=a.ap(B.b8,t.k.a(A.t.prototype.gW.call(s)).b,a.gbL()) +s=this.a +if(r>s.a)s.a=r}, +$S:12} +A.awN.prototype={ +$1(a){var s,r,q,p,o,n,m,l=this,k=l.a,j=++k.d +t.x.a(a) +s=a.b +s.toString +t.V.a(s) +s.e=!1 +r=l.b +if(a===r.ab||a===r.au||k.c>r.a2)return +if(k.c===0)q=j===r.c0$+1?0:r.au.gt(0).a +else q=l.c +j=t.k +p=j.a(A.t.prototype.gW.call(r)) +o=k.a +a.c3(new A.ak(0,p.b-q,o,o),!0) +if(k.b+q+a.gt(0).a>j.a(A.t.prototype.gW.call(r)).b){++k.c +k.b=r.ab.gt(0).a+r.a9 +p=r.ab.gt(0) +o=r.au.gt(0) +j=j.a(A.t.prototype.gW.call(r)) +n=k.a +a.c3(new A.ak(0,j.b-(p.a+o.a),n,n),!0)}j=k.b +s.a=new A.j(j,0) +m=j+(a.gt(0).a+r.a9) +k.b=m +r=k.c===r.a2 +s.e=r +if(r)l.d.b=m}, +$S:12} +A.awL.prototype={ +$1(a){var s,r,q,p,o,n=this +t.x.a(a) +s=a.b +s.toString +t.V.a(s) +if(s.e){r=s.a.V(0,n.b) +q=n.c +q.dm(a,r) +if(s.am$!=null||a===n.a.ab){s=q.gcg(0) +q=new A.j(a.gt(0).a,0).V(0,r) +p=new A.j(a.gt(0).a,a.gt(0).b).V(0,r) +$.a3() +o=A.bc() +o.r=n.a.S.gq(0) +s.lw(q,p,o)}}}, +$S:12} +A.awK.prototype={ +$2(a,b){return this.a.cp(a,b)}, +$S:18} +A.awO.prototype={ +$1(a){this.a.kT(t.x.a(a))}, +$S:12} +A.awP.prototype={ +$1(a){var s +t.x.a(a) +s=a.b +s.toString +if(t.V.a(s).e)this.a.$1(a)}, +$S:12} +A.t6.prototype={ +K(){return"_CupertinoTextSelectionToolbarItemsSlot."+this.b}} +A.Jn.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.Jz.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.V;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.V;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.a0V.prototype={} +A.n9.prototype={ +ac(){return new A.FF()}} +A.FF.prototype={ +agt(a){this.T(new A.aqP(this))}, +agv(a){var s +this.T(new A.aqQ(this)) +s=this.a.d +if(s!=null)s.$0()}, +agr(){this.T(new A.aqO(this))}, +H(a){var s=this,r=null,q=s.aad(a),p=s.d?B.FP.cL(a):B.y,o=s.a.d,n=A.aHc(B.a_,r,q,p,B.y,r,o,B.GQ,1) +if(o!=null)return A.qf(r,n,B.a9,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,s.gagq(),s.gags(),s.gagu(),r,r,r) +else return n}, +aad(a){var s,r=null,q=this.a,p=q.c +if(p!=null)return p +p=q.f +if(p==null){q=q.e +q.toString +q=A.aHg(a,q)}else q=p +s=A.ai(q,r,B.aA,r,B.UZ.b1(this.a.d!=null?B.hp.cL(a):B.eV),r,r) +q=this.a.e +switch(q==null?r:q.b){case B.hi:case B.hj:case B.hk:case B.hl:case B.nX:case B.jV:case B.jW:case B.hm:case B.jY:case null:case void 0:return s +case B.jX:q=B.hp.cL(a) +$.a3() +p=A.bc() +p.d=B.m7 +p.e=B.AA +p.c=1 +p.b=B.bt +return A.e1(A.ip(r,r,r,new A.Wj(q,p,r),B.I),13,13)}}} +A.aqP.prototype={ +$0(){return this.a.d=!0}, +$S:0} +A.aqQ.prototype={ +$0(){return this.a.d=!1}, +$S:0} +A.aqO.prototype={ +$0(){return this.a.d=!1}, +$S:0} +A.Wj.prototype={ +aA(a,b){var s,r,q,p,o,n,m,l=this.c +l.r=this.b.gq(0) +s=a.a +J.ap(s.save()) +r=b.a +q=b.b +s.translate(r/2,q/2) +r=-r/2 +q=-q/2 +p=A.bQ($.a3().w) +p.aq(new A.eL(r,q+3.5)) +p.aq(new A.cb(r,q+1)) +p.aq(new A.KD(new A.j(r+1,q),B.zs,0,!1,!0)) +p.aq(new A.cb(r+3.5,q)) +r=new Float64Array(16) +o=new A.b6(r) +o.dF() +o.a_3(1.5707963267948966) +for(n=0;n<4;++n){m=l.ef() +q=p.gfj().a +q===$&&A.a() +q=q.a +q.toString +s.drawPath(q,m) +m.delete() +s.concat(A.aFB(A.JY(r)))}a.lw(B.O3,B.NK,l) +a.lw(B.O1,B.NJ,l) +a.lw(B.O2,B.NH,l) +s.restore()}, +ew(a){return!a.b.j(0,this.b)}} +A.zv.prototype={ +galx(){var s=B.Tn.b1(this.b) +return s}, +cL(a){var s,r=this,q=r.a,p=q.a,o=p instanceof A.cH?p.cL(a):p,n=q.b +if(n instanceof A.cH)n=n.cL(a) +q=o.j(0,p)&&n.j(0,B.eV)?q:new A.IF(o,n) +s=r.b +if(s instanceof A.cH)s=s.cL(a) +return new A.zv(q,s,A.pd(r.c,a),A.pd(r.d,a),A.pd(r.e,a),A.pd(r.f,a),A.pd(r.r,a),A.pd(r.w,a),A.pd(r.x,a),A.pd(r.y,a),A.pd(r.z,a))}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.zv)if(b.a.j(0,r.a))s=J.d(b.b,r.b) +return s}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.IF.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.IF&&b.a.j(0,s.a)&&b.b.j(0,s.b)}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Uk.prototype={} +A.zw.prototype={ +H(a){var s=null +return new A.AW(this,A.AR(this.d,A.aHe(s,this.c.ger(),s,s,s,s,s,s,s),s),s)}} +A.AW.prototype={ +np(a,b,c){return new A.zw(this.w.c,c,null)}, +ce(a){return!this.w.c.j(0,a.w.c)}} +A.un.prototype={ +ger(){var s=this.b +return s==null?this.x.b:s}, +gjk(){var s=this.c +return s==null?this.x.c:s}, +gkZ(){var s=null,r=this.d +if(r==null){r=this.x.w +r=new A.ar1(r.a,r.b,B.a_r,this.ger(),s,s,s,s,s,s,s,s,s)}return r}, +glq(){var s=this.e +return s==null?this.x.d:s}, +gkb(){var s=this.f +return s==null?this.x.e:s}, +gnA(){var s=this.r +return s==null?this.x.f:s}, +gkr(){var s=this.w +return s==null?!1:s}, +cL(a){var s,r,q=this,p=new A.a55(a),o=q.gil(),n=p.$1(q.b),m=p.$1(q.c),l=q.d +l=l==null?null:l.cL(a) +s=p.$1(q.e) +r=p.$1(q.f) +p=p.$1(q.r) +q.gkr() +return A.aSq(o,n,m,l,s,r,p,!1,q.x.av2(a,q.d==null))}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.un)if(b.gil()==r.gil())if(b.ger().j(0,r.ger()))if(b.gjk().j(0,r.gjk()))if(b.gkZ().j(0,r.gkZ()))if(b.glq().j(0,r.glq()))if(b.gkb().j(0,r.gkb())){s=b.gnA().j(0,r.gnA()) +if(s){b.gkr() +r.gkr()}}return s}, +gB(a){var s=this,r=s.gil(),q=s.ger(),p=s.gjk(),o=s.gkZ(),n=s.glq(),m=s.gkb(),l=s.gnA() +s.gkr() +return A.T(r,q,p,o,n,m,l,!1,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.a55.prototype={ +$1(a){return a instanceof A.cH?a.cL(this.a):a}, +$S:139} +A.qX.prototype={ +cL(a){var s=this,r=new A.afF(a),q=s.gil(),p=r.$1(s.ger()),o=r.$1(s.gjk()),n=s.gkZ() +n=n==null?null:n.cL(a) +return new A.qX(q,p,o,n,r.$1(s.glq()),r.$1(s.gkb()),r.$1(s.gnA()),s.gkr())}, +ao9(a,b,c,d,e,f,g,h){var s=this,r=s.gil(),q=s.ger(),p=s.gjk(),o=s.glq(),n=s.gkb(),m=s.gnA(),l=s.gkr() +return new A.qX(r,q,p,h,o,n,m,l)}, +anO(a){var s=null +return this.ao9(s,s,s,s,s,s,s,a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.qX&&b.gil()==s.gil()&&J.d(b.ger(),s.ger())&&J.d(b.gjk(),s.gjk())&&J.d(b.gkZ(),s.gkZ())&&J.d(b.glq(),s.glq())&&J.d(b.gkb(),s.gkb())&&b.gkr()==s.gkr()}, +gB(a){var s=this +return A.T(s.gil(),s.ger(),s.gjk(),s.gkZ(),s.glq(),s.gkb(),s.gkr(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +gil(){return this.a}, +ger(){return this.b}, +gjk(){return this.c}, +gkZ(){return this.d}, +glq(){return this.e}, +gkb(){return this.f}, +gnA(){return this.r}, +gkr(){return this.w}} +A.afF.prototype={ +$1(a){return a instanceof A.cH?a.cL(this.a):a}, +$S:139} +A.Un.prototype={ +av2(a,b){var s,r,q=this,p=new A.aqU(a),o=p.$1(q.b),n=p.$1(q.c),m=p.$1(q.d),l=p.$1(q.e) +p=p.$1(q.f) +s=q.w +if(b){r=s.a +if(r instanceof A.cH)r=r.cL(a) +s=s.b +s=new A.Ul(r,s instanceof A.cH?s.cL(a):s)}return new A.Un(q.a,o,n,m,l,p,!1,s)}} +A.aqU.prototype={ +$1(a){return a instanceof A.cH?a.cL(this.a):a}, +$S:91} +A.Ul.prototype={} +A.ar1.prototype={} +A.Um.prototype={} +A.oK.prototype={ +wG(a,b){var s=A.ke.prototype.gq.call(this,0) +s.toString +return J.aGq(s)}, +k(a){return this.wG(0,B.aF)}} +A.uB.prototype={} +A.MI.prototype={} +A.MH.prototype={} +A.bO.prototype={ +apd(){var s,r,q,p,o,n,m,l=this.a +if(t.vp.b(l)){s=l.gwa(l) +r=l.k(0) +l=null +if(typeof s=="string"&&s!==r){q=r.length +p=s.length +if(q>p){o=B.c.Bo(r,s) +if(o===q-p&&o>2&&B.c.a1(r,o-2,o)===": "){n=B.c.a1(r,0,o-2) +m=B.c.hR(n," Failed assertion:") +if(m>=0)n=B.c.a1(n,0,m)+"\n"+B.c.bZ(n,m+1) +l=B.c.Cs(s)+"\n"+n}}}if(l==null)l=r}else if(!(typeof l=="string"))l=t.Lt.b(l)||t.VI.b(l)?J.dr(l):" "+A.k(l) +l=B.c.Cs(l) +return l.length===0?" ":l}, +ga1s(){return A.aHn(new A.a88(this).$0(),!0)}, +d5(){return"Exception caught by "+this.c}, +k(a){A.aYx(null,B.G7,this) +return""}} +A.a88.prototype={ +$0(){return B.c.avE(this.a.apd().split("\n")[0])}, +$S:14} +A.uD.prototype={ +gwa(a){return this.k(0)}, +d5(){return"FlutterError"}, +k(a){var s,r=new A.cd(this.a,t.ow) +if(!r.ga7(0)){s=r.ga3(0) +s=A.ke.prototype.gq.call(s,0) +s.toString +s=J.aGq(s)}else s="FlutterError" +return s}, +$ips:1} +A.a89.prototype={ +$1(a){return A.br(a)}, +$S:342} +A.a8a.prototype={ +$1(a){return a+1}, +$S:83} +A.a8b.prototype={ +$1(a){return a+1}, +$S:83} +A.aBq.prototype={ +$1(a){return B.c.p(a,"StackTrace.current")||B.c.p(a,"dart-sdk/lib/_internal")||B.c.p(a,"dart:sdk_internal")}, +$S:30} +A.Mi.prototype={} +A.Vo.prototype={} +A.Vq.prototype={} +A.Vp.prototype={} +A.KZ.prototype={ +ho(){}, +oY(){}, +aso(a){var s;++this.c +s=a.$0() +s.i_(new A.a3k(this)) +return s}, +KZ(){}, +k(a){return""}} +A.a3k.prototype={ +$0(){var s,r,q,p=this.a +if(--p.c<=0)try{p.a4U() +if(p.fy$.c!==0)p.P2()}catch(q){s=A.a1(q) +r=A.aH(q) +p=A.br("while handling pending events") +A.d6(new A.bO(s,r,"foundation",p,null,!1))}}, +$S:13} +A.ac.prototype={} +A.aS.prototype={ +Z(a,b){var s,r,q,p,o=this +if(o.ge3(o)===o.gcZ().length){s=t.Nw +if(o.ge3(o)===0)o.scZ(A.bz(1,null,!1,s)) +else{r=A.bz(o.gcZ().length*2,null,!1,s) +for(q=0;q0){r.gcZ()[s]=null +r.smv(r.gmv()+1)}else r.RZ(s) +break}}, +l(){this.scZ($.aw()) +this.se3(0,0)}, +ak(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +if(f.ge3(f)===0)return +f.sli(f.gli()+1) +p=f.ge3(f) +for(s=0;s0){l=f.ge3(f)-f.gmv() +if(l*2<=f.gcZ().length){k=A.bz(l,null,!1,t.Nw) +for(j=0,s=0;s#"+A.bi(this)+"("+A.k(this.gq(this))+")"}} +A.zG.prototype={ +K(){return"DiagnosticLevel."+this.b}} +A.ll.prototype={ +K(){return"DiagnosticsTreeStyle."+this.b}} +A.av3.prototype={} +A.dJ.prototype={ +wG(a,b){return this.ke(0)}, +k(a){return this.wG(0,B.aF)}} +A.ke.prototype={ +gq(a){this.afi() +return this.at}, +afi(){return}} +A.zH.prototype={} +A.Mh.prototype={} +A.a7.prototype={ +d5(){return"#"+A.bi(this)}, +wG(a,b){var s=this.d5() +return s}, +k(a){return this.wG(0,B.aF)}} +A.a5C.prototype={ +d5(){return"#"+A.bi(this)}} +A.ir.prototype={ +k(a){return this.a_9(B.d0).ke(0)}, +d5(){return"#"+A.bi(this)}, +avs(a,b){return A.aCT(a,b,this)}, +a_9(a){return this.avs(null,a)}} +A.zI.prototype={} +A.UG.prototype={} +A.fK.prototype={} +A.Od.prototype={} +A.kO.prototype={ +k(a){return"[#"+A.bi(this)+"]"}} +A.e3.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return A.n(this).i("e3").b(b)&&J.d(b.a,this.a)}, +gB(a){return A.T(A.r(this),this.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=A.n(this),r=s.i("e3.T"),q=this.a,p=A.bZ(r)===B.Yn?"<'"+A.k(q)+"'>":"<"+A.k(q)+">" +if(A.r(this)===A.bZ(s.i("e3")))return"["+p+"]" +return"["+A.bZ(r).k(0)+" "+p+"]"}} +A.aEH.prototype={} +A.iw.prototype={} +A.Bk.prototype={} +A.ba.prototype={ +gui(){var s,r=this,q=r.c +if(q===$){s=A.dj(r.$ti.c) +r.c!==$&&A.aA() +r.c=s +q=s}return q}, +F(a,b){var s=B.b.F(this.a,b) +if(s){this.b=!0 +this.gui().a5(0)}return s}, +a5(a){this.b=!1 +B.b.a5(this.a) +this.gui().a5(0)}, +p(a,b){var s=this,r=s.a +if(r.length<3)return B.b.p(r,b) +if(s.b){s.gui().O(0,r) +s.b=!1}return s.gui().p(0,b)}, +gag(a){var s=this.a +return new J.cV(s,s.length,A.a2(s).i("cV<1>"))}, +ga7(a){return this.a.length===0}, +gbV(a){return this.a.length!==0}, +ee(a,b){var s=this.a,r=A.a2(s) +return b?A.b(s.slice(0),r):J.nA(s.slice(0),r.c)}, +f8(a){return this.ee(0,!0)}} +A.er.prototype={ +E(a,b){var s=this.a,r=s.h(0,b) +s.m(0,b,(r==null?0:r)+1)}, +F(a,b){var s=this.a,r=s.h(0,b) +if(r==null)return!1 +if(r===1)s.F(0,b) +else s.m(0,b,r-1) +return!0}, +p(a,b){return this.a.az(0,b)}, +gag(a){var s=this.a +return new A.eK(s,s.r,s.e)}, +ga7(a){return this.a.a===0}, +gbV(a){return this.a.a!==0}, +ee(a,b){var s=this.a,r=s.r,q=s.e +return A.aIK(s.a,new A.a9p(this,new A.eK(s,r,q)),b,this.$ti.c)}, +f8(a){return this.ee(0,!0)}} +A.a9p.prototype={ +$1(a){var s=this.b +s.u() +return s.d}, +$S(){return this.a.$ti.i("1(m)")}} +A.Ch.prototype={ +aui(a,b,c){var s=this.a,r=s==null?$.Kd():s,q=r.kS(0,0,b,A.f5(b),c) +if(q===s)return this +return new A.Ch(q)}, +h(a,b){var s=this.a +return s==null?null:s.lZ(0,0,b,J.C(b))}} +A.azF.prototype={} +A.VA.prototype={ +kS(a,b,c,d,e){var s,r,q,p,o=B.f.qk(d,b)&31,n=this.a,m=n[o] +if(m==null)m=$.Kd() +s=m.kS(0,b+5,c,d,e) +if(s===m)n=this +else{r=n.length +q=A.bz(r,null,!1,t.X) +for(p=0;p>>0,a1=c.a,a2=(a1&a0-1)>>>0,a3=a2-(a2>>>1&1431655765) +a3=(a3&858993459)+(a3>>>2&858993459) +a3=a3+(a3>>>4)&252645135 +a3+=a3>>>8 +s=a3+(a3>>>16)&63 +if((a1&a0)>>>0!==0){a=c.b +a2=2*s +r=a[a2] +q=a2+1 +p=a[q] +if(r==null){o=p.kS(0,a5+5,a6,a7,a8) +if(o===p)return c +a2=a.length +n=A.bz(a2,b,!1,t.X) +for(m=0;m>>1&1431655765) +a3=(a3&858993459)+(a3>>>2&858993459) +a3=a3+(a3>>>4)&252645135 +a3+=a3>>>8 +i=a3+(a3>>>16)&63 +if(i>=16){a1=c.aen(a5) +a1.a[a]=$.Kd().kS(0,a5+5,a6,a7,a8) +return a1}else{h=2*s +g=2*i +f=A.bz(g+2,b,!1,t.X) +for(a=c.b,e=0;e>>0,f)}}}, +lZ(a,b,c,d){var s,r,q,p,o=1<<(B.f.qk(d,b)&31)>>>0,n=this.a +if((n&o)>>>0===0)return null +n=(n&o-1)>>>0 +s=n-(n>>>1&1431655765) +s=(s&858993459)+(s>>>2&858993459) +s=s+(s>>>4)&252645135 +s+=s>>>8 +n=this.b +r=2*(s+(s>>>16)&63) +q=n[r] +p=n[r+1] +if(q==null)return p.lZ(0,b+5,c,d) +if(c===q)return p +return null}, +aen(a){var s,r,q,p,o,n,m,l=A.bz(32,null,!1,t.X) +for(s=this.a,r=a+5,q=this.b,p=0,o=0;o<32;++o)if((B.f.qk(s,o)&1)!==0){n=q[p] +m=p+1 +if(n==null)l[o]=q[m] +else l[o]=$.Kd().kS(0,r,n,n.gB(n),q[m]) +p+=2}return new A.VA(l)}} +A.Gf.prototype={ +kS(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=this,i=j.a +if(d===i){s=j.QB(c) +if(s!==-1){i=j.b +r=s+1 +if(i[r]==e)i=j +else{q=i.length +p=A.bz(q,null,!1,t.X) +for(o=0;o>>0,k).kS(0,b,c,d,e)}, +lZ(a,b,c,d){var s=this.QB(c) +return s<0?null:this.b[s+1]}, +QB(a){var s,r,q=this.b,p=q.length +for(s=J.ph(a),r=0;r=s.a.length)s.G4(q) +B.O.i3(s.a,s.b,q,a) +s.b+=r}, +tt(a,b,c){var s=this,r=c==null?s.e.length:c,q=s.b+(r-b) +if(q>=s.a.length)s.G4(q) +B.O.i3(s.a,s.b,q,a) +s.b=q}, +a6i(a){return this.tt(a,0,null)}, +G4(a){var s=this.a,r=s.length,q=a==null?0:a,p=Math.max(q,r*2),o=new Uint8Array(p) +B.O.i3(o,0,r,s) +this.a=o}, +aif(){return this.G4(null)}, +kf(a){var s=B.f.bh(this.b,a) +if(s!==0)this.tt($.aPe(),0,a-s)}, +mQ(){var s,r=this +if(r.c)throw A.e(A.a5("done() must not be called more than once on the same "+A.r(r).k(0)+".")) +s=J.Kg(B.O.gc9(r.a),0,r.b) +r.a=new Uint8Array(0) +r.c=!0 +return s}} +A.Cu.prototype={ +pz(a){return this.a.getUint8(this.b++)}, +CM(a){var s=this.b,r=$.e6() +B.ax.Lu(this.a,s,r)}, +pA(a){var s=this.a,r=J.j2(B.ax.gc9(s),s.byteOffset+this.b,a) +this.b+=a +return r}, +CN(a){var s,r,q=this +q.kf(8) +s=q.a +r=J.aCo(B.ax.gc9(s),s.byteOffset+q.b,a) +q.b=q.b+8*a +return r}, +kf(a){var s=this.b,r=B.f.bh(s,a) +if(r!==0)this.b=s+(a-r)}} +A.jM.prototype={ +gB(a){var s=this +return A.T(s.b,s.d,s.f,s.r,s.w,s.x,s.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.jM&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.a===s.a}, +k(a){var s=this +return"StackFrame(#"+s.b+", "+s.c+":"+s.d+"/"+s.e+":"+s.f+":"+s.r+", className: "+s.w+", method: "+s.x+")"}} +A.alw.prototype={ +$1(a){return a.length!==0}, +$S:30} +A.dw.prototype={ +qI(a,b){return new A.au($.aq,this.$ti.i("au<1>"))}, +on(a){return this.qI(a,null)}, +hZ(a,b,c){var s,r=a.$1(this.a) +$label0$0:{if(c.i("av<0>").b(r)){s=r +break $label0$0}if(c.b(r)){s=new A.dw(r,c.i("dw<0>")) +break $label0$0}s=null}return s}, +bo(a,b){return this.hZ(a,null,b)}, +i_(a){var s,r,q,p,o,n,m=this +try{s=a.$0() +if(t.L0.b(s)){p=s.bo(new A.alU(m),m.$ti.c) +return p}return m}catch(o){r=A.a1(o) +q=A.aH(o) +p=A.a1O(r,q) +n=new A.au($.aq,m.$ti.i("au<1>")) +n.nW(p) +return n}}, +$iav:1} +A.alU.prototype={ +$1(a){return this.a.a}, +$S(){return this.a.$ti.i("1(@)")}} +A.N8.prototype={ +K(){return"GestureDisposition."+this.b}} +A.d7.prototype={} +A.uG.prototype={ +Y(a){this.a.oa(this.b,this.c,a)}} +A.x1.prototype={ +k(a){var s=this,r=s.a +r=r.length===0?"":new A.ae(r,new A.asn(s),A.a2(r).i("ae<1,l>")).bn(0,", ") +if(s.b)r+=" [open]" +if(s.c)r+=" [held]" +if(s.d)r+=" [hasPendingSweep]" +return r.charCodeAt(0)==0?r:r}} +A.asn.prototype={ +$1(a){if(a===this.a.e)return a.k(0)+" (eager winner)" +return a.k(0)}, +$S:348} +A.a8W.prototype={ +zt(a,b,c){this.a.bY(0,b,new A.a8Y()).a.push(c) +return new A.uG(this,b,c)}, +amT(a,b){var s=this.a.h(0,b) +if(s==null)return +s.b=!1 +this.TD(b,s)}, +N4(a){var s,r=this.a,q=r.h(0,a) +if(q==null)return +if(q.c){q.d=!0 +return}r.F(0,a) +r=q.a +if(r.length!==0){B.b.ga3(r).hI(a) +for(s=1;s0.4){r.dy=B.j3 +r.Y(B.bX)}else if(a.goA().gvj()>A.pf(a.gcK(a),r.b))r.Y(B.aw) +if(s>0.4&&r.dy===B.Bl){r.dy=B.j3 +if(r.at!=null)r.cN("onStart",new A.a8w(r,s))}}r.Dn(a)}, +hI(a){var s=this,r=s.dy +if(r===B.j2)r=s.dy=B.Bl +if(s.at!=null&&r===B.j3)s.cN("onStart",new A.a8u(s))}, +vg(a){var s=this,r=s.dy,q=r===B.j3||r===B.Zt +if(r===B.j2){s.Y(B.aw) +return}if(q&&s.ch!=null)if(s.ch!=null)s.cN("onEnd",new A.a8v(s)) +s.dy=B.mC}, +fA(a){this.jt(a) +this.vg(a)}} +A.a8w.prototype={ +$0(){var s=this.a,r=s.at +r.toString +s=s.db +s===$&&A.a() +return r.$1(new A.qd(s.b,s.a,this.b))}, +$S:0} +A.a8u.prototype={ +$0(){var s,r=this.a,q=r.at +q.toString +s=r.dx +s===$&&A.a() +r=r.db +r===$&&A.a() +return q.$1(new A.qd(r.b,r.a,s))}, +$S:0} +A.a8v.prototype={ +$0(){var s=this.a,r=s.ch +r.toString +s=s.db +s===$&&A.a() +return r.$1(new A.qd(s.b,s.a,0))}, +$S:0} +A.Vz.prototype={} +A.us.prototype={ +gB(a){return A.T(this.a,23,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.us&&b.a==this.a}, +k(a){return"DeviceGestureSettings(touchSlop: "+A.k(this.a)+")"}} +A.hM.prototype={ +k(a){return"#"+A.bi(this)+"("+this.a.k(0)+")"}} +A.xP.prototype={} +A.GI.prototype={ +dZ(a,b){return this.a.asS(b)}} +A.xj.prototype={ +dZ(a,b){var s,r,q,p,o,n,m=new Float64Array(16),l=new A.b6(m) +l.cB(b) +s=this.a +r=s.a +s=s.b +q=m[3] +m[0]=m[0]+r*q +m[1]=m[1]+s*q +m[2]=m[2]+0*q +m[3]=q +p=m[7] +m[4]=m[4]+r*p +m[5]=m[5]+s*p +m[6]=m[6]+0*p +m[7]=p +o=m[11] +m[8]=m[8]+r*o +m[9]=m[9]+s*o +m[10]=m[10]+0*o +m[11]=o +n=m[15] +m[12]=m[12]+r*n +m[13]=m[13]+s*n +m[14]=m[14]+0*n +m[15]=n +return l}} +A.lB.prototype={ +aaN(){var s,r,q,p,o=this.c +if(o.length===0)return +s=this.b +r=B.b.gae(s) +for(q=o.length,p=0;p":B.b.bn(s,", "))+")"}} +A.v2.prototype={} +A.Bt.prototype={} +A.v1.prototype={} +A.jo.prototype={ +hT(a){var s=this +switch(a.gdR(a)){case 1:if(s.p1==null&&s.p3==null&&s.p2==null&&s.p4==null&&s.RG==null&&s.R8==null)return!1 +break +case 2:return!1 +case 4:return!1 +default:return!1}return s.pN(a)}, +Ii(){var s,r=this +r.Y(B.bX) +r.k2=!0 +s=r.CW +s.toString +r.MH(s) +r.a7z()}, +Xs(a){var s,r=this +if(!a.gtr()){if(t.pY.b(a)){s=new A.jS(a.gcK(a),A.bz(20,null,!1,t.av)) +r.S=s +s.zA(a.gk7(a),a.gd4())}if(t.n2.b(a)){s=r.S +s.toString +s.zA(a.gk7(a),a.gd4())}}if(t.oN.b(a)){if(r.k2)r.a7x(a) +else r.Y(B.aw) +r.G3()}else if(t.Ko.b(a)){r.NU() +r.G3()}else if(t.pY.b(a)){r.k3=new A.ex(a.gd4(),a.gby(a)) +r.k4=a.gdR(a) +r.a7w(a)}else if(t.n2.b(a))if(a.gdR(a)!==r.k4&&!r.k2){r.Y(B.aw) +s=r.CW +s.toString +r.jt(s)}else if(r.k2)r.a7y(a)}, +a7w(a){this.k3.toString +this.e.h(0,a.gbt()).toString +switch(this.k4){case 1:break +case 2:break +case 4:break}}, +NU(){var s,r=this +if(r.ch===B.hK)switch(r.k4){case 1:s=r.p1 +if(s!=null)r.cN("onLongPressCancel",s) +break +case 2:break +case 4:break}}, +a7z(){var s,r,q=this +switch(q.k4){case 1:if(q.p3!=null){s=q.k3 +r=s.b +s=s.a +q.cN("onLongPressStart",new A.abB(q,new A.v2(r,s)))}s=q.p2 +if(s!=null)q.cN("onLongPress",s) +break +case 2:break +case 4:break}}, +a7y(a){var s=this,r=a.gby(a),q=a.gd4(),p=a.gby(a).a0(0,s.k3.b),o=a.gd4().a0(0,s.k3.a) +switch(s.k4){case 1:if(s.p4!=null)s.cN("onLongPressMoveUpdate",new A.abA(s,new A.Bt(r,q,p,o))) +break +case 2:break +case 4:break}}, +a7x(a){var s=this,r=s.S.x3(),q=r==null?B.cO:new A.i6(r.a),p=a.gby(a),o=a.gd4() +s.S=null +switch(s.k4){case 1:if(s.RG!=null)s.cN("onLongPressEnd",new A.abz(s,new A.v1(p,o,q))) +p=s.R8 +if(p!=null)s.cN("onLongPressUp",p) +break +case 2:break +case 4:break}}, +G3(){var s=this +s.k2=!1 +s.S=s.k4=s.k3=null}, +Y(a){var s=this +if(a===B.aw)if(s.k2)s.G3() +else s.NU() +s.MG(a)}, +hI(a){}} +A.abB.prototype={ +$0(){return this.a.p3.$1(this.b)}, +$S:0} +A.abA.prototype={ +$0(){return this.a.p4.$1(this.b)}, +$S:0} +A.abz.prototype={ +$0(){return this.a.RG.$1(this.b)}, +$S:0} +A.Wm.prototype={} +A.Wn.prototype={} +A.Wo.prototype={} +A.mG.prototype={ +h(a,b){return this.c[b+this.a]}, +a6(a,b){var s,r,q,p,o,n,m +for(s=this.b,r=this.c,q=this.a,p=b.c,o=b.a,n=0,m=0;m") +r=A.a6(new A.ae(r,new A.agJ(),q),q.i("ax.E")) +s=A.nz(r,"[","]") +r=this.b +r===$&&A.a() +return"PolynomialFit("+s+", confidence: "+B.d.ah(r,3)+")"}} +A.agJ.prototype={ +$1(a){return B.d.avv(a,3)}, +$S:361} +A.O4.prototype={ +Mc(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this.a,a6=a5.length +if(a7>a6)return null +s=a7+1 +r=new Float64Array(s) +q=new A.Ck(r) +p=s*a6 +o=new Float64Array(p) +for(n=this.c,m=0*a6,l=0;l=0;--b){r[b]=new A.mG(b*a6,a6,p).a6(0,c) +for(o=b*s,j=k;j>b;--j)r[b]=r[b]-m[o+j]*r[j] +r[b]=r[b]/m[o+b]}for(a=0,l=0;lr){r=p +s=q}}else{r.toString +if(p0:b.b>0,o=q?b.a:b.b,n=this.aav(a,p) +if(n===c)return o +else{n.toString +s=this.EZ(a,n,p) +r=this.EZ(a,c,p) +if(p){q=r+o +if(q>s)return q-s +else return 0}else{q=r+o +if(qn&&Math.abs(a.d.b)>s))return null +q=o.dy +if(q==null)q=8000 +p=A.A(r,-q,q) +r=o.k1 +r===$&&A.a() +return new A.fm(r.b,r.a,new A.i6(new A.j(0,p)),p)}, +Jo(a,b){var s=this.ok +s===$&&A.a() +return Math.abs(s)>A.pf(a,this.b)}, +tQ(a){return new A.j(0,a.b)}, +tU(a){return a.b}, +EY(){return B.ev}} +A.hN.prototype={ +HQ(a,b){var s,r,q,p,o=this,n=o.dx +if(n==null)n=50 +s=o.db +if(s==null)s=A.pf(b,o.b) +r=a.a.a +if(!(Math.abs(r)>n&&Math.abs(a.d.a)>s))return null +q=o.dy +if(q==null)q=8000 +p=A.A(r,-q,q) +r=o.k1 +r===$&&A.a() +return new A.fm(r.b,r.a,new A.i6(new A.j(p,0)),p)}, +Jo(a,b){var s=this.ok +s===$&&A.a() +return Math.abs(s)>A.pf(a,this.b)}, +tQ(a){return new A.j(a.a,0)}, +tU(a){return a.a}, +EY(){return B.eu}} +A.jz.prototype={ +HQ(a,b){var s,r,q,p=this,o=p.dx,n=o==null,m=n?50:o,l=p.db +if(l==null)l=A.pf(b,p.b) +s=a.a +if(!(s.gvj()>m*m&&a.d.gvj()>l*l))return null +n=n?50:o +r=p.dy +if(r==null)r=8000 +q=new A.i6(s).amK(n,r) +r=p.k1 +r===$&&A.a() +return new A.fm(r.b,r.a,q,null)}, +Jo(a,b){var s=this.ok +s===$&&A.a() +return Math.abs(s)>A.aFa(a,this.b)}, +tQ(a){return a}, +tU(a){return null}} +A.UR.prototype={ +K(){return"_DragDirection."+this.b}} +A.U5.prototype={ +agy(){this.a=!0}} +A.xK.prototype={ +jt(a){if(this.r){this.r=!1 +$.f1.a9$.ZL(this.b,a)}}, +Yy(a,b){return a.gby(a).a0(0,this.d).gcj()<=b}} +A.ja.prototype={ +hT(a){var s,r,q=this +if(q.y==null){s=q.r==null +if(s)return!1}r=q.pN(a) +if(!r)q.o5() +return r}, +ii(a){var s=this,r=s.y +if(r!=null)if(!r.Yy(a,100))return +else{r=s.y +if(!r.f.a||a.gdR(a)!==r.e){s.o5() +return s.TC(a)}}s.TC(a)}, +TC(a){var s,r,q,p,o,n,m=this +m.T9() +s=$.f1.ab$.zt(0,a.gbt(),m) +r=a.gbt() +q=a.gby(a) +p=a.gdR(a) +o=new A.U5() +A.co(B.Gt,o.gagx()) +n=new A.xK(r,s,q,p,o) +m.z.m(0,a.gbt(),n) +o=a.gc2(a) +if(!n.r){n.r=!0 +$.f1.a9$.UW(r,m.gyC(),o)}}, +afz(a){var s,r=this,q=r.z,p=q.h(0,a.gbt()) +p.toString +if(t.oN.b(a)){s=r.y +if(s==null){if(r.x==null)r.x=A.co(B.cG,r.gafA()) +s=p.b +$.f1.ab$.Bg(s) +p.jt(r.gyC()) +q.F(0,s) +r.O8() +r.y=p}else{s=s.c +s.a.oa(s.b,s.c,B.bX) +s=p.c +s.a.oa(s.b,s.c,B.bX) +p.jt(r.gyC()) +q.F(0,p.b) +q=r.r +if(q!=null)r.cN("onDoubleTap",q) +r.o5()}}else if(t.n2.b(a)){if(!p.Yy(a,18))r.un(p)}else if(t.Ko.b(a))r.un(p)}, +hI(a){}, +fA(a){var s,r=this,q=r.z.h(0,a) +if(q==null){s=r.y +s=s!=null&&s.b===a}else s=!1 +if(s)q=r.y +if(q!=null)r.un(q)}, +un(a){var s,r=this,q=r.z +q.F(0,a.b) +s=a.c +s.a.oa(s.b,s.c,B.aw) +a.jt(r.gyC()) +s=r.y +if(s!=null)if(a===s)r.o5() +else{r.NP() +if(q.a===0)r.o5()}}, +l(){this.o5() +this.Mt()}, +o5(){var s,r=this +r.T9() +if(r.y!=null){if(r.z.a!==0)r.NP() +s=r.y +s.toString +r.y=null +r.un(s) +$.f1.ab$.auD(0,s.b)}r.O8()}, +O8(){var s=this.z,r=A.n(s).i("bf<2>") +s=A.a6(new A.bf(s,r),r.i("o.E")) +B.b.aj(s,this.gai1())}, +T9(){var s=this.x +if(s!=null){s.aR(0) +this.x=null}}, +NP(){}} +A.agE.prototype={ +UW(a,b,c){J.dR(this.a.bY(0,a,new A.agG()),b,c)}, +ZL(a,b){var s,r=this.a,q=r.h(0,a) +q.toString +s=J.cD(q) +s.F(q,b) +if(s.ga7(q))r.F(0,a)}, +a8R(a,b,c){var s,r,q,p,o +a=a +try{a=a.bp(c) +b.$1(a)}catch(p){s=A.a1(p) +r=A.aH(p) +q=null +o=A.br("while routing a pointer event") +A.d6(new A.bO(s,r,"gesture library",o,q,!1))}}, +a_4(a){var s=this,r=s.a.h(0,a.gbt()),q=s.b,p=t.Ld,o=t.iD,n=A.lH(q,p,o) +if(r!=null)s.OO(a,r,A.lH(r,p,o)) +s.OO(a,q,n)}, +OO(a,b,c){c.aj(0,new A.agF(this,b,a))}} +A.agG.prototype={ +$0(){return A.w(t.Ld,t.iD)}, +$S:377} +A.agF.prototype={ +$2(a,b){if(J.yj(this.b,a))this.a.a8R(this.c,a,b)}, +$S:378} +A.agH.prototype={ +ZC(a,b,c){if(this.a!=null)return +this.b=b +this.a=c}, +Y(a){var s,r,q,p,o,n=this,m=n.a +if(m==null){a.ng(!0) +return}try{p=n.b +p.toString +m.$1(p)}catch(o){s=A.a1(o) +r=A.aH(o) +q=null +m=A.br("while resolving a PointerSignalEvent") +A.d6(new A.bO(s,r,"gesture library",m,q,!1))}n.b=n.a=null}} +A.Mv.prototype={ +K(){return"DragStartBehavior."+this.b}} +A.Oz.prototype={ +K(){return"MultitouchDragStrategy."+this.b}} +A.d8.prototype={ +H0(a){}, +UV(a){var s=this +s.e.m(0,a.gbt(),a.gcK(a)) +if(s.hT(a))s.ii(a) +else s.rg(a)}, +ii(a){}, +rg(a){}, +hT(a){var s=this.c +return(s==null||s.p(0,a.gcK(a)))&&this.d.$1(a.gdR(a))}, +JH(a){var s=this.c +return s==null||s.p(0,a.gcK(a))}, +l(){}, +Y7(a,b,c){var s,r,q,p,o,n=null +try{n=b.$0()}catch(p){s=A.a1(p) +r=A.aH(p) +q=null +o=A.br("while handling a gesture") +A.d6(new A.bO(s,r,"gesture",o,q,!1))}return n}, +cN(a,b){return this.Y7(a,b,null,t.z)}, +arH(a,b,c){return this.Y7(a,b,c,t.z)}} +A.C8.prototype={ +ii(a){this.xm(a.gbt(),a.gc2(a))}, +rg(a){this.Y(B.aw)}, +hI(a){}, +fA(a){}, +Y(a){var s,r=this.f,q=A.a6(new A.bf(r,A.n(r).i("bf<2>")),t.g) +r.a5(0) +for(r=q.length,s=0;s")),r=r.c;q.u();){p=q.d +if(p==null)p=r.a(p) +o=$.f1.a9$ +n=k.goU() +o=o.a +m=o.h(0,p) +m.toString +l=J.cD(m) +l.F(m,n) +if(l.ga7(m))o.F(0,p)}s.a5(0) +k.Mt()}, +xm(a,b){var s,r=this +$.f1.a9$.UW(a,r.goU(),b) +r.r.E(0,a) +s=r.w +s=s==null?null:s.zt(0,a,r) +if(s==null)s=$.f1.ab$.zt(0,a,r) +r.f.m(0,a,s)}, +jt(a){var s=this.r +if(s.p(0,a)){$.f1.a9$.ZL(a,this.goU()) +s.F(0,a) +if(s.a===0)this.vg(a)}}, +Dn(a){if(t.oN.b(a)||t.Ko.b(a)||t.WQ.b(a))this.jt(a.gbt())}} +A.AF.prototype={ +K(){return"GestureRecognizerState."+this.b}} +A.vt.prototype={ +gxU(){var s=this.b +s=s==null?null:s.a +return s==null?18:s}, +ii(a){var s=this +s.xv(a) +if(s.ch===B.d6){s.ch=B.hK +s.CW=a.gbt() +s.cx=new A.ex(a.gd4(),a.gby(a)) +s.db=A.co(s.at,new A.agO(s,a))}}, +rg(a){if(!this.cy)this.MF(a)}, +is(a){var s,r,q,p,o,n=this +if(n.ch===B.hK&&a.gbt()===n.CW){s=!1 +if(!n.cy){r=n.ax +q=r===-1 +if(q)n.gxU() +p=n.Pt(a) +r=p>(q?n.gxU():r) +s=r}o=!1 +if(n.cy){r=n.ay +q=r===-1 +if((q?n.gxU():r)!=null){p=n.Pt(a) +if(q)r=n.gxU() +r.toString +r=p>r +o=r}}if(t.n2.b(a))r=s||o +else r=!1 +if(r){n.Y(B.aw) +r=n.CW +r.toString +n.jt(r)}else n.Xs(a)}n.Dn(a)}, +Ii(){}, +hI(a){if(a===this.CW){this.my() +this.cy=!0}}, +fA(a){var s=this +if(a===s.CW&&s.ch===B.hK){s.my() +s.ch=B.Hj}}, +vg(a){var s=this +s.my() +s.ch=B.d6 +s.cx=null +s.cy=!1}, +l(){this.my() +this.m9()}, +my(){var s=this.db +if(s!=null){s.aR(0) +this.db=null}}, +Pt(a){return a.gby(a).a0(0,this.cx.b).gcj()}} +A.agO.prototype={ +$0(){this.a.Ii() +return null}, +$S:0} +A.ex.prototype={ +V(a,b){return new A.ex(this.a.V(0,b.a),this.b.V(0,b.b))}, +a0(a,b){return new A.ex(this.a.a0(0,b.a),this.b.a0(0,b.b))}, +k(a){return"OffsetPair(local: "+this.a.k(0)+", global: "+this.b.k(0)+")"}} +A.VD.prototype={} +A.wc.prototype={} +A.op.prototype={} +A.Ef.prototype={} +A.KX.prototype={ +Xx(a){}, +ii(a){var s=this +if(s.ch===B.d6){if(s.k4!=null&&s.ok!=null)s.ux() +s.k4=a}if(s.k4!=null)s.a2C(a)}, +xm(a,b){this.a2x(a,b)}, +Xs(a){var s,r,q=this +if(t.oN.b(a)){q.ok=a +q.NY()}else if(t.Ko.b(a)){q.Y(B.aw) +if(q.k2){s=q.k4 +s.toString +q.B7(a,s,"")}q.ux()}else{s=a.gdR(a) +r=q.k4 +if(s!==r.gdR(r)){q.Y(B.aw) +s=q.CW +s.toString +q.jt(s)}else if(t.n2.b(a))q.Xx(a)}}, +Y(a){var s,r=this +if(r.k3&&a===B.aw){s=r.k4 +s.toString +r.B7(null,s,"spontaneous") +r.ux()}r.MG(a)}, +Ii(){this.Tf()}, +hI(a){var s=this +s.MH(a) +if(a===s.CW){s.Tf() +s.k3=!0 +s.NY()}}, +fA(a){var s,r=this +r.a2D(a) +if(a===r.CW){if(r.k2){s=r.k4 +s.toString +r.B7(null,s,"forced")}r.ux()}}, +Tf(){var s,r=this +if(r.k2)return +s=r.k4 +s.toString +r.Xw(s) +r.k2=!0}, +NY(){var s,r,q=this +if(!q.k3||q.ok==null)return +s=q.k4 +s.toString +r=q.ok +r.toString +q.Xy(s,r) +q.ux()}, +ux(){var s=this +s.k3=s.k2=!1 +s.k4=s.ok=null}} +A.hq.prototype={ +hT(a){var s=this +switch(a.gdR(a)){case 1:if(s.n==null&&s.X==null&&s.I==null&&s.S==null&&s.a2==null)return!1 +break +case 2:if(s.a9==null&&s.ab==null&&s.au==null&&s.aX==null)return!1 +break +case 4:return!1 +default:return!1}return s.pN(a)}, +Xw(a){var s,r=this,q=a.gby(a),p=a.gd4(),o=r.e.h(0,a.gbt()) +o.toString +s=new A.wc(q,p,o) +switch(a.gdR(a)){case 1:if(r.n!=null)r.cN("onTapDown",new A.am4(r,s)) +break +case 2:if(r.ab!=null)r.cN("onSecondaryTapDown",new A.am5(r,s)) +break +case 4:break}}, +Xy(a,b){var s=this,r=b.gcK(b),q=b.gby(b),p=b.gd4(),o=new A.op(q,p,r) +switch(a.gdR(a)){case 1:if(s.I!=null)s.cN("onTapUp",new A.am7(s,o)) +r=s.X +if(r!=null)s.cN("onTap",r) +break +case 2:if(s.au!=null)s.cN("onSecondaryTapUp",new A.am8(s,o)) +if(s.a9!=null)s.cN("onSecondaryTap",new A.am9(s)) +break +case 4:break}}, +Xx(a){var s,r=this +if(r.a2!=null&&a.gdR(a)===1){s=a.gby(a) +a.gd4() +r.e.h(0,a.gbt()).toString +a.goA() +r.cN("onTapMove",new A.am6(r,new A.Ef(s)))}}, +B7(a,b,c){var s,r=this,q=c===""?c:c+" " +switch(b.gdR(b)){case 1:s=r.S +if(s!=null)r.cN(q+"onTapCancel",s) +break +case 2:s=r.aX +if(s!=null)r.cN(q+"onSecondaryTapCancel",s) +break +case 4:break}}} +A.am4.prototype={ +$0(){return this.a.n.$1(this.b)}, +$S:0} +A.am5.prototype={ +$0(){return this.a.ab.$1(this.b)}, +$S:0} +A.am7.prototype={ +$0(){return this.a.I.$1(this.b)}, +$S:0} +A.am8.prototype={ +$0(){return this.a.au.$1(this.b)}, +$S:0} +A.am9.prototype={ +$0(){return this.a.a9.$0()}, +$S:0} +A.am6.prototype={ +$0(){return this.a.a2.$1(this.b)}, +$S:0} +A.a_8.prototype={} +A.a_e.prototype={} +A.FV.prototype={ +K(){return"_DragState."+this.b}} +A.Ea.prototype={} +A.Ed.prototype={} +A.Ec.prototype={} +A.Ee.prototype={} +A.Eb.prototype={} +A.Ix.prototype={ +is(a){var s,r,q=this +if(t.n2.b(a)){s=A.pf(a.gcK(a),q.b) +r=q.AK$ +if(a.gby(a).a0(0,r.b).gcj()>s){q.xR() +q.vw$=q.vv$=null}}else if(t.oN.b(a)){q.r9$=a +if(q.lB$!=null){q.xR() +if(q.oR$==null)q.oR$=A.co(B.cG,q.ga83())}}else if(t.Ko.b(a))q.z9()}, +fA(a){this.z9()}, +aee(a){var s=this.vv$ +s.toString +if(a===s)return!0 +else return!1}, +aeK(a){var s=this.vw$ +if(s==null)return!1 +return a.a0(0,s).gcj()<=100}, +xR(){var s=this.oR$ +if(s!=null){s.aR(0) +this.oR$=null}}, +a84(){}, +z9(){var s,r=this +r.xR() +r.vw$=r.AK$=r.vv$=null +r.kB$=0 +r.r9$=r.lB$=null +s=r.AM$ +if(s!=null)s.$0()}} +A.yI.prototype={ +abz(){var s=this +if(s.db!=null)s.cN("onDragUpdate",new A.a3e(s)) +s.p3=s.p4=null}, +hT(a){var s=this +if(s.go==null)switch(a.gdR(a)){case 1:if(s.CW==null&&s.cy==null&&s.db==null&&s.dx==null&&s.cx==null&&s.dy==null)return!1 +break +default:return!1}else if(a.gbt()!==s.go)return!1 +return s.pN(a)}, +ii(a){var s,r=this +if(r.k2===B.fP){r.a3T(a) +r.go=a.gbt() +r.p2=r.p1=0 +r.k2=B.mA +s=a.gby(a) +r.ok=r.k4=new A.ex(a.gd4(),s) +r.id=A.co(B.bd,new A.a3f(r,a))}}, +rg(a){if(a.gdR(a)!==1)if(!this.fy)this.MF(a)}, +hI(a){var s,r=this +if(a!==r.go)return +r.z6() +r.R8.E(0,a) +s=r.lB$ +if(s!=null)r.NW(s) +r.fy=!0 +s=r.k3 +if(s!=null&&r.ch)r.xE(s) +s=r.k3 +if(s!=null&&!r.ch){r.k2=B.ew +r.xE(s)}s=r.r9$ +if(s!=null)r.NX(s)}, +vg(a){var s,r=this +switch(r.k2.a){case 0:r.Tg() +r.Y(B.aw) +break +case 1:if(r.fr)if(r.fy){if(r.lB$!=null){if(!r.R8.F(0,a))r.Ci(a,B.aw) +r.k2=B.ew +s=r.lB$ +s.toString +r.xE(s) +r.NR()}}else{r.Tg() +r.Y(B.aw)}else{s=r.r9$ +if(s!=null)r.NX(s)}break +case 2:r.NR() +break}r.z6() +r.k3=null +r.k2=B.fP +r.fr=!1}, +is(a){var s,r,q,p,o,n,m=this +if(a.gbt()!==m.go)return +m.a4P(a) +if(t.n2.b(a)){s=A.pf(a.gcK(a),m.b) +if(!m.fr){r=m.k4 +r===$&&A.a() +r=a.gby(a).a0(0,r.b).gcj()>s}else r=!0 +m.fr=r +r=m.k2 +if(r===B.ew){m.ok=new A.ex(a.gd4(),a.gby(a)) +m.a7q(a)}else if(r===B.mA){if(m.k3==null){if(a.gc2(a)==null)q=null +else{r=a.gc2(a) +r.toString +q=A.qR(r)}p=m.Th(a.gp9()) +r=m.p1 +r===$&&A.a() +o=A.vr(q,null,p,a.gd4()).gcj() +n=m.Ti(p) +m.p1=r+o*J.e7(n==null?1:n) +r=m.p2 +r===$&&A.a() +m.p2=r+A.vr(q,null,a.gp9(),a.gd4()).gcj()*B.f.gDg(1) +if(!m.Qw(a.gcK(a)))r=m.fy&&Math.abs(m.p2)>A.aFa(a.gcK(a),m.b) +else r=!0 +if(r){m.k3=a +if(m.ch){m.k2=B.ew +if(!m.fy)m.Y(B.bX)}}}r=m.k3 +if(r!=null&&m.fy){m.k2=B.ew +m.xE(r)}}}else if(t.oN.b(a)){r=m.k2 +if(r===B.mA)m.Dn(a) +else if(r===B.ew)m.Gp(a.gbt())}else if(t.Ko.b(a)){m.k2=B.fP +m.Gp(a.gbt())}}, +fA(a){var s=this +if(a!==s.go)return +s.a4Q(a) +s.z6() +s.Gp(a) +s.yR() +s.yQ()}, +l(){this.z6() +this.yQ() +this.a3U()}, +xE(a){var s,r,q,p,o,n,m=this +if(!m.fy)return +if(m.at===B.a9){s=m.k4 +s===$&&A.a() +r=a.goA() +m.ok=m.k4=s.V(0,new A.ex(a.gp9(),r))}m.a7p(a) +q=a.gp9() +if(!q.j(0,B.i)){m.ok=new A.ex(a.gd4(),a.gby(a)) +s=m.k4 +s===$&&A.a() +p=s.a.V(0,q) +if(a.gc2(a)==null)o=null +else{s=a.gc2(a) +s.toString +o=A.qR(s)}n=A.vr(o,null,q,p) +m.NT(a,m.k4.V(0,new A.ex(q,n)))}}, +NW(a){var s,r,q,p,o=this +if(o.fx)return +s=a.gby(a) +r=a.gd4() +q=o.e.h(0,a.gbt()) +q.toString +p=o.kB$ +if(o.CW!=null)o.cN("onTapDown",new A.a3c(o,new A.Ea(s,r,q,p))) +o.fx=!0}, +NX(a){var s,r,q,p,o=this +if(!o.fy)return +s=a.gcK(a) +r=a.gby(a) +q=a.gd4() +p=o.kB$ +if(o.cx!=null)o.cN("onTapUp",new A.a3d(o,new A.Ed(r,q,s,p))) +o.yR() +if(!o.R8.F(0,a.gbt()))o.Ci(a.gbt(),B.aw)}, +a7p(a){var s,r,q,p=this +if(p.cy!=null){s=a.gk7(a) +r=p.k4 +r===$&&A.a() +q=p.e.h(0,a.gbt()) +q.toString +p.cN("onDragStart",new A.a3a(p,new A.Ec(r.b,r.a,s,q,p.kB$)))}p.k3=null}, +NT(a,b){var s,r,q,p,o,n,m=this,l=b==null,k=l?null:b.b +if(k==null)k=a.gby(a) +s=l?null:b.a +if(s==null)s=a.gd4() +l=a.gk7(a) +r=a.gp9() +q=m.e.h(0,a.gbt()) +q.toString +p=m.k4 +p===$&&A.a() +o=k.a0(0,p.b) +p=s.a0(0,p.a) +n=m.kB$ +if(m.db!=null)m.cN("onDragUpdate",new A.a3b(m,new A.Ee(k,s,l,r,q,o,p,n)))}, +a7q(a){return this.NT(a,null)}, +NR(){var s,r=this,q=r.ok +q===$&&A.a() +s=r.p4 +if(s!=null){s.aR(0) +r.abz()}s=r.kB$ +if(r.dx!=null)r.cN("onDragEnd",new A.a39(r,new A.Eb(q.b,q.a,0,s))) +r.yR() +r.yQ()}, +Tg(){var s,r=this +if(!r.fx)return +s=r.dy +if(s!=null)r.cN("onCancel",s) +r.yQ() +r.yR()}, +Gp(a){this.jt(a) +if(!this.R8.F(0,a))this.Ci(a,B.aw)}, +yR(){this.fy=this.fx=!1 +this.go=null}, +yQ(){return}, +z6(){var s=this.id +if(s!=null){s.aR(0) +this.id=null}}} +A.a3e.prototype={ +$0(){var s=this.a,r=s.db +r.toString +s=s.p3 +s.toString +return r.$1(s)}, +$S:0} +A.a3f.prototype={ +$0(){var s=this.a,r=s.lB$ +if(r!=null){s.NW(r) +if(s.kB$>1)s.Y(B.bX)}return null}, +$S:0} +A.a3c.prototype={ +$0(){return this.a.CW.$1(this.b)}, +$S:0} +A.a3d.prototype={ +$0(){return this.a.cx.$1(this.b)}, +$S:0} +A.a3a.prototype={ +$0(){return this.a.cy.$1(this.b)}, +$S:0} +A.a3b.prototype={ +$0(){return this.a.db.$1(this.b)}, +$S:0} +A.a39.prototype={ +$0(){return this.a.dx.$1(this.b)}, +$S:0} +A.kK.prototype={ +Qw(a){var s=this.p1 +s===$&&A.a() +return Math.abs(s)>A.pf(a,this.b)}, +Th(a){return new A.j(a.a,0)}, +Ti(a){return a.a}} +A.kL.prototype={ +Qw(a){var s=this.p1 +s===$&&A.a() +return Math.abs(s)>A.aFa(a,this.b)}, +Th(a){return a}, +Ti(a){return null}} +A.Fa.prototype={ +ii(a){var s,r=this +r.xv(a) +s=r.oR$ +if(s!=null&&s.b==null)r.z9() +r.r9$=null +if(r.lB$!=null)s=!(r.oR$!=null&&r.aeK(a.gby(a))&&r.aee(a.gdR(a))) +else s=!1 +if(s)r.kB$=1 +else ++r.kB$ +r.xR() +r.lB$=a +r.vv$=a.gdR(a) +r.vw$=a.gby(a) +r.AK$=new A.ex(a.gd4(),a.gby(a)) +s=r.AL$ +if(s!=null)s.$0()}, +l(){this.z9() +this.m9()}} +A.a_9.prototype={} +A.a_a.prototype={} +A.a_b.prototype={} +A.a_c.prototype={} +A.a_d.prototype={} +A.aql.prototype={ +Y(a){this.a.ak1(this.b,a)}, +$iuG:1} +A.wI.prototype={ +hI(a){var s,r,q,p,o=this +o.Tl() +if(o.e==null){s=o.a.b +o.e=s==null?o.b[0]:s}for(s=o.b,r=s.length,q=0;qb*b)return new A.i6(s.dE(0,s.gcj()).a6(0,b)) +if(r40)return B.mr +s=t.n +r=A.b([],s) +q=A.b([],s) +p=A.b([],s) +o=A.b([],s) +n=this.d +s=this.c +m=s[n] +if(m==null)return null +l=m.a.a +k=m +j=k +i=0 +do{h=s[n] +if(h==null)break +g=h.a.a +f=(l-g)/1000 +if(f>100||Math.abs(g-j.a.a)/1000>40)break +e=h.b +r.push(e.a) +q.push(e.b) +p.push(1) +o.push(-f) +n=(n===0?20:n)-1;++i +if(i<20){k=h +j=k +continue}else{k=h +break}}while(!0) +if(i>=3){d=A.td(new A.anr(o,r,p)) +c=A.td(new A.ans(o,q,p)) +if(d.cD()!=null&&c.cD()!=null){s=d.cD().a[1] +g=c.cD().a[1] +b=d.cD().b +b===$&&A.a() +a=c.cD().b +a===$&&A.a() +return new A.oA(new A.j(s*1000,g*1000),b*a,new A.aZ(l-k.a.a),m.b.a0(0,k.b))}}return new A.oA(B.i,1,new A.aZ(l-k.a.a),m.b.a0(0,k.b))}} +A.anr.prototype={ +$0(){return new A.O4(this.a,this.b,this.c).Mc(2)}, +$S:141} +A.ans.prototype={ +$0(){return new A.O4(this.a,this.b,this.c).Mc(2)}, +$S:141} +A.qo.prototype={ +zA(a,b){var s,r=this +r.gof().pI(0) +r.gof().k5(0) +s=(r.d+1)%20 +r.d=s +r.e[s]=new A.H8(a,b)}, +qb(a){var s,r,q,p=this.d+a,o=B.f.bh(p,20),n=B.f.bh(p-1,20) +p=this.e +s=p[o] +r=p[n] +if(s==null||r==null)return B.i +q=s.a.a-r.a.a +return q>0?s.b.a0(0,r.b).a6(0,1000).dE(0,q/1000):B.i}, +x3(){var s,r,q,p,o,n,m=this +if(m.gof().gIy()>40)return B.mr +s=m.qb(-2).a6(0,0.6).V(0,m.qb(-1).a6(0,0.35)).V(0,m.qb(0).a6(0,0.05)) +r=m.e +q=m.d +p=r[q] +for(o=null,n=1;n<=20;++n){o=r[B.f.bh(q+n,20)] +if(o!=null)break}if(o==null||p==null)return B.Bc +else return new A.oA(s,1,new A.aZ(p.a.a-o.a.a),p.b.a0(0,o.b))}} +A.v3.prototype={ +x3(){var s,r,q,p,o,n,m=this +if(m.gof().gIy()>40)return B.mr +s=m.qb(-2).a6(0,0.15).V(0,m.qb(-1).a6(0,0.65)).V(0,m.qb(0).a6(0,0.2)) +r=m.e +q=m.d +p=r[q] +for(o=null,n=1;n<=20;++n){o=r[B.f.bh(q+n,20)] +if(o!=null)break}if(o==null||p==null)return B.Bc +else return new A.oA(s,1,new A.aZ(p.a.a-o.a.a),p.b.a0(0,o.b))}} +A.SP.prototype={ +H(a){var s=this,r=null,q=s.k2 +q=q==null?r:new A.e3(q,t.A9) +return A.eJ(s.z,r,s.w,r,q,new A.ao_(s,a),r,s.fr,s.y9(a))}} +A.ao_.prototype={ +$0(){var s=this.a,r=s.ax +if(r!=null)r.$0() +else s.yF(this.b)}, +$S:0} +A.t4.prototype={ +H(a){var s,r,q,p +a.ad(t.vH) +s=A.J(a) +r=this.c.$1(s.p2) +if(r!=null)return r.$1(a) +q=this.d.$1(a) +p=null +switch(A.aM().a){case 0:s=A.f3(a,B.b6,t.C) +s.toString +p=this.e.$1(s) +break +case 1:case 3:case 5:case 2:case 4:break}return A.dX(q,null,p,null)}} +A.KQ.prototype={ +H(a){return new A.t4(new A.a32(),new A.a33(),new A.a34(),null)}} +A.a32.prototype={ +$1(a){return a==null?null:a.a}, +$S:82} +A.a33.prototype={ +$1(a){return B.oP}, +$S:81} +A.a34.prototype={ +$1(a){return"Back"}, +$S:78} +A.KP.prototype={ +yF(a){return A.aDF(a)}, +y9(a){A.f3(a,B.b6,t.C).toString +return"Back"}} +A.LF.prototype={ +H(a){return new A.t4(new A.a4F(),new A.a4G(),new A.a4H(),null)}} +A.a4F.prototype={ +$1(a){return a==null?null:a.b}, +$S:82} +A.a4G.prototype={ +$1(a){return B.oQ}, +$S:81} +A.a4H.prototype={ +$1(a){return"Close"}, +$S:78} +A.LE.prototype={ +yF(a){return A.aDF(a)}, +y9(a){A.f3(a,B.b6,t.C).toString +return"Close"}} +A.Mx.prototype={ +H(a){return new A.t4(new A.a6c(),new A.a6d(),new A.a6e(),null)}} +A.a6c.prototype={ +$1(a){return a==null?null:a.c}, +$S:82} +A.a6d.prototype={ +$1(a){return B.oS}, +$S:81} +A.a6e.prototype={ +$1(a){return"Open navigation menu"}, +$S:78} +A.Mw.prototype={ +yF(a){var s,r,q=A.aj6(a),p=q.e +if(p.gL()!=null){s=q.x +r=s.y +s=r==null?A.n(s).i("bJ.T").a(r):r}else s=!1 +if(s)p.gL().aO(0) +q=q.d.gL() +if(q!=null)q.wi(0) +return null}, +y9(a){A.f3(a,B.b6,t.C).toString +return"Open navigation menu"}} +A.MB.prototype={ +H(a){return new A.t4(new A.a7d(),new A.a7e(),new A.a7f(),null)}} +A.a7d.prototype={ +$1(a){return a==null?null:a.d}, +$S:82} +A.a7e.prototype={ +$1(a){return B.oS}, +$S:81} +A.a7f.prototype={ +$1(a){return"Open navigation menu"}, +$S:78} +A.MA.prototype={ +yF(a){var s,r,q=A.aj6(a),p=q.d +if(p.gL()!=null){s=q.w +r=s.y +s=r==null?A.n(s).i("bJ.T").a(r):r}else s=!1 +if(s)p.gL().aO(0) +q=q.e.gL() +if(q!=null)q.wi(0) +return null}, +y9(a){A.f3(a,B.b6,t.C).toString +return"Open navigation menu"}} +A.tG.prototype={ +gB(a){var s=this +return A.bI([s.a,s.b,s.c,s.d])}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.tG}} +A.SR.prototype={} +A.Kq.prototype={ +H(a){var s,r=this,q=r.c,p=q.length===0 +if(p!==!1)return B.ay +s=J.a2p(A.aRr(a,q)) +switch(A.J(a).w.a){case 2:q=r.e +p=q.a +q=q.b +return A.aSn(p,q==null?p:q,s) +case 0:q=r.e +p=q.a +q=q.b +return A.aXE(p,q==null?p:q,s) +case 1:case 3:case 5:return new A.Mf(r.e.a,s,null) +case 4:return new A.LU(r.e.a,s,null)}}} +A.a2D.prototype={ +$1(a){return A.aSo(a)}, +$S:404} +A.a2E.prototype={ +$1(a){var s=this.a +return A.aSJ(s,a.a,A.aCu(s,a))}, +$S:405} +A.a2F.prototype={ +$1(a){return A.aSi(a.a,A.aCu(this.a,a))}, +$S:415} +A.amY.prototype={ +K(){return"ThemeMode."+this.b}} +A.By.prototype={ +ac(){return new A.GF()}} +A.abK.prototype={ +$2(a,b){return new A.v6(a,b)}, +$S:431} +A.aeb.prototype={ +ka(a){return A.J(a).w}, +zQ(a,b,c){switch(A.b8(c.a).a){case 0:return b +case 1:switch(A.J(a).w.a){case 3:case 4:case 5:return new A.QG(b,c.b,null) +case 0:case 1:case 2:return b}break}}, +zO(a,b,c){A.J(a) +switch(A.J(a).w.a){case 2:case 3:case 4:case 5:return b +case 0:switch(0){case 0:return new A.DZ(c.a,c.d,b,null)}case 1:break}return A.aI6(c.a,b,A.J(a).ax.y)}} +A.GF.prototype={ +aw(){this.aK() +this.d=A.aUS()}, +l(){var s=this.d +s===$&&A.a() +s.l() +this.aD()}, +gaf3(){var s=A.b([],t.a9) +this.a.toString +s.push(B.Du) +s.push(B.Do) +return s}, +afe(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=null +j.a.toString +s=A.bW(a,B.j7) +r=s==null?i:s.e +if(r==null)r=B.ag +q=r===B.am +s=A.bW(a,B.Bo) +s=s==null?i:s.as +p=s===!0 +if(q)if(p)j.a.toString +if(q)j.a.toString +if(p)j.a.toString +o=j.a.db +s=o.ax +A.aE4(s.a===B.am?B.AH:B.AG) +n=o.c1 +m=n.b +if(m==null)m=s.b.b_(0.4) +l=n.a +if(l==null)l=s.b +k=b==null?B.ay:b +j.a.toString +s=A.a5t(k,l,i,i,m) +k=A.aGz(new A.Da(s,i),B.U,o,B.N) +return k}, +a7d(a){var s,r,q=this,p=null,o=q.a,n=o.db +n=n.dx +s=n +if(s==null)s=B.fm +n=o.e +o=o.cx +r=q.gaf3() +q.a.toString +return new A.EZ(p,p,p,new A.aum(),p,p,p,p,p,n,B.ML,p,p,p,B.Kx,q.gafd(),o,p,B.Ul,s,p,r,p,p,B.pt,!1,!1,p,p,p,new A.qi(q,t.bT))}, +H(a){var s,r=null,q=A.nl(!1,!1,this.a7d(a),r,r,r,r,!0,r,r,r,new A.aun(),r,r) +this.a.toString +s=this.d +s===$&&A.a() +return new A.Df(B.CW,new A.qm(s,q,r),r)}} +A.aum.prototype={ +$1$2(a,b,c){return A.dY(b,a,c)}, +$2(a,b){return this.$1$2(a,b,t.z)}, +$S:444} +A.aun.prototype={ +$2(a,b){if(!(b instanceof A.lG)&&!(b instanceof A.uV)||!b.b.j(0,B.fb))return B.f7 +return A.aXY()?B.f6:B.f7}, +$S:143} +A.azx.prototype={ +pu(a){return a.a_6(this.b)}, +m2(a){return new A.I(a.b,this.b)}, +px(a,b){return new A.j(0,a.b-b.b)}, +m6(a){return this.b!==a.b}} +A.XX.prototype={} +A.yB.prototype={ +aal(a,b){var s=new A.a2M(this,a).$0() +return s}, +ac(){return new A.F7()}, +kN(a){return A.ya().$1(a)}} +A.a2M.prototype={ +$0(){switch(this.b.w.a){case 0:case 1:case 3:case 5:return!1 +case 2:case 4:var s=this.a.f +return s==null||s.length<2}}, +$S:62} +A.F7.prototype={ +be(){var s,r,q,p,o=this +o.dc() +s=o.d +if(s!=null)s.J(0,o.gFd()) +s=o.c +r=s.kD(t.Np) +if(r!=null){q=r.w +p=q.y +if(!(p==null?A.n(q).i("bJ.T").a(p):p)){q=r.x +p=q.y +q=p==null?A.n(q).i("bJ.T").a(p):p}else q=!0}else q=!1 +if(q)return +s=o.d=A.aJW(s) +if(s!=null){s=s.d +s.ym(s.c,new A.mx(o.gFd()),!1)}}, +l(){var s=this,r=s.d +if(r!=null){r.J(0,s.gFd()) +s.d=null}s.aD()}, +ad4(a){var s,r,q,p=this +if(a instanceof A.kF&&p.a.kN(a)){s=p.e +r=a.a +switch(r.e.a){case 0:q=p.e=Math.max(r.giy()-r.gdN(),0)>0 +break +case 2:q=p.e=Math.max(r.gdN()-r.giz(),0)>0 +break +case 1:case 3:q=s +break +default:q=s}if(q!==s)p.T(new A.aos())}}, +S8(a,b,c,d){var s=t._,r=A.cu(b,a,s) +s=r==null?A.cu(c,a,s):r +return s==null?A.cu(d,a,t.G):s}, +H(c2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4=this,b5=null,b6=A.J(c2),b7=A.NC(c2),b8=A.aGD(c2),b9=new A.Ta(c2,b5,b5,0,3,b5,b5,b5,b5,b5,b5,16,b5,64,b5,b5,b5,b5),c0=c2.kD(t.Np),c1=A.vb(c2,b5,t.X) +c2.ad(t.N8) +s=A.aP(t.l) +r=b4.e +if(r)s.E(0,B.mv) +r=c0==null +if(r)q=b5 +else{c0.a.toString +q=!1}if(r)r=b5 +else{c0.a.toString +r=!1}p=c1==null +if(p)o=b5 +else{c1.gJ1() +o=!1}b4.a.toString +n=b8.as +if(n==null)n=56 +m=b4.S8(s,b5,b8.gb8(b8),b9.gb8(0)) +b4.a.toString +l=b8.gb8(b8) +k=A.J(c2).ax +j=k.p4 +i=b4.S8(s,b5,l,j==null?k.k2:j) +h=s.p(0,B.mv)?i:m +b4.a.toString +g=b8.gcw() +if(g==null)g=b9.gcw() +b4.a.toString +f=b8.c +if(f==null)f=0 +if(s.p(0,B.mv)){b4.a.toString +s=b8.d +if(s==null)s=3 +e=s==null?f:s}else e=f +b4.a.toString +d=b8.gf4() +if(d==null)d=b9.gf4().b1(g) +b4.a.toString +c=b8.gcw() +b4.a.toString +s=b8.gln() +if(s==null){b4.a.toString +s=b5}if(s==null)s=b8.gf4() +if(s==null){s=b9.gln().b1(c) +b=s}else b=s +if(b==null)b=d +b4.a.toString +a=b8.ghJ() +if(a==null)a=b9.ghJ() +b4.a.toString +a0=b8.gnl() +if(a0==null){s=b9.gnl() +a0=s==null?b5:s.b1(g)}b4.a.toString +a1=b8.ges() +if(a1==null){s=b9.ges() +a1=s==null?b5:s.b1(g)}s=b4.a +a2=s.c +if(a2==null)if(q===!0){s=d.a +a2=new A.Mw(B.Se,b5,b5,B.Ge,b5,b5,b5,b5,A.uI(b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,s==null?24:s,b5,b5,b5,b5,b5,b5),b5)}else{if(p)s=b5 +else s=c1.gJj()||c1.vu$>0 +if(s===!0)a2=o===!0?B.DQ:B.BR}if(a2!=null){if(d.j(0,b9.gf4()))a3=b7 +else{a4=A.uI(b5,b5,b5,b5,b5,b5,b5,d.f,b5,b5,d.a,b5,b5,b5,b5,b5,b5) +s=b7.a +a3=new A.km(s==null?b5:s.W4(a4.c,a4.as,a4.d))}s=A.dG(a2,b5,b5) +a2=A.AQ(s,a3) +b4.a.toString +s=b8.Q +a2=new A.eZ(A.le(b5,s==null?56:s),a2,b5)}s=b4.a +a5=s.e +a6=new A.Td(a5,b5) +a7=b6.w +$label0$0:{q=b5 +if(B.ad===a7||B.bw===a7||B.bx===a7||B.by===a7){q=!0 +break $label0$0}if(B.L===a7||B.aY===a7)break $label0$0}a5=A.bG(b5,b5,a6,!1,b5,b5,!1,b5,b5,!0,b5,b5,b5,b5,b5,b5,b5,b5,q,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,B.z,b5) +a1.toString +a5=A.aIY(A.kd(a5,b5,b5,B.aA,!1,a1,b5,b5,B.aP),1.34) +s=s.f +if(s!=null&&s.length!==0)a8=new A.bo(a,A.cR(s,B.w,B.x,B.c1,0),b5) +else if(r===!0){s=d.a +a8=new A.MA(b5,b5,b5,B.H2,b5,b5,b5,b5,A.uI(b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,s==null?24:s,b5,b5,b5,b5,b5,b5),b5)}else a8=b5 +if(a8!=null){if(b.j(0,b9.gln()))a9=b7 +else{b0=A.uI(b5,b5,b5,b5,b5,b5,b5,b.f,b5,b5,b.a,b5,b5,b5,b5,b5,b5) +s=b7.a +a9=new A.km(s==null?b5:s.W4(b0.c,b0.as,b0.d))}a8=A.AQ(A.uJ(a8,b),a9)}s=b4.a.aal(b6,b8) +b4.a.toString +r=b8.z +if(r==null)r=16 +a0.toString +b1=A.LB(new A.lj(new A.azx(n),A.uJ(A.kd(new A.OE(a2,a5,a8,s,r,b5),b5,b5,B.c6,!0,a0,b5,b5,B.aP),d),b5),B.B,b5) +b1=A.oc(!1,b1,!1,B.as,!0) +s=A.S7(h) +b2=s===B.am?B.AH:B.AG +b3=new A.kJ(b5,b5,b5,b5,B.y,b2.f,b2.r,b2.w) +b4.a.toString +s=b8.gbc(b8) +if(s==null)s=b9.gbc(0) +b4.a.toString +r=b8.gbu() +if(r==null){r=b6.ax +q=r.M +r=q==null?r.b:q}b4.a.toString +q=b8.r +if(q==null)q=b5 +return A.bG(b5,b5,new A.yy(b3,A.jp(!1,B.N,!0,b5,A.bG(b5,b5,new A.eH(B.jp,b5,b5,b1,b5),!1,b5,b5,!0,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,B.z,b5),B.n,h,e,b5,s,q,r,b5,B.cK),b5,t.ph),!0,b5,b5,!1,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,B.z,b5)}} +A.aos.prototype={ +$0(){}, +$S:0} +A.Td.prototype={ +aG(a){var s=new A.Yr(B.a_,a.ad(t.I).w,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sbC(a.ad(t.I).w)}} +A.Yr.prototype={ +cE(a){var s=a.HY(1/0),r=this.D$ +return a.b3(r.ap(B.R,s,r.gc8()))}, +ds(a,b){var s,r,q=this,p=a.HY(1/0),o=q.D$ +if(o==null)return null +s=o.eU(p,b) +if(s==null)return null +r=o.ap(B.R,p,o.gc8()) +return s+q.gZW().lo(t.v.a(q.ap(B.R,a,q.gc8()).a0(0,r))).b}, +bx(){var s=this,r=t.k,q=r.a(A.t.prototype.gW.call(s)).HY(1/0) +s.D$.c3(q,!0) +s.fy=r.a(A.t.prototype.gW.call(s)).b3(s.D$.gt(0)) +s.H8()}} +A.Ta.prototype={ +gTt(){var s,r=this,q=r.cx +if(q===$){s=A.J(r.CW) +r.cx!==$&&A.aA() +r.cx=s +q=s}return q}, +gxG(){var s,r=this,q=r.cy +if(q===$){s=r.gTt() +r.cy!==$&&A.aA() +q=r.cy=s.ax}return q}, +gTm(){var s,r=this,q=r.db +if(q===$){s=r.gTt() +r.db!==$&&A.aA() +q=r.db=s.ok}return q}, +gb8(a){return this.gxG().k2}, +gcw(){return this.gxG().k3}, +gbc(a){return B.y}, +gbu(){return B.y}, +gf4(){var s=null +return new A.cP(24,s,s,s,s,this.gxG().k3,s,s,s)}, +gln(){var s=null,r=this.gxG(),q=r.rx +return new A.cP(24,s,s,s,s,q==null?r.k3:q,s,s,s)}, +gnl(){return this.gTm().z}, +ges(){return this.gTm().r}, +ghJ(){return B.as}} +A.tP.prototype={ +gqT(a){var s=this,r=null,q=s.w +return q==null?A.aGC(r,r,s.x,r,s.z,s.y,r,r,r,r,r,r,r,r,r,r,r):q}, +ce(a){return!this.gqT(0).j(0,a.gqT(0))}, +np(a,b,c){var s=null,r=this.gqT(0) +return new A.tP(r,s,s,s,c,s)}} +A.k2.prototype={ +gB(a){var s=this +return A.T(s.gb8(s),s.gcw(),s.c,s.d,s.gbc(s),s.gbu(),s.r,s.gf4(),s.gln(),s.y,s.z,s.Q,s.as,s.gnl(),s.ges(),s.ay,s.ghJ(),B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.k2)if(J.d(b.gb8(b),r.gb8(r)))if(J.d(b.gcw(),r.gcw()))if(b.c==r.c)if(b.d==r.d)if(J.d(b.gbc(b),r.gbc(r)))if(J.d(b.gbu(),r.gbu()))if(J.d(b.r,r.r))if(J.d(b.gf4(),r.gf4()))if(J.d(b.gln(),r.gln()))if(b.z==r.z)if(b.Q==r.Q)if(b.as==r.as)if(J.d(b.gnl(),r.gnl()))if(J.d(b.ges(),r.ges()))s=J.d(b.ghJ(),r.ghJ()) +return s}, +gb8(a){return this.a}, +gcw(){return this.b}, +gbc(a){return this.e}, +gbu(){return this.f}, +gf4(){return this.w}, +gln(){return this.x}, +gnl(){return this.at}, +ges(){return this.ax}, +ghJ(){return this.ch}} +A.Tc.prototype={} +A.Tb.prototype={} +A.BA.prototype={ +lh(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.a +f.toString +s=g.b +r=s.a0(0,f) +q=Math.abs(r.a) +p=Math.abs(r.b) +o=r.gcj() +n=s.a +m=f.b +l=new A.j(n,m) +k=new A.ae9(g,o) +if(q>2&&p>2){j=o*o +i=f.a +h=s.b +if(q700){s=-o/p.gO0() +o=p.a.c +r=o.x +r===$&&A.a() +if(r>0)o.vD(s) +q=s<0}else{o=p.a.c +r=o.x +r===$&&A.a() +q=r<0.5 +if(q){if(r>0)o.vD(-1)}else o.bP(0)}p.a.z.$2$isClosing(a,q) +if(q)p.a.at1()}, +apl(a){a.gdd() +a.gawB() +return!1}, +abw(a){if(a!==this.e.p(0,B.A))this.T(new A.aoW(this,a))}, +H(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=A.J(a).ry +A.J(a) +s=A.aEp(a) +g.a.toString +r=e.as +if(r==null)r=s.gW() +q=g.a.Q +p=q==null?e.a:q +if(p==null)p=s.gb8(0) +o=e.b +if(o==null)o=s.gbu() +g.a.toString +n=e.f +if(n==null)n=s.gbc(0) +q=g.a +m=q.at +if(m==null)m=e.c +l=m==null?s.c:m +if(l==null)l=0 +k=e.w +if(k==null)k=s.w +j=q.r +if(j==null)j=!1 +if(j){i=new A.UU(q.d,g.gabv(),g.e,f,f,f) +if(!q.f)i=new A.Fe(i,g.gNC(),g.gND(),g.gNB(),f)}else i=f +if(!j)q=q.Vr(a) +else{i.toString +q=A.hp(B.jp,A.b([i,new A.bo(B.GJ,q.Vr(a),f)],t.p),B.B,B.bp,f)}h=A.jp(!1,B.N,!0,f,new A.dd(g.gapk(),q,f,t.K3),B.n,p,l,g.d,n,k,o,f,B.cK) +h=new A.eH(B.mV,f,1,new A.eZ(r,h,f),f) +return!g.a.f?h:new A.Fe(h,g.gNC(),g.gND(),g.gNB(),f)}} +A.aoX.prototype={ +$0(){this.a.e.E(0,B.j0)}, +$S:0} +A.aoV.prototype={ +$0(){this.a.e.F(0,B.j0)}, +$S:0} +A.aoW.prototype={ +$0(){var s=this.a.e +if(this.b)s.E(0,B.A) +else s.F(0,B.A)}, +$S:0} +A.UU.prototype={ +H(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=A.J(a).ry,h=A.aEp(a),g=i.z +if(g==null)g=B.Ak +A.f3(a,B.b6,t.C).toString +s=g.a +r=Math.max(s,48) +q=g.b +p=Math.max(q,48) +o=A.ch(q/2) +n=k.e +m=t._ +l=A.cu(k.f,n,m) +n=l==null?A.cu(i.y,n,m):l +if(n==null){n=h.gDX() +m=n.rx +n=m==null?n.k3:m}return A.jt(A.bG(!0,j,A.e1(A.dG(A.c_(j,j,B.n,j,j,new A.cX(n,j,j,o,j,j,B.aq),j,q,j,j,j,j,s),j,j),p,r),!0,j,j,!1,j,j,j,j,j,j,"Dismiss",j,j,j,j,j,j,j,j,j,j,j,j,j,k.c,j,j,j,j,j,j,j,j,B.z,j),B.bV,j,new A.arj(k),new A.ark(k),j)}} +A.arj.prototype={ +$1(a){return this.a.d.$1(!0)}, +$S:58} +A.ark.prototype={ +$1(a){return this.a.d.$1(!1)}, +$S:42} +A.Tv.prototype={ +aG(a){var s=new A.Ho(B.I,this.e,this.f,!1,this.w,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sat_(this.e) +b.sam_(this.f) +b.sas1(!1) +b.sa0v(this.w)}} +A.Ho.prototype={ +sat_(a){if(J.d(this.R,a))return +this.R=a +this.a_()}, +sam_(a){if(this.af===a)return +this.af=a +this.a_()}, +sas1(a){return}, +sa0v(a){if(this.bB===a)return +this.bB=a +this.a_()}, +bb(a){return 0}, +b7(a){return 0}, +ba(a){return 0}, +b6(a){return 0}, +cE(a){return new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d))}, +ds(a,b){var s,r,q,p,o,n=this.D$ +if(n==null)return null +s=this.Pr(a) +r=n.eU(s,b) +if(r==null)return null +q=s.a +p=s.b +o=q>=p&&s.c>=s.d?new A.I(A.A(0,q,p),A.A(0,s.c,s.d)):n.ap(B.R,s,n.gc8()) +return r+this.PH(new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d)),o).b}, +Pr(a){var s=a.b,r=this.bB +return new A.ak(s,s,0,a.d*r)}, +PH(a,b){return new A.j(0,a.b-b.b*this.af)}, +bx(){var s,r,q,p,o,n=this,m=t.k,l=m.a(A.t.prototype.gW.call(n)) +n.fy=new A.I(A.A(1/0,l.a,l.b),A.A(1/0,l.c,l.d)) +s=n.D$ +if(s==null)return +r=n.Pr(m.a(A.t.prototype.gW.call(n))) +m=r.a +l=r.b +q=m>=l +s.c3(r,!(q&&r.c>=r.d)) +p=s.b +p.toString +t.q.a(p) +o=q&&r.c>=r.d?new A.I(A.A(0,m,l),A.A(0,r.c,r.d)):s.gt(0) +p.a=n.PH(n.gt(0),o) +if(!n.A.j(0,o)){n.A=o +n.R.$1(o)}}} +A.th.prototype={ +ac(){return new A.xf(B.o_,this.$ti.i("xf<1>"))}} +A.xf.prototype={ +aaG(a){var s=this.c +s.toString +switch(A.J(s).w.a){case 2:case 4:return"" +case 0:case 1:case 3:case 5:return"Dialog"}}, +aq4(a){this.d=B.U}, +Xl(a,b){this.d=new A.Ry(this.a.c.p3.gq(0),B.o_)}, +aq2(a){return this.Xl(a,null)}, +H(a){var s,r,q,p,o,n,m,l=this,k=A.f3(a,B.b6,t.C) +k.toString +s=l.aaG(k) +k=l.a +r=k.c +q=r.p3 +q.toString +p=r.vr +o=k.f +n=k.r +m=k.w +return A.hC(q,new A.auJ(l,s),A.aRD(p,o,r.jM,k.x,k.y,n,!0,new A.auK(l,a),l.gaq1(),l.gaq3(),m,k.Q))}} +A.auK.prototype={ +$0(){if(this.a.a.c.giw())A.c3(this.b,!1).nd(null)}, +$S:0} +A.auJ.prototype={ +$2(a,b){var s=null,r=this.a +return A.bG(s,s,A.LB(new A.Tv(new A.auI(r),r.d.a8(0,r.a.c.p3.gq(0)),!1,r.a.e,b,s),B.B,s),!1,s,s,!0,s,s,s,s,s,s,this.b,s,s,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,B.z,s)}, +$S:115} +A.auI.prototype={ +$1(a){this.a.a.c.a8E(new A.az(0,0,0,a.b))}, +$S:463} +A.BK.prototype={ +l(){var s=this.r3 +s.P$=$.aw() +s.M$=0 +this.MZ()}, +a8E(a){var s=this.r3 +if(J.d(s.a,a))return!1 +s.sq(0,a) +return!0}, +gl_(a){return B.hs}, +gCk(){return B.N}, +gqF(){return!0}, +gqE(){var s=this.dt +return s==null?B.S:s}, +W7(){var s=this.b +s.toString +s=A.aRF(s,this.f2) +this.vr=s +return s}, +Hv(a,b,c){var s=A.aIX(new A.zO(this.eA,new A.e8(new A.aeR(this),null),null),a,!1,!1,!1,!0),r=new A.mo(this.hP.a,s,null) +return r}, +Vn(){var s,r,q=this,p=q.dt,o=p==null +if((o?B.S:p).a!==0&&!q.p2){s=q.p3 +s.toString +r=(o?B.S:p).Ll(0) +if(o)p=B.S +o=t.IC.i("fa") +return A.aGv(!0,q.r3,new A.al(t.o.a(s),new A.fa(new A.fl(B.bc),new A.fj(r,p),o),o.i("al")),!0,q.oO,q.j4)}else return A.aeP(!0,q.r3,null,!0,null,q.oO,q.j4)}, +gzK(){return this.oO}} +A.aeR.prototype={ +$1(a){var s,r,q,p,o=A.J(a).ry +A.J(a) +s=A.aEp(a) +r=this.a +q=o.d +if(q==null)q=o.a +if(q==null)q=s.gb8(0) +p=o.r +if(p==null)p=o.c +if(p==null)p=s.r +return new A.th(r,!1,r.lz,q,p,r.mW,r.mX,r.cv,!0,!1,null,r.$ti.i("th<1>"))}, +$S(){return this.a.$ti.i("th<1>(L)")}} +A.Fe.prototype={ +H(a){return new A.iB(this.c,A.ab([B.iX,new A.cr(new A.aoT(this),new A.aoU(this),t.ok)],t.u,t.xR),null,!0,null)}} +A.aoT.prototype={ +$0(){return A.aEh(this.a,null)}, +$S:114} +A.aoU.prototype={ +$1(a){var s=this.a +a.ch=s.d +a.CW=s.e +a.cx=s.f +a.fr=!0}, +$S:113} +A.aoS.prototype={ +gDX(){var s,r=this,q=r.ax +if(q===$){s=A.J(r.at) +r.ax!==$&&A.aA() +q=r.ax=s.ax}return q}, +gb8(a){var s=this.gDX(),r=s.p3 +return r==null?s.k2:r}, +gbu(){return B.y}, +gbc(a){return B.y}, +gAr(){var s=this.gDX(),r=s.rx +return r==null?s.k3:r}, +gAs(){return B.Ak}, +gW(){return B.n7}} +A.tU.prototype={ +gB(a){var s=this +return A.T(s.gb8(s),s.gbu(),s.c,s.d,s.e,s.gbc(s),s.r,s.w,s.x,s.gAr(),s.gAs(),s.Q,s.gW(),B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.tU)if(J.d(b.gb8(b),r.gb8(r)))if(J.d(b.gbu(),r.gbu()))if(b.c==r.c)if(J.d(b.d,r.d))if(J.d(b.gbc(b),r.gbc(r)))if(J.d(b.e,r.e))if(b.r==r.r)if(J.d(b.w,r.w))if(J.d(b.gAr(),r.gAr()))if(J.d(b.gAs(),r.gAs()))s=J.d(b.gW(),r.gW()) +return s}, +gb8(a){return this.a}, +gbu(){return this.b}, +gbc(a){return this.f}, +gAr(){return this.y}, +gAs(){return this.z}, +gW(){return this.as}} +A.Tw.prototype={} +A.yW.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.yW)if(b.d==r.d)if(b.e==r.e)s=J.d(b.f,r.f) +return s}} +A.Ty.prototype={} +A.bx.prototype={ +qR(a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8){var s=this,r=c7==null?s.ghY():c7,q=a7==null?s.gb8(s):a7,p=b2==null?s.gcw():b2,o=b9==null?s.gdA():b9,n=c1==null?s.gbc(s):c1,m=c5==null?s.gbu():c5,l=a8==null?s.gdl(s):a8,k=c0==null?s.gcl(s):c0,j=b7==null?s.gh3():b7,i=b0==null?s.y:b0,h=b6==null?s.gh2():b6,g=b4==null?s.gcH():b4,f=b5==null?s.gh1():b5,e=c3==null?s.geh():c3,d=c2==null?s.gbH(s):c2,c=b8==null?s.gh4():b8,b=c8==null?s.gdP():c8,a=c6==null?s.gh5():c6,a0=a5==null?s.cy:a5,a1=a9==null?s.db:a9,a2=a4==null?s.dx:a4,a3=c4==null?s.gfI():c4 +return A.px(a2,a0,s.fr,q,l,a1,i,s.fx,p,s.at,g,f,h,j,c,o,k,n,d,e,a3,m,a,r,b)}, +ann(a){var s=null +return this.qR(s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +W4(a,b,c){var s=null +return this.qR(s,s,s,s,s,s,s,s,a,s,s,b,s,s,s,c,s,s,s,s,s,s,s,s,s)}, +qP(a){var s=null +return this.qR(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s)}, +anR(a,b){var s=null +return this.qR(s,s,s,a,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +ank(a){var s=null +return this.qR(s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +aZ(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6=this +if(a7==null)return a6 +s=a6.ghY() +if(s==null)s=a7.ghY() +r=a6.gb8(a6) +if(r==null)r=a7.gb8(a7) +q=a6.gcw() +if(q==null)q=a7.gcw() +p=a6.gdA() +if(p==null)p=a7.gdA() +o=a6.gbc(a6) +if(o==null)o=a7.gbc(a7) +n=a6.gbu() +if(n==null)n=a7.gbu() +m=a6.gdl(a6) +if(m==null)m=a7.gdl(a7) +l=a6.gcl(a6) +if(l==null)l=a7.gcl(a7) +k=a6.gh3() +if(k==null)k=a7.gh3() +j=a6.y +if(j==null)j=a7.y +i=a6.gh2() +if(i==null)i=a7.gh2() +h=a6.gcH() +if(h==null)h=a7.gcH() +g=a6.gh1() +if(g==null)g=a7.gh1() +f=a7.at +e=a6.geh() +if(e==null)e=a7.geh() +d=a6.gbH(a6) +if(d==null)d=a7.gbH(a7) +c=a6.gh4() +if(c==null)c=a7.gh4() +b=a6.gdP() +if(b==null)b=a7.gdP() +a=a6.gh5() +if(a==null)a=a7.gh5() +a0=a6.cy +if(a0==null)a0=a7.cy +a1=a6.db +if(a1==null)a1=a7.db +a2=a6.dx +if(a2==null)a2=a7.dx +a3=a6.gfI() +if(a3==null)a3=a7.gfI() +a4=a7.fr +a5=a7.fx +return a6.qR(a2,a0,a4,r,m,a1,j,a5,q,f,h,g,i,k,c,p,l,o,d,e,a3,n,a,s,b)}, +gB(a){var s=this +return A.bI([s.ghY(),s.gb8(s),s.gcw(),s.gdA(),s.gbc(s),s.gbu(),s.gdl(s),s.gcl(s),s.gh3(),s.y,s.gh2(),s.gcH(),s.gh1(),s.at,s.geh(),s.gbH(s),s.gh4(),s.gdP(),s.gh5(),s.cy,s.db,s.dx,s.gfI(),s.fr,s.fx])}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.bx)if(J.d(b.ghY(),r.ghY()))if(J.d(b.gb8(b),r.gb8(r)))if(J.d(b.gcw(),r.gcw()))if(J.d(b.gdA(),r.gdA()))if(J.d(b.gbc(b),r.gbc(r)))if(J.d(b.gbu(),r.gbu()))if(J.d(b.gdl(b),r.gdl(r)))if(J.d(b.gcl(b),r.gcl(r)))if(J.d(b.gh3(),r.gh3()))if(J.d(b.y,r.y))if(J.d(b.gh2(),r.gh2()))if(J.d(b.gcH(),r.gcH()))if(J.d(b.gh1(),r.gh1()))if(J.d(b.geh(),r.geh()))if(J.d(b.gbH(b),r.gbH(r)))if(J.d(b.gh4(),r.gh4()))if(J.d(b.gdP(),r.gdP()))if(b.gh5()==r.gh5())if(J.d(b.cy,r.cy))if(b.db==r.db)if(J.d(b.dx,r.dx))s=b.gfI()==r.gfI() +return s}, +ghY(){return this.a}, +gb8(a){return this.b}, +gcw(){return this.c}, +gdA(){return this.d}, +gbc(a){return this.e}, +gbu(){return this.f}, +gdl(a){return this.r}, +gcl(a){return this.w}, +gh3(){return this.x}, +gh2(){return this.z}, +gcH(){return this.Q}, +gh1(){return this.as}, +geh(){return this.ax}, +gbH(a){return this.ay}, +gh4(){return this.ch}, +gdP(){return this.CW}, +gh5(){return this.cx}, +gfI(){return this.dy}} +A.Tz.prototype={} +A.yX.prototype={ +ac(){return new A.Fg(null,null)}} +A.Fg.prototype={ +Je(){this.T(new A.apA())}, +gcq(){var s=this.a.z +if(s==null){s=this.r +s.toString}return s}, +vS(){var s,r,q=this +if(q.a.z==null)q.r=A.anN() +s=q.gcq() +r=q.a.c +s.d7(0,B.u,r==null) +q.gcq().Z(0,q.goV())}, +aw(){this.aK() +this.vS()}, +aH(a){var s,r,q=this +q.b0(a) +s=a.z +if(q.a.z!=s){if(s!=null)s.J(0,q.goV()) +if(q.a.z!=null){s=q.r +if(s!=null){s.P$=$.aw() +s.M$=0}q.r=null}q.vS()}s=q.a.c==null +if(!s!==(a.c!=null)){r=q.gcq() +r.d7(0,B.u,s) +s=q.a.c +if(s==null)q.gcq().d7(0,B.T,!1)}}, +l(){var s,r=this +r.gcq().J(0,r.goV()) +s=r.r +if(s!=null){s.P$=$.aw() +s.M$=0}s=r.d +if(s!=null)s.l() +r.a54()}, +H(c8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8=this,b9=null,c0=A.J(c8),c1=A.aa8(c8),c2=b8.a,c3=c2.r,c4=c2.Cm(c8),c5=b8.a.qV(c8),c6=new A.apx(c3,c4,c5),c7=new A.apy(b8,c6) +c2=t.PM +s=c7.$1$1(new A.ap8(),c2) +r=c7.$1$1(new A.ap9(),t.p8) +q=t._ +p=c7.$1$1(new A.apa(),q) +o=c7.$1$1(new A.apl(),q) +n=c7.$1$1(new A.app(),q) +m=c7.$1$1(new A.apq(),q) +l=c7.$1$1(new A.apr(),t.pc) +q=t.tW +k=c7.$1$1(new A.aps(),q) +j=c7.$1$1(new A.apt(),q) +i=c7.$1$1(new A.apu(),q) +h=new A.apw(b8,c3,c4,c5).$0() +g=c7.$1$1(new A.apv(),c2) +f=c7.$1$1(new A.apb(),t.oI) +e=c7.$1$1(new A.apc(),t.KX) +d=c6.$1$1(new A.apd(),t.X3) +c=c6.$1$1(new A.ape(),t.i1) +b=c6.$1$1(new A.apf(),t.Tu) +a=c6.$1$1(new A.apg(),t.y) +if(a==null)a=!0 +a0=c6.$1$1(new A.aph(),t.pC) +a1=new A.j(d.a,d.b).a6(0,4) +a2=c6.$1$1(new A.api(),t.Ya) +c2=t.QN +a3=c6.$1$1(new A.apj(),c2) +a4=c6.$1$1(new A.apk(),c2) +a5=b8.a.w +if(a5==null)a5=(a3==null?a4:a3)!=null?B.bN:B.n +c2=k.a +q=k.b +a6=d.Ix(new A.ak(c2,i.a,q,i.b)) +if(j!=null){a7=a6.b3(j) +c2=a7.a +if(isFinite(c2))a6=a6.anZ(c2,c2) +c2=a7.b +if(isFinite(c2))a6=a6.anY(c2,c2)}a8=a1.b +c2=a1.a +a9=Math.max(0,c2) +b0=l.E(0,new A.az(a9,a8,a9,a8)).f0(0,B.as,B.Br) +q=!1 +if(b.a>0){b1=b8.e +if(b1!=null){b2=b8.f +if(b2!=null)if(b1!==s)if(b2.gq(b2)!==p.gq(p)){q=b8.f +q=q.gcR(q)===1&&p.gcR(p)<1&&s===0}}}if(q){q=b8.d +if(!J.d(q==null?b9:q.e,b)){q=b8.d +if(q!=null)q.l() +q=A.bK(b9,b,b9,b9,b8) +q.bk() +b1=q.co$ +b1.b=!0 +b1.a.push(new A.apm(b8)) +b8.d=q}p=b8.f +b8.d.sq(0,0) +b8.d.bP(0)}b8.e=s +b8.f=p +a0.toString +q=b8.a +b3=new A.bo(b0,new A.eH(a0,1,1,a4!=null?a4.$3(c8,b8.gcq().a,q.ax):q.ax,b9),b9) +if(a3!=null)b3=a3.$3(c8,b8.gcq().a,b3) +q=c0.ano(c1.aZ(new A.cP(g,b9,b9,b9,b9,h,b9,b9,b9))) +b1=b8.a +b2=b1.c +b4=b1.d +b5=b1.e +b6=b1.x +b1=b1.f +b3=A.aGz(A.uO(!1,b9,b2!=null,b3,e.kx(f),a,b9,b6,B.y,b9,new A.WH(new A.apn(c6)),b1,b5,b4,b2,new A.bh(new A.apo(c6),t.b),b9,a2,b8.gcq()),B.U,q,b) +q=b8.a +b1=q.at +if(b1!=null)b3=A.aKz(b3,b9,b1,b9,b9) +switch(c.a){case 0:b7=new A.I(48+c2,48+a8) +break +case 1:b7=B.I +break +default:b7=b9}c2=q.c +s.toString +q=r==null?b9:r.b1(o) +b1=e.kx(f) +return A.bG(!0,b9,new A.W1(b7,new A.eZ(a6,A.jp(!1,b,!1,b9,b3,a5,p,s,b9,n,b1,m,q,p==null?B.i7:B.ll),b9),b9),!0,b9,c2!=null,!1,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,B.z,b9)}} +A.apA.prototype={ +$0(){}, +$S:0} +A.apx.prototype={ +$1$1(a,b){var s=a.$1(this.a),r=a.$1(this.b),q=a.$1(this.c),p=s==null?r:s +return p==null?q:p}, +$1(a){return this.$1$1(a,t.z)}, +$S:497} +A.apy.prototype={ +$1$1(a,b){return this.b.$1$1(new A.apz(this.a,a,b),b)}, +$1(a){return this.$1$1(a,t.z)}, +$S:499} +A.apz.prototype={ +$1(a){var s=this.b.$1(a) +return s==null?null:s.Y(this.a.gcq().a)}, +$S(){return this.c.i("0?(bx?)")}} +A.apw.prototype={ +$0(){var s,r=this,q=null,p=r.b,o=p==null +if(o)s=q +else{s=p.gcH() +s=s==null?q:s.Y(r.a.gcq().a)}if(s==null){s=r.c +if(s==null)s=q +else{s=s.gcH() +s=s==null?q:s.Y(r.a.gcq().a)}}if(s==null)if(o)p=q +else{p=p.gcw() +p=p==null?q:p.Y(r.a.gcq().a)}else p=s +if(p==null){p=r.c +if(p==null)p=q +else{p=p.gcw() +p=p==null?q:p.Y(r.a.gcq().a)}}if(p==null){p=r.d.gcH() +p=p==null?q:p.Y(r.a.gcq().a)}if(p==null){p=r.d.gcw() +p=p==null?q:p.Y(r.a.gcq().a)}return p}, +$S:502} +A.ap8.prototype={ +$1(a){return a==null?null:a.gdl(a)}, +$S:149} +A.ap9.prototype={ +$1(a){return a==null?null:a.ghY()}, +$S:504} +A.apa.prototype={ +$1(a){return a==null?null:a.gb8(a)}, +$S:73} +A.apl.prototype={ +$1(a){return a==null?null:a.gcw()}, +$S:73} +A.app.prototype={ +$1(a){return a==null?null:a.gbc(a)}, +$S:73} +A.apq.prototype={ +$1(a){return a==null?null:a.gbu()}, +$S:73} +A.apr.prototype={ +$1(a){return a==null?null:a.gcl(a)}, +$S:529} +A.aps.prototype={ +$1(a){return a==null?null:a.gh3()}, +$S:112} +A.apt.prototype={ +$1(a){return a==null?null:a.y}, +$S:112} +A.apu.prototype={ +$1(a){return a==null?null:a.gh2()}, +$S:112} +A.apv.prototype={ +$1(a){return a==null?null:a.gh1()}, +$S:149} +A.apb.prototype={ +$1(a){return a==null?null:a.geh()}, +$S:531} +A.apc.prototype={ +$1(a){return a==null?null:a.gbH(a)}, +$S:532} +A.apn.prototype={ +$1(a){return this.a.$1$1(new A.ap6(a),t.Pb)}, +$S:533} +A.ap6.prototype={ +$1(a){var s +if(a==null)s=null +else{s=a.gh4() +s=s==null?null:s.Y(this.a)}return s}, +$S:332} +A.apo.prototype={ +$1(a){return this.a.$1$1(new A.ap5(a),t.G)}, +$S:68} +A.ap5.prototype={ +$1(a){var s +if(a==null)s=null +else{s=a.gdA() +s=s==null?null:s.Y(this.a)}return s}, +$S:555} +A.apd.prototype={ +$1(a){return a==null?null:a.gdP()}, +$S:566} +A.ape.prototype={ +$1(a){return a==null?null:a.gh5()}, +$S:571} +A.apf.prototype={ +$1(a){return a==null?null:a.cy}, +$S:572} +A.apg.prototype={ +$1(a){return a==null?null:a.db}, +$S:573} +A.aph.prototype={ +$1(a){return a==null?null:a.dx}, +$S:574} +A.api.prototype={ +$1(a){return a==null?null:a.gfI()}, +$S:576} +A.apj.prototype={ +$1(a){return a==null?null:a.fr}, +$S:151} +A.apk.prototype={ +$1(a){return a==null?null:a.fx}, +$S:151} +A.apm.prototype={ +$1(a){if(a===B.a2)this.a.T(new A.ap7())}, +$S:7} +A.ap7.prototype={ +$0(){}, +$S:0} +A.WH.prototype={ +Y(a){var s=this.a.$1(a) +s.toString +return s}, +gAe(){return"ButtonStyleButton_MouseCursor"}} +A.W1.prototype={ +aG(a){var s=new A.Hw(this.e,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sasK(this.e)}} +A.Hw.prototype={ +sasK(a){if(this.A.j(0,a))return +this.A=a +this.a_()}, +bb(a){var s=this.D$ +if(s!=null)return Math.max(s.ap(B.aK,a,s.gbE()),this.A.a) +return 0}, +ba(a){var s=this.D$ +if(s!=null)return Math.max(s.ap(B.aL,a,s.gbD()),this.A.b) +return 0}, +b7(a){var s=this.D$ +if(s!=null)return Math.max(s.ap(B.ab,a,s.gbj()),this.A.a) +return 0}, +b6(a){var s=this.D$ +if(s!=null)return Math.max(s.ap(B.b8,a,s.gbL()),this.A.b) +return 0}, +NL(a,b){var s,r,q=this.D$ +if(q!=null){s=b.$2(q,a) +q=s.a +r=this.A +return a.b3(new A.I(Math.max(q,r.a),Math.max(s.b,r.b)))}return B.I}, +cE(a){return this.NL(a,A.fE())}, +ds(a,b){var s,r,q=this.D$ +if(q==null)return null +s=q.eU(a,b) +if(s==null)return null +r=q.ap(B.R,a,q.gc8()) +return s+B.a_.lo(t.v.a(this.ap(B.R,a,this.gc8()).a0(0,r))).b}, +bx(){var s,r=this +r.fy=r.NL(t.k.a(A.t.prototype.gW.call(r)),A.mM()) +s=r.D$ +if(s!=null){s=s.b +s.toString +t.q.a(s).a=B.a_.lo(t.v.a(r.gt(0).a0(0,r.D$.gt(0))))}}, +cp(a,b){var s,r,q +if(this.lb(a,b))return!0 +s=this.D$.gt(0).kv(B.i) +r=new A.b6(new Float64Array(16)) +r.dF() +q=new A.jR(new Float64Array(4)) +q.xi(0,0,0,s.a) +r.D8(0,q) +q=new A.jR(new Float64Array(4)) +q.xi(0,0,0,s.b) +r.D8(1,q) +return a.UY(new A.ax_(this,s),s,r)}} +A.ax_.prototype={ +$2(a,b){return this.a.D$.cp(a,this.b)}, +$S:18} +A.Jf.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.a3y.prototype={ +K(){return"ButtonTextTheme."+this.b}} +A.Lc.prototype={ +gcl(a){var s +switch(0){case 0:break}s=B.GP +return s}, +gbH(a){$label0$0:{break $label0$0}return B.lD}, +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Lc&&b.gcl(0).j(0,s.gcl(0))&&b.gbH(0).j(0,s.gbH(0))&&J.d(b.w,s.w)&&J.d(b.y,s.y)&&J.d(b.z,s.z)&&J.d(b.at,s.at)&&b.ax==s.ax}, +gB(a){var s=this +return A.T(B.Ck,88,36,s.gcl(0),s.gbH(0),!1,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.TA.prototype={} +A.apD.prototype={ +K(){return"_CardVariant."+this.b}} +A.u_.prototype={ +H(a){var s,r,q,p,o,n,m,l,k,j=null +a.ad(t.Am) +s=A.J(a).x1 +A.J(a) +switch(0){case 0:r=new A.apC(a,B.n,j,j,j,1,B.f_,j) +break}q=r +r=this.y +if(r==null)r=s.f +if(r==null){r=q.f +r.toString}p=s.b +if(p==null)p=q.gci(0) +o=s.c +if(o==null)o=q.gbc(0) +n=s.d +if(n==null)n=q.gbu() +m=s.e +if(m==null){m=q.e +m.toString}l=s.r +if(l==null)l=q.gbH(0) +k=this.x +if(k==null)k=s.a +if(k==null){k=q.a +k.toString}return A.bG(j,j,new A.bo(r,A.jp(!1,B.N,!0,j,A.bG(j,j,this.Q,!1,j,j,!1,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,B.z,j),k,p,m,j,o,l,n,j,B.df),j),!0,j,j,!1,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,B.z,j)}} +A.apC.prototype={ +gNM(){var s,r=this,q=r.x +if(q===$){s=A.J(r.w) +r.x!==$&&A.aA() +q=r.x=s.ax}return q}, +gci(a){var s=this.gNM(),r=s.p3 +return r==null?s.k2:r}, +gbc(a){var s=this.gNM().x1 +return s==null?B.l:s}, +gbu(){return B.y}, +gbH(a){return B.PT}} +A.pz.prototype={ +gB(a){var s=this +return A.T(s.a,s.gci(s),s.gbc(s),s.gbu(),s.e,s.f,s.gbH(s),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.pz&&b.a==s.a&&J.d(b.gci(b),s.gci(s))&&J.d(b.gbc(b),s.gbc(s))&&J.d(b.gbu(),s.gbu())&&b.e==s.e&&J.d(b.f,s.f)&&J.d(b.gbH(b),s.gbH(s))}, +gci(a){return this.b}, +gbc(a){return this.c}, +gbu(){return this.d}, +gbH(a){return this.r}} +A.TE.prototype={} +A.yZ.prototype={ +gB(a){var s=this +return A.T(s.b,s.c,s.d,s.f,s.a,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.yZ)if(J.d(b.b,r.b))if(b.c==r.c)if(J.d(b.d,r.d))if(b.f==r.f)s=J.d(b.a,r.a) +return s}} +A.TF.prototype={} +A.aq8.prototype={ +K(){return"_CheckboxType."+this.b}} +A.z2.prototype={ +ac(){return new A.TI(new A.TH($.aw()),$,$,$,$,$,$,$,$,B.bd,$,null,!1,!1,null,null)}} +A.TI.prototype={ +aw(){this.a57() +this.e=this.a.c}, +aH(a){var s,r,q=this +q.b0(a) +s=a.c +if(s!==q.a.c){q.e=s +q.ga_i() +s=q.gq(0) +r=q.IO$ +if(s){r===$&&A.a() +r.bP(0)}else{r===$&&A.a() +r.dg(0)}}}, +l(){this.d.l() +this.a56()}, +giA(){return this.a.d}, +ga_i(){this.a.toString +return!1}, +gq(a){return this.a.c}, +gUG(){return new A.bh(new A.aq6(this),t.b)}, +qf(a,b){if(a instanceof A.ib)return A.cu(a,b,t.oI) +if(!b.p(0,B.V))return a +return null}, +H(a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this,a8=null +a7.a.toString +switch(0){case 0:break}a9.ad(t.ES) +s=A.J(a9).xr +A.J(a9) +r=new A.aq1(A.J(a9),A.J(a9).ax,a8,a8,a8,a8,a8,a8,a8,a8,a8) +a7.a.toString +q=r.gw6() +p=r.gdP() +switch(q.a){case 0:o=B.Am +break +case 1:o=B.Al +break +default:o=a8}n=o.V(0,new A.j(p.a,p.b).a6(0,4)) +m=a7.gkd() +m.E(0,B.V) +l=a7.gkd() +l.F(0,B.V) +a7.a.toString +k=a7.gUG().a.$1(m) +if(k==null){o=s.b +k=o==null?a8:o.Y(m)}o=k==null +if(o){j=r.gj8().a.$1(m) +j.toString +i=j}else i=k +a7.a.toString +h=a7.gUG().a.$1(l) +if(h==null){j=s.b +h=j==null?a8:j.Y(l)}j=h==null +if(j){g=r.gj8().a.$1(l) +g.toString +f=g}else f=h +a7.a.toString +g=a7.qf(a8,m) +e=g==null?a7.qf(s.x,m):g +if(e==null){g=a7.qf(r.geh(),m) +g.toString +e=g}a7.a.toString +g=a7.qf(a8,l) +d=g==null?a7.qf(s.x,l):g +if(d==null){g=a7.qf(r.geh(),l) +g.toString +d=g}c=a7.gkd() +c.E(0,B.E) +a7.a.toString +g=s.d +b=g==null?a8:g.Y(c) +a=b +if(a==null){b=r.gdA().a.$1(c) +b.toString +a=b}a0=a7.gkd() +a0.E(0,B.A) +a7.a.toString +b=g==null?a8:g.Y(a0) +a1=b +if(a1==null){b=r.gdA().a.$1(a0) +b.toString +a1=b}m.E(0,B.T) +a7.a.toString +b=g==null?a8:g.Y(m) +if(b==null){o=o?a8:k.dh(31) +a2=o}else a2=b +if(a2==null){o=r.gdA().a.$1(m) +o.toString +a2=o}l.E(0,B.T) +a7.a.toString +o=g==null?a8:g.Y(l) +if(o==null){o=j?a8:h.dh(31) +a3=o}else a3=o +if(a3==null){o=r.gdA().a.$1(l) +o.toString +a3=o}if(a7.vx$!=null){a1=a7.gkd().p(0,B.V)?a2:a3 +a=a7.gkd().p(0,B.V)?a2:a3}a7.a.toString +a4=a7.gkd() +a7.a.toString +o=s.c +o=o==null?a8:o.Y(a4) +a5=o +if(a5==null){o=r.goq().Y(a4) +o.toString +a5=o}o=a7.a +o.toString +a6=s.e +if(a6==null)a6=r.gnH() +j=a7.d +g=a7.IP$ +g===$&&A.a() +j.sby(0,g) +g=a7.IQ$ +g===$&&A.a() +j.saup(g) +g=a7.IT$ +g===$&&A.a() +j.saur(g) +g=a7.IR$ +g===$&&A.a() +j.saus(g) +j.sarl(a3) +j.sauq(a2) +j.sarf(a1) +j.sapH(a) +j.snH(a6) +j.saoT(a7.vx$) +j.sp5(a7.gkd().p(0,B.E)) +j.sarT(a7.gkd().p(0,B.A)) +j.salB(i) +j.sark(f) +j.soq(a5) +j.sq(0,a7.a.c) +j.sau9(a7.e) +a7.a.toString +g=s.w +j.sbH(0,g==null?r.gbH(0):g) +j.salC(e) +j.sarm(d) +return A.bG(a8,o.c,a7.amq(!1,a8,new A.bh(new A.aq7(a7,s),t.tR),j,n),!1,a8,a8,!1,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,B.z,a8)}} +A.aq6.prototype={ +$1(a){if(a.p(0,B.u))return null +if(a.p(0,B.V)){this.a.a.toString +return null}return null}, +$S:68} +A.aq7.prototype={ +$1(a){var s +this.a.a.toString +s=A.cu(null,a,t.WV) +if(s==null)s=null +return s==null?A.aEl(a):s}, +$S:84} +A.TH.prototype={ +soq(a){if(J.d(this.dx,a))return +this.dx=a +this.ak()}, +sq(a,b){if(this.dy===b)return +this.dy=b +this.ak()}, +sau9(a){if(this.fr==a)return +this.fr=a +this.ak()}, +sbH(a,b){if(J.d(this.fx,b))return +this.fx=b +this.ak()}, +salC(a){if(J.d(this.fy,a))return +this.fy=a +this.ak()}, +sarm(a){if(J.d(this.go,a))return +this.go=a +this.ak()}, +Rp(a,b){var s=1-Math.abs(b-0.5)*2,r=18-s*2,q=a.a+s,p=a.b+s +return new A.x(q,p,q+r,p+r)}, +Oe(a){var s,r=this.e +if(a>=0.25)r.toString +else{s=this.f +s.toString +r.toString +r=A.z(s,r,a*4) +r.toString}return r}, +EC(a,b,c,d){a.ip(this.fx.nw(b),c) +this.fx.kx(d).aA(a,b)}, +ED(a,b,c,d){var s,r=A.bQ($.a3().w),q=b.a,p=b.b,o=q+2.6999999999999997,n=p+8.1 +if(c<0.5){s=A.ky(B.NL,B.vL,c*2) +s.toString +r.aq(new A.eL(o,n)) +r.aq(new A.cb(q+s.a,p+s.b))}else{s=A.ky(B.vL,B.NU,(c-0.5)*2) +s.toString +r.aq(new A.eL(o,n)) +r.aq(new A.cb(q+7.2,p+12.6)) +r.aq(new A.cb(q+s.a,p+s.b))}a.ip(r,d)}, +EE(a,b,c,d){var s,r=A.ky(B.NM,B.vK,1-c) +r.toString +s=A.ky(B.vK,B.NO,c) +s.toString +a.lw(b.V(0,r),b.V(0,s),d)}, +aA(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=b.kv(B.i) +if(g.b.gaN(0)!==B.Q||g.c.gaN(0)!==B.Q||g.d.gaN(0)!==B.Q){$.a3() +s=A.bc() +r=g.r +r.toString +q=g.w +q.toString +q=A.z(r,q,g.a.gq(0)) +r=g.x +r.toString +r=A.z(q,r,g.d.gq(0)) +q=g.y +q.toString +s.r=A.z(r,q,g.c.gq(0)).gq(0) +q=g.z +q.toString +r=g.as +r.toString +if(!r){r=g.at +r.toString}else r=!0 +if(r)p=q +else p=new A.ay(0,q,t.Y).a8(0,g.b.gq(0)) +if(p>0)a.mR(f.V(0,B.i),p,s)}$.a3() +o=A.bc() +f=g.dx +o.r=f.gq(f) +o.b=B.bt +o.c=2 +n=t.v.a(b.dE(0,2).a0(0,B.RF.dE(0,2))) +f=g.a.a +m=f.gaN(f) +$label0$0:{if(B.bB===m||B.a2===m){f=g.a.gq(0) +break $label0$0}if(B.b9===m||B.Q===m){f=1-g.a.gq(0) +break $label0$0}f=null}if(g.fr===!1||g.dy===!1){l=g.dy===!1?1-f:f +k=g.Rp(n,l) +j=A.bc() +f=g.Oe(l) +j.r=f.gq(f) +f=g.fy +if(l<=0.5){r=g.go +r.toString +f.toString +g.EC(a,k,j,A.aX(r,f,l))}else{f.toString +g.EC(a,k,j,f) +i=(l-0.5)*2 +if(g.fr==null||g.dy==null)g.EE(a,n,i,o) +else g.ED(a,n,i,o)}}else{k=g.Rp(n,1) +j=A.bc() +r=g.Oe(1) +j.r=r.gq(r) +r=g.fy +r.toString +g.EC(a,k,j,r) +if(f<=0.5){i=1-f*2 +f=g.fr +if(f===!0)g.ED(a,n,i,o) +else g.EE(a,n,i,o)}else{h=(f-0.5)*2 +f=g.dy +if(f===!0)g.ED(a,n,h,o) +else g.EE(a,n,h,o)}}}} +A.aq1.prototype={ +geh(){return A.aEO(new A.aq5(this))}, +gj8(){return new A.bh(new A.aq3(this),t.mN)}, +goq(){return new A.bh(new A.aq2(this),t.mN)}, +gdA(){return new A.bh(new A.aq4(this),t.mN)}, +gnH(){return 20}, +gw6(){return this.y.f}, +gdP(){return B.es}, +gbH(a){return B.lD}} +A.aq5.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.u)){if(a.p(0,B.V))return B.C8 +s=q.a.z.k3 +return new A.aW(A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),2,B.v,-1)}if(a.p(0,B.V))return B.C7 +if(a.p(0,B.bI))return new A.aW(q.a.z.fy,2,B.v,-1) +if(a.p(0,B.T))return new A.aW(q.a.z.k3,2,B.v,-1) +if(a.p(0,B.A))return new A.aW(q.a.z.k3,2,B.v,-1) +if(a.p(0,B.E))return new A.aW(q.a.z.k3,2,B.v,-1) +s=q.a.z +r=s.rx +return new A.aW(r==null?s.k3:r,2,B.v,-1)}, +$S:77} +A.aq3.prototype={ +$1(a){var s +if(a.p(0,B.u)){if(a.p(0,B.V)){s=this.a.z.k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return B.y}if(a.p(0,B.V)){if(a.p(0,B.bI))return this.a.z.fy +return this.a.z.b}return B.y}, +$S:8} +A.aq2.prototype={ +$1(a){if(a.p(0,B.u)){if(a.p(0,B.V))return this.a.z.k2 +return B.y}if(a.p(0,B.V)){if(a.p(0,B.bI))return this.a.z.go +return this.a.z.c}return B.y}, +$S:8} +A.aq4.prototype={ +$1(a){var s,r=this +if(a.p(0,B.bI)){if(a.p(0,B.T)){s=r.a.z.fy +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.A)){s=r.a.z.fy +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.E)){s=r.a.z.fy +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}}if(a.p(0,B.V)){if(a.p(0,B.T)){s=r.a.z.k3 +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.A))return r.a.z.b.b_(0.08) +if(a.p(0,B.E))return r.a.z.b.b_(0.1) +return B.y}if(a.p(0,B.T))return r.a.z.b.b_(0.1) +if(a.p(0,B.A)){s=r.a.z.k3 +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.E)){s=r.a.z.k3 +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return B.y}, +$S:8} +A.Jh.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.Ji.prototype={ +aw(){var s,r=this,q=null +r.aK() +s=A.bK(q,B.N,q,!r.a.c?0:1,r) +r.IO$=s +r.IP$=A.cw(B.dL,s,B.d_) +s=A.bK(q,r.apt$,q,q,r) +r.AN$=s +r.IQ$=A.cw(B.ao,s,q) +s=A.bK(q,B.k7,q,r.vz$||r.vy$?1:0,r) +r.IS$=s +r.IR$=A.cw(B.ao,s,q) +s=A.bK(q,B.k7,q,r.vz$||r.vy$?1:0,r) +r.IU$=s +r.IT$=A.cw(B.ao,s,q)}, +l(){var s=this,r=s.IO$ +r===$&&A.a() +r.l() +r=s.IP$ +r===$&&A.a() +r.l() +r=s.AN$ +r===$&&A.a() +r.l() +r=s.IQ$ +r===$&&A.a() +r.l() +r=s.IS$ +r===$&&A.a() +r.l() +r=s.IR$ +r===$&&A.a() +r.l() +r=s.IU$ +r===$&&A.a() +r.l() +r=s.IT$ +r===$&&A.a() +r.l() +s.a55()}} +A.u1.prototype={ +gB(a){var s=this +return A.T(s.a,s.gj8(),s.goq(),s.gdA(),s.gnH(),s.gw6(),s.gdP(),s.gbH(s),s.geh(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.u1&&b.gj8()==s.gj8()&&J.d(b.goq(),s.goq())&&b.gdA()==s.gdA()&&b.gnH()==s.gnH()&&b.gw6()==s.gw6()&&J.d(b.gdP(),s.gdP())&&J.d(b.gbH(b),s.gbH(s))&&J.d(b.geh(),s.geh())}, +gj8(){return this.b}, +goq(){return this.c}, +gdA(){return this.d}, +gnH(){return this.e}, +gw6(){return this.f}, +gdP(){return this.r}, +gbH(a){return this.w}, +geh(){return this.x}} +A.TJ.prototype={} +A.z3.prototype={ +gB(a){var s=this +return A.bI([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy])}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.z3&&b.a==s.a&&J.d(b.b,s.b)&&J.d(b.c,s.c)&&J.d(b.d,s.d)&&J.d(b.e,s.e)&&J.d(b.f,s.f)&&J.d(b.r,s.r)&&J.d(b.w,s.w)&&J.d(b.x,s.x)&&b.y==s.y&&J.d(b.z,s.z)&&J.d(b.Q,s.Q)&&J.d(b.as,s.as)&&J.d(b.at,s.at)&&J.d(b.ax,s.ax)&&J.d(b.ay,s.ay)&&J.d(b.ch,s.ch)&&b.CW==s.CW&&b.cx==s.cx&&b.cy==s.cy&&J.d(b.db,s.db)&&J.d(b.dx,s.dx)&&J.d(b.dy,s.dy)}} +A.TL.prototype={} +A.Li.prototype={ +gafs(){return 2*this.y}, +gaff(){return 2*this.y}, +H(a){var s,r,q,p,o=this,n=null,m=A.J(a),l=n,k=m.ax,j=k.e +k=j==null?k.c:j +l=k +s=m.ok.w.b1(l) +r=o.d +if(l==null){switch(A.S7(r).a){case 0:k=s.b1(m.fr) +break +case 1:k=s.b1(m.dy) +break +default:k=n}s=k}q=o.gafs() +p=o.gaff() +k=m.k2.b1(s.b) +k=A.dG(A.aV1(A.AR(A.kd(o.c,n,n,B.c6,!0,s,n,n,B.aP),k,n)),n,n) +return new A.yk(k,new A.cX(r,n,n,n,n,n,B.eC),n,new A.ak(q,p,q,p),B.U,B.N,n,n)}} +A.a6f.prototype={ +K(){return"DynamicSchemeVariant."+this.b}} +A.ud.prototype={ +ao8(d2,d3,d4,d5,d6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7=this,c8=null,c9=c7.b,d0=c7.c,d1=c7.d +if(d1==null)d1=c9 +s=c7.e +if(s==null)s=d0 +r=c7.f +if(r==null)r=c9 +q=c7.r +if(q==null)q=c9 +p=c7.w +if(p==null)p=d0 +o=c7.x +if(o==null)o=d0 +n=d5==null?c7.y:d5 +m=d3==null?c7.z:d3 +l=c7.Q +if(l==null)l=c7.y +k=c7.as +if(k==null)k=c7.z +j=c7.at +if(j==null)j=c7.y +i=c7.ax +if(i==null)i=c7.y +h=c7.ay +if(h==null)h=c7.z +g=c7.ch +if(g==null)g=c7.z +f=c7.CW +e=f==null?c7.y:f +d=c7.cx +c=d==null?c7.z:d +b=c7.cy +if(b==null)b=f==null?c7.y:f +a=c7.db +if(a==null)a=d==null?c7.z:d +a0=c7.dx +if(a0==null)a0=f==null?c7.y:f +a1=c7.dy +if(a1==null){if(f==null)f=c7.y}else f=a1 +a1=c7.fr +if(a1==null)a1=d==null?c7.z:d +a2=c7.fx +if(a2==null){if(d==null)d=c7.z}else d=a2 +a2=c7.fy +a3=c7.go +a4=c7.id +if(a4==null)a4=a2 +a5=c7.k1 +if(a5==null)a5=a3 +a6=d6==null?c7.k2:d6 +a7=d4==null?c7.k3:d4 +a8=c7.ok +if(a8==null)a8=c7.k2 +a9=c7.p1 +if(a9==null)a9=c7.k2 +b0=c7.p2 +if(b0==null)b0=c7.k2 +b1=c7.p3 +if(b1==null)b1=c7.k2 +b2=c7.p4 +if(b2==null)b2=c7.k2 +b3=c7.R8 +if(b3==null)b3=c7.k2 +b4=c7.RG +if(b4==null)b4=c7.k2 +b5=c7.rx +if(b5==null)b5=c7.k3 +b6=c7.ry +if(b6==null){b6=c7.n +if(b6==null)b6=c7.k3}b7=c7.to +if(b7==null){b7=c7.n +if(b7==null)b7=c7.k3}b8=c7.x1 +if(b8==null)b8=B.l +b9=c7.x2 +if(b9==null)b9=B.l +c0=c7.xr +if(c0==null)c0=c7.k3 +c1=c7.y1 +if(c1==null)c1=c7.k2 +c2=c7.y2 +if(c2==null)c2=d0 +c3=c7.M +if(c3==null)c3=c9 +c4=c7.P +if(c4==null)c4=c7.k2 +c5=c7.n +if(c5==null)c5=c7.k3 +c6=c7.k4 +if(c6==null)c6=c7.k2 +return A.a4K(c4,c7.a,a2,a4,c2,c0,c5,a3,a5,c1,d0,s,p,o,m,k,h,g,a7,b5,c,a,a1,d,b6,b7,c9,d1,r,q,b9,n,l,j,i,b8,a6,a9,b2,b3,b4,b1,b0,a8,c3,c6,e,b,a0,f)}, +anh(a){var s=null +return this.ao8(a,s,s,s,s)}, +j(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this +if(a2==null)return!1 +if(a0===a2)return!0 +if(J.U(a2)!==A.r(a0))return!1 +s=!1 +if(a2 instanceof A.ud)if(a2.a===a0.a){r=a2.b +q=a0.b +if(r.j(0,q)){p=a2.c +o=a0.c +if(p.j(0,o)){n=a2.d +if(n==null)n=r +m=a0.d +if(n.j(0,m==null?q:m)){n=a2.e +if(n==null)n=p +m=a0.e +if(n.j(0,m==null?o:m)){n=a2.f +if(n==null)n=r +m=a0.f +if(n.j(0,m==null?q:m)){n=a2.r +if(n==null)n=r +m=a0.r +if(n.j(0,m==null?q:m)){n=a2.w +if(n==null)n=p +m=a0.w +if(n.j(0,m==null?o:m)){n=a2.x +if(n==null)n=p +m=a0.x +if(n.j(0,m==null?o:m)){n=a2.y +m=a0.y +if(n.j(0,m)){l=a2.z +k=a0.z +if(l.j(0,k)){j=a2.Q +if(j==null)j=n +i=a0.Q +if(j.j(0,i==null?m:i)){j=a2.as +if(j==null)j=l +i=a0.as +if(j.j(0,i==null?k:i)){j=a2.at +if(j==null)j=n +i=a0.at +if(j.j(0,i==null?m:i)){j=a2.ax +if(j==null)j=n +i=a0.ax +if(j.j(0,i==null?m:i)){j=a2.ay +if(j==null)j=l +i=a0.ay +if(j.j(0,i==null?k:i)){j=a2.ch +if(j==null)j=l +i=a0.ch +if(j.j(0,i==null?k:i)){j=a2.CW +i=j==null +h=i?n:j +g=a0.CW +f=g==null +if(h.j(0,f?m:g)){h=a2.cx +e=h==null +d=e?l:h +c=a0.cx +b=c==null +if(d.j(0,b?k:c)){d=a2.cy +if(d==null)d=i?n:j +a=a0.cy +if(a==null)a=f?m:g +if(d.j(0,a)){d=a2.db +if(d==null)d=e?l:h +a=a0.db +if(a==null)a=b?k:c +if(d.j(0,a)){d=a2.dx +if(d==null)d=i?n:j +a=a0.dx +if(a==null)a=f?m:g +if(d.j(0,a)){d=a2.dy +if(d==null)n=i?n:j +else n=d +j=a0.dy +if(j==null)m=f?m:g +else m=j +if(n.j(0,m)){n=a2.fr +if(n==null)n=e?l:h +m=a0.fr +if(m==null)m=b?k:c +if(n.j(0,m)){n=a2.fx +if(n==null)n=e?l:h +m=a0.fx +if(m==null)m=b?k:c +if(n.j(0,m)){n=a2.fy +m=a0.fy +if(n.j(0,m)){l=a2.go +k=a0.go +if(l.j(0,k)){j=a2.id +n=j==null?n:j +j=a0.id +if(n.j(0,j==null?m:j)){n=a2.k1 +if(n==null)n=l +m=a0.k1 +if(n.j(0,m==null?k:m)){n=a2.k2 +m=a0.k2 +if(n.j(0,m)){l=a2.k3 +k=a0.k3 +if(l.j(0,k)){j=a2.ok +if(j==null)j=n +i=a0.ok +if(j.j(0,i==null?m:i)){j=a2.p1 +if(j==null)j=n +i=a0.p1 +if(j.j(0,i==null?m:i)){j=a2.p2 +if(j==null)j=n +i=a0.p2 +if(j.j(0,i==null?m:i)){j=a2.p3 +if(j==null)j=n +i=a0.p3 +if(j.j(0,i==null?m:i)){j=a2.p4 +if(j==null)j=n +i=a0.p4 +if(j.j(0,i==null?m:i)){j=a2.R8 +if(j==null)j=n +i=a0.R8 +if(j.j(0,i==null?m:i)){j=a2.RG +if(j==null)j=n +i=a0.RG +if(j.j(0,i==null?m:i)){j=a2.rx +if(j==null)j=l +i=a0.rx +if(j.j(0,i==null?k:i)){j=a2.ry +if(j==null){j=a2.n +if(j==null)j=l}i=a0.ry +if(i==null){i=a0.n +if(i==null)i=k}if(j.j(0,i)){j=a2.to +if(j==null){j=a2.n +if(j==null)j=l}i=a0.to +if(i==null){i=a0.n +if(i==null)i=k}if(j.j(0,i)){j=a2.x1 +if(j==null)j=B.l +i=a0.x1 +if(j.j(0,i==null?B.l:i)){j=a2.x2 +if(j==null)j=B.l +i=a0.x2 +if(j.j(0,i==null?B.l:i)){j=a2.xr +if(j==null)j=l +i=a0.xr +if(j.j(0,i==null?k:i)){j=a2.y1 +if(j==null)j=n +i=a0.y1 +if(j.j(0,i==null?m:i)){j=a2.y2 +p=j==null?p:j +j=a0.y2 +if(p.j(0,j==null?o:j)){p=a2.M +r=p==null?r:p +p=a0.M +if(r.j(0,p==null?q:p)){r=a2.P +if(r==null)r=n +q=a0.P +if(r.j(0,q==null?m:q)){r=a2.n +if(r==null)r=l +q=a0.n +if(r.j(0,q==null?k:q)){s=a2.k4 +if(s==null)s=n +r=a0.k4 +s=s.j(0,r==null?m:r)}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s}, +gB(d1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7=this,c8=c7.b,c9=c7.c,d0=c7.d +if(d0==null)d0=c8 +s=c7.e +if(s==null)s=c9 +r=c7.y +q=c7.z +p=c7.Q +if(p==null)p=r +o=c7.as +if(o==null)o=q +n=c7.CW +m=n==null +l=m?r:n +k=c7.cx +j=k==null +i=j?q:k +h=c7.cy +if(h==null)h=m?r:n +g=c7.db +if(g==null)g=j?q:k +f=c7.fy +e=c7.go +d=c7.id +if(d==null)d=f +c=c7.k1 +if(c==null)c=e +b=c7.k2 +a=c7.k3 +a0=c7.ok +if(a0==null)a0=b +a1=c7.p1 +if(a1==null)a1=b +a2=c7.p2 +if(a2==null)a2=b +a3=c7.p3 +if(a3==null)a3=b +a4=c7.p4 +if(a4==null)a4=b +a5=c7.R8 +if(a5==null)a5=b +a6=c7.RG +if(a6==null)a6=b +a7=c7.rx +if(a7==null)a7=a +a8=c7.ry +if(a8==null){a8=c7.n +if(a8==null)a8=a}a9=c7.to +if(a9==null){a9=c7.n +if(a9==null)a9=a}b0=c7.x1 +if(b0==null)b0=B.l +b1=c7.x2 +if(b1==null)b1=B.l +b2=c7.xr +if(b2==null)b2=a +b3=c7.y1 +if(b3==null)b3=b +b4=c7.y2 +if(b4==null)b4=c9 +b5=c7.M +if(b5==null)b5=c8 +b6=c7.f +if(b6==null)b6=c8 +b7=c7.r +if(b7==null)b7=c8 +b8=c7.w +if(b8==null)b8=c9 +b9=c7.x +if(b9==null)b9=c9 +c0=c7.at +if(c0==null)c0=r +c1=c7.ax +if(c1==null)c1=r +c2=c7.ay +if(c2==null)c2=q +c3=c7.ch +if(c3==null)c3=q +c4=c7.dx +if(c4==null)c4=m?r:n +c5=c7.dy +if(c5==null){if(m)n=r}else n=c5 +m=c7.fr +if(m==null)m=j?q:k +c5=c7.fx +if(c5==null){if(j)k=q}else k=c5 +j=c7.P +if(j==null)j=b +c5=c7.n +if(c5==null)c5=a +c6=c7.k4 +return A.T(c7.a,c8,c9,d0,s,r,q,p,o,l,i,h,g,f,e,d,c,A.T(b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,A.T(b6,b7,b8,b9,c0,c1,c2,c3,c4,n,m,k,j,c5,c6==null?b:c6,B.a,B.a,B.a,B.a,B.a),B.a),B.a,B.a)}} +A.TO.prototype={} +A.jq.prototype={} +A.zA.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.zA)if(J.d(b.a,r.a))if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(J.d(b.e,r.e))if(b.f==r.f)if(b.r==r.r)if(J.d(b.w,r.w))if(b.x==r.x)if(b.y==r.y)if(b.z==r.z)s=b.Q==r.Q +return s}} +A.Up.prototype={} +A.zB.prototype={ +gfs(){return null}, +gB(a){var s=this +return A.bI([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.gfs(),s.p4,s.R8,s.RG,s.rx,s.ry])}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +s=!1 +if(b instanceof A.zB)if(J.d(b.a,r.a))if(b.b==r.b)if(J.d(b.c,r.c))if(J.d(b.d,r.d))if(J.d(b.e,r.e))if(J.d(b.f,r.f))if(J.d(b.r,r.r))if(J.d(b.w,r.w))if(J.d(b.x,r.x))if(J.d(b.y,r.y))if(J.d(b.z,r.z))if(b.Q==r.Q)if(b.as==r.as)if(b.at==r.at)if(b.ax==r.ax)if(b.ay==r.ay)if(b.ch==r.ch)if(J.d(b.CW,r.CW))if(J.d(b.cx,r.cx))if(b.cy==r.cy)if(b.db==r.db)if(b.dx==r.dx)if(b.dy==r.dy)if(J.d(b.fr,r.fr))if(b.fx==r.fx)if(J.d(b.fy,r.fy))if(J.d(b.go,r.go))if(J.d(b.id,r.id))if(J.d(b.k1,r.k1))if(J.d(b.k2,r.k2))if(J.d(b.k3,r.k3))if(J.d(b.k4,r.k4))if(J.d(b.ok,r.ok))if(b.p1==r.p1)if(J.d(b.p2,r.p2)){b.gfs() +r.gfs() +s=J.d(b.p4,r.p4)&&J.d(b.R8,r.R8)&&J.d(b.rx,r.rx)&&J.d(b.ry,r.ry)}return s}} +A.Ur.prototype={} +A.UE.prototype={} +A.a5B.prototype={ +t_(a){return B.I}, +zN(a,b,c,d){return B.ay}, +rZ(a,b){return B.i}} +A.a0C.prototype={} +A.Mf.prototype={ +H(a){var s=null,r=A.bP(a,B.bK,t.w).w.r.b+8 +return new A.bo(new A.az(8,r,8,8),new A.lj(new A.Mg(this.c.a0(0,new A.j(8,r))),A.e1(A.jp(!1,B.N,!0,B.C6,A.bS(this.d,B.w,B.x,B.c1),B.bN,s,1,s,s,s,s,s,B.df),s,222),s),s)}} +A.ur.prototype={ +H(a){var s=null +return A.e1(A.kM(this.d,this.c,A.amf(B.mX,s,s,s,s,B.b5,s,s,B.b5,A.J(a).ax.a===B.am?B.k:B.W,s,B.RI,s,B.GS,s,B.fs,s,s,s,s,s)),s,1/0)}} +A.Mj.prototype={ +H(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null +A.J(a) +s=A.aCU(a) +r=t.w +q=A.bP(a,B.j8,r).w +p=s.Q +if(p==null)p=B.GV +o=q.f.V(0,p) +n=A.aL1(a) +m=s.at +if(m==null)m=B.Ce +q=s.f +if(q==null){q=n.f +q.toString}p=s.a +if(p==null)p=n.gb8(0) +l=s.b +if(l==null){l=n.b +l.toString}k=s.c +if(k==null)k=n.gbc(0) +j=s.d +if(j==null)j=n.gbu() +i=s.e +if(i==null){i=n.e +i.toString}h=s.as +if(h==null){h=n.as +h.toString}g=new A.eH(q,f,f,new A.eZ(m,A.jp(!1,B.N,!0,f,this.as,h,p,l,f,k,i,j,f,B.df),f),f) +return A.bG(f,f,new A.yo(o,new A.jr(A.bP(a,f,r).w.ZO(!0,!0,!0,!0),g,f),B.dE,B.bd,f,f),!1,f,f,!1,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,this.ax,f,f,f,f,f,f,B.z,f)}} +A.tK.prototype={ +H(a){var s,r,q,p,o,n,m,l=null,k=A.J(a),j=A.aCU(a),i=A.aL1(a),h=k.w,g=l +switch(h.a){case 2:case 4:break +case 0:case 1:case 3:case 5:A.f3(a,B.b6,t.C).toString +g="Alert" +break}s=A.bW(a,B.bz) +s=s==null?l:s.gcA() +s=A.V(1,0.3333333333333333,A.A((s==null?B.aB:s).aJ(0,14)/14,1,2)-1) +s.toString +A.dh(a) +r=24*s +q=j.r +if(q==null){q=i.ges() +q.toString}h=g==null&&h!==B.L +p=new A.bo(new A.az(r,r,r,0),A.kd(A.bG(l,l,this.f,!0,l,l,!1,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,B.z,l),l,l,B.c6,!0,q,B.az,l,B.aP),l) +h=24*s +s=j.w +if(s==null){s=i.gjI() +s.toString}o=new A.bo(new A.az(h,16,h,24),A.kd(A.bG(l,l,this.x,!0,l,l,!0,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,B.z,l),l,l,B.c6,!0,s,l,l,B.aP),l) +h=j.x +if(h==null)h=i.ghJ() +n=new A.bo(h,A.aVy(B.i4,this.Q,B.Oj,B.cx,0,8),l) +h=A.b([],t.p) +if(p!=null)h.push(p) +if(o!=null)h.push(new A.q6(1,B.kN,o,l)) +if(n!=null)h.push(n) +m=new A.NN(A.bS(h,B.ce,B.x,B.c1),l) +return new A.Mj(l,l,l,l,l,l,l,l,g!=null?A.bG(l,l,m,!1,l,l,!0,l,l,l,l,l,l,g,l,l,l,l,!0,l,l,l,l,l,l,l,l,l,l,l,!0,l,l,l,l,l,B.z,l):m,B.Qw,l,l)}} +A.zJ.prototype={ +qH(a,b,c,d){var s=this.r4,r=s==null +if((r?null:s.a)!==b){if(!r)s.l() +s=this.r4=A.cw(B.d_,b,B.d_)}s.toString +return new A.d5(s,!1,this.a2F(a,b,c,d),null)}, +l(){var s=this.r4 +if(s!=null)s.l() +this.MZ()}} +A.a5D.prototype={ +$3(a,b,c){var s=new A.e8(this.a,null),r=new A.mo(this.b.a,s,null) +r=A.oc(!0,r,!1,B.as,!0) +return r}, +$S:598} +A.arc.prototype={ +gOE(){var s,r=this,q=r.ay +if(q===$){s=A.J(r.ax) +r.ay!==$&&A.aA() +q=r.ay=s.ax}return q}, +gOF(){var s,r=this,q=r.ch +if(q===$){s=A.J(r.ax) +r.ch!==$&&A.aA() +q=r.ch=s.ok}return q}, +gcH(){return this.gOE().y}, +gb8(a){var s=this.gOE(),r=s.R8 +return r==null?s.k2:r}, +gbc(a){return B.y}, +gbu(){return B.y}, +ges(){return this.gOF().f}, +gjI(){return this.gOF().z}, +ghJ(){return B.GT}} +A.ut.prototype={ +gB(a){var s=this +return A.bI([s.gb8(s),s.b,s.gbc(s),s.gbu(),s.e,s.f,s.gcH(),s.ges(),s.gjI(),s.ghJ(),s.z,s.Q,s.as,s.at])}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.ut&&J.d(b.gb8(b),s.gb8(s))&&b.b==s.b&&J.d(b.gbc(b),s.gbc(s))&&J.d(b.gbu(),s.gbu())&&J.d(b.e,s.e)&&J.d(b.f,s.f)&&J.d(b.gcH(),s.gcH())&&J.d(b.ges(),s.ges())&&J.d(b.gjI(),s.gjI())&&J.d(b.ghJ(),s.ghJ())&&J.d(b.z,s.z)&&J.d(b.Q,s.Q)&&b.as==s.as&&J.d(b.at,s.at)}, +gb8(a){return this.a}, +gbc(a){return this.c}, +gbu(){return this.d}, +ges(){return this.r}, +gjI(){return this.w}, +ghJ(){return this.x}, +gcH(){return this.y}} +A.UH.prototype={} +A.zP.prototype={ +H(a){var s,r,q,p,o,n,m,l=null +A.J(a) +s=A.aHy(a) +r=A.aL2(a) +q=this.c +p=q==null?s.b:q +if(p==null){q=r.b +q.toString +p=q}o=s.c +if(o==null){q=r.c +q.toString +o=q}n=s.d +if(n==null){q=r.d +q.toString +n=q}m=s.e +if(m==null){q=r.e +q.toString +m=q}q=s.f +if(q==null)q=r.f +return A.e1(A.dG(A.c_(l,l,B.n,l,l,new A.cX(l,l,new A.dT(B.q,B.q,A.aSZ(a,l,o),B.q),q,l,l,B.aq),l,o,new A.di(n,0,m,0),l,l,l,l),l,l),p,l)}} +A.arh.prototype={ +gci(a){var s=A.J(this.r).ax,r=s.to +if(r==null){r=s.n +s=r==null?s.k3:r}else s=r +return s}} +A.uu.prototype={ +gB(a){var s=this +return A.T(s.gci(s),s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.uu&&J.d(b.gci(b),s.gci(s))&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.d(b.f,s.f)}, +gci(a){return this.a}} +A.UL.prototype={} +A.zX.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.zX)if(J.d(b.a,r.a))if(J.d(b.b,r.b))if(b.c==r.c)if(J.d(b.d,r.d))if(J.d(b.e,r.e))if(J.d(b.f,r.f))if(J.d(b.r,r.r))s=b.w==r.w +return s}} +A.UX.prototype={} +A.zY.prototype={ +gfs(){return null}, +gB(a){var s=this +return A.T(s.a,s.gfs(),s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.zY)if(J.d(b.a,r.a)){b.gfs() +r.gfs() +s=J.d(b.c,r.c)&&J.d(b.d,r.d)}return s}} +A.UY.prototype={} +A.nf.prototype={ +qV(a){var s=null +A.J(a) +A.J(a) +return new A.V4(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.N,!0,B.a_,s,s,s)}, +Cm(a){return A.aHI(a).a}} +A.V6.prototype={ +qV(a){var s,r,q,p +A.J(a) +s=this.a1W(a) +r=s.ghY() +if(r==null)q=null +else{r=r.Y(B.aO) +r=r==null?null:r.r +q=r}if(q==null)q=14 +r=A.bW(a,B.bz) +r=r==null?null:r.gcA() +p=A.Lb(B.ht,B.og,B.of,(r==null?B.aB:r).aJ(0,q)/14) +return s.qP(new A.b2(p,t.mD))}} +A.V7.prototype={ +H(a){var s,r=null,q=this.e.a,p=r +if(q==null)q=p +else{q=q.Y(B.aO) +q=q==null?r:q.r}s=q +if(s==null)s=14 +q=A.bW(a,B.bz) +q=q==null?r:q.gcA() +q=A.A((q==null?B.aB:q).aJ(0,s)/14,1,2) +A.aHI(a) +q=A.V(8,4,q-1) +q.toString +p=A.b([this.d,new A.q6(1,B.kN,this.c,r)],t.p) +return A.cR(p,B.w,B.x,B.c1,q)}} +A.V4.prototype={ +gib(){var s,r=this,q=r.go +if(q===$){s=A.J(r.fy) +r.go!==$&&A.aA() +q=r.go=s.ax}return q}, +ghY(){return new A.b2(A.J(this.fy).ok.as,t.RP)}, +gb8(a){return new A.bh(new A.arn(this),t.b)}, +gcw(){return new A.bh(new A.arp(this),t.b)}, +gdA(){return new A.bh(new A.ars(this),t.b)}, +gbc(a){var s=this.gib().x1 +if(s==null)s=B.l +return new A.b2(s,t.De)}, +gbu(){return B.bh}, +gdl(a){return new A.bh(new A.aro(),t.N5)}, +gcl(a){return new A.b2(A.b0g(this.fy),t.mD)}, +gh3(){return B.mu}, +gh1(){return B.mt}, +gcH(){return new A.bh(new A.arq(this),t.mN)}, +gh2(){return B.dt}, +gbH(a){return B.du}, +gh4(){return new A.bh(new A.arr(),t.B_)}, +gdP(){return A.J(this.fy).Q}, +gh5(){return A.J(this.fy).f}, +gfI(){return A.J(this.fy).y}} +A.arn.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gib().k3 +return A.aC(31,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}s=this.a.gib() +r=s.p3 +return r==null?s.k2:r}, +$S:8} +A.arp.prototype={ +$1(a){var s +if(a.p(0,B.u)){s=this.a.gib().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return this.a.gib().b}, +$S:8} +A.ars.prototype={ +$1(a){if(a.p(0,B.T))return this.a.gib().b.b_(0.1) +if(a.p(0,B.A))return this.a.gib().b.b_(0.08) +if(a.p(0,B.E))return this.a.gib().b.b_(0.1) +return null}, +$S:68} +A.aro.prototype={ +$1(a){if(a.p(0,B.u))return 0 +if(a.p(0,B.T))return 1 +if(a.p(0,B.A))return 3 +if(a.p(0,B.E))return 1 +return 1}, +$S:152} +A.arq.prototype={ +$1(a){var s,r=this +if(a.p(0,B.u)){s=r.a.gib().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.T))return r.a.gib().b +if(a.p(0,B.A))return r.a.gib().b +if(a.p(0,B.E))return r.a.gib().b +return r.a.gib().b}, +$S:8} +A.arr.prototype={ +$1(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +$S:47} +A.A3.prototype={ +gB(a){return J.C(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.A3&&J.d(b.a,this.a)}} +A.V5.prototype={} +A.mt.prototype={} +A.Ag.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.Ag)if(J.d(b.a,r.a))if(J.d(b.b,r.b))if(J.d(b.c,r.c))if(J.d(b.d,r.d))if(J.d(b.e,r.e))if(J.d(b.f,r.f))if(J.d(b.r,r.r))if(J.d(b.w,r.w))if(J.d(b.x,r.x))if(J.d(b.y,r.y))s=J.d(b.z,r.z) +return s}} +A.Vd.prototype={} +A.Al.prototype={ +gB(a){return J.C(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.Al&&J.d(b.a,this.a)}} +A.Vj.prototype={} +A.Ao.prototype={ +ce(a){var s=this,r=!0 +if(s.f===a.f)if(s.r===a.r)if(s.w===a.w)r=s.x!==a.x +return r}} +A.a82.prototype={ +k(a){return"FloatingActionButtonLocation"}} +A.alx.prototype={ +arZ(){return!1}, +nu(a){var s=this.arZ()?4:0 +return new A.j(this.a00(a,s),this.a01(a,s))}} +A.a7P.prototype={ +a01(a,b){var s=a.c,r=a.b.b,q=a.a.b,p=a.w.b,o=s-q-Math.max(16,a.f.d-(a.r.b-s)+16) +if(p>0)o=Math.min(o,s-p-q-16) +return(r>0?Math.min(o,s-r-q/2):o)+b}} +A.a7O.prototype={ +a00(a,b){var s +switch(a.y.a){case 0:s=16+a.e.a-b +break +case 1:s=A.aXe(a,b) +break +default:s=null}return s}} +A.aru.prototype={ +k(a){return"FloatingActionButtonLocation.endFloat"}} +A.a81.prototype={ +k(a){return"FloatingActionButtonAnimator"}} +A.axY.prototype={ +a0_(a,b,c){if(c<0.5)return a +else return b}} +A.F6.prototype={ +gq(a){var s=this,r=s.w.x +r===$&&A.a() +if(r>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.V))return this.a.gb2().b +s=this.a.gb2() +r=s.rx +return r==null?s.k3:r}, +$S:8} +A.atc.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.V)){if(a.p(0,B.T))return q.a.gb2().b.b_(0.1) +if(a.p(0,B.A))return q.a.gb2().b.b_(0.08) +if(a.p(0,B.E))return q.a.gb2().b.b_(0.1)}if(a.p(0,B.T)){s=q.a.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.A)){s=q.a.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.E)){s=q.a.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return B.y}, +$S:8} +A.atb.prototype={ +$1(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +$S:47} +A.Vk.prototype={ +gb2(){var s,r=this,q=r.id +if(q===$){s=A.J(r.fy) +r.id!==$&&A.aA() +q=r.id=s.ax}return q}, +gb8(a){return new A.bh(new A.arN(this),t.b)}, +gcw(){return new A.bh(new A.arO(this),t.b)}, +gdA(){return new A.bh(new A.arQ(this),t.b)}, +gdl(a){return B.et}, +gbc(a){return B.bh}, +gbu(){return B.bh}, +gcl(a){return B.iZ}, +gh3(){return B.j_}, +gh2(){return B.dt}, +gh1(){return B.iY}, +geh(){return null}, +gbH(a){return B.du}, +gh4(){return new A.bh(new A.arP(),t.B_)}, +gdP(){return B.es}, +gh5(){return A.J(this.fy).f}, +gfI(){return A.J(this.fy).y}} +A.arN.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gb2().k3 +return A.aC(31,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.V))return this.a.gb2().b +s=this.a +if(s.go){s=s.gb2() +r=s.RG +return r==null?s.k2:r}return s.gb2().b}, +$S:8} +A.arO.prototype={ +$1(a){var s +if(a.p(0,B.u)){s=this.a.gb2().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.V))return this.a.gb2().c +s=this.a +if(s.go)return s.gb2().b +return s.gb2().c}, +$S:8} +A.arQ.prototype={ +$1(a){var s,r=this +if(a.p(0,B.V)){if(a.p(0,B.T))return r.a.gb2().c.b_(0.1) +if(a.p(0,B.A))return r.a.gb2().c.b_(0.08) +if(a.p(0,B.E))return r.a.gb2().c.b_(0.1)}s=r.a +if(s.go){if(a.p(0,B.T))return s.gb2().b.b_(0.1) +if(a.p(0,B.A))return s.gb2().b.b_(0.08) +if(a.p(0,B.E))return s.gb2().b.b_(0.1)}if(a.p(0,B.T))return s.gb2().c.b_(0.1) +if(a.p(0,B.A))return s.gb2().c.b_(0.08) +if(a.p(0,B.E))return s.gb2().c.b_(0.1) +return B.y}, +$S:8} +A.arP.prototype={ +$1(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +$S:47} +A.Vl.prototype={ +gb2(){var s,r=this,q=r.id +if(q===$){s=A.J(r.fy) +r.id!==$&&A.aA() +q=r.id=s.ax}return q}, +gb8(a){return new A.bh(new A.arR(this),t.b)}, +gcw(){return new A.bh(new A.arS(this),t.b)}, +gdA(){return new A.bh(new A.arU(this),t.b)}, +gdl(a){return B.et}, +gbc(a){return B.bh}, +gbu(){return B.bh}, +gcl(a){return B.iZ}, +gh3(){return B.j_}, +gh2(){return B.dt}, +gh1(){return B.iY}, +geh(){return null}, +gbH(a){return B.du}, +gh4(){return new A.bh(new A.arT(),t.B_)}, +gdP(){return B.es}, +gh5(){return A.J(this.fy).f}, +gfI(){return A.J(this.fy).y}} +A.arR.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gb2().k3 +return A.aC(31,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.V)){s=this.a.gb2() +r=s.Q +return r==null?s.y:r}s=this.a +if(s.go){s=s.gb2() +r=s.RG +return r==null?s.k2:r}s=s.gb2() +r=s.Q +return r==null?s.y:r}, +$S:8} +A.arS.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gb2().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.V)){s=this.a.gb2() +r=s.as +return r==null?s.z:r}s=this.a +if(s.go){s=s.gb2() +r=s.rx +return r==null?s.k3:r}s=s.gb2() +r=s.as +return r==null?s.z:r}, +$S:8} +A.arU.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.V)){if(a.p(0,B.T)){s=q.a.gb2() +r=s.as +return(r==null?s.z:r).b_(0.1)}if(a.p(0,B.A)){s=q.a.gb2() +r=s.as +return(r==null?s.z:r).b_(0.08)}if(a.p(0,B.E)){s=q.a.gb2() +r=s.as +return(r==null?s.z:r).b_(0.1)}}s=q.a +if(s.go){if(a.p(0,B.T)){s=s.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.A)){s=s.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.E)){s=s.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}}if(a.p(0,B.T)){s=s.gb2() +r=s.as +return(r==null?s.z:r).b_(0.1)}if(a.p(0,B.A)){s=s.gb2() +r=s.as +return(r==null?s.z:r).b_(0.08)}if(a.p(0,B.E)){s=s.gb2() +r=s.as +return(r==null?s.z:r).b_(0.1)}return B.y}, +$S:8} +A.arT.prototype={ +$1(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +$S:47} +A.Xd.prototype={ +gb2(){var s,r=this,q=r.id +if(q===$){s=A.J(r.fy) +r.id!==$&&A.aA() +q=r.id=s.ax}return q}, +gb8(a){return new A.bh(new A.avh(this),t.b)}, +gcw(){return new A.bh(new A.avi(this),t.b)}, +gdA(){return new A.bh(new A.avk(this),t.b)}, +gdl(a){return B.et}, +gbc(a){return B.bh}, +gbu(){return B.bh}, +gcl(a){return B.iZ}, +gh3(){return B.j_}, +gh2(){return B.dt}, +gh1(){return B.iY}, +geh(){return new A.bh(new A.avl(this),t.jY)}, +gbH(a){return B.du}, +gh4(){return new A.bh(new A.avj(),t.B_)}, +gdP(){return B.es}, +gh5(){return A.J(this.fy).f}, +gfI(){return A.J(this.fy).y}} +A.avh.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){if(a.p(0,B.V)){s=this.a.gb2().k3 +return A.aC(31,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return B.y}if(a.p(0,B.V)){s=this.a.gb2() +r=s.xr +return r==null?s.k3:r}return B.y}, +$S:8} +A.avi.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gb2().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.V)){s=this.a.gb2() +r=s.y1 +return r==null?s.k2:r}s=this.a.gb2() +r=s.rx +return r==null?s.k3:r}, +$S:8} +A.avk.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.V)){if(a.p(0,B.T)){s=q.a.gb2() +r=s.y1 +s=r==null?s.k2:r +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.A)){s=q.a.gb2() +r=s.y1 +s=r==null?s.k2:r +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.E)){s=q.a.gb2() +r=s.y1 +s=r==null?s.k2:r +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}}if(a.p(0,B.T)){s=q.a.gb2().k3 +return A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.A)){s=q.a.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.E)){s=q.a.gb2() +r=s.rx +s=r==null?s.k3:r +return A.aC(20,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return B.y}, +$S:8} +A.avl.prototype={ +$1(a){var s,r +if(a.p(0,B.V))return null +else{if(a.p(0,B.u)){s=this.a.gb2().k3 +return new A.aW(A.aC(31,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),1,B.v,-1)}s=this.a.gb2() +r=s.ry +if(r==null){r=s.n +s=r==null?s.k3:r}else s=r +return new A.aW(s,1,B.v,-1)}}, +$S:611} +A.avj.prototype={ +$1(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +$S:47} +A.km.prototype={ +gB(a){return J.C(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.km&&J.d(b.a,this.a)}} +A.AP.prototype={ +np(a,b,c){return A.AQ(c,this.w)}, +ce(a){return!this.w.j(0,a.w)}} +A.VR.prototype={} +A.AY.prototype={ +gaeu(){var s,r,q,p=this.e,o=p==null?null:p.gcl(p) +$label0$0:{s=o==null +r=s +if(r){p=B.as +break $label0$0}r=o instanceof A.cY +if(r){q=o==null?t.A0.a(o):o +p=q +break $label0$0}null.toString +p=null.E(0,p.gcl(p)) +break $label0$0}return p}, +ac(){return new A.Gr(new A.bu(null,t.A))}} +A.Gr.prototype={ +acY(){this.e=null}, +dJ(){var s=this.e +if(s!=null)s.l() +this.mb()}, +a6V(a){var s,r,q,p=this,o=null,n=p.e,m=p.a +if(n==null){n=m.e +m=A.aKS(a) +s=A.a1U(a,o) +r=A.aDy(a,t.zd) +r.toString +q=$.aa.an$.x.h(0,p.d).gU() +q.toString +q=new A.AZ(s,r,t.x.a(q),p.gacX()) +q.sar(n) +q.sYw(m) +r.zx(q) +p.e=q}else{n.sar(m.e) +n=p.e +n.toString +n.sYw(A.aKS(a)) +n=p.e +n.toString +n.sqN(A.a1U(a,o))}n=p.a.c +return n==null?new A.eZ(B.jz,o,o):n}, +H(a){var s=this,r=new A.bo(s.a.gaeu(),new A.e8(s.ga6U(),null),s.d),q=s.a,p=q.f +return p!=null||q.r!=null?A.e1(r,q.r,p):r}} +A.AZ.prototype={ +sar(a){var s,r=this +if(J.d(a,r.f))return +r.f=a +s=r.e +if(s!=null)s.l() +s=r.f +r.e=s==null?null:s.A5(r.gab7()) +r.a.aC()}, +sYw(a){if(a===this.r)return +this.r=a +this.a.aC()}, +sqN(a){if(a.j(0,this.w))return +this.w=a +this.a.aC()}, +ab8(){this.a.aC()}, +l(){var s=this.e +if(s!=null)s.l() +this.la()}, +BV(a,b){var s,r,q,p=this +if(p.e==null||!p.r)return +s=A.aef(b) +r=p.w.VZ(p.b.gt(0)) +if(s==null){q=a.a +J.ap(q.save()) +a.a8(0,b.a) +p.e.jW(a,B.i,r) +q.restore()}else p.e.jW(a,s,r)}} +A.nu.prototype={ +aaR(a){var s +if(a===B.Q&&!this.CW){s=this.ch +s===$&&A.a() +s.l() +this.la()}}, +l(){var s=this.ch +s===$&&A.a() +s.l() +this.la()}, +Rt(a,b,c){var s,r,q=this,p=a.a +J.ap(p.save()) +s=q.f +if(s!=null)a.VF(0,s.d9(b,q.ax)) +switch(q.z.a){case 1:s=b.gaV() +r=q.Q +a.mR(s,r==null?35:r,c) +break +case 0:s=q.as +if(!s.j(0,B.ac))a.ez(A.aDQ(b,s.c,s.d,s.a,s.b),c) +else a.fm(b,c) +break}p.restore()}, +BV(a,b){var s,r,q,p,o,n,m=this +$.a3() +s=A.bc() +r=m.e +q=m.ay +q===$&&A.a() +p=q.a +s.r=r.dh(q.b.a8(0,p.gq(p))).gq(0) +o=A.aef(b) +r=m.at +if(r!=null)n=r.$0() +else{r=m.b.gt(0) +n=new A.x(0,0,0+r.a,0+r.b)}if(o==null){r=a.a +J.ap(r.save()) +a.a8(0,b.a) +m.Rt(a,n,s) +r.restore()}else m.Rt(a,n.dj(o),s)}} +A.aAO.prototype={ +$0(){var s=this.a.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}, +$S:107} +A.atz.prototype={ +W6(a,b,c,d,e,f,g,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i=null,h=b==null?B.ac:b +if(a1==null){if(a2!=null){s=a2.$0() +r=new A.I(s.c-s.a,s.d-s.b)}else r=a3.gt(0) +s=Math.max(r.zL(0,B.i).gcj(),new A.j(0+r.a,0).a0(0,new A.j(0,0+r.b)).gcj())/2}else s=a1 +h=new A.B0(a0,h,s,A.b_z(a3,d,a2),a4,c,f,e,a3,g) +q=e.A +p=A.bK(i,B.k8,i,i,q) +o=e.ge9() +p.bk() +p.cF$.E(0,o) +p.bP(0) +h.cx=p +n=c.gdH(c) +m=t.o +l=t.gD +h.CW=new A.al(m.a(p),new A.nx(0,n),l.i("al")) +n=A.bK(i,B.d1,i,i,q) +n.bk() +n.cF$.E(0,o) +n.bP(0) +h.ch=n +p=t.Y +k=$.aO2() +j=p.i("fa") +h.ay=new A.al(m.a(n),new A.fa(k,new A.ay(s*0.3,s+5,p),j),j.i("al")) +q=A.bK(i,B.oc,i,i,q) +q.bk() +q.cF$.E(0,o) +q.bk() +o=q.co$ +o.b=!0 +o.a.push(h.gaev()) +h.db=q +o=c.gdH(c) +j=$.aO3() +l=l.i("fa") +h.cy=new A.al(m.a(q),new A.fa(j,new A.nx(o,0),l),l.i("al")) +e.zx(h) +return h}} +A.B0.prototype={ +uZ(a){var s=this.ch +s===$&&A.a() +s.e=B.Gq +s.bP(0) +s=this.cx +s===$&&A.a() +s.bP(0) +s=this.db +s===$&&A.a() +s.z=B.av +s.i8(1,B.U,B.oc)}, +aR(a){var s,r=this,q=r.cx +q===$&&A.a() +q.eL(0) +q=r.cx.x +q===$&&A.a() +s=1-q +q=r.db +q===$&&A.a() +q.sq(0,s) +if(s<1){q=r.db +q.z=B.av +q.i8(1,B.U,B.k8)}}, +aew(a){if(a===B.a2)this.l()}, +l(){var s=this,r=s.ch +r===$&&A.a() +r.l() +r=s.cx +r===$&&A.a() +r.l() +r=s.db +r===$&&A.a() +r.l() +s.la()}, +BV(a,b){var s,r,q,p,o,n,m=this,l=m.cx +l===$&&A.a() +l=l.r +if(l!=null&&l.a!=null){l=m.CW +l===$&&A.a() +s=l.a +r=l.b.a8(0,s.gq(s))}else{l=m.cy +l===$&&A.a() +s=l.a +r=l.b.a8(0,s.gq(s))}$.a3() +q=A.bc() +q.r=m.e.dh(r).gq(0) +l=m.at +p=l==null?null:l.$0() +s=p!=null?p.gaV():m.b.gt(0).kv(B.i) +o=m.ch +o===$&&A.a() +o=o.x +o===$&&A.a() +o=A.ky(m.z,s,B.bc.a8(0,o)) +o.toString +s=m.ay +s===$&&A.a() +n=s.a +n=s.b.a8(0,n.gq(n)) +m.Z7(m.Q,a,o,l,m.f,q,n,m.ax,b)}} +A.aAN.prototype={ +$0(){var s=this.a.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}, +$S:107} +A.atA.prototype={ +W6(a,b,c,d,e,f,g,h,i,j,k,a0){var s,r,q,p,o,n=null,m=b==null?B.ac:b,l=i==null?A.b_B(k,d,j,h):i +m=new A.B1(h,m,l,A.b_y(k,d,j),!d,a0,c,f,e,k,g) +s=e.A +r=A.bK(n,B.d1,n,n,s) +q=e.ge9() +r.bk() +r.cF$.E(0,q) +r.bP(0) +m.CW=r +p=t.Y +o=t.o +m.ch=new A.al(o.a(r),new A.ay(0,l,p),p.i("al")) +s=A.bK(n,B.N,n,n,s) +s.bk() +s.cF$.E(0,q) +s.bk() +q=s.co$ +q.b=!0 +q.a.push(m.gaex()) +m.cy=s +q=c.gdH(c) +m.cx=new A.al(o.a(s),new A.nx(q,0),t.gD.i("al")) +e.zx(m) +return m}} +A.B1.prototype={ +uZ(a){var s=B.d.h_(this.as/1),r=this.CW +r===$&&A.a() +r.e=A.ea(0,s,0) +r.bP(0) +this.cy.bP(0)}, +aR(a){var s=this.cy +if(s!=null)s.bP(0)}, +aey(a){if(a===B.a2)this.l()}, +l(){var s=this,r=s.CW +r===$&&A.a() +r.l() +s.cy.l() +s.cy=null +s.la()}, +BV(a,b){var s,r,q,p,o,n=this +$.a3() +s=A.bc() +r=n.e +q=n.cx +q===$&&A.a() +p=q.a +s.r=r.dh(q.b.a8(0,p.gq(p))).gq(0) +o=n.z +if(n.ax){r=n.b.gt(0).kv(B.i) +q=n.CW +q===$&&A.a() +q=q.x +q===$&&A.a() +o=A.ky(o,r,q)}o.toString +r=n.ch +r===$&&A.a() +q=r.a +q=r.b.a8(0,q.gq(q)) +n.Z7(n.Q,a,o,n.at,n.f,s,q,n.ay,b)}} +A.ny.prototype={ +uZ(a){}, +aR(a){}, +sci(a,b){if(b.j(0,this.e))return +this.e=b +this.a.aC()}, +sI5(a){if(J.d(a,this.f))return +this.f=a +this.a.aC()}, +Z7(a,b,c,d,e,f,g,h,i){var s,r=A.aef(i),q=b.a +J.ap(q.save()) +if(r==null)b.a8(0,i.a) +else q.translate(r.a,r.b) +if(d!=null){s=d.$0() +if(e!=null)b.VF(0,e.d9(s,h)) +else if(!a.j(0,B.ac))q.clipRRect(A.pk(A.aDQ(s,a.c,a.d,a.a,a.b)),$.yh(),!0) +else q.clipRect(A.cU(s),$.mQ()[1],!0)}b.mR(c,g,f) +q.restore()}} +A.uP.prototype={} +A.H4.prototype={ +ce(a){return this.f!==a.f}} +A.B_.prototype={ +CR(a){return null}, +H(a){var s=this,r=a.ad(t.sZ),q=r==null?null:r.f +return new A.Gq(s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.as,s.Q,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,!1,s.k3,!1,s.ok,s.p1,q,s.gLB(),s.p2,s.p3,null)}} +A.Gq.prototype={ +ac(){return new A.Gp(A.w(t.R9,t.Pr),new A.ba(A.b([],t.IR),t.yw),null)}} +A.oM.prototype={ +K(){return"_HighlightType."+this.b}} +A.Gp.prototype={ +gar9(){var s=this.r,r=A.n(s).i("bf<2>") +return!new A.aY(new A.bf(s,r),new A.atx(),r.i("aY")).ga7(0)}, +JW(a,b){var s,r=this.y,q=r.a,p=q.length +if(b){r.b=!0 +q.push(a)}else r.F(0,a) +s=q.length!==0 +if(s!==(p!==0)){r=this.a.p2 +if(r!=null)r.JW(this,s)}}, +alA(a){var s=this,r=s.z +if(r!=null)r.aR(0) +s.z=null +r=s.c +r.toString +s.T6(r) +r=s.e +if(r!=null)r.uZ(0) +s.e=null +r=s.a +if(r.d!=null){if(r.k1){r=s.c +r.toString +A.a7S(r)}r=s.a.d +if(r!=null)r.$0()}s.z=A.co(B.bd,new A.att(s))}, +M8(a){var s=this.c +s.toString +this.T6(s) +this.Xv()}, +a19(){return this.M8(null)}, +Je(){this.T(new A.atw())}, +gcq(){var s=this.a.R8 +if(s==null){s=this.x +s.toString}return s}, +vS(){var s,r,q=this +if(q.a.R8==null)q.x=A.anN() +s=q.gcq() +r=q.a +r.toString +s.d7(0,B.u,!(q.ie(r)||q.ih(r))) +q.gcq().Z(0,q.goV())}, +aw(){this.a5k() +this.vS() +$.aa.an$.d.a.f.E(0,this.gXn())}, +aH(a){var s,r,q,p,o=this +o.b0(a) +s=a.R8 +if(o.a.R8!=s){if(s!=null)s.J(0,o.goV()) +if(o.a.R8!=null){s=o.x +if(s!=null){s.P$=$.aw() +s.M$=0}o.x=null}o.vS()}s=o.a +if(s.cy!=a.cy||s.cx!==a.cx||!J.d(s.db,a.db)){s=o.r +r=s.h(0,B.ex) +if(r!=null){q=r.ch +q===$&&A.a() +q.l() +r.la() +o.L4(B.ex,!1,o.f)}p=s.h(0,B.Bn) +if(p!=null){s=p.ch +s===$&&A.a() +s.l() +p.la()}}if(!J.d(o.a.dx,a.dx))o.akM() +s=o.a +s.toString +q=o.ie(s)||o.ih(s) +if(q!==(o.ie(a)||o.ih(a))){q=o.gcq() +q.d7(0,B.u,!(o.ie(s)||o.ih(s))) +s=o.a +s.toString +if(!(o.ie(s)||o.ih(s))){o.gcq().d7(0,B.T,!1) +r=o.r.h(0,B.ex) +if(r!=null){s=r.ch +s===$&&A.a() +s.l() +r.la()}}o.L4(B.ex,!1,o.f)}o.L3()}, +l(){var s,r=this +$.aa.an$.d.a.f.F(0,r.gXn()) +r.gcq().J(0,r.goV()) +s=r.x +if(s!=null){s.P$=$.aw() +s.M$=0}s=r.z +if(s!=null)s.aR(0) +r.z=null +r.aD()}, +gpt(){if(!this.gar9()){var s=this.d +s=s!=null&&s.a!==0}else s=!0 +return s}, +a_S(a){switch(a.a){case 0:return B.N +case 1:case 2:this.a.toString +return B.k7}}, +L4(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.r,e=f.h(0,a),d=a.a +switch(d){case 0:h.gcq().d7(0,B.T,c) +break +case 1:if(b)h.gcq().d7(0,B.A,c) +break +case 2:break}if(a===B.dw){s=h.a.p2 +if(s!=null)s.JW(h,c)}s=e==null +if(c===(!s&&e.CW))return +if(c)if(s){s=h.a.fy +r=s==null?g:s.Y(h.gcq().a) +if(r==null){switch(d){case 0:s=h.a.fx +if(s==null){s=h.c +s.toString +s=A.J(s).cx}break +case 2:s=h.a.dy +if(s==null){s=h.c +s.toString +s=A.J(s).CW}break +case 1:s=h.a.fr +if(s==null){s=h.c +s.toString +s=A.J(s).db}break +default:s=g}r=s}s=h.c.gU() +s.toString +t.x.a(s) +q=h.c +q.toString +q=A.aDy(q,t.zd) +q.toString +p=h.a +p.toString +p=h.ie(p)||h.ih(p)?r:r.dh(0) +o=h.a +n=o.cx +m=o.cy +l=o.db +k=o.dx +o=o.p3.$1(s) +j=h.c.ad(t.I).w +i=h.a_S(a) +if(l==null)l=B.ac +s=new A.nu(n,m,l,o,j,p,k,q,s,new A.aty(h,a)) +i=A.bK(g,i,g,g,q.A) +i.bk() +i.cF$.E(0,q.ge9()) +i.bk() +k=i.co$ +k.b=!0 +k.a.push(s.gaaQ()) +i.bP(0) +s.ch=i +k=s.e +k=k.gdH(k) +s.ay=new A.al(t.o.a(i),new A.nx(0,k),t.gD.i("al")) +q.zx(s) +f.m(0,a,s) +h.nm()}else{e.CW=!0 +f=e.ch +f===$&&A.a() +f.bP(0)}else{e.CW=!1 +f=e.ch +f===$&&A.a() +f.dg(0)}switch(d){case 0:h.a.toString +break +case 1:if(b)h.a.toString +break +case 2:break}}, +lX(a,b){return this.L4(a,!0,b)}, +akM(){var s,r,q,p=this +for(s=p.r,s=new A.dl(s,s.r,s.e);s.u();){r=s.d +if(r!=null)r.sI5(p.a.dx)}s=p.e +if(s!=null)s.sI5(p.a.dx) +s=p.d +if(s!=null&&s.a!==0)for(r=A.n(s),s=new A.hu(s,s.pU(),r.i("hu<1>")),r=r.c;s.u();){q=s.d +if(q==null)q=r.a(q) +q.sI5(p.a.dx)}}, +a8r(a){var s,r,q,p,o,n,m,l,k=this,j={},i=k.c +i.toString +i=A.aDy(i,t.zd) +i.toString +s=k.c.gU() +s.toString +t.x.a(s) +r=s.dQ(a) +q=k.a.fy +q=q==null?null:q.Y(k.gcq().a) +p=q==null?k.a.go:q +if(p==null){q=k.c +q.toString +p=A.J(q).id}q=k.a +o=q.CW?q.p3.$1(s):null +q=k.a +n=q.db +m=q.dx +j.a=null +q=q.id +if(q==null){q=k.c +q.toString +q=A.J(q).y}l=k.a +return j.a=q.W6(0,n,p,l.CW,i,m,new A.ats(j,k),r,l.cy,o,s,k.c.ad(t.I).w)}, +aq7(a){if(this.c==null)return +this.T(new A.atv(this))}, +gajw(){var s,r=this,q=r.c +q.toString +q=A.bW(q,B.fS) +s=q==null?null:q.CW +$label0$0:{if(B.e8===s||s==null){q=r.a +q.toString +q=(r.ie(q)||r.ih(q))&&r.Q +break $label0$0}if(B.i8===s){q=r.Q +break $label0$0}q=null}return q}, +L3(){var s=$.aa.an$.d.a.b +switch((s==null?A.Gi():s).a){case 0:s=!1 +break +case 1:s=this.gajw() +break +default:s=null}this.lX(B.Bn,s)}, +aq9(a){var s=this +s.Q=a +s.gcq().d7(0,B.E,a) +s.L3() +s.a.toString}, +Xg(a){if(this.y.a.length!==0)return +this.ajU(a)}, +aqP(a){this.Xg(a) +this.a.toString}, +aqR(a){this.a.toString}, +aqE(a){this.Xg(a) +this.a.toString}, +aqG(a){this.a.toString}, +T7(a,b){var s,r,q,p,o=this +if(a!=null){s=a.gU() +s.toString +t.x.a(s) +r=s.gt(0) +r=new A.x(0,0,0+r.a,0+r.b).gaV() +q=A.bj(s.aM(0,null),r)}else q=b.a +o.gcq().d7(0,B.T,!0) +p=o.a8r(q) +s=o.d;(s==null?o.d=A.dj(t.nQ):s).E(0,p) +s=o.e +if(s!=null)s.aR(0) +o.e=p +o.nm() +o.lX(B.dw,!0)}, +ajU(a){return this.T7(null,a)}, +T6(a){return this.T7(a,null)}, +Xv(){var s=this,r=s.e +if(r!=null)r.uZ(0) +s.e=null +s.lX(B.dw,!1) +r=s.a +if(r.d!=null){if(r.k1){r=s.c +r.toString +A.a7S(r)}r=s.a.d +if(r!=null)r.$0()}}, +aqN(){var s=this,r=s.e +if(r!=null)r.aR(0) +s.e=null +s.a.toString +s.lX(B.dw,!1)}, +aqA(){var s=this,r=s.e +if(r!=null)r.uZ(0) +s.e=null +s.lX(B.dw,!1) +s.a.toString}, +aqC(){var s=this,r=s.e +if(r!=null)r.aR(0) +s.e=null +s.a.toString +s.lX(B.dw,!1)}, +dJ(){var s,r,q,p,o,n=this,m=n.d +if(m!=null){n.d=null +for(s=A.n(m),m=new A.hu(m,m.pU(),s.i("hu<1>")),s=s.c;m.u();){r=m.d;(r==null?s.a(r):r).l()}n.e=null}for(m=n.r,s=new A.eK(m,m.r,m.e);s.u();){r=s.d +q=m.h(0,r) +if(q!=null){p=q.ch +p===$&&A.a() +p.r.l() +p.r=null +o=p.co$ +o.b=!1 +B.b.a5(o.a) +o=o.gui() +if(o.a>0){o.b=o.c=o.d=o.e=null +o.a=0}p.cF$.a.a5(0) +p.Dp() +q.la()}m.m(0,r,null)}m=n.a.p2 +if(m!=null)m.JW(n,!1) +n.a5j()}, +ie(a){return a.d!=null}, +ih(a){return!1}, +aql(a){var s,r=this +r.f=!0 +s=r.a +s.toString +if(r.ie(s)||r.ih(s))r.lX(B.ex,!0)}, +aqn(a){this.f=!1 +this.lX(B.ex,!1)}, +ga7k(){var s,r=this,q=r.c +q.toString +q=A.bW(q,B.fS) +s=q==null?null:q.CW +$label0$0:{if(B.e8===s||s==null){q=r.a +q.toString +q=(r.ie(q)||r.ih(q))&&q.p1 +break $label0$0}if(B.i8===s){q=!0 +break $label0$0}q=null}return q}, +H(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null +a.xp(a1) +s=A.J(a1) +r=a.gcq().a.fU(B.QL) +q=t.l +p=A.eu(r,q) +p.E(0,B.T) +o=A.eu(r,q) +o.E(0,B.E) +q=A.eu(r,q) +q.E(0,B.A) +n=new A.atu(a,p,s,o,q) +for(q=a.r,p=new A.eK(q,q.r,q.e);p.u();){o=p.d +m=q.h(0,o) +if(m!=null)m.sci(0,n.$1(o))}q=a.e +if(q!=null){p=a.a.fy +p=p==null?a0:p.Y(a.gcq().a) +if(p==null)p=a.a.go +q.sci(0,p==null?A.J(a1).id:p)}q=a.a.ch +if(q==null)q=B.a_u +l=A.cu(q,a.gcq().a,t.Pb) +k=a.w +if(k===$){q=a.galz() +p=t.e +o=t.c +j=A.ab([B.mk,new A.d4(q,new A.ba(A.b([],p),o),t.wY),B.XN,new A.d4(q,new A.ba(A.b([],p),o),t.nz)],t.u,t.od) +a.w!==$&&A.aA() +a.w=j +k=j}q=a.a.ok +p=a.ga7k() +o=a.a +m=o.d +m=m==null?a0:a.ga18() +i=a.ie(o)?a.gaqO():a0 +h=a.ie(o)?a.gaqQ():a0 +g=a.ie(o)?a.gaqL():a0 +f=a.ie(o)?a.gaqM():a0 +e=a.ih(o)?a.gaqD():a0 +d=a.ih(o)?a.gaqF():a0 +c=a.ih(o)?a.gaqz():a0 +b=a.ih(o)?a.gaqB():a0 +return new A.H4(a,A.tH(k,A.nl(!1,p,A.jt(A.aSF(A.bG(a0,a0,A.qf(B.aH,o.c,B.a9,!0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,c,b,e,d,g,f,i,h,a0,a0,a0),!1,a0,a0,!1,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,m,a0,a0,a0,a0,a0,a0,a0,a0,B.z,a0),l),l,a0,a.gaqk(),a.gaqm(),a0),a0,a0,a0,q,!0,a0,a.gaq8(),a0,a0,a0,a0)),a0)}, +$iaEA:1} +A.atx.prototype={ +$1(a){return a!=null}, +$S:646} +A.att.prototype={ +$0(){this.a.lX(B.dw,!1)}, +$S:0} +A.atw.prototype={ +$0(){}, +$S:0} +A.aty.prototype={ +$0(){var s=this.a +s.r.m(0,this.b,null) +s.nm()}, +$S:0} +A.ats.prototype={ +$0(){var s,r=this.b,q=r.d +if(q!=null){s=this.a +q.F(0,s.a) +if(r.e==s.a)r.e=null +r.nm()}}, +$S:0} +A.atv.prototype={ +$0(){this.a.L3()}, +$S:0} +A.atu.prototype={ +$1(a){var s,r,q=this,p=null +switch(a.a){case 0:s=q.a +r=s.a.fy +r=r==null?p:r.Y(q.b) +s=r==null?s.a.fx:r +if(s==null)s=q.c.cx +break +case 2:s=q.a +r=s.a.fy +r=r==null?p:r.Y(q.d) +s=r==null?s.a.dy:r +if(s==null)s=q.c.CW +break +case 1:s=q.a +r=s.a.fy +r=r==null?p:r.Y(q.e) +s=r==null?s.a.fr:r +if(s==null)s=q.c.db +break +default:s=p}return s}, +$S:660} +A.NL.prototype={} +A.Ju.prototype={ +aw(){this.aK() +if(this.gpt())this.pZ()}, +dJ(){var s=this.fZ$ +if(s!=null){s.ak() +s.cY() +this.fZ$=null}this.mb()}} +A.hQ.prototype={} +A.WZ.prototype={ +A_(a){return B.mH}, +gn2(){return!1}, +gj1(){return B.as}, +aJ(a,b){return B.mH}, +hz(a,b){var s=A.bQ($.a3().w) +s.aq(new A.fe(a)) +return s}, +d9(a,b){var s=A.bQ($.a3().w) +s.aq(new A.fe(a)) +return s}, +hq(a,b,c,d){a.fm(b,c)}, +gfv(){return!0}, +rw(a,b,c,d,e,f){}, +ec(a,b,c){return this.rw(a,b,0,0,null,c)}} +A.jP.prototype={ +gn2(){return!1}, +A_(a){var s=a==null?this.a:a +return new A.jP(this.b,s)}, +gj1(){return new A.az(0,0,0,this.a.b)}, +aJ(a,b){return new A.jP(B.n4,this.a.aJ(0,b))}, +hz(a,b){var s=A.bQ($.a3().w),r=a.a,q=a.b +s.aq(new A.fe(new A.x(r,q,r+(a.c-r),q+Math.max(0,a.d-q-this.a.b)))) +return s}, +d9(a,b){var s=A.bQ($.a3().w) +s.aq(new A.em(this.b.cS(a))) +return s}, +hq(a,b,c,d){a.ez(this.b.cS(b),c)}, +gfv(){return!0}, +d1(a,b){var s,r +if(a instanceof A.jP){s=A.aX(a.a,this.a,b) +r=A.j4(a.b,this.b,b) +r.toString +return new A.jP(r,s)}return this.xz(a,b)}, +d2(a,b){var s,r +if(a instanceof A.jP){s=A.aX(this.a,a.a,b) +r=A.j4(this.b,a.b,b) +r.toString +return new A.jP(r,s)}return this.xA(a,b)}, +rw(a,b,c,d,e,f){var s,r,q,p,o,n=this.a,m=n.c +if(m===B.aD)return +s=this.b +r=s.c +q=!r.j(0,B.C)||!s.d.j(0,B.C) +p=b.d +if(q){q=(p-b.b)/2 +r=r.VD(0,new A.aG(q,q)) +q=s.d.VD(0,new A.aG(q,q)) +s=n.a +A.aCC(a,b,new A.cF(B.C,B.C,r,q),new A.aW(s,n.b,m,-1),s,B.q,B.q,B.aq,f,B.q)}else{o=new A.j(0,n.b/2) +a.lw(new A.j(b.a,p).a0(0,o),new A.j(b.c,p).a0(0,o),n.h7())}}, +ec(a,b,c){return this.rw(a,b,0,0,null,c)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.jP&&b.a.j(0,s.a)&&b.b.j(0,s.b)}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.dL.prototype={ +gn2(){return!0}, +A_(a){var s=a==null?this.a:a +return new A.dL(this.b,this.c,s)}, +gj1(){var s=this.a.b +return new A.az(s,s,s,s)}, +aJ(a,b){var s=this.a.aJ(0,b) +return new A.dL(this.b*b,this.c.a6(0,b),s)}, +d1(a,b){var s,r +if(a instanceof A.dL){s=A.j4(a.c,this.c,b) +s.toString +r=A.aX(a.a,this.a,b) +return new A.dL(a.b,s,r)}return this.xz(a,b)}, +d2(a,b){var s,r +if(a instanceof A.dL){s=A.j4(this.c,a.c,b) +s.toString +r=A.aX(this.a,a.a,b) +return new A.dL(a.b,s,r)}return this.xA(a,b)}, +hz(a,b){var s=A.bQ($.a3().w) +s.aq(new A.em(this.c.cS(a).cI(-this.a.b))) +return s}, +d9(a,b){var s=A.bQ($.a3().w) +s.aq(new A.em(this.c.cS(a))) +return s}, +hq(a,b,c,d){a.ez(this.c.cS(b),c)}, +gfv(){return!0}, +rw(b0,b1,b2,b3,b4,b5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this.a,a8=a7.h7(),a9=this.c.cS(b1) +a7=a7.b/2 +s=a9.cI(-a7) +if(b4==null||b2<=0||b3===0)b0.ez(s,a8) +else{r=this.b +q=A.V(0,b2+r*2,b3) +q.toString +switch(b5.a){case 0:r=b4+r-q +break +case 1:r=b4-r +break +default:r=null}p=a9.c-a9.a +r=Math.max(0,r) +o=s.CX() +n=o.a +m=o.b +l=o.e +k=o.f +j=o.c +i=o.r +h=i*2 +g=j-h +f=o.w +e=new A.x(g,m,g+h,m+f*2) +h=o.x +g=h*2 +d=j-g +c=o.d +b=o.y +a=b*2 +a0=c-a +a1=o.Q +a2=a1*2 +a3=c-a2 +a4=o.z +a5=A.bQ($.a3().w) +if(!new A.aG(l,k).j(0,B.C))a5.aq(new A.mT(new A.x(n,m,n+l*2,m+k*2),3.141592653589793,Math.acos(A.A(1-r/l,0,1)))) +else a5.aq(new A.eL(n-a7,m)) +if(r>l)a5.aq(new A.cb(r,m)) +a7=r+q +if(a7#"+A.bi(this)}} +A.Gt.prototype={ +e8(a){var s=A.dv(this.a,this.b,a) +s.toString +return t.U1.a(s)}} +A.W_.prototype={ +aA(a,b){var s,r,q=this,p=q.c.a8(0,q.b.gq(0)),o=new A.x(0,0,0+b.a,0+b.b),n=q.w.a8(0,q.x.gq(0)) +n.toString +s=A.aH7(n,q.r) +if(s.gdH(s)>0){n=p.d9(o,q.f) +$.a3() +r=A.bc() +r.r=s.gq(s) +r.b=B.c3 +a.ip(n,r)}n=q.e +r=n.a +p.rw(a,o,n.b,q.d.gq(0),r,q.f)}, +ew(a){var s=this +return s.b!==a.b||s.x!==a.x||s.d!==a.d||s.c!==a.c||!s.e.j(0,a.e)||s.f!==a.f}, +k(a){return"#"+A.bi(this)}} +A.Fd.prototype={ +ac(){return new A.Tr(null,null)}} +A.Tr.prototype={ +aw(){var s,r=this,q=null +r.aK() +r.e=A.bK(q,B.Gl,q,r.a.w?1:0,r) +s=A.bK(q,B.cF,q,q,r) +r.d=s +r.f=A.cw(B.ao,s,new A.lv(B.ao)) +s=r.a.c +r.r=new A.Gt(s,s) +r.w=A.cw(B.U,r.e,q) +s=r.a.r +r.x=new A.fj(A.aC(0,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),r.a.r)}, +l(){var s=this,r=s.d +r===$&&A.a() +r.l() +r=s.e +r===$&&A.a() +r.l() +r=s.f +r===$&&A.a() +r.l() +r=s.w +r===$&&A.a() +r.l() +s.a53()}, +aH(a){var s,r,q=this +q.b0(a) +s=a.c +if(!q.a.c.j(0,s)){q.r=new A.Gt(s,q.a.c) +s=q.d +s===$&&A.a() +s.sq(0,0) +s.bP(0)}if(!q.a.r.j(0,a.r)){s=q.a.r +q.x=new A.fj(A.aC(0,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),q.a.r)}s=q.a.w +if(s!==a.w){r=q.e +if(s){r===$&&A.a() +r.bP(0)}else{r===$&&A.a() +r.dg(0)}}}, +H(a){var s,r,q,p,o,n,m,l,k=this,j=k.f +j===$&&A.a() +s=k.a.d +r=k.e +r===$&&A.a() +r=A.b([j,s,r],t.Eo) +s=k.f +j=k.r +j===$&&A.a() +q=k.a +p=q.e +q=q.d +o=a.ad(t.I).w +n=k.a.f +m=k.x +m===$&&A.a() +l=k.w +l===$&&A.a() +return A.ip(null,new A.W_(s,j,p,q,o,n,m,l,new A.tg(r)),null,null,B.I)}} +A.Gg.prototype={ +ac(){return new A.Gh(null,null)}} +A.Gh.prototype={ +gyi(){this.a.toString +return!1}, +gkk(){var s=this.a.x +return s!=null}, +aw(){var s,r=this +r.aK() +s=A.bK(null,B.cF,null,null,r) +r.d=s +if(r.gkk()){r.f=r.ty() +s.sq(0,1)}else if(r.gyi())r.e=r.xJ() +s=r.d +s.bk() +s.cF$.E(0,r.gFn())}, +l(){var s=this.d +s===$&&A.a() +s.l() +this.a5i()}, +Fo(){this.T(new A.asC())}, +aH(a){var s,r,q=this +q.b0(a) +s=q.a.x!=null +r=s!==(a.x!=null) +if(r)if(s){q.f=q.ty() +s=q.d +s===$&&A.a() +s.bP(0)}else{s=q.d +s===$&&A.a() +s.dg(0)}}, +xJ(){var s,r,q,p,o=null,n=t.Y,m=this.d +m===$&&A.a() +s=this.a +r=s.e +r.toString +q=s.f +p=s.c +p=A.ai(r,s.r,B.aA,o,q,p,o) +return A.bG(o,o,new A.d5(new A.al(m,new A.ay(1,0,n),n.i("al")),!1,p,o),!0,o,o,!1,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,B.z,o)}, +ty(){var s={},r=this.a,q=r.x +s.a=r.w +return new A.e8(new A.asB(s,this,q),null)}, +H(a){var s,r,q=this,p=null,o=q.d +o===$&&A.a() +if(o.gaN(0)===B.Q){q.f=null +if(q.gyi())return q.e=q.xJ() +else{q.e=null +return B.ay}}if(o.gaN(0)===B.a2){q.e=null +if(q.gkk())return q.f=q.ty() +else{q.f=null +return B.ay}}s=q.e +if(s==null&&q.gkk())return q.ty() +r=q.f +if(r==null&&q.gyi())return q.xJ() +if(q.gkk()){r=t.Y +return A.hp(B.bA,A.b([new A.d5(new A.al(o,new A.ay(1,0,r),r.i("al")),!1,s,p),q.ty()],t.p),B.B,B.bp,p)}if(q.gyi())return A.hp(B.bA,A.b([q.xJ(),new A.d5(o,!1,r,p)],t.p),B.B,B.bp,p) +return B.ay}} +A.asC.prototype={ +$0(){}, +$S:0} +A.asB.prototype={ +$1(a){var s,r,q,p,o,n,m=null,l=A.bW(a,B.Bp) +l=l==null?m:l.ch +s=this.b +r=s.d +r===$&&A.a() +q=new A.ay(B.O_,B.i,t.Ni).a8(0,r.gq(0)) +p=this.a.a +if(p==null){p=this.c +p.toString +s=s.a +o=s.y +n=s.c +n=A.ai(p,s.z,B.aA,m,o,n,m) +s=n}else s=p +return A.bG(m,m,new A.d5(r,!1,A.aI2(s,!0,q),m),!0,m,m,!1,m,m,m,m,m,m,m,l!==!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,B.z,m)}, +$S:243} +A.Ar.prototype={ +K(){return"FloatingLabelBehavior."+this.b}} +A.MW.prototype={ +gB(a){return B.f.gB(-1)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.MW}, +k(a){return A.aTT(-1)}} +A.eR.prototype={ +K(){return"_DecorationSlot."+this.b}} +A.Ut.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Ut&&b.a.j(0,s.a)&&b.c===s.c&&b.d===s.d&&b.e.j(0,s.e)&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.x==s.x&&b.y===s.y&&b.z.j(0,s.z)&&b.Q===s.Q&&J.d(b.at,s.at)&&J.d(b.ax,s.ax)&&J.d(b.ay,s.ay)&&J.d(b.ch,s.ch)&&J.d(b.CW,s.CW)&&J.d(b.cx,s.cx)&&J.d(b.cy,s.cy)&&J.d(b.db,s.db)&&b.dx.pO(0,s.dx)&&J.d(b.dy,s.dy)&&b.fr.pO(0,s.fr)}, +gB(a){var s=this +return A.T(s.a,s.c,s.d,s.e,s.f,s.r,!1,s.x,s.y,s.z,s.Q,!0,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,A.T(s.db,s.dx,s.dy,s.fr,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}} +A.awR.prototype={} +A.Hr.prototype={ +gim(a){var s=this.df$,r=s.h(0,B.bS),q=A.b([],t.Ik),p=s.h(0,B.aQ) +if(p!=null)q.push(p) +p=s.h(0,B.b7) +if(p!=null)q.push(p) +p=s.h(0,B.aa) +if(p!=null)q.push(p) +p=s.h(0,B.b0) +if(p!=null)q.push(p) +p=s.h(0,B.bj) +if(p!=null)q.push(p) +p=s.h(0,B.bk) +if(p!=null)q.push(p) +p=s.h(0,B.ae) +if(p!=null)q.push(p) +p=s.h(0,B.bi) +if(p!=null)q.push(p) +if(r!=null)q.push(r) +p=s.h(0,B.bT) +if(p!=null)q.push(p) +s=s.h(0,B.cP) +if(s!=null)q.push(s) +return q}, +sar(a){if(this.n.j(0,a))return +this.n=a +this.a_()}, +sbC(a){if(this.I===a)return +this.I=a +this.a_()}, +savn(a,b){if(this.X===b)return +this.X=b +this.a_()}, +savm(a){return}, +sp5(a){if(this.S===a)return +this.S=a +this.aY()}, +sIG(a){return}, +gFt(){var s=this.n.f.gn2() +return s}, +eS(a){var s,r=this.df$ +if(r.h(0,B.aQ)!=null){s=r.h(0,B.aQ) +s.toString +a.$1(s)}if(r.h(0,B.bj)!=null){s=r.h(0,B.bj) +s.toString +a.$1(s)}if(r.h(0,B.aa)!=null){s=r.h(0,B.aa) +s.toString +a.$1(s)}if(r.h(0,B.ae)!=null){s=r.h(0,B.ae) +s.toString +a.$1(s)}if(r.h(0,B.bi)!=null)if(this.S){s=r.h(0,B.bi) +s.toString +a.$1(s)}else if(r.h(0,B.ae)==null){s=r.h(0,B.bi) +s.toString +a.$1(s)}if(r.h(0,B.b7)!=null){s=r.h(0,B.b7) +s.toString +a.$1(s)}if(r.h(0,B.b0)!=null){s=r.h(0,B.b0) +s.toString +a.$1(s)}if(r.h(0,B.bk)!=null){s=r.h(0,B.bk) +s.toString +a.$1(s)}if(r.h(0,B.cP)!=null){s=r.h(0,B.cP) +s.toString +a.$1(s)}s=r.h(0,B.bS) +s.toString +a.$1(s) +if(r.h(0,B.bT)!=null){r=r.h(0,B.bT) +r.toString +a.$1(r)}}, +a82(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=null,g=this.df$,f=g.h(0,B.bT) +$label0$0:{if(f instanceof A.y){f=new A.am(c.$2(f,a),b.$2(f,a)) +break $label0$0}if(f==null){f=B.Pq +break $label0$0}f=h}s=f.a +r=h +q=f.b +r=q +p=s +o=g.h(0,B.bT)!=null?16:0 +n=a.oz(new A.az(p.a+o,0,0,0)) +f=g.h(0,B.bS) +f.toString +m=c.$2(f,n).b +if(m===0&&p.b===0)return h +g=g.h(0,B.bS) +g.toString +g=b.$2(g,n) +g=Math.max(A.l4(r),A.l4(g)) +f=this.ab +l=f?4:8 +k=Math.max(A.l4(r),m) +j=f?4:8 +i=Math.max(p.b,m) +f=f?4:8 +return new A.Yi(g+l,k+j,i+f)}, +Fu(d5,d6,d7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7=this,c8=d5.b,c9=d5.d,d0=new A.ak(0,c8,0,c9),d1=c7.df$,d2=d1.h(0,B.aQ),d3=d2==null?0:d7.$2(d2,d0).a,d4=d0.oz(new A.az(d3,0,0,0)) +d2=c7.n +s=d2.a +d2=d2.Q +r=d4.oz(new A.di(s.a+d2,0,s.c+d2,0)) +q=c7.a82(r,d6,d7) +d2=d1.h(0,B.aa) +s=d1.h(0,B.b0) +p=d2==null +o=p?B.I:d7.$2(d2,d4) +d2=s==null +n=d2?B.I:d7.$2(s,d4) +s=d1.h(0,B.bj) +m=d1.h(0,B.bk) +l=s==null +k=l?B.I:d7.$2(s,r) +j=m==null +i=j?B.I:d7.$2(m,r) +h=k.a +if(p){g=c7.n +g=g.a.a+g.Q}else{g=o.a +g+=c7.ab?4:0}f=i.a +if(d2){e=c7.n +e=e.a.c+e.Q}else{e=n.a +e+=c7.ab?4:0}d=Math.max(0,c8-new A.di(d3+h+g,0,f+e,0).gfq()) +e=d1.h(0,B.ae) +if(e!=null){h=c7.n.f.gn2() +c=n.a +if(h){h=c7.n +h=A.V(c,h.a.c,h.d) +h.toString +c=h}h=c7.n +p=p?h.a.a:o.a +d2=d2?h.a.c:c +b=Math.max(0,c8-(h.Q*2+d3+p+d2)) +h=A.V(1,1.3333333333333333,h.d) +h.toString +a=d0.VY(b*h) +d7.$2(e,a) +h=c7.n +a0=h.c +a1=h.f.gn2()?Math.max(a0-d6.$2(e,a),0):a0}else a1=0 +d2=q==null +a2=d2?null:q.b +if(a2==null)a2=0 +p=c7.n +h=p.a +p=p.z +a3=d0.oz(new A.az(0,h.gct(0)+h.gcC(0)+a1+a2+new A.j(p.a,p.b).a6(0,4).b,0,0)).wE(d) +p=d1.h(0,B.b7) +d1=d1.h(0,B.bi) +h=p==null +a4=h?B.I:d7.$2(p,a3) +g=d1==null +a5=g?B.I:d7.$2(d1,d0.wE(d)) +a6=h?0:d6.$2(p,a3) +a7=g?0:d6.$2(d1,d0.wE(d)) +d1=a5.b +a8=Math.max(d1,a4.b) +a9=Math.max(a6,a7) +b0=l?0:d6.$2(s,r) +b1=j?0:d6.$2(m,r) +b2=Math.max(0,Math.max(b0,b1)-a9) +b3=Math.max(0,Math.max(k.b-b0,i.b-b1)-(a8-a9)) +b4=Math.max(o.b,n.b) +d1=c7.n +s=d1.a +p=s.b +m=d1.z +l=m.a +m=m.b +b5=Math.max(b4,a1+p+b2+a8+b3+s.d+new A.j(l,m).a6(0,4).b) +d1=d1.x +d1.toString +b6=d1?a8:48 +b7=Math.max(0,c9-a2) +b8=Math.min(Math.max(b5,b6),b7) +b9=b6>b5?(b6-b5)/2:0 +c0=Math.max(0,b5-b7) +c9=c7.a2 +d1=c7.gFt()?B.AI:B.AJ +c1=(d1.a+1)/2 +c2=b2-c0*(1-c1) +c3=p+a1+a9+c2+b9+new A.j(l,m).a6(0,4).b/2 +c4=b8-(s.gct(0)+s.gcC(0))-a1-new A.j(l,m).a6(0,4).b-(b2+a8+b3) +if(c7.gFt()){c5=a9+c2/2+(b8-a8)/2 +c9=c7.gFt()?B.AI:B.AJ +c9=c9.a +c6=c5+(c9<=0?Math.max(c5-c3,0):Math.max(c3+c4-c5,0))*c9}else c6=c3+c4*c1 +c9=d2?null:q.c +return new A.awR(a3,c6,b8,q,new A.I(c8,b8+(c9==null?0:c9)))}, +bb(a){var s,r,q,p,o,n=this,m=n.df$,l=m.h(0,B.b7),k=Math.max(A.iU(l,a),A.iU(m.h(0,B.bi),a)) +l=A.iU(m.h(0,B.aQ),a) +if(m.h(0,B.aa)!=null)s=n.ab?4:0 +else{s=n.n +s=s.a.a+s.Q}r=A.iU(m.h(0,B.aa),a) +q=A.iU(m.h(0,B.bj),a) +p=A.iU(m.h(0,B.bk),a) +o=A.iU(m.h(0,B.b0),a) +if(m.h(0,B.b0)!=null)m=n.ab?4:0 +else{m=n.n +m=m.a.c+m.Q}return l+s+r+q+k+p+o+m}, +b7(a){var s,r,q,p,o,n=this,m=n.df$,l=m.h(0,B.b7),k=Math.max(A.xu(l,a),A.xu(m.h(0,B.bi),a)) +l=A.xu(m.h(0,B.aQ),a) +if(m.h(0,B.aa)!=null)s=n.ab?4:0 +else{s=n.n +s=s.a.a+s.Q}r=A.xu(m.h(0,B.aa),a) +q=A.xu(m.h(0,B.bj),a) +p=A.xu(m.h(0,B.bk),a) +o=A.xu(m.h(0,B.b0),a) +if(m.h(0,B.b0)!=null)m=n.ab?4:0 +else{m=n.n +m=m.a.c+m.Q}return l+s+r+q+k+p+o+m}, +aeP(a,b,c){var s,r,q,p,o,n +for(s=c.length,r=0,q=0;q0)j+=a1.ab?4:8 +i=A.xv(a2.h(0,B.bj),a4) +h=A.iU(a2.h(0,B.bj),i) +g=A.xv(a2.h(0,B.bk),a4) +f=Math.max(a4-h-A.iU(a2.h(0,B.bk),g)-r-p,0) +o=A.b([a2.h(0,B.b7)],t.iG) +if(a1.n.y)o.push(a2.h(0,B.bi)) +e=t.n +d=B.b.Ca(A.b([a1.aeP(0,f,o),i,g],e),B.nb) +o=a1.n +a2=a2.h(0,B.ae)==null?0:a1.n.c +c=a1.n +b=c.z +a=B.b.Ca(A.b([a3,o.a.b+a2+d+c.a.d+new A.j(b.a,b.b).a6(0,4).b,s,q],e),B.nb) +a2=a1.n.x +a2.toString +a0=a2?0:48 +return Math.max(a,a0)+j}, +b6(a){return this.ap(B.aL,a,this.gbD())}, +fk(a){var s,r,q=this.df$.h(0,B.b7) +if(q==null)return 0 +s=q.b +s.toString +s=t.q.a(s).a +r=q.k9(a) +q=r==null?q.gt(0).b:r +return s.b+q}, +ds(a,b){var s,r,q,p,o=this.df$.h(0,B.b7) +if(o==null)return 0 +s=this.Fu(a,A.aNf(),A.fE()) +switch(b.a){case 0:o=0 +break +case 1:r=s.a +q=o.eU(r,B.X) +if(q==null)q=o.ap(B.R,r,o.gc8()).b +p=o.eU(r,B.o) +o=q-(p==null?o.ap(B.R,r,o.gc8()).b:p) +break +default:o=null}return o+s.b}, +cE(a){return a.b3(this.Fu(a,A.aNf(),A.fE()).e)}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=t.k.a(A.t.prototype.gW.call(a2)) +a2.au=null +s=a2.Fu(a4,A.b1W(),A.mM()) +r=s.e +a2.fy=a4.b3(r) +q=r.a +r=a2.df$ +p=r.h(0,B.cP) +if(p!=null){p.c3(A.le(s.c,q-A.fW(r.h(0,B.aQ)).a),!0) +switch(a2.I.a){case 0:o=0 +break +case 1:o=A.fW(r.h(0,B.aQ)).a +break +default:o=a3}n=p.b +n.toString +t.q.a(n).a=new A.j(o,0)}m=s.c +l=new A.awX(m) +if(r.h(0,B.aQ)!=null){switch(a2.I.a){case 0:o=q-r.h(0,B.aQ).gt(0).a +break +case 1:o=0 +break +default:o=a3}n=r.h(0,B.aQ) +n.toString +l.$2(n,o)}o=s.d +o=o==null?a3:o.a +k=(o==null?0:o)+m +o=r.h(0,B.bT) +n=r.h(0,B.bS) +n.toString +n=n.m0(B.o) +n.toString +j=o==null +if(j)i=a3 +else{h=o.m0(B.o) +h.toString +i=h}if(i==null)i=0 +switch(a2.I.a){case 1:g=a2.n.a.a+A.fW(r.h(0,B.aQ)).a +f=q-a2.n.a.c +h=r.h(0,B.bS) +h.toString +h=h.b +h.toString +e=t.q +e.a(h).a=new A.j(g+a2.n.Q,k-n) +if(!j){n=o.b +n.toString +e.a(n).a=new A.j(f-o.gt(0).a-a2.n.Q,k-i)}break +case 0:g=q-a2.n.a.a-A.fW(r.h(0,B.aQ)).a +f=a2.n.a.c +h=r.h(0,B.bS) +h.toString +h=h.b +h.toString +e=t.q +e.a(h) +d=r.h(0,B.bS) +d.toString +d=d.gt(0) +c=a2.n.Q +h.a=new A.j(g-d.a-c,k-n) +if(!j){o=o.b +o.toString +e.a(o).a=new A.j(f+c,k-i)}break +default:f=a3 +g=f}b=new A.awW(s.b) +switch(a2.I.a){case 0:o=r.h(0,B.aa) +n=a2.n +if(o!=null){g+=n.a.a +o=r.h(0,B.aa) +o.toString +o=l.$2(o,g-r.h(0,B.aa).gt(0).a) +n=a2.ab?4:0 +g=g-o-n}else g-=n.Q +if(r.h(0,B.ae)!=null){o=r.h(0,B.ae) +o.toString +l.$2(o,g-r.h(0,B.ae).gt(0).a)}if(r.h(0,B.bj)!=null){o=r.h(0,B.bj) +o.toString +g-=b.$2(o,g-r.h(0,B.bj).gt(0).a)}if(r.h(0,B.b7)!=null){o=r.h(0,B.b7) +o.toString +b.$2(o,g-r.h(0,B.b7).gt(0).a)}if(r.h(0,B.bi)!=null){o=r.h(0,B.bi) +o.toString +b.$2(o,g-r.h(0,B.bi).gt(0).a)}o=r.h(0,B.b0) +n=a2.n +if(o!=null){f-=n.a.c +o=r.h(0,B.b0) +o.toString +o=l.$2(o,f) +n=a2.ab?4:0 +f=f+o+n}else f+=n.Q +if(r.h(0,B.bk)!=null){o=r.h(0,B.bk) +o.toString +b.$2(o,f)}break +case 1:o=r.h(0,B.aa) +n=a2.n +if(o!=null){g-=n.a.a +o=r.h(0,B.aa) +o.toString +o=l.$2(o,g) +n=a2.ab?4:0 +g=g+o+n}else g+=n.Q +if(r.h(0,B.ae)!=null){o=r.h(0,B.ae) +o.toString +l.$2(o,g)}if(r.h(0,B.bj)!=null){o=r.h(0,B.bj) +o.toString +g+=b.$2(o,g)}if(r.h(0,B.b7)!=null){o=r.h(0,B.b7) +o.toString +b.$2(o,g)}if(r.h(0,B.bi)!=null){o=r.h(0,B.bi) +o.toString +b.$2(o,g)}o=r.h(0,B.b0) +n=a2.n +if(o!=null){f+=n.a.c +o=r.h(0,B.b0) +o.toString +o=l.$2(o,f-r.h(0,B.b0).gt(0).a) +n=a2.ab?4:0 +f=f-o-n}else f-=n.Q +if(r.h(0,B.bk)!=null){o=r.h(0,B.bk) +o.toString +b.$2(o,f-r.h(0,B.bk).gt(0).a)}break}if(r.h(0,B.ae)!=null){o=r.h(0,B.ae).b +o.toString +a=t.q.a(o).a.a +a0=A.fW(r.h(0,B.ae)).a*0.75 +switch(a2.I.a){case 0:o=r.h(0,B.aa) +a1=o!=null?a2.ab?A.fW(r.h(0,B.aa)).a-a2.n.a.c:0:0 +a2.n.r.sbI(0,A.V(a+A.fW(r.h(0,B.ae)).a+a1,A.fW(p).a/2+a0/2,0)) +break +case 1:o=r.h(0,B.aa) +a1=o!=null?a2.ab?-A.fW(r.h(0,B.aa)).a+a2.n.a.a:0:0 +a2.n.r.sbI(0,A.V(a-A.fW(r.h(0,B.aQ)).a+a1,A.fW(p).a/2-a0/2,0)) +break}a2.n.r.sdd(r.h(0,B.ae).gt(0).a*0.75)}else{a2.n.r.sbI(0,a3) +a2.n.r.sdd(0)}}, +agV(a,b){var s=this.df$.h(0,B.ae) +s.toString +a.dm(s,b)}, +aA(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=new A.awV(a,b),d=f.df$ +e.$1(d.h(0,B.cP)) +if(d.h(0,B.ae)!=null){s=d.h(0,B.ae).b +s.toString +r=t.q +q=r.a(s).a +s=A.fW(d.h(0,B.ae)) +p=A.fW(d.h(0,B.ae)).a +o=f.n +n=o.f +m=o.d +l=n.gn2() +k=-s.b*0.75/2+n.a.b/2 +if(l)j=k +else{s=f.n +o=s.z +j=s.a.b+new A.j(o.a,o.b).a6(0,4).b/2}s=A.V(1,0.75,m) +s.toString +o=d.h(0,B.cP).b +o.toString +o=r.a(o).a +r=A.fW(d.h(0,B.cP)) +switch(f.I.a){case 0:i=q.a+p*(1-s) +if(d.h(0,B.aa)!=null)n=l +else n=!1 +if(n)h=i+(f.ab?A.fW(d.h(0,B.aa)).a-f.n.a.c:0) +else h=i +break +case 1:i=q.a +if(d.h(0,B.aa)!=null)n=l +else n=!1 +if(n)h=i+(f.ab?-A.fW(d.h(0,B.aa)).a+f.n.a.a:0) +else h=i +break +default:i=null +h=null}r=A.V(h,o.a+r.a/2-p*0.75/2,0) +r.toString +r=A.V(i,r,m) +r.toString +o=q.b +n=A.V(0,j-o,m) +n.toString +g=new A.b6(new Float64Array(16)) +g.dF() +g.dC(r,o+n,0,1) +g.nz(s,s,s,1) +f.au=g +s=f.cx +s===$&&A.a() +n=f.ch +n.saB(0,a.wr(s,b,g,f.gagU(),t.zV.a(n.a)))}else f.ch.saB(0,null) +e.$1(d.h(0,B.aQ)) +e.$1(d.h(0,B.bj)) +e.$1(d.h(0,B.bk)) +e.$1(d.h(0,B.aa)) +e.$1(d.h(0,B.b0)) +if(f.n.y)e.$1(d.h(0,B.bi)) +e.$1(d.h(0,B.b7)) +s=d.h(0,B.bS) +s.toString +e.$1(s) +e.$1(d.h(0,B.bT))}, +cP(a,b){var s,r=this,q=r.df$ +if(a===q.h(0,B.ae)&&r.au!=null){q=q.h(0,B.ae).b +q.toString +s=t.q.a(q).a +q=r.au +q.toString +b.dZ(0,q) +b.dC(-s.a,-s.b,0,1)}r.a2M(a,b)}, +jQ(a){return!0}, +cz(a,b){var s,r,q,p,o,n +for(s=this.gim(0),r=s.length,q=t.q,p=0;p")).aj(0,new A.Lg(p,o).gasy()) +return new A.u3(p,o)}, +dU(a){a.p2=this.ga7C()}} +A.awX.prototype={ +$2(a,b){var s=a.b +s.toString +t.q.a(s).a=new A.j(b,(this.a-a.gt(0).b)/2) +return a.gt(0).a}, +$S:57} +A.awW.prototype={ +$2(a,b){var s,r=a.b +r.toString +t.q.a(r) +s=a.m0(B.o) +s.toString +r.a=new A.j(b,this.a-s) +return a.gt(0).a}, +$S:57} +A.awV.prototype={ +$1(a){var s +if(a!=null){s=a.b +s.toString +this.a.dm(a,t.q.a(s).a.V(0,this.b))}}, +$S:156} +A.awU.prototype={ +$2(a,b){return this.a.cp(a,b)}, +$S:18} +A.awS.prototype={ +$1(a){return this.a.avl(a)}, +$S:247} +A.awT.prototype={ +$0(){return A.b([],t.q1)}, +$S:248} +A.Uw.prototype={ +gMb(){return B.K_}, +VB(a){var s,r=this +switch(a.a){case 0:s=r.d.at +break +case 1:s=r.d.ax +break +case 2:s=r.d.ay +break +case 3:s=r.d.ch +break +case 4:s=r.d.CW +break +case 5:s=r.d.cx +break +case 6:s=r.d.cy +break +case 7:s=r.d.db +break +case 8:s=r.d.dx +break +case 9:s=r.d.dy +break +case 10:s=r.d.fr +break +default:s=null}return s}, +aG(a){var s,r=this +A.J(a) +s=new A.Hr(r.d,r.e,r.f,r.r,r.w,!1,!0,A.w(t.uC,t.x),new A.aO(),A.ah()) +s.aF() +return s}, +aP(a,b){var s=this +b.sar(s.d) +b.sIG(!1) +b.sp5(s.w) +b.savm(s.r) +b.savn(0,s.f) +b.sbC(s.e)}} +A.qs.prototype={ +ac(){return new A.Gu(new A.Gs($.aw()),null,null)}} +A.Gu.prototype={ +aw(){var s,r=this,q=null +r.aK() +s=A.bK(q,B.cF,q,q,r) +r.d!==$&&A.bw() +r.d=s +s.bk() +s.cF$.E(0,r.gFn()) +s=A.cw(B.ao,s,new A.lv(B.ao)) +r.e!==$&&A.bw() +r.e=s +s=A.bK(q,B.cF,q,q,r) +r.f!==$&&A.bw() +r.f=s}, +be(){var s,r,q=this +q.dc() +q.z=null +if(q.gar().dy!==B.kO){s=q.a +if(s.y)s=s.r&&s.c.a2 +else s=!0 +r=s||q.gar().dy===B.hH}else r=!1 +s=q.d +s===$&&A.a() +s.sq(0,r?1:0)}, +l(){var s=this,r=s.d +r===$&&A.a() +r.l() +r=s.e +r===$&&A.a() +r.l() +r=s.f +r===$&&A.a() +r.l() +r=s.r +r.P$=$.aw() +r.M$=0 +r=s.Q +if(r!=null)r.l() +s.a5l()}, +Fo(){this.T(new A.atM())}, +gar(){var s,r=this,q=r.z +if(q==null){q=r.a.c +s=r.c +s.toString +s=r.z=q.Hf(A.aDp(s)) +q=s}return q}, +gkk(){var s=this.gar().cy==null +if(s)this.gar() +return!s}, +aH(a){var s,r,q,p,o,n=this +n.b0(a) +s=a.c +if(!n.a.c.j(0,s))n.z=null +r=n.a +q=r.c +p=q.dy!=s.dy +if(r.y)r=r.r&&q.a2 +else r=!0 +if(a.y)q=a.r&&s.a2 +else q=!0 +if(r!==q||p){if(n.gar().dy!==B.kO){r=n.a +if(r.y)r=r.r&&r.c.a2 +else r=!0 +r=r||n.gar().dy===B.hH}else r=!1 +q=n.d +if(r){q===$&&A.a() +q.bP(0)}else{q===$&&A.a() +q.dg(0)}}o=n.gar().cy +r=n.d +r===$&&A.a() +if(r.gaN(0)===B.a2&&o!=null&&o!==s.cy){s=n.f +s===$&&A.a() +s.sq(0,0) +s.bP(0)}}, +aan(a,b){var s,r=this +if(r.gar().x1!==!0)return B.y +if(r.gar().x2!=null){s=r.gar().x2 +s.toString +return A.cu(s,r.gev(),t.G)}return A.cu(b.gj8(),r.gev(),t.G)}, +aaq(a){var s,r=this +if(r.gar().x1!=null){s=r.gar().x1 +s.toString +s=!s||!r.gar().a2}else s=!0 +if(s)return B.y +r.gar() +return a.db}, +PI(a,b){var s=this,r=A.cu(s.gar().ok,s.gev(),t._) +if(r==null){r=a.a +if(r==null)r=null +else{r=r.gcw() +r=r==null?null:r.Y(s.gev())}}return r==null?A.cu(b.gwo(),s.gev(),t.G):r}, +PO(a,b){var s=this,r=A.cu(s.gar().R8,s.gev(),t._) +if(r==null){r=a.a +if(r==null)r=null +else{r=r.gcw() +r=r==null?null:r.Y(s.gev())}}return r==null?A.cu(b.gtk(),s.gev(),t.G):r}, +gQv(){var s=this,r=s.a +if(r.y)r=r.r&&r.c.a2 +else r=!0 +if(!(r||s.gar().dy===B.hH)){r=s.gar().d==null +if(r)s.gar() +r=!r}else r=!1 +return r}, +Pv(a,b){return A.cu(b.gvK(),this.gev(),t.em).aZ(A.cu(this.gar().x,this.gev(),t.p8))}, +gev(){var s=this,r=A.aP(t.l) +if(!s.gar().a2)r.E(0,B.u) +if(s.a.r)r.E(0,B.E) +if(s.a.w&&s.gar().a2)r.E(0,B.A) +if(s.gkk())r.E(0,B.bI) +return r}, +aah(a,b){var s,r=this,q=A.cu(r.gar().X,r.gev(),t.Ef) +if(q==null)q=B.YN +r.gar() +if(q.a.j(0,B.q))return q +s=r.gar().x1 +s.toString +if(s){s=r.c +s.toString +s=A.aDp(s).fy +if(s==null)s=b.guF() +return q.A_(A.cu(s,r.gev(),t.oI))}else return q.A_(A.cu(b.gwk(),r.gev(),t.oI))}, +H(d1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8=this,c9=null,d0=A.J(d1) +c8.gar() +s=d0.Q +A.J(d1) +r=new A.atB(d1,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.oI,B.nj,!1,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,!1,c9,c9) +q=A.NC(d1) +p=t.em +o=A.cu(r.gw_(),c8.gev(),p) +n=t.p8 +m=A.cu(c8.gar().e,c8.gev(),n) +l=d0.ok +k=l.w +k.toString +j=k.aZ(c8.a.d).aZ(o).aZ(m).VV(1) +i=j.Q +i.toString +o=A.cu(r.gvN(),c8.gev(),p) +m=A.cu(c8.gar().as,c8.gev(),n) +l=l.y +l.toString +h=l.aZ(c8.a.d).aZ(o).aZ(m) +g=c8.gar().z +c8.gar() +c8.gar() +if(g!=null){f=c8.gar().Q +g.toString +l=c8.gar() +e=h.fy +e=c8.gar().ax==null?c9:B.aA +d=c8.a.e +f=A.ai(g,c8.gar().ax,e,c9,h,d,l.at) +c=c8.a.y&&!c8.gQv() +l=c?1:0 +c8.gar() +b=A.aGw(f,B.ao,B.Gp,l)}else b=c9 +if(!c8.gar().a2)if(c8.gkk())c8.gar() +else c8.gar() +else if(c8.a.r)if(c8.gkk())c8.gar() +else c8.gar() +else if(c8.gkk())c8.gar() +else c8.gar() +a=c8.aah(d0,r) +l=c8.r +e=c8.e +e===$&&A.a() +d=c8.aan(d0,r) +a0=c8.aaq(d0) +a1=c8.a.w&&c8.gar().a2 +a2=c8.gar().d +if((a2==null?c8.gar().c:a2)!=null){a2=c8.f +a2===$&&A.a() +a3=c8.gQv()||c8.gar().dy!==B.kO?1:0 +a4=c8.a +if(a4.y)a4=a4.r&&a4.c.a2 +else a4=!0 +if(a4||c8.gar().dy===B.hH){a5=A.cu(r.gvE(),c8.gev(),p) +if(c8.gkk()){a4=c8.gar().db +a4=(a4==null?c9:a4.b)!=null}else a4=!1 +if(a4){a4=c8.gar().db +a5=a5.b1(a4==null?c9:a4.b)}a4=c8.gar().f +a5=a5.aZ(a4==null?c8.gar().e:a4) +m=A.cu(c8.gar().f,c8.gev(),n) +k=k.aZ(c8.a.d).aZ(a5).aZ(m).VV(1)}else k=j +c8.gar() +a4=c8.gar().d +a4.toString +a4=A.ai(a4,c9,B.aA,c9,c9,c8.a.e,c9) +a6=new A.BC(new A.atN(),B.a_,c9,A.aGw(A.ym(a4,B.ao,B.cF,k),B.ao,B.cF,a3),a2,c9)}else a6=c9 +c8.gar() +c8.gar() +c8.gar() +c8.gar() +k=c8.a +a7=k.z +if(k.y)k=k.r&&k.c.a2 +else k=!0 +if(!k)c8.gar() +k=c8.gar() +a8=k.fx===!0 +a9=a8?18:24 +c8.gar() +if(c8.gar().id==null)b0=c9 +else{c8.gar() +k=s.Ix(B.n6) +a2=c8.PI(q,r) +a3=A.px(c9,c9,c9,c9,c9,c9,c9,c9,new A.b2(c8.PI(q,r),t.De),c9,c9,new A.b2(a9,t.XR),c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9).aZ(q.a) +b0=A.dG(A.jt(new A.eZ(k,A.uJ(A.AQ(A.bG(c9,c9,c8.gar().id,!1,c9,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.zU,c9,c9,B.z,c9),new A.km(a3)),new A.cP(a9,c9,c9,c9,c9,a2,c9,c9,c9)),c9),B.b5,c9,c9,c9,c9),1,1)}if(c8.gar().p1==null)b1=c9 +else{c8.gar() +k=s.Ix(B.n6) +a2=c8.PO(q,r) +a3=A.px(c9,c9,c9,c9,c9,c9,c9,c9,new A.b2(c8.PO(q,r),t.De),c9,c9,new A.b2(a9,t.XR),c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9).aZ(q.a) +b1=A.dG(A.jt(new A.eZ(k,A.uJ(A.AQ(A.bG(c9,c9,c8.gar().p1,!1,c9,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.zT,c9,c9,B.z,c9),new A.km(a3)),new A.cP(a9,c9,c9,c9,c9,a2,c9,c9,c9)),c9),B.b5,c9,c9,c9,c9),1,1)}k=c8.a.e +a2=c8.gar() +a3=c8.gar() +a4=c8.Pv(d0,r) +b2=c8.gar() +b3=c8.gar() +b4=c8.gar() +p=A.cu(r.gvo(),c8.gev(),p).aZ(c8.gar().db) +b5=c8.gar() +if(c8.gar().ry!=null)b6=c8.gar().ry +else if(c8.gar().rx!=null&&c8.gar().rx!==""){b7=c8.a.r +b8=c8.gar().rx +b8.toString +n=c8.Pv(d0,r).aZ(A.cu(c8.gar().to,c8.gev(),n)) +b6=A.bG(c9,c9,A.ai(b8,c9,B.aA,c8.gar().S,n,c9,c9),!0,c9,c9,!1,c9,c9,c9,c9,c9,c9,c9,b7,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.z,c9)}else b6=c9 +b9=d1.ad(t.I).w +switch(b9.a){case 1:break +case 0:break}c8.gar() +c8.gar().go.toString +c0=0 +if(!a.gn2()){n=A.bW(d1,B.bz) +n=n==null?c9:n.gcA() +if(n==null)n=B.aB +b7=j.r +b7.toString +c0=n.aJ(0,4+0.75*b7) +n=c8.gar() +if(n.x1===!0){n=a8?B.GC:B.GD +c1=n}else{n=a8?B.Gy:B.Gz +c1=n}}else{n=a8?B.GA:B.GB +c1=n}if(a instanceof A.dL)c2=a.b +else{if(!a.gn2()){n=c8.gar() +n=n.x1===!0}else n=!0 +c2=n?4:0}n=c8.gar().go +n.toString +b7=c8.gar().fr +b7.toString +b8=e.gq(0) +c3=c8.gar() +c4=c8.gar() +c5=c8.a +c6=c5.y +c7=c5.f +c5=c5.r +c8.gar() +return new A.Uw(new A.Ut(c1,n,c0,b8,b7,a,l,c3.a9===!0,c4.fx,c6,s,c2,!0,c9,a7,a6,b,c9,c9,b0,b1,new A.Gg(k,a2.r,a3.w,a4,b2.y,b3.cx,b4.cy,p,b5.dx,c9),b6,new A.Fd(a,l,e,d,a0,a1,c9)),b9,i,c7,c5,!1,c9)}} +A.atM.prototype={ +$0(){}, +$S:0} +A.atN.prototype={ +$1(a){var s +$label0$0:{if(a<=0.25){s=-a +break $label0$0}if(a<0.75){s=a-0.5 +break $label0$0}s=(1-a)*4 +break $label0$0}return A.nL(s*4,0,0)}, +$S:124} +A.nv.prototype={ +HZ(a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7){var s=this,r=d6==null?s.b:d6,q=d9==null?s.e:d9,p=c6==null?s.f:c6,o=d1==null?s.x:d1,n=d4==null?s.as:d4,m=d3==null?s.ax:d3,l=c1==null?s.cy:c1,k=c0==null?s.db:c0,j=c5==null?s.dy:c5,i=c4==null?s.fr:c4,h=d7==null?s.go:d7,g=d8==null?s.fx:d8,f=e2==null?s.k4:e2,e=e0==null?s.ok:e0,d=e6==null?s.p4:e6,c=e4==null?s.R8:e4,b=b1==null?s.ry:b1,a=b3==null?s.rx:b3,a0=b2==null?s.to:b2,a1=c3==null?s.x1:c3,a2=c2==null?s.x2:c2,a3=a8==null?s.X:a8,a4=b5==null?s.a2:b5,a5=e3==null?s.S:e3,a6=a7==null?s.a9:a7 +return A.jk(a6,a3,s.ab,s.fy,b,a0,a,s.n,a4,s.I,s.cx,s.y2,s.dx,k,l,a2,a1,i,j,p,s.xr,s.M,s.P,s.r,s.y,o,s.w,s.Q,s.ay,m,n,s.z,s.at,s.y1,s.a,r,h,g,s.c,q,s.d,!0,!0,s.k2,s.id,e,s.k1,f,s.k3,a5,s.p2,s.p1,c,s.RG,d,s.p3,s.au)}, +ao5(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var s=null +return this.HZ(a,b,c,d,s,e,s,f,s,g,s,h,i,j,s,k,l,m,n,o,p,q,r,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,s,b3,b4,b5,b6)}, +anW(a,b){var s=null +return this.HZ(s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +anj(a){var s=null +return this.HZ(s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +Hf(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=d.e +if(c==null)c=a.a +s=d.f +if(s==null)s=a.b +r=d.x +if(r==null)r=a.c +q=d.as +if(q==null)q=a.e +p=d.ax +if(p==null)p=a.r +o=d.db +if(o==null)o=a.w +n=d.dy +if(n==null)n=a.y +m=d.fr +if(m==null)m=a.z +l=d.b +if(l==null)l=a.ax +k=d.k4 +if(k==null)k=a.ay +j=d.ok +if(j==null)j=a.ch +i=d.p4 +if(i==null)i=a.cx +h=d.R8 +if(h==null)h=a.cy +g=d.to +if(g==null)g=a.dx +f=d.x2 +if(f==null)f=a.fr +e=d.X +if(e==null)e=a.p1 +return d.ao5(d.a9===!0,e,a.p3,a.as,g,a.k4,a.ok,a.k1,a.x,o,f,d.x1===!0,m,n,s,a.go,a.k2,a.k3,a.d,r,a.f,p,q,a.id,l,d.go===!0,d.fx===!0,c,j,a.CW,k,h,a.db,i,a.p4)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.nv)if(J.d(b.b,r.b))if(b.d==r.d)if(J.d(b.e,r.e))if(J.d(b.f,r.f))if(J.d(b.x,r.x))if(b.z==r.z)if(J.d(b.as,r.as))if(b.ax==r.ax)if(b.cy==r.cy)if(J.d(b.db,r.db))if(b.dy==r.dy)if(J.d(b.fr,r.fr))if(b.fx==r.fx)if(b.go==r.go)if(J.d(b.id,r.id))if(J.d(b.ok,r.ok))if(J.d(b.k4,r.k4))if(J.d(b.p1,r.p1))if(J.d(b.R8,r.R8))if(J.d(b.p4,r.p4))if(J.d(b.ry,r.ry))if(b.rx==r.rx)if(J.d(b.to,r.to))if(b.x1==r.x1)if(J.d(b.x2,r.x2))if(J.d(b.X,r.X))if(b.a2===r.a2)if(b.S==r.S)s=b.a9==r.a9 +return s}, +gB(a){var s=this +return A.bI([s.a,s.b,s.c,s.d,s.f,s.e,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,!0,!0,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.x1,s.x2,s.xr,s.y1,s.id,s.ok,s.k2,s.k3,s.k4,s.k1,s.p1,s.R8,s.p2,s.p3,s.p4,s.RG,s.ry,s.rx,s.to,s.y2,s.M,s.P,s.n,s.I,s.X,s.a2,s.S,s.a9,s.ab,s.au])}, +k(a){var s=this,r=A.b([],t.s),q=s.b +if(q!=null)r.push("iconColor: "+q.k(0)) +q=s.d +if(q!=null)r.push('labelText: "'+q+'"') +q=s.f +if(q!=null)r.push('floatingLabelStyle: "'+q.k(0)+'"') +q=s.z +if(q!=null)r.push('hintText: "'+q+'"') +q=s.ax +if(q!=null)r.push('hintMaxLines: "'+A.k(q)+'"') +q=s.cy +if(q!=null)r.push('errorText: "'+q+'"') +q=s.db +if(q!=null)r.push('errorStyle: "'+q.k(0)+'"') +q=s.dy +if(q!=null)r.push("floatingLabelBehavior: "+q.k(0)) +q=s.fr +if(q!=null)r.push("floatingLabelAlignment: "+q.k(0)) +q=s.fx +if(q===!0)r.push("isDense: "+A.k(q)) +q=s.go +if(q===!0)r.push("isCollapsed: "+A.k(q)) +q=s.id +if(q!=null)r.push("prefixIcon: "+q.k(0)) +q=s.ok +if(q!=null)r.push("prefixIconColor: "+q.k(0)) +q=s.k4 +if(q!=null)r.push("prefixStyle: "+q.k(0)) +q=s.p1 +if(q!=null)r.push("suffixIcon: "+q.k(0)) +q=s.R8 +if(q!=null)r.push("suffixIconColor: "+q.k(0)) +q=s.p4 +if(q!=null)r.push("suffixStyle: "+q.k(0)) +q=s.ry +if(q!=null)r.push("counter: "+q.k(0)) +q=s.rx +if(q!=null)r.push("counterText: "+q) +q=s.to +if(q!=null)r.push("counterStyle: "+q.k(0)) +if(s.x1===!0)r.push("filled: true") +q=s.x2 +if(q!=null)r.push("fillColor: "+q.k(0)) +q=s.X +if(q!=null)r.push("border: "+q.k(0)) +if(!s.a2)r.push("enabled: false") +q=s.S +if(q!=null)r.push("semanticCounterText: "+q) +q=s.a9 +if(q!=null)r.push("alignLabelWithHint: "+A.k(q)) +return"InputDecoration("+B.b.bn(r,", ")+")"}} +A.B2.prototype={ +gB(a){var s=this +return A.T(s.gw_(),s.gvE(),s.gvK(),s.d,s.gvN(),s.r,s.gvo(),s.x,s.y,s.z,!1,s.as,!1,s.gcH(),s.ay,s.gwo(),s.CW,s.cx,s.gtk(),A.T(s.db,s.dx,!1,s.gj8(),s.guF(),s.gwk(),s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,!1,s.p3,s.f,s.p4,B.a,B.a))}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.B2)if(J.d(b.gw_(),r.gw_()))if(J.d(b.gvE(),r.gvE()))if(J.d(b.gvK(),r.gvK()))if(J.d(b.gvN(),r.gvN()))if(J.d(b.gvo(),r.gvo()))if(J.d(b.gcH(),r.gcH()))if(J.d(b.ay,r.ay))if(J.d(b.gwo(),r.gwo()))if(J.d(b.cx,r.cx))if(J.d(b.gtk(),r.gtk()))if(J.d(b.dx,r.dx))if(b.y===r.y)if(b.z.j(0,r.z))if(J.d(b.gj8(),r.gj8()))if(J.d(b.guF(),r.guF()))s=J.d(b.gwk(),r.gwk()) +return s}, +gw_(){return this.a}, +gvE(){return this.b}, +gvK(){return this.c}, +gvN(){return this.e}, +gvo(){return this.w}, +gcH(){return this.ax}, +gwo(){return this.ch}, +gtk(){return this.cy}, +gj8(){return this.fr}, +gwk(){return this.fx}, +guF(){return this.fy}} +A.atB.prototype={ +gbS(){var s,r=this,q=r.RG +if(q===$){s=A.J(r.R8) +r.RG!==$&&A.aA() +q=r.RG=s.ax}return q}, +gyl(){var s,r=this,q=r.rx +if(q===$){s=A.J(r.R8) +r.rx!==$&&A.aA() +q=r.rx=s.ok}return q}, +gvN(){return A.J2(new A.atH(this))}, +gj8(){return A.xU(new A.atE(this))}, +guF(){return A.aEO(new A.atC(this))}, +gwk(){return A.aEO(new A.atJ(this))}, +gcH(){var s=this.gbS(),r=s.rx +return r==null?s.k3:r}, +gwo(){return A.xU(new A.atK(this))}, +gtk(){return A.xU(new A.atL(this))}, +gw_(){return A.J2(new A.atI(this))}, +gvE(){return A.J2(new A.atF(this))}, +gvK(){return A.J2(new A.atG(this))}, +gvo(){return A.J2(new A.atD(this))}} +A.atH.prototype={ +$1(a){var s,r,q=null +if(a.p(0,B.u)){s=this.a.gbS().k3 +return A.iL(q,q,A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q)}s=this.a.gbS() +r=s.rx +return A.iL(q,q,r==null?s.k3:r,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q)}, +$S:43} +A.atE.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gbS().k3 +return A.aC(10,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}s=this.a.gbS() +r=s.RG +return r==null?s.k2:r}, +$S:8} +A.atC.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.u)){s=q.a.gbS().k3 +return new A.aW(A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),1,B.v,-1)}if(a.p(0,B.bI)){if(a.p(0,B.E))return new A.aW(q.a.gbS().fy,2,B.v,-1) +if(a.p(0,B.A)){s=q.a.gbS() +r=s.k1 +return new A.aW(r==null?s.go:r,1,B.v,-1)}return new A.aW(q.a.gbS().fy,1,B.v,-1)}if(a.p(0,B.E))return new A.aW(q.a.gbS().b,2,B.v,-1) +if(a.p(0,B.A))return new A.aW(q.a.gbS().k3,1,B.v,-1) +s=q.a.gbS() +r=s.rx +return new A.aW(r==null?s.k3:r,1,B.v,-1)}, +$S:77} +A.atJ.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.u)){s=q.a.gbS().k3 +return new A.aW(A.aC(31,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),1,B.v,-1)}if(a.p(0,B.bI)){if(a.p(0,B.E))return new A.aW(q.a.gbS().fy,2,B.v,-1) +if(a.p(0,B.A)){s=q.a.gbS() +r=s.k1 +return new A.aW(r==null?s.go:r,1,B.v,-1)}return new A.aW(q.a.gbS().fy,1,B.v,-1)}if(a.p(0,B.E))return new A.aW(q.a.gbS().b,2,B.v,-1) +if(a.p(0,B.A))return new A.aW(q.a.gbS().k3,1,B.v,-1) +s=q.a.gbS() +r=s.ry +if(r==null){r=s.n +s=r==null?s.k3:r}else s=r +return new A.aW(s,1,B.v,-1)}, +$S:77} +A.atK.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gbS().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}s=this.a.gbS() +r=s.rx +return r==null?s.k3:r}, +$S:8} +A.atL.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.u)){s=q.a.gbS().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.bI)){if(a.p(0,B.A)){s=q.a.gbS() +r=s.k1 +return r==null?s.go:r}return q.a.gbS().fy}s=q.a.gbS() +r=s.rx +return r==null?s.k3:r}, +$S:8} +A.atI.prototype={ +$1(a){var s,r=this.a,q=r.gyl().y +if(q==null)q=B.eo +if(a.p(0,B.u)){r=r.gbS().k3 +return q.b1(A.aC(97,r.C()>>>16&255,r.C()>>>8&255,r.C()&255))}if(a.p(0,B.bI)){if(a.p(0,B.E))return q.b1(r.gbS().fy) +if(a.p(0,B.A)){r=r.gbS() +s=r.k1 +return q.b1(s==null?r.go:s)}return q.b1(r.gbS().fy)}if(a.p(0,B.E))return q.b1(r.gbS().b) +if(a.p(0,B.A)){r=r.gbS() +s=r.rx +return q.b1(s==null?r.k3:s)}r=r.gbS() +s=r.rx +return q.b1(s==null?r.k3:s)}, +$S:43} +A.atF.prototype={ +$1(a){var s,r=this.a,q=r.gyl().y +if(q==null)q=B.eo +if(a.p(0,B.u)){r=r.gbS().k3 +return q.b1(A.aC(97,r.C()>>>16&255,r.C()>>>8&255,r.C()&255))}if(a.p(0,B.bI)){if(a.p(0,B.E))return q.b1(r.gbS().fy) +if(a.p(0,B.A)){r=r.gbS() +s=r.k1 +return q.b1(s==null?r.go:s)}return q.b1(r.gbS().fy)}if(a.p(0,B.E))return q.b1(r.gbS().b) +if(a.p(0,B.A)){r=r.gbS() +s=r.rx +return q.b1(s==null?r.k3:s)}r=r.gbS() +s=r.rx +return q.b1(s==null?r.k3:s)}, +$S:43} +A.atG.prototype={ +$1(a){var s,r=this.a,q=r.gyl().Q +if(q==null)q=B.eo +if(a.p(0,B.u)){r=r.gbS().k3 +return q.b1(A.aC(97,r.C()>>>16&255,r.C()>>>8&255,r.C()&255))}r=r.gbS() +s=r.rx +return q.b1(s==null?r.k3:s)}, +$S:43} +A.atD.prototype={ +$1(a){var s=this.a,r=s.gyl().Q +if(r==null)r=B.eo +return r.b1(s.gbS().fy)}, +$S:43} +A.W0.prototype={} +A.Je.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.Jt.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.Jv.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.a0W.prototype={ +av(a){var s,r,q +this.e1(a) +for(s=this.gim(0),r=s.length,q=0;q72){s=16 +break $label0$0}if(r){s=(b-a)/2 +if(d)s=Math.min(s,16) +break $label0$0}if(B.J0===q){s=c.au +break $label0$0}if(B.pj===q){s=(b-a)/2 +break $label0$0}if(B.J1===q){s=b-a-c.au +break $label0$0}s=null}return s}} +A.O8.prototype={ +Fs(a,b){return!1}, +H(b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=null,a5=A.J(b3),a6=A.NC(b3),a7=A.aUN(b3),a8=new A.au3(b3,a4,B.fs,a4,a4,a4,a4,a4,a4,a4,B.ht,a4,a4,a4,8,24,a4,a4,a4,a4,a4,a4,a4),a9=t.l,b0=A.aP(a9),b1=new A.abt(b0),b2=b1.$3(a4,a4,a4) +if(b2==null){b2=a7.e +b2=b1.$3(b2,a7.d,b2) +s=b2}else s=b2 +if(s==null){b2=a5.aX +r=b2.e +s=b1.$3(r,b2.d,r)}b2=a5.ay +q=b1.$4(a8.gcH(),a8.gpD(),a8.gcH(),b2) +r=s==null +if(r){p=a6.a +if(p==null)b0=a4 +else{p=p.gcw() +b0=p==null?a4:p.Y(b0)}o=b0}else o=s +if(o==null)o=q +if(r)s=q +b0=b1.$3(a4,a4,a4) +if(b0==null){b0=a7.f +b0=b1.$3(b0,a7.d,b0)}if(b0==null){b0=a5.aX +r=b0.f +r=b1.$3(r,b0.d,r) +n=r}else n=b0 +if(n==null)n=b1.$4(a4,a8.gpD(),a4,b2) +b0=A.NC(b3).a +b0=b0==null?a4:b0.ank(new A.b2(o,t.rc)) +if(b0==null)b0=A.uI(a4,a4,a4,a4,a4,a4,a4,o,a4,a4,a4,a4,a4,a4,a4,a4,a4) +m=a7.x +m=(m==null?a8.gw0():m).b1(n) +m.toString +l=A.ym(a3.c,B.U,B.N,m) +k=a7.r +if(k==null)k=a8.ges() +a3.Fs(a5,a7) +k=k.A1(n,a4) +j=A.ym(a3.d,B.U,B.N,k) +b1=a3.e +if(b1!=null){i=a7.w +if(i==null)i=a8.gpL() +a3.Fs(a5,a7) +i=i.A1(n,a4) +h=A.ym(b1,B.U,B.N,i)}else{i=a4 +h=i}b1=a3.f +g=b1!=null?A.ym(b1,B.U,B.N,m):a4 +f=b3.ad(t.I).w +b1=a7.y +b1=b1==null?a4:b1.Y(f) +e=b1 +if(e==null)e=B.ht.Y(f) +a9=A.aP(a9) +b1=a3.cy==null +if(b1)a9.E(0,B.u) +b1=A.cu(a4,a9,t.WV) +if(b1==null)d=a4 +else d=b1 +if(d==null)d=A.aEl(a9) +a9=a7.b +b1=a3.cy +b2=b1!=null +r=a9==null?B.n5:a9 +p=a7.z +c=p==null?a5.aX.z:p +p=c==null?a8.gwF():c +a3.Fs(a5,a7) +b=k.Q +if(b==null){b=a8.ges().Q +b.toString}a=i==null?a4:i.Q +if(a==null){a=a8.gpL().Q +a.toString}a0=a7.as +if(a0==null)a0=16 +a1=a7.at +if(a1==null)a1=8 +a2=a7.ax +if(a2==null)a2=24 +return A.uO(!1,a4,!0,A.bG(b2,a4,A.aIi(A.oc(!1,A.uJ(A.AQ(new A.Wh(l,j,h,g,!1,!1,a5.Q,f,b,a,a0,a1,a2,a7.ay,B.pi,a4),new A.km(b0)),new A.cP(a4,a4,a4,a4,a4,s,a4,a4,a4)),!1,e,!1),new A.i1(p,a4,a4,a4,r),a4,a4),!1,a4,!0,!1,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,!1,a4,a4,a4,a4,B.z,a4),a9,!0,a4,a4,a4,a4,d,a4,a4,a4,b1,a4,a4,a4,a4)}} +A.abt.prototype={ +$4(a,b,c,d){return new A.VY(a,c,b,d).Y(this.a)}, +$3(a,b,c){return this.$4(a,b,c,null)}, +$S:251} +A.VY.prototype={ +Y(a){var s=this,r=s.a +if(r instanceof A.tx)return A.cu(r,a,t._) +if(a.p(0,B.u))return s.d +if(a.p(0,B.V))return s.c +return s.b}} +A.jW.prototype={ +K(){return"_ListTileSlot."+this.b}} +A.Wh.prototype={ +gMb(){return B.Kk}, +VB(a){var s,r=this +switch(a.a){case 0:s=r.d +break +case 1:s=r.e +break +case 2:s=r.f +break +case 3:s=r.r +break +default:s=null}return s}, +aG(a){var s=this,r=new A.Hz(!1,s.y,!1,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,A.w(t.cA,t.x),new A.aO(),A.ah()) +r.aF() +return r}, +aP(a,b){var s=this +b.sas3(!1) +b.sarQ(!1) +b.sdP(s.y) +b.sbC(s.z) +b.savq(s.Q) +b.sa1r(s.as) +b.sare(s.at) +b.sasI(s.ay) +b.sasL(s.ch) +b.sasM(s.ax) +b.savp(s.CW)}} +A.Hz.prototype={ +gim(a){var s=this.df$,r=s.h(0,B.bJ),q=A.b([],t.Ik),p=s.h(0,B.cQ) +if(p!=null)q.push(p) +if(r!=null)q.push(r) +p=s.h(0,B.cR) +if(p!=null)q.push(p) +s=s.h(0,B.ey) +if(s!=null)q.push(s) +return q}, +sarQ(a){return}, +sdP(a){if(this.I.j(0,a))return +this.I=a +this.a_()}, +sas3(a){return}, +sbC(a){if(this.a2===a)return +this.a2=a +this.a_()}, +savq(a){if(this.S===a)return +this.S=a +this.a_()}, +sa1r(a){if(this.a9===a)return +this.a9=a +this.a_()}, +gxZ(){return this.ab+this.I.a*2}, +sare(a){if(this.ab===a)return +this.ab=a +this.a_()}, +sasM(a){if(this.au===a)return +this.au=a +this.a_()}, +sasI(a){if(this.aX===a)return +this.aX=a +this.a_()}, +sasL(a){if(this.b9==a)return +this.b9=a +this.a_()}, +savp(a){if(this.aL===a)return +this.aL=a +this.a_()}, +gkc(){return!1}, +bb(a){var s,r,q,p=this.df$ +if(p.h(0,B.cQ)!=null){s=p.h(0,B.cQ) +r=Math.max(s.ap(B.aK,a,s.gbE()),this.aX)+this.gxZ()}else r=0 +s=p.h(0,B.bJ) +s.toString +s=s.ap(B.aK,a,s.gbE()) +q=p.h(0,B.cR) +q=q==null?0:q.ap(B.aK,a,q.gbE()) +q=Math.max(s,q) +p=p.h(0,B.ey) +p=p==null?0:p.ap(B.ab,a,p.gbj()) +return r+q+p}, +b7(a){var s,r,q,p=this.df$ +if(p.h(0,B.cQ)!=null){s=p.h(0,B.cQ) +r=Math.max(s.ap(B.ab,a,s.gbj()),this.aX)+this.gxZ()}else r=0 +s=p.h(0,B.bJ) +s.toString +s=s.ap(B.ab,a,s.gbj()) +q=p.h(0,B.cR) +q=q==null?0:q.ap(B.ab,a,q.gbj()) +q=Math.max(s,q) +p=p.h(0,B.ey) +p=p==null?0:p.ap(B.ab,a,p.gbj()) +return r+q+p}, +gxT(){var s,r=this.I,q=new A.j(r.a,r.b).a6(0,4),p=this.df$.h(0,B.cR)!=null +$label0$0:{r=p +s=r +if(r){r=72 +break $label0$0}r=!1===s +if(r){r=56 +break $label0$0}r=null}return q.b+r}, +ba(a){var s,r,q=this.b9 +if(q==null)q=this.gxT() +s=this.df$ +r=s.h(0,B.bJ) +r.toString +r=r.ap(B.aL,a,r.gbD()) +s=s.h(0,B.cR) +s=s==null?null:s.ap(B.aL,a,s.gbD()) +return Math.max(q,r+(s==null?0:s))}, +b6(a){return this.ap(B.aL,a,this.gbD())}, +fk(a){var s=this.df$,r=s.h(0,B.bJ) +r.toString +r=r.b +r.toString +t.q.a(r) +s=s.h(0,B.bJ) +s.toString +return A.KY(s.k9(a),r.a.b)}, +On(b3,b4,b5,b6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8=this,a9=b5.b,b0=new A.ak(0,a9,0,b5.d),b1=a8.I,b2=b0.mU(new A.ak(0,1/0,0,56+new A.j(b1.a,b1.b).a6(0,4).b)) +b1=a8.df$ +s=b1.h(0,B.cQ) +r=b1.h(0,B.ey) +q=s==null +p=q?null:b4.$2(s,b2) +o=r==null +n=o?null:b4.$2(r,b2) +m=p==null +l=m?0:Math.max(a8.aX,p.a)+a8.gxZ() +k=n==null +j=k?0:Math.max(n.a+a8.gxZ(),32) +i=b0.wE(a9-l-j) +h=b1.h(0,B.cR) +g=b1.h(0,B.bJ) +g.toString +f=b4.$2(g,i).b +switch(a8.a2.a){case 1:g=!0 +break +case 0:g=!1 +break +default:g=null}if(h==null){h=a8.b9 +if(h==null)h=a8.gxT() +e=Math.max(h,f+2*a8.au) +d=(e-f)/2}else{c=b4.$2(h,i).b +b=b1.h(0,B.bJ) +b.toString +a=b3.$3(b,i,a8.S) +if(a==null)a=f +a0=b3.$3(h,i,a8.a9) +if(a0==null)a0=c +a1=32-a +a2=52+a8.I.b*2-a0 +a3=Math.max(a1+f-a2,0)/2 +a4=a1-a3 +a5=a2+a3 +b=a8.au +if(!(a4a6}else a7=!0 +if(b6!=null){b=g?l:j +b6.$2(h,new A.j(b,a7?a8.au+f:a5))}if(a7)e=2*a8.au+f+c +else{h=a8.b9 +e=h==null?a8.gxT():h}d=a7?a8.au:a4}if(b6!=null){b1=b1.h(0,B.bJ) +b1.toString +b6.$2(b1,new A.j(g?l:j,d)) +if(!q&&!m){b1=g?0:a9-p.a +b6.$2(s,new A.j(b1,a8.aL.GZ(p.b,e,a8,!0)))}if(!o&&!k){b1=g?a9-n.a:0 +b6.$2(r,new A.j(b1,a8.aL.GZ(n.b,e,a8,!1)))}}return new A.Ym(i,new A.I(a9,e),d)}, +Om(a,b,c){return this.On(a,b,c,null)}, +ds(a,b){var s=this.Om(A.hB(),A.fE(),a),r=this.df$.h(0,B.bJ) +r.toString +return A.KY(r.eU(s.a,b),s.c)}, +cE(a){return a.b3(this.Om(A.hB(),A.fE(),a).b)}, +bx(){var s=this,r=t.k,q=s.On(A.aBN(),A.mM(),r.a(A.t.prototype.gW.call(s)),A.b28()) +s.fy=r.a(A.t.prototype.gW.call(s)).b3(q.b)}, +aA(a,b){var s,r=new A.ax2(a,b),q=this.df$ +r.$1(q.h(0,B.cQ)) +s=q.h(0,B.bJ) +s.toString +r.$1(s) +r.$1(q.h(0,B.cR)) +r.$1(q.h(0,B.ey))}, +jQ(a){return!0}, +cz(a,b){var s,r,q,p,o,n +for(s=this.gim(0),r=s.length,q=t.q,p=0;p#"+A.bi(this)}} +A.rL.prototype={ +e8(a){return A.dv(this.a,this.b,a)}} +A.GG.prototype={ +ac(){return new A.Ws(null,null)}} +A.Ws.prototype={ +lE(a){var s,r,q=this +q.CW=t.ir.a(a.$3(q.CW,q.a.z,new A.auo())) +s=t.YJ +q.cy=s.a(a.$3(q.cy,q.a.as,new A.aup())) +r=q.a.at +q.cx=r!=null?s.a(a.$3(q.cx,r,new A.auq())):null +q.db=t.TZ.a(a.$3(q.db,q.a.w,new A.aur()))}, +H(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.db +j.toString +j=j.a8(0,l.gei().gq(0)) +j.toString +s=l.CW +s.toString +r=s.a8(0,l.gei().gq(0)) +A.J(a) +s=l.a.Q +q=l.cx +p=A.aHJ(s,q==null?k:q.a8(0,l.gei().gq(0)),r) +s=l.cy +s.toString +s=s.a8(0,l.gei().gq(0)) +s.toString +q=A.dh(a) +o=l.a +n=o.y +m=o.x +return new A.Pa(new A.ol(j,q,k),n,r,p,s,new A.Ia(o.r,j,m,k),k)}} +A.auo.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.aup.prototype={ +$1(a){return new A.fj(t.G.a(a),null)}, +$S:85} +A.auq.prototype={ +$1(a){return new A.fj(t.G.a(a),null)}, +$S:85} +A.aur.prototype={ +$1(a){return new A.rL(t.RY.a(a),null)}, +$S:256} +A.Ia.prototype={ +H(a){var s=this,r=null,q=s.e,p=q?r:new A.Ib(s.d,A.dh(a),r) +q=q?new A.Ib(s.d,A.dh(a),r):r +return A.ip(s.c,q,r,p,B.I)}} +A.Ib.prototype={ +aA(a,b){this.b.ec(a,new A.x(0,0,0+b.a,0+b.b),this.c)}, +ew(a){return!a.b.j(0,this.b)}} +A.a0J.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.Wt.prototype={ +JK(a){return a.gro(0)==="en"}, +n5(a,b){return new A.dw(B.Cv,t.az)}, +De(a){return!1}, +k(a){return"DefaultMaterialLocalizations.delegate(en_US)"}} +A.Ma.prototype={$iqJ:1} +A.Op.prototype={} +A.BI.prototype={ +gB(a){return J.C(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.BI&&J.d(b.a,this.a)}} +A.Wz.prototype={} +A.Oq.prototype={ +gB(a){var s=this +return A.bI([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as])}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.Oq)if(b.a==r.a)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.e==r.e)if(b.f==r.f)if(b.r==r.r)if(b.w==r.w)if(J.d(b.x,r.x))if(b.y==r.y)s=J.d(b.as,r.as) +return s}} +A.WA.prototype={} +A.v8.prototype={ +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s +if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +if(b instanceof A.v8)s=J.d(b.a,this.a) +else s=!1 +return s}} +A.WB.prototype={} +A.vg.prototype={ +afC(a){return new A.afo(this,a)}, +H(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=null +A.J(a) +s=A.aEz(a) +r=A.aDE(a) +q=r.a +if(q==null){p=s.a +p.toString +q=p}o=r.y +if(o==null){p=s.y +p.toString +o=p}p=r.b +if(p==null)p=s.gb8(0) +n=r.c +if(n==null){n=s.c +n.toString}m=r.d +if(m==null)m=s.gbc(0) +l=r.e +if(l==null)l=s.gbu() +k=A.b([],t.p) +for(j=this.d,i=0;i<4;++i){h=i===j +k.push(new A.Ae(1,B.kM,new A.Or(A.bG(g,g,new A.oZ(h,B.d2,!1,new A.afp(this,i,o),g),!1,g,g,!1,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,B.zO,g,h,g,g,g,g,B.z,g),g),g))}return A.jp(!1,B.N,!0,g,A.oc(!0,A.bG(g,g,A.e1(A.cR(k,B.w,B.x,B.t,0),q,g),!0,g,g,!0,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,B.Qu,g,g,g,g,g,g,B.z,g),!1,B.as,!0),B.n,p,n,g,m,g,l,g,B.cK)}} +A.afo.prototype={ +$0(){return this.a.f.$1(this.b)}, +$S:0} +A.afp.prototype={ +$2(a,b){var s=null,r=this.b,q=this.a +return new A.tk(r,4,b,this.c,s,s,s,q.afC(r),s,s,q.e[r],s)}, +$S:257} +A.afq.prototype={ +K(){return"NavigationDestinationLabelBehavior."+this.b}} +A.vi.prototype={ +H(a){var s,r,q,p=a.ad(t.kY) +p.toString +s=A.aDE(a) +A.J(a) +r=A.aEz(a) +q=p.x +return new A.GT(new A.afs(this,s,r,q,p),new A.aft(this,p,s,r,q),this.e,null,!0,null)}} +A.afs.prototype={ +$1(a){var s,r,q,p,o=this,n=null,m=o.b,l=m.x,k=l==null,j=k?n:l.Y(B.iE) +if(j==null){s=o.c.gf4().Y(B.iE) +s.toString +j=s}r=k?n:l.Y(B.aO) +if(r==null){s=o.c.gf4().Y(B.aO) +s.toString +r=s}if((k?n:l.Y(B.iD))==null)o.c.gf4().Y(B.iD).toString +l=o.a +q=A.uJ(l.d,j) +p=A.uJ(l.c,r) +l=o.d +k=m.f +if(k==null)k=o.c.gvQ() +m=m.r +if(m==null){m=o.c.grh() +m.toString}return A.hp(B.a_,A.b([new A.OC(l,k,m,n),new A.xF(new A.afr(l,q,p),n,l,n)],t.p),B.B,B.bp,n)}, +$S:258} +A.afr.prototype={ +$2(a,b){var s=this.a +return s.gaN(s).glJ()?this.b:this.c}, +$S:44} +A.aft.prototype={ +$1(a){var s,r,q,p,o=this,n=null,m=o.c,l=m.w,k=l==null?n:l.Y(B.iE),j=k +if(j==null)j=o.d.gp7().Y(B.iE) +k=l==null?n:l.Y(B.aO) +s=k +if(s==null)s=o.d.gp7().Y(B.aO) +l=l==null?n:l.Y(B.iD) +r=l +if(r==null)r=o.d.gp7().Y(B.iD) +q=m.Q +if(q==null)q=o.d.gvZ() +m=o.e +p=m.gaN(m).glJ()?j:s +return new A.bo(q,A.aIY(A.ai(o.a.e,n,n,n,p,n,n),1.3),n)}, +$S:259} +A.GT.prototype={ +ac(){return new A.WT(new A.bu(null,t.A))}, +amm(a){return this.c.$1(a)}, +amn(a){return this.d.$1(a)}} +A.WT.prototype={ +H(a){var s,r,q,p,o,n,m=this,l=null,k=a.ad(t.kY) +k.toString +s=A.aDE(a) +A.J(a) +r=A.aEz(a) +q=m.a.e +p=m.d +o=s.r +if(o==null)o=r.grh() +n=m.a +return new A.WQ(!0,new A.WR(q,new A.Gm(p,A.cR(A.b([A.ec(new A.WP(n.amm(a),p,m.a.amn(a),l),1)],t.p),B.w,B.x,B.t,0),k.at,l,l,l,l,l,l,l,l,l,l,l,l,l,!0,B.eC,l,l,o,l,l,B.y,s.z,l,l,!0,!1,l,!1,l,!0,l,l,l),l),l)}} +A.Gm.prototype={ +CR(a){return new A.ato(this,a)}} +A.ato.prototype={ +$0(){var s,r,q=$.aa.an$.x.h(0,this.a.R8).gU() +q.toString +t.x.a(q) +s=A.bj(q.aM(0,null),B.i) +q.gt(0) +s=this.b.dQ(new A.j(s.a,s.b)) +q=q.gt(0) +r=s.a +s=s.b +return new A.x(r,s,r+q.a,s+q.b)}, +$S:107} +A.tk.prototype={ +ce(a){var s=this +return s.f!==a.f||s.w!==a.w||s.x!==a.x||s.y!==a.y||!J.d(s.at,a.at)}} +A.OC.prototype={ +H(a){var s=this.c +return A.hC(s,new A.afv(this),new A.xF(new A.afw(this),null,s,null))}} +A.afv.prototype={ +$2(a,b){var s=this.a.c +return A.EJ(B.a_,b,null,A.qQ(s.gaN(s)===B.Q?0:new A.ay(0.4,1,t.Y).a8(0,new A.fl(B.cr).a8(0,s.gq(s))),1,1),!0)}, +$S:159} +A.afw.prototype={ +$2(a,b){var s=this.a,r=s.c +return new A.oZ(r.gaN(r).glJ(),B.bd,!0,new A.afu(s),null)}, +$S:261} +A.afu.prototype={ +$2(a,b){var s=null,r=this.a +return new A.d5(b,!1,A.aIi(s,new A.i1(r.d,s,s,s,r.w),32,64),s)}, +$S:262} +A.WP.prototype={ +H(a){return new A.UF(new A.auX(this),null)}} +A.auX.prototype={ +$2(a,b){var s=this.a +return new A.na(new A.auZ(b,b),A.b([A.Bi(new A.nE(s.c,s.d),1),A.Bi(new A.d5(b,!0,s.e,null),2)],t.p),null)}, +$S:263} +A.UF.prototype={ +H(a){var s=a.ad(t.kY) +switch(s.y.a){case 0:return this.c.$2(a,B.dD) +case 1:return this.c.$2(a,B.ca) +case 2:return new A.FJ(s.x,B.cr,new A.lv(B.cr),this.c,null)}}} +A.WQ.prototype={ +H(a){A.f3(a,B.b6,t.C).toString +return new A.xF(new A.auY(this),this.d,a.ad(t.kY).x,null)}} +A.auY.prototype={ +$2(a,b){var s=null +return A.bG(!0,s,b,!1,s,!0,!1,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.z,s)}, +$S:115} +A.WR.prototype={ +H(a){return A.aKz(this.d,!0,this.c,!1,42)}} +A.auZ.prototype={ +Kt(a){var s=this,r=new A.av0(),q=new A.av_(),p=s.dX(1,A.yS(a)),o=s.dX(2,A.yS(a)),n=s.d,m=new A.ay(q.$1(p),q.$1(p)+q.$1(o),t.Y).a8(0,n.gq(n)),l=q.$1(a)-m +s.fu(1,new A.j(r.$1(a)-r.$1(p),l)) +s.fu(2,new A.j(r.$1(a)-r.$1(o),l+p.b))}, +m6(a){return a.d!==this.d}} +A.av0.prototype={ +$1(a){return a.a/2}, +$S:160} +A.av_.prototype={ +$1(a){return a.b/2}, +$S:160} +A.xF.prototype={ +mG(a,b){return this.e.$2(a,b)}} +A.oZ.prototype={ +ac(){return new A.Zg(null,null)}, +mG(a,b){return this.f.$2(a,b)}} +A.Zg.prototype={ +aw(){var s,r,q=this,p=null +q.aK() +s=q.d=A.bK(p,p,p,p,q) +r=q.a +s.e=r.d +s.sq(0,r.c?1:0)}, +aH(a){var s,r,q,p=this +p.b0(a) +s=p.a +r=s.d +if(a.d.a!==r.a){q=p.d +q===$&&A.a() +q.e=r}r=s.c +if(a.c!==r){q=p.d +if(r){q===$&&A.a() +q.j9(0,s.e?0:null)}else{q===$&&A.a() +q.Cj(0,s.e?1:null)}}}, +l(){var s=this.d +s===$&&A.a() +s.l() +this.a5w()}, +H(a){var s,r=this.a +r.toString +s=this.d +s===$&&A.a() +return r.mG(a,s)}} +A.FJ.prototype={ +ac(){return new A.FK()}, +mG(a,b){return this.f.$2(a,b)}} +A.FK.prototype={ +aw(){var s,r=this +r.aK() +s=r.a.c +r.d=s.gaN(s) +s=r.a.c +r.Us(s.gaN(s)) +r.a.c.el(r.gUr())}, +l(){this.a.c.cd(this.gUr()) +this.aD()}, +Us(a){var s,r,q,p=this,o=p.d +o===$&&A.a() +if(o!==a)p.T(new A.aqV(p,a)) +$label0$0:{s=B.bB===a +r=!s +if(r){q=B.b9===a +o=q}else{q=null +o=!0}if(o&&p.e!=null)break $label0$0 +if(!s)o=r?q:B.b9===a +else o=!0 +if(o){p.T(new A.aqW(p,a)) +break $label0$0}if(B.a2===a||B.Q===a)p.T(new A.aqX(p))}}, +H(a){var s,r=this.e +if(r==null){r=this.d +r===$&&A.a()}s=this.a +r=r!==B.b9?s.d:s.e +return s.mG(a,new A.al(s.c,new A.fl(r),t.HY.i("al")))}} +A.aqV.prototype={ +$0(){this.a.d=this.b}, +$S:0} +A.aqW.prototype={ +$0(){this.a.e=this.b}, +$S:0} +A.aqX.prototype={ +$0(){this.a.e=null}, +$S:0} +A.auU.prototype={ +gmr(){var s,r=this,q=r.at +if(q===$){s=A.J(r.as) +r.at!==$&&A.aA() +q=r.at=s.ax}return q}, +gb8(a){var s=this.gmr(),r=s.p4 +return r==null?s.k2:r}, +gbc(a){return B.y}, +gbu(){return B.y}, +gf4(){return new A.bh(new A.auV(this),t.uc)}, +gvQ(){var s=this.gmr(),r=s.Q +return r==null?s.y:r}, +grh(){return B.Ay}, +gp7(){return new A.bh(new A.auW(this),t.HA)}, +gvZ(){return B.GK}} +A.auV.prototype={ +$1(a){var s,r,q=null +if(a.p(0,B.u)){s=this.a.gmr() +r=s.rx +s=r==null?s.k3:r +s=A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}else{s=this.a +if(a.p(0,B.V)){s=s.gmr() +r=s.as +s=r==null?s.z:r}else{s=s.gmr() +r=s.rx +s=r==null?s.k3:r}}return new A.cP(24,q,q,q,q,s,q,q,q)}, +$S:265} +A.auW.prototype={ +$1(a){var s,r,q=this.a,p=q.ax +if(p===$){s=A.J(q.as) +q.ax!==$&&A.aA() +p=q.ax=s.ok}s=p.at +s.toString +if(a.p(0,B.u)){q=q.gmr() +r=q.rx +q=r==null?q.k3:r +q=A.aC(97,q.C()>>>16&255,q.C()>>>8&255,q.C()&255)}else if(a.p(0,B.V))q=q.gmr().k3 +else{q=q.gmr() +r=q.rx +q=r==null?q.k3:r}return s.am0(q)}, +$S:43} +A.JC.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.vh.prototype={ +gB(a){var s=this +return A.T(s.a,s.gb8(s),s.c,s.gbc(s),s.gbu(),s.gvQ(),s.grh(),s.gp7(),s.gf4(),s.y,s.z,s.gvZ(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.vh&&b.a==s.a&&J.d(b.gb8(b),s.gb8(s))&&b.c==s.c&&J.d(b.gbc(b),s.gbc(s))&&J.d(b.gbu(),s.gbu())&&J.d(b.gvQ(),s.gvQ())&&J.d(b.grh(),s.grh())&&J.d(b.gp7(),s.gp7())&&J.d(b.gf4(),s.gf4())&&b.y==s.y&&b.z==s.z&&J.d(b.gvZ(),s.gvZ())}, +gb8(a){return this.b}, +gbc(a){return this.d}, +gbu(){return this.e}, +gvQ(){return this.f}, +grh(){return this.r}, +gp7(){return this.w}, +gf4(){return this.x}, +gvZ(){return this.Q}} +A.WS.prototype={} +A.BZ.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.BZ&&b.a==s.a&&J.d(b.b,s.b)&&b.c==s.c&&J.d(b.d,s.d)&&J.d(b.e,s.e)&&J.d(b.f,s.f)&&J.d(b.r,s.r)&&J.d(b.w,s.w)&&b.x==s.x&&b.y==s.y}} +A.WU.prototype={} +A.C_.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.C_&&J.d(b.a,s.a)&&b.b==s.b&&J.d(b.c,s.c)&&J.d(b.d,s.d)&&J.d(b.e,s.e)&&J.d(b.f,s.f)&&b.r==s.r&&J.d(b.y,s.y)&&J.d(b.z,s.z)&&b.Q==s.Q&&b.as==s.as}} +A.WV.prototype={} +A.OX.prototype={ +qV(a){var s,r,q,p=null +A.J(a) +s=new A.Xa(a,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,B.N,!0,B.a_,p,p,p) +if(this.ch){r=s.ghY().Y(B.aO) +r=r==null?p:r.r +q=r +if(q==null)q=14 +r=A.bW(a,B.bz) +r=r==null?p:r.gcA() +return s.qP(new A.b2(A.Lb(B.ht,B.og,B.of,(r==null?B.aB:r).aJ(0,q)/14),t.mD))}return s}, +Cm(a){return A.aJe(a).a}} +A.Xc.prototype={ +H(a){var s,r=null,q=this.e.a,p=r +if(q==null)q=p +else{q=q.Y(B.aO) +q=q==null?r:q.r}s=q +if(s==null)s=14 +q=A.bW(a,B.bz) +q=q==null?r:q.gcA() +q=A.A((q==null?B.aB:q).aJ(0,s)/14,1,2) +A.aJe(a) +q=A.V(8,4,q-1) +q.toString +p=A.b([this.d,new A.q6(1,B.kN,this.c,r)],t.p) +return A.cR(p,B.w,B.x,B.c1,q)}} +A.Xa.prototype={ +gic(){var s,r=this,q=r.go +if(q===$){s=A.J(r.fy) +r.go!==$&&A.aA() +q=r.go=s.ax}return q}, +ghY(){return new A.b2(A.J(this.fy).ok.as,t.RP)}, +gb8(a){return B.bh}, +gcw(){return new A.bh(new A.avc(this),t.b)}, +gdA(){return new A.bh(new A.avf(this),t.b)}, +gbc(a){return B.bh}, +gbu(){return B.bh}, +gdl(a){return B.et}, +gcl(a){return new A.b2(A.b0i(this.fy),t.mD)}, +gh3(){return B.mu}, +gh1(){return B.mt}, +gcH(){return new A.bh(new A.avd(this),t.mN)}, +gh2(){return B.dt}, +geh(){return new A.bh(new A.avg(this),t.GD)}, +gbH(a){return B.du}, +gh4(){return new A.bh(new A.ave(),t.B_)}, +gdP(){return A.J(this.fy).Q}, +gh5(){return A.J(this.fy).f}, +gfI(){return A.J(this.fy).y}} +A.avc.prototype={ +$1(a){var s +if(a.p(0,B.u)){s=this.a.gic().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return this.a.gic().b}, +$S:8} +A.avf.prototype={ +$1(a){if(a.p(0,B.T))return this.a.gic().b.b_(0.1) +if(a.p(0,B.A))return this.a.gic().b.b_(0.08) +if(a.p(0,B.E))return this.a.gic().b.b_(0.1) +return null}, +$S:68} +A.avd.prototype={ +$1(a){var s,r=this +if(a.p(0,B.u)){s=r.a.gic().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.T))return r.a.gic().b +if(a.p(0,B.A))return r.a.gic().b +if(a.p(0,B.E))return r.a.gic().b +return r.a.gic().b}, +$S:8} +A.avg.prototype={ +$1(a){var s,r +if(a.p(0,B.u)){s=this.a.gic().k3 +return new A.aW(A.aC(31,s.C()>>>16&255,s.C()>>>8&255,s.C()&255),1,B.v,-1)}if(a.p(0,B.E))return new A.aW(this.a.gic().b,1,B.v,-1) +s=this.a.gic() +r=s.ry +if(r==null){r=s.n +s=r==null?s.k3:r}else s=r +return new A.aW(s,1,B.v,-1)}, +$S:77} +A.ave.prototype={ +$1(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +$S:47} +A.C9.prototype={ +gB(a){return J.C(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.C9&&J.d(b.a,this.a)}} +A.Xb.prototype={} +A.hf.prototype={ +goy(){return A.eh.prototype.goy.call(this)+"("+A.k(this.c.a)+")"}, +gw5(){return!0}} +A.Ol.prototype={ +gl_(a){var s=this.b.c +s.toString +s=this.PF(s) +s=s.gl_(s) +return s}, +gCk(){var s=this.b.c +s.toString +s=this.PF(s) +s=s.gl_(s) +return s}, +PF(a){var s,r=A.J(a).w +A.J(a) +s=B.i5.h(0,r) +if(s==null)$label0$0:{if(B.L===r||B.aY===r){s=B.fZ +break $label0$0}if(B.ad===r||B.bw===r||B.by===r||B.bx===r){s=B.eF +break $label0$0}s=null}return s}, +gqE(){return null}, +gzK(){return null}, +gj0(){return A.b2l()}, +uS(a){var s=this.$ti.i("ee<1>").b(a)&&a.gj0()!=null,r=a instanceof A.hf||s +return r}, +Hz(a){return a instanceof A.hf}, +Hv(a,b,c){var s=null +return A.bG(s,s,this.lz.$1(a),!1,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,B.z,s)}, +qH(a,b,c,d){A.J(a) +return new A.xn(B.i5,this,b,c,d,null,this.$ti.i("xn<1>"))}} +A.GH.prototype={ +oE(){var s=this.CW +if(s!=null)s.e=this.gl_(0) +return this.a2o()}, +lv(a){var s=this.CW +if(s!=null)s.f=this.gCk() +return this.a4a(a)}} +A.a0w.prototype={ +H(a){var s=this,r=A.J(a).ax.k2,q=s.c +return new A.nd(q,new A.aAd(s,r),new A.aAe(s),A.aKU(a,q,s.d,s.r,s.e,!0,r),null)}} +A.aAd.prototype={ +$3(a,b,c){return new A.p8(b,c,this.a.e,!1,this.b,null)}, +$S:161} +A.aAe.prototype={ +$3(a,b,c){return new A.p9(b,this.a.e,!0,c,null)}, +$S:162} +A.p8.prototype={ +ac(){return new A.a0u(new A.DO($.aw()),$,$)}} +A.a0u.prototype={ +gL9(){return!1}, +uk(){var s,r=this,q=r.a,p=q.f +if(p)s=B.dD +else{s=$.aPA() +s=new A.al(q.c,s,s.$ti.i("al"))}r.lC$=s +p=p?$.aPB():$.aPC() +q=q.c +r.mZ$=new A.al(q,p,p.$ti.i("al")) +q.Z(0,r.grs()) +r.a.c.el(r.grr())}, +aw(){var s,r,q,p,o=this +o.uk() +s=o.a +r=s.f +q=o.lC$ +q===$&&A.a() +p=o.mZ$ +p===$&&A.a() +o.d=A.aLX(s.c,s.r,q,r,p) +o.aK()}, +aH(a){var s,r,q,p=this,o=p.a +if(a.f!==o.f||a.c!==o.c){o=a.c +o.J(0,p.grs()) +o.cd(p.grr()) +p.uk() +o=p.d +o===$&&A.a() +o.l() +o=p.a +s=o.f +r=p.lC$ +r===$&&A.a() +q=p.mZ$ +q===$&&A.a() +p.d=A.aLX(o.c,o.r,r,s,q)}p.b0(a)}, +l(){var s,r=this +r.a.c.J(0,r.grs()) +r.a.c.cd(r.grr()) +s=r.d +s===$&&A.a() +s.l() +r.a5E()}, +H(a){var s=this.d +s===$&&A.a() +return A.aKa(!0,this.a.d,this.oS$,B.Av,s)}} +A.p9.prototype={ +ac(){return new A.a0v(new A.DO($.aw()),$,$)}} +A.a0v.prototype={ +gL9(){return!1}, +uk(){var s,r=this,q=r.a,p=q.e +if(p){s=$.aPE() +s=new A.al(q.c,s,s.$ti.i("al"))}else s=B.dD +r.lC$=s +p=p?$.aPF():$.aPG() +q=q.c +r.mZ$=new A.al(q,p,p.$ti.i("al")) +q.Z(0,r.grs()) +r.a.c.el(r.grr())}, +aw(){var s,r,q,p,o=this +o.uk() +s=o.a +r=s.e +q=o.lC$ +q===$&&A.a() +p=o.mZ$ +p===$&&A.a() +o.d=A.aLY(s.c,q,r,p) +o.aK()}, +aH(a){var s,r,q,p=this,o=p.a +if(a.e!==o.e||a.c!==o.c){o=a.c +o.J(0,p.grs()) +o.cd(p.grr()) +p.uk() +o=p.d +o===$&&A.a() +o.l() +o=p.a +s=o.e +r=p.lC$ +r===$&&A.a() +q=p.mZ$ +q===$&&A.a() +p.d=A.aLY(o.c,r,s,q)}p.b0(a)}, +l(){var s,r=this +r.a.c.J(0,r.grs()) +r.a.c.cd(r.grr()) +s=r.d +s===$&&A.a() +s.l() +r.a5F()}, +H(a){var s=this.d +s===$&&A.a() +return A.aKa(!0,this.a.f,this.oS$,B.Av,s)}} +A.Ve.prototype={ +H(a){var s=this +return new A.nd(s.c,new A.ary(),new A.arz(),A.aTM(a,s.d,s.e,s.f),null)}} +A.ary.prototype={ +$3(a,b,c){var s=$.aFL(),r=$.aPl() +return new A.d5(new A.al(b,s,s.$ti.i("al")),!1,A.rN(c,new A.al(b,r,r.$ti.i("al")),null,!0),null)}, +$S:102} +A.arz.prototype={ +$3(a,b,c){var s=b.gaN(b),r=$.aFM(),q=$.aPk() +return A.kn(new A.d5(new A.al(b,r,r.$ti.i("al")),!1,A.rN(c,new A.al(b,q,q.$ti.i("al")),null,!0),null),s===B.bB,null)}, +$S:269} +A.a7Q.prototype={ +$3(a,b,c){var s=$.aFL(),r=$.aNZ() +return new A.d5(new A.al(b,s,s.$ti.i("al")),!1,A.rN(c,new A.al(b,r,r.$ti.i("al")),null,!0),null)}, +$S:102} +A.a7R.prototype={ +$3(a,b,c){var s=$.aFM(),r=$.aNY() +return new A.d5(new A.al(b,s,s.$ti.i("al")),!1,A.rN(c,new A.al(b,r,r.$ti.i("al")),null,!0),null)}, +$S:102} +A.SM.prototype={ +gj0(){return new A.anZ(this)}, +Hw(a,b,c,d,e){return new A.a0w(c,d,!0,null,e,!0,null)}} +A.anZ.prototype={ +$5(a,b,c,d,e){return A.aKU(a,b,c,e,d,!0,null)}, +$S:270} +A.anX.prototype={ +$3(a,b,c){var s=this.a&&this.b +return new A.p8(b,c,s,!0,this.c,null)}, +$S:161} +A.anY.prototype={ +$3(a,b,c){return new A.p9(b,this.a,!1,c,null)}, +$S:162} +A.LX.prototype={ +gl_(a){return B.d2}, +gj0(){return A.b2t()}, +Hw(a,b,c,d,e,f){return A.aSl(a,b,c,d,e,f)}} +A.P1.prototype={ +a6C(a){var s=t.Tr +s=A.a6(new A.ae(B.Ko,new A.ag3(a),s),s.i("ax.E")) +return s}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +if(b instanceof A.P1)return!0 +return!1}, +gB(a){return A.bI(this.a6C(B.i5))}} +A.ag3.prototype={ +$1(a){return this.a.h(0,a)}, +$S:271} +A.xn.prototype={ +ac(){return new A.H3(this.$ti.i("H3<1>"))}} +A.H3.prototype={ +H(a){var s,r,q=this,p=A.J(a).w,o=q.a +if(o.d.b.cy.a){s=q.d +if(s==null)q.d=p +else p=s}else q.d=null +r=o.c.h(0,p) +if(r==null){$label0$0:{if(B.L===p){o=B.fZ +break $label0$0}if(B.ad===p||B.bw===p||B.by===p||B.aY===p||B.bx===p){o=B.eF +break $label0$0}o=null}r=o}o=q.a +return r.Hw(o.d,a,o.e,o.f,o.r,q.$ti.c)}} +A.xV.prototype={ +asZ(){var s,r=this,q=r.mZ$ +q===$&&A.a() +s=q.a +if(J.d(q.b.a8(0,s.gq(s)),1)){q=r.lC$ +q===$&&A.a() +if(q.gq(q)!==0){q=r.lC$ +q=q.gq(q)===1}else q=!0}else q=!1 +s=r.oS$ +if(q)s.soj(!1) +else{r.gL9() +s.soj(!1)}}, +asY(a){if(a.gje())this.gL9() +this.oS$.soj(!1)}} +A.Jb.prototype={ +FM(a){this.ak()}, +OV(a,b,c){var s,r,q,p,o,n,m=this +if(!m.r){s=m.w +s=s.gaN(s)!==B.a2}else s=!1 +if(s){s=m.w +s=$.aPD().a8(0,s.gq(s)) +s.toString +r=s}else r=0 +if(r>0){s=a.gcg(0) +q=b.a +p=b.b +$.a3() +o=A.bc() +n=m.z +o.r=A.aC(B.d.aI(255*r),n.C()>>>16&255,n.C()>>>8&255,n.C()&255).gq(0) +s.fm(new A.x(q,p,q+c.a,p+c.b),o)}}, +rv(a,b,c,d){var s,r,q,p=this +if(!p.w.gje())return d.$2(a,b) +p.OV(a,b,c) +s=p.Q +r=p.x +q=r.a +A.aMK(s,r.b.a8(0,q.gq(q)),c) +q=p.at +q.saB(0,a.wr(!0,b,s,new A.aAb(p,d),q.a))}, +Za(a,b,c,d,e,f){var s,r,q +this.OV(a,b,c) +s=this.x +r=s.a +q=this.y +A.aM8(a,d,s.b.a8(0,r.gq(r)),q.gq(q),f)}, +l(){var s=this,r=s.w,q=s.gcV() +r.J(0,q) +r.cd(s.guj()) +s.x.a.J(0,q) +s.y.J(0,q) +s.as.saB(0,null) +s.at.saB(0,null) +s.cY()}, +ew(a){var s,r,q,p,o=this,n=!0 +if(a.r===o.r){s=a.w +r=o.w +if(s.gq(s)===r.gq(r)){s=a.x +r=s.a +q=o.x +p=q.a +if(J.d(s.b.a8(0,r.gq(r)),q.b.a8(0,p.gq(p)))){n=a.y +s=o.y +s=n.gq(n)!==s.gq(s) +n=s}}}return n}} +A.aAb.prototype={ +$2(a,b){var s=this.a,r=s.as +s=s.y +r.saB(0,a.Zt(b,B.d.aI(s.gq(s)*255),this.b,r.a))}, +$S:15} +A.Jc.prototype={ +FM(a){this.ak()}, +Za(a,b,c,d,e,f){var s=this.w,r=s.a,q=this.x +A.aM8(a,d,s.b.a8(0,r.gq(r)),q.gq(q),f)}, +rv(a,b,c,d){var s,r,q,p=this +if(!p.y.gje())return d.$2(a,b) +s=p.z +r=p.w +q=r.a +A.aMK(s,r.b.a8(0,q.gq(q)),c) +q=p.as +q.saB(0,a.wr(!0,b,s,new A.aAc(p,d),q.a))}, +ew(a){var s,r,q,p=!0 +if(a.r===this.r){s=a.x +r=this.x +if(s.gq(s)===r.gq(r)){p=a.w +s=p.a +r=this.w +q=r.a +q=!J.d(p.b.a8(0,s.gq(s)),r.b.a8(0,q.gq(q))) +p=q}}return p}, +l(){var s,r=this +r.Q.saB(0,null) +r.as.saB(0,null) +s=r.gcV() +r.w.a.J(0,s) +r.x.J(0,s) +r.y.cd(r.guj()) +r.cY()}} +A.aAc.prototype={ +$2(a,b){var s=this.a,r=s.Q +s=s.x +r.saB(0,a.Zt(b,B.d.aI(s.gq(s)*255),this.b,r.a))}, +$S:15} +A.Xh.prototype={} +A.JI.prototype={ +l(){var s=this.oS$ +s.P$=$.aw() +s.M$=0 +this.aD()}} +A.JJ.prototype={ +l(){var s=this.oS$ +s.P$=$.aw() +s.M$=0 +this.aD()}} +A.Cl.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Cl&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&J.d(b.c,s.c)&&b.d==s.d&&J.d(b.e,s.e)&&J.d(b.f,s.f)&&J.d(b.r,s.r)&&b.w==s.w&&J.d(b.Q,s.Q)&&b.as==s.as}} +A.XU.prototype={} +A.Pk.prototype={ +gl_(a){return B.Gv}, +Hw(a,b,c,d,e,f){return new A.H9(new A.agL(a,c,d,e,f),a,null)}} +A.agL.prototype={ +$4(a,b,c,d){var s=this +if(s.a.b.cy.a)return new A.Ha(s.b,b,c,d,s.d,null) +return new A.Ve(s.b,s.c,null,s.d,null)}, +$S:272} +A.mA.prototype={ +K(){return"_PredictiveBackPhase."+this.b}} +A.H9.prototype={ +ac(){return new A.XV(B.Bt)}, +ams(a,b,c,d){return this.c.$4(a,b,c,d)}} +A.XV.prototype={ +sBY(a){var s=this +if(s.d!==a&&s.c!=null)s.T(new A.avL(s,a))}, +sDi(a){var s=this +if(!J.d(s.e,a)&&s.c!=null)s.T(new A.avM(s,a))}, +sAa(a){var s=this +if(!J.d(s.f,a)&&s.c!=null)s.T(new A.avK(s,a))}, +Xu(a){var s,r,q,p=this +p.sBY(B.a_d) +s=a.a +if(s!=null)s=a.b===0&&s.j(0,B.i) +else s=!0 +r=!1 +if(!s)if(p.a.d.giw()){s=p.a.d +s=A.ee.prototype.gZg.call(s) +r=s}if(!r)return!1 +s=p.a.d +q=s.CW +if(q!=null)q.sq(0,1-a.b) +s=s.b +if(s!=null)s.Wt() +p.sAa(a) +p.sDi(a) +return!0}, +XA(a){this.sBY(B.a_e) +this.a.d.aqV(1-a.b) +this.sAa(a)}, +Xi(){var s=this +s.sBY(B.a_f) +s.a.d.Sh(!0) +s.sAa(null) +s.sDi(null)}, +Xk(){var s=this +s.sBY(B.dx) +s.a.d.Sh(!1) +s.sAa(null) +s.sDi(null)}, +aw(){this.aK() +$.aa.c1$.push(this)}, +l(){$.aa.iC(this) +this.aD()}, +H(a){var s=this,r=s.a,q=r.d.b.cy.a?s.d:B.Bt +return r.ams(a,q,s.e,s.f)}} +A.avL.prototype={ +$0(){return this.a.d=this.b}, +$S:0} +A.avM.prototype={ +$0(){return this.a.e=this.b}, +$S:0} +A.avK.prototype={ +$0(){return this.a.f=this.b}, +$S:0} +A.Ha.prototype={ +ac(){var s=null,r=t.Y +return new A.XW(new A.ay(0,32,r),new A.ay(1,0,r),new A.ay(1,0.9,r),A.kB(s),A.kB(s),A.kB(s),B.i,s,s)}} +A.XW.prototype={ +ya(a){var s,r,q,p,o=null,n=this.a,m=n.r +if(m==null)s=o +else{m=m.a +m=m==null?o:m.b +s=m}if(s==null)s=0 +n=n.w +if(n==null)r=o +else{n=n.a +n=n==null?o:n.b +r=n}if(r==null)r=0 +q=a/20-8 +p=r-s +return A.A(B.d_.a8(0,A.A(Math.abs(p)/a,0,1))*J.e7(p)*q,-q,q)}, +RH(a){var s,r,q,p=this,o=p.y,n=p.a +$label0$0:{if(B.dx===n.f){n=p.Q +break $label0$0}n=n.d +break $label0$0}o.saT(0,n) +n=p.a +$label1$1:{if(B.dx===n.f){n=p.x +s=t.Y +r=p.z +r.toString +s=new A.al(r,new A.ay(0,n,s),s.i("al")) +n=s +break $label1$1}n=new A.hi(n.d,new A.ba(A.b([],t.F),t.R),0) +break $label1$1}p.w.saT(0,n) +$label2$2:{if(B.dx===p.a.f){n=o +break $label2$2}n=B.ca +break $label2$2}p.r.saT(0,n) +q=a.a/20-8 +n=p.a +$label3$3:{if(B.dx===n.f){n=new A.ay(p.at,new A.j(a.b*0.1,0),t.Ni) +break $label3$3}n=n.w +switch(n==null?null:n.c){case B.AC:n=new A.j(q,p.ya(a.b)) +break +case B.AD:n=new A.j(-q,p.ya(a.b)) +break +case null:case void 0:n=new A.j(q,p.ya(a.b)) +break +default:n=null}n=new A.ay(n,B.i,t.Ni) +break $label3$3}p.as=new A.al(t.o.a(o),n,n.$ti.i("al"))}, +TX(){var s=this,r=s.z +if(r!=null)r.l() +r=s.Q +if(r!=null)r.l() +s.z=A.cw(B.pa,s.a.d,null) +s.Q=A.cw(B.pa,new A.hi(s.a.d,new A.ba(A.b([],t.F),t.R),0),null)}, +aw(){this.aK()}, +aH(a){var s,r=this +r.b0(a) +if(r.a.d!==a.d)r.TX() +s=r.a.f +if(s!==a.f&&s===B.dx){s=r.c +s.toString +r.RH(A.bP(s,B.j6,t.w).w.a)}}, +be(){var s,r=this +r.dc() +r.TX() +s=r.c +s.toString +r.RH(A.bP(s,B.j6,t.w).w.a)}, +l(){this.z.l() +this.Q.l() +this.a5m()}, +H(a){var s=this.a +return A.hC(s.d,new A.avN(this),s.x)}} +A.avN.prototype={ +$2(a,b){var s,r,q,p=null,o=this.a,n=o.w +o.x=n.gq(0) +s=o.f.a8(0,n.gq(0)) +$label0$0:{if(B.dx===o.a.f){r=o.as +r===$&&A.a() +q=r.a +q=r.b.a8(0,q.gq(q)) +r=q +break $label0$0}r=o.as +r===$&&A.a() +q=r.a +q=o.at=new A.j(r.b.a8(0,q.gq(q)).a,o.ya(A.bP(a,B.Bq,t.w).w.a.b)) +r=q +break $label0$0}q=o.e.a8(0,o.r.gq(0)) +r=A.aKB(A.afN(A.a4v(A.ch(o.d.a8(0,n.gq(0))),b),q),r) +o=s==null +n=o?p:s +if(n==null)n=1 +o=o?p:s +return new A.mg(A.qQ(n,o==null?1:o,1),B.a_,!0,p,r,p)}, +$S:159} +A.a0S.prototype={} +A.Jy.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.ao1.prototype={ +K(){return"_ActivityIndicatorType."+this.b}} +A.Pr.prototype={ +PS(a,b){var s=this.f +s=s==null?null:s.gq(s) +if(s==null)s=this.e +if(s==null)s=A.aDP(a).a +if(s==null)s=b +return s==null?A.J(a).ax.b:s}, +aaL(a){return this.PS(a,null)}, +NK(a,b){var s=null,r=this.w,q=this.c +if(q!=null)r=""+B.d.aI(q*100)+"%" +return A.bG(s,s,a,!1,s,s,!1,s,s,s,s,s,s,this.r,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.z,r)}} +A.wH.prototype={ +aA(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +$.a3() +s=A.bc() +r=e.c +s.r=r.gq(r) +r=s.c=e.x +s.b=B.bt +q=r/2*-e.y +p=b.a +o=q*2 +n=p-o +o=b.b-o +m=e.at +l=m!=null&&m>0 +k=e.b +if(k!=null){j=A.bc() +j.r=k.gq(k) +j.c=r +j.d=B.m7 +j.b=B.bt +if(l){k=e.d +k=k!=null&&k>0.001}else k=!1 +if(k){i=new A.I(n,o).geJ()/2 +h=r/i+m/i +r=e.d +r.toString +g=r<0.001?h:h*2 +f=Math.max(0,6.283185307179586-A.A(r,0,1)*6.283185307179586-g) +r=a.a +J.ap(r.save()) +a.t7(0,-1,1) +r.translate(-p,0) +a.Is(new A.x(q,q,q+n,q+o),-1.5707963267948966+h,f,!1,j) +r.restore()}else a.Is(new A.x(q,q,q+n,q+o),0,6.282185307179586,!1,j)}if(e.d==null)s.d=B.Sf +else s.d=B.iP +a.Is(new A.x(q,q,q+n,q+o),e.z,e.Q,!1,s)}, +ew(a){var s=this,r=!0 +if(J.d(a.b,s.b))if(a.c.j(0,s.c))if(a.d==s.d)if(a.e===s.e)if(a.f===s.f)if(a.r===s.r)if(a.w===s.w)if(a.x===s.x)if(a.y===s.y)r=a.at!=s.at +return r}} +A.im.prototype={ +gb8(a){return this.d}, +ac(){return new A.Fn(null,null)}} +A.Fn.prototype={ +aw(){var s,r=this +r.aK() +s=A.bK(null,B.Gs,null,null,r) +r.d!==$&&A.bw() +r.d=s +r.TU()}, +aH(a){this.b0(a) +this.TU()}, +l(){var s=this.d +s===$&&A.a() +s.l() +this.a58()}, +gjC(){var s,r=this +r.gaa() +r.c.wX(t.C0) +r.c.IX(t.nH) +s=r.d +s===$&&A.a() +return s}, +TU(){var s,r=this +if(r.gaa().c==null){s=r.d +s===$&&A.a() +s=s.r +s=!(s!=null&&s.a!=null)}else s=!1 +if(s){s=r.d +s===$&&A.a() +s.KN(0)}else{if(r.gaa().c!=null){s=r.d +s===$&&A.a() +s=s.r +s=s!=null&&s.a!=null}else s=!1 +if(s){s=r.d +s===$&&A.a() +s.eL(0)}}}, +xK(a,b,c,d,e){var s,r,q,p,o,n,m,l,k=this,j=null,i=A.aDP(a) +k.gaa() +A.J(a) +switch(!0){case!0:s=A.aL_(a,k.gaa().c==null) +break +case!1:s=A.aKZ(a,k.gaa().c==null) +break +default:s=j}r=k.gaa() +r.gb8(r) +q=i.d +if(q==null)q=s.d +r=k.gaa().z +p=r==null?i.x:r +if(p==null)p=s.gnK() +k.gaa() +o=i.y +if(o==null)o=s.gnI() +k.gaa() +k.gaa() +n=i.Q +if(n==null)n=s.gW() +k.gaa() +m=i.at +if(m==null)m=s.at +s=k.gaa().PS(a,s.gci(s)) +l=new A.eZ(n,A.ip(j,j,j,A.aYm(b,d,e,o,i.z,p,c,q,j,k.gaa().c,s,!0),B.I),j) +if(m!=null)l=new A.bo(m,l,j) +return k.gaa().NK(l,a)}, +DY(){return A.hC(this.gjC(),new A.aqg(this),null)}, +H(a){var s=this +s.gaa() +switch(0){case 0:if(s.gaa().c!=null)return s.xK(a,0,0,0,0) +return s.DY()}}} +A.aqg.prototype={ +$2(a,b){var s=this.a +return s.xK(a,$.aFW().a8(0,s.gjC().gq(0)),$.aFX().a8(0,s.gjC().gq(0)),$.aFU().a8(0,s.gjC().gq(0)),$.aFV().a8(0,s.gjC().gq(0)))}, +$S:44} +A.Yo.prototype={ +aA(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this +h.a3Y(a,b) +s=h.ch +if(s>0){r=h.z+h.Q +q=Math.cos(r) +p=Math.sin(r) +o=b.a/2 +n=h.x +m=n*2*s +l=o-m +k=o+m +j=A.bQ($.a3().w) +j.aq(new A.eL(o+q*l,o+p*l)) +j.aq(new A.cb(o+q*k,o+p*k)) +j.aq(new A.cb(o+q*o+-p*n*2*s,o+p*o+q*n*2*s)) +j.aq(new A.pJ()) +i=A.bc() +s=h.c +i.r=s.gq(s) +i.c=n +i.b=B.c3 +a.ip(j,i)}}} +A.Cy.prototype={ +gb8(a){return A.im.prototype.gb8.call(this,0)}, +ac(){return new A.Yp(null,null)}} +A.Yp.prototype={ +gaa(){return t.nP.a(A.X.prototype.gaa.call(this))}, +H(a){var s,r,q=this,p=t.nP.a(A.X.prototype.gaa.call(q)).c +if(p!=null){q.Q=p +s=q.gjC() +r=q.y +s.sq(0,(r===$?q.y=new A.fl(B.pc):r).a8(0,p)*0.000225022502250225)}return q.DY()}, +DY(){return A.hC(this.gjC(),new A.awr(this),null)}, +xK(a,b,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=t.nP,e=f.a(A.X.prototype.gaa.call(h)).c,d=e==null,c=d?0:B.pc.a8(0,e) +if(d&&h.Q==null)s=0 +else{r=h.z +if(r===$){q=t.Y +p=t.Ns +o=A.aKD(A.b([new A.mh(new A.ay(-0.1,-0.2,q),0.33,p),new A.mh(new A.ay(-0.2,1.35,q),0.6699999999999999,p)],t.x0),t.i) +h.z!==$&&A.aA() +h.z=o +r=o}if(d){q=h.Q +q.toString}else q=e +s=3.141592653589793*r.a8(0,q)}n=f.a(A.X.prototype.gaa.call(h)).aaL(a) +m=n.gcR(n) +n=n.b_(1) +A.J(a) +switch(!0){case!0:d=A.aL_(a,d) +break +case!1:d=A.aKZ(a,d) +break +default:d=g}l=A.aDP(a) +q=f.a(A.X.prototype.gaa.call(h)) +A.im.prototype.gb8.call(q,0) +k=l.e +if(k==null)k=A.J(a).as +q=f.a(A.X.prototype.gaa.call(h)).z +j=q==null?l.x:q +if(j==null)j=d.gnK() +f.a(A.X.prototype.gaa.call(h)) +i=l.y +if(i==null)i=d.gnI() +f.a(A.X.prototype.gaa.call(h)) +d=f.a(A.X.prototype.gaa.call(h)) +f.a(A.X.prototype.gaa.call(h)) +q=f.a(A.X.prototype.gaa.call(h)) +f.a(A.X.prototype.gaa.call(h)) +f=a0*3/2*3.141592653589793 +p=Math.max(b*3/2*3.141592653589793-f,0.001) +return d.NK(new A.bo(B.f_,A.DH(A.jp(!1,B.N,!0,g,new A.bo(B.cH,A.afN(A.aEd(s,A.ip(g,g,g,new A.Yo(c,g,n,g,b,a0,a1,a2,j,i,-1.5707963267948966+f+a2*3.141592653589793*2+a1*0.5*3.141592653589793,p,l.z,g,!0,g),B.I)),m),g),B.n,k,q.fy,g,g,g,g,g,B.lk),B.RH),g),a)}} +A.awr.prototype={ +$2(a,b){var s=this.a +return s.xK(a,1.05*$.aFW().a8(0,s.gjC().gq(0)),$.aFX().a8(0,s.gjC().gq(0)),$.aFU().a8(0,s.gjC().gq(0)),$.aFV().a8(0,s.gjC().gq(0)))}, +$S:44} +A.aqe.prototype={ +gci(a){var s,r=this,q=r.CW +if(q===$){s=A.J(r.ch) +r.CW!==$&&A.aA() +q=r.CW=s.ax}return q.b}, +gnK(){return 4}, +gnI(){return 0}, +gW(){return B.n8}} +A.aqf.prototype={ +gci(a){var s,r=this,q=r.CW +if(q===$){s=A.J(r.ch) +r.CW!==$&&A.aA() +q=r.CW=s.ax}return q.b}, +gnK(){return 4}, +gnI(){return 0}, +gW(){return B.n8}} +A.Jj.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.vw.prototype={ +gB(a){var s=this +return A.T(s.gci(s),s.b,s.c,s.gHG(),s.e,s.f,s.r,s.w,s.gnI(),s.gnK(),s.z,s.gW(),s.gKY(),s.gHH(),s.ax,s.ay,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.vw)if(J.d(b.gci(b),r.gci(r)))if(J.d(b.b,r.b))if(b.c==r.c)if(J.d(b.gHG(),r.gHG()))if(J.d(b.e,r.e))if(J.d(b.f,r.f))if(J.d(b.r,r.r))if(b.w==r.w)if(b.gnI()==r.gnI())if(b.gnK()==r.gnK())if(J.d(b.gW(),r.gW()))if(b.gKY()==r.gKY())s=J.d(b.gHH(),r.gHH()) +return s}, +gci(a){return this.a}, +gHG(){return this.d}, +gnK(){return this.x}, +gnI(){return this.y}, +gW(){return this.Q}, +gKY(){return this.as}, +gHH(){return this.at}} +A.XZ.prototype={} +A.Cr.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Cr&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.r==s.r&&J.d(b.w,s.w)&&b.x==s.x}} +A.Y5.prototype={} +A.o5.prototype={ +K(){return"RefreshIndicatorStatus."+this.b}} +A.ahC.prototype={ +K(){return"RefreshIndicatorTriggerMode."+this.b}} +A.atp.prototype={ +K(){return"_IndicatorType."+this.b}} +A.Cw.prototype={ +ac(){return new A.Cx(null,null)}, +atk(){return this.f.$0()}, +kN(a){return A.ya().$1(a)}} +A.Cx.prototype={ +gOZ(){var s,r=this,q=r.at +if(q===$){r.a.toString +s=r.c +s.toString +s=A.J(s) +q=r.at=s.ax.b}return q}, +aw(){var s,r,q,p=this,o=null +p.aK() +s=p.d=A.bK(o,o,o,o,p) +r=$.aOJ() +q=t.o +p.f=new A.al(q.a(s),r,r.$ti.i("al")) +r=$.aOL() +p.w=new A.al(q.a(s),r,r.$ti.i("al")) +r=A.bK(o,o,o,o,p) +p.e=r +s=$.aOK() +p.r=new A.al(q.a(r),s,s.$ti.i("al"))}, +be(){this.ajq() +this.dc()}, +aH(a){this.b0(a) +this.a.toString}, +l(){var s=this.d +s===$&&A.a() +s.l() +s=this.e +s===$&&A.a() +s.l() +this.a4k()}, +ajq(){var s,r,q,p,o,n=this +n.a.toString +s=n.c +s.toString +s=A.J(s) +n.at=s.ax.b +r=n.gOZ() +if(r.gdH(r)===0)n.x=new A.po(r,t.ZU) +else{s=n.d +s===$&&A.a() +q=r.dh(0) +p=r.dh(r.gdH(r)) +o=t.IC.i("fa") +n.x=new A.al(t.o.a(s),new A.fa(new A.fl(B.Iz),new A.fj(q,p),o),o.i("al"))}}, +ahZ(a){var s,r,q,p,o=this +if(!o.a.kN(a))return!1 +s=a instanceof A.rB&&a.d!=null +if(!s)if(a instanceof A.kF)if(a.d!=null)o.a.toString +if(s){s=a.a +r=s.e +if(!(r===B.aR&&Math.max(s.giy()-s.gdN(),0)===0))s=r===B.aC&&Math.max(s.gdN()-s.giz(),0)===0 +else s=!0 +s=s&&o.y==null&&o.ai_(0,r)}else s=!1 +if(s){o.T(new A.ahx(o)) +return!1}s=a.a +q=s.e +$label0$0:{r=null +if(B.aC===q||B.aR===q){r=!0 +break $label0$0}if(B.ba===q||B.bU===q)break $label0$0}if(r!=o.Q){s=o.y +if(s===B.dk||s===B.dl)o.le(B.ip)}else if(a instanceof A.kF){r=o.y +if(r===B.dk||r===B.dl){if(q===B.aC){r=o.as +r.toString +p=a.e +p.toString +o.as=r-p}else if(q===B.aR){r=o.as +r.toString +p=a.e +p.toString +o.as=r+p}s=s.d +s.toString +o.NS(s)}if(o.y===B.dl&&a.d==null)o.RX()}else if(a instanceof A.jx){r=o.y +if(r===B.dk||r===B.dl){if(q===B.aC){r=o.as +r.toString +o.as=r-a.e}else if(q===B.aR){r=o.as +r.toString +o.as=r+a.e}s=s.d +s.toString +o.NS(s)}}else if(a instanceof A.iE)switch(o.y){case B.dl:s=o.d +s===$&&A.a() +s=s.x +s===$&&A.a() +if(s<1)o.le(B.ip) +else o.RX() +break +case B.dk:o.le(B.ip) +break +case B.ip:case B.lB:case B.io:case B.lA:case null:case void 0:break}return!1}, +ac5(a){if(a.hm$!==0||!a.a)return!1 +if(this.y===B.dk){a.c=!1 +return!0}return!1}, +ai_(a,b){var s,r=this +switch(b.a){case 2:case 0:r.Q=!0 +break +case 3:case 1:r.Q=null +return!1}r.as=0 +s=r.e +s===$&&A.a() +s.sq(0,0) +s=r.d +s===$&&A.a() +s.sq(0,0) +return!0}, +NS(a){var s,r,q=this,p=q.as +p.toString +s=p/(a*0.25) +if(q.y===B.dl)s=Math.max(s,0.6666666666666666) +p=q.d +p===$&&A.a() +p.sq(0,A.A(s,0,1)) +if(q.y===B.dk){p=q.x +p===$&&A.a() +p=p.gq(p) +p=p.gdH(p) +r=q.gOZ() +r=p===r.gdH(r) +p=r}else p=!1 +if(p){q.y=B.dl +q.a.toString}}, +le(a){return this.a8N(a)}, +a8N(a){var s=0,r=A.H(t.H),q=this,p +var $async$le=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=2 +return A.v(A.dc(null,t.H),$async$le) +case 2:q.T(new A.ahv(q,a)) +case 3:switch(q.y.a){case 4:s=5 +break +case 5:s=6 +break +case 1:s=7 +break +case 0:s=8 +break +case 3:s=9 +break +case 2:s=10 +break +default:s=4 +break}break +case 5:p=q.e +p===$&&A.a() +p.z=B.av +s=11 +return A.v(p.i8(1,B.U,B.N),$async$le) +case 11:s=4 +break +case 6:p=q.d +p===$&&A.a() +p.z=B.av +s=12 +return A.v(p.i8(0,B.U,B.N),$async$le) +case 12:s=4 +break +case 7:case 8:case 9:case 10:s=4 +break +case 4:if(q.c!=null&&q.y===a){q.Q=q.as=null +q.T(new A.ahw(q))}return A.F(null,r)}}) +return A.G($async$le,r)}, +RX(){var s,r=this,q=$.aq +r.y=B.lA +r.a.toString +s=r.d +s===$&&A.a() +s.z=B.av +s.i8(0.6666666666666666,B.U,B.dO).bo(new A.ahA(r,new A.bB(new A.au(q,t.W),t.Q)),t.H)}, +H(a){var s,r,q,p=this,o=null,n=p.a.c,m=p.y,l=m===B.io||m===B.lB +n=A.b([new A.dd(p.gahY(),new A.dd(p.gac4(),n,o,t.eq),o,t.WA)],t.p) +if(p.y!=null){m=p.Q +m.toString +p.a.toString +m=!m?0:o +s=p.f +s===$&&A.a() +r=p.r +r===$&&A.a() +q=p.d +q===$&&A.a() +n.push(A.rf(m,A.aK4(B.af,1,new A.bo(new A.az(0,40,0,0),new A.eH(B.jp,o,o,A.aDV(A.hC(q,new A.ahB(p,l),o),r),o),o),s),o,o,0,0,0,o))}return A.hp(B.bA,n,B.B,B.bp,o)}} +A.ahx.prototype={ +$0(){var s=this.a +s.y=B.dk +s.a.toString}, +$S:0} +A.ahv.prototype={ +$0(){var s=this.a +s.y=this.b +s.a.toString}, +$S:0} +A.ahw.prototype={ +$0(){this.a.y=null}, +$S:0} +A.ahA.prototype={ +$1(a){var s=this.a +if(s.c!=null&&s.y===B.lA){s.T(new A.ahy(s)) +s.a.atk().i_(new A.ahz(s,this.b))}}, +$S:28} +A.ahy.prototype={ +$0(){this.a.y=B.io}, +$S:0} +A.ahz.prototype={ +$0(){var s=this.a +if(s.c!=null&&s.y===B.io){this.b.f1(0) +s.le(B.lB)}}, +$S:13} +A.ahB.prototype={ +$2(a,b){var s,r,q,p,o=null,n=this.a +n.a.toString +A.f3(a,B.b6,t.C).toString +n.a.toString +if(this.b)s=o +else{s=n.w +s===$&&A.a() +r=s.a +r=s.b.a8(0,r.gq(r)) +s=r}r=n.x +r===$&&A.a() +n.a.toString +q=new A.Cy(2,2.5,o,o,s,o,o,r,"Refresh",o,o) +p=A.aSh(o,o) +switch(0){case 0:return q}}, +$S:44} +A.Hm.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.hy.prototype={ +K(){return"_ScaffoldSlot."+this.b}} +A.Da.prototype={ +ac(){var s=null +return new A.Db(A.ks(t.Np),A.lI(s,t.nY),A.lI(s,t.BL),s,s)}} +A.Db.prototype={ +be(){var s=this.c +s.toString +this.y=A.bP(s,B.mE,t.w).w.z +this.dc()}, +GK(){var s,r,q,p,o,n +for(s=this.d,r=A.cl(s,s.r,A.n(s).c),q=t.Np,p=r.$ti.c;r.u();){o=r.d +if(o==null)o=p.a(o) +n=o.c.kD(q) +if(n==null||!s.p(0,n)){o.Uq() +o.U7()}}}, +aeH(a){var s=a.c.kD(t.Np) +return s==null||!this.d.p(0,s)}, +jq(a){var s,r,q,p,o=this,n=o.w +if(n==null){n=A.bK("SnackBar",B.hs,null,null,o) +n.bk() +r=n.co$ +r.b=!0 +r.a.push(o.gadr()) +o.w=n}r=o.r +if(r.b===r.c)n.bP(0) +s=A.c9() +n=o.w +n.toString +r=new A.kO() +q=a.a +r=q==null?r:q +s.b=new A.D9(A.w0(a.Q,a.as,n,a.d,a.z,a.db,a.ax,a.c,a.cy,a.ay,a.e,a.y,r,a.f,a.cx,a.r,a.ch,a.x,a.at,a.w),new A.bB(new A.au($.aq,t.dH),t.fO),new A.aj_(o),t.BL) +try{o.T(new A.aj0(o,s)) +o.GK()}catch(p){throw p}return s.aS()}, +ads(a){var s=this +switch(a.a){case 0:s.T(new A.aiW(s)) +s.GK() +if(!s.r.ga7(0))s.w.bP(0) +break +case 3:s.T(new A.aiX()) +s.GK() +break +case 1:case 2:break}}, +ZH(a){var s,r=this,q=r.r +if(q.b===q.c)return +s=q.ga3(0).b +if((s.a.a&30)===0)s.hL(0,a) +q=r.x +if(q!=null)q.aR(0) +r.x=null +r.w.sq(0,0)}, +Jq(a){var s,r,q=this,p=q.r +if(p.b===p.c||q.w.gaN(0)===B.Q)return +s=p.ga3(0).b +p=q.y +p===$&&A.a() +r=q.w +if(p){r.sq(0,0) +s.hL(0,a)}else r.dg(0).bo(new A.aiZ(s,a),t.H) +p=q.x +if(p!=null)p.aR(0) +q.x=null}, +ar5(){return this.Jq(B.RY)}, +H(a){var s,r,q,p=this +p.y=A.bP(a,B.mE,t.w).w.z +s=p.r +if(!s.ga7(0)){r=A.vb(a,null,t.X) +if(r==null||r.giw())if(p.w.gaN(0)===B.a2&&p.x==null){q=s.ga3(0).a +p.x=A.co(q.ay,new A.aiY(p,q))}}return new A.HP(p,p.a.c,null)}, +l(){var s=this,r=s.w +if(r!=null)r.l() +r=s.x +if(r!=null)r.aR(0) +s.x=null +s.a4D()}} +A.aj_.prototype={ +$0(){this.a.ar5()}, +$S:0} +A.aj0.prototype={ +$0(){this.a.r.fd(0,this.b.aS())}, +$S:0} +A.aiW.prototype={ +$0(){this.a.r.po()}, +$S:0} +A.aiX.prototype={ +$0(){}, +$S:0} +A.aiZ.prototype={ +$1(a){var s=this.a +if((s.a.a&30)===0)s.hL(0,this.b)}, +$S:28} +A.aiY.prototype={ +$0(){if(this.b.ch)return +this.a.Jq(B.RZ)}, +$S:0} +A.HP.prototype={ +ce(a){return this.f!==a.f}} +A.aj1.prototype={} +A.Qm.prototype={ +anT(a,b){var s=a==null?this.a:a +return new A.Qm(s,b==null?this.b:b)}} +A.Z5.prototype={ +Uv(a,b,c){var s=this +s.b=c==null?s.b:c +s.c=s.c.anT(a,b) +s.ak()}, +Uu(a){return this.Uv(null,null,a)}, +alb(a,b){return this.Uv(a,b,null)}} +A.Fc.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(!s.a1D(0,b))return!1 +return b instanceof A.Fc&&b.r===s.r&&b.e===s.e&&b.f===s.f}, +gB(a){var s=this +return A.T(A.ak.prototype.gB.call(s,0),s.r,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Tq.prototype={ +H(a){return this.c}} +A.axW.prototype={ +Kt(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=A.yS(a7),a4=a7.a,a5=a3.wE(a4),a6=a7.b +if(a2.b.h(0,B.jc)!=null){s=a2.dX(B.jc,a5).b +a2.fu(B.jc,B.i) +r=s}else{r=0 +s=0}if(a2.b.h(0,B.jh)!=null){q=0+a2.dX(B.jh,a5).b +p=Math.max(0,a6-q) +a2.fu(B.jh,new A.j(0,p))}else{q=0 +p=null}if(a2.b.h(0,B.mN)!=null){q+=a2.dX(B.mN,new A.ak(0,a5.b,0,Math.max(0,a6-q-r))).b +a2.fu(B.mN,new A.j(0,Math.max(0,a6-q)))}if(a2.b.h(0,B.jg)!=null){o=a2.dX(B.jg,a5) +a2.fu(B.jg,new A.j(0,s)) +if(!a2.ay)r+=o.b}else o=B.I +n=a2.f +m=Math.max(0,a6-Math.max(n.d,q)) +if(a2.b.h(0,B.jb)!=null){l=Math.max(0,m-r) +a2.dX(B.jb,new A.Fc(0,s,o.b,0,a5.b,0,l)) +a2.fu(B.jb,new A.j(0,r))}if(a2.b.h(0,B.je)!=null){a2.dX(B.je,new A.ak(0,a5.b,0,m)) +a2.fu(B.je,B.i)}k=a2.b.h(0,B.ez)!=null&&!a2.at?a2.dX(B.ez,a5):B.I +if(a2.b.h(0,B.jf)!=null){j=a2.dX(B.jf,new A.ak(0,a5.b,0,Math.max(0,m-r))) +a2.fu(B.jf,new A.j((a4-j.a)/2,m-j.b))}else j=B.I +i=A.c9() +if(a2.b.h(0,B.ji)!=null){h=a2.dX(B.ji,a3) +g=new A.aj1(h,j,m,s,n,a2.r,a7,k,a2.w) +f=a2.z.nu(g) +e=a2.as.a0_(a2.y.nu(g),f,a2.Q) +a2.fu(B.ji,e) +d=e.a +c=e.b +i.b=new A.x(d,c,d+h.a,c+h.b)}if(a2.b.h(0,B.ez)!=null){d=a2.ax +b=d!=null&&d") +m=t.F +l=t.R +k=t.i +j=A.aKW(new A.hi(new A.al(r,new A.fl(new A.lv(B.pb)),n),new A.ba(A.b([],m),l),0),new A.al(r,new A.fl(B.pb),n),r,0.5,k) +r=f.a.d +i=$.aPq() +o.a(r) +h=$.aPr() +g=A.aKW(new A.al(r,i,i.$ti.i("al")),new A.hi(new A.al(r,h,A.n(h).i("al")),new A.ba(A.b([],m),l),0),r,0.5,k) +f.a.toString +r=f.e +r.toString +f.w=A.aGB(j,r,k) +r=f.r +r.toString +f.y=A.aGB(j,r,k) +f.x=A.aEc(new A.al(d,new A.ay(1,1,s),s.i("al")),g,e) +f.Q=A.aEc(new A.al(q,p,p.$ti.i("al")),g,e) +d=f.y +f.z=new A.al(o.a(d),new A.fl(B.IE),n) +n=f.gagg() +d.bk() +d.cF$.E(0,n) +d=f.w +d.bk() +d.cF$.E(0,n)}, +acT(a){this.T(new A.arV(this,a))}, +H(a){var s,r,q=this,p=A.b([],t.p),o=q.d +o===$&&A.a() +if(o.gaN(0)!==B.Q){o=q.w +s=q.as +o===$&&A.a() +r=q.x +r===$&&A.a() +p.push(A.aDV(A.aJR(s,r),o))}o=q.a +s=q.y +o=o.c +s===$&&A.a() +r=q.Q +r===$&&A.a() +p.push(A.aDV(A.aJR(o,r),s)) +return A.hp(B.mW,p,B.B,B.bp,null)}, +agh(){var s,r=this.w +r===$&&A.a() +r=r.gq(r) +s=this.y +s===$&&A.a() +s=Math.max(r,s.gq(s)) +this.a.f.Uu(s)}} +A.arV.prototype={ +$0(){this.a.a.toString}, +$S:0} +A.D8.prototype={ +ac(){var s=null,r=t.jk,q=t.A,p=$.aw() +return new A.vN(new A.bu(s,r),new A.bu(s,r),new A.bu(s,q),new A.ru(!1,p),new A.ru(!1,p),A.b([],t.Z4),new A.bu(s,q),s,A.w(t.yb,t.M),s,!0,s,s,s)}, +amk(a,b){return A.b2v().$2(a,b)}} +A.aj5.prototype={ +$2(a,b){var s=null,r=this.a +return A.aeP(!0,s,A.aC(B.d.aI(255*Math.max(0.1,0.6-0.3*(1-r.gq(r))*0.3*10)),B.l.C()>>>16&255,B.l.C()>>>8&255,B.l.C()&255),!1,s,s,s)}, +$S:275} +A.vN.prototype={ +ged(){this.a.toString +return null}, +hs(a,b){var s=this +s.kU(s.w,"drawer_open") +s.kU(s.x,"end_drawer_open")}, +Uq(){var s=this,r=s.y.r,q=!r.ga7(0)?r.ga3(0):null +if(s.z!=q)s.T(new A.aj3(s,q))}, +U7(){var s=this,r=s.y.e,q=!r.ga7(0)?r.ga3(0):null +if(s.Q!=q)s.T(new A.aj2(s,q))}, +afh(){this.a.toString}, +adC(){var s,r=this.c +r.toString +s=A.Pn(r) +if(s!=null&&s.f.length!==0)s.kq(0,B.FH,B.d1)}, +go9(){this.a.toString +return!0}, +aw(){var s,r=this,q=null +r.aK() +s=r.c +s.toString +r.dx=new A.Z5(s,B.PX,$.aw()) +r.a.toString +r.cy=B.jD +r.CW=B.Dw +r.cx=B.jD +r.ch=A.bK(q,new A.aZ(4e5),q,1,r) +r.db=A.bK(q,B.N,q,q,r) +r.dy=A.bK(q,q,q,q,r)}, +aH(a){this.a4G(a) +this.a.toString}, +be(){var s,r=this,q=r.c.ad(t.d),p=q==null?null:q.f,o=r.y,n=o==null +if(!n)s=p==null||o!==p +else s=!1 +if(s)if(!n)o.d.F(0,r) +r.y=p +if(p!=null){p.d.E(0,r) +if(p.aeH(r)){if(!p.r.ga7(0))r.Uq() +if(!p.e.ga7(0))r.U7()}}r.afh() +r.a4F()}, +l(){var s=this,r=s.dx +r===$&&A.a() +r.P$=$.aw() +r.M$=0 +r=s.ch +r===$&&A.a() +r.l() +r=s.db +r===$&&A.a() +r.l() +r=s.y +if(r!=null)r.d.F(0,s) +s.w.l() +s.x.l() +r=s.dy +r===$&&A.a() +r.l() +s.a4H()}, +DL(a,b,c,d,e,f,g,h,i){var s,r=this.c +r.toString +s=A.bP(r,null,t.w).w.ZK(f,g,h,i) +if(e)s=s.auQ(!0) +if(d&&s.f.d!==0)s=s.qP(s.r.A0(s.w.d)) +if(b!=null)a.push(A.Bi(A.v7(b,s),c))}, +a6q(a,b,c,d,e,f,g,h){return this.DL(a,b,c,!1,d,e,f,g,h)}, +tu(a,b,c,d,e,f,g){return this.DL(a,b,c,!1,!1,d,e,f,g)}, +DK(a,b,c,d,e,f,g,h){return this.DL(a,b,c,d,!1,e,f,g,h)}, +NG(a,b){this.a.toString}, +NF(a,b){this.a.toString}, +H(a){var s,r,q,p,o,n=this,m=null,l={},k=A.J(a),j=a.ad(t.I).w,i=A.b([],t.s9),h=n.a,g=h.r,f=h.f +h=h.db +n.go9() +n.a6q(i,new A.Tq(new A.nE(g,n.f),!1,!1,m),B.jb,!0,h!=null,!1,!1,f!=null) +if(n.fr){h=n.a +h.toString +g=n.dy +g===$&&A.a() +n.tu(i,h.amk(a,g),B.je,!0,!0,!0,!0)}if(n.a.f!=null){h=A.bP(a,B.bK,t.w).w +h=n.r=A.aRw(a,n.a.f.fy)+h.r.b +g=n.a.f +g.toString +n.tu(i,new A.eZ(new A.ak(0,1/0,0,h),new A.Ao(1,h,h,h,m,m,g,m),m),B.jc,!0,!1,!1,!1)}l.a=!1 +l.b=null +if(n.at!=null||n.as.length!==0){h=A.a6(n.as,t.l7) +g=n.at +g=g==null?m:g.a +if(g!=null)h.push(g) +s=A.hp(B.mV,h,B.B,B.bp,m) +n.go9() +n.tu(i,s,B.jf,!0,!1,!1,!0)}h=n.z +if(h!=null){l.a=!1 +l.b=k.ep.w +h=h.a +g=n.a.db +n.go9() +n.DK(i,h,B.ez,!1,g!=null,!1,!1,!0)}l.c=!1 +if(n.Q!=null){a.ad(t.iB) +h=A.J(a) +g=n.Q +if(g!=null){g=g.a +g.gdl(g)}r=h.R8.f +l.c=(r==null?0:r)!==0 +h=n.Q +h=h==null?m:h.a +g=n.a.f +n.go9() +n.DK(i,h,B.jg,!1,!0,!1,!1,g!=null)}h=n.a +h=h.db +if(h!=null){n.go9() +n.DK(i,h,B.jh,!1,!1,!1,!1,!0)}h=n.ch +h===$&&A.a() +g=n.CW +g===$&&A.a() +f=n.dx +f===$&&A.a() +q=n.db +q===$&&A.a() +n.a.toString +n.tu(i,new A.G4(m,h,g,f,q,m),B.ji,!0,!0,!0,!0) +switch(k.w.a){case 2:case 4:n.tu(i,A.qf(B.aH,m,B.a9,!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n.gadB(),m,m,m,m,m,m),B.jd,!0,!1,!1,!0) +break +case 0:case 1:case 3:case 5:break}h=n.x +g=h.y +if(g==null?A.n(h).i("bJ.T").a(g):g){n.NF(i,j) +n.NG(i,j)}else{n.NG(i,j) +n.NF(i,j)}h=t.w +g=A.bP(a,B.bK,h).w +n.go9() +f=A.bP(a,B.j8,h).w +p=g.r.A0(f.f.d) +g=A.bP(a,B.ZH,h).w +n.go9() +h=A.bP(a,B.j8,h).w +h=h.f.d!==0?0:m +o=g.w.A0(h) +n.a.toString +return new A.Z6(!1,new A.Di(A.jp(!1,B.N,!0,m,A.hC(n.ch,new A.aj4(l,n,p,o,j,i),m),B.n,k.fx,0,m,m,m,m,m,B.cK),m),m)}} +A.aj3.prototype={ +$0(){this.a.z=this.b}, +$S:0} +A.aj2.prototype={ +$0(){this.a.Q=this.b}, +$S:0} +A.aj4.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l=this,k=A.ab([B.ml,new A.UJ(a,new A.ba(A.b([],t.e),t.c))],t.u,t.od),j=l.b +j.a.toString +s=j.cy +s.toString +r=j.ch +r===$&&A.a() +r=r.x +r===$&&A.a() +q=j.CW +q===$&&A.a() +p=j.dx +p===$&&A.a() +j=j.cx +j.toString +o=l.a +n=o.a +m=o.c +return A.tH(k,new A.na(new A.axW(!1,!1,l.c,l.d,l.e,p,j,s,r,q,n,o.b,m,null),l.f,null))}, +$S:276} +A.UJ.prototype={ +kJ(a,b){var s=A.aj6(this.e),r=s.w,q=r.y +if(!(q==null?A.n(r).i("bJ.T").a(q):q)){r=s.x +q=r.y +r=q==null?A.n(r).i("bJ.T").a(q):q}else r=!0 +if(r)s.a.toString +return r}, +dv(a){var s=A.aj6(this.e) +if(this.kJ(0,a))s.a.toString}} +A.D9.prototype={} +A.Z6.prototype={ +ce(a){return this.f!==a.f}} +A.axX.prototype={ +$2(a,b){if(!a.a)a.J(0,b)}, +$S:50} +A.HQ.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.HR.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.HS.prototype={ +aH(a){this.b0(a) +this.oG()}, +be(){var s,r,q,p,o=this +o.dc() +s=o.bw$ +r=o.gnh() +q=o.c +q.toString +q=A.o9(q) +o.fp$=q +p=o.mB(q,r) +if(r){o.hs(s,o.e7$) +o.e7$=!1}if(p)if(s!=null)s.l()}, +l(){var s,r=this +r.fo$.aj(0,new A.axX()) +s=r.bw$ +if(s!=null)s.l() +r.bw$=null +r.a4E()}} +A.Jr.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.QG.prototype={ +H(a){var s=this,r=null +if(A.J(a).w===B.L)return new A.um(8,B.di,s.c,s.d,!1,B.Pg,3,r,B.hs,B.Gj,A.ya(),r,r,3,r) +return new A.xe(s.c,s.d,r,r,r,r,B.cG,B.eY,A.ya(),r,r,0,r)}} +A.xe.prototype={ +ac(){var s=null +return new A.Wu(new A.bu(s,t.A),new A.bu(s,t.hA),s,s)}} +A.Wu.prototype={ +gpH(){var s=this.a.e +if(s==null){s=this.id +s===$&&A.a() +s=s.a +s=s==null?null:s.Y(this.guv())}return s===!0}, +goI(){this.a.toString +var s=this.id +s===$&&A.a() +s=s.d +if(s==null){s=this.k1 +s===$&&A.a() +s=!s}return s}, +gzd(){return new A.bh(new A.auw(this),t.Dm)}, +guv(){var s=A.aP(t.l) +if(this.fx)s.E(0,B.j0) +if(this.fy)s.E(0,B.A) +return s}, +gakc(){var s,r,q,p,o=this,n=o.go +n===$&&A.a() +s=n.k3 +r=A.c9() +q=A.c9() +p=A.c9() +switch(n.a.a){case 1:r.b=A.aC(153,s.C()>>>16&255,s.C()>>>8&255,s.C()&255) +q.b=A.aC(B.d.aI(127.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255) +n=o.k1 +n===$&&A.a() +if(n){n=o.c +n.toString +n=A.J(n).cx +n=A.aC(255,n.C()>>>16&255,n.C()>>>8&255,n.C()&255)}else n=A.aC(B.d.aI(25.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255) +p.b=n +break +case 0:r.b=A.aC(191,s.C()>>>16&255,s.C()>>>8&255,s.C()&255) +q.b=A.aC(166,s.C()>>>16&255,s.C()>>>8&255,s.C()&255) +n=o.k1 +n===$&&A.a() +if(n){n=o.c +n.toString +n=A.J(n).cx +n=A.aC(255,n.C()>>>16&255,n.C()>>>8&255,n.C()&255)}else n=A.aC(B.d.aI(76.5),s.C()>>>16&255,s.C()>>>8&255,s.C()&255) +p.b=n +break}return new A.bh(new A.aut(o,r,q,p),t.mN)}, +gakn(){var s=this.go +s===$&&A.a() +return new A.bh(new A.auv(this,s.a,s.k3),t.mN)}, +gakm(){var s=this.go +s===$&&A.a() +return new A.bh(new A.auu(this,s.a,s.k3),t.mN)}, +gak9(){return new A.bh(new A.aus(this),t.N5)}, +aw(){var s,r=this +r.MN() +s=r.fr=A.bK(null,B.N,null,null,r) +s.bk() +s.cF$.E(0,new A.auC(r))}, +be(){var s,r=this,q=r.c +q.toString +s=A.J(q) +r.go=s.ax +q=r.c +q.ad(t.NF) +q=A.J(q) +r.id=q.x +switch(s.w.a){case 0:r.k1=!0 +break +case 2:case 3:case 1:case 4:case 5:r.k1=!1 +break}r.a2G()}, +wK(){var s,r=this,q=r.CW +q===$&&A.a() +q.sci(0,r.gakc().a.$1(r.guv())) +q.sa_h(r.gakn().a.$1(r.guv())) +q.sa_g(r.gakm().a.$1(r.guv())) +q.sbC(r.c.ad(t.I).w) +q.sKR(r.gak9().a.$1(r.guv())) +s=r.a.r +if(s==null){s=r.id +s===$&&A.a() +s=s.e}if(s==null){s=r.k1 +s===$&&A.a() +s=s?null:B.ei}q.sws(s) +s=r.id +s===$&&A.a() +s=s.x +if(s==null){s=r.k1 +s===$&&A.a() +s=s?0:2}q.sI4(s) +s=r.id.y +q.sJV(s==null?0:s) +s=r.id.z +q.sK1(0,s==null?48:s) +s=r.c +s.toString +q.scl(0,A.bP(s,B.bK,t.w).w.r) +q.sD_(r.a.db) +q.sXN(!r.goI())}, +B9(a){this.MM(a) +this.T(new A.auB(this))}, +B8(a,b){this.ML(a,b) +this.T(new A.auA(this))}, +J6(a){var s,r=this +r.a2H(a) +if(r.Ym(a.gby(a),a.gcK(a),!0)){r.T(new A.auy(r)) +s=r.fr +s===$&&A.a() +s.bP(0)}else if(r.fy){r.T(new A.auz(r)) +s=r.fr +s===$&&A.a() +s.dg(0)}}, +J7(a){var s,r=this +r.a2I(a) +r.T(new A.aux(r)) +s=r.fr +s===$&&A.a() +s.dg(0)}, +l(){var s=this.fr +s===$&&A.a() +s.l() +this.MK()}} +A.auw.prototype={ +$1(a){var s=this.a,r=s.a.Q +s=s.id +s===$&&A.a() +s=s.c +s=s==null?null:s.Y(a) +return s===!0}, +$S:278} +A.aut.prototype={ +$1(a){var s,r,q,p=this,o=null +if(a.p(0,B.j0)){s=p.a.id +s===$&&A.a() +s=s.f +s=s==null?o:s.Y(a) +return s==null?p.b.aS():s}s=p.a +if(s.gzd().a.$1(a)){s=s.id +s===$&&A.a() +s=s.f +s=s==null?o:s.Y(a) +return s==null?p.c.aS():s}r=s.id +r===$&&A.a() +r=r.f +r=r==null?o:r.Y(a) +if(r==null)r=p.d.aS() +q=s.id.f +q=q==null?o:q.Y(a) +if(q==null)q=p.c.aS() +s=s.fr +s===$&&A.a() +s=s.x +s===$&&A.a() +s=A.z(r,q,s) +s.toString +return s}, +$S:8} +A.auv.prototype={ +$1(a){var s=this,r=s.a +if(r.gpH()&&r.gzd().a.$1(a)){r=r.id +r===$&&A.a() +r=r.r +r=r==null?null:r.Y(a) +if(r==null)switch(s.b.a){case 1:r=s.c +r=A.aC(8,r.C()>>>16&255,r.C()>>>8&255,r.C()&255) +break +case 0:r=s.c +r=A.aC(13,r.C()>>>16&255,r.C()>>>8&255,r.C()&255) +break +default:r=null}return r}return B.y}, +$S:8} +A.auu.prototype={ +$1(a){var s=this,r=s.a +if(r.gpH()&&r.gzd().a.$1(a)){r=r.id +r===$&&A.a() +r=r.w +r=r==null?null:r.Y(a) +if(r==null)switch(s.b.a){case 1:r=s.c +r=A.aC(B.d.aI(25.5),r.C()>>>16&255,r.C()>>>8&255,r.C()&255) +break +case 0:r=s.c +r=A.aC(64,r.C()>>>16&255,r.C()>>>8&255,r.C()&255) +break +default:r=null}return r}return B.y}, +$S:8} +A.aus.prototype={ +$1(a){var s,r +if(a.p(0,B.A)&&this.a.gzd().a.$1(a)){s=this.a +r=s.a.w +if(r==null){s=s.id +s===$&&A.a() +s=s.b +s=s==null?null:s.Y(a)}else s=r +return s==null?12:s}s=this.a +r=s.a.w +if(r==null){r=s.id +r===$&&A.a() +r=r.b +r=r==null?null:r.Y(a)}if(r==null){s=s.k1 +s===$&&A.a() +r=8/(s?2:1) +s=r}else s=r +return s}, +$S:152} +A.auC.prototype={ +$0(){this.a.wK()}, +$S:0} +A.auB.prototype={ +$0(){this.a.fx=!0}, +$S:0} +A.auA.prototype={ +$0(){this.a.fx=!1}, +$S:0} +A.auy.prototype={ +$0(){this.a.fy=!0}, +$S:0} +A.auz.prototype={ +$0(){this.a.fy=!1}, +$S:0} +A.aux.prototype={ +$0(){this.a.fy=!1}, +$S:0} +A.Dl.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Dl&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&J.d(b.e,s.e)&&b.f==s.f&&b.r==s.r&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z}} +A.Zb.prototype={} +A.Dm.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.Dm)if(b.a==r.a)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.e==r.e)if(J.d(b.f,r.f))if(b.r==r.r)if(b.w==r.w)if(b.x==r.x)if(b.y==r.y)s=J.d(b.z,r.z) +return s}} +A.Zc.prototype={} +A.Dn.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.Dn)if(J.d(b.a,r.a))if(b.b==r.b)if(J.d(b.c,r.c))if(J.d(b.d,r.d))if(J.d(b.e,r.e))if(b.f==r.f)if(J.d(b.r,r.r))if(J.d(b.w,r.w))if(J.d(b.x,r.x))if(J.d(b.y,r.y))if(J.d(b.z,r.z))s=J.d(b.as,r.as) +return s}} +A.Zd.prototype={} +A.Do.prototype={ +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s +if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +if(b instanceof A.Do)s=J.d(b.a,this.a) +else s=!1 +return s}} +A.Ze.prototype={} +A.DK.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.r,s.f,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.CW,s.cx,s.cy,A.T(s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,B.a,B.a,B.a,B.a))}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.DK)if(b.a==r.a)if(J.d(b.b,r.b))if(J.d(b.c,r.c))if(J.d(b.d,r.d))if(J.d(b.e,r.e))if(J.d(b.r,r.r))if(J.d(b.f,r.f))if(J.d(b.w,r.w))if(J.d(b.x,r.x))if(J.d(b.y,r.y))if(J.d(b.z,r.z))if(J.d(b.Q,r.Q))if(J.d(b.as,r.as))if(J.d(b.at,r.at))if(J.d(b.ax,r.ax))if(J.d(b.ay,r.ay))if(J.d(b.ch,r.ch))if(J.d(b.id,r.id))if(b.k1==r.k1)if(J.d(b.ok,r.ok))if(b.p1==r.p1)s=b.p2==r.p2 +return s}} +A.ZF.prototype={} +A.jK.prototype={ +K(){return"SnackBarClosedReason."+this.b}} +A.DN.prototype={ +ac(){return new A.If()}, +atj(){return this.w.$0()}} +A.If.prototype={ +acR(){var s=this +if(s.d)return +s.T(new A.ayx(s)) +s.a.atj() +s.c.ad(t.d).f.Jq(B.RV)}, +H(a){var s,r,q,p,o=this,n=null +A.J(a) +s=A.aLz(a) +r=A.J(a).ep +q=new A.ayA(o,r,s) +p=A.amf(n,n,n,n,n,n,n,n,n,n,n,n,q.$0(),n,n,n,n,n,n,n,n) +q=q.$0() +q=p.anR(new A.ayy(o,r).$0(),q) +p=o.d?n:o.gacQ() +return A.kM(A.ai(o.a.r,n,n,n,n,n,n),p,q)}} +A.ayx.prototype={ +$0(){this.a.d=!0}, +$S:0} +A.ayA.prototype={ +$0(){var s=this.a +s.a.toString +return A.xU(new A.ayB(s,this.b,this.c))}, +$S:279} +A.ayB.prototype={ +$1(a){var s,r=this +if(a.p(0,B.u)){r.a.a.toString +s=r.b.c +return s==null?r.c.gvi():s}s=r.a.a.c +return s}, +$S:8} +A.ayy.prototype={ +$0(){var s,r,q=this.a +q.a.toString +s=this.b +r=s.as +if(r instanceof A.tx)return r +return A.xU(new A.ayz(q,s))}, +$S:280} +A.ayz.prototype={ +$1(a){var s,r=this +if(a.p(0,B.u)){r.a.a.toString +s=r.b.at +return s==null?B.y:s}r.a.a.toString +s=r.b.as +return s==null?B.y:s}, +$S:8} +A.jJ.prototype={ +ac(){return new A.Ig(new A.kO())}} +A.Ig.prototype={ +aw(){var s,r=this +r.aK() +s=r.a.CW +s.bk() +s=s.co$ +s.b=!0 +s.a.push(r.gFJ()) +r.SK()}, +aH(a){var s,r,q=this +q.b0(a) +s=a.CW +if(q.a.CW!=s){r=q.gFJ() +s.cd(r) +s=q.a.CW +s.bk() +s=s.co$ +s.b=!0 +s.a.push(r) +q.OQ() +q.SK()}}, +SK(){var s=this,r=s.a.CW +r.toString +s.e=A.cw(B.ao,r,null) +r=s.a.CW +r.toString +s.f=A.cw(B.IL,r,null) +r=s.a.CW +r.toString +s.r=A.cw(B.IB,r,null) +r=s.a.CW +r.toString +s.w=A.cw(B.IC,r,B.B3) +r=s.a.CW +r.toString +s.x=A.cw(B.FG,r,B.B3)}, +OQ(){var s=this,r=s.e +if(r!=null)r.l() +r=s.f +if(r!=null)r.l() +r=s.r +if(r!=null)r.l() +r=s.w +if(r!=null)r.l() +r=s.x +if(r!=null)r.l() +s.x=s.w=s.r=s.f=s.e=null}, +l(){var s=this +s.a.CW.cd(s.gFJ()) +s.OQ() +s.aD()}, +afQ(a){if(a===B.a2){this.a.toString +this.d=!0}}, +H(b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=t.w,a4=A.bP(b1,B.mE,a3).w,a5=A.J(b1),a6=a5.ax,a7=a5.ep,a8=a6.a===B.am?a6.b:a6.y,a9=A.aLz(b1),b0=a7.d +if(b0==null)b0=a9.gjI() +s=a1.a +s.toString +r=a9.guO() +q=a7.w +a9.gtb() +p=r===B.RU +o=p?16:24 +n=s.r +n=new A.di(o,0,s.Q!=null?0:o,0) +m=o/2 +s=s.Q +s=s==null?a2:s.r +if(s==null)s="" +l=A.Es(a2,a2,1,a2,A.d2(a2,a2,A.J(b1).ok.as,s),B.az,B.al,a2,B.h0,B.aP) +l.Bq() +s=l.b +k=s.c +s=s.a.c +s.gb4(s) +s=a1.a.Q!=null?m:0 +l.l() +a1.a.toString +j=a7.x +i=j==null +if(i)j=a9.gvU() +h=A.bP(b1,B.mD,a3).w.a.a-(j.a+j.c) +a1.a.toString +g=a7.Q +if(g==null)g=a9.guE() +f=(k+s+0)/h>g +a3=t.p +s=A.b([],a3) +if(a1.a.Q!=null){k=A.amf(a2,a2,a2,a2,a2,a2,a2,a2,a2,a8,a2,a2,a2,new A.az(o,0,o,0),a2,a2,a2,a2,a2,a2,a2) +e=a1.a.Q +e.toString +s.push(new A.bo(new A.az(m,0,m,0),A.aKk(e,new A.we(k)),a2))}k=a1.a +k=A.b([A.ec(new A.bo(B.GI,A.kd(k.c,a2,a2,B.c6,!0,b0,a2,a2,B.aP),a2),1)],a3) +if(!f)B.b.O(k,s) +if(f)k.push(A.e1(a2,a2,h*0.4)) +a3=A.b([A.cR(k,B.w,B.x,B.t,0)],a3) +if(f)a3.push(new A.bo(B.GE,A.cR(s,B.w,B.i4,B.t,0),a2)) +d=new A.bo(n,new A.SL(a3,a2),a2) +if(!p)d=A.oc(!0,d,!1,B.as,!1) +a3=a1.a +a3.toString +c=a7.e +if(c==null)c=a9.gdl(0) +a3=a3.d +b=a3==null?a7.a:a3 +if(b==null)b=a9.gb8(0) +a3=a1.a +a3.toString +a=a7.f +if(a==null)a=p?a9.gbH(0):a2 +d=A.jp(!1,B.N,!0,a2,new A.rW(a5,d,a2),a3.db,b,c,a2,a2,a,a2,a2,B.cK) +if(p)d=A.oc(!1,q!=null?new A.bo(new A.az(0,j.b,0,j.d),A.e1(d,a2,q),a2):new A.bo(j,d,a2),!1,B.as,!1) +s=a3.y +s=!i?B.bY:B.aH +d=A.bG(a2,a2,new A.zN(d,new A.ayC(b1),B.o8,a2,s,a1.y),!0,a2,a2,!1,a2,a2,a2,a2,a2,a2,a2,!0,a2,a2,a2,a2,a2,a2,a2,a2,new A.ayD(b1),a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,B.z,a2) +if(a4.z)a0=d +else{a4=t.j3 +if(p){s=a1.r +s.toString +k=a1.x +k.toString +a0=new A.d5(s,!1,new A.t2(k,new A.ayE(),d,a2,a4),a2)}else{s=a1.e +s.toString +a0=new A.t2(s,new A.ayF(),d,a2,a4)}}return new A.ql("",A.LB(a0,a1.a.db,a2),!0,a2)}} +A.ayD.prototype={ +$0(){this.a.ad(t.d).f.ZH(B.RW)}, +$S:0} +A.ayC.prototype={ +$1(a){this.a.ad(t.d).f.ZH(B.RX)}, +$S:281} +A.ayE.prototype={ +$3(a,b,c){return new A.eH(B.BH,null,b,c,null)}, +$S:164} +A.ayF.prototype={ +$3(a,b,c){return new A.eH(B.bA,null,b,c,null)}, +$S:164} +A.ayG.prototype={ +glk(){var s,r=this,q=r.CW +if(q===$){q=r.ch +if(q===$){s=A.J(r.ay) +r.ch!==$&&A.aA() +r.ch=s +q=s}r.CW!==$&&A.aA() +q=r.CW=q.ax}return q}, +gb8(a){var s=this.glk(),r=s.xr +return r==null?s.k3:r}, +gzs(){return A.xU(new A.ayH(this))}, +gvi(){var s=this.glk(),r=s.y2 +return r==null?s.c:r}, +gjI(){var s,r,q=A.J(this.ay).ok.z +q.toString +s=this.glk() +r=s.y1 +return q.b1(r==null?s.k2:r)}, +gdl(a){return 6}, +gbH(a){return B.PU}, +guO(){return B.RT}, +gvU(){return B.GO}, +gtb(){return!1}, +gzV(){var s=this.glk(),r=s.y1 +return r==null?s.k2:r}, +guE(){return 0.25}} +A.ayH.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.u)){s=q.a.glk() +r=s.y2 +return r==null?s.c:r}if(a.p(0,B.T)){s=q.a.glk() +r=s.y2 +return r==null?s.c:r}if(a.p(0,B.A)){s=q.a.glk() +r=s.y2 +return r==null?s.c:r}if(a.p(0,B.E)){s=q.a.glk() +r=s.y2 +return r==null?s.c:r}s=q.a.glk() +r=s.y2 +return r==null?s.c:r}, +$S:8} +A.Rl.prototype={ +K(){return"SnackBarBehavior."+this.b}} +A.w1.prototype={ +gB(a){var s=this +return A.T(s.gb8(s),s.gzs(),s.gvi(),s.gjI(),s.gdl(s),s.gbH(s),s.guO(),s.w,s.gvU(),s.gtb(),s.gzV(),s.guE(),s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.w1)if(J.d(b.gb8(b),r.gb8(r)))if(J.d(b.gzs(),r.gzs()))if(J.d(b.gvi(),r.gvi()))if(J.d(b.gjI(),r.gjI()))if(b.gdl(b)==r.gdl(r))if(J.d(b.gbH(b),r.gbH(r)))if(b.guO()==r.guO())if(b.w==r.w)if(J.d(b.gvU(),r.gvU()))if(b.gtb()==r.gtb())if(J.d(b.gzV(),r.gzV()))if(b.guE()==r.guE())if(J.d(b.as,r.as))s=J.d(b.at,r.at) +return s}, +gb8(a){return this.a}, +gzs(){return this.b}, +gvi(){return this.c}, +gjI(){return this.d}, +gdl(a){return this.e}, +gbH(a){return this.f}, +guO(){return this.r}, +gvU(){return this.x}, +gtb(){return null}, +gzV(){return this.z}, +guE(){return this.Q}} +A.ZL.prototype={} +A.E5.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.E5)if(b.a==r.a)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.r==r.r)if(b.w==r.w)s=J.d(b.y,r.y) +return s}} +A.a__.prototype={} +A.E9.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.E9)if(J.d(b.a,r.a))if(J.d(b.b,r.b))if(J.d(b.d,r.d))if(J.d(b.f,r.f))if(J.d(b.r,r.r))if(J.d(b.w,r.w))if(J.d(b.x,r.x))if(J.d(b.y,r.y))if(b.z==r.z)s=J.d(b.ch,r.ch) +return s}} +A.a_7.prototype={} +A.RS.prototype={ +qV(a){var s=null +A.J(a) +A.J(a) +return new A.a_f(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.N,!0,B.a_,s,s,s)}, +Cm(a){var s=a.ad(t.if),r=s==null?null:s.w +return(r==null?A.J(a).eB:r).a}} +A.a_f.prototype={ +gkl(){var s,r=this,q=r.go +if(q===$){s=A.J(r.fy) +r.go!==$&&A.aA() +q=r.go=s.ax}return q}, +ghY(){return new A.b2(A.J(this.fy).ok.as,t.RP)}, +gb8(a){return B.bh}, +gcw(){return new A.bh(new A.ayT(this),t.b)}, +gdA(){return new A.bh(new A.ayW(this),t.b)}, +gbc(a){return B.bh}, +gbu(){return B.bh}, +gdl(a){return B.et}, +gcl(a){return new A.b2(A.b0h(this.fy),t.mD)}, +gh3(){return B.mu}, +gh1(){return B.mt}, +gcH(){return new A.bh(new A.ayU(this),t.mN)}, +gh2(){return B.dt}, +gbH(a){return B.du}, +gh4(){return new A.bh(new A.ayV(),t.B_)}, +gdP(){return A.J(this.fy).Q}, +gh5(){return A.J(this.fy).f}, +gfI(){return A.J(this.fy).y}} +A.ayT.prototype={ +$1(a){var s +if(a.p(0,B.u)){s=this.a.gkl().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}return this.a.gkl().b}, +$S:8} +A.ayW.prototype={ +$1(a){if(a.p(0,B.T))return this.a.gkl().b.b_(0.1) +if(a.p(0,B.A))return this.a.gkl().b.b_(0.08) +if(a.p(0,B.E))return this.a.gkl().b.b_(0.1) +return null}, +$S:68} +A.ayU.prototype={ +$1(a){var s,r=this +if(a.p(0,B.u)){s=r.a.gkl().k3 +return A.aC(97,s.C()>>>16&255,s.C()>>>8&255,s.C()&255)}if(a.p(0,B.T))return r.a.gkl().b +if(a.p(0,B.A))return r.a.gkl().b +if(a.p(0,B.E))return r.a.gkl().b +return r.a.gkl().b}, +$S:8} +A.ayV.prototype={ +$1(a){if(a.p(0,B.u))return B.b5 +return B.cp}, +$S:47} +A.we.prototype={ +gB(a){return J.C(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.we&&J.d(b.a,this.a)}} +A.Eh.prototype={ +np(a,b,c){return A.aKk(c,this.w)}, +ce(a){return!this.w.j(0,a.w)}} +A.a_g.prototype={} +A.a_i.prototype={ +atP(){this.x.a.toString}} +A.Ek.prototype={ +ac(){var s=null +return new A.Iz(new A.bu(s,t.NE),s,A.w(t.yb,t.M),s,!0,s)}} +A.Iz.prototype={ +glf(){var s=this.a.e +return s}, +gdr(){var s=this.a.f,r=this.e +if(r==null){s=A.MY(!0,null,!0,!0,null,null,!1) +this.e=s}else s=r +return s}, +ga9o(){this.a.toString +var s=this.c +s.toString +A.J(s) +return B.N0}, +gej(){var s=this.a,r=s.p4 +if(r==null)s=s.r.a2 +else s=r +return s}, +gaed(){this.a.toString +return!1}, +go2(){var s=this.a.r +if(s.cy==null)s=this.gaed() +else s=!0 +return s}, +gtK(){var s=this.a.x2,r=this.Ps().db +s=r==null?null:r.b +if(s==null){s=this.c +s.toString +s=A.J(s).ax.fy}return s}, +Ps(){var s,r,q,p,o,n,m=this,l=m.c +l.toString +A.f3(l,B.b6,t.C).toString +l=m.c +l.toString +s=A.J(l) +l=m.a.r +r=s.e +l=l.Hf(r) +q=m.gej() +p=m.a +o=p.r.ax +r=o==null?r.r:o +n=l.anW(q,r==null?p.fr:r) +l=n.ry==null +if(!l||n.rx!=null)return n +r=m.glf().a.a;(r.length===0?B.co:new A.f7(r)).gv(0) +if(l)if(n.rx==null)m.a.toString +m.a.toString +return n}, +aw(){var s,r,q=this +q.aK() +q.w=new A.a_i(q,q) +q.a.toString +s=q.gdr() +q.a.toString +r=q.gej() +s.sku(r) +q.gdr().Z(0,q.gTo()) +q.aep()}, +gTn(){var s,r=this.c +r.toString +r=A.bW(r,B.fS) +s=r==null?null:r.CW +switch((s==null?B.e8:s).a){case 0:this.a.toString +r=this.gej() +break +case 1:r=!0 +break +default:r=null}return r}, +be(){this.a5B() +this.gdr().sku(this.gTn())}, +aH(a){var s=this +s.a5C(a) +s.a.toString +s.gdr().sku(s.gTn()) +if(s.gdr().gbQ())s.a.toString +s.a.toString +s.gfL().d7(0,B.u,!s.gej()) +s.gfL().d7(0,B.A,s.f) +s.gfL().d7(0,B.E,s.gdr().gbQ()) +s.gfL().d7(0,B.bI,s.go2())}, +hs(a,b){var s=this.d +if(s!=null)this.kU(s,"controller")}, +ged(){return this.a.br}, +l(){var s,r=this +r.gdr().J(0,r.gTo()) +s=r.e +if(s!=null)s.l() +s=r.d +if(s!=null){s.a8Y() +s.a3b()}r.gfL().J(0,r.gQn()) +s=r.z +if(s!=null){s.P$=$.aw() +s.M$=0}r.a5D()}, +S6(){var s=this.y.gL() +if(s!=null)s.Ch()}, +ajx(a){var s=this,r=s.w +r===$&&A.a() +if(!r.b||!r.c)return!1 +if(a===B.ah)return!1 +s.a.toString +if(!s.gej())return!1 +if(a===B.bv||a===B.fv)return!0 +if(s.glf().a.a.length!==0)return!0 +return!1}, +ak3(){this.T(new A.ayY()) +this.gfL().d7(0,B.E,this.gdr().gbQ())}, +ak5(a,b){var s,r=this,q=r.ajx(b) +if(q!==r.r)r.T(new A.az_(r,q)) +s=r.c +s.toString +switch(A.J(s).w.a){case 2:case 4:case 3:case 5:case 1:case 0:if(b===B.bv){s=r.y.gL() +if(s!=null)s.iX(a.gdd())}break}s=r.c +s.toString +switch(A.J(s).w.a){case 2:case 1:case 0:break +case 4:case 3:case 5:if(b===B.aj){s=r.y.gL() +if(s!=null)s.h0()}break}}, +adf(){var s=this.glf().a.b +if(s.a===s.b)this.y.gL().a_f()}, +Qb(a){var s=this +if(a!==s.f){s.T(new A.ayZ(s,a)) +s.gfL().d7(0,B.A,s.f)}}, +adA(){this.T(new A.az0())}, +gfL(){this.a.toString +var s=this.z +s.toString +return s}, +aep(){var s=this +s.a.toString +s.z=A.anN() +s.gfL().d7(0,B.u,!s.gej()) +s.gfL().d7(0,B.A,s.f) +s.gfL().d7(0,B.E,s.gdr().gbQ()) +s.gfL().d7(0,B.bI,s.go2()) +s.gfL().Z(0,s.gQn())}, +gkY(){var s,r,q,p,o=this,n=o.a.bO +if(n==null)s=null +else s=J.nA(n.slice(0),A.a2(n).c) +if(s!=null){n=o.y.gL() +n.toString +n=A.f5(n) +r=o.glf().a +q=o.a.r +p=new A.tQ(!0,"EditableText-"+n,s,r,q.z)}else p=B.n0 +n=o.y.gL().gkY() +return A.aKm(n.z,n.ay,n.e,p,!1,!0,n.y,!0,n.ch,n.Q,n.b,n.at,n.d,n.c,n.r,n.w,n.as,n.a)}, +H(e0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5=this,d6=null,d7={},d8=A.J(e0),d9=e0.ad(t.Uf) +if(d9==null)d9=B.dN +s=A.cu(d5.a.z,d5.gfL().a,t.p8) +r=A.J(e0).ok.y +r.toString +q=d5.c +q.toString +A.J(q) +q=d5.c +q.toString +q=A.b04(q) +p=t.em +o=A.cu(q,d5.gfL().a,p) +n=A.cu(r,d5.gfL().a,p).aZ(o).aZ(s) +d5.a.toString +r=d8.ax +m=d5.glf() +l=d5.gdr() +q=t.VS +p=A.b([],q) +k=d5.a +k.toString +switch(A.aM().a){case 2:case 4:j=A.aSm(k.cb) +break +case 0:case 1:case 3:case 5:j=A.aXz(k.cb) +break +default:j=d6}k=d5.a +i=k.I +h=k.to +g=k.ry +d7.a=d7.b=null +f=!1 +e=!1 +d=d6 +c=d6 +switch(d8.w.a){case 2:b=A.uo(e0) +d5.x=!0 +i=$.aQF() +if(d5.go2())a=d5.gtK() +else{d5.a.toString +k=d9.w +a=k==null?b.ger():k}a0=d9.x +if(a0==null)a0=b.ger().b_(0.4) +d=new A.j(-2/A.bP(e0,B.cS,t.w).w.b,0) +c=a0 +f=!0 +h=!0 +g=B.eh +break +case 4:b=A.uo(e0) +h=d5.x=!1 +i=$.aQE() +if(d5.go2())a=d5.gtK() +else{d5.a.toString +k=d9.w +a=k==null?b.ger():k}a0=d9.x +if(a0==null)a0=b.ger().b_(0.4) +d=new A.j(-2/A.bP(e0,B.cS,t.w).w.b,0) +d7.b=new A.az3(d5) +d7.a=new A.az4(d5) +f=!0 +g=B.eh +break +case 0:case 1:d5.x=!1 +i=$.aQL() +if(d5.go2())a=d5.gtK() +else{d5.a.toString +k=d9.w +a=k==null?r.b:k}a0=d9.x +if(a0==null)a0=r.b.b_(0.4) +h=e +break +case 3:d5.x=!1 +i=$.aGc() +if(d5.go2())a=d5.gtK() +else{d5.a.toString +k=d9.w +a=k==null?r.b:k}a0=d9.x +if(a0==null)a0=r.b.b_(0.4) +d7.b=new A.az5(d5) +d7.a=new A.az6(d5) +h=e +break +case 5:d5.x=!1 +i=$.aGc() +if(d5.go2())a=d5.gtK() +else{d5.a.toString +k=d9.w +a=k==null?r.b:k}a0=d9.x +if(a0==null)a0=r.b.b_(0.4) +d7.b=new A.az7(d5) +d7.a=new A.az8(d5) +h=e +break +default:a0=d6 +a=a0 +f=a}k=d5.bw$ +a1=d5.a +a1.toString +a2=d5.gej() +a3=!a2 +a4=a1.id +a5=d5.r +a6=a1.cx +a7=a1.cy +a8=a1.fr +a9=l.gbQ()?a0:d6 +b0=d5.a +b1=b0.P +b2=b1?i:d6 +b3=b0.k4 +b4=b0.ok +b5=b0.p1 +b6=b0.p2 +b7=b0.d +b8=b0.a9 +b9=b0.ab +c0=b0.RG +c1=b0.rx +c2=b0.xr +c3=b0.y1 +c4=b0.M +c5=b0.X +c6=b0.aL +c7=b0.b9 +c8=b0.bO +c9=b0.bf +d0=b0.dW +d1=b0.bK +d2=$.aOV() +b0=b0.D +if(a7==null)a7=A.aTl(c8) +A.aTk() +if(t.qY.b(b2))a4=B.mj +else if(a6)a4=a3?B.mj:B.XD +else a4=a3?B.XE:B.XF +if(a8===1){q=A.b([$.aO_()],q) +B.b.O(q,p)}else q=p +p=c2==null?A.aHE():c2 +c2=c3==null?A.aHF():c3 +b0=A.EQ(k,new A.uy(m,l,a1.CW,a6,a3,a4,a5,a2,a7,a1.db,a1.dx,!0,n,a1.bW,a1.Q,a1.as,a1.ax,a1.y,a,c,B.eV,a8,a1.fx,!1,!1,a9,b2,a1.w,a1.x,b3,b4,b5,b6,d5.gak4(),d5.gade(),b7,b8,b9,q,B.bV,!0,c0,c1,g,h,d,f,p,c2,r.a,c4,b1,c5,c6,c7,!0,!0,!0,c8,d5,c9,"editable",!0,d0,d1,j,d2,b0,d5.y)) +d5.a.toString +d3=A.hC(new A.tg(A.b([l,m],t.Eo)),new A.az9(d5,l,m),new A.jC(b0,d6)) +d5.a.toString +d4=A.cu(B.a_v,d5.gfL().a,t.Pb) +d7.c=null +if(d5.ga9o()!==B.N_)d5.a.toString +d5.a.toString +r=d5.gej() +q=d5.w +q===$&&A.a() +p=q.a.x +p===$&&A.a() +k=p?q.gatd():d6 +p=p?q.gatb():d6 +q.x.a.toString +return A.jt(A.RW(A.kn(A.hC(m,new A.aza(d7,d5),new A.Et(q.gatJ(),q.gatH(),q.gatF(),k,p,q.gatn(),q.gatp(),q.gatC(),q.gatA(),q.gatO(),q.gaty(),q.gatw(),q.gatu(),q.gats(),q.gat2(),q.gatM(),q.gat6(),q.gat8(),q.gat4(),!1,B.cI,d3,d6)),!r,d6),d6,B.c8,d6,d6),d4,d6,new A.azb(d5),new A.azc(d5),d6)}} +A.ayY.prototype={ +$0(){}, +$S:0} +A.az_.prototype={ +$0(){this.a.r=this.b}, +$S:0} +A.ayZ.prototype={ +$0(){this.a.f=this.b}, +$S:0} +A.az0.prototype={ +$0(){}, +$S:0} +A.az3.prototype={ +$0(){var s,r=this.a +if(!r.gdr().gbQ()){s=r.gdr() +s=s.b&&B.b.e6(s.gcU(),A.eE())}else s=!1 +if(s)r.gdr().iD()}, +$S:0} +A.az4.prototype={ +$0(){this.a.gdr().iF()}, +$S:0} +A.az5.prototype={ +$0(){var s,r=this.a +if(!r.gdr().gbQ()){s=r.gdr() +s=s.b&&B.b.e6(s.gcU(),A.eE())}else s=!1 +if(s)r.gdr().iD()}, +$S:0} +A.az6.prototype={ +$0(){this.a.gdr().iF()}, +$S:0} +A.az7.prototype={ +$0(){var s,r=this.a +if(!r.gdr().gbQ()){s=r.gdr() +s=s.b&&B.b.e6(s.gcU(),A.eE())}else s=!1 +if(s)r.gdr().iD()}, +$S:0} +A.az8.prototype={ +$0(){this.a.gdr().iF()}, +$S:0} +A.az9.prototype={ +$2(a,b){var s,r,q,p=this.a,o=p.Ps(),n=p.a,m=n.z,l=n.as +n=n.at +s=p.f +r=this.b.gbQ() +q=this.c.a.a +p.a.toString +return new A.qs(o,m,l,n,r,s,!1,q.length===0,b,null)}, +$S:284} +A.azb.prototype={ +$1(a){return this.a.Qb(!0)}, +$S:58} +A.azc.prototype={ +$1(a){return this.a.Qb(!1)}, +$S:42} +A.aza.prototype={ +$2(a,b){var s,r,q=null,p=this.b,o=p.gej(),n=this.a,m=n.c,l=p.glf().a.a +l=(l.length===0?B.co:new A.f7(l)).gv(0) +p.a.toString +s=n.b +n=n.a +r=p.gej()?new A.az1(p):q +return A.bG(q,q,b,!1,l,o,!1,q,q,q,q,q,q,q,q,q,m,q,q,q,q,s,n,q,r,q,q,new A.az2(p),q,q,q,q,q,q,q,q,B.z,q)}, +$S:115} +A.az2.prototype={ +$0(){var s=this.a +if(!s.glf().a.b.gbG())s.glf().st9(A.mf(B.j,s.glf().a.a.length)) +s.S6()}, +$S:0} +A.az1.prototype={ +$0(){var s=this.a,r=s.gdr() +if(r.b&&B.b.e6(r.gcU(),A.eE())&&!s.gdr().gbQ())s.gdr().iD() +else{s.a.toString +s.S6()}}, +$S:0} +A.aB3.prototype={ +$1(a){var s,r=null +if(a.p(0,B.u)){s=A.J(this.a).ok.y.b +return A.iL(r,r,s==null?r:s.b_(0.38),r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}return A.iL(r,r,A.J(this.a).ok.y.b,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}, +$S:43} +A.aAi.prototype={ +$2(a,b){if(!a.a)a.J(0,b)}, +$S:50} +A.JH.prototype={ +aH(a){this.b0(a) +this.oG()}, +be(){var s,r,q,p,o=this +o.dc() +s=o.bw$ +r=o.gnh() +q=o.c +q.toString +q=A.o9(q) +o.fp$=q +p=o.mB(q,r) +if(r){o.hs(s,o.e7$) +o.e7$=!1}if(p)if(s!=null)s.l()}, +l(){var s,r=this +r.fo$.aj(0,new A.aAi()) +s=r.bw$ +if(s!=null)s.l() +r.bw$=null +r.aD()}} +A.Em.prototype={ +ac(){var s=null +return new A.xL(new A.ru(!1,$.aw()),A.MY(!0,s,!0,!0,s,s,!1),s,A.w(t.yb,t.M),s,!0,s)}} +A.aml.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +t.S0.a(a) +s=h.a +r=a.c +r.toString +q=s.Hf(A.aDp(r)) +r=a.e +r===$&&A.a() +p=r.y +r=p==null?A.n(r).i("bJ.T").a(p):p +if(r!=null)q=q.anj(r) +r=a.bw$ +p=a.gqp() +o=h.CW +n=h.db +m=h.dy +m=n?B.Ar:B.As +l=h.fr +l=n?B.At:B.Au +k=h.R8 +s=s.a2 +k=h.M +k=!n||!o +j=A.aHE() +i=A.aHF() +return A.EQ(r,A.El(h.dx,h.X,h.ax,h.I,h.f3,h.aE,h.ao,h.ab,p,h.x1,h.x2,h.ry,h.bO,h.to,h.rx,q,h.bF,h.S,k,h.fx,s!==!1,h.k1,h.f,h.d,h.bW,h.RG,h.p4,h.y2,h.r,h.aX,h.k2,h.fy,h.go,h.id,h.a9,n,h.cy,h.aL,new A.amm(a,h.c),h.p2,h.p3,h.k3,h.k4,h.ok,h.p1,o,h.e,h.dW,h.a2,h.xr,h.y1,h.P,h.n,j,i,h.cx,m,l,h.au,h.ay,h.y,h.x,h.bK,h.z,h.Q,h.at,h.as,h.w,h.ch,h.b9))}, +$S:285} +A.amm.prototype={ +$1(a){this.a.Ag(a)}, +$S:37} +A.xL.prototype={ +gqp(){var s=t.mr.a(A.X.prototype.gaa.call(this)) +return s.at}, +hs(a,b){var s,r=this +r.a22(a,b) +s=r.ay +if(s!=null)r.kU(s,"controller") +r.d=r.gqp().a.a}, +aw(){var s,r=this +r.a21() +s=t.mr +s.a(A.X.prototype.gaa.call(r)) +s.a(A.X.prototype.gaa.call(r)).at.Z(0,r.gF8())}, +aH(a){var s,r,q,p=this +p.a2_(a) +s=t.mr +r=a.at +if(s.a(A.X.prototype.gaa.call(p)).at!==r){q=p.gF8() +r.J(0,q) +s.a(A.X.prototype.gaa.call(p)).at.Z(0,q) +s.a(A.X.prototype.gaa.call(p)) +s.a(A.X.prototype.gaa.call(p)) +p.d=s.a(A.X.prototype.gaa.call(p)).at.a.a}}, +l(){var s,r=this +t.mr.a(A.X.prototype.gaa.call(r)).at.J(0,r.gF8()) +s=r.ay +if(s!=null){s.a8Y() +s.a3b()}r.a20()}, +Ag(a){var s +this.a1Z(a) +if(this.gqp().a.a!==a){s=this.gqp() +s.nS(0,new A.cA(a,B.en,B.bg))}}, +abg(){var s=this +if(s.gqp().a.a!==s.gGS())s.Ag(s.gqp().a.a)}} +A.Om.prototype={} +A.aec.prototype={ +t_(a){return B.RG}, +zN(a,b,c,d){var s,r,q,p=null,o=A.J(a) +a.ad(t.bZ) +s=A.J(a) +r=s.c1.c +if(r==null)r=o.ax.b +q=A.e1(A.ip(A.qf(B.cI,p,B.a9,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,d,p,p,p,p,p,p),p,p,new A.a_k(r,p),B.I),22,22) +switch(b.a){case 0:s=A.aEd(1.5707963267948966,q) +break +case 1:s=q +break +case 2:s=A.aEd(0.7853981633974483,q) +break +default:s=p}return s}, +rZ(a,b){var s +switch(a.a){case 2:s=B.NG +break +case 0:s=B.NI +break +case 1:s=B.i +break +default:s=null}return s}} +A.a_k.prototype={ +aA(a,b){var s,r,q,p=$.a3(),o=A.bc(),n=this.b +o.r=n.gq(n) +s=b.a/2 +r=A.o3(new A.j(s,s),s) +n=0+s +q=A.bQ(p.w) +q.aq(new A.lc(r)) +q.aq(new A.fe(new A.x(0,0,n,n))) +a.ip(q,o)}, +ew(a){return!this.b.j(0,a.b)}} +A.Ww.prototype={} +A.Ev.prototype={ +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Ev&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&J.d(b.c,s.c)}} +A.a_l.prototype={} +A.S2.prototype={ +H(a){var s=this.c.a0(0,B.NE),r=this.d.V(0,B.NB),q=A.bP(a,B.bK,t.w).w.r.b+8,p=44<=s.b-8-q,o=new A.j(8,q) +return new A.bo(new A.az(8,q,8,8),new A.lj(new A.S3(s.a0(0,o),r.a0(0,o),p),new A.IE(this.e,p,A.b2J(),null),null),null)}} +A.IE.prototype={ +ac(){return new A.a_q(new A.kO(),null,null)}, +avx(a,b){return this.e.$2(a,b)}} +A.a_q.prototype={ +aH(a){var s=this +s.b0(a) +if(!A.cE(s.a.c,a.c)){s.e=new A.kO() +s.d=!1}}, +H(a){var s,r,q,p,o,n,m,l,k=this,j=null +A.f3(a,B.b6,t.C).toString +s=a.ad(t.I).w +r=k.e +q=k.d +p=k.a +o=p.d +n=t.A9 +n=q?new A.e3(B.Az,n):new A.e3(B.Sd,n) +m=A.dX(q?B.oP:B.HC,j,j,j) +l=q?"Back":"More" +n=A.b([new A.a_p(m,new A.azt(k),l,n)],t.p) +B.b.O(n,k.a.c) +return new A.a_r(q,s,A.aGy(p.avx(a,new A.a_n(o,q,s,n,j)),B.U,B.Gk),r)}} +A.azt.prototype={ +$0(){var s=this.a +s.T(new A.azs(s))}, +$S:0} +A.azs.prototype={ +$0(){var s=this.a +s.d=!s.d}, +$S:0} +A.a_r.prototype={ +aG(a){var s=new A.a_s(this.e,this.f,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sKm(this.e) +b.sbC(this.f)}} +A.a_s.prototype={ +sKm(a){if(a===this.R)return +this.R=a +this.a_()}, +sbC(a){if(a===this.af)return +this.af=a +this.a_()}, +bx(){var s,r,q=this,p=q.D$ +p.toString +s=t.k +r=s.a(A.t.prototype.gW.call(q)) +p.c3(new A.ak(0,r.b,0,r.d),!0) +if(!q.R&&q.A==null)q.A=q.D$.gt(0).a +p=s.a(A.t.prototype.gW.call(q)) +s=q.A +if(s!=null){s=q.D$.gt(0) +r=q.A +r.toString +s=s.a>r}else{r=s +s=!0}if(s)s=q.D$.gt(0).a +else{r.toString +s=r}q.fy=p.b3(new A.I(s,q.D$.gt(0).b)) +s=q.D$.b +s.toString +t.V.a(s) +s.a=new A.j(q.af===B.b_?0:q.gt(0).a-q.D$.gt(0).a,0)}, +aA(a,b){var s=this.D$,r=s.b +r.toString +a.dm(s,t.V.a(r).a.V(0,b))}, +cz(a,b){var s=this.D$.b +s.toString +return a.iU(new A.azu(this),t.V.a(s).a,b)}, +eg(a){if(!(a.b instanceof A.fy))a.b=new A.fy(null,null,B.i)}, +cP(a,b){var s=a.b +s.toString +s=t.V.a(s).a +b.dC(s.a,s.b,0,1) +this.a2V(a,b)}} +A.azu.prototype={ +$2(a,b){return this.a.D$.cp(a,b)}, +$S:18} +A.a_n.prototype={ +aG(a){var s=new A.YM(this.e,this.f,this.r,0,null,null,new A.aO(),A.ah()) +s.aF() +return s}, +aP(a,b){b.sarN(this.e) +b.sbC(this.r) +b.sKm(this.f)}, +bJ(a){return new A.a_o(A.dj(t.h),this,B.Z)}} +A.a_o.prototype={} +A.YM.prototype={ +sarN(a){if(a===this.I)return +this.I=a +this.a_()}, +sKm(a){if(a===this.X)return +this.X=a +this.a_()}, +sbC(a){if(a===this.a2)return +this.a2=a +this.a_()}, +aeN(){var s,r=this,q={},p=t.k,o=r.X?p.a(A.t.prototype.gW.call(r)):A.yS(new A.I(p.a(A.t.prototype.gW.call(r)).b,44)) +q.a=-1 +q.b=0 +r.bg(new A.axl(q,r,o)) +p=r.a4$ +p.toString +s=r.n +if(s!==-1&&s===r.c0$-2&&q.b-p.gt(0).a<=o.b)r.n=-1}, +yY(a,b){var s,r=this +if(a===r.a4$)return r.n!==-1 +s=r.n +if(s===-1)return!0 +return b>s===r.X}, +ahx(){var s,r,q,p,o,n,m,l,k,j=this,i="RenderBox was not laid out: ",h={},g=j.a4$ +g.toString +s=j.a2 +r=A.b([],t.Ik) +h.a=h.b=0 +h.c=-1 +j.bg(new A.axm(h,j,g,r)) +q=j.n>=0 +if(s===B.b_){if(q){s=g.b +s.toString +t.V.a(s).a=B.i +g.gt(0)}p=h.b +for(g=r.length,s=t.V,o=0;oq&&s.n===-1)s.n=o.a-1}, +$S:12} +A.axm.prototype={ +$1(a){var s,r,q=this +t.x.a(a) +s=a.b +s.toString +t.V.a(s) +r=q.a +if(!q.b.yY(a,++r.c))s.e=!1 +else{s.e=!0 +r.b=r.b+a.gt(0).a +r.a=Math.max(r.a,a.gt(0).b) +if(a!==q.c)q.d.push(a)}}, +$S:12} +A.axn.prototype={ +$1(a){var s,r,q +t.x.a(a) +s=a.b +s.toString +t.V.a(s) +r=this.a +q=++r.c +if(a===this.c)return +if(!this.b.yY(a,q)){s.e=!1 +return}s.e=!0 +q=r.b +s.a=new A.j(0,q) +r.b=q+a.gt(0).b +r.a=Math.max(r.a,a.gt(0).a)}, +$S:12} +A.axo.prototype={ +$1(a){var s,r,q +t.x.a(a) +s=a.b +s.toString +t.V.a(s) +r=++this.a.a +if(a===this.c)return +q=this.b +if(!q.yY(a,r)){s.e=!1 +return}a.c3(A.le(null,q.gt(0).a),!0)}, +$S:12} +A.axq.prototype={ +$1(a){var s +t.x.a(a) +s=a.b +s.toString +t.V.a(s) +if(!s.e)return +this.a.dm(a,s.a.V(0,this.b))}, +$S:12} +A.axp.prototype={ +$2(a,b){return this.a.a.cp(a,b)}, +$S:18} +A.axr.prototype={ +$1(a){var s +t.x.a(a) +s=a.b +s.toString +if(t.V.a(s).e)this.a.$1(a)}, +$S:12} +A.a_m.prototype={ +H(a){var s=null +return A.jp(!1,B.N,!0,B.C1,this.c,B.bN,A.aZf(A.J(a).ax),1,s,s,s,s,s,B.df)}} +A.a_p.prototype={ +H(a){var s=null +return A.jp(!1,B.N,!0,s,A.eJ(s,s,this.c,s,s,this.d,s,s,this.e),B.n,B.y,0,s,s,s,s,s,B.df)}} +A.a16.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.V;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.V;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.a1k.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.xN.prototype={ +K(){return"_TextSelectionToolbarItemPosition."+this.b}} +A.S4.prototype={ +H(a){var s=this,r=null +return A.kM(s.c,s.d,A.amf(s.f,r,B.y,r,r,r,r,r,r,A.aXI(A.J(a).ax),r,B.Am,r,s.e,r,B.fs,r,r,r,B.U7,r))}} +A.e2.prototype={ +aZ(b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1=this,b2=null +if(b3==null)return b1 +s=b1.a +r=s==null?b2:s.aZ(b3.a) +if(r==null)r=b3.a +q=b1.b +p=q==null?b2:q.aZ(b3.b) +if(p==null)p=b3.b +o=b1.c +n=o==null?b2:o.aZ(b3.c) +if(n==null)n=b3.c +m=b1.d +l=m==null?b2:m.aZ(b3.d) +if(l==null)l=b3.d +k=b1.e +j=k==null?b2:k.aZ(b3.e) +if(j==null)j=b3.e +i=b1.f +h=i==null?b2:i.aZ(b3.f) +if(h==null)h=b3.f +g=b1.r +f=g==null?b2:g.aZ(b3.r) +if(f==null)f=b3.r +e=b1.w +d=e==null?b2:e.aZ(b3.w) +if(d==null)d=b3.w +c=b1.x +b=c==null?b2:c.aZ(b3.x) +if(b==null)b=b3.x +a=b1.y +a0=a==null?b2:a.aZ(b3.y) +if(a0==null)a0=b3.y +a1=b1.z +a2=a1==null?b2:a1.aZ(b3.z) +if(a2==null)a2=b3.z +a3=b1.Q +a4=a3==null?b2:a3.aZ(b3.Q) +if(a4==null)a4=b3.Q +a5=b1.as +a6=a5==null?b2:a5.aZ(b3.as) +if(a6==null)a6=b3.as +a7=b1.at +a8=a7==null?b2:a7.aZ(b3.at) +if(a8==null)a8=b3.at +a9=b1.ax +b0=a9==null?b2:a9.aZ(b3.ax) +if(b0==null)b0=b3.ax +s=r==null?s:r +r=p==null?q:p +q=n==null?o:n +p=l==null?m:l +o=j==null?k:j +n=h==null?i:h +m=f==null?g:f +l=d==null?e:d +k=b==null?c:b +j=a0==null?a:a0 +i=a2==null?a1:a2 +h=a4==null?a3:a4 +g=a6==null?a5:a6 +f=a8==null?a7:a8 +return A.aE7(j,i,h,s,r,q,p,o,n,g,f,b0==null?a9:b0,m,l,k)}, +am1(a,b,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=e.a +c=c==null?d:c.fP(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +s=e.b +s=s==null?d:s.fP(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +r=e.c +r=r==null?d:r.fP(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +q=e.d +q=q==null?d:q.fP(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +p=e.e +p=p==null?d:p.fP(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +o=e.f +o=o==null?d:o.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +n=e.r +n=n==null?d:n.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +m=e.w +m=m==null?d:m.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +l=e.x +l=l==null?d:l.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +k=e.y +k=k==null?d:k.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +j=e.z +j=j==null?d:j.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +i=e.Q +i=i==null?d:i.fP(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +h=e.as +h=h==null?d:h.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +g=e.at +g=g==null?d:g.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) +f=e.ax +return A.aE7(k,j,i,c,s,r,q,p,o,h,g,f==null?d:f.fP(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1),n,m,l)}, +V2(a,b,c){return this.am1(a,b,c,null,null,null)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.e2&&J.d(s.a,b.a)&&J.d(s.b,b.b)&&J.d(s.c,b.c)&&J.d(s.d,b.d)&&J.d(s.e,b.e)&&J.d(s.f,b.f)&&J.d(s.r,b.r)&&J.d(s.w,b.w)&&J.d(s.x,b.x)&&J.d(s.y,b.y)&&J.d(s.z,b.z)&&J.d(s.Q,b.Q)&&J.d(s.as,b.as)&&J.d(s.at,b.at)&&J.d(s.ax,b.ax)}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} +A.a_u.prototype={} +A.rW.prototype={ +H(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=a.ad(t.ri),f=g==null?h:g.w.c +if(f==null){f=i.c +s=B.cf.a +r=B.cf.b +q=B.cf.c +p=B.cf.d +o=B.cf.e +n=B.cf.f +m=B.cf.r +l=B.cf.w +k=m==null?f.c1.c:m +l=new A.Ok(f,new A.qX(s,r,q,p,o,n,m,l),B.mz,s,r,q,p,o,n,k,l) +f=l}f=f.cL(a) +j=a.ad(t.Uf) +if(j==null)j=B.dN +s=i.c +r=s.c1 +q=r.b +if(q==null)q=j.x +r=r.a +if(r==null)r=j.w +return new A.Go(i,new A.zw(f,A.AR(A.a5t(i.d,r,h,h,q),s.k2,h),h),h)}} +A.Go.prototype={ +np(a,b,c){return new A.rW(this.w.c,c,null)}, +ce(a){return!this.w.c.j(0,a.w.c)}} +A.rX.prototype={ +e8(a){var s,r=this.a +r.toString +s=this.b +s.toString +return A.aXQ(r,s,a)}} +A.ys.prototype={ +ac(){return new A.T4(null,null)}} +A.T4.prototype={ +lE(a){var s=a.$3(this.CW,this.a.r,new A.aoq()) +s.toString +this.CW=t.ZM.a(s)}, +H(a){var s=this.CW +s.toString +return new A.rW(s.a8(0,this.gei().gq(0)),this.a.w,null)}} +A.aoq.prototype={ +$1(a){return new A.rX(t.we.a(a),null)}, +$S:286} +A.qK.prototype={ +K(){return"MaterialTapTargetSize."+this.b}} +A.iM.prototype={ +W0(a,b,c,d,e,f,g,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h=this +f!=null +s=f==null?h.e:f +r=(a==null?h.ax:a).anh(null) +q=e==null?h.k2:e +p=a0==null?h.k4:a0 +o=a2==null?h.ok:a2 +n=new A.amW(h,null).$0() +m=b==null?h.a2:b +l=c==null?h.a9:c +k=d==null?h.ab:d +j=g==null?h.ao:g +i=a1==null?h.eB:a1 +return A.aE8(h.p2,h.d,n,h.a,h.p4,h.R8,h.RG,h.rx,h.ry,h.bT,h.to,h.as,h.at,h.x1,h.x2,h.xr,h.y1,r,h.b,h.y2,h.M,h.bB,h.P,h.ay,h.ch,h.n,h.I,h.X,m,h.S,h.c,l,k,h.CW,h.cx,h.cy,h.db,h.au,q,h.bU,s,h.aX,h.f,h.b9,h.aL,h.bO,h.bf,h.br,h.bF,j,h.r,h.w,h.aE,h.dx,h.dy,h.fr,h.k3,p,h.dW,h.bK,h.fx,h.x,h.f3,h.bW,h.fy,h.D,h.go,h.cb,h.ep,h.id,h.y,h.eq,h.an,i,h.c1,o,h.A,h.R,h.af,h.p1,h.k1,!0,h.Q)}, +ano(a){var s=null +return this.W0(s,s,s,s,a,s,s,s,s,s)}, +ao2(a,b){var s=null +return this.W0(s,s,s,s,s,s,s,a,s,b)}, +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.iM&&A.JR(b.d,s.d)&&b.a===s.a&&A.JR(b.c,s.c)&&b.e.j(0,s.e)&&b.f===s.f&&b.r.j(0,s.r)&&b.w===s.w&&b.x.j(0,s.x)&&b.y===s.y&&b.Q.j(0,s.Q)&&b.as.j(0,s.as)&&b.at.j(0,s.at)&&b.ax.j(0,s.ax)&&b.ay.j(0,s.ay)&&b.ch.j(0,s.ch)&&b.CW.j(0,s.CW)&&b.cx.j(0,s.cx)&&b.cy.j(0,s.cy)&&b.db.j(0,s.db)&&b.dx.j(0,s.dx)&&b.dy.j(0,s.dy)&&b.fr.j(0,s.fr)&&b.fx.j(0,s.fx)&&b.fy.j(0,s.fy)&&b.go.j(0,s.go)&&b.id.j(0,s.id)&&b.k1.j(0,s.k1)&&b.k2.j(0,s.k2)&&b.k3.j(0,s.k3)&&b.k4.j(0,s.k4)&&b.ok.j(0,s.ok)&&b.p1.j(0,s.p1)&&J.d(b.p2,s.p2)&&b.p3.j(0,s.p3)&&b.p4.j(0,s.p4)&&b.R8.j(0,s.R8)&&b.RG.j(0,s.RG)&&b.rx.j(0,s.rx)&&b.ry.j(0,s.ry)&&b.to.j(0,s.to)&&b.x1.j(0,s.x1)&&b.x2.j(0,s.x2)&&b.xr.j(0,s.xr)&&b.y1.j(0,s.y1)&&b.y2.j(0,s.y2)&&b.M.j(0,s.M)&&b.P.j(0,s.P)&&b.n.j(0,s.n)&&b.I.j(0,s.I)&&b.X.j(0,s.X)&&b.a2.j(0,s.a2)&&b.S.j(0,s.S)&&b.a9.j(0,s.a9)&&b.ab.j(0,s.ab)&&b.au.j(0,s.au)&&b.aX.j(0,s.aX)&&b.b9.j(0,s.b9)&&b.aL.j(0,s.aL)&&b.bO.j(0,s.bO)&&b.bf.j(0,s.bf)&&b.br.j(0,s.br)&&b.bF.j(0,s.bF)&&b.ao.j(0,s.ao)&&b.aE.j(0,s.aE)&&b.dW.j(0,s.dW)&&b.bK.j(0,s.bK)&&b.f3.j(0,s.f3)&&b.bW.j(0,s.bW)&&b.D.j(0,s.D)&&b.cb.j(0,s.cb)&&b.ep.j(0,s.ep)&&b.eq.j(0,s.eq)&&b.an.j(0,s.an)&&b.eB.j(0,s.eB)&&b.c1.j(0,s.c1)&&b.A.j(0,s.A)&&b.R.j(0,s.R)&&b.af.j(0,s.af)&&b.bT.j(0,s.bT)&&b.bB.j(0,s.bB)&&b.bU.j(0,s.bU)}, +gB(a){var s=this,r=s.d,q=A.n(r),p=A.a6(new A.bs(r,q.i("bs<1>")),t.X) +B.b.O(p,new A.bf(r,q.i("bf<2>"))) +p.push(s.a) +p.push(s.b) +r=s.c +B.b.O(p,r.gbX(r)) +B.b.O(p,r.geu(r)) +p.push(s.e) +p.push(s.f) +p.push(s.r) +p.push(s.w) +p.push(s.x) +p.push(s.y) +p.push(!0) +p.push(s.Q) +p.push(s.as) +p.push(s.at) +p.push(s.ax) +p.push(s.ay) +p.push(s.ch) +p.push(s.CW) +p.push(s.cx) +p.push(s.cy) +p.push(s.db) +p.push(s.dx) +p.push(s.dy) +p.push(s.fr) +p.push(s.fx) +p.push(s.fy) +p.push(s.go) +p.push(s.id) +p.push(s.k1) +p.push(s.k2) +p.push(s.k3) +p.push(s.k4) +p.push(s.ok) +p.push(s.p1) +p.push(s.p2) +p.push(s.p3) +p.push(s.p4) +p.push(s.R8) +p.push(s.RG) +p.push(s.rx) +p.push(s.ry) +p.push(s.to) +p.push(s.x1) +p.push(s.x2) +p.push(s.xr) +p.push(s.y1) +p.push(s.y2) +p.push(s.M) +p.push(s.P) +p.push(s.n) +p.push(s.I) +p.push(s.X) +p.push(s.a2) +p.push(s.S) +p.push(s.a9) +p.push(s.ab) +p.push(s.au) +p.push(s.aX) +p.push(s.b9) +p.push(s.aL) +p.push(s.bO) +p.push(s.bf) +p.push(s.br) +p.push(s.bF) +p.push(s.ao) +p.push(s.aE) +p.push(s.dW) +p.push(s.bK) +p.push(s.f3) +p.push(s.bW) +p.push(s.D) +p.push(s.cb) +p.push(s.ep) +p.push(s.eq) +p.push(s.an) +p.push(s.eB) +p.push(s.c1) +p.push(s.A) +p.push(s.R) +p.push(s.af) +p.push(s.bT) +p.push(s.bB) +p.push(s.bU) +return A.bI(p)}} +A.amW.prototype={ +$0(){return this.a.p3}, +$S:287} +A.amX.prototype={ +$0(){var s=this.a,r=this.b +return s.ao2(r.aZ(s.k4),r.aZ(s.ok))}, +$S:288} +A.amU.prototype={ +$2(a,b){return new A.b1(a,b.awA(this.a.c.h(0,a),this.b),t.sw)}, +$S:289} +A.amV.prototype={ +$1(a){return!this.a.c.az(0,a.a)}, +$S:290} +A.Ok.prototype={ +gil(){var s=this.cx.a +return s==null?this.CW.ax.a:s}, +ger(){var s=this.cx.b +return s==null?this.CW.ax.b:s}, +gjk(){var s=this.cx.c +return s==null?this.CW.ax.c:s}, +gkb(){var s=this.cx.f +return s==null?this.CW.fx:s}, +cL(a){return A.aUV(this.CW,this.cx.anO(this.gkZ()).cL(a))}} +A.aCP.prototype={} +A.x5.prototype={ +gB(a){return(A.pi(this.a)^A.pi(this.b))>>>0}, +j(a,b){if(b==null)return!1 +return b instanceof A.x5&&b.a===this.a&&b.b===this.b}} +A.Vg.prototype={ +bY(a,b,c){var s,r=this.a,q=r.h(0,b) +if(q!=null)return q +if(r.a===this.b)r.F(0,new A.bs(r,A.n(r).i("bs<1>")).ga3(0)) +s=c.$0() +r.m(0,b,s) +return s}} +A.mm.prototype={ +Ix(a){var s=this.a,r=this.b,q=A.A(a.a+new A.j(s,r).a6(0,4).a,0,a.b) +return a.ao_(A.A(a.c+new A.j(s,r).a6(0,4).b,0,a.d),q)}, +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.mm&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +d5(){return this.a1S()+"(h: "+A.j0(this.a)+", v: "+A.j0(this.b)+")"}} +A.a_y.prototype={} +A.a0k.prototype={} +A.EB.prototype={ +gv8(){var s,r=this.e +if(r!=null)s=r instanceof A.tx +else s=!0 +if(s)return r +return A.xU(new A.an_(this))}, +gfs(){return null}, +gB(a){var s=this +return A.bI([s.a,s.b,s.c,s.d,s.gv8(),s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.gfs(),s.db,s.dx,s.dy,s.fr])}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.EB)if(J.d(b.a,r.a))if(J.d(b.b,r.b))if(J.d(b.c,r.c))if(J.d(b.d,r.d))if(J.d(b.gv8(),r.gv8()))if(J.d(b.f,r.f))if(J.d(b.r,r.r))if(J.d(b.w,r.w))if(J.d(b.x,r.x))if(J.d(b.y,r.y))if(J.d(b.z,r.z))if(J.d(b.Q,r.Q))if(b.as==r.as)if(J.d(b.at,r.at))if(J.d(b.ax,r.ax))if(J.d(b.ay,r.ay))if(J.d(b.ch,r.ch))if(J.d(b.CW,r.CW))if(J.d(b.cx,r.cx)){b.gfs() +r.gfs() +s=J.d(b.db,r.db)&&J.d(b.dx,r.dx)&&b.dy==r.dy&&b.fr==r.fr}return s}} +A.an_.prototype={ +$1(a){var s +if(a.p(0,B.V)){s=this.a.e +return s==null?t.G.a(s):s}return B.y}, +$S:8} +A.a_A.prototype={} +A.EC.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.y,s.x,s.z,s.Q,s.as,s.ax,s.at,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.EC&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&J.d(b.c,s.c)&&J.d(b.d,s.d)&&J.d(b.e,s.e)&&J.d(b.f,s.f)&&J.d(b.r,s.r)&&J.d(b.w,s.w)&&J.d(b.y,s.y)&&J.d(b.x,s.x)&&J.d(b.z,s.z)&&J.d(b.Q,s.Q)&&J.d(b.as,s.as)&&J.d(b.ax,s.ax)&&b.at==s.at}} +A.a_B.prototype={} +A.Vc.prototype={ +aG(a){var s=new A.Yx(!0,this.e,null,this.r,this.w,B.aH,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}} +A.Yx.prototype={ +cp(a,b){var s,r=this,q=$.aEE +$.aEE=!1 +if(r.gt(0).p(0,b)){s=r.cz(a,b)||r.A===B.aH +if((s||r.A===B.cI)&&!$.aED){$.aED=!0 +a.E(0,new A.pw(b,r))}}else s=!1 +if(q){$.aEE=!0 +$.aED=!1}return s}} +A.EH.prototype={ +ac(){return new A.ov(new A.afX(),A.aP(t.S),B.Q,null,null)}} +A.ov.prototype={ +gajB(){this.a.toString +this.f===$&&A.a() +return B.Gm}, +ga9q(){this.a.toString +this.f===$&&A.a() +return!0}, +gGs(){var s=this.a.c +return s==null?null.a_d():s}, +gmj(){var s,r=this,q=r.w +if(q==null){q=A.bK(null,B.dO,B.k8,null,r) +q.bk() +s=q.co$ +s.b=!0 +s.a.push(r.gadD()) +r.w=q}return q}, +adE(a){var s,r,q,p,o,n,m,l,k,j=this +$label0$0:{s=j.as===B.Q +r=a===B.Q +q=!s +p=q +if(p){p=r +o=p +n=!0}else{o=null +n=!1 +p=!1}if(p){B.b.F($.t_,j) +p=j.d +m=p.a +if(m!=null)m.jO() +else p.b=null +break $label0$0}if(s){l=!1===(n?o:r) +p=l}else p=!1 +if(p){p=j.d +m=p.a +k=$.aDI+1 +if(m!=null){$.aDI=k +m.a11(0,k)}else p.b=$.aDI=k +$.t_.push(j) +A.akN(j.gGs()) +break $label0$0}break $label0$0}j.as=a}, +aiQ(a,b){var s,r=this,q=new A.an6(r,a) +if(r.gmj().gaN(0)===B.Q&&b.a>0){s=r.r +if(s!=null)s.aR(0) +r.r=A.co(b,q)}else q.$0()}, +Sq(a){return this.aiQ(null,a)}, +uq(a){var s=this,r=s.r +if(r!=null)r.aR(0) +s.r=null +r=s.w +r=r==null?null:r.gaN(0).glJ() +if(r===!0)if(a.a>0){r=s.gmj() +s.r=A.co(a,r.ga_0(r))}else s.gmj().dg(0)}, +acG(a){var s,r=this +r.a.toString +r.f===$&&A.a() +switch(1){case 1:s=r.y +if(s==null)s=r.y=A.aby(r,B.QF) +s.p1=r.gadO() +s.p2=r.gac9() +s.R8=r.gacO() +s.UV(a) +break}}, +abW(a){var s=this,r=s.z +r=r==null?null:r.CW +if(r!==a.gbt()){r=s.y +r=r==null?null:r.CW +r=r===a.gbt()}else r=!0 +if(r)return +if(s.r==null&&s.gmj().gaN(0)===B.Q||!t.pY.b(a))return +s.Qr()}, +Qr(){this.a.toString +this.uq(B.F) +this.Q.a5(0)}, +aca(){var s,r=this,q=r.e +q===$&&A.a() +if(!q)return +s=r.gmj().gaN(0)===B.Q +if(s)r.ga9q() +if(s){q=r.c +q.toString +A.aD6(q)}r.a.toString +r.Sq(B.F)}, +acP(){if(this.Q.a!==0)return +this.uq(this.gajB())}, +acj(a){var s,r,q,p,o=this +o.Q.E(0,a.gjJ(a)) +s=A.a2($.t_).i("aY<1>") +r=A.a6(new A.aY($.t_,new A.an5(),s),s.i("o.E")) +for(s=r.length,q=0;p=r.length,q>>16&255,B.k.C()>>>8&255,B.k.C()&255),a7,a7,B.eB,a7,a7,B.aq)) +break $label0$0}n=a7 +a8=!1 +if(B.ag===q){m=r.ok +k=m +j=k instanceof A.e2 +if(j){n=m +o=r.w +a8=o +a8=a8 instanceof A.fv}}else j=!1 +if(a8){l=j?o:r.w +a8=n.z +a8.toString +a8=new A.am(a8.A1(B.k,A.aKA(l)),new A.cX(A.aC(B.d.aI(229.5),B.dI.C()>>>16&255,B.dI.C()>>>8&255,B.dI.C()&255),a7,a7,B.eB,a7,a7,B.aq)) +break $label0$0}a8=a7}i=a8.a +h=a7 +g=a8.b +h=g +f=i +a8=a6.f +a8===$&&A.a() +a6.a.toString +k=a8.a +e=new A.ak(0,1/0,k==null?a6.aaj():k,1/0) +k=A.d2(a7,a7,a7,a6.a.c) +d=a8.b +if(d==null)d=e +c=a8.c +if(c==null)c=a6.aai() +a6.a.toString +b=a8.d +if(b==null)b=B.as +a=a8.w +if(a==null)a=h +a0=a8.x +if(a0==null)a0=f +a1=a6.x +if(a1==null)a1=a6.x=A.cw(B.ao,a6.gmj(),a7) +a2=a6.a +a3=a2.x +if(a3==null)a3=a8.e +if(a3==null)a3=24 +a4=a2.y +a8=a4==null?a8.f:a4 +a2=a2.c +a5=new A.a_C(k,d,c,b,a,a0,B.az,a1,s,a3,a8!==!1,a6.gQe(),a6.gQf(),a2!=null,a7) +return A.Dp(a9)==null?a5:new A.rE(a7,a5,a7,a7)}, +l(){var s,r,q=this +$.f1.a9$.b.F(0,q.gQ9()) +B.b.F($.t_,q) +s=q.y +r=s==null +if(!r)s.p1=null +if(!r){s.my() +s.m9()}s=q.z +r=s==null +if(!r)s.S=null +if(!r){s.my() +s.m9()}s=q.r +if(s!=null)s.aR(0) +s=q.w +if(s!=null)s.l() +s=q.x +if(s!=null)s.l() +q.a4S()}, +H(a){var s,r,q=this,p=null +if(q.gGs().length===0){s=q.a.Q +return s}s=q.a.z +if(s==null){s=q.f +s===$&&A.a() +s=s.r}s=s===!0?p:q.gGs() +r=A.bG(p,p,q.a.Q,!1,p,p,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,s,B.z,p) +q.e===$&&A.a() +r=A.aL5(A.Bo(B.aH,r,p,q.gacF(),p,p,p),B.bV,q.gQe(),q.gQf()) +return A.aVz(r,q.d,q.ga7b())}} +A.an6.prototype={ +$0(){var s,r=this.a,q=r.e +q===$&&A.a() +if(!q)return +r.gmj().bP(0) +q=r.r +if(q!=null)q.aR(0) +q=this.b +if(q==null)q=null +else{s=r.gmj() +s=A.co(q,s.ga_0(s)) +q=s}r.r=q}, +$S:0} +A.an5.prototype={ +$1(a){return a.Q.a===0}, +$S:292} +A.azz.prototype={ +pu(a){return new A.ak(0,a.b,0,a.d)}, +px(a,b){var s,r,q=this.b,p=this.c,o=this.d,n=q.b,m=n+p,l=b.b,k=a.b-10,j=m+l<=k +l=n-p-l +s=(l>=10===j?o:j)?Math.min(m,k):Math.max(l,10) +p=b.a +r=a.a-p +return new A.j(r<=20?r/2:A.A(q.a-p/2,10,r-10),s)}, +m6(a){return!this.b.j(0,a.b)||this.c!==a.c||this.d!==a.d}} +A.a_C.prototype={ +H(a){var s,r=this,q=null,p=r.w,o=r.x +o=A.kd(A.bG(q,q,A.c_(q,A.dG(new A.bH(q,r.c,p,o,q,q,q,q,q),1,1),B.n,q,q,r.r,q,q,r.f,r.e,q,q,q),!0,q,q,!1,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,B.z,q),q,q,B.c6,!0,p,o,q,B.aP) +s=A.aL5(new A.d5(r.y,!1,new A.eZ(r.d,o,q),q),B.bV,r.at,r.ax) +p=A.bW(a,B.j8) +p=p==null?q:p.f +p=p==null?q:p.d +if(p==null)p=0 +return A.aVX(p,new A.lj(new A.azz(r.z,r.Q,r.as),A.kn(s,r.ay,q),q))}} +A.IL.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.EI.prototype={ +gB(a){var s=this,r=null +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,r,r,r,r,r,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.EI)if(b.a==r.a)if(J.d(b.b,r.b))if(J.d(b.c,r.c))if(J.d(b.d,r.d))if(b.e==r.e)if(J.d(b.w,r.w))s=J.d(b.x,r.x) +return s}} +A.a_D.prototype={} +A.ajg.prototype={ +K(){return"ScriptCategory."+this.b}} +A.wq.prototype={ +a_K(a){var s +switch(a.a){case 0:s=this.c +break +case 1:s=this.d +break +case 2:s=this.e +break +default:s=null}return s}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.wq&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)&&b.e.j(0,s.e)}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.a02.prototype={} +A.h1.prototype={ +k(a){var s=this +if(s.gkg(s)===0)return A.aCx(s.gkn(),s.gko()) +if(s.gkn()===0)return A.aCw(s.gkg(s),s.gko()) +return A.aCx(s.gkn(),s.gko())+" + "+A.aCw(s.gkg(s),0)}, +j(a,b){var s=this +if(b==null)return!1 +return b instanceof A.h1&&b.gkn()===s.gkn()&&b.gkg(b)===s.gkg(s)&&b.gko()===s.gko()}, +gB(a){var s=this +return A.T(s.gkn(),s.gkg(s),s.gko(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.dS.prototype={ +gkn(){return this.a}, +gkg(a){return 0}, +gko(){return this.b}, +a0(a,b){return new A.dS(this.a-b.a,this.b-b.b)}, +V(a,b){return new A.dS(this.a+b.a,this.b+b.b)}, +a6(a,b){return new A.dS(this.a*b,this.b*b)}, +lo(a){var s=a.a/2,r=a.b/2 +return new A.j(s+this.a*s,r+this.b*r)}, +zF(a){var s=a.a/2,r=a.b/2 +return new A.j(s+this.a*s,r+this.b*r)}, +a_v(a){var s=a.a,r=(a.c-s)/2,q=a.b,p=(a.d-q)/2 +return new A.j(s+r+this.a*r,q+p+this.b*p)}, +art(a,b){var s=b.a,r=a.a,q=(b.c-s-r)/2,p=b.b,o=a.b,n=(b.d-p-o)/2 +s=s+q+this.a*q +p=p+n+this.b*n +return new A.x(s,p,s+r,p+o)}, +Y(a){return this}, +k(a){return A.aCx(this.a,this.b)}} +A.ff.prototype={ +gkn(){return 0}, +gkg(a){return this.a}, +gko(){return this.b}, +a0(a,b){return new A.ff(this.a-b.a,this.b-b.b)}, +V(a,b){return new A.ff(this.a+b.a,this.b+b.b)}, +a6(a,b){return new A.ff(this.a*b,this.b*b)}, +Y(a){var s,r=this +switch(a.a){case 0:s=new A.dS(-r.a,r.b) +break +case 1:s=new A.dS(r.a,r.b) +break +default:s=null}return s}, +k(a){return A.aCw(this.a,this.b)}} +A.GK.prototype={ +a6(a,b){return new A.GK(this.a*b,this.b*b,this.c*b)}, +Y(a){var s,r=this +switch(a.a){case 0:s=new A.dS(r.a-r.b,r.c) +break +case 1:s=new A.dS(r.a+r.b,r.c) +break +default:s=null}return s}, +gkn(){return this.a}, +gkg(a){return this.b}, +gko(){return this.c}} +A.RR.prototype={ +k(a){return"TextAlignVertical(y: "+this.a+")"}} +A.CE.prototype={ +K(){return"RenderComparison."+this.b}} +A.KO.prototype={ +K(){return"Axis."+this.b}} +A.anu.prototype={ +K(){return"VerticalDirection."+this.b}} +A.tS.prototype={ +K(){return"AxisDirection."+this.b}} +A.P4.prototype={ +XZ(a,b,c,d){return A.b1Y(a,!1,c,d)}, +arz(a){return this.XZ(a,!1,null,null)}, +Y_(a,b){return A.a2_(a,b)}, +arB(a){return this.Y_(a,null)}} +A.a_4.prototype={ +ak(){var s,r,q +for(s=this.a,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.u();){q=s.d;(q==null?r.a(q):q).$0()}}, +Z(a,b){this.a.E(0,b)}, +J(a,b){this.a.F(0,b)}} +A.yN.prototype={ +Do(a){var s=this +return new A.GL(s.gfM().a0(0,a.gfM()),s.giQ().a0(0,a.giQ()),s.giJ().a0(0,a.giJ()),s.gjy().a0(0,a.gjy()),s.gfN().a0(0,a.gfN()),s.giP().a0(0,a.giP()),s.gjz().a0(0,a.gjz()),s.giI().a0(0,a.giI()))}, +E(a,b){var s=this +return new A.GL(s.gfM().V(0,b.gfM()),s.giQ().V(0,b.giQ()),s.giJ().V(0,b.giJ()),s.gjy().V(0,b.gjy()),s.gfN().V(0,b.gfN()),s.giP().V(0,b.giP()),s.gjz().V(0,b.gjz()),s.giI().V(0,b.giI()))}, +k(a){var s,r,q,p,o=this,n="BorderRadius.only(",m="BorderRadiusDirectional.only(" +if(o.gfM().j(0,o.giQ())&&o.giQ().j(0,o.giJ())&&o.giJ().j(0,o.gjy()))if(!o.gfM().j(0,B.C))s=o.gfM().a===o.gfM().b?"BorderRadius.circular("+B.d.ah(o.gfM().a,1)+")":"BorderRadius.all("+o.gfM().k(0)+")" +else s=null +else{r=!o.gfM().j(0,B.C) +q=r?n+("topLeft: "+o.gfM().k(0)):n +if(!o.giQ().j(0,B.C)){if(r)q+=", " +q+="topRight: "+o.giQ().k(0) +r=!0}if(!o.giJ().j(0,B.C)){if(r)q+=", " +q+="bottomLeft: "+o.giJ().k(0) +r=!0}if(!o.gjy().j(0,B.C)){if(r)q+=", " +q+="bottomRight: "+o.gjy().k(0)}q+=")" +s=q.charCodeAt(0)==0?q:q}if(o.gfN().j(0,o.giP())&&o.giP().j(0,o.giI())&&o.giI().j(0,o.gjz()))if(!o.gfN().j(0,B.C))p=o.gfN().a===o.gfN().b?"BorderRadiusDirectional.circular("+B.d.ah(o.gfN().a,1)+")":"BorderRadiusDirectional.all("+o.gfN().k(0)+")" +else p=null +else{r=!o.gfN().j(0,B.C) +q=r?m+("topStart: "+o.gfN().k(0)):m +if(!o.giP().j(0,B.C)){if(r)q+=", " +q+="topEnd: "+o.giP().k(0) +r=!0}if(!o.gjz().j(0,B.C)){if(r)q+=", " +q+="bottomStart: "+o.gjz().k(0) +r=!0}if(!o.giI().j(0,B.C)){if(r)q+=", " +q+="bottomEnd: "+o.giI().k(0)}q+=")" +p=q.charCodeAt(0)==0?q:q}q=s==null +if(!q&&p!=null)return s+" + "+p +q=q?p:s +return q==null?"BorderRadius.zero":q}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.yN&&b.gfM().j(0,s.gfM())&&b.giQ().j(0,s.giQ())&&b.giJ().j(0,s.giJ())&&b.gjy().j(0,s.gjy())&&b.gfN().j(0,s.gfN())&&b.giP().j(0,s.giP())&&b.gjz().j(0,s.gjz())&&b.giI().j(0,s.giI())}, +gB(a){var s=this +return A.T(s.gfM(),s.giQ(),s.giJ(),s.gjy(),s.gfN(),s.giP(),s.gjz(),s.giI(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.cF.prototype={ +gfM(){return this.a}, +giQ(){return this.b}, +giJ(){return this.c}, +gjy(){return this.d}, +gfN(){return B.C}, +giP(){return B.C}, +gjz(){return B.C}, +giI(){return B.C}, +cS(a){var s=this,r=s.a.fQ(0,B.C),q=s.b.fQ(0,B.C) +return A.aDQ(a,s.c.fQ(0,B.C),s.d.fQ(0,B.C),r,q)}, +rP(a){var s,r,q,p,o=this,n=o.a.fQ(0,B.C),m=o.b.fQ(0,B.C),l=o.c.fQ(0,B.C),k=o.d.fQ(0,B.C),j=n.a +n=n.b +s=m.a +m=m.b +r=l.a +l=l.b +q=k.a +k=k.b +p=j===s&&n===m&&j===r&&n===l&&j===q&&n===k +return new A.rk(p,a.a,a.b,a.c,a.d,j,n,s,m,q,k,r,l)}, +Do(a){if(a instanceof A.cF)return this.a0(0,a) +return this.a1C(a)}, +E(a,b){if(b instanceof A.cF)return this.V(0,b) +return this.a1B(0,b)}, +a0(a,b){var s=this +return new A.cF(s.a.a0(0,b.a),s.b.a0(0,b.b),s.c.a0(0,b.c),s.d.a0(0,b.d))}, +V(a,b){var s=this +return new A.cF(s.a.V(0,b.a),s.b.V(0,b.b),s.c.V(0,b.c),s.d.V(0,b.d))}, +a6(a,b){var s=this +return new A.cF(s.a.a6(0,b),s.b.a6(0,b),s.c.a6(0,b),s.d.a6(0,b))}, +Y(a){return this}} +A.GL.prototype={ +a6(a,b){var s=this +return new A.GL(s.a.a6(0,b),s.b.a6(0,b),s.c.a6(0,b),s.d.a6(0,b),s.e.a6(0,b),s.f.a6(0,b),s.r.a6(0,b),s.w.a6(0,b))}, +Y(a){var s=this +switch(a.a){case 0:return new A.cF(s.a.V(0,s.f),s.b.V(0,s.e),s.c.V(0,s.w),s.d.V(0,s.r)) +case 1:return new A.cF(s.a.V(0,s.e),s.b.V(0,s.f),s.c.V(0,s.r),s.d.V(0,s.w))}}, +gfM(){return this.a}, +giQ(){return this.b}, +giJ(){return this.c}, +gjy(){return this.d}, +gfN(){return this.e}, +giP(){return this.f}, +gjz(){return this.r}, +giI(){return this.w}} +A.L2.prototype={ +K(){return"BorderStyle."+this.b}} +A.aW.prototype={ +aJ(a,b){var s=Math.max(0,this.b*b),r=b<=0?B.aD:this.c +return new A.aW(this.a,s,r,-1)}, +h7(){var s,r +switch(this.c.a){case 1:$.a3() +s=A.bc() +r=this.a +s.r=r.gq(r) +s.c=this.b +s.b=B.bt +return s +case 0:$.a3() +s=A.bc() +s.r=B.y.gq(0) +s.c=0 +s.b=B.bt +return s}}, +gdG(){return this.b*(1-(1+this.d)/2)}, +gnJ(){return this.b*(1+this.d)/2}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.aW&&b.a.j(0,s.a)&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +d5(){return"BorderSide"}} +A.bX.prototype={ +iS(a,b,c){return null}, +E(a,b){return this.iS(0,b,!1)}, +V(a,b){var s=this.E(0,b) +if(s==null)s=b.iS(0,this,!0) +return s==null?new A.iR(A.b([b,this],t.N_)):s}, +d1(a,b){if(a==null)return this.aJ(0,b) +return null}, +d2(a,b){if(a==null)return this.aJ(0,1-b) +return null}, +hq(a,b,c,d){}, +gfv(){return!1}, +k(a){return"ShapeBorder()"}} +A.dm.prototype={ +gj1(){var s=Math.max(this.a.gdG(),0) +return new A.az(s,s,s,s)}, +d1(a,b){if(a==null)return this.aJ(0,b) +return null}, +d2(a,b){if(a==null)return this.aJ(0,1-b) +return null}} +A.iR.prototype={ +gj1(){return B.b.vF(this.a,B.as,new A.aqm())}, +iS(a,b,c){var s,r,q,p=b instanceof A.iR +if(!p){s=this.a +r=c?B.b.gae(s):B.b.ga3(s) +q=r.iS(0,b,c) +if(q==null)q=b.iS(0,r,!c) +if(q!=null){p=A.a6(s,t.RY) +p[c?p.length-1:0]=q +return new A.iR(p)}}s=A.b([],t.N_) +if(c)B.b.O(s,this.a) +if(p)B.b.O(s,b.a) +else s.push(b) +if(!c)B.b.O(s,this.a) +return new A.iR(s)}, +E(a,b){return this.iS(0,b,!1)}, +aJ(a,b){var s=this.a,r=A.a2(s).i("ae<1,bX>") +s=A.a6(new A.ae(s,new A.aqo(b),r),r.i("ax.E")) +return new A.iR(s)}, +d1(a,b){return A.aL0(a,this,b)}, +d2(a,b){return A.aL0(this,a,b)}, +hz(a,b){var s,r +for(s=this.a,r=0;r") +return new A.ae(new A.cc(s,r),new A.aqp(),r.i("ae")).bn(0," + ")}} +A.aqm.prototype={ +$2(a,b){return a.E(0,b.gj1())}, +$S:295} +A.aqo.prototype={ +$1(a){return a.aJ(0,this.a)}, +$S:296} +A.aqn.prototype={ +$1(a){return a.gfv()}, +$S:297} +A.aqp.prototype={ +$1(a){return a.k(0)}, +$S:298} +A.Ts.prototype={} +A.L6.prototype={ +K(){return"BoxShape."+this.b}} +A.L3.prototype={ +iS(a,b,c){return null}, +E(a,b){return this.iS(0,b,!1)}, +hz(a,b){var s=A.bQ($.a3().w) +s.aq(new A.fe(this.gj1().Y(b).I8(a))) +return s}, +d9(a,b){var s=A.bQ($.a3().w) +s.aq(new A.fe(a)) +return s}, +hq(a,b,c,d){a.fm(b,c)}, +gfv(){return!0}} +A.dT.prototype={ +gj1(){var s=this +return new A.az(s.d.gdG(),s.a.gdG(),s.b.gdG(),s.c.gdG())}, +gYv(){var s,r,q=this,p=q.a,o=p.a,n=q.d,m=!1 +if(n.a.j(0,o)&&q.c.a.j(0,o)&&q.b.a.j(0,o)){s=p.b +if(n.b===s&&q.c.b===s&&q.b.b===s)if(q.guw()){r=p.d +p=n.d===r&&q.c.d===r&&q.b.d===r}else p=m +else p=m}else p=m +return p}, +guw(){var s=this,r=s.a.c +return s.d.c===r&&s.c.c===r&&s.b.c===r}, +iS(a,b,c){var s=this +if(b instanceof A.dT&&A.ld(s.a,b.a)&&A.ld(s.b,b.b)&&A.ld(s.c,b.c)&&A.ld(s.d,b.d))return new A.dT(A.j5(s.a,b.a),A.j5(s.b,b.b),A.j5(s.c,b.c),A.j5(s.d,b.d)) +return null}, +E(a,b){return this.iS(0,b,!1)}, +aJ(a,b){var s=this +return new A.dT(s.a.aJ(0,b),s.b.aJ(0,b),s.c.aJ(0,b),s.d.aJ(0,b))}, +d1(a,b){if(a instanceof A.dT)return A.aCB(a,this,b) +return this.xz(a,b)}, +d2(a,b){if(a instanceof A.dT)return A.aCB(this,a,b) +return this.xA(a,b)}, +BU(a,b,c,d,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +if(e.gYv()){s=e.a +switch(s.c.a){case 0:return +case 1:switch(d.a){case 1:A.aGL(a,b,s) +break +case 0:if(c!=null&&!c.j(0,B.ac)){A.aGM(a,b,s,c) +return}A.aGN(a,b,s) +break}return}}if(e.guw()&&e.a.c===B.aD)return +s=A.aP(t.G) +r=e.a +q=r.c +p=q===B.aD +if(!p)s.E(0,r.a) +o=e.b +n=o.c +m=n===B.aD +if(!m)s.E(0,o.a) +l=e.c +k=l.c +j=k===B.aD +if(!j)s.E(0,l.a) +i=e.d +h=i.c +g=h===B.aD +if(!g)s.E(0,i.a) +f=!0 +if(!(q===B.v&&r.b===0))if(!(n===B.v&&o.b===0)){if(!(k===B.v&&l.b===0))q=h===B.v&&i.b===0 +else q=f +f=q}q=!1 +if(s.a===1)if(!f)if(d!==B.eC)q=c!=null&&!c.j(0,B.ac) +else q=!0 +if(q){if(p)r=B.q +q=m?B.q:o +p=j?B.q:l +o=g?B.q:i +A.aCC(a,b,c,p,s.ga3(0),o,q,d,a0,r) +return}A.aNn(a,b,l,i,o,r)}, +ec(a,b,c){return this.BU(a,b,null,B.aq,c)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.dT&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s,r,q=this +if(q.gYv())return"Border.all("+q.a.k(0)+")" +s=A.b([],t.s) +r=q.a +if(!r.j(0,B.q))s.push("top: "+r.k(0)) +r=q.b +if(!r.j(0,B.q))s.push("right: "+r.k(0)) +r=q.c +if(!r.j(0,B.q))s.push("bottom: "+r.k(0)) +r=q.d +if(!r.j(0,B.q))s.push("left: "+r.k(0)) +return"Border("+B.b.bn(s,", ")+")"}, +grR(a){return this.a}} +A.eX.prototype={ +gj1(){var s=this +return new A.di(s.b.gdG(),s.a.gdG(),s.c.gdG(),s.d.gdG())}, +guw(){var s=this,r=s.a.c +return s.b.c===r&&s.d.c===r&&s.c.c===r}, +iS(a,b,c){var s,r,q,p=this,o=null +if(b instanceof A.eX){s=p.a +r=b.a +if(A.ld(s,r)&&A.ld(p.b,b.b)&&A.ld(p.c,b.c)&&A.ld(p.d,b.d))return new A.eX(A.j5(s,r),A.j5(p.b,b.b),A.j5(p.c,b.c),A.j5(p.d,b.d)) +return o}if(b instanceof A.dT){s=b.a +r=p.a +if(!A.ld(s,r)||!A.ld(b.c,p.d))return o +q=p.b +if(!q.j(0,B.q)||!p.c.j(0,B.q)){if(!b.d.j(0,B.q)||!b.b.j(0,B.q))return o +return new A.eX(A.j5(s,r),q,p.c,A.j5(b.c,p.d))}return new A.dT(A.j5(s,r),b.b,A.j5(b.c,p.d),b.d)}return o}, +E(a,b){return this.iS(0,b,!1)}, +aJ(a,b){var s=this +return new A.eX(s.a.aJ(0,b),s.b.aJ(0,b),s.c.aJ(0,b),s.d.aJ(0,b))}, +d1(a,b){if(a instanceof A.eX)return A.aCz(a,this,b) +return this.xz(a,b)}, +d2(a,b){if(a instanceof A.eX)return A.aCz(this,a,b) +return this.xA(a,b)}, +BU(a2,a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=d.a,b=c.a,a=d.b,a0=a.a,a1=!1 +if(a0.j(0,b)&&d.d.a.j(0,b)&&d.c.a.j(0,b)){s=c.b +if(a.b===s&&d.d.b===s&&d.c.b===s)if(d.guw()){r=c.d +a1=a.d===r&&d.d.d===r&&d.c.d===r}}if(a1)switch(c.c.a){case 0:return +case 1:switch(a5.a){case 1:A.aGL(a2,a3,c) +break +case 0:if(a4!=null&&!a4.j(0,B.ac)){A.aGM(a2,a3,c,a4) +return}A.aGN(a2,a3,c) +break}return}if(d.guw()&&c.c===B.aD)return +switch(a6.a){case 0:a1=new A.am(d.c,a) +break +case 1:a1=new A.am(a,d.c) +break +default:a1=null}q=a1.a +p=null +o=a1.b +p=o +n=q +a1=A.aP(t.G) +m=c.c +l=m===B.aD +if(!l)a1.E(0,b) +k=d.c +j=k.c +if(j!==B.aD)a1.E(0,k.a) +i=d.d +h=i.c +g=h===B.aD +if(!g)a1.E(0,i.a) +f=a.c +if(f!==B.aD)a1.E(0,a0) +e=!0 +if(!(m===B.v&&c.b===0))if(!(j===B.v&&k.b===0)){if(!(h===B.v&&i.b===0))a=f===B.v&&a.b===0 +else a=e +e=a}a=!1 +if(a1.a===1)if(!e)if(a5!==B.eC)a=a4!=null&&!a4.j(0,B.ac) +else a=!0 +if(a){if(l)c=B.q +a=p.c===B.aD?B.q:p +a0=g?B.q:i +m=n.c===B.aD?B.q:n +A.aCC(a2,a3,a4,a0,a1.ga3(0),m,a,a5,a6,c) +return}A.aNn(a2,a3,i,n,p,c)}, +ec(a,b,c){return this.BU(a,b,null,B.aq,c)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.eX&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this,r=A.b([],t.s),q=s.a +if(!q.j(0,B.q))r.push("top: "+q.k(0)) +q=s.b +if(!q.j(0,B.q))r.push("start: "+q.k(0)) +q=s.c +if(!q.j(0,B.q))r.push("end: "+q.k(0)) +q=s.d +if(!q.j(0,B.q))r.push("bottom: "+q.k(0)) +return"BorderDirectional("+B.b.bn(r,", ")+")"}, +grR(a){return this.a}} +A.cX.prototype={ +gcl(a){var s=this.c +s=s==null?null:s.gj1() +return s==null?B.as:s}, +CI(a,b){var s,r,q +switch(this.w.a){case 1:s=A.o3(a.gaV(),a.geJ()/2) +r=A.bQ($.a3().w) +r.aq(new A.lc(s)) +return r +case 0:r=this.d +if(r!=null){q=A.bQ($.a3().w) +q.aq(new A.em(r.Y(b).cS(a))) +return q}r=A.bQ($.a3().w) +r.aq(new A.fe(a)) +return r}}, +aJ(a,b){var s=this,r=null,q=A.z(r,s.a,b),p=A.aCS(r,s.b,b),o=A.aGO(r,s.c,b),n=A.h2(r,s.d,b),m=A.aCD(r,s.e,b),l=s.f +l=l==null?r:l.aJ(0,b) +return new A.cX(q,p,o,n,m,l,s.w)}, +gBl(){return this.e!=null}, +d1(a,b){var s +$label0$0:{if(a==null){s=this.aJ(0,b) +break $label0$0}if(a instanceof A.cX){s=A.aGP(a,this,b) +break $label0$0}s=this.Mm(a,b) +break $label0$0}return s}, +d2(a,b){var s +$label0$0:{if(a==null){s=this.aJ(0,1-b) +break $label0$0}if(a instanceof A.cX){s=A.aGP(this,a,b) +break $label0$0}s=this.Mn(a,b) +break $label0$0}return s}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.cX)if(J.d(b.a,r.a))if(J.d(b.b,r.b))if(J.d(b.c,r.c))if(J.d(b.d,r.d))if(A.cE(b.e,r.e))if(J.d(b.f,r.f))s=b.w===r.w +return s}, +gB(a){var s=this,r=s.e +r=r==null?null:A.bI(r) +return A.T(s.a,s.b,s.c,s.d,r,s.f,null,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +Js(a,b,c){var s +switch(this.w.a){case 0:s=this.d +if(s!=null)return s.Y(c).cS(new A.x(0,0,0+a.a,0+a.b)).p(0,b) +return!0 +case 1:return b.a0(0,a.kv(B.i)).gcj()<=Math.min(a.a,a.b)/2}}, +A5(a){return new A.aoY(this,a)}} +A.aoY.prototype={ +Rr(a,b,c,d){var s=this.b +switch(s.w.a){case 1:a.mR(b.gaV(),b.geJ()/2,c) +break +case 0:s=s.d +if(s==null||s.j(0,B.ac))a.fm(b,c) +else a.ez(s.Y(d).cS(b),c) +break}}, +agX(a,b,c){var s,r,q,p,o,n,m=this.b.e +if(m==null)return +for(s=m.length,r=0;r0?o*0.57735+0.5:0 +p.z=new A.Bw(q.e,o) +o=b.dj(q.b) +n=q.d +this.Rr(a,new A.x(o.a-n,o.b-n,o.c+n,o.d+n),p,c)}}, +mf(a){var s=a.a +if(s.gdH(s)===255&&a.c===B.v)return a.gdG() +return 0}, +a6A(a,b){var s,r,q,p,o=this,n=o.b.c +if(n==null)return a +if(n instanceof A.dT){s=new A.az(o.mf(n.d),o.mf(n.a),o.mf(n.b),o.mf(n.c)).dE(0,2) +return new A.x(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}else if(n instanceof A.eX&&b!=null){r=b===B.b_ +q=r?n.c:n.b +p=r?n.b:n.c +s=new A.az(o.mf(q),o.mf(n.a),o.mf(p),o.mf(n.d)).dE(0,2) +return new A.x(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}return a}, +agR(a,b,c){var s,r,q=this,p=q.b,o=p.b +if(o==null)return +if(q.e==null)q.e=o.A8(q.a) +s=null +switch(p.w.a){case 1:r=A.o3(b.gaV(),b.geJ()/2) +s=A.bQ($.a3().w) +s.aq(new A.lc(r)) +break +case 0:p=p.d +if(p!=null){s=A.bQ($.a3().w) +s.aq(new A.em(p.Y(c.d).cS(b)))}break}q.e.rv(a,b,s,c)}, +l(){var s=this.e +if(s!=null)s.l() +this.Mj()}, +jW(a,b,c){var s,r,q,p=this,o=c.e,n=b.a,m=b.b,l=new A.x(n,m,n+o.a,m+o.b),k=c.d +p.agX(a,l,k) +o=p.b +n=o.a +m=n==null +if(!m||o.f!=null){s=p.a6A(l,k) +if(p.c!=null)r=o.f!=null&&!J.d(p.d,l) +else r=!0 +if(r){$.a3() +q=A.bc() +if(!m)q.r=n.gq(n) +n=o.f +if(n!=null){q.sDa(n.Wa(0,l,k)) +p.d=l}p.c=q}n=p.c +n.toString +p.Rr(a,s,n,k)}p.agR(a,l,c) +n=o.c +if(n!=null){m=o.d +m=m==null?null:m.Y(k) +n.BU(a,l,m,o.w,k)}}, +k(a){return"BoxPainter for "+this.b.k(0)}} +A.a3n.prototype={ +K(){return"BoxFit."+this.b}} +A.MS.prototype={} +A.dU.prototype={ +h7(){$.a3() +var s=A.bc() +s.r=this.a.gq(0) +s.z=new A.Bw(this.e,A.aWX(this.c)) +return s}, +aJ(a,b){var s=this +return new A.dU(s.d*b,s.e,s.a,s.b.a6(0,b),s.c*b)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.dU&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this +return"BoxShadow("+s.a.k(0)+", "+s.b.k(0)+", "+A.j0(s.c)+", "+A.j0(s.d)+", "+s.e.k(0)+")"}} +A.dH.prototype={ +aJ(a,b){return new A.dH(this.b,this.a.aJ(0,b))}, +d1(a,b){var s,r +if(a instanceof A.dH){s=A.aX(a.a,this.a,b) +r=A.V(a.b,this.b,b) +r.toString +return new A.dH(A.A(r,0,1),s)}return this.nN(a,b)}, +d2(a,b){var s,r +if(a instanceof A.dH){s=A.aX(this.a,a.a,b) +r=A.V(this.b,a.b,b) +r.toString +return new A.dH(A.A(r,0,1),s)}return this.nO(a,b)}, +hz(a,b){var s=A.bQ($.a3().w) +s.aq(new A.lc(this.xN(a).cI(-this.a.gdG()))) +return s}, +d9(a,b){var s=A.bQ($.a3().w) +s.aq(new A.lc(this.xN(a))) +return s}, +nw(a){return this.d9(a,null)}, +hq(a,b,c,d){if(this.b===0)a.mR(b.gaV(),b.geJ()/2,c) +else a.WF(this.xN(b),c)}, +gfv(){return!0}, +kx(a){var s=a==null?this.a:a +return new A.dH(this.b,s)}, +ec(a,b,c){var s,r=this.a +switch(r.c.a){case 0:break +case 1:s=r.b*r.d +if(this.b===0)a.mR(b.gaV(),(b.geJ()+s)/2,r.h7()) +else a.WF(this.xN(b).cI(s/2),r.h7()) +break}}, +aA(a,b){return this.ec(a,b,null)}, +xN(a){var s,r,q,p,o,n,m,l=this.b +if(l===0||a.c-a.a===a.d-a.b)return A.o3(a.gaV(),a.geJ()/2) +s=a.c +r=a.a +q=s-r +p=a.d +o=a.b +n=p-o +l=1-l +if(q").b(b)&&A.JR(b.f,s.f)}, +gB(a){return A.T(A.r(this),this.C(),this.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"ColorSwatch(primary value: "+this.a1H(0)+")"}} +A.iq.prototype={ +d5(){return"Decoration"}, +gcl(a){return B.as}, +gBl(){return!1}, +d1(a,b){return null}, +d2(a,b){return null}, +Js(a,b,c){return!0}, +CI(a,b){throw A.e(A.af("This Decoration subclass does not expect to be used for clipping."))}} +A.L4.prototype={ +l(){}} +A.Uv.prototype={} +A.uL.prototype={ +K(){return"ImageRepeat."+this.b}} +A.Tp.prototype={ +A8(a){var s,r=this.a +r=r==null?null:r.A8(a) +s=this.b +s=s==null?null:s.A8(a) +return new A.aoR(r,s,this.c)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Tp&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&b.c===s.c}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"_BlendedDecorationImage("+A.k(this.a)+", "+A.k(this.b)+", "+A.k(this.c)+")"}} +A.aoR.prototype={ +Kn(a,b,c,d,e,f){var s,r,q=this +$.a3() +a.hA(null,A.bc()) +s=q.a +r=s==null +if(!r)s.Kn(a,b,c,d,e*(1-q.c),f) +s=q.b +if(s!=null){r=!r?B.BX:f +s.Kn(a,b,c,d,e*q.c,r)}a.a.restore()}, +rv(a,b,c,d){return this.Kn(a,b,c,d,1,B.cA)}, +l(){var s=this.a +if(s!=null)s.l() +s=this.b +if(s!=null)s.l()}, +k(a){return"_BlendedDecorationImagePainter("+A.k(this.a)+", "+A.k(this.b)+", "+A.k(this.c)+")"}} +A.cY.prototype={ +gfq(){var s=this +return s.gfe(s)+s.gff(s)+s.ghH(s)+s.ghE()}, +alT(a){var s,r=this +switch(a.a){case 0:s=r.gfq() +break +case 1:s=r.gct(r)+r.gcC(r) +break +default:s=null}return s}, +E(a,b){var s=this +return new A.oR(s.gfe(s)+b.gfe(b),s.gff(s)+b.gff(b),s.ghH(s)+b.ghH(b),s.ghE()+b.ghE(),s.gct(s)+b.gct(b),s.gcC(s)+b.gcC(b))}, +f0(a,b,c){var s=this +return new A.oR(A.A(s.gfe(s),b.a,c.a),A.A(s.gff(s),b.c,c.b),A.A(s.ghH(s),0,c.c),A.A(s.ghE(),0,c.d),A.A(s.gct(s),b.b,c.e),A.A(s.gcC(s),b.d,c.f))}, +k(a){var s=this +if(s.ghH(s)===0&&s.ghE()===0){if(s.gfe(s)===0&&s.gff(s)===0&&s.gct(s)===0&&s.gcC(s)===0)return"EdgeInsets.zero" +if(s.gfe(s)===s.gff(s)&&s.gff(s)===s.gct(s)&&s.gct(s)===s.gcC(s))return"EdgeInsets.all("+B.d.ah(s.gfe(s),1)+")" +return"EdgeInsets("+B.d.ah(s.gfe(s),1)+", "+B.d.ah(s.gct(s),1)+", "+B.d.ah(s.gff(s),1)+", "+B.d.ah(s.gcC(s),1)+")"}if(s.gfe(s)===0&&s.gff(s)===0)return"EdgeInsetsDirectional("+B.d.ah(s.ghH(s),1)+", "+B.d.ah(s.gct(s),1)+", "+B.d.ah(s.ghE(),1)+", "+B.d.ah(s.gcC(s),1)+")" +return"EdgeInsets("+B.d.ah(s.gfe(s),1)+", "+B.d.ah(s.gct(s),1)+", "+B.d.ah(s.gff(s),1)+", "+B.d.ah(s.gcC(s),1)+") + EdgeInsetsDirectional("+B.d.ah(s.ghH(s),1)+", 0.0, "+B.d.ah(s.ghE(),1)+", 0.0)"}, +j(a,b){var s=this +if(b==null)return!1 +return b instanceof A.cY&&b.gfe(b)===s.gfe(s)&&b.gff(b)===s.gff(s)&&b.ghH(b)===s.ghH(s)&&b.ghE()===s.ghE()&&b.gct(b)===s.gct(s)&&b.gcC(b)===s.gcC(s)}, +gB(a){var s=this +return A.T(s.gfe(s),s.gff(s),s.ghH(s),s.ghE(),s.gct(s),s.gcC(s),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.az.prototype={ +gfe(a){return this.a}, +gct(a){return this.b}, +gff(a){return this.c}, +gcC(a){return this.d}, +ghH(a){return 0}, +ghE(){return 0}, +Jw(a){var s=this +return new A.x(a.a-s.a,a.b-s.b,a.c+s.c,a.d+s.d)}, +I8(a){var s=this +return new A.x(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}, +E(a,b){if(b instanceof A.az)return this.V(0,b) +return this.Mq(0,b)}, +f0(a,b,c){var s=this +return new A.az(A.A(s.a,b.a,c.a),A.A(s.b,b.b,c.e),A.A(s.c,b.c,c.b),A.A(s.d,b.d,c.f))}, +a0(a,b){var s=this +return new A.az(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, +V(a,b){var s=this +return new A.az(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, +a6(a,b){var s=this +return new A.az(s.a*b,s.b*b,s.c*b,s.d*b)}, +dE(a,b){var s=this +return new A.az(s.a/b,s.b/b,s.c/b,s.d/b)}, +Y(a){return this}, +ow(a,b,c,d){var s=this,r=b==null?s.a:b,q=d==null?s.b:d,p=c==null?s.c:c +return new A.az(r,q,p,a==null?s.d:a)}, +A0(a){return this.ow(a,null,null,null)}, +anS(a,b){return this.ow(a,null,null,b)}, +anX(a,b){return this.ow(null,a,b,null)}} +A.di.prototype={ +ghH(a){return this.a}, +gct(a){return this.b}, +ghE(){return this.c}, +gcC(a){return this.d}, +gfe(a){return 0}, +gff(a){return 0}, +E(a,b){if(b instanceof A.di)return this.V(0,b) +return this.Mq(0,b)}, +a0(a,b){var s=this +return new A.di(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, +V(a,b){var s=this +return new A.di(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, +a6(a,b){var s=this +return new A.di(s.a*b,s.b*b,s.c*b,s.d*b)}, +Y(a){var s,r=this +switch(a.a){case 0:s=new A.az(r.c,r.b,r.a,r.d) +break +case 1:s=new A.az(r.a,r.b,r.c,r.d) +break +default:s=null}return s}} +A.oR.prototype={ +a6(a,b){var s=this +return new A.oR(s.a*b,s.b*b,s.c*b,s.d*b,s.e*b,s.f*b)}, +Y(a){var s,r=this +switch(a.a){case 0:s=new A.az(r.d+r.a,r.e,r.c+r.b,r.f) +break +case 1:s=new A.az(r.c+r.a,r.e,r.d+r.b,r.f) +break +default:s=null}return s}, +gfe(a){return this.a}, +gff(a){return this.b}, +ghH(a){return this.c}, +ghE(){return this.d}, +gct(a){return this.e}, +gcC(a){return this.f}} +A.aqk.prototype={} +A.aB9.prototype={ +$1(a){return a<=this.a}, +$S:299} +A.aAS.prototype={ +$1(a){var s=this,r=A.z(A.aMA(s.a,s.b,a),A.aMA(s.c,s.d,a),s.e) +r.toString +return r}, +$S:300} +A.a9f.prototype={ +Fl(){var s,r,q,p=this.b +if(p!=null)return p +p=this.a.length +s=1/(p-1) +r=J.aIs(p,t.i) +for(q=0;q") +r=A.a6(new A.ae(r,new A.abq(b),q),q.i("ax.E")) +return new A.uY(s.d,s.e,s.f,r,s.b,null)}, +d1(a,b){var s=A.aIH(a,this,b) +return s}, +d2(a,b){var s=A.aIH(this,a,b) +return s}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.uY&&b.d.j(0,s.d)&&b.e.j(0,s.e)&&b.f===s.f&&A.cE(b.a,s.a)&&A.cE(b.b,s.b)}, +gB(a){var s=this,r=A.bI(s.a),q=s.b +q=q==null?null:A.bI(q) +return A.T(s.d,s.e,s.f,s.c,r,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this,r=A.b(["begin: "+s.d.k(0),"end: "+s.e.k(0),"colors: "+A.k(s.a)],t.s),q=s.b +if(q!=null)r.push("stops: "+A.k(q)) +r.push("tileMode: "+s.f.k(0)) +return"LinearGradient("+B.b.bn(r,", ")+")"}} +A.abq.prototype={ +$1(a){var s=A.z(null,a,this.a) +s.toString +return s}, +$S:91} +A.aaa.prototype={ +a5(a){var s,r,q +for(s=this.b,r=new A.dl(s,s.r,s.e);r.u();)r.d.l() +s.a5(0) +for(s=this.a,r=new A.dl(s,s.r,s.e);r.u();){q=r.d +q.a.J(0,q.b)}s.a5(0) +this.f=0}, +WQ(a){var s,r,q,p=this,o=p.c.F(0,a) +if(o!=null){s=o.a +r=o.d +r===$&&A.a() +if(s.w)A.a0(A.a5(u.V)) +B.b.F(s.x,r) +o.N0()}q=p.a.F(0,a) +if(q!=null){q.a.J(0,q.b) +return!0}o=p.b.F(0,a) +if(o!=null){s=p.f +r=o.b +r.toString +p.f=s-r +o.l() +return!0}return!1}, +TB(a,b,c){var s,r=b.b +if(r!=null)s=r<=104857600 +else s=!1 +if(s){this.f+=r +this.b.m(0,a,b) +this.aem(c)}else b.l()}, +Gt(a,b,c){var s=this.c.bY(0,a,new A.aad(this,b,a)) +if(s.b==null)s.b=c}, +Zv(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=null,j={},i=l.a,h=i.h(0,b),g=h==null?k:h.a +j.a=g +if(g!=null)return g +h=l.b +q=h.F(0,b) +if(q!=null){j=q.a +l.Gt(b,j,q.b) +h.m(0,b,q) +return j}p=l.c.h(0,b) +if(p!=null){j=p.a +l.TB(b,new A.Fh(j,p.b,j.rn()),k) +return j}try{g=j.a=c.$0() +l.Gt(b,g,k) +h=g}catch(o){s=A.a1(o) +r=A.aH(o) +d.$2(s,r) +return k}j.b=!1 +n=A.c9() +m=new A.hP(new A.aae(j,l,b,!0,k,n),k,k) +n.b=new A.Xj(h,m) +i.m(0,b,n.aS()) +j.a.Z(0,m) +return j.a}, +aem(a){var s,r,q,p,o,n=this,m=n.b,l=A.n(m).i("bs<1>") +for(;;){if(!(n.f>104857600||m.a>1000))break +s=new A.bs(m,l).gag(0) +if(!s.u())A.a0(A.cj()) +r=s.gN(0) +q=m.h(0,r) +p=n.f +o=q.b +o.toString +n.f=p-o +q.l() +m.F(0,r)}}} +A.aad.prototype={ +$0(){return A.aYL(this.b,new A.aac(this.a,this.c))}, +$S:301} +A.aac.prototype={ +$0(){this.a.c.F(0,this.b)}, +$S:0} +A.aae.prototype={ +$2(a,b){var s,r,q,p,o,n=this +if(a!=null){s=a.a +r=s.b +r===$&&A.a() +r=r.a +r===$&&A.a() +r=J.ap(r.a.height()) +q=s.b.a +q===$&&A.a() +p=r*J.ap(q.a.width())*4 +s.l()}else p=null +s=n.a +r=s.a +o=new A.Fh(r,p,r.rn()) +r=n.b +q=n.c +r.Gt(q,s.a,p) +if(n.d)r.TB(q,o,n.e) +else o.l() +r.a.F(0,q) +if(!s.b){r=n.f.aS() +r.a.J(0,r.b)}s.b=!0}, +$S:302} +A.TD.prototype={ +l(){$.bC.k4$.push(new A.apB(this))}} +A.apB.prototype={ +$1(a){var s=this.a,r=s.c +if(r!=null)r.l() +s.c=null}, +$S:6} +A.Fh.prototype={} +A.xb.prototype={ +a66(a,b,c){var s=new A.au4(this,b) +this.d=s +if(a.w)A.a0(A.a5(u.V)) +a.x.push(s)}, +k(a){return"#"+A.bi(this)}} +A.au4.prototype={ +$0(){var s,r,q +this.b.$0() +s=this.a +r=s.a +q=s.d +q===$&&A.a() +if(r.w)A.a0(A.a5(u.V)) +B.b.F(r.x,q) +s.N0()}, +$S:0} +A.Xj.prototype={} +A.AT.prototype={ +VZ(a){var s=this +return new A.AT(s.a,s.b,s.c,s.d,a,s.f)}, +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.AT&&b.a==s.a&&b.b==s.b&&J.d(b.c,s.c)&&b.d==s.d&&J.d(b.e,s.e)&&b.f==s.f}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s,r=this,q="ImageConfiguration(",p=r.a,o=p!=null +p=o?q+("bundle: "+p.k(0)):q +s=r.b +if(s!=null){if(o)p+=", " +s=p+("devicePixelRatio: "+B.d.ah(s,1)) +p=s +o=!0}s=r.c +if(s!=null){if(o)p+=", " +s=p+("locale: "+s.k(0)) +p=s +o=!0}s=r.d +if(s!=null){if(o)p+=", " +s=p+("textDirection: "+s.k(0)) +p=s +o=!0}s=r.e +if(s!=null){if(o)p+=", " +s=p+("size: "+s.k(0)) +p=s +o=!0}s=r.f +if(s!=null){if(o)p+=", " +s=p+("platform: "+s.b) +p=s}p+=")" +return p.charCodeAt(0)==0?p:p}} +A.jj.prototype={ +Y(a){var s=new A.aay() +this.a8k(a,new A.aau(this,a,s),new A.aav(this,s)) +return s}, +a8k(a,b,c){var s,r,q,p,o,n={} +n.a=null +n.b=!1 +s=new A.aar(n,c) +r=null +try{r=this.K6(a)}catch(o){q=A.a1(o) +p=A.aH(o) +s.$2(q,p) +return}r.bo(new A.aaq(n,this,b,s),t.H).on(s)}, +wz(a,b,c,d){var s,r +if(b.a!=null){s=$.jy.oP$ +s===$&&A.a() +s.Zv(0,c,new A.aas(b),d) +return}s=$.jy.oP$ +s===$&&A.a() +r=s.Zv(0,c,new A.aat(this,c),d) +if(r!=null)b.LU(r)}, +Bt(a,b){return A.aKV()}, +Bv(a,b){return A.aKV()}, +k(a){return"ImageConfiguration()"}} +A.aau.prototype={ +$2(a,b){this.a.wz(this.b,this.c,a,b)}, +$S(){return A.n(this.a).i("~(jj.T,~(R,cS?))")}} +A.aav.prototype={ +$3(a,b,c){return this.a_F(a,b,c)}, +a_F(a,b,c){var s=0,r=A.H(t.H),q=this,p +var $async$$3=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:p=A.iS(null,t.P) +s=2 +return A.v(p,$async$$3) +case 2:p=q.b +if(p.a==null)p.LU(new A.arx(A.b([],t.XZ),A.b([],t.SM),A.b([],t.qj))) +p=p.a +p.toString +p.wx(A.br("while resolving an image"),b,null,!0,c) +return A.F(null,r)}}) +return A.G($async$$3,r)}, +$S(){return A.n(this.a).i("av<~>(jj.T?,R,cS?)")}} +A.aar.prototype={ +a_E(a,b){var s=0,r=A.H(t.H),q,p=this,o +var $async$$2=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:o=p.a +if(o.b){s=1 +break}o.b=!0 +p.b.$3(o.a,a,b) +case 1:return A.F(q,r)}}) +return A.G($async$$2,r)}, +$2(a,b){return this.a_E(a,b)}, +$S:303} +A.aaq.prototype={ +$1(a){var s,r,q,p=this +p.a.a=a +try{p.c.$2(a,p.d)}catch(q){s=A.a1(q) +r=A.aH(q) +p.d.$2(s,r)}}, +$S(){return A.n(this.b).i("bk(jj.T)")}} +A.aas.prototype={ +$0(){var s=this.a.a +s.toString +return s}, +$S:127} +A.aat.prototype={ +$0(){var s=this.a,r=this.b,q=s.Bv(r,$.jy.garA()) +return q instanceof A.SN?s.Bt(r,$.jy.gary()):q}, +$S:127} +A.SN.prototype={} +A.arx.prototype={} +A.ji.prototype={ +amS(a){var s=this.a,r=s.b +r===$&&A.a() +return new A.ji(A.aCG(r,s.c),this.b,this.c)}, +k(a){return this.a.k(0)+" @ "+A.j0(this.b)+"x"}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s +if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +s=!1 +if(b instanceof A.ji)if(b.a===this.a)s=b.b===this.b +return s}} +A.hP.prototype={ +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.hP&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&J.d(b.c,s.c)}, +atg(a,b){return this.a.$2(a,b)}} +A.hO.prototype={} +A.aay.prototype={ +LU(a){var s,r=this +r.a=a +s=r.b +if(s!=null){r.b=null +a.f=!0 +B.b.aj(s,a.gzy(a)) +r.a.f=!1}}, +Z(a,b){var s=this.a +if(s!=null)return s.Z(0,b) +s=this.b;(s==null?this.b=A.b([],t.XZ):s).push(b)}, +J(a,b){var s,r=this.a +if(r!=null)return r.J(0,b) +for(s=0;r=this.b,s")),t.kE),t.CF) +n=i.b +B.b.O(o,n) +B.b.a5(n) +s=!1 +for(n=o.length,m=0;m")),r),r.i("o.E")) +for(s=q.length,p=0;p").b(a)){q=A.aX(a.a,r.a,b) +return r.ky(A.h2(a.b,r.b,b),A.V(a.c,r.c,b),r.d,q)}return r.nN(a,b)}, +d2(a,b){var s,r=this,q=A.n(r) +if(q.i("eS.T").b(a)){q=A.aX(r.a,a.a,b) +return r.ky(A.h2(r.b,a.gol(a),b),r.c*(1-b),r.d,q)}if(a instanceof A.dH){q=A.aX(r.a,a.a,b) +s=r.c +return r.ky(r.b,s+(1-s)*b,a.b,q)}if(q.i("eS").b(a)){q=A.aX(r.a,a.a,b) +return r.ky(A.h2(r.b,a.b,b),A.V(r.c,a.c,b),r.d,q)}return r.nO(a,b)}, +tw(a){var s,r,q,p,o,n,m,l,k=this.c +if(k===0||a.c-a.a===a.d-a.b)return a +s=a.c +r=a.a +q=s-r +p=a.d +o=a.b +n=p-o +m=1-this.d +if(q").b(b)&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this,r=s.d +if(r!==0)return A.bZ(A.n(s).i("eS.T")).k(0)+"("+s.a.k(0)+", "+s.b.k(0)+", "+B.d.ah(s.c*100,1)+u.T+B.d.ah(r*100,1)+"% oval)" +return A.bZ(A.n(s).i("eS.T")).k(0)+"("+s.a.k(0)+", "+s.b.k(0)+", "+B.d.ah(s.c*100,1)+"% of the way to being a CircleBorder)"}} +A.Z_.prototype={} +A.Z0.prototype={} +A.i1.prototype={ +CI(a,b){return this.e.d9(a,b)}, +gcl(a){return this.e.gj1()}, +gBl(){return this.d!=null}, +d1(a,b){var s +$label0$0:{if(a instanceof A.cX){s=A.akU(A.aK1(a),this,b) +break $label0$0}if(t.pg.b(a)){s=A.akU(a,this,b) +break $label0$0}s=this.Mm(a,b) +break $label0$0}return s}, +d2(a,b){var s +$label0$0:{if(a instanceof A.cX){s=A.akU(this,A.aK1(a),b) +break $label0$0}if(t.pg.b(a)){s=A.akU(this,a,b) +break $label0$0}s=this.Mn(a,b) +break $label0$0}return s}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.i1&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&J.d(b.c,s.c)&&A.cE(b.d,s.d)&&b.e.j(0,s.e)}, +gB(a){var s=this,r=s.d +r=r==null?null:A.bI(r) +return A.T(s.a,s.b,s.c,s.e,r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +Js(a,b,c){var s=this.e.d9(new A.x(0,0,0+a.a,0+a.b),c).gfj().a +s===$&&A.a() +return s.a.contains(b.a,b.b)}, +A5(a){return new A.ayr(this,a)}} +A.ayr.prototype={ +ahH(a,b){var s,r,q,p=this +if(a.j(0,p.c)&&b==p.d)return +if(p.r==null){s=p.b +s=s.a!=null||s.b!=null}else s=!1 +if(s){$.a3() +s=A.bc() +p.r=s +r=p.b.a +if(r!=null)s.r=r.gq(r)}s=p.b +r=s.b +if(r!=null){q=p.r +q.toString +q.sDa(r.Wa(0,a,b))}r=s.d +if(r!=null){if(p.w==null){p.w=r.length +q=A.a6(new A.ae(r,new A.ays(),A.a2(r).i("ae<1,P2>")),t.Q2) +p.z=q}if(s.e.gfv()){r=A.a6(new A.ae(r,new A.ayt(a),A.a2(r).i("ae<1,x>")),t.YT) +p.x=r}else{r=A.a6(new A.ae(r,new A.ayu(p,a,b),A.a2(r).i("ae<1,r5>")),t.ke) +p.y=r}}r=s.e +if(!r.gfv())q=p.r!=null||p.w!=null +else q=!1 +if(q)p.e=r.d9(a,b) +if(s.c!=null)p.f=r.hz(a,b) +p.c=a +p.d=b}, +ajs(a,b,c){var s,r,q,p,o,n,m=this +if(m.w!=null){s=m.b.e +if(s.gfv()){r=0 +for(;;){q=m.w +q.toString +if(!(r>>0)+r+-56613888 +break $label0$0}if(56320===s){r=r.os(0,a-1) +r.toString +r=(r<<10>>>0)+q+-56613888 +break $label0$0}r=q +break $label0$0}return r}, +ajL(a,b){var s,r=this.a7O(b?a-1:a),q=b?a:a-1,p=this.a.os(0,q) +if(!(r==null||p==null||A.aEm(r)||A.aEm(p))){q=$.aPd() +s=A.dn(r) +q=!q.b.test(s)}else q=!0 +return q}, +gYR(){var s=this,r=s.c +return r===$?s.c=new A.a0c(s.gajK(),s):r}} +A.a0c.prototype={ +eH(a){var s +if(a<0)return null +s=this.b.eH(a) +return s==null||this.a.$2(s,!1)?s:this.eH(s-1)}, +eI(a){var s=this.b.eI(Math.max(a,0)) +return s==null||this.a.$2(s,!0)?s:this.eI(s)}} +A.azd.prototype={ +m0(a){var s +switch(a.a){case 0:s=this.c +s=s.gV0(s) +break +case 1:s=this.c +s=s.gXM(s) +break +default:s=null}return s}, +a7Z(){var s,r,q,p,o,n,m,l,k,j=this,i=j.b.gjZ(),h=j.c.gK5() +h=j.c.CP(h-1) +h.toString +s=i[i.length-1] +r=s.charCodeAt(0) +$label0$0:{if(9===r){q=!0 +break $label0$0}if(160===r||8199===r||8239===r){q=!1 +break $label0$0}q=$.aPt() +q=q.b.test(s) +break $label0$0}p=h.a +o=p.baseline +n=A.td(new A.aze(j,i)) +m=null +if(q&&n.cD()!=null){l=n.cD().a +h=j.a +switch(h.a){case 1:q=l.c +break +case 0:q=l.a +break +default:q=m}k=l.d-l.b +m=q}else{q=j.a +switch(q.a){case 1:p=p.left+p.width +break +case 0:p=p.left +break +default:p=m}k=h.gb4(0) +h=q +m=p}return new A.Gx(new A.j(m,o),h,k)}, +Ek(a,b,c){var s +switch(c.a){case 1:s=A.A(this.c.gYH(),a,b) +break +case 0:s=A.A(this.c.gpc(),a,b) +break +default:s=null}return s}} +A.aze.prototype={ +$0(){return this.a.c.CL(this.b.length-1)}, +$S:313} +A.a_j.prototype={ +giB(){var s,r,q=this.d +if(q===0)return B.i +s=this.a +r=s.c +if(!isFinite(r.gfC(r)))return B.NV +r=this.c +s=s.c +return new A.j(q*(r-s.gfC(s)),0)}, +aih(a,b,c){var s,r,q,p=this,o=p.c +if(b===o&&a===o){p.c=p.a.Ek(a,b,c) +return!0}if(!isFinite(p.giB().a)){o=p.a.c +o=!isFinite(o.gfC(o))&&isFinite(a)}else o=!1 +if(o)return!1 +o=p.a +s=o.c.gpc() +if(b!==p.b){r=o.c +q=r.gfC(r)-s>-1e-10&&b-s>-1e-10}else q=!0 +if(q){p.c=o.Ek(a,b,c) +return!0}return!1}} +A.Gx.prototype={} +A.Er.prototype={ +a_(){var s=this.b +if(s!=null)s.a.c.l() +this.b=null}, +scW(a,b){var s,r,q,p=this +if(J.d(p.e,b))return +s=p.e +s=s==null?null:s.a +r=b==null +if(!J.d(s,r?null:b.a)){s=p.ch +if(s!=null)s.l() +p.ch=null}if(r)q=B.bo +else{s=p.e +s=s==null?null:s.b5(0,b) +q=s==null?B.bo:s}p.e=b +p.f=null +s=q.a +if(s>=3)p.a_() +else if(s>=2)p.c=!0}, +gjZ(){var s=this.f +if(s==null){s=this.e +s=s==null?null:s.nk(!1) +this.f=s}return s==null?"":s}, +sni(a,b){if(this.r===b)return +this.r=b +this.a_()}, +sbC(a){var s,r=this +if(r.w==a)return +r.w=a +r.a_() +s=r.ch +if(s!=null)s.l() +r.ch=null}, +scA(a){var s,r=this +if(a.j(0,r.x))return +r.x=a +r.a_() +s=r.ch +if(s!=null)s.l() +r.ch=null}, +sIz(a){if(this.y==a)return +this.y=a +this.a_()}, +sjg(a,b){if(J.d(this.z,b))return +this.z=b +this.a_()}, +sn7(a){if(this.Q==a)return +this.Q=a +this.a_()}, +sju(a){if(J.d(this.as,a))return +this.as=a +this.a_()}, +snj(a){if(this.at===a)return +this.at=a}, +srM(a){return}, +gXU(){var s,r,q,p=this.b +if(p==null)return null +s=p.giB() +if(!isFinite(s.a)||!isFinite(s.b))return A.b([],t.Lx) +r=p.e +if(r==null)r=p.e=p.a.c.Lm() +if(s.j(0,B.i))return r +q=A.a2(r).i("ae<1,fw>") +q=A.a6(new A.ae(r,new A.amN(s),q),q.i("ax.E")) +q.$flags=1 +return q}, +i2(a){if(a==null||a.length===0||A.cE(a,this.ay))return +this.ay=a +this.a_()}, +Oy(a){var s,r,q,p,o=this,n=o.e,m=n==null?null:n.a +if(m==null)m=B.eo +n=a==null?o.r:a +s=o.w +r=o.x +q=o.Q +p=o.ax +return m.a04(o.y,o.z,q,o.as,n,s,p,r)}, +a8m(){return this.Oy(null)}, +cM(){var s,r,q=this,p=q.ch +if(p==null){p=q.Oy(B.dn) +$.a3() +s=A.dq().gmH()===B.cD?A.aEj(p):A.aCH(p) +p=q.e +if(p==null)r=null +else{p=p.a +r=p==null?null:p.x_(q.x)}if(r!=null)s.rD(r) +s.uI(" ") +p=s.hj() +p.hp(B.Oo) +q.ch=p}return p}, +Ox(a){var s,r=this,q=r.a8m() +$.a3() +s=A.dq().gmH()===B.cD?A.aEj(q):A.aCH(q) +q=r.x +a.zM(s,r.ay,q) +r.c=!1 +return s.hj()}, +ix(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.b,f=g==null +if(!f&&g.aih(b,a,h.at))return +s=h.e +if(s==null)throw A.e(A.a5("TextPainter.text must be set to a non-null value before using the TextPainter.")) +r=h.w +if(r==null)throw A.e(A.a5("TextPainter.textDirection must be set to a non-null value before using the TextPainter.")) +q=A.aKq(h.r,r) +if(!(!isFinite(a)&&q!==0))p=a +else p=f?null:g.a.c.gpc() +o=p==null +n=o?a:p +m=f?null:g.a.c +if(m==null)m=h.Ox(s) +m.hp(new A.nS(n)) +l=new A.azd(r,h,m) +k=l.Ek(b,a,h.at) +if(o&&isFinite(b)){j=m.gpc() +m.hp(new A.nS(j)) +i=new A.a_j(l,j,k,q)}else i=new A.a_j(l,n,k,q) +h.b=i}, +Bq(){return this.ix(1/0,0)}, +aA(a,b){var s,r,q,p=this,o=p.b +if(o==null)throw A.e(A.a5("TextPainter.paint called when text geometry was not yet calculated.\nPlease call layout() before paint() to position the text before painting it.")) +if(!isFinite(o.giB().a)||!isFinite(o.giB().b))return +if(p.c){s=o.a +r=s.c +q=p.e +q.toString +q=p.Ox(q) +q.hp(new A.nS(o.b)) +s.c=q +r.l()}a.WH(o.a.c,b.V(0,o.giB()))}, +Lx(a){var s=this.e.os(0,a) +if(s==null)return null +return(s&64512)===55296?a+2:a+1}, +Ly(a){var s=a-1,r=this.e.os(0,s) +if(r==null)return null +return(r&64512)===56320?a-2:s}, +l5(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.b +j.toString +s=k.xP(a) +if(s==null){r=k.r +q=k.w +q.toString +p=A.aKq(r,q) +return new A.j(p===0?0:p*j.c,0)}$label0$0:{o=s.b +n=B.al===o +if(n)m=s.a +else m=null +if(n){l=m +r=l +break $label0$0}n=B.b_===o +if(n){m=s.a +r=m +r=r instanceof A.j}else r=!1 +if(r){l=n?m:s.a +r=new A.j(l.a-(b.c-b.a),l.b) +break $label0$0}r=null}return new A.j(A.A(r.a+j.giB().a,0,j.c),r.b+j.giB().b)}, +gajY(){var s,r,q=this.as +$label0$0:{if(q==null||B.Sg.j(0,q)){s=!0 +break $label0$0}r=q.d +s=r===0 +break $label0$0}return s}, +Ls(a,b){var s,r,q +if(this.gajY()){s=this.xP(a) +r=s==null?null:s.c +if(r!=null)return r}q=B.b.gc7(this.cM().CG(0,1,B.na)) +return q.d-q.b}, +xP(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=d.b,a=b.a +if(a.c.gK5()<1)return c +$label0$0:{s=a0.a +if(0===s){r=B.Pj +break $label0$0}q=c +r=!1 +q=a0.b +r=B.j===q +if(r){r=new A.am(s,!0) +break $label0$0}p=c +r=!1 +p=B.ak===q +o=p +if(o){r=s-1 +r=0<=r&&r") +r=A.a6(new A.ae(s,new A.amM(p),r),r.i("ax.E")) +r.$flags=1 +r=r}return r}, +m_(a){return this.nr(a,B.fX,B.cV)}, +Lo(a){var s=this.b,r=s.a.c.Lp(a.a0(0,s.giB())) +if(r==null||s.giB().j(0,B.i))return r +return new A.qj(r.a.dj(s.giB()),r.b,r.c)}, +di(a){var s=this.b +return s.a.c.di(a.a0(0,s.giB()))}, +qM(){var s,r,q=this.b,p=q.giB() +if(!isFinite(p.a)||!isFinite(p.b))return B.KE +s=q.f +if(s==null){s=q.a.c.qM() +q.f=s}if(p.j(0,B.i))r=s +else{r=A.a2(s).i("ae<1,nG>") +r=A.a6(new A.ae(s,new A.amL(p),r),r.i("ax.E")) +r.$flags=1 +r=r}return r}, +l(){var s=this,r=s.ch +if(r!=null)r.l() +s.ch=null +r=s.b +if(r!=null)r.a.c.l() +s.e=s.b=null}} +A.amN.prototype={ +$1(a){return A.aKr(a,this.a)}, +$S:93} +A.amM.prototype={ +$1(a){return A.aKr(a,this.a)}, +$S:93} +A.amL.prototype={ +$1(a){var s=this.a,r=a.gXC(),q=a.gVd(),p=a.gIb(),o=a.ga_k(),n=a.gb4(a),m=a.gfC(a),l=a.gw1(a),k=a.gks(),j=a.gBr(a) +$.a3() +return new A.A9(r,q,p,o,n,m,l+s.a,k+s.b,j)}, +$S:315} +A.azK.prototype={ +gk6(){return A.a0(A.eQ(null))}, +aJ(a,b){return A.a0(A.eQ(null))}} +A.amO.prototype={ +zT(a,b,c){if(c===0&&b===1/0)return this +return c===b?new A.iT(c):new A.Fr(this,c,b)}} +A.iT.prototype={ +aJ(a,b){return b*this.a}, +zT(a,b,c){var s=this.a,r=A.A(s,c,b) +return r===s?this:new A.iT(r)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.iT&&b.a===this.a}, +gB(a){return B.d.gB(this.a)}, +k(a){var s=this.a +return s===1?"no scaling":"linear ("+A.k(s)+"x)"}, +gk6(){return this.a}} +A.Fr.prototype={ +gk6(){return A.A(this.a.gk6(),this.b,this.c)}, +aJ(a,b){return A.A(this.a.aJ(0,b),this.b*b,this.c*b)}, +zT(a,b,c){return c===b?new A.iT(c):new A.Fr(this.a,Math.max(c,this.b),Math.min(b,this.c))}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.Fr&&s.b===b.b&&s.c===b.c&&s.a.j(0,b.a)}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return this.a.k(0)+" clamped ["+A.k(this.b)+", "+A.k(this.c)+"]"}} +A.ou.prototype={ +gWe(a){return this.e}, +gLb(){return!0}, +kF(a,b){}, +zM(a,b,c){var s,r,q,p,o,n=this.a,m=n!=null +if(m)a.rD(n.x_(c)) +n=this.b +if(n!=null)try{a.uI(n)}catch(q){n=A.a1(q) +if(n instanceof A.ii){s=n +r=A.aH(q) +A.d6(new A.bO(s,r,"painting library",A.br("while building a TextSpan"),null,!0)) +a.uI("\ufffd")}else throw q}p=this.c +if(p!=null)for(n=p.length,o=0;o0?q:B.cl +if(p===B.bo)return p}else p=B.cl +s=n.c +if(s!=null)for(r=b.c,o=0;op.a)p=q +if(p===B.bo)return p}return p}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +if(!s.Mv(0,b))return!1 +return b instanceof A.ou&&b.b==s.b&&s.e.j(0,b.e)&&A.cE(b.c,s.c)}, +gB(a){var s=this,r=null,q=A.hd.prototype.gB.call(s,0),p=s.c +p=p==null?r:A.bI(p) +return A.T(q,s.b,r,r,r,r,r,s.e,p,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +d5(){return"TextSpan"}, +$iar:1, +$ikv:1, +gYW(){return null}, +gYX(){return null}} +A.p.prototype={ +gjN(){return this.e}, +go0(a){return this.d}, +ov(a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=a.ay +if(a0==null&&b6==null)s=a3==null?a.b:a3 +else s=null +r=a.ch +if(r==null&&a1==null)q=a2==null?a.c:a2 +else q=null +p=b2==null?a.r:b2 +o=b5==null?a.w:b5 +n=b9==null?a.y:b9 +m=c5==null?a.z:c5 +l=c4==null?a.Q:c4 +k=b7==null?a.as:b7 +j=b8==null?a.at:b8 +a0=b6==null?a0:b6 +r=a1==null?r:a1 +i=c3==null?a.dy:c3 +h=b4==null?a.fx:b4 +g=a5==null?a.CW:a5 +f=a6==null?a.cx:a6 +e=a7==null?a.cy:a7 +d=a8==null?a.db:a8 +c=a9==null?a.go0(0):a9 +b=b0==null?a.e:b0 +return A.iL(r,q,s,null,g,f,e,d,c,b,a.fr,p,a.x,h,o,a0,k,a.a,j,n,a.ax,a.fy,a.f,i,l,m)}, +b1(a){var s=null +return this.ov(s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +A1(a,b){var s=null +return this.ov(s,s,a,s,s,s,s,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +VV(a){var s=null +return this.ov(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s)}, +e4(a){var s=null +return this.ov(s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s)}, +iZ(a,b){var s=null +return this.ov(s,s,a,s,s,s,s,s,s,s,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s)}, +W2(a,b){var s=null +return this.ov(s,s,a,s,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +fP(a,b,c,d,e,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.ay +if(f==null)s=a==null?h.b:a +else s=g +r=h.ch +if(r==null)q=h.c +else q=g +p=h.go0(0) +o=h.r +o=o==null?g:o*a2+a1 +n=h.w +n=n==null?g:B.py[B.f.f0(n.a,0,8)] +m=h.y +m=m==null?g:m*a6+a5 +l=h.z +l=l==null?g:l*a9+a8 +k=h.as +k=k==null||k===0?k:k*a4+a3 +j=c==null?h.cx:c +i=h.db +i=i==null?g:i+0 +return A.iL(r,q,s,g,h.CW,j,h.cy,i,p,h.e,h.fr,o,h.x,h.fx,n,f,k,h.a,h.at,m,h.ax,h.fy,h.f,h.dy,h.Q,l)}, +am0(a){var s=null +return this.fP(a,s,s,s,s,s,0,1,0,1,0,1,s,0,1)}, +aZ(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 +if(a4==null)return this +if(!a4.a)return a4 +s=a4.b +r=a4.c +q=a4.r +p=a4.w +o=a4.x +n=a4.y +m=a4.z +l=a4.Q +k=a4.as +j=a4.at +i=a4.ax +h=a4.ay +g=a4.ch +f=a4.dy +e=a4.fr +d=a4.fx +c=a4.CW +b=a4.cx +a=a4.cy +a0=a4.db +a1=a4.go0(0) +a2=a4.e +a3=a4.f +return this.ov(g,r,s,null,c,b,a,a0,a1,a2,e,q,o,d,p,h,k,j,n,i,a4.fy,a3,f,l,m)}, +x_(a){var s,r,q,p,o,n=this,m=n.r +$label0$0:{s=null +if(m==null)break $label0$0 +r=a.j(0,B.aB) +if(r){s=m +break $label0$0}r=a.aJ(0,m) +s=r +break $label0$0}r=n.gjN() +q=n.ch +p=n.c +$label1$1:{if(q instanceof A.pH){o=q +break $label1$1}if(t.G.b(p)){$.a3() +o=A.bc() +o.r=p.gq(0) +break $label1$1}o=null +break $label1$1}return A.aKu(o,n.b,n.CW,n.cx,n.cy,n.db,n.d,r,n.fr,s,n.x,n.fx,n.w,n.ay,n.as,n.at,n.y,n.ax,n.dy,n.Q,n.z)}, +a04(a,b,c,d,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.at,f=g==null?h:new A.En(g),e=i.r +e=a3.aJ(0,e==null?14:e) +if(d==null)s=h +else{s=d.a +r=d.gjN() +q=d.d +$label0$0:{p=h +if(q==null)break $label0$0 +o=a3.aJ(0,q) +p=o +break $label0$0}o=d.e +n=d.x +m=d.f +l=d.r +k=d.w +j=d.y +$.a3() +if(A.dq().gmH()===B.cD)s=new A.SC() +else{s=A.aAs(s) +if($.i3==null)$.i3=B.cY +s=new A.za(s,r,p,o===0?h:o,n,l,k,j,m)}}return A.aJl(a,i.d,e,i.x,i.w,i.as,b,c,s,a0,a1,f)}, +b5(a,b){var s,r=this +if(r===b)return B.cl +s=!0 +if(r.a===b.a)if(r.d==b.d)if(r.r==b.r)if(r.w==b.w)if(r.y==b.y)if(r.z==b.z)if(r.Q==b.Q)if(r.as==b.as)if(r.at==b.at)if(r.ay==b.ay)if(r.ch==b.ch)if(A.cE(r.dy,b.dy))if(A.cE(r.fr,b.fr))if(A.cE(r.fx,b.fx)){s=A.cE(r.gjN(),b.gjN()) +s=!s}if(s)return B.bo +if(!J.d(r.b,b.b)||!J.d(r.c,b.c)||!J.d(r.CW,b.CW)||!J.d(r.cx,b.cx)||r.cy!=b.cy||r.db!=b.db)return B.PQ +return B.cl}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.p)if(b.a===r.a)if(J.d(b.b,r.b))if(J.d(b.c,r.c))if(b.r==r.r)if(b.w==r.w)if(b.y==r.y)if(b.z==r.z)if(b.Q==r.Q)if(b.as==r.as)if(b.at==r.at)if(b.ay==r.ay)if(b.ch==r.ch)if(A.cE(b.dy,r.dy))if(A.cE(b.fr,r.fr))if(A.cE(b.fx,r.fx))if(J.d(b.CW,r.CW))if(J.d(b.cx,r.cx))if(b.cy==r.cy)if(b.db==r.db)if(b.d==r.d)s=A.cE(b.gjN(),r.gjN()) +return s}, +gB(a){var s,r=this,q=null,p=r.gjN(),o=p==null?q:A.bI(p),n=A.T(r.cy,r.db,r.d,o,r.f,r.fy,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),m=r.dy,l=r.fx +o=m==null?q:A.bI(m) +s=l==null?q:A.bI(l) +return A.T(r.a,r.b,r.c,r.r,r.w,r.x,r.y,r.z,r.Q,r.as,r.at,r.ax,r.ay,r.ch,o,q,s,r.CW,r.cx,n)}, +d5(){return"TextStyle"}} +A.a_t.prototype={} +A.N4.prototype={ +a5M(a,b,c,d,e){var s=this +s.r=A.aMm(new A.a8N(s),s.gIw(s),0,10,0)}, +eG(a,b){var s,r,q=this +if(b>q.r)return q.gAS() +s=q.e +r=q.c +return q.d+s*Math.pow(q.b,b)/r-s/r-q.f/2*b*b}, +fn(a,b){var s=this +if(b>s.r)return 0 +return s.e*Math.pow(s.b,b)-s.f*b}, +gAS(){var s=this +if(s.f===0)return s.d-s.e/s.c +return s.eG(0,s.r)}, +a_7(a){var s,r=this,q=r.d +if(a===q)return 0 +s=r.e +if(s!==0)if(s>0)q=ar.gAS() +else q=a>q||a=r.b&&r.c>=r.d +else q=!0 +if(q){o.eL(0) +o=p.c_ +p.fy=p.oO=o.a=o.b=new A.I(A.A(0,r.a,r.b),A.A(0,r.c,r.d)) +p.fY=B.zt +o=p.D$ +if(o!=null)o.hp(r) +return}s.c3(r,!0) +switch(p.fY.a){case 0:o=p.c_ +o.a=o.b=p.D$.gt(0) +p.fY=B.lC +break +case 1:s=p.c_ +if(!J.d(s.b,p.D$.gt(0))){s.a=p.gt(0) +s.b=p.D$.gt(0) +p.eA=0 +o.j9(0,0) +p.fY=B.PO}else{q=o.x +q===$&&A.a() +if(q===o.b)s.a=s.b=p.D$.gt(0) +else{s=o.r +if(!(s!=null&&s.a!=null))o.bP(0)}}break +case 2:s=p.c_ +if(!J.d(s.b,p.D$.gt(0))){s.a=s.b=p.D$.gt(0) +p.eA=0 +o.j9(0,0) +p.fY=B.PP}else{p.fY=B.lC +s=o.r +if(!(s!=null&&s.a!=null))o.bP(0)}break +case 3:s=p.c_ +if(!J.d(s.b,p.D$.gt(0))){s.a=s.b=p.D$.gt(0) +p.eA=0 +o.j9(0,0)}else{o.eL(0) +p.fY=B.lC}break}o=p.c_ +s=p.cn +s===$&&A.a() +s=o.a8(0,s.gq(0)) +s.toString +p.fy=p.oO=r.b3(s) +p.H8() +if(p.gt(0).a=a.b&&a.c>=a.d +else s=!0 +if(s)return new A.I(A.A(0,a.a,a.b),A.A(0,a.c,a.d)) +r=p.ap(B.R,a,p.gc8()) +switch(q.fY.a){case 0:return a.b3(r) +case 1:if(!J.d(q.c_.b,r)){p=q.oO +p===$&&A.a() +return a.b3(p)}else{p=q.bN +p===$&&A.a() +s=p.x +s===$&&A.a() +if(s===p.b)return a.b3(r)}break +case 3:case 2:if(!J.d(q.c_.b,r))return a.b3(r) +break}p=q.cn +p===$&&A.a() +p=q.c_.a8(0,p.gq(0)) +p.toString +return a.b3(p)}, +a6E(a){}, +aA(a,b){var s,r,q,p=this +if(p.D$!=null){s=p.eo +s===$&&A.a() +s=s&&p.f2!==B.n}else s=!1 +r=p.vr +if(s){s=p.gt(0) +q=p.cx +q===$&&A.a() +r.saB(0,a.lQ(q,b,new A.x(0,0,0+s.a,0+s.b),A.rq.prototype.geE.call(p),p.f2,r.a))}else{r.saB(0,null) +p.a33(a,b)}}, +l(){var s,r=this +r.vr.saB(0,null) +s=r.bN +s===$&&A.a() +s.l() +s=r.cn +s===$&&A.a() +s.l() +r.fb()}} +A.ahE.prototype={ +$0(){var s=this.a,r=s.bN +r===$&&A.a() +r=r.x +r===$&&A.a() +if(r!==s.eA)s.a_()}, +$S:0} +A.CZ.prototype={ +gBZ(){var s=this,r=s.ay$ +return r===$?s.ay$=A.aVB(new A.aix(s),new A.aiy(s),new A.aiz(s)):r}, +J8(){var s,r,q,p,o,n,m,l,k,j +for(s=this.cx$,s=new A.dl(s,s.r,s.e),r=!1;s.u();){q=s.d +r=r||q.D$!=null +p=q.fx +o=$.dy() +n=o.d +if(n==null)n=o.gcu() +m=p.at +if(m==null){m=p.ch.HO() +p.at=m}m=A.aKQ(p.Q,new A.I(m.a/n,m.b/n)) +p=m.a*n +l=m.b*n +k=m.c*n +m=m.d*n +j=o.d +if(j==null)j=o.gcu() +q.sqN(new A.EV(new A.ak(p/j,l/j,k/j,m/j),new A.ak(p,l,k,m),j))}if(r)this.a0q()}, +Jf(){}, +Jb(){}, +arp(){var s,r=this.ax$ +if(r!=null){r.P$=$.aw() +r.M$=0}r=t.S +s=$.aw() +this.ax$=new A.Ov(new A.aiw(this),new A.aeW(B.b5,A.w(r,t.ZA)),A.w(r,t.xg),s)}, +aeb(a){B.N5.mn("first-frame",null,!1,t.H)}, +acA(a){this.Iu() +this.aiK()}, +aiK(){$.bC.k4$.push(new A.aiv(this))}, +V_(){--this.db$ +if(!this.dx$)this.LM()}, +Iu(){var s=this,r=s.CW$ +r===$&&A.a() +r.X6() +s.CW$.X5() +s.CW$.X7() +if(s.dx$||s.db$===0){for(r=s.cx$,r=new A.dl(r,r.r,r.e);r.u();)r.d.an1() +s.CW$.X8() +s.dx$=!0}}} +A.aix.prototype={ +$0(){var s=this.a.gBZ().e +if(s!=null)s.x8()}, +$S:0} +A.aiz.prototype={ +$1(a){var s=this.a.gBZ().e +if(s!=null)s.fx.gxd().avM(a)}, +$S:169} +A.aiy.prototype={ +$0(){var s=this.a.gBZ().e +if(s!=null)s.or()}, +$S:0} +A.aiw.prototype={ +$2(a,b){var s=A.a9S() +this.a.vP(s,a,b) +return s}, +$S:317} +A.aiv.prototype={ +$1(a){this.a.ax$.avI()}, +$S:6} +A.Fb.prototype={ +l(){this.a.god().J(0,this.gcV()) +this.cY()}} +A.Uy.prototype={} +A.YV.prototype={ +Kw(){if(this.I)return +this.a35() +this.I=!0}, +x8(){this.or() +this.a2S()}, +l(){this.saU(null)}} +A.ak.prototype={ +v0(a,b,c,d){var s=this,r=d==null?s.a:d,q=b==null?s.b:b,p=c==null?s.c:c +return new A.ak(r,q,p,a==null?s.d:a)}, +anZ(a,b){return this.v0(null,a,null,b)}, +anY(a,b){return this.v0(a,null,b,null)}, +ao_(a,b){return this.v0(null,null,a,b)}, +VY(a){return this.v0(null,a,null,null)}, +HY(a){return this.v0(a,null,null,null)}, +oz(a){var s=this,r=a.gfq(),q=a.gct(a)+a.gcC(a),p=Math.max(0,s.a-r),o=Math.max(0,s.c-q) +return new A.ak(p,Math.max(p,s.b-r),o,Math.max(o,s.d-q))}, +mU(a){var s=this,r=a.a,q=a.b,p=a.c,o=a.d +return new A.ak(A.A(s.a,r,q),A.A(s.b,r,q),A.A(s.c,p,o),A.A(s.d,p,o))}, +Cn(a,b){var s,r,q=this,p=b==null,o=q.a,n=p?o:A.A(b,o,q.b),m=q.b +p=p?m:A.A(b,o,m) +o=a==null +m=q.c +s=o?m:A.A(a,m,q.d) +r=q.d +return new A.ak(n,p,s,o?r:A.A(a,m,r))}, +wE(a){return this.Cn(null,a)}, +a_6(a){return this.Cn(a,null)}, +gX2(){var s=this +return new A.ak(s.c,s.d,s.a,s.b)}, +b3(a){var s=this +return new A.I(A.A(a.a,s.a,s.b),A.A(a.b,s.c,s.d))}, +an3(a){var s,r,q,p,o,n=this,m=n.a,l=n.b +if(m>=l&&n.c>=n.d)return new A.I(A.A(0,m,l),A.A(0,n.c,n.d)) +if(a.ga7(0))return n.b3(a) +s=a.a +r=a.b +q=s/r +if(s>l){r=l/q +s=l}p=n.d +if(r>p){s=p*q +r=p}if(s=s.b&&s.c>=s.d}, +a6(a,b){var s=this +return new A.ak(s.a*b,s.b*b,s.c*b,s.d*b)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.ak&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s,r=this,q=r.a,p=!1 +if(q>=0)if(q<=r.b){p=r.c +p=p>=0&&p<=r.d}s=p?"":"; NOT NORMALIZED" +if(q===1/0&&r.c===1/0)return"BoxConstraints(biggest"+s+")" +if(q===0&&r.b===1/0&&r.c===0&&r.d===1/0)return"BoxConstraints(unconstrained"+s+")" +p=new A.a3m() +return"BoxConstraints("+p.$3(q,r.b,"w")+", "+p.$3(r.c,r.d,"h")+s+")"}} +A.a3m.prototype={ +$3(a,b,c){if(a===b)return c+"="+B.d.ah(a,1) +return B.d.ah(a,1)+"<="+c+"<="+B.d.ah(b,1)}, +$S:158} +A.n0.prototype={ +H7(a,b,c){if(c!=null){c=A.qR(A.aDK(c)) +if(c==null)return!1}return this.UY(a,b,c)}, +iU(a,b,c){var s,r=b==null,q=r?c:c.a0(0,b) +r=!r +if(r)this.c.push(new A.xj(new A.j(-b.a,-b.b))) +s=a.$2(this,q) +if(r)this.C0() +return s}, +UY(a,b,c){var s,r=c==null,q=r?b:A.bj(c,b) +r=!r +if(r)this.c.push(new A.GI(c)) +s=a.$2(this,q) +if(r)this.C0() +return s}, +UX(a,b,c){var s,r=this +if(b!=null)r.c.push(new A.xj(new A.j(-b.a,-b.b))) +else{c.toString +c=A.qR(A.aDK(c)) +c.toString +r.c.push(new A.GI(c))}s=a.$1(r) +r.C0() +return s}, +alR(a,b){return this.UX(a,null,b)}, +alQ(a,b){return this.UX(a,b,null)}} +A.pw.prototype={ +k(a){return"#"+A.bi(this.a)+"@"+this.c.k(0)}} +A.fg.prototype={ +k(a){return"offset="+this.a.k(0)}} +A.zo.prototype={} +A.arl.prototype={ +dY(a,b,c){var s=a.b +if(s==null)s=a.b=A.w(t.k,t.FW) +return s.bY(0,b,new A.arm(c,b))}} +A.arm.prototype={ +$0(){return this.a.$1(this.b)}, +$S:318} +A.aoP.prototype={ +dY(a,b,c){var s +switch(b.b){case B.o:s=a.c +if(s==null){s=A.w(t.k,t.PM) +a.c=s}break +case B.X:s=a.d +if(s==null){s=A.w(t.k,t.PM) +a.d=s}break +default:s=null}return s.bY(0,b.a,new A.aoQ(c,b))}} +A.aoQ.prototype={ +$0(){return this.a.$1(this.b)}, +$S:319} +A.te.prototype={ +K(){return"_IntrinsicDimension."+this.b}, +dY(a,b,c){var s=a.a +if(s==null)s=a.a=A.w(t.Yr,t.i) +return s.bY(0,new A.am(this,b),new A.atP(c,b))}} +A.atP.prototype={ +$0(){return this.a.$1(this.b)}, +$S:145} +A.aO.prototype={} +A.y.prototype={ +eg(a){if(!(a.b instanceof A.fg))a.b=new A.fg(B.i)}, +a80(a,b,c){var s=a.dY(this.dy,b,c) +return s}, +ap(a,b,c){return this.a80(a,b,c,t.K,t.z)}, +bb(a){return 0}, +b7(a){return 0}, +ba(a){return 0}, +b6(a){return 0}, +a7Y(a){return this.cE(a)}, +cE(a){return B.I}, +eU(a,b){return this.ap(B.eH,new A.am(a,b),this.gxQ())}, +a7X(a){return this.ds(a.a,a.b)}, +ds(a,b){return null}, +gt(a){var s=this.fy +return s==null?A.a0(A.a5("RenderBox was not laid out: "+A.r(this).k(0)+"#"+A.bi(this))):s}, +ghB(){var s=this.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}, +wU(a,b){var s=null +try{s=this.k9(a)}finally{}if(s==null&&!b)return this.gt(0).b +return s}, +m0(a){return this.wU(a,!1)}, +k9(a){return this.ap(B.eH,new A.am(t.k.a(A.t.prototype.gW.call(this)),a),new A.ahG(this))}, +fk(a){return null}, +gW(){return t.k.a(A.t.prototype.gW.call(this))}, +a_(){var s=this,r=null,q=s.dy,p=q.b,o=p==null,n=o?r:p.a!==0,m=!0 +if(n!==!0){n=q.a +n=n==null?r:n.a!==0 +if(n!==!0){n=q.c +n=n==null?r:n.a!==0 +if(n!==!0){n=q.d +n=n==null?r:n.a!==0 +n=n===!0}else n=m +m=n}}if(m){if(!o)p.a5(0) +p=q.a +if(p!=null)p.a5(0) +p=q.c +if(p!=null)p.a5(0) +q=q.d +if(q!=null)q.a5(0)}if(m&&s.gaT(s)!=null){s.JX() +return}s.a2Q()}, +pl(){this.fy=this.cE(t.k.a(A.t.prototype.gW.call(this)))}, +bx(){}, +cp(a,b){var s=this +if(s.fy.p(0,b))if(s.cz(a,b)||s.jQ(b)){a.E(0,new A.pw(b,s)) +return!0}return!1}, +jQ(a){return!1}, +cz(a,b){return!1}, +cP(a,b){var s,r=a.b +r.toString +s=t.q.a(r).a +b.dC(s.a,s.b,0,1)}, +dQ(a){var s,r,q,p,o,n=this.aM(0,null) +if(n.hM(n)===0)return B.i +s=new A.eD(new Float64Array(3)) +s.l8(0,0,1) +r=new A.eD(new Float64Array(3)) +r.l8(0,0,0) +q=n.BX(r) +r=new A.eD(new Float64Array(3)) +r.l8(0,0,1) +p=n.BX(r).a0(0,q) +r=new A.eD(new Float64Array(3)) +r.l8(a.a,a.b,0) +o=n.BX(r) +r=o.a0(0,p.m3(s.WC(o)/s.WC(p))).a +return new A.j(r[0],r[1])}, +gkP(){var s=this.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}, +kF(a,b){this.a2P(a,b)}} +A.ahG.prototype={ +$1(a){return this.a.fk(a.b)}, +$S:170} +A.d9.prototype={ +aow(a){var s,r,q,p=this.a4$ +for(s=A.n(this).i("d9.1");p!=null;){r=p.b +r.toString +s.a(r) +q=p.k9(a) +if(q!=null)return q+r.a.b +p=r.am$}return null}, +Af(a){var s,r,q,p,o,n=this.a4$ +for(s=A.n(this).i("d9.1"),r=null;n!=null;){q=n.b +q.toString +s.a(q) +p=n.k9(a) +o=q.a +r=A.tT(r,p==null?null:p+o.b) +n=q.am$}return r}, +va(a,b){var s,r,q={},p=q.a=this.c6$ +for(s=A.n(this).i("d9.1");p!=null;p=r){p=p.b +p.toString +s.a(p) +if(a.iU(new A.ahF(q),p.a,b))return!0 +r=p.ca$ +q.a=r}return!1}, +qU(a,b){var s,r,q,p,o,n=this.a4$ +for(s=A.n(this).i("d9.1"),r=b.a,q=b.b;n!=null;){p=n.b +p.toString +s.a(p) +o=p.a +a.dm(n,new A.j(o.a+r,o.b+q)) +n=p.am$}}} +A.ahF.prototype={ +$2(a,b){return this.a.a.cp(a,b)}, +$S:18} +A.Fx.prototype={ +ai(a){this.tn(0)}} +A.iz.prototype={ +k(a){return this.xq(0)+"; id="+A.k(this.e)}} +A.af2.prototype={ +dX(a,b){var s=this.b.h(0,a) +s.c3(b,!0) +return s.gt(0)}, +fu(a,b){var s=this.b.h(0,a).b +s.toString +t.Wz.a(s).a=b}, +a7i(a,b){var s,r,q,p,o,n=this,m=n.b +try{n.b=A.w(t.K,t.x) +s=b +for(q=t.Wz;s!=null;){p=s.b +p.toString +r=q.a(p) +p=n.b +p.toString +o=r.e +o.toString +p.m(0,o,s) +s=r.am$}n.Kt(a)}finally{n.b=m}}, +k(a){return"MultiChildLayoutDelegate"}} +A.CG.prototype={ +eg(a){if(!(a.b instanceof A.iz))a.b=new A.iz(null,null,B.i)}, +sI9(a){var s=this,r=s.n +if(r===a)return +if(A.r(a)!==A.r(r)||a.m6(r))s.a_() +s.n=a +if(s.y!=null){r=r.a +if(r!=null)r.J(0,s.gn6()) +r=a.a +if(r!=null)r.Z(0,s.gn6())}}, +av(a){var s +this.a4l(a) +s=this.n.a +if(s!=null)s.Z(0,this.gn6())}, +ai(a){var s=this.n.a +if(s!=null)s.J(0,this.gn6()) +this.a4m(0)}, +bb(a){var s=A.j6(a,1/0),r=s.b3(new A.I(A.A(1/0,s.a,s.b),A.A(1/0,s.c,s.d))).a +if(isFinite(r))return r +return 0}, +b7(a){var s=A.j6(a,1/0),r=s.b3(new A.I(A.A(1/0,s.a,s.b),A.A(1/0,s.c,s.d))).a +if(isFinite(r))return r +return 0}, +ba(a){var s=A.j6(1/0,a),r=s.b3(new A.I(A.A(1/0,s.a,s.b),A.A(1/0,s.c,s.d))).b +if(isFinite(r))return r +return 0}, +b6(a){var s=A.j6(1/0,a),r=s.b3(new A.I(A.A(1/0,s.a,s.b),A.A(1/0,s.c,s.d))).b +if(isFinite(r))return r +return 0}, +cE(a){return a.b3(new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d)))}, +bx(){var s=this,r=t.k.a(A.t.prototype.gW.call(s)) +s.fy=r.b3(new A.I(A.A(1/0,r.a,r.b),A.A(1/0,r.c,r.d))) +s.n.a7i(s.gt(0),s.a4$)}, +aA(a,b){this.qU(a,b)}, +cz(a,b){return this.va(a,b)}} +A.Hq.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.Wz;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.Wz;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.Yu.prototype={} +A.M0.prototype={ +Z(a,b){var s=this.a +return s==null?null:s.Z(0,b)}, +J(a,b){var s=this.a +return s==null?null:s.J(0,b)}, +gxe(){return null}, +Dc(a){return this.ew(a)}, +vO(a){return null}, +k(a){var s=A.bi(this),r=this.a +r=r==null?null:r.k(0) +if(r==null)r="" +return"#"+s+"("+r+")"}} +A.CH.prototype={ +sph(a){var s=this.A +if(s==a)return +this.A=a +this.OI(a,s)}, +sXb(a){var s=this.R +if(s==a)return +this.R=a +this.OI(a,s)}, +OI(a,b){var s=this,r=a==null +if(r)s.aC() +else if(b==null||A.r(a)!==A.r(b)||a.ew(b))s.aC() +if(s.y!=null){if(b!=null)b.J(0,s.ge9()) +if(!r)a.Z(0,s.ge9())}if(r){if(s.y!=null)s.aY()}else if(b==null||A.r(a)!==A.r(b)||a.Dc(b))s.aY()}, +sau7(a){if(this.af.j(0,a))return +this.af=a +this.a_()}, +bb(a){var s +if(this.D$==null){s=this.af.a +return isFinite(s)?s:0}return this.DD(a)}, +b7(a){var s +if(this.D$==null){s=this.af.a +return isFinite(s)?s:0}return this.DB(a)}, +ba(a){var s +if(this.D$==null){s=this.af.b +return isFinite(s)?s:0}return this.DC(a)}, +b6(a){var s +if(this.D$==null){s=this.af.b +return isFinite(s)?s:0}return this.DA(a)}, +av(a){var s,r=this +r.pQ(a) +s=r.A +if(s!=null)s.Z(0,r.ge9()) +s=r.R +if(s!=null)s.Z(0,r.ge9())}, +ai(a){var s=this,r=s.A +if(r!=null)r.J(0,s.ge9()) +r=s.R +if(r!=null)r.J(0,s.ge9()) +s.mc(0)}, +cz(a,b){var s=this.R +if(s!=null){s=s.vO(b) +s=s===!0}else s=!1 +if(s)return!0 +return this.xx(a,b)}, +jQ(a){var s=this.A +if(s!=null){s=s.vO(a) +s=s!==!1}else s=!1 +return s}, +bx(){this.pP() +this.aY()}, +uY(a){return a.b3(this.af)}, +Rx(a,b,c){var s +A.c9() +s=a.a +J.ap(s.save()) +if(!b.j(0,B.i))s.translate(b.a,b.b) +c.aA(a,this.gt(0)) +s.restore()}, +aA(a,b){var s,r,q=this +if(q.A!=null){s=a.gcg(0) +r=q.A +r.toString +q.Rx(s,b,r) +q.SP(a)}q.i6(a,b) +if(q.R!=null){s=a.gcg(0) +r=q.R +r.toString +q.Rx(s,b,r) +q.SP(a)}}, +SP(a){}, +dU(a){var s,r=this +r.i5(a) +s=r.A +r.bU=s==null?null:s.gxe() +s=r.R +r.eC=s==null?null:s.gxe() +a.a=!1}, +qC(a,b,c){var s,r,q,p,o=this +o.kC=A.aJJ(o.kC,B.px) +o.iq=A.aJJ(o.iq,B.px) +s=o.kC +r=s!=null&&!s.ga7(s) +s=o.iq +q=s!=null&&!s.ga7(s) +s=A.b([],t.QF) +if(r){p=o.kC +p.toString +B.b.O(s,p)}B.b.O(s,c) +if(q){p=o.iq +p.toString +B.b.O(s,p)}o.MQ(a,b,s)}, +or(){this.Dy() +this.iq=this.kC=null}} +A.a5n.prototype={} +A.rU.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.rU&&b.a.j(0,s.a)&&b.b==s.b}, +k(a){var s,r=this +switch(r.b){case B.al:s=r.a.k(0)+"-ltr" +break +case B.b_:s=r.a.k(0)+"-rtl" +break +case null:case void 0:s=r.a.k(0) +break +default:s=null}return s}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.ant.prototype={ +gbG(){var s=this +if(!s.f)return!1 +if(s.e.aE.qM()!==s.d)s.f=!1 +return s.f}, +PR(a){var s,r,q=this,p=q.r,o=p.h(0,a) +if(o!=null)return o +s=new A.j(q.a.a,q.d[a].gks()) +r=new A.b1(s,q.e.aE.di(s),t.tO) +p.m(0,a,r) +return r}, +gN(a){return this.c}, +u(){var s,r=this,q=r.b+1 +if(q>=r.d.length)return!1 +s=r.PR(q);++r.b +r.a=s.a +r.c=s.b +return!0}, +YS(){var s,r=this,q=r.b +if(q<=0)return!1 +s=r.PR(q-1);--r.b +r.a=s.a +r.c=s.b +return!0}, +asQ(a){var s,r=this,q=r.a +if(a>=0){for(s=q.b+a;r.a.bs;)if(!r.YS())break +return!q.j(0,r.a)}} +A.rp.prototype={ +l(){var s,r,q=this,p=null +q.dt.saB(0,p) +s=q.n +if(s!=null)s.ch.saB(0,p) +q.n=null +s=q.I +if(s!=null)s.ch.saB(0,p) +q.I=null +q.bN.saB(0,p) +s=q.au +if(s!=null){s.P$=$.aw() +s.M$=0}s=q.aX +if(s!=null){s.P$=$.aw() +s.M$=0}s=q.bF +r=s.P$=$.aw() +s.M$=0 +s=q.ao +s.P$=r +s.M$=0 +s=q.ab +s.P$=r +s.M$=0 +s=q.a9 +s.P$=r +s.M$=0 +s=q.gi9() +s.P$=r +s.M$=0 +q.aE.l() +s=q.f3 +if(s!=null)s.l() +if(q.bW){s=q.D +s.P$=r +s.M$=0 +q.bW=!1}q.fb()}, +U2(a){var s,r=this,q=r.ga7f(),p=r.n +if(p==null){s=A.aLo(q) +r.ik(s) +r.n=s}else p.sph(q) +r.X=a}, +Ua(a){var s,r=this,q=r.ga7g(),p=r.I +if(p==null){s=A.aLo(q) +r.ik(s) +r.I=s}else p.sph(q) +r.a2=a}, +gi9(){var s=this.S +if(s===$){$.a3() +s=this.S=new A.Fi(A.bc(),B.i,$.aw())}return s}, +ga7f(){var s=this,r=s.au +if(r==null){r=A.b([],t.xT) +if(s.bB)r.push(s.gi9()) +r=s.au=new A.wJ(r,$.aw())}return r}, +ga7g(){var s=this,r=s.aX +if(r==null){r=A.b([s.ab,s.a9],t.xT) +if(!s.bB)r.push(s.gi9()) +r=s.aX=new A.wJ(r,$.aw())}return r}, +srM(a){return}, +snj(a){var s=this.aE +if(s.at===a)return +s.snj(a) +this.a_()}, +smO(a,b){if(this.aL===b)return +this.aL=b +this.a_()}, +sasX(a){if(this.bO===a)return +this.bO=a +this.a_()}, +sasW(a){var s=this +if(s.bf===a)return +s.bf=a +s.dW=null +s.aY()}, +t1(a){var s=this.aE,r=s.b.a.c.CO(a) +if(this.bf)return A.c8(B.j,0,s.gjZ().length,!1) +return A.c8(B.j,r.a,r.b,!1)}, +al1(a){var s,r,q,p,o,n,m=this +if(!m.A.gbG()){m.bF.sq(0,!1) +m.ao.sq(0,!1) +return}s=m.gt(0) +r=new A.x(0,0,0+s.a,0+s.b) +s=m.aE +q=m.A +p=m.jM +p===$&&A.a() +o=s.l5(new A.ao(q.a,q.e),p) +m.bF.sq(0,r.cI(0.5).p(0,o.V(0,a))) +p=m.A +n=s.l5(new A.ao(p.b,p.e),m.jM) +m.ao.sq(0,r.cI(0.5).p(0,n.V(0,a)))}, +mx(a,b){var s,r +if(a.gbG()){s=this.br.a.c.a.a.length +a=a.qQ(Math.min(a.c,s),Math.min(a.d,s))}r=this.br +r.h8(r.a.c.a.io(a),b)}, +aC(){this.a2R() +var s=this.n +if(s!=null)s.aC() +s=this.I +if(s!=null)s.aC()}, +xC(){this.MO() +this.aE.a_()}, +scW(a,b){var s=this,r=s.aE +if(J.d(r.e,b))return +s.rd=null +r.scW(0,b) +s.bK=s.dW=null +s.a_() +s.aY()}, +gmA(){var s,r=null,q=this.f3 +if(q==null)q=this.f3=A.Es(r,r,r,r,r,B.az,r,r,B.h0,B.aP) +s=this.aE +q.scW(0,s.e) +q.sni(0,s.r) +q.sbC(s.w) +q.scA(s.x) +q.sn7(s.Q) +q.sIz(s.y) +q.sjg(0,s.z) +q.sju(s.as) +q.snj(s.at) +q.srM(s.ax) +return q}, +sni(a,b){var s=this.aE +if(s.r===b)return +s.sni(0,b) +this.a_()}, +sbC(a){var s=this.aE +if(s.w===a)return +s.sbC(a) +this.a_() +this.aY()}, +sjg(a,b){var s=this.aE +if(J.d(s.z,b))return +s.sjg(0,b) +this.a_()}, +sju(a){var s=this.aE +if(J.d(s.as,a))return +s.sju(a) +this.a_()}, +sa15(a){var s=this,r=s.D +if(r===a)return +if(s.y!=null)r.J(0,s.gz_()) +if(s.bW){r=s.D +r.P$=$.aw() +r.M$=0 +s.bW=!1}s.D=a +if(s.y!=null){s.gi9().sDb(s.D.a) +s.D.Z(0,s.gz_())}}, +ajC(){this.gi9().sDb(this.D.a)}, +sbQ(a){if(this.cb===a)return +this.cb=a +this.aY()}, +sapN(a){if(this.ep)return +this.ep=!0 +this.a_()}, +sKD(a,b){if(this.eq===b)return +this.eq=b +this.aY()}, +sn7(a){var s,r=this +if(r.an===a)return +r.an=a +s=a===1?1:null +r.aE.sn7(s) +r.a_()}, +sasJ(a){return}, +sIG(a){return}, +scA(a){var s=this.aE +if(s.x.j(0,a))return +s.scA(a) +this.a_()}, +st9(a){var s=this +if(s.A.j(0,a))return +s.A=a +s.a9.sBe(a) +s.aC() +s.aY()}, +sck(a,b){var s=this,r=s.R +if(r===b)return +if(s.y!=null)r.J(0,s.ge9()) +s.R=b +if(s.y!=null)b.Z(0,s.ge9()) +s.a_()}, +saom(a){if(this.af===a)return +this.af=a +this.a_()}, +saol(a){return}, +satX(a){var s=this +if(s.bB===a)return +s.bB=a +s.aX=s.au=null +s.U2(s.X) +s.Ua(s.a2)}, +sa1k(a){if(this.bU===a)return +this.bU=a +this.aC()}, +sap3(a){if(this.eC===a)return +this.eC=a +this.aC()}, +saoZ(a){var s=this +if(s.IW===a)return +s.IW=a +s.a_() +s.aY()}, +gLP(){var s=this.IW +return s}, +m_(a){var s,r,q=this +q.jA() +s=q.a9 +s=q.aE.nr(a,s.y,s.z) +r=A.a2(s).i("ae<1,fw>") +s=A.a6(new A.ae(s,new A.ahL(q),r),r.i("ax.E")) +return s}, +dU(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this +d.i5(a) +s=d.aE +r=s.e +r.toString +q=A.b([],t.O_) +r.zW(q) +d.hO=q +if(B.b.jG(q,new A.ahK())&&A.aM()!==B.aY){a.e=a.a=!0 +return}r=d.dW +if(r==null)if(d.bf){r=new A.cW(B.c.a6(d.bO,s.gjZ().length),B.aI) +d.dW=r}else{p=new A.cK("") +o=A.b([],t.oU) +for(r=d.hO,n=r.length,m=0,l=0,k="";lh){d=c0[h].dy +d=d!=null&&d.p(0,new A.lR(i,b7))}else d=!1 +if(!d)break +b=c0[h] +d=s.b +d.toString +m.a(d) +b5.push(b);++h}b7=s.b +b7.toString +s=n.a(b7).am$;++i}else{a=b6.m_(new A.fT(j,e,B.j,!1,c,d)) +if(a.length===0)continue +d=B.b.ga3(a) +a0=new A.x(d.a,d.b,d.c,d.d) +a1=B.b.ga3(a).e +for(d=A.a2(a),c=d.i("i2<1>"),a2=new A.i2(a,1,b4,c),a2.xD(a,1,b4,d.c),a2=new A.bd(a2,a2.gv(0),c.i("bd")),c=c.i("ax.E");a2.u();){d=a2.d +if(d==null)d=c.a(d) +a0=a0.fX(new A.x(d.a,d.b,d.c,d.d)) +a1=d.e}d=a0.a +c=Math.max(0,d) +a2=a0.b +a3=Math.max(0,a2) +d=Math.min(a0.c-d,o.a(A.t.prototype.gW.call(b3)).b) +a2=Math.min(a0.d-a2,o.a(A.t.prototype.gW.call(b3)).d) +a4=Math.floor(c)-4 +a5=Math.floor(a3)-4 +d=Math.ceil(c+d)+4 +a2=Math.ceil(a3+a2)+4 +a6=new A.x(a4,a5,d,a2) +a7=A.hk() +a8=k+1 +a7.p3=new A.r0(k,b4) +a7.r=!0 +a7.S=l +a3=f.b +b7=a3==null?b7:a3 +a7.y2=new A.cW(b7,f.r) +$label0$1:{break $label0$1}b7=b8.r +if(b7!=null){a9=b7.dM(a6) +if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a2) +else b7=!1 +a7.ao=a7.ao.HX(b7)}b0=A.c9() +b7=b3.lD +d=b7==null?b4:b7.a!==0 +if(d===!0){b7.toString +b1=new A.bs(b7,A.n(b7).i("bs<1>")).gag(0) +if(!b1.u())A.a0(A.cj()) +b7=b7.F(0,b1.gN(0)) +b7.toString +if(b0.b!==b0)A.a0(A.aIC(b0.a)) +b0.b=b7}else{b2=new A.kO() +b7=A.Dx(b2,b3.a8q(b2)) +if(b0.b!==b0)A.a0(A.aIC(b0.a)) +b0.b=b7}b7.a_q(0,a7) +if(!b7.e.j(0,a6)){b7.e=a6 +b7.iM()}b7=b0.b +if(b7===b0)A.a0(A.Bf(b0.a)) +d=b7.a +d.toString +r.m(0,d,b7) +b7=b0.b +if(b7===b0)A.a0(A.Bf(b0.a)) +b5.push(b7) +k=a8 +l=a1}}b3.lD=r +b8.lY(0,b5,b9)}, +a8q(a){return new A.ahH(this,a)}, +ado(a){this.mx(a,B.ah)}, +acq(a){var s=this,r=s.aE.Lx(s.A.d) +if(r==null)return +s.mx(A.c8(B.j,!a?r:s.A.c,r,!1),B.ah)}, +acm(a){var s=this,r=s.aE.Ly(s.A.d) +if(r==null)return +s.mx(A.c8(B.j,!a?r:s.A.c,r,!1),B.ah)}, +acs(a){var s,r=this,q=r.A.gdd(),p=r.PB(r.aE.b.a.c.h9(q).b) +if(p==null)return +s=a?r.A.c:p.a +r.mx(A.c8(B.j,s,p.a,!1),B.ah)}, +aco(a){var s,r=this,q=r.A.gdd(),p=r.PJ(r.aE.b.a.c.h9(q).a-1) +if(p==null)return +s=a?r.A.c:p.a +r.mx(A.c8(B.j,s,p.a,!1),B.ah)}, +PB(a){var s,r,q +for(s=this.aE;;){r=s.b.a.c.h9(new A.ao(a,B.j)) +q=r.a +if(!(q>=0&&r.b>=0)||q===r.b)return null +if(!this.Ro(r))return r +a=r.b}}, +PJ(a){var s,r,q +for(s=this.aE;a>=0;){r=s.b.a.c.h9(new A.ao(a,B.j)) +q=r.a +if(!(q>=0&&r.b>=0)||q===r.b)return null +if(!this.Ro(r))return r +a=q-1}return null}, +Ro(a){var s,r,q,p +for(s=a.a,r=a.b,q=this.aE;s=m.gjZ().length)return A.ot(new A.ao(m.gjZ().length,B.ak)) +if(o.bf)return A.c8(B.j,0,m.gjZ().length,!1) +s=m.b.a.c.h9(a) +switch(a.b.a){case 0:r=n-1 +break +case 1:r=n +break +default:r=null}if(r>0&&A.aKp(m.gjZ().charCodeAt(r))){m=s.a +q=o.PJ(m) +switch(A.aM().a){case 2:if(q==null){p=o.PB(m) +if(p==null)return A.mf(B.j,n) +return A.c8(B.j,n,p.b,!1)}return A.c8(B.j,q.a,n,!1) +case 0:if(o.eq){if(q==null)return A.c8(B.j,n,n+1,!1) +return A.c8(B.j,q.a,n,!1)}break +case 1:case 4:case 3:case 5:break}}return A.c8(B.j,s.a,s.b,!1)}, +pR(a,b){var s=Math.max(0,a-(1+this.af)),r=Math.min(b,s),q=this.ep?s:r +return new A.am(q,this.an!==1?s:1/0)}, +Nh(){return this.pR(1/0,0)}, +a6y(a){return this.pR(a,0)}, +jA(){var s,r=this,q=t.k,p=q.a(A.t.prototype.gW.call(r)),o=r.pR(q.a(A.t.prototype.gW.call(r)).b,p.a),n=o.a,m=null,l=o.b +m=l +s=n +r.aE.ix(m,s)}, +a7W(){var s,r,q=this +switch(A.aM().a){case 2:case 4:s=q.af +r=q.aE.cM() +r=r.gb4(r) +q.jM=new A.x(0,0,s,0+(r+2)) +break +case 0:case 1:case 3:case 5:s=q.af +r=q.aE.cM() +r=r.gb4(r) +q.jM=new A.x(0,2,s,2+(r-4)) +break}}, +cE(a){var s,r,q,p,o=this,n=a.a,m=a.b,l=o.pR(m,n),k=l.a,j=null,i=l.b +j=i +s=k +r=o.gmA() +r.i2(o.jf(m,A.fE(),A.hB())) +r.ix(j,s) +if(o.ep)q=m +else{r=o.gmA().b +p=r.c +r=r.a.c +r.gb4(r) +q=A.A(p+(1+o.af),n,m)}return new A.I(q,A.A(o.RI(m),a.c,a.d))}, +ds(a,b){var s,r,q=this,p=a.b,o=q.pR(p,a.a),n=o.a,m=null,l=o.b +m=l +s=n +r=q.gmA() +r.i2(q.jf(p,A.fE(),A.hB())) +r.ix(m,s) +return q.gmA().b.a.m0(b)}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=t.k.a(A.t.prototype.gW.call(h)),f=g.b,e=h.jf(f,A.mM(),A.aBN()) +h.apu=e +s=g.a +r=h.pR(f,s) +q=r.a +p=null +o=r.b +p=o +n=q +m=h.aE +m.i2(e) +m.ix(p,n) +e=m.gXU() +e.toString +h.Zh(e) +h.a7W() +f=h.ep?f:A.A(m.b.c+(1+h.af),s,f) +l=h.an +$label0$0:{if(1===l){e=m.b.a.c +e=e.gb4(e) +break $label0$0}e=m.b.a.c +e=e.gb4(e) +s=m.cM() +s=s.gb4(s) +k=m.cM() +k=A.A(e,s*l,k.gb4(k)*l) +e=k +break $label0$0}h.fy=new A.I(f,A.A(e,g.c,g.d)) +m=m.b +e=m.c +s=h.af +m=m.a.c +j=new A.I(e+(1+s),m.gb4(m)) +i=A.n_(j) +m=h.n +if(m!=null)m.hp(i) +e=h.I +if(e!=null)e.hp(i) +h.hn=h.aau(j) +h.R.uM(h.galh()) +h.R.qz(0,h.hn)}, +Vs(a,b){var s,r,q,p,o,n,m,l=this,k=l.gt(0),j=l.aE,i=j.b.a.c +i=Math.min(k.b,i.gb4(i)) +k=j.cM() +s=i-k.gb4(k)+5 +r=Math.min(l.gt(0).a,j.b.c)+4 +q=new A.x(-4,-4,r,s) +if(b!=null)l.lz=b +if(!l.lz)return A.aJK(a,q) +k=l.r1 +p=k!=null?a.a0(0,k):B.i +if(l.r2&&p.a>0){l.hP=new A.j(a.a- -4,l.hP.b) +l.r2=!1}else if(l.oN&&p.a<0){l.hP=new A.j(a.a-r,l.hP.b) +l.oN=!1}if(l.mW&&p.b>0){l.hP=new A.j(l.hP.a,a.b- -4) +l.mW=!1}else if(l.mX&&p.b<0){l.hP=new A.j(l.hP.a,a.b-s) +l.mX=!1}k=l.hP +o=a.a-k.a +n=a.b-k.b +m=A.aJK(new A.j(o,n),q) +if(o<-4&&p.a<0)l.r2=!0 +else if(o>r&&p.a>0)l.oN=!0 +if(n<-4&&p.b<0)l.mW=!0 +else if(n>s&&p.b>0)l.mX=!0 +l.r1=a +return m}, +amx(a){return this.Vs(a,null)}, +LX(a,b,c,d){var s,r,q=this,p=a===B.hG +if(p){q.hP=B.i +q.r1=null +q.lz=!0 +q.oN=q.mW=q.mX=!1}p=!p +q.iq=p +q.cv=d +if(p){q.rb=c +if(d!=null){p=A.A1(B.oj,B.as,d) +p.toString +s=p}else s=B.oj +p=q.gi9() +r=q.jM +r===$&&A.a() +p.sX3(s.Jw(r).dj(b))}else q.gi9().sX3(null) +q.gi9().w=q.cv==null}, +D6(a,b,c){return this.LX(a,b,c,null)}, +aeQ(a,b){var s,r,q,p,o,n=this.aE.l5(a,B.a1) +for(s=b.length,r=n.b,q=0;p=b.length,qr)return new A.b1(o.gBr(o),new A.j(n.a,o.gks()),t.DC)}s=Math.max(0,p-1) +r=p!==0?B.b.gae(b).gks()+B.b.gae(b).gIb():0 +return new A.b1(s,new A.j(n.a,r),t.DC)}, +OY(a,b){var s,r,q=this,p=b.V(0,q.geW()),o=q.iq +if(!o)q.al1(p) +s=q.n +r=q.I +if(r!=null)a.dm(r,b) +q.aE.aA(a.gcg(0),p) +q.Z8(a,p) +if(s!=null)a.dm(s,b)}, +cP(a,b){if(a===this.n||a===this.I)return +this.Wj(a,b)}, +aA(a,b){var s,r,q,p,o,n,m=this +m.jA() +s=(m.hn>0||!m.geW().j(0,B.i))&&m.du!==B.n +r=m.bN +if(s){s=m.cx +s===$&&A.a() +q=m.gt(0) +r.saB(0,a.lQ(s,b,new A.x(0,0,0+q.a,0+q.b),m.ga9k(),m.du,r.a))}else{r.saB(0,null) +m.OY(a,b)}p=m.A +s=p.gbG() +if(s){s=m.wV(p) +o=s[0].a +o=new A.j(A.A(o.a,0,m.gt(0).a),A.A(o.b,0,m.gt(0).b)) +r=m.dt +r.saB(0,A.abp(m.bU,o.V(0,b))) +r=r.a +r.toString +a.lS(r,A.t.prototype.geE.call(m),B.i) +if(s.length===2){n=s[1].a +s=A.A(n.a,0,m.gt(0).a) +r=A.A(n.b,0,m.gt(0).b) +a.lS(A.abp(m.eC,new A.j(s,r).V(0,b)),A.t.prototype.geE.call(m),B.i)}else{s=m.A +if(s.a===s.b)a.lS(A.abp(m.eC,o.V(0,b)),A.t.prototype.geE.call(m),B.i)}}}, +mN(a){var s,r=this +switch(r.du.a){case 0:return null +case 1:case 2:case 3:if(r.hn>0||!r.geW().j(0,B.i)){s=r.gt(0) +s=new A.x(0,0,0+s.a,0+s.b)}else s=null +return s}}} +A.ahL.prototype={ +$1(a){var s=this.a +return new A.fw(a.a+s.geW().a,a.b+s.geW().b,a.c+s.geW().a,a.d+s.geW().b,a.e)}, +$S:93} +A.ahK.prototype={ +$1(a){return!1}, +$S:323} +A.ahH.prototype={ +$0(){var s=this.a +s.nG(s,s.lD.h(0,this.b).e)}, +$S:0} +A.ahM.prototype={ +$2(a,b){var s=a==null?null:a.fX(new A.x(b.a,b.b,b.c,b.d)) +return s==null?new A.x(b.a,b.b,b.c,b.d):s}, +$S:324} +A.ahJ.prototype={ +$2(a,b){return new A.I(a.ap(B.aK,1/0,a.gbE()),0)}, +$S:51} +A.ahI.prototype={ +$2(a,b){return new A.I(a.ap(B.ab,1/0,a.gbj()),0)}, +$S:51} +A.Yv.prototype={ +gaT(a){return t.CA.a(A.t.prototype.gaT.call(this,0))}, +geQ(){return!0}, +gkc(){return!0}, +sph(a){var s,r=this,q=r.n +if(a===q)return +r.n=a +s=a.ew(q) +if(s)r.aC() +if(r.y!=null){s=r.ge9() +q.J(0,s) +a.Z(0,s)}}, +aA(a,b){var s=t.CA.a(A.t.prototype.gaT.call(this,0)),r=this.n +if(s!=null){s.jA() +r.jW(a.gcg(0),this.gt(0),s)}}, +av(a){this.e1(a) +this.n.Z(0,this.ge9())}, +ai(a){this.n.J(0,this.ge9()) +this.e2(0)}, +cE(a){return new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d))}} +A.o6.prototype={} +A.IA.prototype={ +sBd(a){if(J.d(a,this.w))return +this.w=a +this.ak()}, +sBe(a){if(J.d(a,this.x))return +this.x=a +this.ak()}, +sLQ(a){if(this.y===a)return +this.y=a +this.ak()}, +sLR(a){if(this.z===a)return +this.z=a +this.ak()}, +jW(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.x,g=i.w +if(h==null||g==null||h.a===h.b)return +s=i.r +s.r=g.gq(0) +r=c.aE +q=r.nr(A.c8(B.j,h.a,h.b,!1),i.y,i.z) +p=A.qA(q,A.a2(q).c) +for(q=A.cl(p,p.r,A.n(p).c),o=a.a,n=q.$ti.c;q.u();){m=q.d +if(m==null)m=n.a(m) +m=new A.x(m.a,m.b,m.c,m.d).dj(c.geW()) +l=r.b +k=l.c +l=l.a.c +l=m.dM(new A.x(0,0,0+k,0+l.gb4(l))) +j=s.ef() +o.drawRect(A.cU(l),j) +j.delete()}}, +ew(a){var s=this +if(a===s)return!1 +return!(a instanceof A.IA)||!J.d(a.w,s.w)||!J.d(a.x,s.x)||a.y!==s.y||a.z!==s.z}} +A.Fi.prototype={ +sDb(a){if(this.r===a)return +this.r=a +this.ak()}, +sHC(a){var s,r=this.z +r=r==null?null:r.C() +s=a.C() +if(r===s)return +this.z=a +this.ak()}, +sWg(a){if(J.d(this.Q,a))return +this.Q=a +this.ak()}, +sWf(a){if(this.as.j(0,a))return +this.as=a +this.ak()}, +sVg(a){var s,r=this,q=r.at +if(q==null)q=null +else{q=q.a +q=q.gq(q)}s=a.a +s=s.gq(s) +if(q===s)return +r.at=a +if(r.w)r.ak()}, +sX3(a){if(J.d(this.ax,a))return +this.ax=a +this.ak()}, +atY(a,b,c,d){var s,r,q=this,p=b.jo(d) +if(q.r){s=q.ax +if(s!=null)if(s.gaV().a0(0,p.gaV()).gvj()<225)return +r=q.Q +s=q.x +s.r=c.gq(c) +if(r==null)a.fm(p,s) +else a.ez(A.o1(p,r),s)}}, +jW(a,b,c){var s,r,q,p,o,n,m,l=this,k=c.A +if(k.a!==k.b||!k.gbG())return +s=l.ax +r=s==null +if(r)q=l.z +else q=l.w?l.at:null +if(r)p=k.gdd() +else{o=c.rb +o===$&&A.a() +p=o}if(q!=null)l.atY(a,c,q,p) +o=l.z +n=o==null?null:A.aC(191,o.C()>>>16&255,o.C()>>>8&255,o.C()&255) +if(r||n==null||!l.r)return +r=A.o1(s,B.zs) +m=l.y +if(m===$){$.a3() +m=l.y=A.bc()}m.r=n.gq(0) +a.ez(r,m)}, +ew(a){var s=this +if(s===a)return!1 +return!(a instanceof A.Fi)||a.r!==s.r||a.w!==s.w||!J.d(a.z,s.z)||!J.d(a.Q,s.Q)||!a.as.j(0,s.as)||!J.d(a.at,s.at)||!J.d(a.ax,s.ax)}} +A.wJ.prototype={ +Z(a,b){var s,r,q +for(s=this.r,r=s.length,q=0;q")) +s=this.r +p=A.a2(s) +o=new J.cV(s,s.length,p.i("cV<1>")) +s=p.c +r=r.c +for(;;){if(!(q.u()&&o.u()))break +p=o.d +if(p==null)p=s.a(p) +n=q.d +if(p.ew(n==null?r.a(n):n))return!0}return!1}} +A.Hs.prototype={ +av(a){this.e1(a) +$.jy.vs$.a.E(0,this.gyV())}, +ai(a){$.jy.vs$.a.F(0,this.gyV()) +this.e2(0)}} +A.Ht.prototype={ +av(a){var s,r,q +this.a4n(a) +s=this.a4$ +for(r=t.ot;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.a4o(0) +s=this.a4$ +for(r=t.ot;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.Yw.prototype={} +A.CJ.prototype={ +a5U(a){var s,r,q,p,o=this +try{r=o.n +if(r!==""){q=$.aON() +$.a3() +s=A.dq().gmH()===B.cD?A.aEj(q):A.aCH(q) +s.rD($.aOO()) +s.uI(r) +r=s.hj() +o.I!==$&&A.bw() +o.I=r}else{o.I!==$&&A.bw() +o.I=null}}catch(p){}}, +b7(a){return 1e5}, +b6(a){return 1e5}, +gkc(){return!0}, +jQ(a){return!0}, +cE(a){return a.b3(B.RD)}, +aA(a,b){var s,r,q,p,o,n,m,l,k,j=this +try{p=a.gcg(0) +o=j.gt(0) +n=b.a +m=b.b +$.a3() +l=A.bc() +l.r=$.aOM().gq(0) +p.fm(new A.x(n,m,n+o.a,m+o.b),l) +p=j.I +p===$&&A.a() +if(p!=null){s=j.gt(0).a +r=0 +q=0 +if(s>328){s-=128 +r+=64}p.hp(new A.nS(s)) +o=j.gt(0) +if(o.b>96+p.gb4(p)+12)q+=96 +o=a.gcg(0) +o.WH(p,b.V(0,new A.j(r,q)))}}catch(k){}}} +A.au0.prototype={} +A.MV.prototype={ +K(){return"FlexFit."+this.b}} +A.h7.prototype={ +k(a){return this.xq(0)+"; flex="+A.k(this.e)+"; fit="+A.k(this.f)}} +A.Oi.prototype={ +K(){return"MainAxisSize."+this.b}} +A.nJ.prototype={ +K(){return"MainAxisAlignment."+this.b}, +tO(a,b,c,d){var s,r,q,p=this +$label0$0:{if(B.x===p){s=c?new A.am(a,d):new A.am(0,d) +break $label0$0}if(B.i4===p){s=B.x.tO(a,b,!c,d) +break $label0$0}r=B.cj===p +if(r&&b<2){s=B.x.tO(a,b,c,d) +break $label0$0}q=B.vt===p +if(q&&b===0){s=B.x.tO(a,b,c,d) +break $label0$0}if(B.b3===p){s=new A.am(a/2,d) +break $label0$0}if(r){s=new A.am(0,a/(b-1)+d) +break $label0$0}if(q){s=a/b +s=new A.am(s/2,s+d) +break $label0$0}if(B.vu===p){s=a/(b+1) +s=new A.am(s,s+d) +break $label0$0}s=null}return s}} +A.pQ.prototype={ +K(){return"CrossAxisAlignment."+this.b}, +EV(a,b){var s,r=this +$label0$0:{if(B.ce===r||B.hn===r){s=0 +break $label0$0}if(B.an===r){s=b?a:0 +break $label0$0}if(B.w===r){s=a/2 +break $label0$0}if(B.eU===r){s=B.an.EV(a,!b) +break $label0$0}s=null}return s}} +A.CK.prototype={ +ste(a,b){if(this.b9===b)return +this.b9=b +this.a_()}, +eg(a){if(!(a.b instanceof A.h7))a.b=new A.h7(null,null,B.i)}, +y6(a,b,c){var s,r,q,p,o,n,m,l=this,k=l.n +if(k===c){s=l.b9*(l.c0$-1) +r=l.a4$ +k=A.n(l).i("a9.1") +q=t.US +p=0 +o=0 +while(r!=null){n=r.b +n.toString +m=q.a(n).e +if(m==null)m=0 +p+=m +if(m>0)o=Math.max(o,a.$2(r,b)/m) +else s+=a.$2(r,b) +n=r.b +n.toString +r=k.a(n).am$}return o*p+s}else{switch(k.a){case 0:k=!0 +break +case 1:k=!1 +break +default:k=null}q=k?new A.ak(0,b,0,1/0):new A.ak(0,1/0,0,b) +return l.y0(q,A.hB(),new A.ahN(k,a)).a.b}}, +bb(a){return this.y6(new A.ahS(),a,B.b1)}, +b7(a){return this.y6(new A.ahQ(),a,B.b1)}, +ba(a){return this.y6(new A.ahR(),a,B.af)}, +b6(a){return this.y6(new A.ahP(),a,B.af)}, +fk(a){var s +switch(this.n.a){case 0:s=this.Af(a) +break +case 1:s=this.aow(a) +break +default:s=null}return s}, +gQN(){var s,r=this.a2 +$label0$1:{s=!1 +if(B.hn===r){switch(this.n.a){case 0:s=!0 +break +case 1:break +default:s=null}break $label0$1}if(B.an===r||B.w===r||B.eU===r||B.ce===r)break $label0$1 +s=null}return s}, +aaf(a){var s +switch(this.n.a){case 0:s=a.b +break +case 1:s=a.a +break +default:s=null}return s}, +PA(a){var s +switch(this.n.a){case 0:s=a.a +break +case 1:s=a.b +break +default:s=null}return s}, +gPf(){var s,r=this,q=!1 +if(r.a4$!=null)switch(r.n.a){case 0:s=r.S +$label0$1:{if(s==null||B.al===s)break $label0$1 +if(B.b_===s){q=!0 +break $label0$1}q=null}break +case 1:switch(r.a9.a){case 1:break +case 0:q=!0 +break +default:q=null}break +default:q=null}return q}, +gPe(){var s,r=this,q=!1 +if(r.a4$!=null)switch(r.n.a){case 1:s=r.S +$label0$1:{if(s==null||B.al===s)break $label0$1 +if(B.b_===s){q=!0 +break $label0$1}q=null}break +case 0:switch(r.a9.a){case 1:break +case 0:q=!0 +break +default:q=null}break +default:q=null}return q}, +Os(a){var s,r,q=null,p=this.a2 +$label0$0:{if(B.ce===p){s=!0 +break $label0$0}if(B.an===p||B.w===p||B.eU===p||B.hn===p){s=!1 +break $label0$0}s=q}switch(this.n.a){case 0:r=a.d +s=s?A.le(r,q):new A.ak(0,1/0,0,r) +break +case 1:r=a.b +s=s?A.le(q,r):new A.ak(0,r,0,1/0) +break +default:s=q}return s}, +Or(a,b,c){var s,r,q=a.b +q.toString +q=t.US.a(q).f +switch((q==null?B.kM:q).a){case 0:q=c +break +case 1:q=0 +break +default:q=null}s=this.a2 +$label0$1:{if(B.ce===s){r=!0 +break $label0$1}if(B.an===s||B.w===s||B.eU===s||B.hn===s){r=!1 +break $label0$1}r=null}switch(this.n.a){case 0:r=r?b.d:0 +r=new A.ak(q,c,r,b.d) +q=r +break +case 1:r=r?b.b:0 +q=new A.ak(r,b.b,q,c) +break +default:q=null}return q}, +ds(a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=a2.y0(a5,A.hB(),A.fE()) +if(a2.gQN())return a4.c +s=new A.ahO(a2,a4,a5,a2.Os(a5)) +r=a3 +switch(a2.n.a){case 1:q=a4.b +p=Math.max(0,q) +o=a2.gPf() +n=a2.I +m=a2.c0$ +l=n.tO(p,m,o,a2.b9) +k=l.a +j=a3 +i=l.b +j=i +h=k +g=o?h+(m-1)*j+(a4.a.a-q):h +f=o?-1:1 +e=a2.a4$ +q=A.n(a2).i("a9.1") +for(;;){if(!(r==null&&e!=null))break +d=s.$1(e) +n=e.gc8() +m=e.dy +c=B.R.dY(m,d,n) +b=B.eH.dY(m,new A.am(d,a6),e.gxQ()) +a=o?-c.b:0 +a2=b==null?a3:b+g +a2=a2==null?a3:a2+a +g+=f*(j+c.b) +n=e.b +n.toString +e=q.a(n).am$ +r=a2}break +case 0:a0=a2.gPe() +e=a2.a4$ +q=A.n(a2).i("a9.1") +n=a4.a.b +while(e!=null){d=s.$1(e) +m=e.gxQ() +a1=e.dy +c=B.eH.dY(a1,new A.am(d,a6),m) +b=B.R.dY(a1,d,e.gc8()) +m=a2.a2.EV(n-b.b,a0) +r=A.tT(r,c==null?a3:c+m) +m=e.b +m.toString +e=q.a(m).am$}break}return r}, +cE(a){return A.aoL(this.y0(a,A.hB(),A.fE()).a,this.n)}, +y0(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null,a0=b.PA(new A.I(A.A(1/0,a3.a,a3.b),A.A(1/0,a3.c,a3.d))),a1=isFinite(a0),a2=b.Os(a3) +if(b.gQN())A.a0(A.je('To use CrossAxisAlignment.baseline, you must also specify which baseline to use using the "textBaseline" argument.')) +s=new A.I(b.b9*(b.c0$-1),0) +r=b.a4$ +q=A.n(b).i("a9.1") +p=t.US +o=s +n=a +m=n +l=0 +while(r!=null){if(a1){k=r.b +k.toString +j=p.a(k).e +if(j==null)j=0 +k=j>0}else{j=a +k=!1}if(k){l+=j +if(m==null)m=r}else{s=A.aoL(a5.$2(r,a2),b.n) +s=new A.I(o.a+s.a,Math.max(o.b,s.b)) +n=A.aKX(n,a) +o=s}k=r.b +k.toString +r=q.a(k).am$}i=Math.max(0,a0-o.a)/l +r=m +for(;;){if(!(r!=null&&l>0))break +c$0:{k=r.b +k.toString +j=p.a(k).e +if(j==null)j=0 +if(j===0)break c$0 +l-=j +s=A.aoL(a5.$2(r,b.Or(r,a3,i*j)),b.n) +s=new A.I(o.a+s.a,Math.max(o.b,s.b)) +n=A.aKX(n,a) +o=s}k=r.b +k.toString +r=q.a(k).am$}$label0$1:{q=n==null +if(q){p=B.I +break $label0$1}h=a +g=a +f=n.a +h=n.b +g=f +s=new A.I(0,g+A.cp(h)) +p=s +break $label0$1 +p=a}o=A.aYj(o,p) +e=b.X +$label1$2:{d=B.t===e +if(d&&a1){p=a0 +break $label1$2}if(d||B.c1===e){p=o.a +break $label1$2}p=a}c=A.aYk(new A.I(p,o.b),a3,b.n) +q=q?a:n.a +p=m==null?a:i +return new A.au0(c,c.a-o.a,q,p)}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=null,a5="Pattern matching error",a6="RenderBox was not laid out: ",a7=a3.y0(t.k.a(A.t.prototype.gW.call(a3)),A.aBN(),A.mM()),a8=a7.a,a9=a8.b +a3.fy=A.aoL(a8,a3.n) +a8=a7.b +a3.au=Math.max(0,-a8) +s=Math.max(0,a8) +r=a3.gPf() +q=a3.gPe() +p=a3.I.tO(s,a3.c0$,r,a3.b9) +o=p.a +n=a4 +m=p.b +n=m +l=o +k=r?new A.am(a3.gzS(),a3.c6$):new A.am(a3.guU(),a3.a4$) +j=k.a +a8=t.xP.b(j) +i=a4 +if(a8){h=k.b +i=h +g=j}else g=a4 +if(!a8)throw A.e(A.a5(a5)) +f=a7.c +for(a8=t.US,e=f!=null,d=i,c=l;d!=null;d=g.$1(d)){if(e){b=a3.ab +b.toString +a=d.wU(b,!0) +a0=a!=null}else{a=a4 +a0=!1}if(a0){a.toString +a1=f-a}else{b=a3.a2 +a2=d.fy +a1=b.EV(a9-a3.aaf(a2==null?A.a0(A.a5(a6+A.r(d).k(0)+"#"+A.bi(d))):a2),q)}b=d.b +b.toString +a8.a(b) +switch(a3.n.a){case 0:a2=new A.j(c,a1) +break +case 1:a2=new A.j(a1,c) +break +default:a2=a4}b.a=a2 +a2=d.fy +c+=a3.PA(a2==null?A.a0(A.a5(a6+A.r(d).k(0)+"#"+A.bi(d))):a2)+n}}, +cz(a,b){return this.va(a,b)}, +aA(a,b){var s,r,q,p=this +if(!(p.au>1e-10)){p.qU(a,b) +return}if(p.gt(0).ga7(0))return +s=p.aL +r=p.cx +r===$&&A.a() +q=p.gt(0) +s.saB(0,a.lQ(r,b,new A.x(0,0,0+q.a,0+q.b),p.gWk(),p.aX,s.a))}, +l(){this.aL.saB(0,null) +this.a4r()}, +mN(a){var s +switch(this.aX.a){case 0:return null +case 1:case 2:case 3:if(this.au>1e-10){s=this.gt(0) +s=new A.x(0,0,0+s.a,0+s.b)}else s=null +return s}}, +d5(){return this.a2T()}} +A.ahN.prototype={ +$2(a,b){var s,r,q=this.a,p=q?b.b:b.d +if(isFinite(p))s=p +else s=q?a.ap(B.ab,1/0,a.gbj()):a.ap(B.b8,1/0,a.gbL()) +r=this.b +return q?new A.I(s,r.$2(a,s)):new A.I(r.$2(a,s),s)}, +$S:51} +A.ahS.prototype={ +$2(a,b){return a.ap(B.aK,b,a.gbE())}, +$S:57} +A.ahQ.prototype={ +$2(a,b){return a.ap(B.ab,b,a.gbj())}, +$S:57} +A.ahR.prototype={ +$2(a,b){return a.ap(B.aL,b,a.gbD())}, +$S:57} +A.ahP.prototype={ +$2(a,b){return a.ap(B.b8,b,a.gbL())}, +$S:57} +A.ahO.prototype={ +$1(a){var s,r,q=this,p=q.b.d +if(p!=null){s=A.aWl(a) +r=s>0}else{s=null +r=!1}return r?q.a.Or(a,q.c,s*p):q.d}, +$S:326} +A.Yy.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.US;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.US;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.Yz.prototype={} +A.Hu.prototype={ +l(){var s,r,q +for(s=this.apo$,r=s.length,q=0;q")),t.M) +s=q.length +r=0 +for(;r>")) +this.hQ(new A.KA(s,c.i("KA<0>")),b,!0,c) +return s.length===0?null:B.b.ga3(s).a}, +a6w(a){var s,r,q=this +if(!q.w&&q.x!=null){s=q.x +s.toString +r=a.b +r===$&&A.a() +s.a=r +r.c.push(s) +return}q.ij(a) +q.w=!1}, +d5(){var s=this.a1T() +return s+(this.y==null?" DETACHED":"")}} +A.abl.prototype={ +$0(){this.b.$1(this.a)}, +$S:0} +A.abm.prototype={ +$0(){var s=this.a +s.a.F(0,this.b) +s.uC(-1)}, +$S:0} +A.O0.prototype={ +saB(a,b){var s=this.a +if(b==s)return +if(s!=null)if(--s.f===0)s.l() +this.a=b +if(b!=null)++b.f}, +k(a){var s=this.a +return"LayerHandle("+(s!=null?s.k(0):"DISPOSED")+")"}} +A.Pb.prototype={ +sZd(a){var s +this.f5() +s=this.ay +if(s!=null)s.l() +this.ay=a}, +l(){this.sZd(null) +this.Mw()}, +ij(a){var s,r=this.ay +r.toString +s=a.b +s===$&&A.a() +r=new A.lP(r,B.i,B.a1) +r.a=s +s.c.push(r)}, +hQ(a,b,c){return!1}} +A.f_.prototype={ +tN(a){var s +this.a2h(a) +if(!a)return +s=this.ax +while(s!=null){s.tN(!0) +s=s.Q}}, +DG(){for(var s=this.ay;s!=null;s=s.as)if(!s.DG())return!1 +return!0}, +Vp(a){var s=this +s.Cz() +s.ij(a) +if(s.b>0)s.tN(!0) +s.w=!1 +return new A.abi(new A.abk(a.a))}, +l(){this.KK() +this.a.a5(0) +this.Mw()}, +Cz(){var s,r=this +r.a2k() +s=r.ax +while(s!=null){s.Cz() +r.w=r.w||s.w +s=s.Q}}, +hQ(a,b,c,d){var s,r,q +for(s=this.ay,r=a.a;s!=null;s=s.as){if(s.hQ(a,b,!0,d))return!0 +q=r.length +if(q!==0)return!1}return!1}, +av(a){var s +this.a2i(a) +s=this.ax +while(s!=null){s.av(a) +s=s.Q}}, +ai(a){var s +this.a2j(0) +s=this.ax +while(s!=null){s.ai(0) +s=s.Q}this.tN(!1)}, +Hd(a,b){var s,r=this +if(!r.gqy())r.f5() +s=b.b +if(s!==0)r.uC(s) +b.r=r +s=r.y +if(s!=null)b.av(s) +r.kT(b) +s=b.as=r.ay +if(s!=null)s.Q=b +r.ay=b +if(r.ax==null)r.ax=b +b.e.saB(0,b)}, +fz(){var s,r,q=this.ax +while(q!=null){s=q.z +r=this.z +if(s<=r){q.z=r+1 +q.fz()}q=q.Q}}, +kT(a){var s=a.z,r=this.z +if(s<=r){a.z=r+1 +a.fz()}}, +QU(a){var s,r=this +if(!r.gqy())r.f5() +s=a.b +if(s!==0)r.uC(-s) +a.r=null +if(r.y!=null)a.ai(0)}, +KK(){var s,r=this,q=r.ax +for(;q!=null;q=s){s=q.Q +q.Q=q.as=null +r.QU(q) +q.e.saB(0,null)}r.ay=r.ax=null}, +ij(a){this.iT(a)}, +iT(a){var s=this.ax +while(s!=null){s.a6w(a) +s=s.Q}}, +qB(a,b){}} +A.jw.prototype={ +sck(a,b){if(!b.j(0,this.k3))this.f5() +this.k3=b}, +hQ(a,b,c,d){return this.nL(a,b.a0(0,this.k3),!0,d)}, +qB(a,b){var s=this.k3 +b.dC(s.a,s.b,0,1)}, +ij(a){var s,r=this,q=r.k3 +t.Ff.a(r.x) +s=A.qO() +s.pE(q.a,q.b,0) +r.sfW(a.lR(new A.C6(s,A.b([],t.k5),B.a1))) +r.iT(a) +a.dB()}, +avt(a,b){var s,r,q,p,o,n,m,l,k,j +$.a3() +r=A.aID() +q=A.qQ(b,b,1) +p=a.a +o=this.k3 +n=a.b +q.dC(-(p+o.a),-(n+o.b),0,1) +r.auh(q.a) +s=this.Vp(r) +try{p=B.d.oo(b*(a.c-p)) +n=B.d.oo(b*(a.d-n)) +o=s.a +m=new A.lf() +l=A.a4e(m,new A.x(0,0,p,n)) +o=o.a +new A.Pl(new A.vd(A.b([],t.YE)),null).no(o) +k=A.b([],t.k_) +k.push(l) +j=A.b([],t.Ay) +if(!o.b.ga7(0))new A.P3(new A.BP(k),null,j,A.w(t.uy,t.gm),l).no(o) +p=m.oK().KU(p,n) +return p}finally{}}} +A.ze.prototype={ +hQ(a,b,c,d){if(!this.k3.p(0,b))return!1 +return this.nL(a,b,!0,d)}, +ij(a){var s,r=this,q=r.k3 +q.toString +s=r.k4 +t.e4.a(r.x) +r.sfW(a.lR(new A.LC(q,s,A.b([],t.k5),B.a1))) +r.iT(a) +a.dB()}} +A.zd.prototype={ +hQ(a,b,c,d){if(!this.k3.p(0,b))return!1 +return this.nL(a,b,!0,d)}, +ij(a){var s,r=this,q=r.k3 +q.toString +s=r.k4 +t.cW.a(r.x) +r.sfW(a.lR(new A.LA(q,s,A.b([],t.k5),B.a1))) +r.iT(a) +a.dB()}} +A.zc.prototype={ +hQ(a,b,c,d){var s=this.k3.gfj().a +s===$&&A.a() +if(!s.a.contains(b.a,b.b))return!1 +return this.nL(a,b,!0,d)}, +ij(a){var s,r=this,q=r.k3 +q.toString +s=r.k4 +t.L5.a(r.x) +r.sfW(a.lR(new A.Ly(q,s,A.b([],t.k5),B.a1))) +r.iT(a) +a.dB()}} +A.AU.prototype={ +ij(a){var s=this,r=s.M,q=s.k3 +t.C6.a(s.x) +s.sfW(a.lR(new A.ND(q,r,A.b([],t.k5),B.a1))) +s.iT(a) +a.dB()}} +A.wp.prototype={ +sc2(a,b){var s=this +if(b.j(0,s.M))return +s.M=b +s.I=!0 +s.f5()}, +ij(a){var s=this,r=s.P=s.M,q=s.k3 +if(!q.j(0,B.i)){r=A.nL(q.a,q.b,0) +q=s.P +q.toString +r.dZ(0,q) +s.P=r}s.sfW(a.wq(r.a,t.qf.a(s.x))) +s.iT(a) +a.dB()}, +Gv(a){var s,r=this +if(r.I){s=r.M +s.toString +r.n=A.qR(A.aDK(s)) +r.I=!1}s=r.n +if(s==null)return null +return A.bj(s,a)}, +hQ(a,b,c,d){var s=this.Gv(b) +if(s==null)return!1 +return this.a2w(a,s,!0,d)}, +qB(a,b){var s=this.P +if(s==null){s=this.M +s.toString +b.dZ(0,s)}else b.dZ(0,s)}} +A.OT.prototype={ +sdH(a,b){var s=this,r=s.M +if(b!=r){if(b===255||r===255)s.sfW(null) +s.M=b +s.f5()}}, +ij(a){var s,r,q,p,o=this +if(o.ax==null){o.sfW(null) +return}s=o.M +s.toString +r=t.k5 +q=o.k3 +p=o.x +if(s<255){t.Zr.a(p) +o.sfW(a.lR(new A.OS(s,q,A.b([],r),B.a1)))}else{t.Ff.a(p) +s=A.qO() +s.pE(q.a,q.b,0) +o.sfW(a.lR(new A.C6(s,A.b([],r),B.a1)))}o.iT(a) +a.dB()}} +A.yG.prototype={ +sAP(a,b){if(!b.j(0,this.k3)){this.k3=b +this.f5()}}, +ij(a){var s,r=this,q=r.k3 +q.toString +s=r.k4 +t.tX.a(r.x) +r.sfW(a.lR(new A.KS(q,s,A.b([],t.k5),B.a1))) +r.iT(a) +a.dB()}} +A.Bg.prototype={ +k(a){var s=A.bi(this),r=this.a!=null?"":"" +return"#"+s+"("+r+")"}} +A.Bj.prototype={ +sp8(a){var s=this,r=s.k3 +if(r===a)return +if(s.y!=null){if(r.a===s)r.a=null +a.a=s}s.k3=a}, +sck(a,b){if(b.j(0,this.k4))return +this.k4=b +this.f5()}, +av(a){this.a1K(a) +this.k3.a=this}, +ai(a){var s=this.k3 +if(s.a===this)s.a=null +this.a1L(0)}, +hQ(a,b,c,d){return this.nL(a,b.a0(0,this.k4),!0,d)}, +ij(a){var s=this,r=s.k4 +if(!r.j(0,B.i))s.sfW(a.wq(A.nL(r.a,r.b,0).a,t.qf.a(s.x))) +else s.sfW(null) +s.iT(a) +if(!s.k4.j(0,B.i))a.dB()}, +qB(a,b){var s=this.k4 +if(!s.j(0,B.i))b.dC(s.a,s.b,0,1)}} +A.Aw.prototype={ +Gv(a){var s,r,q,p,o=this +if(o.R8){s=o.Lv() +s.toString +o.p4=A.qR(s) +o.R8=!1}if(o.p4==null)return null +r=new A.jR(new Float64Array(4)) +r.xi(a.a,a.b,0,1) +s=o.p4.a8(0,r).a +q=s[0] +p=o.p1 +return new A.j(q-p.a,s[1]-p.b)}, +hQ(a,b,c,d){var s +if(this.k3.a==null)return!1 +s=this.Gv(b) +if(s==null)return!1 +return this.nL(a,s,!0,d)}, +Lv(){var s,r +if(this.p3==null)return null +s=this.p2 +r=A.nL(-s.a,-s.b,0) +s=this.p3 +s.toString +r.dZ(0,s) +return r}, +a9y(){var s,r,q,p,o,n,m=this +m.p3=null +s=m.k3.a +if(s==null)return +r=t.KV +q=A.b([s],r) +p=A.b([m],r) +A.a8p(s,m,q,p) +o=A.aI_(q) +s.qB(null,o) +r=m.p1 +o.dC(r.a,r.b,0,1) +n=A.aI_(p) +if(n.hM(n)===0)return +n.dZ(0,o) +m.p3=n +m.R8=!0}, +gqy(){return!0}, +ij(a){var s,r=this,q=r.k3.a +if(q==null){r.p2=r.p3=null +r.R8=!0 +r.sfW(null) +return}r.a9y() +q=r.p3 +s=t.qf +if(q!=null){r.p2=r.ok +r.sfW(a.wq(q.a,s.a(r.x))) +r.iT(a) +a.dB()}else{r.p2=null +q=r.ok +r.sfW(a.wq(A.nL(q.a,q.b,0).a,s.a(r.x))) +r.iT(a) +a.dB()}r.R8=!0}, +qB(a,b){var s=this.p3 +if(s!=null)b.dZ(0,s) +else{s=this.ok +b.dZ(0,A.nL(s.a,s.b,0))}}} +A.yz.prototype={ +hQ(a,b,c,d){var s,r,q=this,p=q.nL(a,b,!0,d),o=a.a,n=o.length +if(n!==0)return p +n=q.k4 +if(n!=null){s=q.ok +r=s.a +s=s.b +n=!new A.x(r,s,r+n.a,s+n.b).p(0,b)}else n=!1 +if(n)return p +if(A.bZ(q.$ti.c)===A.bZ(d))o.push(new A.yA(d.a(q.k3),b.a0(0,q.ok),d.i("yA<0>"))) +return p}} +A.Wa.prototype={} +A.WJ.prototype={ +auW(a){var s=this.a +this.a=a +return s}, +k(a){var s="#",r=A.bi(this.b),q=this.a.a +return s+A.bi(this)+"("+("latestEvent: "+(s+r))+", "+("annotations: [list of "+q+"]")+")"}} +A.WK.prototype={ +gjJ(a){var s=this.c +return s.gjJ(s)}} +A.Ov.prototype={ +QA(a){var s,r,q,p,o,n,m=t._h,l=A.w(m,t.xV) +for(s=a.a,r=s.length,q=0;q") +this.b.aq0(a.gjJ(0),a.d,A.v5(new A.bs(s,r),new A.aeZ(),r.i("o.E"),t.Pb))}, +avN(a,b){var s,r,q,p,o,n=this +if(a.gcK(a)!==B.bG&&a.gcK(a)!==B.b4)return +if(t.ks.b(a))return +$label0$0:{if(t.PB.b(a)){s=A.a9S() +break $label0$0}s=b==null?n.a.$2(a.gby(a),a.grW()):b +break $label0$0}r=a.gjJ(a) +q=n.c +p=q.h(0,r) +if(!A.aV6(p,a))return +o=q.a +new A.af1(n,p,a,r,s).$0() +if(o!==0!==(q.a!==0))n.ak()}, +avI(){new A.af_(this).$0()}} +A.aeZ.prototype={ +$1(a){return a.gWe(a)}, +$S:327} +A.af1.prototype={ +$0(){var s=this +new A.af0(s.a,s.b,s.c,s.d,s.e).$0()}, +$S:0} +A.af0.prototype={ +$0(){var s,r,q,p,o,n=this,m=n.b +if(m==null){s=n.c +if(t.PB.b(s))return +n.a.c.m(0,n.d,new A.WJ(A.w(t._h,t.xV),s))}else{s=n.c +if(t.PB.b(s))n.a.c.F(0,s.gjJ(s))}r=n.a +q=r.c.h(0,n.d) +if(q==null){m.toString +q=m}p=q.b +q.b=s +o=t.PB.b(s)?A.w(t._h,t.xV):r.QA(n.e) +r.Q1(new A.WK(q.auW(o),o,p,s))}, +$S:0} +A.af_.prototype={ +$0(){var s,r,q,p,o,n +for(s=this.a,r=s.c,r=new A.dl(r,r.r,r.e);r.u();){q=r.d +p=q.b +o=s.a9O(q) +n=q.a +q.a=o +s.Q1(new A.WK(n,o,p,null))}}, +$S:0} +A.aeX.prototype={ +$2(a,b){var s +if(a.gLb()&&!this.a.az(0,a)){s=a.gYX(a) +if(s!=null)s.$1(this.b.bp(this.c.h(0,a)))}}, +$S:328} +A.aeY.prototype={ +$1(a){return!this.a.az(0,a)}, +$S:329} +A.a0L.prototype={} +A.cx.prototype={ +ai(a){}, +k(a){return""}} +A.r2.prototype={ +dm(a,b){var s,r=this +if(a.geQ()){r.tj() +if(!a.cy){s=a.ay +s===$&&A.a() +s=!s}else s=!0 +if(s)A.aJj(a,!0) +else if(a.db)A.aVA(a) +s=a.ch.a +s.toString +t.gY.a(s) +s.sck(0,b) +s.f6(0) +r.a.Hd(0,s)}else{s=a.ay +s===$&&A.a() +if(s){a.ch.saB(0,null) +a.FQ(r,b)}else a.FQ(r,b)}}, +gcg(a){var s +if(this.e==null)this.Gl() +s=this.e +s.toString +return s}, +Gl(){var s,r=this +r.c=new A.Pb(r.b,A.w(t.S,t.M),A.ah()) +$.m1.toString +$.a3() +s=new A.lf() +r.d=s +r.e=A.a4e(s,null) +s=r.c +s.toString +r.a.Hd(0,s)}, +tj(){var s,r=this +if(r.e==null)return +s=r.c +s.toString +s.sZd(r.d.oK()) +r.e=r.d=r.c=null}, +LZ(){if(this.c==null)this.Gl() +var s=this.c +if(!s.ch){s.ch=!0 +s.f5()}}, +rC(a,b,c,d){var s +if(a.ax!=null)a.KK() +this.tj() +a.f6(0) +this.a.Hd(0,a) +s=new A.r2(a,d==null?this.b:d) +b.$2(s,c) +s.tj()}, +lS(a,b,c){return this.rC(a,b,c,null)}, +lQ(a,b,c,d,e,f){var s,r,q=this +if(e===B.n){d.$2(q,b) +return null}s=c.dj(b) +if(a){r=f==null?new A.ze(B.B,A.w(t.S,t.M),A.ah()):f +if(!s.j(0,r.k3)){r.k3=s +r.f5()}if(e!==r.k4){r.k4=e +r.f5()}q.rC(r,d,b,s) +return r}else{q.amR(s,e,s,new A.ag7(q,d,b)) +return null}}, +Zs(a,b,c,d,e,f,g){var s,r,q,p=this +if(f===B.n){e.$2(p,b) +return null}s=c.dj(b) +r=d.dj(b) +if(a){q=g==null?new A.zd(B.bN,A.w(t.S,t.M),A.ah()):g +if(!r.j(0,q.k3)){q.k3=r +q.f5()}if(f!==q.k4){q.k4=f +q.f5()}p.rC(q,e,b,s) +return q}else{p.amQ(r,f,s,new A.ag6(p,e,b)) +return null}}, +Kx(a,b,c,d,e,f,g){var s,r,q,p=this +if(f===B.n){e.$2(p,b) +return null}s=c.dj(b) +r=A.aIF(d,b) +if(a){q=g==null?new A.zc(B.bN,A.w(t.S,t.M),A.ah()):g +if(r!==q.k3){q.k3=r +q.f5()}if(f!==q.k4){q.k4=f +q.f5()}p.rC(q,e,b,s) +return q}else{p.amO(r,f,s,new A.ag5(p,e,b)) +return null}}, +aue(a,b,c,d,e,f){return this.Kx(a,b,c,d,e,B.bN,f)}, +wr(a,b,c,d,e){var s,r=this,q=b.a,p=b.b,o=A.nL(q,p,0) +o.dZ(0,c) +o.dC(-q,-p,0,1) +if(a){s=e==null?A.aKC(null):e +s.sc2(0,o) +r.rC(s,d,b,A.aIV(o,r.b)) +return s}else{q=r.gcg(0) +J.ap(q.a.save()) +q.a8(0,o.a) +d.$2(r,b) +r.gcg(0).a.restore() +return null}}, +Zt(a,b,c,d){var s=d==null?A.aDG():d +s.sdH(0,b) +s.sck(0,a) +this.lS(s,c,B.i) +return s}, +k(a){return"PaintingContext#"+A.f5(this)+"(layer: "+this.a.k(0)+", canvas bounds: "+this.b.k(0)+")"}} +A.ag7.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.ag6.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.ag5.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.lh.prototype={} +A.lQ.prototype={ +rJ(){var s=this.cx +if(s!=null)s.a.IE()}, +sKP(a){var s=this.e +if(s==a)return +if(s!=null)s.ai(0) +this.e=a +if(a!=null)a.av(this)}, +X6(){var s,r,q,p,o,n,m,l,k,j,i,h=this +try{for(o=t.TT;n=h.r,n.length!==0;){s=n +h.r=A.b([],o) +J.a2o(s,new A.age()) +for(r=0;r")) +i.xD(m,l,k,j.c) +B.b.O(n,i) +break}}q=J.aK(s,r) +if(q.z&&q.y===h)q.aeO()}h.f=!1}for(o=h.CW,o=A.cl(o,o.r,A.n(o).c),n=o.$ti.c;o.u();){m=o.d +p=m==null?n.a(m):m +p.X6()}}finally{h.f=!1}}, +a9r(a){try{a.$0()}finally{this.f=!0}}, +X5(){var s,r,q,p,o=this.z +B.b.fa(o,new A.agd()) +for(s=o.length,r=0;r") +l=A.a6(new A.aY(n,new A.agg(g),m),m.i("o.E")) +B.b.fa(l,new A.agh()) +s=l +n.a5(0) +for(n=s,m=n.length,k=0;k"),n=new A.cc(n,m),n=new A.bd(n,n.gv(0),m.i("bd")),j=t.S,m=m.i("ax.E");n.u();){i=n.d +p=i==null?m.a(i):i +if(p.geM().glP())continue +i=p.geM() +if(!i.f)i.DZ(A.aP(j)) +else i.a78(A.aP(j))}g.at.a0F() +for(n=g.CW,n=A.cl(n,n.r,A.n(n).c),m=n.$ti.c;n.u();){j=n.d +o=j==null?m.a(j):j +o.X8()}}finally{}}, +av(a){var s,r,q,p=this +p.cx=a +a.Z(0,p.gUn()) +p.Uo() +for(s=p.CW,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.u();){q=s.d;(q==null?r.a(q):q).av(a)}}, +ai(a){var s,r,q,p=this +p.cx.J(0,p.gUn()) +p.cx=null +for(s=p.CW,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.u();){q=s.d;(q==null?r.a(q):q).ai(0)}}} +A.age.prototype={ +$2(a,b){return a.c-b.c}, +$S:80} +A.agd.prototype={ +$2(a,b){return a.c-b.c}, +$S:80} +A.agf.prototype={ +$2(a,b){return b.c-a.c}, +$S:80} +A.agg.prototype={ +$1(a){return!a.z&&a.y===this.a}, +$S:172} +A.agh.prototype={ +$2(a,b){return a.c-b.c}, +$S:80} +A.t.prototype={ +aF(){var s=this +s.cx=s.geQ()||s.gkp() +s.ay=s.geQ()}, +l(){this.ch.saB(0,null)}, +eg(a){if(!(a.b instanceof A.cx))a.b=new A.cx()}, +kT(a){var s=a.c,r=this.c +if(s<=r){a.c=r+1 +a.fz()}}, +fz(){}, +gaT(a){return this.d}, +gjp(){return this.d}, +ik(a){var s,r=this +r.eg(a) +r.a_() +r.kL() +r.aY() +a.d=r +s=r.y +if(s!=null)a.av(s) +r.kT(a)}, +mS(a){var s=this,r=a.Q +if(r===!1)a.Q=null +a.b.ai(0) +a.d=a.b=null +if(s.y!=null)a.ai(0) +s.a_() +s.kL() +s.aY()}, +bg(a){}, +yP(a,b,c){A.d6(new A.bO(b,c,"rendering library",A.br("during "+a+"()"),new A.ai_(this),!1))}, +av(a){var s,r=this +r.y=a +if(r.z&&r.Q!=null){r.z=!1 +r.a_()}if(r.CW){r.CW=!1 +r.kL()}if(r.cy&&r.ch.a!=null){r.cy=!1 +r.aC()}s=r.geM() +if(s.ax.gen().a)s=s.glP()||!s.f +else s=!1 +if(s)r.aY()}, +ai(a){this.y=null}, +gW(){var s=this.at +if(s==null)throw A.e(A.a5("A RenderObject does not have any constraints before it has been laid out.")) +return s}, +a_(){var s,r,q,p,o=this +if(o.z)return +o.z=!0 +s=o.y +r=null +q=!1 +if(s!=null){p=o.Q +q=p===!0 +r=s}if(q){r.r.push(o) +r.rJ()}else if(o.gaT(o)!=null)o.JX()}, +JX(){var s,r=this +r.z=!0 +s=r.gaT(r) +s.toString +if(!r.as)s.a_()}, +aeO(){var s,r,q,p=this +try{p.bx() +p.aY()}catch(q){s=A.a1(q) +r=A.aH(q) +p.yP("performLayout",s,r)}p.z=!1 +p.aC()}, +c3(a,b){var s,r,q,p,o,n=this +n.Q=!b||n.gkc()||a.gYu()||n.gaT(n)==null +if(!n.z&&a.j(0,n.at))return +n.at=a +if(n.gkc())try{n.pl()}catch(o){s=A.a1(o) +r=A.aH(o) +n.yP("performResize",s,r)}try{n.bx() +n.aY()}catch(o){q=A.a1(o) +p=A.aH(o) +n.yP("performLayout",q,p)}n.z=!1 +n.aC()}, +hp(a){return this.c3(a,!1)}, +gkc(){return!1}, +Bi(a,b){var s=this +s.as=!0 +try{s.y.a9r(new A.ai3(s,a,b))}finally{s.as=!1}}, +geQ(){return!1}, +gkp(){return!1}, +rS(a){return a==null?A.aJb(B.i):a}, +gaB(a){return this.ch.a}, +kL(){var s,r,q,p=this +if(p.CW)return +s=p.CW=!0 +r=p.gaT(p) +if(r!=null){if(r.CW)return +q=p.ay +q===$&&A.a() +if((q?!p.geQ():s)&&!r.geQ()){r.kL() +return}}s=p.y +if(s!=null)s.z.push(p)}, +TT(){var s,r,q=this +if(!q.CW)return +s=q.cx +s===$&&A.a() +q.cx=!1 +q.bg(new A.ai0(q)) +if(q.geQ()||q.gkp())q.cx=!0 +if(!q.geQ()){r=q.ay +r===$&&A.a()}else r=!1 +if(r){q.db=q.cy=!1 +s=q.y +if(s!=null)B.b.k0(s.Q,new A.ai1(q)) +q.CW=!1 +q.aC()}else if(s!==q.cx){q.CW=!1 +q.aC()}else q.CW=!1}, +aC(){var s,r=this +if(r.cy)return +r.cy=!0 +if(r.geQ()){s=r.ay +s===$&&A.a()}else s=!1 +if(s){s=r.y +if(s!=null){s.Q.push(r) +r.y.rJ()}}else if(r.gaT(r)!=null)r.gaT(r).aC() +else{s=r.y +if(s!=null)s.rJ()}}, +YK(){var s,r=this +if(r.db||r.cy)return +r.db=!0 +if(r.geQ()){s=r.ay +s===$&&A.a()}else s=!1 +if(s){s=r.y +if(s!=null){s.Q.push(r) +r.y.rJ()}}else r.aC()}, +ajM(){var s,r=this.gaT(this) +while(r!=null){if(r.geQ()){s=r.ch.a +if(s==null)break +if(s.y!=null)break +r.cy=!0}r=r.gaT(r)}}, +FQ(a,b){var s,r,q,p=this +if(p.z)return +p.db=p.cy=!1 +p.ay=p.geQ() +try{p.aA(a,b)}catch(q){s=A.a1(q) +r=A.aH(q) +p.yP("paint",s,r)}}, +aA(a,b){}, +cP(a,b){}, +pi(a){return!0}, +aM(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=" are not in the same render tree.",a=a1==null +if(a){s=d.y.e +s.toString +r=s}else r=a1 +for(s=t.TT,q=d,p=c,o=p;q!==r;){n=q.c +m=r.c +if(n>=m){l=q.gaT(q) +if(l==null)l=A.a0(A.je(A.k(a1)+" and "+d.k(0)+b)) +if(o==null){o=A.b([d],s) +k=o}else k=o +k.push(l) +q=l}if(n<=m){j=r.gaT(r) +if(j==null)j=A.a0(A.je(A.k(a1)+" and "+d.k(0)+b)) +if(p==null){a1.toString +p=A.b([a1],s) +k=p}else k=p +k.push(j) +r=j}}if(o!=null){i=new A.b6(new Float64Array(16)) +i.dF() +s=o.length +h=a?s-2:s-1 +for(g=h;g>0;g=f){f=g-1 +o[g].cP(o[f],i)}}else i=c +if(p==null){if(i==null){a=new A.b6(new Float64Array(16)) +a.dF()}else a=i +return a}e=new A.b6(new Float64Array(16)) +e.dF() +for(g=p.length-1;g>0;g=f){f=g-1 +p[g].cP(p[f],e)}if(e.hM(e)===0)return new A.b6(new Float64Array(16)) +if(i==null)a=c +else{i.dZ(0,e) +a=i}return a==null?e:a}, +mN(a){return null}, +Ic(a){return null}, +x8(){this.y.ch.E(0,this) +this.y.rJ()}, +dU(a){}, +ta(a){var s,r=this +if(r.y.at==null)return +s=r.geM().r +if(s!=null&&!s.x)s.a0E(a) +else if(r.gaT(r)!=null)r.gaT(r).ta(a)}, +or(){var s=this.geM() +s.f=!1 +s.d=s.at=s.as=s.r=null +s.e=!1 +B.b.a5(s.x) +B.b.a5(s.z) +B.b.a5(s.y) +B.b.a5(s.w) +s.ax.a5(0) +this.bg(new A.ai2())}, +aY(){var s=this.y +if(s==null||s.at==null)return +this.geM().asB()}, +geM(){var s,r,q,p,o=this,n=o.dx +if(n===$){s=A.b([],t.QF) +r=A.b([],t.bd) +q=A.b([],t.z_) +p=A.b([],t.fQ) +o.dx!==$&&A.aA() +n=o.dx=new A.fX(o,s,r,q,p,A.w(t.bu,t.Ho),new A.ayk(o))}return n}, +eS(a){this.bg(a)}, +qC(a,b,c){a.lY(0,t.V1.a(c),b)}, +kF(a,b){}, +d5(){return"#"+A.bi(this)}, +k(a){return this.d5()}, +eK(a,b,c,d){var s=this.gaT(this) +if(s!=null)s.eK(a,b==null?this:b,c,d)}, +td(){return this.eK(B.bc,null,B.F,null)}, +nF(a){return this.eK(B.bc,null,B.F,a)}, +pG(a,b,c){return this.eK(a,null,b,c)}, +nG(a,b){return this.eK(B.bc,a,B.F,b)}, +$iar:1} +A.ai_.prototype={ +$0(){var s=A.b([],t.D),r=this.a +s.push(A.aCT("The following RenderObject was being processed when the exception was fired",B.G5,r)) +s.push(A.aCT("RenderObject",B.G6,r)) +return s}, +$S:21} +A.ai3.prototype={ +$0(){this.b.$1(this.c.a(this.a.gW()))}, +$S:0} +A.ai0.prototype={ +$1(a){var s +a.TT() +s=a.cx +s===$&&A.a() +if(s)this.a.cx=!0}, +$S:12} +A.ai1.prototype={ +$1(a){return a===this.a}, +$S:172} +A.ai2.prototype={ +$1(a){a.or()}, +$S:12} +A.aN.prototype={ +saU(a){var s=this,r=s.D$ +if(r!=null)s.mS(r) +s.D$=a +if(a!=null)s.ik(a)}, +fz(){var s=this.D$ +if(s!=null)this.kT(s)}, +bg(a){var s=this.D$ +if(s!=null)a.$1(s)}} +A.ahY.prototype={ +avf(){this.Bi(new A.ahZ(this),t.Nq) +this.IN$=!1}} +A.ahZ.prototype={ +$1(a){return this.a.JP()}, +$S:10} +A.dA.prototype={$icx:1} +A.a9.prototype={ +guV(){return this.c0$}, +Fp(a,b){var s,r,q,p=this,o=a.b +o.toString +s=A.n(p).i("a9.1") +s.a(o);++p.c0$ +if(b==null){o=o.am$=p.a4$ +if(o!=null){o=o.b +o.toString +s.a(o).ca$=a}p.a4$=a +if(p.c6$==null)p.c6$=a}else{r=b.b +r.toString +s.a(r) +q=r.am$ +if(q==null){o.ca$=b +p.c6$=r.am$=a}else{o.am$=q +o.ca$=b +o=q.b +o.toString +s.a(o).ca$=r.am$=a}}}, +Jx(a,b,c){this.ik(b) +this.Fp(b,c)}, +O(a,b){}, +FX(a){var s,r,q,p,o=this,n=a.b +n.toString +s=A.n(o).i("a9.1") +s.a(n) +r=n.ca$ +q=n.am$ +if(r==null)o.a4$=q +else{p=r.b +p.toString +s.a(p).am$=q}q=n.am$ +if(q==null)o.c6$=r +else{q=q.b +q.toString +s.a(q).ca$=r}n.am$=n.ca$=null;--o.c0$}, +F(a,b){this.FX(b) +this.mS(b)}, +wb(a,b){var s=this,r=a.b +r.toString +if(A.n(s).i("a9.1").a(r).ca$==b)return +s.FX(a) +s.Fp(a,b) +s.a_()}, +fz(){var s,r,q,p=this.a4$ +for(s=A.n(this).i("a9.1");p!=null;){r=p.c +q=this.c +if(r<=q){p.c=q+1 +p.fz()}r=p.b +r.toString +p=s.a(r).am$}}, +bg(a){var s,r,q=this.a4$ +for(s=A.n(this).i("a9.1");q!=null;){a.$1(q) +r=q.b +r.toString +q=s.a(r).am$}}, +gapC(a){return this.a4$}, +amH(a){var s=a.b +s.toString +return A.n(this).i("a9.1").a(s).ca$}, +amG(a){var s=a.b +s.toString +return A.n(this).i("a9.1").a(s).am$}} +A.vE.prototype={ +xC(){this.a_()}, +aiR(){if(this.AG$)return +this.AG$=!0 +$.bC.x6(new A.ahD(this))}} +A.ahD.prototype={ +$1(a){var s=this.a +s.AG$=!1 +if(s.y!=null)s.xC()}, +$S:6} +A.QR.prototype={ +sZq(a){var s=this,r=s.c5$ +r===$&&A.a() +if(r===a)return +s.c5$=a +s.TK(a) +s.aY()}, +san5(a){var s=this.AA$ +s===$&&A.a() +if(s===a)return +this.AA$=a +this.aY()}, +sapj(a){var s=this.AB$ +s===$&&A.a() +if(s===a)return +this.AB$=a +this.aY()}, +sape(a){var s=this.AC$ +s===$&&A.a() +if(!s)return +this.AC$=!1 +this.aY()}, +samh(a){var s=this.AD$ +s===$&&A.a() +if(!s)return +this.AD$=!1 +this.aY()}, +sasn(a){if(J.d(this.AE$,a))return +this.AE$=a +this.aY()}, +TK(a){var s=this,r=a.k1 +r=a.id +r=r==null?null:new A.cW(r,B.aI) +s.WT$=r +r=a.k3 +r=a.k2 +r=r==null?null:new A.cW(r,B.aI) +s.r4$=r +s.II$=null +s.c5$===$&&A.a() +s.WU$=null +s.WV$=null}, +sbC(a){if(this.AF$==a)return +this.AF$=a +this.aY()}, +ahw(){var s=this.c5$ +s===$&&A.a() +s=s.xr +if(s!=null)s.$0()}, +ahh(){var s=this.c5$ +s===$&&A.a() +s=s.y1 +if(s!=null)s.$0()}, +ahd(){var s=this.c5$ +s===$&&A.a() +s=s.ao +if(s!=null)s.$0()}, +ah5(){var s=this.c5$ +s===$&&A.a() +s=s.a2 +if(s!=null)s.$0()}, +ah7(){var s=this.c5$ +s===$&&A.a() +s=s.S +if(s!=null)s.$0()}, +ahj(){var s=this.c5$ +s===$&&A.a() +s=s.a9 +if(s!=null)s.$0()}, +ah9(){var s=this.c5$ +s===$&&A.a() +s=s.bf +if(s!=null)s.$0()}, +ahb(){var s=this.c5$ +s===$&&A.a() +s=s.br +if(s!=null)s.$0()}, +ahf(){var s=this.c5$ +s===$&&A.a() +s=s.bF +if(s!=null)s.$0()}} +A.I9.prototype={ +j(a,b){var s=this +if(b==null)return!1 +return b instanceof A.I9&&b.a===s.a&&b.b===s.b&&b.c===s.c&&J.d(b.e,s.e)&&A.yb(b.d,s.d)}, +gB(a){var s=this,r=s.d +return A.T(s.a,s.b,s.c,s.e,A.aVt(r==null?B.QJ:r),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.ayk.prototype={ +gen(){var s=this.d +return s==null?this.gbs():s}, +gbs(){var s,r=this +if(r.c==null){s=A.hk() +r.d=r.c=s +r.a.dU(s)}s=r.c +s.toString +return s}, +wJ(a){var s,r,q=this +if(!q.b){s=q.gbs() +r=A.hk() +r.a=s.a +r.e=s.e +r.f=s.f +r.r=s.r +r.x1=s.x1 +r.S=s.S +r.p3=s.p3 +r.xr=s.xr +r.y2=s.y2 +r.P=s.P +r.M=s.M +r.n=s.n +r.I=s.I +r.a2=s.a2 +r.X=s.X +r.ao=s.ao +r.bF=s.bF +r.au=s.au +r.aX=s.aX +r.b9=s.b9 +r.aL=s.aL +r.x=s.x +r.p4=s.p4 +r.RG=s.RG +r.R8=s.R8 +r.rx=s.rx +r.ry=s.ry +r.to=s.to +r.w.O(0,s.w) +r.x2.O(0,s.x2) +r.d=s.d +r.ab=s.ab +r.a9=s.a9 +r.y1=s.y1 +r.bO=s.bO +r.bf=s.bf +r.br=s.br +q.d=r +q.b=!0}s=q.d +s.toString +a.$1(s)}, +alw(a){this.wJ(new A.ayl(a))}, +a5(a){this.b=!1 +this.c=this.d=null}} +A.ayl.prototype={ +$1(a){this.a.aj(0,a.galv())}, +$S:59} +A.dE.prototype={} +A.Gl.prototype={ +JY(a){}, +giY(){return this.b}, +glO(){return this.c}} +A.fX.prototype={ +glO(){return this}, +glP(){if(this.b.gjp()==null)return!1 +return this.as==null}, +giY(){return this.gnE()?null:this.ax.gen()}, +gzY(){var s=this.ax +return s.gen().r||this.e||s.gen().a||this.b.gjp()==null}, +gnE(){var s=this +if(s.ax.gen().a)return!0 +if(s.b.gjp()==null)return!0 +if(!s.gzY())return!1 +return s.as.c||s.c}, +gYa(){var s,r=this,q=r.d +if(q!=null)return q +q=r.ax +s=q.gen().f +r.d=s +if(s)return!0 +if(q.gen().a)return!1 +r.b.eS(new A.axb(r)) +q=r.d +q.toString +return q}, +a0Z(a){return a.garW()}, +cc(){var s,r,q,p,o,n,m,l=this,k=l.f=!1 +if(!l.glP()?!l.gnE():k)return +for(k=l.z,s=k.length,r=t.ju,q=0;q")),p=p.c;n.u();){m=p.a(o.gN(o)) +if(m.glP())continue +if(!m.gnE())m.cc()}}, +Cx(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.ax +e.d=e.gbs() +e.b=!1 +s=g.aaK() +r=!0 +if(g.b.gjp()!=null)if(!e.gen().e){if(!g.gzY()){q=g.as +q=q==null?f:q.c +q=q!==!1}else q=!1 +r=q}q=g.as +q=q==null?f:q.b +p=q===!0||e.gen().d +o=e.gen().b +if(o==null){q=g.as +o=q==null?f:q.e}q=g.z +B.b.a5(q) +n=g.x +B.b.a5(n) +m=g.as +m=m==null?f:m.a +l=g.a7P(new A.I9(m===!0||e.gen().x1,p,r,s,o)) +k=l.a +B.b.O(n,k) +B.b.O(q,l.b) +j=g.y +B.b.a5(j) +if(g.gzY()){g.FA(n,!0) +B.b.aj(q,g.gafa()) +e.alw(new A.cd(new A.ae(n,new A.axc(),A.a2(n).i("ae<1,dM?>")),t.t5)) +B.b.a5(n) +n.push(g) +for(n=B.b.gag(k),m=new A.kQ(n,t.Zw),k=t.ju;m.u();){i=k.a(n.gN(0)) +if(i.gnE())j.push(i) +else{B.b.O(j,i.y) +B.b.O(q,i.z)}}q=g.as +h=q==null?f:q.d +if(h!=null)e.wJ(new A.axd(h)) +if(p!==e.gen().d)e.wJ(new A.axe(p)) +if(!J.d(o,e.gen().c))e.wJ(new A.axf(o))}}, +PC(){var s=A.b([],t.z_) +this.b.eS(new A.ax5(s)) +return s}, +aaK(){var s,r,q=this +if(q.gzY()){s=q.ax.gbs().bF +return s==null?null:s.hv(0)}s=q.ax +r=s.gbs().bF!=null?s.gbs().bF.hv(0):null +s=q.as +if((s==null?null:s.d)!=null)if(r==null)r=s.d +else{s=s.d +s.toString +r.O(0,s)}return r}, +a7P(a1){var s,r,q,p,o,n,m,l,k,j,i=this,h=A.b([],t.bd),g=A.b([],t.fQ),f=A.b([],t.q1),e=i.ax.gen().p2,d=e!=null,c=t.vC,b=A.w(t.VP,c),a=d&&a1.c,a0=a?new A.I9(a1.a,a1.b,!1,a1.d,a1.e):a1 +for(s=i.PC(),r=s.length,q=0;q"))) +for(r=j.b,o=r.length,q=0;q")),r).gag(0),new A.ax9(),B.eD,r.i("ki")),s=j.a,m=t.ju;r.u();){l=r.d +if(l==null)l=m.a(l) +l.U3(A.aEG(l,k,q,p,s))}}, +U3(a){var s,r,q,p,o=this,n=o.at +o.at=a +o.cc() +if(n!=null){s=o.ax +if(!s.gbs().ao.ax){r=o.as +r=r==null?null:r.a +q=r!==!0&&a.e}else q=!0 +r=n.d +p=a.d +p=new A.I(r.c-r.a,r.d-r.b).j(0,new A.I(p.c-p.a,p.d-p.b)) +s=s.gen().ao.ax===q +if(p&&s)return}o.TP()}, +DZ(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.r +if(j!=null)for(s=l.w,r=s.length,q=0;q"),j=k.i("o.E"),i=a4.b,h=0;h")).gag(0),r=b.a,q=b.b,b=b.c;s.u();){p=s.d +for(o=J.bb(p.b),n=c,m=n,l=m;o.u();){k=o.gN(o) +if(k.glO().gnE())continue +j=A.aEG(k.glO(),this,b,q,r) +i=j.b +h=i==null +g=h?c:i.dM(k.glO().b.ghB()) +if(g==null)g=k.glO().b.ghB() +k=j.a +f=A.dK(k,g) +l=l==null?c:l.fX(f) +if(l==null)l=f +if(!h){e=A.dK(k,i) +m=m==null?c:m.dM(e) +if(m==null)m=e}i=j.c +if(i!=null){e=A.dK(k,i) +n=n==null?c:n.dM(e) +if(n==null)n=e}}d=p.a +l.toString +if(!d.e.j(0,l)){d.e=l +d.iM()}if(!A.aIW(d.d,c)){d.d=null +d.iM()}d.f=m +d.r=n}}, +asB(){var s,r,q,p,o,n,m,l,k=this,j=k.r!=null +if(j){s=k.ax.c +s=s==null?null:s.a +r=s===!0}else r=!1 +s=k.ax +s.a5(0) +k.e=!1 +q=s.gen().p2!=null +p=s.gen().a&&r +o=k.b +n=o +for(;;){if(n.gjp()!=null)s=q||!p +else s=!1 +if(!s)break +if(n!==o&&n.geM().glP()&&!q)break +s=n.geM() +s.d=s.as=s.at=null +if(p)q=!1 +s=s.ax +m=s.d +if(m==null){if(s.c==null){m=A.hk() +s.d=s.c=m +s.a.dU(m)}s=s.c +s.toString}else s=m +q=B.e0.t6(q,s.p2!=null) +n=n.gjp() +s=n.geM() +m=s.ax +l=m.d +if(l==null){if(m.c==null){l=A.hk() +m.d=m.c=l +m.a.dU(l)}m=m.c +m.toString}else m=l +p=m.a&&s.f}if(n!==o&&j&&n.geM().glP())o.y.ch.F(0,o) +if(!n.geM().glP()){j=o.y +if(j!=null)if(j.ch.E(0,n))o.y.rJ()}}, +FA(a,b){var s,r,q,p,o,n,m,l,k=A.aP(t.vC) +for(s=J.aE(a),r=this.ax,q=r.a,p=0;ph){d=c0[h].dy +d=d!=null&&d.p(0,new A.lR(i,b7))}else d=!1 +if(!d)break +b=c0[h] +d=s.b +d.toString +if(m.a(d).a!=null)b5.push(b);++h}b7=s.b +b7.toString +s=n.a(b7).am$;++i}else{a=o.a(A.t.prototype.gW.call(b3)) +b6.i2(b3.bO) +a0=a.b +a0=b3.ab||b3.au===B.aA?a0:1/0 +b6.ix(a0,a.a) +a1=b6.nr(new A.fT(j,e,B.j,!1,c,d),B.fX,B.cV) +if(a1.length===0)continue +d=B.b.ga3(a1) +a2=new A.x(d.a,d.b,d.c,d.d) +a3=B.b.ga3(a1).e +for(d=A.a2(a1),c=d.i("i2<1>"),a=new A.i2(a1,1,b4,c),a.xD(a1,1,b4,d.c),a=new A.bd(a,a.gv(0),c.i("bd")),c=c.i("ax.E");a.u();){d=a.d +if(d==null)d=c.a(d) +a2=a2.fX(new A.x(d.a,d.b,d.c,d.d)) +a3=d.e}d=a2.a +c=Math.max(0,d) +a=a2.b +a0=Math.max(0,a) +d=Math.min(a2.c-d,o.a(A.t.prototype.gW.call(b3)).b) +a=Math.min(a2.d-a,o.a(A.t.prototype.gW.call(b3)).d) +a4=Math.floor(c)-4 +a5=Math.floor(a0)-4 +d=Math.ceil(c+d)+4 +a=Math.ceil(a0+a)+4 +a6=new A.x(a4,a5,d,a) +a7=A.hk() +a8=k+1 +a7.p3=new A.r0(k,b4) +a7.r=!0 +a7.S=l +a7.xr="" +c=f.b +b7=c==null?b7:c +a7.y2=new A.cW(b7,f.r) +$label0$1:{break $label0$1}b7=b8.r +if(b7!=null){a9=b7.dM(a6) +if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a) +else b7=!1 +a7.ao=a7.ao.HX(b7)}b7=b3.br +d=b7==null?b4:b7.a!==0 +if(d===!0){b7.toString +b0=new A.bs(b7,A.n(b7).i("bs<1>")).gag(0) +if(!b0.u())A.a0(A.cj()) +b7=b7.F(0,b0.gN(0)) +b7.toString +b1=b7}else{b2=new A.kO() +b1=A.Dx(b2,b3.agZ(b2))}b1.a_q(0,a7) +if(!b1.e.j(0,a6)){b1.e=a6 +b1.iM()}b7=b1.a +b7.toString +r.m(0,b7,b1) +b5.push(b1) +k=a8 +l=a3}}b3.br=r +b8.lY(0,b5,b9)}, +agZ(a){return new A.ai4(this,a)}, +or(){this.Dy() +this.br=null}} +A.ai7.prototype={ +$1(a){return a.y=a.z=null}, +$S:174} +A.ai9.prototype={ +$1(a){var s=a.x +s===$&&A.a() +return s.c!==B.cM}, +$S:343} +A.ai6.prototype={ +$2(a,b){return new A.I(a.ap(B.aK,1/0,a.gbE()),0)}, +$S:51} +A.ai5.prototype={ +$2(a,b){return new A.I(a.ap(B.ab,1/0,a.gbj()),0)}, +$S:51} +A.ai8.prototype={ +$1(a){return a.y=a.z=null}, +$S:174} +A.ai4.prototype={ +$0(){var s=this.a +s.nG(s,s.br.h(0,this.b).e)}, +$S:0} +A.l_.prototype={ +gq(a){var s=this.x +s===$&&A.a() +return s}, +ah_(){var s=this,r=s.PN(),q=s.x +q===$&&A.a() +if(q.j(0,r))return +s.x=r +s.ak()}, +PN(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null,a0=b.d +if(a0==null||b.e==null)return B.zH +s=a0.a +r=b.e.a +a0=b.b +q=a0.tS(new A.ao(s,B.j)) +p=s===r +o=p?q:a0.tS(new A.ao(r,B.j)) +n=a0.n +m=n.w +m.toString +l=s>r!==(B.b_===m) +k=A.c8(B.j,s,r,!1) +j=A.b([],t.AO) +for(a0=a0.m_(k),m=a0.length,i=0;ir!==s>r){p=sr?a.a:d}else if(e!=null)p=c.ar +if(s!==r&&n!==s>r){o=b.$1(e) +m.e=n?o.a:o.b}}p=null}return p==null?c:p}, +Uj(a,b,c,d,e){var s,r,q,p,o,n,m,l=this +if(a!=null)if(l.f&&d!=null&&e!=null){s=c.a +r=d.a +q=e.a +if(s!==r&&r>q!==sr?a.a:e}else if(d!=null)p=c.ae.a +if(m!==s=p&&m.a.a>p}else s=!0}else s=!1 +if(s)m=null +l=k.ex(c?k.Uj(m,b,n,j,i):k.Um(m,b,n,j,i)) +if(c)k.e=l +else k.d=l +s=l.a +p=k.a +if(s===p.b)return B.G +if(s===p.a)return B.M +return A.Dt(k.gig(),q)}, +akY(a,b){var s,r,q,p,o,n,m=this +if(b)m.e=null +else m.d=null +s=m.b +r=s.aM(0,null) +r.hM(r) +q=A.bj(r,a) +if(m.gig().ga7(0))return A.Dt(m.gig(),q) +p=m.gig() +o=s.n.w +o.toString +n=m.ex(s.di(A.Ds(p,q,o))) +if(b)m.e=n +else m.d=n +s=n.a +p=m.a +if(s===p.b)return B.G +if(s===p.a)return B.M +return A.Dt(m.gig(),q)}, +GM(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +if(f.f&&d!=null&&e!=null){s=e.a +r=s>=d.a +if(b){q=f.c +p=a.$2(c,q) +o=a.$2(r?new A.ao(s-1,e.b):e,q) +n=r?o.a.a:o.b.a +s=c.a +q=s>n +if(sj&&p.a.a>j)return B.G +k=k.a +if(l=s.a){s=o.b.a +if(l>=s)return B.P +if(lq)return B.G}}else{i=f.ex(c) +s=r?new A.ao(s-1,e.b):e +o=a.$2(s,f.c) +if(r&&i.a===f.a.a){f.d=i +return B.M}s=!r +if(s&&i.a===f.a.b){f.d=i +return B.G}if(r&&i.a===f.a.b){f.e=f.ex(o.b) +f.d=i +return B.G}if(s&&i.a===f.a.a){f.e=f.ex(o.a) +f.d=i +return B.M}}}else{s=f.b.h9(c) +q=f.c +h=B.c.a1(q,s.a,s.b)===$.Ke() +if(!b||h)return null +if(e!=null){p=a.$2(c,q) +s=d==null +g=!0 +if(!(s&&e.a===f.a.a))if(!(J.d(d,e)&&e.a===f.a.a)){s=!s&&d.a>e.a +g=s}s=p.b +q=s.a +l=f.a +k=l.a +j=ql&&p.a.a>l){f.d=new A.ao(l,B.j) +return B.G}if(g){s=p.a +q=s.a +if(q<=l){f.d=f.ex(s) +return B.P}if(q>l){f.d=new A.ao(l,B.j) +return B.G}}else{f.d=f.ex(s) +if(j)return B.M +if(q>=k)return B.P}}}return null}, +GL(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +if(f.f&&d!=null&&e!=null){s=e.a +r=d.a +q=s>=r +if(b){s=f.c +p=a.$2(c,s) +o=a.$2(q?d:new A.ao(r-1,d.b),s) +n=q?o.b.a:o.a.a +s=c.a +r=sn)m=p.a +else m=q?e:d +if(!q!==r)f.d=f.ex(q?o.a:o.b) +s=f.ex(m) +f.e=s +r=f.d.a +l=p.b.a +k=f.a +j=k.b +if(l>j&&p.a.a>j)return B.G +k=k.a +if(l=r){s=p.a.a +r=o.a.a +if(s<=r)return B.P +if(s>r)return B.G}else{s=o.b.a +if(l>=s)return B.P +if(le.a +g=s}s=p.b +r=s.a +l=f.a +k=l.a +j=rl&&p.a.a>l){f.e=new A.ao(l,B.j) +return B.G}if(g){f.e=f.ex(s) +if(j)return B.M +if(r>=k)return B.P}else{s=p.a +r=s.a +if(r<=l){f.e=f.ex(s) +return B.P}if(r>l){f.e=new A.ao(l,B.j) +return B.G}}}}return null}, +al3(a6,a7,a8,a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5=null +if(a4.f&&b0!=null&&b1!=null){s=b1.a>=b0.a +r=a4.PE() +q=a4.b +if(r===q)return a4.GM(a6,a8,a9,b0,b1) +p=r.aM(0,a5) +p.hM(p) +o=A.bj(p,a7) +n=r.gt(0) +m=new A.x(0,0,0+n.a,0+n.b).p(0,o) +l=r.di(o) +if(m){k=r.n.e.nk(!1) +j=a6.$2(l,k) +i=a6.$2(a4.mm(r),k) +h=s?i.a.a:i.b.a +q=l.a +n=q>h +if(qe&&j.a.a>e)return B.G +if(d=q.a){q=j.a.a +n=i.a.a +if(q<=n)return B.P +if(q>n)return B.G}else{q=i.b.a +if(d>=q)return B.P +if(d=n){a4.d=new A.ao(a4.a.b,B.j) +return B.G}if(s&&c.a>=n){a4.e=b0 +a4.d=new A.ao(a4.a.b,B.j) +return B.G}if(f&&c.a<=q){a4.e=b0 +a4.d=new A.ao(a4.a.a,B.j) +return B.M}}}else{if(a8)return a4.GM(a6,!0,a9,b0,b1) +if(b1!=null){b=a4.PG(a7) +if(b==null)return a5 +a=b.b +a0=a.di(b.a) +a1=a.n.e.nk(!1) +q=a.h9(a0) +if(B.c.a1(a1,q.a,q.b)===$.Ke())return a5 +q=b0==null +a2=!0 +if(!(q&&b1.a===a4.a.a))if(!(J.d(b0,b1)&&b1.a===a4.a.a)){q=!q&&b0.a>b1.a +a2=q}a3=a6.$2(a0,a1) +q=a4.mm(a).a +n=q+$.yg() +f=a3.b.a +e=fn&&a3.a.a>n){a4.d=new A.ao(a4.a.b,B.j) +return B.G}if(a2){if(a3.a.a<=n){a4.d=new A.ao(a4.a.b,B.j) +return B.P}a4.d=new A.ao(a4.a.b,B.j) +return B.G}else{if(f>=q){a4.d=new A.ao(a4.a.a,B.j) +return B.P}if(e){a4.d=new A.ao(a4.a.a,B.j) +return B.M}}}}return a5}, +al0(a6,a7,a8,a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5=null +if(a4.f&&b0!=null&&b1!=null){s=b1.a>=b0.a +r=a4.PE() +q=a4.b +if(r===q)return a4.GL(a6,a8,a9,b0,b1) +p=r.aM(0,a5) +p.hM(p) +o=A.bj(p,a7) +n=r.gt(0) +m=new A.x(0,0,0+n.a,0+n.b).p(0,o) +l=r.di(o) +if(m){k=r.n.e.nk(!1) +j=a6.$2(l,k) +i=a6.$2(a4.mm(r),k) +h=s?i.b.a:i.a.a +q=l.a +n=qh?j.a:b1 +if(!s!==n)a4.d=b1 +q=a4.ex(g) +a4.e=q +n=a4.d.a +f=a4.mm(r).a +e=f+$.yg() +d=j.b.a +if(d>e&&j.a.a>e)return B.G +if(d=n){q=j.a.a +n=i.a.a +if(q<=n)return B.P +if(q>n)return B.G}else{q=i.b.a +if(d>=q)return B.P +if(d=n){a4.d=b1 +a4.e=new A.ao(a4.a.b,B.j) +return B.G}if(s&&c.a>=n){a4.e=new A.ao(a4.a.b,B.j) +return B.G}if(f&&c.a<=q){a4.e=new A.ao(a4.a.a,B.j) +return B.M}}}else{if(a8)return a4.GL(a6,!0,a9,b0,b1) +if(b0!=null){b=a4.PG(a7) +if(b==null)return a5 +a=b.b +a0=a.di(b.a) +a1=a.n.e.nk(!1) +q=a.h9(a0) +if(B.c.a1(a1,q.a,q.b)===$.Ke())return a5 +q=b1==null +a2=!0 +if(!(q&&b0.a===a4.a.b))if(!(b0.j(0,b1)&&b0.a===a4.a.b)){q=!q&&b0.a>b1.a +a2=q}a3=a6.$2(a0,a1) +q=a4.mm(a).a +n=q+$.yg() +f=a3.b.a +e=fn&&a3.a.a>n){a4.e=new A.ao(a4.a.b,B.j) +return B.G}if(a2){if(f>=q){a4.e=new A.ao(a4.a.a,B.j) +return B.P}if(e){a4.e=new A.ao(a4.a.a,B.j) +return B.M}}else{if(a3.a.a<=n){a4.e=new A.ao(a4.a.b,B.j) +return B.P}a4.e=new A.ao(a4.a.b,B.j) +return B.G}}}return a5}, +akZ(a,b,c,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.d,d=f.e +if(a0)f.e=null +else f.d=null +s=f.b +r=s.aM(0,null) +r.hM(r) +q=A.bj(r,a) +if(f.gig().ga7(0))return A.Dt(f.gig(),q) +p=f.gig() +o=s.n +n=o.w +n.toString +m=A.Ds(p,q,n) +n=s.gt(0) +o=o.w +o.toString +l=A.Ds(new A.x(0,0,0+n.a,0+n.b),q,o) +k=s.di(m) +j=s.di(l) +if(f.aeG())if(a0){s=s.gt(0) +i=f.al0(c,a,new A.x(0,0,0+s.a,0+s.b).p(0,q),j,e,d)}else{s=s.gt(0) +i=f.al3(c,a,new A.x(0,0,0+s.a,0+s.b).p(0,q),j,e,d)}else if(a0){s=s.gt(0) +i=f.GL(c,new A.x(0,0,0+s.a,0+s.b).p(0,q),j,e,d)}else{s=s.gt(0) +i=f.GM(c,new A.x(0,0,0+s.a,0+s.b).p(0,q),j,e,d)}if(i!=null)return i +h=f.a6Q(q)?b.$1(k):null +if(h!=null){s=h.b.a +p=f.a +o=p.a +if(!(s=p&&h.a.a>p}else s=!0}else s=!1 +if(s)h=null +g=f.ex(a0?f.Uj(h,b,k,e,d):f.Um(h,b,k,e,d)) +if(a0)f.e=g +else f.d=g +s=g.a +p=f.a +if(s===p.b)return B.G +if(s===p.a)return B.M +return A.Dt(f.gig(),q)}, +Ob(a,b){var s=b.a,r=a.b,q=a.a +return Math.abs(s-r.a)=p&&a.a.a>p)return B.G}s.d=r +s.e=a.a +s.f=!0 +return B.P}, +DP(a,b){var s=A.c9(),r=A.c9(),q=b.a,p=a.b +if(q>p){q=new A.ao(q,B.j) +r.sdL(q) +s.sdL(q)}else{s.sdL(new A.ao(a.a,B.j)) +r.sdL(new A.ao(p,B.ak))}q=s.aS() +return new A.Yd(r.aS(),q)}, +ad7(a){var s=this,r=s.b,q=r.di(r.dQ(a)) +if(s.ahC(q)&&!J.d(s.d,s.e))return B.P +return s.ad6(s.PU(q))}, +PU(a){return this.DP(this.b.h9(a),a)}, +mm(a){var s=this.b,r=s.aM(0,a) +s=s.gt(0) +return a.di(A.bj(r,new A.x(0,0,0+s.a,0+s.b).gVy()))}, +aaB(a,b){var s,r=new A.nR(b),q=a.a,p=b.length,o=r.eH(q===p||a.b===B.ak?q-1:q) +if(o==null)o=0 +s=r.eI(q) +return this.DP(new A.c4(o,s==null?p:s),a)}, +aac(a){var s,r,q=this.c,p=new A.nR(q),o=a.a,n=q.length,m=p.eH(o===n||a.b===B.ak?o-1:o) +if(m==null)m=0 +s=p.eI(o) +n=s==null?n:s +q=this.a +r=q.a +if(mo)m=o}s=q.b +if(n>s)n=s +else if(ns){i=q.gBr(q) +break}}if(b&&i===l.length-1)p=new A.ao(n.a.b,B.ak) +else if(!b&&i===0)p=new A.ao(n.a.a,B.j) +else p=n.ex(m.di(new A.j(c,l[b?i+1:i-1].gks()))) +m=p.a +j=n.a +if(m===j.a)o=B.M +else o=m===j.b?B.G:B.P +return new A.b1(p,o,t.UH)}, +ahC(a){var s,r,q,p,o=this +if(o.d==null||o.e==null)return!1 +s=A.c9() +r=A.c9() +q=o.d +q.toString +p=o.e +p.toString +if(A.aEF(q,p)>0){s.b=q +r.b=p}else{s.b=p +r.b=q}return A.aEF(s.aS(),a)>=0&&A.aEF(r.aS(),a)<=0}, +aM(a,b){return this.b.aM(0,b)}, +kR(a,b){if(this.b.y==null)return}, +glr(){var s,r,q,p,o,n,m,l=this +if(l.y==null){s=l.b +r=l.a +q=r.a +p=s.Ln(A.c8(B.j,q,r.b,!1),B.n9) +r=t.AO +if(p.length!==0){l.y=A.b([],r) +for(s=p.length,o=0;o=q)return r.a +s=this.DD(a) +r=this.A +q=r.a +if(!(q>=1/0))return A.A(s,q,r.b) +return s}, +b7(a){var s,r=this.A,q=r.b +if(q<1/0&&r.a>=q)return r.a +s=this.DB(a) +r=this.A +q=r.a +if(!(q>=1/0))return A.A(s,q,r.b) +return s}, +ba(a){var s,r=this.A,q=r.d +if(q<1/0&&r.c>=q)return r.c +s=this.DC(a) +r=this.A +q=r.c +if(!(q>=1/0))return A.A(s,q,r.d) +return s}, +b6(a){var s,r=this.A,q=r.d +if(q<1/0&&r.c>=q)return r.c +s=this.DA(a) +r=this.A +q=r.c +if(!(q>=1/0))return A.A(s,q,r.d) +return s}, +ds(a,b){var s=this.D$ +return s==null?null:s.eU(this.A.mU(a),b)}, +bx(){var s=this,r=t.k.a(A.t.prototype.gW.call(s)),q=s.D$,p=s.A +if(q!=null){q.c3(p.mU(r),!0) +s.fy=s.D$.gt(0)}else s.fy=p.mU(r).b3(B.I)}, +cE(a){var s=this.D$ +s=s==null?null:s.ap(B.R,this.A.mU(a),s.gc8()) +return s==null?this.A.mU(a).b3(B.I):s}} +A.PT.prototype={ +sasF(a,b){if(this.A===b)return +this.A=b +this.a_()}, +sasE(a,b){if(this.R===b)return +this.R=b +this.a_()}, +QV(a){var s,r,q=a.a,p=a.b +p=p<1/0?p:A.A(this.A,q,p) +s=a.c +r=a.d +return new A.ak(q,p,s,r<1/0?r:A.A(this.R,s,r))}, +tD(a,b){var s=this.D$ +if(s!=null)return a.b3(b.$2(s,this.QV(a))) +return this.QV(a).b3(B.I)}, +cE(a){return this.tD(a,A.fE())}, +bx(){this.fy=this.tD(t.k.a(A.t.prototype.gW.call(this)),A.mM())}} +A.CO.prototype={ +sa1n(a){return}, +sa1m(a){return}, +bb(a){return this.ap(B.ab,a,this.gbj())}, +b7(a){var s=this.D$ +if(s==null)return 0 +return A.ahX(s.ap(B.ab,a,s.gbj()),this.A)}, +ba(a){var s,r=this +if(r.D$==null)return 0 +if(!isFinite(a))a=r.ap(B.ab,1/0,r.gbj()) +s=r.D$ +return A.ahX(s.ap(B.aL,a,s.gbD()),r.R)}, +b6(a){var s,r=this +if(r.D$==null)return 0 +if(!isFinite(a))a=r.ap(B.ab,1/0,r.gbj()) +s=r.D$ +return A.ahX(s.ap(B.b8,a,s.gbL()),r.R)}, +O_(a,b){var s=b.a>=b.b?null:A.ahX(a.ap(B.ab,b.d,a.gbj()),this.A) +return b.Cn(null,s)}, +tD(a,b){var s=this.D$ +return s==null?new A.I(A.A(0,a.a,a.b),A.A(0,a.c,a.d)):b.$2(s,this.O_(s,a))}, +cE(a){return this.tD(a,A.fE())}, +ds(a,b){var s=this.D$ +return s==null?null:s.eU(this.O_(s,a),b)}, +bx(){this.fy=this.tD(t.k.a(A.t.prototype.gW.call(this)),A.mM())}} +A.PV.prototype={ +gkp(){return this.D$!=null&&this.A>0}, +geQ(){return this.D$!=null&&this.A>0}, +scR(a,b){var s,r,q,p,o=this +if(o.R===b)return +s=o.D$!=null +r=s&&o.A>0 +q=o.A +o.R=b +p=B.d.aI(A.A(b,0,1)*255) +o.A=p +if(r!==(s&&p>0))o.kL() +o.YK() +s=o.A +if(q!==0!==(s!==0))o.aY()}, +szG(a){return}, +pi(a){return this.A>0}, +rS(a){var s=a==null?A.aDG():a +s.sdH(0,this.A) +return s}, +aA(a,b){if(this.D$==null||this.A===0)return +this.i6(a,b)}, +eS(a){var s,r=this.D$ +if(r!=null){s=this.A +s=s!==0}else s=!1 +if(s)a.$1(r)}} +A.CB.prototype={ +geQ(){if(this.D$!=null){var s=this.IJ$ +s.toString}else s=!1 +return s}, +rS(a){var s=a==null?A.aDG():a +s.sdH(0,this.r6$) +return s}, +scR(a,b){var s=this,r=s.r7$ +if(r===b)return +if(s.y!=null&&r!=null)r.J(0,s.gzf()) +s.r7$=b +if(s.y!=null)b.Z(0,s.gzf()) +s.GG()}, +szG(a){if(a===this.IK$)return +this.IK$=a +this.aY()}, +GG(){var s,r=this,q=r.r6$,p=r.r7$ +p=r.r6$=B.d.aI(A.A(p.gq(p),0,1)*255) +if(q!==p){s=r.IJ$ +p=p>0 +r.IJ$=p +if(r.D$!=null&&s!==p)r.kL() +r.YK() +if(q===0||r.r6$===0)r.aY()}}, +pi(a){var s=this.r7$ +return s.gq(s)>0}, +eS(a){var s,r=this.D$ +if(r!=null)if(this.r6$===0){s=this.IK$ +s.toString}else s=!0 +else s=!1 +if(s)a.$1(r)}} +A.PG.prototype={} +A.PH.prototype={ +smT(a,b){return}, +sAP(a,b){if(this.R.j(0,b))return +this.R=b +this.aC()}, +samg(a){if(this.af===a)return +this.af=a +this.aC()}, +sama(a){return}, +gkp(){return this.D$!=null}, +aA(a,b){var s,r,q,p=this +if(p.D$!=null){s=t.m2 +if(s.a(A.t.prototype.gaB.call(p,0))==null)p.ch.saB(0,A.aGF(null)) +s.a(A.t.prototype.gaB.call(p,0)).sAP(0,p.R) +r=s.a(A.t.prototype.gaB.call(p,0)) +q=p.af +if(q!==r.k4){r.k4=q +r.f5()}s.a(A.t.prototype.gaB.call(p,0)).toString +s=s.a(A.t.prototype.gaB.call(p,0)) +s.toString +a.lS(s,A.eO.prototype.geE.call(p),b)}else p.ch.saB(0,null)}} +A.zy.prototype={ +Z(a,b){var s=this.a +return s==null?null:s.a.Z(0,b)}, +J(a,b){var s=this.a +return s==null?null:s.a.J(0,b)}, +a_N(a){return new A.x(0,0,0+a.a,0+a.b)}, +k(a){return"CustomClipper"}} +A.ol.prototype={ +CH(a){return this.b.d9(new A.x(0,0,0+a.a,0+a.b),this.c)}, +Dd(a){if(A.r(a)!==B.Yl)return!0 +t.jH.a(a) +return!a.b.j(0,this.b)||a.c!=this.c}} +A.xt.prototype={ +sqK(a){var s,r=this,q=r.A +if(q==a)return +r.A=a +s=a==null +if(s||q==null||A.r(a)!==A.r(q)||a.Dd(q))r.q6() +if(r.y!=null){if(q!=null)q.J(0,r.gyv()) +if(!s)a.Z(0,r.gyv())}}, +av(a){var s +this.pQ(a) +s=this.A +if(s!=null)s.Z(0,this.gyv())}, +ai(a){var s=this.A +if(s!=null)s.J(0,this.gyv()) +this.mc(0)}, +q6(){this.R=null +this.aC() +this.aY()}, +sjH(a){if(a!==this.af){this.af=a +this.aC()}}, +bx(){var s=this,r=s.fy!=null?s.gt(0):null +s.pP() +if(!J.d(r,s.gt(0)))s.R=null}, +km(){var s,r=this +if(r.R==null){s=r.A +s=s==null?null:s.CH(r.gt(0)) +r.R=s==null?r.gtG():s}}, +mN(a){var s,r=this +switch(r.af.a){case 0:return null +case 1:case 2:case 3:s=r.A +s=s==null?null:s.a_N(r.gt(0)) +if(s==null){s=r.gt(0) +s=new A.x(0,0,0+s.a,0+s.b)}return s}}, +l(){this.bB=null +this.fb()}} +A.PL.prototype={ +gtG(){var s=this.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}, +cp(a,b){var s=this +if(s.A!=null){s.km() +if(!s.R.p(0,b))return!1}return s.lb(a,b)}, +aA(a,b){var s,r,q=this,p=q.D$ +if(p!=null){s=q.ch +if(q.af!==B.n){q.km() +p=q.cx +p===$&&A.a() +r=q.R +r.toString +s.saB(0,a.lQ(p,b,r,A.eO.prototype.geE.call(q),q.af,t.EM.a(s.a)))}else{a.dm(p,b) +s.saB(0,null)}}else q.ch.saB(0,null)}} +A.PK.prototype={ +sol(a,b){if(this.c_.j(0,b))return +this.c_=b +this.q6()}, +sbC(a){if(this.eo==a)return +this.eo=a +this.q6()}, +gtG(){var s=this.c_,r=this.gt(0) +return s.cS(new A.x(0,0,0+r.a,0+r.b))}, +cp(a,b){var s=this +if(s.A!=null){s.km() +if(!s.R.p(0,b))return!1}return s.lb(a,b)}, +aA(a,b){var s,r,q=this,p=q.D$ +if(p!=null){s=q.ch +if(q.af!==B.n){q.km() +p=q.cx +p===$&&A.a() +r=q.R +s.saB(0,a.Zs(p,b,new A.x(r.a,r.b,r.c,r.d),r,A.eO.prototype.geE.call(q),q.af,t.eG.a(s.a)))}else{a.dm(p,b) +s.saB(0,null)}}else q.ch.saB(0,null)}} +A.PJ.prototype={ +gtG(){var s=A.bQ($.a3().w),r=this.gt(0) +s.aq(new A.fe(new A.x(0,0,0+r.a,0+r.b))) +return s}, +cp(a,b){var s,r=this +if(r.A!=null){r.km() +s=r.R.gfj().a +s===$&&A.a() +if(!s.a.contains(b.a,b.b))return!1}return r.lb(a,b)}, +aA(a,b){var s,r,q,p=this,o=p.D$ +if(o!=null){s=p.ch +if(p.af!==B.n){p.km() +o=p.cx +o===$&&A.a() +r=p.gt(0) +q=p.R +q.toString +s.saB(0,a.Kx(o,b,new A.x(0,0,0+r.a,0+r.b),q,A.eO.prototype.geE.call(p),p.af,t.JG.a(s.a)))}else{a.dm(o,b) +s.saB(0,null)}}else p.ch.saB(0,null)}} +A.HB.prototype={ +sdl(a,b){if(this.c_===b)return +this.c_=b +this.aC()}, +sbc(a,b){if(this.eo.j(0,b))return +this.eo=b +this.aC()}, +sci(a,b){if(this.eA.j(0,b))return +this.eA=b +this.aC()}} +A.PW.prototype={ +sbH(a,b){if(this.a4===b)return +this.a4=b +this.q6()}, +sol(a,b){if(J.d(this.c6,b))return +this.c6=b +this.q6()}, +gtG(){var s,r,q=this.gt(0),p=0+q.a +q=0+q.b +switch(this.a4.a){case 0:s=this.c6 +if(s==null)s=B.ac +q=s.cS(new A.x(0,0,p,q)) +break +case 1:s=p/2 +r=q/2 +r=new A.jB(0,0,p,q,s,r,s,r,s,r,s,r) +q=r +break +default:q=null}return q}, +cp(a,b){var s=this +if(s.A!=null){s.km() +if(!s.R.p(0,b))return!1}return s.lb(a,b)}, +aA(a,b){var s,r,q,p,o,n,m,l,k,j=this +if(j.D$==null){j.ch.saB(0,null) +return}j.km() +s=j.R.dj(b) +r=A.bQ($.a3().w) +r.aq(new A.em(s)) +q=a.gcg(0) +p=j.c_ +if(p!==0){o=j.eo +n=j.eA +q.WI(r,o,p,n.gdH(n)!==255)}m=j.af===B.cd +if(!m){p=A.bc() +o=j.eA +p.r=o.gq(o) +q.ez(s,p)}p=j.cx +p===$&&A.a() +o=j.gt(0) +n=j.R +n.toString +l=j.ch +k=t.eG.a(l.a) +l.saB(0,a.Zs(p,b,new A.x(0,0,0+o.a,0+o.b),n,new A.aia(j,m),j.af,k))}} +A.aia.prototype={ +$2(a,b){var s,r,q +if(this.b){s=a.gcg(0) +$.a3() +r=A.bc() +q=this.a.eA +r.r=q.gq(q) +s.WG(r)}this.a.i6(a,b)}, +$S:15} +A.PX.prototype={ +gtG(){var s=A.bQ($.a3().w),r=this.gt(0) +s.aq(new A.fe(new A.x(0,0,0+r.a,0+r.b))) +return s}, +cp(a,b){var s,r=this +if(r.A!=null){r.km() +s=r.R.gfj().a +s===$&&A.a() +if(!s.a.contains(b.a,b.b))return!1}return r.lb(a,b)}, +aA(a,b){var s,r,q,p,o,n,m,l,k=this +if(k.D$==null){k.ch.saB(0,null) +return}k.km() +s=k.R +s.toString +r=A.aIF(s,b) +q=a.gcg(0) +s=k.c_ +if(s!==0){p=k.eo +o=k.eA +q.WI(r,p,s,o.gdH(o)!==255)}n=k.af===B.cd +if(!n){$.a3() +s=A.bc() +p=k.eA +s.r=p.gq(p) +q.ip(r,s)}s=k.cx +s===$&&A.a() +p=k.gt(0) +o=k.R +o.toString +m=k.ch +l=t.JG.a(m.a) +m.saB(0,a.Kx(s,b,new A.x(0,0,0+p.a,0+p.b),o,new A.aib(k,n),k.af,l))}} +A.aib.prototype={ +$2(a,b){var s,r,q +if(this.b){s=a.gcg(0) +$.a3() +r=A.bc() +q=this.a.eA +r.r=q.gq(q) +s.WG(r)}this.a.i6(a,b)}, +$S:15} +A.M6.prototype={ +K(){return"DecorationPosition."+this.b}} +A.PM.prototype={ +sar(a){var s,r=this +if(a.j(0,r.R))return +s=r.A +if(s!=null)s.l() +r.A=null +r.R=a +r.aC()}, +sby(a,b){if(b===this.af)return +this.af=b +this.aC()}, +sqN(a){if(a.j(0,this.bT))return +this.bT=a +this.aC()}, +ai(a){var s=this,r=s.A +if(r!=null)r.l() +s.A=null +s.mc(0) +s.aC()}, +l(){var s=this.A +if(s!=null)s.l() +this.fb()}, +jQ(a){return this.R.Js(this.gt(0),a,this.bT.d)}, +aA(a,b){var s,r,q=this +if(q.A==null)q.A=q.R.A5(q.ge9()) +s=q.bT.VZ(q.gt(0)) +if(q.af===B.dM){r=q.A +r.toString +r.jW(a.gcg(0),b,s) +if(q.R.gBl())a.LZ()}q.i6(a,b) +if(q.af===B.o6){r=q.A +r.toString +r.jW(a.gcg(0),b,s) +if(q.R.gBl())a.LZ()}}} +A.Q6.prototype={ +sZ6(a,b){return}, +sfO(a){var s=this +if(J.d(s.R,a))return +s.R=a +s.aC() +s.aY()}, +sbC(a){var s=this +if(s.af==a)return +s.af=a +s.aC() +s.aY()}, +gkp(){return this.D$!=null&&this.bU!=null}, +sc2(a,b){var s,r=this +if(J.d(r.bB,b))return +s=new A.b6(new Float64Array(16)) +s.cB(b) +r.bB=s +r.aC() +r.aY()}, +sAR(a){var s,r,q=this,p=q.bU +if(p==a)return +s=q.D$!=null +r=s&&p!=null +q.bU=a +if(r!==(s&&a!=null))q.kL() +q.aC()}, +gEG(){var s,r,q=this,p=q.R,o=p==null?null:p.Y(q.af) +if(o==null)return q.bB +s=new A.b6(new Float64Array(16)) +s.dF() +r=o.zF(q.gt(0)) +s.dC(r.a,r.b,0,1) +p=q.bB +p.toString +s.dZ(0,p) +s.dC(-r.a,-r.b,0,1) +return s}, +cp(a,b){return this.cz(a,b)}, +cz(a,b){var s=this.bT?this.gEG():null +return a.H7(new A.aiq(this),b,s)}, +aA(a,b){var s,r,q,p,o,n,m,l,k,j=this +if(j.D$!=null){s=j.gEG() +s.toString +if(j.bU==null){r=A.aef(s) +if(r==null){q=s.Id() +if(q===0||!isFinite(q)){j.ch.saB(0,null) +return}p=j.cx +p===$&&A.a() +o=A.eO.prototype.geE.call(j) +n=j.ch +m=n.a +n.saB(0,a.wr(p,b,s,o,m instanceof A.wp?m:null))}else{j.i6(a,b.V(0,r)) +j.ch.saB(0,null)}}else{p=b.a +o=b.b +l=A.nL(p,o,0) +l.dZ(0,s) +l.dC(-p,-o,0,1) +o=j.bU +o.toString +k=A.aIf(l.a,o) +o=j.ch +p=o.a +if(p instanceof A.AU){if(!k.j(0,p.M)){p.M=k +p.f5()}}else o.saB(0,new A.AU(k,B.i,A.w(t.S,t.M),A.ah())) +s=o.a +s.toString +a.lS(s,A.eO.prototype.geE.call(j),b)}}}, +cP(a,b){var s=this.gEG() +s.toString +b.dZ(0,s)}} +A.aiq.prototype={ +$2(a,b){return this.a.xx(a,b)}, +$S:18} +A.PP.prototype={ +savD(a){var s=this +if(s.A.j(0,a))return +s.A=a +s.aC() +s.aY()}, +cp(a,b){return this.cz(a,b)}, +cz(a,b){var s=this,r=s.R?new A.j(s.A.a*s.gt(0).a,s.A.b*s.gt(0).b):null +return a.iU(new A.ahU(s),r,b)}, +aA(a,b){var s=this +if(s.D$!=null)s.i6(a,new A.j(b.a+s.A.a*s.gt(0).a,b.b+s.A.b*s.gt(0).b))}, +cP(a,b){var s=this +b.dC(s.A.a*s.gt(0).a,s.A.b*s.gt(0).b,0,1)}} +A.ahU.prototype={ +$2(a,b){return this.a.xx(a,b)}, +$S:18} +A.PY.prototype={ +uY(a){return new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d))}, +kF(a,b){var s,r=this,q=null +$label0$0:{s=q +if(t.pY.b(a)){s=r.cv +s=s==null?q:s.$1(a) +break $label0$0}if(t.n2.b(a))break $label0$0 +if(t.oN.b(a)){s=r.bN +s=s==null?q:s.$1(a) +break $label0$0}if(t.XA.b(a))break $label0$0 +if(t.Ko.b(a)){s=r.c_ +s=s==null?q:s.$1(a) +break $label0$0}if(t.w5.b(a)){s=r.eo +s=s==null?q:s.$1(a) +break $label0$0}if(t.DB.b(a))break $label0$0 +if(t.WQ.b(a))break $label0$0 +if(t.ks.b(a)){s=r.f2 +s=s==null?q:s.$1(a) +break $label0$0}break $label0$0}return s}} +A.CP.prototype={ +cp(a,b){var s=this.a2Y(a,b) +return s}, +kF(a,b){var s +if(t.XA.b(a)){s=this.bN +if(s!=null)s.$1(a)}}, +gWe(a){return this.c_}, +gLb(){return this.eo}, +av(a){this.pQ(a) +this.eo=!0}, +ai(a){this.eo=!1 +this.mc(0)}, +uY(a){return new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d))}, +$ikv:1, +gYW(a){return this.dt}, +gYX(a){return this.cn}} +A.Q0.prototype={ +geQ(){return!0}} +A.CL.prototype={ +sXO(a){if(a===this.A)return +this.A=a +this.aY()}, +sJu(a){return}, +cp(a,b){return!this.A&&this.lb(a,b)}, +eS(a){this.nQ(a)}, +dU(a){var s +this.i5(a) +s=this.A +a.d=s}} +A.CQ.prototype={ +sBA(a){var s=this +if(a===s.A)return +s.A=a +s.a_() +s.JX()}, +bb(a){if(this.A)return 0 +return this.DD(a)}, +b7(a){if(this.A)return 0 +return this.DB(a)}, +ba(a){if(this.A)return 0 +return this.DC(a)}, +b6(a){if(this.A)return 0 +return this.DA(a)}, +fk(a){if(this.A)return null +return this.a4u(a)}, +gkc(){return this.A}, +ds(a,b){return this.A?null:this.a2W(a,b)}, +cE(a){if(this.A)return new A.I(A.A(0,a.a,a.b),A.A(0,a.c,a.d)) +return this.a2X(a)}, +pl(){this.a2N()}, +bx(){var s,r=this +if(r.A){s=r.D$ +if(s!=null)s.hp(t.k.a(A.t.prototype.gW.call(r)))}else r.pP()}, +cp(a,b){return!this.A&&this.lb(a,b)}, +pi(a){return!this.A}, +aA(a,b){if(this.A)return +this.i6(a,b)}, +eS(a){if(this.A)return +this.nQ(a)}} +A.Cz.prototype={ +sUO(a){if(this.A===a)return +this.A=a +this.aY()}, +sJu(a){return}, +cp(a,b){return this.A?this.gt(0).p(0,b):this.lb(a,b)}, +eS(a){this.nQ(a)}, +dU(a){var s +this.i5(a) +s=this.A +a.d=s}} +A.m0.prototype={ +savP(a){if(A.yb(a,this.cv))return +this.cv=a +this.aY()}, +snb(a){var s,r=this +if(J.d(r.dt,a))return +s=r.dt +r.dt=a +if(a!=null!==(s!=null))r.aY()}, +sna(a){var s,r=this +if(J.d(r.bN,a))return +s=r.bN +r.bN=a +if(a!=null!==(s!=null))r.aY()}, +sYY(a){var s,r=this +if(J.d(r.cn,a))return +s=r.cn +r.cn=a +if(a!=null!==(s!=null))r.aY()}, +sZ5(a){var s,r=this +if(J.d(r.c_,a))return +s=r.c_ +r.c_=a +if(a!=null!==(s!=null))r.aY()}, +dU(a){var s,r=this +r.i5(a) +if(r.dt!=null){s=r.cv +s=s==null||s.p(0,B.fx)}else s=!1 +if(s)a.snb(r.dt) +if(r.bN!=null){s=r.cv +s=s==null||s.p(0,B.zK)}else s=!1 +if(s)a.sna(r.bN) +if(r.cn!=null){s=r.cv +if(s==null||s.p(0,B.iA))a.sBQ(r.gahq()) +s=r.cv +if(s==null||s.p(0,B.iz))a.sBP(r.gaho())}if(r.c_!=null){s=r.cv +if(s==null||s.p(0,B.iw))a.sBR(r.gahs()) +s=r.cv +if(s==null||s.p(0,B.ix))a.sBO(r.gahm())}}, +ahp(){var s,r,q,p=this,o=null +if(p.cn!=null){s=p.gt(0).a*-0.8 +r=p.cn +r.toString +q=p.gt(0).kv(B.i) +r.$1(A.zW(new A.j(s,0),A.bj(p.aM(0,o),q),o,o,s,o))}}, +ahr(){var s,r,q,p=this,o=null +if(p.cn!=null){s=p.gt(0).a*0.8 +r=p.cn +r.toString +q=p.gt(0).kv(B.i) +r.$1(A.zW(new A.j(s,0),A.bj(p.aM(0,o),q),o,o,s,o))}}, +aht(){var s,r,q,p=this,o=null +if(p.c_!=null){s=p.gt(0).b*-0.8 +r=p.c_ +r.toString +q=p.gt(0).kv(B.i) +r.$1(A.zW(new A.j(0,s),A.bj(p.aM(0,o),q),o,o,s,o))}}, +ahn(){var s,r,q,p=this,o=null +if(p.c_!=null){s=p.gt(0).b*0.8 +r=p.c_ +r.toString +q=p.gt(0).kv(B.i) +r.$1(A.zW(new A.j(0,s),A.bj(p.aM(0,o),q),o,o,s,o))}}} +A.Q1.prototype={} +A.PI.prototype={ +sami(a){return}, +dU(a){this.i5(a) +a.f=!0}} +A.PU.prototype={ +dU(a){this.i5(a) +a.r=a.x1=a.a=!0}} +A.PN.prototype={ +sapf(a){if(a===this.A)return +this.A=a +this.aY()}, +eS(a){if(this.A)return +this.nQ(a)}} +A.PQ.prototype={ +saro(a,b){if(b===this.A)return +this.A=b +this.aY()}, +dU(a){this.i5(a) +a.p4=this.A +a.r=!0}} +A.PS.prototype={ +sp8(a){var s=this,r=s.A +if(r===a)return +r.d=null +s.A=a +r=s.R +if(r!=null)a.d=r +s.aC()}, +gkp(){return!0}, +bx(){var s=this +s.pP() +s.R=s.gt(0) +s.A.d=s.gt(0)}, +aA(a,b){var s=this.ch,r=s.a,q=this.A +if(r==null)s.saB(0,A.abp(q,b)) +else{t.rf.a(r) +r.sp8(q) +r.sck(0,b)}s=s.a +s.toString +a.lS(s,A.eO.prototype.geE.call(this),B.i)}} +A.PO.prototype={ +sp8(a){if(this.A===a)return +this.A=a +this.aC()}, +sa16(a){return}, +sck(a,b){if(this.af.j(0,b))return +this.af=b +this.aC()}, +sasb(a){if(this.bT.j(0,a))return +this.bT=a +this.aC()}, +sapM(a){if(this.bB.j(0,a))return +this.bB=a +this.aC()}, +ai(a){this.ch.saB(0,null) +this.mc(0)}, +gkp(){return!0}, +Lq(){var s=t.RC.a(A.t.prototype.gaB.call(this,0)) +s=s==null?null:s.Lv() +if(s==null){s=new A.b6(new Float64Array(16)) +s.dF()}return s}, +cp(a,b){var s=this.A.a +if(s==null)return!1 +return this.cz(a,b)}, +cz(a,b){return a.H7(new A.ahT(this),b,this.Lq())}, +aA(a,b){var s,r=this,q=r.A.d,p=q==null?r.af:r.bT.zF(q).a0(0,r.bB.zF(r.gt(0))).V(0,r.af),o=t.RC +if(o.a(A.t.prototype.gaB.call(r,0))==null)r.ch.saB(0,new A.Aw(r.A,!1,b,p,A.w(t.S,t.M),A.ah())) +else{s=o.a(A.t.prototype.gaB.call(r,0)) +if(s!=null){s.k3=r.A +s.k4=!1 +s.p1=p +s.ok=b}}o=o.a(A.t.prototype.gaB.call(r,0)) +o.toString +a.rC(o,A.eO.prototype.geE.call(r),B.i,B.PM)}, +cP(a,b){b.dZ(0,this.Lq())}} +A.ahT.prototype={ +$2(a,b){return this.a.xx(a,b)}, +$S:18} +A.CD.prototype={ +sq(a,b){if(this.A.j(0,b))return +this.A=b +this.aC()}, +sa1b(a){return}, +aA(a,b){var s=this,r=s.A,q=s.gt(0),p=new A.yz(r,q,b,A.w(t.S,t.M),A.ah(),s.$ti.i("yz<1>")) +s.af.saB(0,p) +a.lS(p,A.eO.prototype.geE.call(s),b)}, +l(){this.af.saB(0,null) +this.fb()}, +gkp(){return!0}} +A.Yq.prototype={ +av(a){var s=this +s.pQ(a) +s.r7$.Z(0,s.gzf()) +s.GG()}, +ai(a){this.r7$.J(0,this.gzf()) +this.mc(0)}, +aA(a,b){if(this.r6$===0)return +this.i6(a,b)}} +A.HC.prototype={ +av(a){var s +this.e1(a) +s=this.D$ +if(s!=null)s.av(a)}, +ai(a){var s +this.e2(0) +s=this.D$ +if(s!=null)s.ai(0)}} +A.HD.prototype={ +fk(a){var s=this.D$ +s=s==null?null:s.k9(a) +return s==null?this.Dx(a):s}} +A.YE.prototype={ +eS(a){this.AC$===$&&A.a() +this.nQ(a)}, +dU(a){var s,r,q=this +q.i5(a) +s=q.AA$ +s===$&&A.a() +a.a=s +s=q.AB$ +s===$&&A.a() +a.e=s +s=q.AD$ +s===$&&A.a() +a.d=s +a.b=q.AE$ +s=q.c5$ +s===$&&A.a() +s=s.a +if(s!=null)a.sYg(0,s) +s=q.c5$.b +if(s!=null)a.sYd(s) +s=q.c5$.c +if(s!=null)a.sYc(s) +s=q.c5$ +s=s.f +if(s!=null)a.sYr(s) +s=q.c5$.r +if(s!=null)a.sYb(s) +s=q.c5$ +s=s.x +if(s!=null)a.sYh(s) +s=q.c5$ +s=s.at +if(s!=null)a.sJF(s) +s=q.c5$.ax +if(s!=null)a.sp5(s) +s=q.c5$ +s=s.dx +if(s!=null)a.sYj(s) +s=q.c5$ +r=q.WT$ +if(r!=null){a.y2=r +a.r=!0}r=q.r4$ +if(r!=null){a.M=r +a.r=!0}r=q.II$ +if(r!=null){a.P=r +a.r=!0}r=q.WU$ +if(r!=null){a.n=r +a.r=!0}r=q.WV$ +if(r!=null){a.I=r +a.r=!0}r=s.R8 +if(r!=null){a.X=r +a.r=!0}s=s.rx +if(s!=null){r=s.a +r=r!=null}else r=!1 +if(r)a.sBf(s) +s=q.c5$.cy +if(s!=null)a.sx9(s) +s=q.c5$.db +if(s!=null)a.sBy(s) +s=q.c5$.dy +if(s!=null)a.sBs(s) +s=q.c5$ +s=s.fy +if(s!=null)a.sAb(s) +s=q.AF$ +if(s!=null){a.S=s +a.r=!0}s=q.c5$ +r=s.to +if(r!=null){a.p3=r +a.r=!0}s=s.x1 +if(s!=null)a.zB(s) +s=q.c5$ +r=s.f3 +if(r!=null){a.y1=r +a.r=!0}r=s.D +if(a.bf!==r){a.bf=r +a.r=!0}r=s.cb +if(r!=null){a.br=r +a.r=!0}if(s.xr!=null)a.snb(q.gahv()) +if(q.c5$.y1!=null)a.sna(q.gahg()) +if(q.c5$.ao!=null)a.sBF(q.gahc()) +s=q.c5$ +if(s.a2!=null)a.sBB(0,q.gah4()) +if(q.c5$.S!=null)a.sBC(0,q.gah6()) +if(q.c5$.a9!=null)a.sBM(0,q.gahi()) +s=q.c5$ +if(s.bf!=null)a.sBD(q.gah8()) +if(q.c5$.br!=null)a.sBE(q.gaha()) +if(q.c5$.bF!=null)a.sBG(0,q.gahe())}} +A.of.prototype={ +K(){return"SelectionResult."+this.b}} +A.ez.prototype={$iac:1} +A.QL.prototype={ +spn(a){var s=this,r=s.AH$ +if(a==r)return +if(a==null)s.J(0,s.gSG()) +else if(r==null)s.Z(0,s.gSG()) +s.SF() +s.AH$=a +s.SH()}, +SH(){var s,r=this,q=r.AH$ +if(q==null){r.r5$=!1 +return}s=r.r5$ +if(s&&!r.gq(0).e){q.F(0,r) +r.r5$=!1}else if(!s&&r.gq(0).e){q.E(0,r) +r.r5$=!0}}, +SF(){var s=this +if(s.r5$){s.AH$.F(0,s) +s.r5$=!1}}} +A.rF.prototype={ +K(){return"SelectionEventType."+this.b}} +A.rS.prototype={ +K(){return"TextGranularity."+this.b}} +A.ajC.prototype={} +A.zb.prototype={} +A.Dq.prototype={} +A.vQ.prototype={ +K(){return"SelectionExtendDirection."+this.b}} +A.Dr.prototype={ +K(){return"SelectionStatus."+this.b}} +A.oe.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.oe&&J.d(b.a,s.a)&&J.d(b.b,s.b)&&A.cE(b.d,s.d)&&b.c===s.c&&b.e===s.e}, +gB(a){var s=this +return A.T(s.a,s.b,s.d,s.c,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.rG.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.rG&&b.a.j(0,s.a)&&b.b===s.b&&b.c===s.c}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Eu.prototype={ +K(){return"TextSelectionHandleType."+this.b}} +A.Zl.prototype={} +A.Zm.prototype={} +A.rq.prototype={ +bb(a){var s=this.D$ +s=s==null?null:s.ap(B.aK,a,s.gbE()) +return s==null?0:s}, +b7(a){var s=this.D$ +s=s==null?null:s.ap(B.ab,a,s.gbj()) +return s==null?0:s}, +ba(a){var s=this.D$ +s=s==null?null:s.ap(B.aL,a,s.gbD()) +return s==null?0:s}, +b6(a){var s=this.D$ +s=s==null?null:s.ap(B.b8,a,s.gbL()) +return s==null?0:s}, +fk(a){var s,r,q=this.D$ +if(q!=null){s=q.k9(a) +r=q.b +r.toString +t.q.a(r) +if(s!=null)s+=r.a.b}else s=this.Dx(a) +return s}, +aA(a,b){var s,r=this.D$ +if(r!=null){s=r.b +s.toString +a.dm(r,t.q.a(s).a.V(0,b))}}, +cz(a,b){var s,r=this.D$ +if(r!=null){s=r.b +s.toString +return a.iU(new A.aic(r),t.q.a(s).a,b)}return!1}} +A.aic.prototype={ +$2(a,b){return this.a.cp(a,b)}, +$S:18} +A.CR.prototype={ +gob(){var s=this,r=s.A +return r==null?s.A=s.R.Y(s.af):r}, +scl(a,b){var s=this +if(s.R.j(0,b))return +s.R=b +s.A=null +s.a_()}, +sbC(a){var s=this +if(s.af==a)return +s.af=a +s.A=null +s.a_()}, +bb(a){var s=this.gob(),r=this.D$ +if(r!=null)return r.ap(B.aK,Math.max(0,a-(s.gct(0)+s.gcC(0))),r.gbE())+s.gfq() +return s.gfq()}, +b7(a){var s=this.gob(),r=this.D$ +if(r!=null)return r.ap(B.ab,Math.max(0,a-(s.gct(0)+s.gcC(0))),r.gbj())+s.gfq() +return s.gfq()}, +ba(a){var s=this.gob(),r=this.D$ +if(r!=null)return r.ap(B.aL,Math.max(0,a-s.gfq()),r.gbD())+(s.gct(0)+s.gcC(0)) +return s.gct(0)+s.gcC(0)}, +b6(a){var s=this.gob(),r=this.D$ +if(r!=null)return r.ap(B.b8,Math.max(0,a-s.gfq()),r.gbL())+(s.gct(0)+s.gcC(0)) +return s.gct(0)+s.gcC(0)}, +cE(a){var s,r=this.gob(),q=this.D$ +if(q==null)return a.b3(new A.I(r.gfq(),r.gct(0)+r.gcC(0))) +s=q.ap(B.R,a.oz(r),q.gc8()) +return a.b3(new A.I(r.gfq()+s.a,r.gct(0)+r.gcC(0)+s.b))}, +ds(a,b){var s,r=this.D$ +if(r==null)return null +s=this.gob() +return A.KY(r.eU(a.oz(s),b),s.b)}, +bx(){var s,r=this,q=t.k.a(A.t.prototype.gW.call(r)),p=r.gob(),o=r.D$ +if(o==null){r.fy=q.b3(new A.I(p.gfq(),p.gct(0)+p.gcC(0))) +return}o.c3(q.oz(p),!0) +o=r.D$ +s=o.b +s.toString +t.q.a(s).a=new A.j(p.a,p.b) +r.fy=q.b3(new A.I(p.gfq()+o.gt(0).a,p.gct(0)+p.gcC(0)+r.D$.gt(0).b))}} +A.PF.prototype={ +gZW(){var s=this,r=s.A +return r==null?s.A=s.R.Y(s.af):r}, +sfO(a){var s=this +if(s.R.j(0,a))return +s.R=a +s.A=null +s.a_()}, +sbC(a){var s=this +if(s.af==a)return +s.af=a +s.A=null +s.a_()}, +H8(){var s=this,r=s.D$.b +r.toString +t.q.a(r).a=s.gZW().lo(t.v.a(s.gt(0).a0(0,s.D$.gt(0))))}} +A.CS.prototype={ +savY(a){if(this.bN==a)return +this.bN=a +this.a_()}, +sar2(a){if(this.cn==a)return +this.cn=a +this.a_()}, +bb(a){var s=this.a31(a),r=this.bN +return s*(r==null?1:r)}, +b7(a){var s=this.a3_(a),r=this.bN +return s*(r==null?1:r)}, +ba(a){var s=this.a30(a),r=this.cn +return s*(r==null?1:r)}, +b6(a){var s=this.a2Z(a),r=this.cn +return s*(r==null?1:r)}, +cE(a){var s,r,q=this,p=q.bN!=null||a.b===1/0,o=q.cn!=null||a.d===1/0,n=q.D$ +if(n!=null){s=n.ap(B.R,new A.ak(0,a.b,0,a.d),n.gc8()) +if(p){n=q.bN +if(n==null)n=1 +n=s.a*n}else n=1/0 +if(o){r=q.cn +if(r==null)r=1 +r=s.b*r}else r=1/0 +return a.b3(new A.I(n,r))}n=p?0:1/0 +return a.b3(new A.I(n,o?0:1/0))}, +bx(){var s,r,q=this,p=t.k.a(A.t.prototype.gW.call(q)),o=q.bN!=null||p.b===1/0,n=q.cn!=null||p.d===1/0,m=q.D$ +if(m!=null){m.c3(new A.ak(0,p.b,0,p.d),!0) +if(o){m=q.D$.gt(0) +s=q.bN +if(s==null)s=1 +s=m.a*s +m=s}else m=1/0 +if(n){s=q.D$.gt(0) +r=q.cn +if(r==null)r=1 +r=s.b*r +s=r}else s=1/0 +q.fy=p.b3(new A.I(m,s)) +q.H8()}else{m=o?0:1/0 +q.fy=p.b3(new A.I(m,n?0:1/0))}}} +A.al7.prototype={ +m2(a){return new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d))}, +pu(a){return a}, +px(a,b){return B.i}} +A.CI.prototype={ +sI9(a){var s=this.A +if(s===a)return +if(A.r(a)!==A.r(s)||a.m6(s))this.a_() +this.A=a}, +av(a){this.N1(a)}, +ai(a){this.N2(0)}, +bb(a){var s=A.j6(a,1/0),r=s.b3(this.A.m2(s)).a +if(isFinite(r))return r +return 0}, +b7(a){var s=A.j6(a,1/0),r=s.b3(this.A.m2(s)).a +if(isFinite(r))return r +return 0}, +ba(a){var s=A.j6(1/0,a),r=s.b3(this.A.m2(s)).b +if(isFinite(r))return r +return 0}, +b6(a){var s=A.j6(1/0,a),r=s.b3(this.A.m2(s)).b +if(isFinite(r))return r +return 0}, +cE(a){return a.b3(this.A.m2(a))}, +ds(a,b){var s,r,q,p,o,n,m=this.D$ +if(m==null)return null +s=this.A.pu(a) +r=m.eU(s,b) +if(r==null)return null +q=this.A +p=a.b3(q.m2(a)) +o=s.a +n=s.b +return r+q.px(p,o>=n&&s.c>=s.d?new A.I(A.A(0,o,n),A.A(0,s.c,s.d)):m.ap(B.R,s,m.gc8())).b}, +bx(){var s,r,q,p,o,n=this,m=t.k,l=m.a(A.t.prototype.gW.call(n)) +n.fy=l.b3(n.A.m2(l)) +if(n.D$!=null){s=n.A.pu(m.a(A.t.prototype.gW.call(n))) +m=n.D$ +m.toString +l=s.a +r=s.b +q=l>=r +m.c3(s,!(q&&s.c>=s.d)) +m=n.D$.b +m.toString +t.q.a(m) +p=n.A +o=n.gt(0) +m.a=p.px(o,q&&s.c>=s.d?new A.I(A.A(0,l,r),A.A(0,s.c,s.d)):n.D$.gt(0))}}} +A.HG.prototype={ +av(a){var s +this.e1(a) +s=this.D$ +if(s!=null)s.av(a)}, +ai(a){var s +this.e2(0) +s=this.D$ +if(s!=null)s.ai(0)}} +A.Nc.prototype={ +K(){return"GrowthDirection."+this.b}} +A.m6.prototype={ +gYu(){return!1}, +zH(a,b,c){if(a==null)a=this.w +switch(A.b8(this.a).a){case 0:return new A.ak(c,b,a,a) +case 1:return new A.ak(a,a,c,b)}}, +am5(){return this.zH(null,1/0,0)}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(!(b instanceof A.m6))return!1 +return b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.y===s.y&&b.Q===s.Q&&b.z===s.z}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this,r=A.b([s.a.k(0),s.b.k(0),s.c.k(0),"scrollOffset: "+B.d.ah(s.d,1),"precedingScrollExtent: "+B.d.ah(s.e,1),"remainingPaintExtent: "+B.d.ah(s.r,1)],t.s),q=s.f +if(q!==0)r.push("overlap: "+B.d.ah(q,1)) +r.push("crossAxisExtent: "+B.d.ah(s.w,1)) +r.push("crossAxisDirection: "+s.x.k(0)) +r.push("viewportMainAxisExtent: "+B.d.ah(s.y,1)) +r.push("remainingCacheExtent: "+B.d.ah(s.Q,1)) +r.push("cacheOrigin: "+B.d.ah(s.z,1)) +return"SliverConstraints("+B.b.bn(r,", ")+")"}} +A.Rc.prototype={ +d5(){return"SliverGeometry"}} +A.vZ.prototype={} +A.Rf.prototype={ +k(a){return A.r(this.a).k(0)+"@(mainAxis: "+A.k(this.c)+", crossAxis: "+A.k(this.d)+")"}} +A.m9.prototype={ +k(a){var s=this.a +return"layoutOffset="+(s==null?"None":B.d.ah(s,1))}} +A.m8.prototype={} +A.oo.prototype={ +V4(a){var s=this.a +a.dC(s.a,s.b,0,1)}, +k(a){return"paintOffset="+this.a.k(0)}} +A.ma.prototype={} +A.d1.prototype={ +gW(){return t.r.a(A.t.prototype.gW.call(this))}, +ghB(){return this.gkP()}, +gkP(){var s=this,r=t.r +switch(A.b8(r.a(A.t.prototype.gW.call(s)).a).a){case 0:return new A.x(0,0,0+s.dy.c,0+r.a(A.t.prototype.gW.call(s)).w) +case 1:return new A.x(0,0,0+r.a(A.t.prototype.gW.call(s)).w,0+s.dy.c)}}, +pl(){}, +XI(a,b,c){var s,r=this +if(c>=0&&c=0&&b0)return Math.max(0,this.a*B.d.oo(a/s)-1) +return 0}, +aax(a){var s,r,q=this +if(q.f){s=q.c +r=q.e +return q.a*s-a-r-(s-r)}return a}, +CK(a){var s=this,r=s.a,q=B.f.bh(a,r) +return new A.alj(B.f.jw(a,r)*s.b,s.aax(q*s.c),s.d,s.e)}, +VO(a){var s +if(a===0)return 0 +s=this.b +return s*(B.f.jw(a-1,this.a)+1)-(s-this.d)}} +A.ali.prototype={} +A.Re.prototype={ +Lw(a){var s=Math.max(0,a.w-16)/2,r=s/this.d +return new A.all(2,r+16,s+16,r,s,A.y5(a.x))}} +A.vY.prototype={ +k(a){return"crossAxisOffset="+A.k(this.w)+"; "+this.a3B(0)}} +A.Q3.prototype={ +eg(a){if(!(a.b instanceof A.vY))a.b=new A.vY(!1,null,null)}, +sa0i(a){var s,r,q=this +if(q.eB===a)return +s=!0 +if(A.r(a)===A.r(q.eB)){r=q.eB +s=r.d!==a.d}if(s)q.a_() +q.eB=a}, +qJ(a){var s=a.b +s.toString +s=t.h5.a(s).w +s.toString +return s}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8=this,a9=null,b0=t.r.a(A.t.prototype.gW.call(a8)),b1=a8.y1 +b1.R8=!1 +s=b0.d +r=s+b0.z +q=r+b0.Q +p=a8.eB.Lw(b0) +o=p.b +n=o>1e-10?p.a*B.d.jw(r,o):0 +m=isFinite(q)?p.a_Y(q):a9 +if(a8.a4$!=null){l=a8.amy(n) +a8.uW(l,m!=null?a8.amz(m):0)}else a8.uW(0,0) +k=p.CK(n) +if(a8.a4$==null)if(!a8.US(n,k.a)){j=p.VO(b1.guV()) +a8.dy=A.m7(a9,!1,a9,a9,j,0,0,j,a9) +b1.ve() +return}i=k.a +h=i+k.c +o=a8.a4$ +o.toString +o=o.b +o.toString +g=t.U +o=g.a(o).b +o.toString +f=o-1 +o=t.h5 +e=a9 +for(;f>=n;--f){d=p.CK(f) +c=d.c +b=a8.arv(b0.zH(d.d,c,c)) +a=b.b +a.toString +o.a(a) +a0=d.a +a.a=a0 +a.w=d.b +if(e==null)e=b +h=Math.max(h,a0+c)}if(e==null){c=a8.a4$ +c.toString +c.hp(k.a_O(b0)) +e=a8.a4$ +c=e.b +c.toString +o.a(c) +c.a=i +c.w=k.b}c=e.b +c.toString +c=g.a(c).b +c.toString +f=c+1 +c=A.n(a8).i("a9.1") +a=m!=null +for(;;){if(!(!a||f<=m)){a1=!1 +break}d=p.CK(f) +a0=d.c +a2=b0.zH(d.d,a0,a0) +a3=e.b +a3.toString +b=c.a(a3).am$ +if(b!=null){a3=b.b +a3.toString +a3=g.a(a3).b +a3.toString +a3=a3!==f}else a3=!0 +if(a3){b=a8.aru(a2,e) +if(b==null){a1=!0 +break}}else b.hp(a2) +a3=b.b +a3.toString +o.a(a3) +a4=d.a +a3.a=a4 +a3.w=d.b +h=Math.max(h,a4+a0);++f +e=b}o=a8.c6$ +o.toString +o=o.b +o.toString +o=g.a(o).b +o.toString +a5=a1?h:b1.WP(b0,n,o,i,h) +a6=a8.zR(b0,Math.min(s,i),h) +a7=a8.Hy(b0,i,h) +a8.dy=A.m7(a7,a5>a6||s>0||b0.f!==0,a9,a9,a5,a6,0,a5,a9) +if(a5===h)b1.R8=!0 +b1.ve()}} +A.Q4.prototype={ +bx(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=null,a5={},a6=t.r.a(A.t.prototype.gW.call(a3)),a7=a3.y1 +a7.R8=!1 +s=a6.d +r=s+a6.z +q=r+a6.Q +p=a6.am5() +if(a3.a4$==null)if(!a3.UR()){a3.dy=B.Ap +a7.ve() +return}a5.a=null +o=a3.a4$ +n=o.b +n.toString +m=t.U +if(m.a(n).a==null){n=A.n(a3).i("a9.1") +l=0 +for(;;){if(o!=null){k=o.b +k.toString +k=m.a(k).a==null}else k=!1 +if(!k)break +k=o.b +k.toString +o=n.a(k).am$;++l}a3.uW(l,0) +if(a3.a4$==null)if(!a3.UR()){a3.dy=B.Ap +a7.ve() +return}}o=a3.a4$ +n=o.b +n.toString +n=m.a(n).a +n.toString +j=n +i=a4 +for(;j>r;j=h,i=o){o=a3.Jy(p,!0) +if(o==null){n=a3.a4$ +k=n.b +k.toString +m.a(k).a=0 +if(r===0){n.c3(p,!0) +o=a3.a4$ +if(a5.a==null)a5.a=o +i=o +break}else{a3.dy=A.m7(a4,!1,a4,a4,0,0,0,0,-r) +return}}n=a3.a4$ +n.toString +h=j-a3.pg(n) +if(h<-1e-10){a3.dy=A.m7(a4,!1,a4,a4,0,0,0,0,-h) +a7=a3.a4$.b +a7.toString +m.a(a7).a=0 +return}n=o.b +n.toString +m.a(n).a=h +if(a5.a==null)a5.a=o}if(r<1e-10)for(;;){n=a3.a4$ +n.toString +n=n.b +n.toString +m.a(n) +k=n.b +k.toString +if(!(k>0))break +n=n.a +n.toString +o=a3.Jy(p,!0) +k=a3.a4$ +k.toString +h=n-a3.pg(k) +k=a3.a4$.b +k.toString +m.a(k).a=0 +if(h<-1e-10){a3.dy=A.m7(a4,!1,a4,a4,0,0,0,0,-h) +return}}if(i==null){o.c3(p,!0) +a5.a=o}a5.b=!0 +a5.c=o +n=o.b +n.toString +m.a(n) +k=n.b +k.toString +a5.d=k +n=n.a +n.toString +a5.e=n+a3.pg(o) +g=new A.aih(a5,a3,p) +for(f=0;a5.es+a6.r||s>0,a4,a4,a,a1,0,a,a4) +if(a===m)a7.R8=!0 +a7.ve()}} +A.aih.prototype={ +$0(){var s,r,q,p=this.a,o=p.c,n=p.a +if(o==n)p.b=!1 +s=this.b +o=o.b +o.toString +r=p.c=A.n(s).i("a9.1").a(o).am$ +o=r==null +if(o)p.b=!1 +q=++p.d +if(!p.b){if(!o){o=r.b +o.toString +o=t.U.a(o).b +o.toString +q=o!==q +o=q}else o=!0 +q=this.c +if(o){r=s.XX(q,n,!0) +p.c=r +if(r==null)return!1}else r.c3(q,!0) +o=p.a=p.c}else o=r +n=o.b +n.toString +t.U.a(n) +q=p.e +n.a=q +p.e=q+s.pg(o) +return!0}, +$S:62} +A.jm.prototype={$icx:1} +A.ail.prototype={ +eg(a){}} +A.fO.prototype={ +k(a){var s=this.b,r=this.ra$?"keepAlive; ":"" +return"index="+A.k(s)+"; "+r+this.a3A(0)}} +A.rr.prototype={ +eg(a){if(!(a.b instanceof A.fO))a.b=new A.fO(!1,null,null)}, +ik(a){var s +this.MP(a) +s=a.b +s.toString +if(!t.U.a(s).c)this.y1.If(t.x.a(a))}, +Jx(a,b,c){this.Dq(0,b,c)}, +wb(a,b){var s,r=this,q=a.b +q.toString +t.U.a(q) +if(!q.c){r.a1M(a,b) +r.y1.If(a) +r.a_()}else{s=r.y2 +if(s.h(0,q.b)===a)s.F(0,q.b) +r.y1.If(a) +q=q.b +q.toString +s.m(0,q,a)}}, +F(a,b){var s=b.b +s.toString +t.U.a(s) +if(!s.c){this.a1N(0,b) +return}this.y2.F(0,s.b) +this.mS(b)}, +Eu(a,b){this.Bi(new A.aii(this,a,b),t.r)}, +OB(a){var s,r=this,q=a.b +q.toString +t.U.a(q) +if(q.ra$){r.F(0,a) +s=q.b +s.toString +r.y2.m(0,s,a) +a.b=q +r.MP(a) +q.c=!0}else r.y1.ZG(a)}, +av(a){var s +this.a4v(a) +for(s=this.y2,s=new A.dl(s,s.r,s.e);s.u();)s.d.av(a)}, +ai(a){var s +this.a4w(0) +for(s=this.y2,s=new A.dl(s,s.r,s.e);s.u();)s.d.ai(0)}, +fz(){this.Ml() +var s=this.y2 +new A.bf(s,A.n(s).i("bf<2>")).aj(0,this.gKI())}, +bg(a){var s +this.xt(a) +s=this.y2 +new A.bf(s,A.n(s).i("bf<2>")).aj(0,a)}, +eS(a){this.xt(a)}, +ghB(){var s=this,r=s.dy,q=!1 +if(r!=null)if(!r.w){r=s.a4$ +r=r!=null&&r.fy!=null}else r=q +else r=q +if(r){r=s.a4$.gt(0) +return new A.x(0,0,0+r.a,0+r.b)}return A.d1.prototype.ghB.call(s)}, +US(a,b){var s +this.Eu(a,null) +s=this.a4$ +if(s!=null){s=s.b +s.toString +t.U.a(s).a=b +return!0}this.y1.R8=!0 +return!1}, +UR(){return this.US(0,0)}, +Jy(a,b){var s,r,q,p=this,o=p.a4$ +o.toString +o=o.b +o.toString +s=t.U +o=s.a(o).b +o.toString +r=o-1 +p.Eu(r,null) +o=p.a4$ +o.toString +q=o.b +q.toString +q=s.a(q).b +q.toString +if(q===r){o.c3(a,b) +return p.a4$}p.y1.R8=!0 +return null}, +arv(a){return this.Jy(a,!1)}, +XX(a,b,c){var s,r,q,p=b.b +p.toString +s=t.U +p=s.a(p).b +p.toString +r=p+1 +this.Eu(r,b) +p=b.b +p.toString +q=A.n(this).i("a9.1").a(p).am$ +if(q!=null){p=q.b +p.toString +p=s.a(p).b +p.toString +p=p===r}else p=!1 +if(p){q.c3(a,c) +return q}this.y1.R8=!0 +return null}, +aru(a,b){return this.XX(a,b,!1)}, +amy(a){var s,r=this.a4$,q=A.n(this).i("a9.1"),p=t.U,o=0 +for(;;){if(r!=null){s=r.b +s.toString +s=p.a(s).b +s.toString +s=sa}else s=!1 +if(!s)break;++o +s=r.b +s.toString +r=q.a(s).ca$}return o}, +uW(a,b){var s={} +s.a=a +s.b=b +this.Bi(new A.aik(s,this),t.r)}, +pg(a){var s +switch(A.b8(t.r.a(A.t.prototype.gW.call(this)).a).a){case 0:s=a.gt(0).a +break +case 1:s=a.gt(0).b +break +default:s=null}return s}, +Jt(a,b,c){var s,r,q=this.c6$,p=A.aGQ(a) +for(s=A.n(this).i("a9.1");q!=null;){if(this.arb(p,q,b,c))return!0 +r=q.b +r.toString +q=s.a(r).ca$}return!1}, +HF(a){var s=a.b +s.toString +return t.U.a(s).a}, +pi(a){var s=t.MR.a(a.b) +return(s==null?null:s.b)!=null&&!this.y2.az(0,s.b)}, +cP(a,b){if(!this.pi(a))b.D9() +else this.am3(a,b)}, +aA(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null +if(c.a4$==null)return +s=t.r +r=!0 +switch(A.mJ(s.a(A.t.prototype.gW.call(c)).a,s.a(A.t.prototype.gW.call(c)).b).a){case 0:q=a0.V(0,new A.j(0,c.dy.c)) +p=B.NF +o=B.e9 +break +case 1:q=a0 +p=B.e9 +o=B.i9 +r=!1 +break +case 2:q=a0 +p=B.i9 +o=B.e9 +r=!1 +break +case 3:q=a0.V(0,new A.j(c.dy.c,0)) +p=B.O0 +o=B.i9 +break +default:r=b +q=r +o=q +p=o}n=c.a4$ +for(m=A.n(c).i("a9.1"),l=t.U;n!=null;){k=n.b +k.toString +k=l.a(k).a +k.toString +j=k-s.a(A.t.prototype.gW.call(c)).d +i=c.qJ(n) +k=q.a +h=p.a +k=k+h*j+o.a*i +g=q.b +f=p.b +g=g+f*j+o.b*i +e=new A.j(k,g) +if(r){d=c.pg(n) +e=new A.j(k+h*d,g+f*d)}if(j0)a.dm(n,e) +k=n.b +k.toString +n=m.a(k).am$}}} +A.aii.prototype={ +$1(a){var s,r=this.a,q=r.y2,p=this.b,o=this.c +if(q.az(0,p)){s=q.F(0,p) +q=s.b +q.toString +t.U.a(q) +r.mS(s) +s.b=q +r.Dq(0,s,o) +q.c=!1}else r.y1.aod(p,o)}, +$S:177} +A.aik.prototype={ +$1(a){var s,r,q,p +for(s=this.a,r=this.b;s.a>0;){q=r.a4$ +q.toString +r.OB(q);--s.a}while(s.b>0){q=r.c6$ +q.toString +r.OB(q);--s.b}s=r.y2 +q=A.n(s).i("bf<2>") +p=q.i("aY") +s=A.a6(new A.aY(new A.bf(s,q),new A.aij(),p),p.i("o.E")) +B.b.aj(s,r.y1.gauJ())}, +$S:177} +A.aij.prototype={ +$1(a){var s=a.b +s.toString +return!t.U.a(s).ra$}, +$S:349} +A.HI.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.U;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.U;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.YI.prototype={} +A.YJ.prototype={} +A.ZI.prototype={ +ai(a){this.tn(0)}} +A.ZJ.prototype={} +A.CU.prototype={ +gHn(){var s=this,r=t.r +switch(A.mJ(r.a(A.t.prototype.gW.call(s)).a,r.a(A.t.prototype.gW.call(s)).b).a){case 0:r=s.bW.d +break +case 1:r=s.bW.a +break +case 2:r=s.bW.b +break +case 3:r=s.bW.c +break +default:r=null}return r}, +galS(){var s=this,r=t.r +switch(A.mJ(r.a(A.t.prototype.gW.call(s)).a,r.a(A.t.prototype.gW.call(s)).b).a){case 0:r=s.bW.b +break +case 1:r=s.bW.c +break +case 2:r=s.bW.d +break +case 3:r=s.bW.a +break +default:r=null}return r}, +gaoj(){switch(A.b8(t.r.a(A.t.prototype.gW.call(this)).a).a){case 0:var s=this.bW +s=s.gct(0)+s.gcC(0) +break +case 1:s=this.bW.gfq() +break +default:s=null}return s}, +eg(a){if(!(a.b instanceof A.oo))a.b=new A.oo(B.i)}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=t.r,a5=a4.a(A.t.prototype.gW.call(a2)),a6=new A.aie(a2,a5),a7=new A.aid(a2,a5),a8=a2.bW +a8.toString +s=a2.gHn() +a2.galS() +r=a8.alT(A.b8(a4.a(A.t.prototype.gW.call(a2)).a)) +q=a2.gaoj() +if(a2.D$==null){p=a6.$2$from$to(0,r) +a2.dy=A.m7(a7.$2$from$to(0,r),!1,a3,a3,r,Math.min(p,a5.r),0,r,a3) +return}o=a6.$2$from$to(0,s) +n=a5.f +if(n>0)n=Math.max(0,n-o) +a4=a2.D$ +a4.toString +m=Math.max(0,a5.d-s) +l=Math.min(0,a5.z+s) +k=a5.r +j=a6.$2$from$to(0,s) +i=a5.Q +h=a7.$2$from$to(0,s) +g=Math.max(0,a5.w-q) +f=a5.a +e=a5.b +a4.c3(new A.m6(f,e,a5.c,m,s+a5.e,n,k-j,g,a5.x,a5.y,l,i-h),!0) +d=a2.D$.dy +a4=d.y +if(a4!=null){a2.dy=A.m7(a3,!1,a3,a3,0,0,0,0,a4) +return}c=d.a +b=a7.$2$from$to(0,s) +a4=s+c +m=r+c +a=a7.$2$from$to(a4,m) +a0=a6.$2$from$to(a4,m) +a1=o+a0 +a4=d.c +l=d.d +p=Math.min(o+Math.max(a4,l+a0),k) +k=d.b +l=Math.min(a1+l,p) +i=Math.min(b+a+d.z,i) +j=d.e +a4=Math.max(a1+a4,o+d.r) +a2.dy=A.m7(i,d.x,a4,l,r+j,p,k,m,a3) +switch(A.mJ(f,e).a){case 0:a4=a6.$2$from$to(a8.d+c,a8.gct(0)+a8.gcC(0)+c) +break +case 3:a4=a6.$2$from$to(a8.c+c,a8.gfq()+c) +break +case 1:a4=a6.$2$from$to(0,a8.a) +break +case 2:a4=a6.$2$from$to(0,a8.b) +break +default:a4=a3}m=a2.D$.b +m.toString +t.jB.a(m) +switch(A.b8(f).a){case 0:a4=new A.j(a4,a8.b) +break +case 1:a4=new A.j(a8.a,a4) +break +default:a4=a3}m.a=a4}, +Jt(a,b,c){var s,r,q,p,o=this,n=o.D$ +if(n!=null&&n.dy.r>0){n=n.b +n.toString +t.jB.a(n) +s=o.zR(t.r.a(A.t.prototype.gW.call(o)),0,o.gHn()) +r=o.D$ +r.toString +q=o.qJ(r) +n=n.a +a.c.push(new A.xj(new A.j(-n.a,-n.b))) +p=r.gara().$3$crossAxisPosition$mainAxisPosition(a,b-q,c-s) +a.C0() +return p}return!1}, +qJ(a){var s +switch(A.b8(t.r.a(A.t.prototype.gW.call(this)).a).a){case 0:s=this.bW.b +break +case 1:s=this.bW.a +break +default:s=null}return s}, +HF(a){return this.gHn()}, +cP(a,b){var s=a.b +s.toString +t.jB.a(s).V4(b)}, +aA(a,b){var s,r=this.D$ +if(r!=null&&r.dy.w){s=r.b +s.toString +a.dm(r,b.V(0,t.jB.a(s).a))}}} +A.aie.prototype={ +$2$from$to(a,b){return this.a.zR(this.b,a,b)}, +$S:178} +A.aid.prototype={ +$2$from$to(a,b){return this.a.Hy(this.b,a,b)}, +$S:178} +A.Q5.prototype={ +ajN(){if(this.bW!=null)return +this.bW=this.D}, +scl(a,b){var s=this +if(s.D.j(0,b))return +s.D=b +s.bW=null +s.a_()}, +sbC(a){var s=this +if(s.cb===a)return +s.cb=a +s.bW=null +s.a_()}, +bx(){this.ajN() +this.a34()}} +A.YH.prototype={ +av(a){var s +this.e1(a) +s=this.D$ +if(s!=null)s.av(a)}, +ai(a){var s +this.e2(0) +s=this.D$ +if(s!=null)s.ai(0)}} +A.dN.prototype={ +gp6(){var s=this +return s.e!=null||s.f!=null||s.r!=null||s.w!=null||s.x!=null||s.y!=null}, +Kv(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.w,d=g.f +$label0$0:{s=e!=null +r=f +q=!1 +if(s){q=d!=null +r=d +p=e}else p=f +if(q){o=s?r:d +if(o==null)o=A.cp(o) +q=a.a-o-p +break $label0$0}q=g.x +break $label0$0}n=g.e +m=g.r +$label1$1:{l=n!=null +k=f +j=!1 +if(l){j=m!=null +k=m +i=n}else i=f +if(j){h=l?k:m +if(h==null)h=A.cp(h) +j=a.b-h-i +break $label1$1}j=g.y +break $label1$1}q=q==null?f:Math.max(0,q) +return A.le(j==null?f:Math.max(0,j),q)}, +k(a){var s=this,r=A.b([],t.s),q=s.e +if(q!=null)r.push("top="+A.j0(q)) +q=s.f +if(q!=null)r.push("right="+A.j0(q)) +q=s.r +if(q!=null)r.push("bottom="+A.j0(q)) +q=s.w +if(q!=null)r.push("left="+A.j0(q)) +q=s.x +if(q!=null)r.push("width="+A.j0(q)) +q=s.y +if(q!=null)r.push("height="+A.j0(q)) +if(r.length===0)r.push("not positioned") +r.push(s.xq(0)) +return B.b.bn(r,"; ")}} +A.Rz.prototype={ +K(){return"StackFit."+this.b}} +A.vG.prototype={ +eg(a){if(!(a.b instanceof A.dN))a.b=new A.dN(null,null,B.i)}, +gGj(){var s=this,r=s.I +return r==null?s.I=s.X.Y(s.a2):r}, +sfO(a){var s=this +if(s.X.j(0,a))return +s.X=a +s.I=null +s.a_()}, +sbC(a){var s=this +if(s.a2==a)return +s.a2=a +s.I=null +s.a_()}, +sAU(a){if(this.S!==a){this.S=a +this.a_()}}, +sjH(a){var s=this +if(a!==s.a9){s.a9=a +s.aC() +s.aY()}}, +bb(a){return A.rs(this.a4$,new A.aip(a))}, +b7(a){return A.rs(this.a4$,new A.ain(a))}, +ba(a){return A.rs(this.a4$,new A.aio(a))}, +b6(a){return A.rs(this.a4$,new A.aim(a))}, +fk(a){return this.Af(a)}, +ds(a,b){var s,r,q,p,o,n,m,l=this +switch(l.S.a){case 0:s=new A.ak(0,a.b,0,a.d) +break +case 1:s=A.n_(new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d))) +break +case 2:s=a +break +default:s=null}r=l.gGj() +q=l.ap(B.R,a,l.gc8()) +p=l.a4$ +o=A.n(l).i("a9.1") +n=null +while(p!=null){n=A.tT(n,A.aJL(p,q,s,r,b)) +m=p.b +m.toString +p=o.a(m).am$}return n}, +cE(a){return this.T4(a,A.fE())}, +T4(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g +if(this.c0$===0){s=a.a +r=a.b +q=A.A(1/0,s,r) +p=a.c +o=a.d +n=A.A(1/0,p,o) +return isFinite(q)&&isFinite(n)?new A.I(A.A(1/0,s,r),A.A(1/0,p,o)):new A.I(A.A(0,s,r),A.A(0,p,o))}m=a.a +l=a.c +switch(this.S.a){case 0:s=new A.ak(0,a.b,0,a.d) +break +case 1:s=A.n_(new A.I(A.A(1/0,m,a.b),A.A(1/0,l,a.d))) +break +case 2:s=a +break +default:s=null}k=this.a4$ +for(r=t.B,j=l,i=m,h=!1;k!=null;){q=k.b +q.toString +r.a(q) +if(!q.gp6()){g=b.$2(k,s) +i=Math.max(i,g.a) +j=Math.max(j,g.b) +h=!0}k=q.am$}return h?new A.I(i,j):new A.I(A.A(1/0,m,a.b),A.A(1/0,l,a.d))}, +bx(){var s,r,q,p,o,n,m,l=this,k="RenderBox was not laid out: ",j=t.k.a(A.t.prototype.gW.call(l)) +l.n=!1 +l.fy=l.T4(j,A.mM()) +s=l.gGj() +r=l.a4$ +for(q=t.B,p=t.v;r!=null;){o=r.b +o.toString +q.a(o) +if(!o.gp6()){n=l.fy +if(n==null)n=A.a0(A.a5(k+A.r(l).k(0)+"#"+A.bi(l))) +m=r.fy +o.a=s.lo(p.a(n.a0(0,m==null?A.a0(A.a5(k+A.r(r).k(0)+"#"+A.bi(r))):m)))}else{n=l.fy +l.n=A.aJM(r,o,n==null?A.a0(A.a5(k+A.r(l).k(0)+"#"+A.bi(l))):n,s)||l.n}r=o.am$}}, +cz(a,b){return this.va(a,b)}, +BW(a,b){this.qU(a,b)}, +aA(a,b){var s,r=this,q=r.a9!==B.n&&r.n,p=r.ab +if(q){q=r.cx +q===$&&A.a() +s=r.gt(0) +p.saB(0,a.lQ(q,b,new A.x(0,0,0+s.a,0+s.b),r.gZb(),r.a9,p.a))}else{p.saB(0,null) +r.BW(a,b)}}, +l(){this.ab.saB(0,null) +this.fb()}, +mN(a){var s +switch(this.a9.a){case 0:return null +case 1:case 2:case 3:if(this.n){s=this.gt(0) +s=new A.x(0,0,0+s.a,0+s.b)}else s=null +return s}}} +A.aip.prototype={ +$1(a){return a.ap(B.aK,this.a,a.gbE())}, +$S:38} +A.ain.prototype={ +$1(a){return a.ap(B.ab,this.a,a.gbj())}, +$S:38} +A.aio.prototype={ +$1(a){return a.ap(B.aL,this.a,a.gbD())}, +$S:38} +A.aim.prototype={ +$1(a){return a.ap(B.b8,this.a,a.gbL())}, +$S:38} +A.CN.prototype={ +eS(a){var s=this.tA() +if(s!=null)a.$1(s)}, +tA(){var s,r=this.rb,q=this.a4$,p=A.n(this).i("a9.1"),o=0 +for(;;){if(!(o=r.b&&r.c>=r.d) +r=s.D$ +if(r!=null)r.c3(s.gW(),q) +if(q&&s.D$!=null)r=s.D$.gt(0) +else{r=s.gW() +r=new A.I(A.A(0,r.a,r.b),A.A(0,r.c,r.d))}s.dy=r}, +geQ(){return!0}, +aA(a,b){var s=this.D$ +if(s!=null)a.dm(s,b)}, +cP(a,b){var s=this.go +s.toString +b.dZ(0,s) +this.a2O(a,b)}, +an1(){var s,r,q,p,o,n,m,l=this +try{$.m1.toString +$.a3() +s=A.aID() +r=l.ch.a.Vp(s) +l.ala() +q=l.fx +p=l.fr +o=l.dy +p=p.b.b3(o.a6(0,p.c)) +o=$.dy() +n=o.d +m=p.dE(0,n==null?o.gcu():n) +p=q.gfl().a.style +A.Z(p,"width",A.k(m.a)+"px") +A.Z(p,"height",A.k(m.b)+"px") +q.at=q.Eh() +q.b.Cg(r,q)}finally{}}, +ala(){var s,r,q,p,o,n=null,m=this.gkP(),l=m.gaV(),k=m.gaV(),j=this.ch,i=t.ev,h=j.a.X_(0,new A.j(l.a,0),i),g=n +switch(A.aM().a){case 0:g=j.a.X_(0,new A.j(k.a,m.d-1),i) +break +case 1:case 2:case 3:case 4:case 5:break}l=h==null +if(l&&g==null)return +if(!l&&g!=null){l=h.f +k=h.r +j=h.e +i=h.w +A.aE4(new A.kJ(g.a,g.b,g.c,g.d,j,l,k,i)) +return}s=A.aM()===B.ad +r=l?g:h +l=r.f +k=r.r +j=r.e +i=r.w +q=s?r.a:n +p=s?r.b:n +o=s?r.c:n +A.aE4(new A.kJ(q,p,o,s?r.d:n,j,l,k,i))}, +gkP(){var s=this.dy.a6(0,this.fr.c) +return new A.x(0,0,0+s.a,0+s.b)}, +ghB(){var s,r=this.go +r.toString +s=this.dy +return A.dK(r,new A.x(0,0,0+s.a,0+s.b))}} +A.YN.prototype={ +av(a){var s +this.e1(a) +s=this.D$ +if(s!=null)s.av(a)}, +ai(a){var s +this.e2(0) +s=this.D$ +if(s!=null)s.ai(0)}} +A.a3B.prototype={ +K(){return"CacheExtentStyle."+this.b}} +A.alr.prototype={ +K(){return"SliverPaintOrder."+this.b}} +A.oa.prototype={ +k(a){return"RevealedOffset(offset: "+A.k(this.a)+", rect: "+this.b.k(0)+")"}} +A.vI.prototype={ +dU(a){this.i5(a) +a.zB(B.zS)}, +eS(a){var s=this.gVC() +new A.aY(s,new A.ais(),A.a2(s).i("aY<1>")).aj(0,a)}, +shi(a){if(a===this.n)return +this.n=a +this.a_()}, +sWd(a){if(a===this.I)return +this.I=a +this.a_()}, +sck(a,b){var s=this,r=s.X +if(b===r)return +if(s.y!=null)r.J(0,s.gn6()) +s.X=b +if(s.y!=null)b.Z(0,s.gn6()) +s.a_()}, +samv(a){if(250===this.a2)return +this.a2=250 +this.a_()}, +samw(a){if(a===this.a9)return +this.a9=a +this.a_()}, +sZ9(a){var s=this +if(a!==s.ab){s.ab=a +s.aC() +s.aY()}}, +sjH(a){var s=this +if(a!==s.au){s.au=a +s.aC() +s.aY()}}, +av(a){this.a4y(a) +this.X.Z(0,this.gn6())}, +ai(a){this.X.J(0,this.gn6()) +this.a4z(0)}, +bb(a){return 0}, +b7(a){return 0}, +ba(a){return 0}, +b6(a){return 0}, +geQ(){return!0}, +JQ(a,b,c,d,e,f,g,h,a0,a1,a2){var s,r,q,p,o,n,m,l,k=this,j=A.b0D(k.X.k4,e),i=f+h +for(s=f,r=0;c!=null;){q=a2<=0?0:a2 +p=Math.max(b,-q) +o=b-p +c.c3(new A.m6(k.n,e,j,q,r,i-s,Math.max(0,a1-s+f),d,k.I,g,p,Math.max(0,a0+o)),!0) +n=c.dy +m=n.y +if(m!=null)return m +l=s+n.b +if(n.w||a2>0)k.L_(c,l,e) +else k.L_(c,-a2+f,e) +i=Math.max(l+n.c,i) +m=n.a +a2-=m +r+=m +s+=n.d +m=n.z +if(m!==0){a0-=m-o +b=Math.min(p+m,0)}k.a_o(e,n) +c=a.$1(c)}return 0}, +mN(a){var s,r,q,p,o,n +switch(this.au.a){case 0:return null +case 1:case 2:case 3:break}s=this.gt(0) +r=0+s.a +q=0+s.b +s=t.r +if(s.a(A.t.prototype.gW.call(a)).f===0||!isFinite(s.a(A.t.prototype.gW.call(a)).y))return new A.x(0,0,r,q) +p=s.a(A.t.prototype.gW.call(a)).y-s.a(A.t.prototype.gW.call(a)).r+s.a(A.t.prototype.gW.call(a)).f +o=0 +n=0 +switch(A.mJ(this.n,s.a(A.t.prototype.gW.call(a)).b).a){case 2:n=0+p +break +case 0:q-=p +break +case 1:o=0+p +break +case 3:r-=p +break}return new A.x(o,n,r,q)}, +Ic(a){var s,r,q,p,o=this +if(o.S==null){s=o.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}switch(A.b8(o.n).a){case 1:o.gt(0) +o.gt(0) +s=o.S +s.toString +r=o.gt(0) +q=o.gt(0) +p=o.S +p.toString +return new A.x(0,0-s,0+r.a,0+q.b+p) +case 0:o.gt(0) +s=o.S +s.toString +o.gt(0) +r=o.gt(0) +q=o.S +q.toString +return new A.x(0-s,0,0+r.a+q,0+o.gt(0).b)}}, +aA(a,b){var s,r,q,p=this +if(p.a4$==null)return +s=p.gXH()&&p.au!==B.n +r=p.aX +if(s){s=p.cx +s===$&&A.a() +q=p.gt(0) +r.saB(0,a.lQ(s,b,new A.x(0,0,0+q.a,0+q.b),p.gagS(),p.au,r.a))}else{r.saB(0,null) +p.Rs(a,b)}}, +l(){this.aX.saB(0,null) +this.fb()}, +Rs(a,b){var s,r,q,p,o,n,m +for(s=this.gVC(),r=s.length,q=b.a,p=b.b,o=0;o0 +else s=!0 +return s}, +$S:352} +A.air.prototype={ +$1(a){var s=this,r=s.c,q=s.a,p=s.b.VM(r,q.b) +return r.XI(s.d,q.a,p)}, +$S:176} +A.CW.prototype={ +eg(a){if(!(a.b instanceof A.ma))a.b=new A.ma(null,null,B.i)}, +salV(a){if(a===this.hn)return +this.hn=a +this.a_()}, +saV(a){if(a==this.du)return +this.du=a +this.a_()}, +gkc(){return!0}, +cE(a){return new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d))}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h=this +switch(A.b8(h.n).a){case 1:h.X.uM(h.gt(0).b) +break +case 0:h.X.uM(h.gt(0).a) +break}if(h.du==null){h.lD=h.hO=0 +h.rd=!1 +h.X.qz(0,0) +return}switch(A.b8(h.n).a){case 1:s=new A.am(h.gt(0).b,h.gt(0).a) +break +case 0:s=new A.am(h.gt(0).a,h.gt(0).b) +break +default:s=null}r=s.a +q=null +p=s.b +q=p +o=r +h.du.toString +n=10*h.c0$ +m=0 +do{s=h.X.at +s.toString +l=h.DW(o,q,s+0) +if(l!==0)h.X.I0(l) +else{s=h.X +k=h.hO +k===$&&A.a() +j=h.hn +k=Math.min(0,k+o*j) +i=h.lD +i===$&&A.a() +if(s.qz(k,Math.max(0,i-o*(1-j))))break}++m}while(m=a?s:r +f=e.S +f.toString +return e.JQ(e.guU(),A.A(s,-f,0),q,b,B.hL,j,a,o,k,p,h)}, +gXH(){return this.rd}, +a_o(a,b){var s,r=this +switch(a.a){case 0:s=r.lD +s===$&&A.a() +r.lD=s+b.a +break +case 1:s=r.hO +s===$&&A.a() +r.hO=s-b.a +break}if(b.x)r.rd=!0}, +L_(a,b,c){var s=a.b +s.toString +t.jB.a(s).a=this.VL(a,b,c)}, +Ko(a){var s=a.b +s.toString +return t.jB.a(s).a}, +LN(a,b){var s,r,q,p,o=this +switch(t.r.a(A.t.prototype.gW.call(a)).b.a){case 0:s=o.du +for(r=A.n(o).i("a9.1"),q=0;s!==a;){q+=s.dy.a +p=s.b +p.toString +s=r.a(p).am$}return q+b +case 1:r=o.du.b +r.toString +p=A.n(o).i("a9.1") +s=p.a(r).ca$ +for(q=0;s!==a;){q-=s.dy.a +r=s.b +r.toString +s=p.a(r).ca$}return q-b}}, +YM(a){var s,r,q,p=this +switch(t.r.a(A.t.prototype.gW.call(a)).b.a){case 0:s=p.du +for(r=A.n(p).i("a9.1");s!==a;){s.dy.toString +q=s.b +q.toString +s=r.a(q).am$}return 0 +case 1:r=p.du.b +r.toString +q=A.n(p).i("a9.1") +s=q.a(r).ca$ +while(s!==a){s.dy.toString +r=s.b +r.toString +s=q.a(r).ca$}return 0}}, +cP(a,b){var s=a.b +s.toString +t.jB.a(s).V4(b)}, +VM(a,b){var s,r=a.b +r.toString +s=t.jB.a(r).a +r=t.r +switch(A.mJ(r.a(A.t.prototype.gW.call(a)).a,r.a(A.t.prototype.gW.call(a)).b).a){case 2:r=b-s.b +break +case 1:r=b-s.a +break +case 0:r=a.dy.c-(b-s.b) +break +case 3:r=a.dy.c-(b-s.a) +break +default:r=null}return r}} +A.Q2.prototype={ +eg(a){if(!(a.b instanceof A.m8))a.b=new A.m8(null,null)}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=t.k.a(A.t.prototype.gW.call(e)) +if(e.a4$==null){switch(A.b8(e.n).a){case 1:s=new A.I(c.b,c.c) +break +case 0:s=new A.I(c.a,c.d) +break +default:s=d}e.fy=s +e.X.uM(0) +e.du=e.hn=0 +e.hO=!1 +e.X.qz(0,0) +return}switch(A.b8(e.n).a){case 1:s=new A.am(c.d,c.b) +break +case 0:s=new A.am(c.b,c.d) +break +default:s=d}r=s.a +q=d +p=s.b +q=p +o=r +for(s=c.a,n=c.b,m=c.c,l=c.d,k=d;;){j=e.X.at +j.toString +i=e.DW(o,q,j) +if(i!==0){j=e.X +h=j.at +h.toString +j.at=h+i +j.ch=!0}else{switch(A.b8(e.n).a){case 1:j=e.du +j===$&&A.a() +j=A.A(j,m,l) +break +case 0:j=e.du +j===$&&A.a() +j=A.A(j,s,n) +break +default:j=d}h=e.X +if(h.ax!==j){h.ax=j +h.ch=!0}g=e.hn +g===$&&A.a() +f=h.qz(0,Math.max(0,g-j)) +if(f){k=j +break}k=j}}switch(A.b8(e.n).a){case 1:s=new A.I(A.A(q,s,n),A.A(k,m,l)) +break +case 0:s=new A.I(A.A(k,s,n),A.A(q,m,l)) +break +default:s=d}e.fy=s}, +DW(a,b,c){var s,r,q,p,o,n=this +n.du=n.hn=0 +n.hO=c<0 +switch(n.a9.a){case 0:s=n.a2 +break +case 1:s=a*n.a2 +break +default:s=null}n.S=s +r=n.a4$ +q=Math.max(0,c) +p=Math.min(0,c) +o=Math.max(0,-c) +s.toString +return n.JQ(n.guU(),-s,r,b,B.hL,o,a,p,a+2*s,a+p,q)}, +gXH(){return this.hO}, +a_o(a,b){var s=this,r=s.hn +r===$&&A.a() +s.hn=r+b.a +if(b.x)s.hO=!0 +r=s.du +r===$&&A.a() +s.du=r+b.e}, +L_(a,b,c){var s=a.b +s.toString +t.Xp.a(s).a=b}, +Ko(a){var s=a.b +s.toString +s=t.Xp.a(s).a +s.toString +return this.VL(a,s,B.hL)}, +LN(a,b){var s,r,q,p=this.a4$ +for(s=A.n(this).i("a9.1"),r=0;p!==a;){r+=p.dy.a +q=p.b +q.toString +p=s.a(q).am$}return r+b}, +YM(a){var s,r,q=this.a4$ +for(s=A.n(this).i("a9.1");q!==a;){q.dy.toString +r=q.b +r.toString +q=s.a(r).am$}return 0}, +cP(a,b){var s=this.Ko(t.nl.a(a)) +b.dC(s.a,s.b,0,1)}, +VM(a,b){var s,r,q=a.b +q.toString +q=t.Xp.a(q).a +q.toString +s=t.r +r=A.mJ(s.a(A.t.prototype.gW.call(a)).a,s.a(A.t.prototype.gW.call(a)).b) +$label0$0:{if(B.aC===r||B.bU===r){q=b-q +break $label0$0}if(B.aR===r){q=this.gt(0).b-b-q +break $label0$0}if(B.ba===r){q=this.gt(0).a-b-q +break $label0$0}q=null}return q}} +A.iV.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=A.n(this).i("iV.0");s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=A.n(this).i("iV.0");s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.Dh.prototype={ +K(){return"ScrollDirection."+this.b}} +A.i8.prototype={ +wc(a,b,c,d){var s=d.a===0 +if(s){this.eD(b) +return A.dc(null,t.H)}else return this.kq(b,c,d)}, +k(a){var s=this,r=A.b([],t.s) +s.a3u(r) +r.push(A.r(s.w).k(0)) +r.push(s.r.k(0)) +r.push(A.k(s.fr)) +r.push(s.k4.k(0)) +return"#"+A.bi(s)+"("+B.b.bn(r,", ")+")"}, +dT(a){var s=this.at +if(s!=null)a.push("offset: "+B.d.ah(s,1))}} +A.oD.prototype={ +K(){return"WrapAlignment."+this.b}, +xX(a,b,c,d){var s,r,q=this +$label0$0:{if(B.dv===q){s=new A.am(d?a:0,b) +break $label0$0}if(B.Z3===q){s=B.dv.xX(a,b,c,!d) +break $label0$0}r=B.Z5===q +if(r&&c<2){s=B.dv.xX(a,b,c,d) +break $label0$0}if(B.Z4===q){s=new A.am(a/2,b) +break $label0$0}if(r){s=new A.am(0,a/(c-1)+b) +break $label0$0}if(B.Z6===q){s=a/c +s=new A.am(s/2,s+b) +break $label0$0}if(B.Z7===q){s=a/(c+1) +s=new A.am(s,s+b) +break $label0$0}s=null}return s}} +A.F1.prototype={ +K(){return"WrapCrossAlignment."+this.b}, +ga9S(){switch(this.a){case 0:var s=B.Z8 +break +case 1:s=B.mw +break +case 2:s=B.Z9 +break +default:s=null}return s}, +ga6B(){switch(this.a){case 0:var s=0 +break +case 1:s=1 +break +case 2:s=0.5 +break +default:s=null}return s}} +A.HO.prototype={ +avF(a,b,c,d,e){var s=this,r=s.a +if(r.a+b.a+d-e>1e-10)return new A.HO(b,a) +else{s.a=A.aoK(r,A.aoK(b,new A.I(d,0)));++s.b +if(c)s.c=a +return null}}} +A.kR.prototype={} +A.CX.prototype={ +sAn(a,b){if(this.n===b)return +this.n=b +this.a_()}, +sfO(a){if(this.I===a)return +this.I=a +this.a_()}, +ste(a,b){if(this.X===b)return +this.X=b +this.a_()}, +sava(a){if(this.a2===a)return +this.a2=a +this.a_()}, +savg(a){if(this.S===a)return +this.S=a +this.a_()}, +saoi(a){if(this.a9===a)return +this.a9=a +this.a_()}, +eg(a){if(!(a.b instanceof A.kR))a.b=new A.kR(null,null,B.i)}, +bb(a){var s,r,q,p,o,n=this +switch(n.n.a){case 0:s=n.a4$ +for(r=A.n(n).i("a9.1"),q=0;s!=null;){p=s.gbE() +o=B.aK.dY(s.dy,1/0,p) +q=Math.max(q,o) +p=s.b +p.toString +s=r.a(p).am$}return q +case 1:return n.ap(B.R,new A.ak(0,1/0,0,a),n.gc8()).a}}, +b7(a){var s,r,q,p,o,n=this +switch(n.n.a){case 0:s=n.a4$ +for(r=A.n(n).i("a9.1"),q=0;s!=null;){p=s.gbj() +o=B.ab.dY(s.dy,1/0,p) +q+=o +p=s.b +p.toString +s=r.a(p).am$}return q +case 1:return n.ap(B.R,new A.ak(0,1/0,0,a),n.gc8()).a}}, +ba(a){var s,r,q,p,o,n=this +switch(n.n.a){case 0:return n.ap(B.R,new A.ak(0,a,0,1/0),n.gc8()).b +case 1:s=n.a4$ +for(r=A.n(n).i("a9.1"),q=0;s!=null;){p=s.gbD() +o=B.aL.dY(s.dy,1/0,p) +q=Math.max(q,o) +p=s.b +p.toString +s=r.a(p).am$}return q}}, +b6(a){var s,r,q,p,o,n=this +switch(n.n.a){case 0:return n.ap(B.R,new A.ak(0,a,0,1/0),n.gc8()).b +case 1:s=n.a4$ +for(r=A.n(n).i("a9.1"),q=0;s!=null;){p=s.gbL() +o=B.b8.dY(s.dy,1/0,p) +q+=o +p=s.b +p.toString +s=r.a(p).am$}return q}}, +fk(a){return this.Af(a)}, +aat(a){var s +switch(this.n.a){case 0:s=a.a +break +case 1:s=a.b +break +default:s=null}return s}, +aae(a){var s +switch(this.n.a){case 0:s=a.b +break +case 1:s=a.a +break +default:s=null}return s}, +aaw(a,b){var s +switch(this.n.a){case 0:s=new A.j(a,b) +break +case 1:s=new A.j(b,a) +break +default:s=null}return s}, +gNu(){var s,r=this.ab +switch((r==null?B.al:r).a){case 1:r=!1 +break +case 0:r=!0 +break +default:r=null}switch(this.au.a){case 1:s=!1 +break +case 0:s=!0 +break +default:s=null}switch(this.n.a){case 0:r=new A.am(r,s) +break +case 1:r=new A.am(s,r) +break +default:r=null}return r}, +ds(a,b){var s,r,q,p,o,n,m,l=this,k=null,j={} +if(l.a4$==null)return k +switch(l.n.a){case 0:s=new A.ak(0,a.b,0,1/0) +break +case 1:s=new A.ak(0,1/0,0,a.d) +break +default:s=k}r=l.Ol(a,A.fE()) +q=r.a +p=k +o=r.b +p=o +n=q +m=A.aKY(n,a,l.n) +j.a=null +l.RF(p,n,m,new A.ait(j,s,b),new A.aiu(s)) +return j.a}, +cE(a){return this.alk(a)}, +alk(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null +switch(d.n.a){case 0:s=a.b +s=new A.am(new A.ak(0,s,0,1/0),s) +break +case 1:s=a.d +s=new A.am(new A.ak(0,1/0,0,s),s) +break +default:s=c}r=s.a +q=c +p=s.b +q=p +o=r +n=d.a4$ +for(s=A.n(d).i("a9.1"),m=0,l=0,k=0,j=0,i=0;n!=null;){h=A.aGU(n,o) +g=d.aat(h) +f=d.aae(h) +if(i>0&&k+g+d.X>q){m=Math.max(m,k) +l+=j+d.S +k=0 +j=0 +i=0}k+=g +j=Math.max(j,f) +if(i>0)k+=d.X;++i +e=n.b +e.toString +n=s.a(e).am$}l+=j +m=Math.max(m,k) +switch(d.n.a){case 0:s=new A.I(m,l) +break +case 1:s=new A.I(l,m) +break +default:s=c}return a.b3(s)}, +bx(){var s,r,q,p,o,n,m,l,k=this,j=t.k.a(A.t.prototype.gW.call(k)) +if(k.a4$==null){k.fy=new A.I(A.A(0,j.a,j.b),A.A(0,j.c,j.d)) +k.b9=!1 +return}s=k.Ol(j,A.mM()) +r=s.a +q=null +p=s.b +q=p +o=r +n=k.n +m=A.aKY(o,j,n) +k.fy=A.aEo(m,n) +n=m.a-o.a +l=m.b-o.b +k.b9=n<0||l<0 +k.RF(q,new A.I(n,l),m,A.b2Z(),A.b2Y())}, +Ol(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a="Pattern matching error" +switch(c.n.a){case 0:s=a0.b +s=new A.am(new A.ak(0,s,0,1/0),s) +break +case 1:s=a0.d +s=new A.am(new A.ak(0,1/0,0,s),s) +break +default:s=b}r=s.a +q=b +p=s.b +q=p +o=r +n=c.gNu().a +m=n +l=c.X +k=A.b([],t.M6) +j=c.a4$ +s=A.n(c).i("a9.1") +i=b +h=B.I +while(j!=null){g=A.aEo(a1.$2(j,o),c.n) +f=i==null +e=f?new A.HO(g,j):i.avF(j,g,m,l,q) +if(e!=null){k.push(e) +if(f)f=b +else{f=i.a +g=new A.I(f.b,f.a) +f=g}if(f==null)f=B.I +g=new A.I(h.a+f.a,Math.max(h.b,f.b)) +h=g +i=e}f=j.b +f.toString +j=s.a(f).am$}s=c.S +f=k.length +d=i.a +h=A.aoK(h,A.aoK(new A.I(s*(f-1),0),new A.I(d.b,d.a))) +return new A.am(new A.I(h.b,h.a),k)}, +RF(b3,b4,b5,b6,b7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this,a6=null,a7=a5.X,a8=Math.max(0,b4.b),a9=a5.gNu(),b0=a9.a,b1=a6,b2=a9.b +b1=b2 +s=a5.a9 +if(b1)s=s.ga9S() +r=a5.a2.xX(a8,a5.S,b3.length,b1) +q=r.a +p=a6 +o=r.b +p=o +n=b0?a5.gzS():a5.guU() +for(m=J.bb(b1?new A.cc(b3,A.a2(b3).i("cc<1>")):b3),l=b5.a,k=q;m.u();){j=m.gN(m) +i=j.a +h=i.b +g=j.b +f=Math.max(0,l-i.a) +e=a5.I.xX(f,a7,g,b0) +d=e.a +c=a6 +b=e.b +c=b +a=j.c +a0=g +a1=d +for(;;){if(!(a!=null&&a0>0))break +a2=A.aEo(b7.$1(a),a5.n) +a3=a6 +a4=a2.b +a3=a4 +b6.$2(a5.aaw(a1,k+s.ga6B()*(h-a3)),a) +a1+=a2.a+c +a=n.$1(a);--a0}k+=h+p}}, +cz(a,b){return this.va(a,b)}, +aA(a,b){var s,r=this,q=r.b9&&r.aX!==B.n,p=r.aL +if(q){q=r.cx +q===$&&A.a() +s=r.gt(0) +p.saB(0,a.lQ(q,b,new A.x(0,0,0+s.a,0+s.b),r.gWk(),r.aX,p.a))}else{p.saB(0,null) +r.qU(a,b)}}, +l(){this.aL.saB(0,null) +this.fb()}} +A.ait.prototype={ +$2(a,b){var s=this.a +s.a=A.tT(s.a,A.KY(b.eU(this.b,this.c),a.b))}, +$S:179} +A.aiu.prototype={ +$1(a){return a.ap(B.R,this.a,a.gc8())}, +$S:180} +A.YP.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.Qy;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.Qy;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.YQ.prototype={} +A.x0.prototype={} +A.rw.prototype={ +K(){return"SchedulerPhase."+this.b}} +A.ag9.prototype={} +A.kE.prototype={ +ZN(a){var s=this.dy$ +B.b.F(s,a) +if(s.length===0){s=$.aR() +s.fr=null +s.fx=$.aq}}, +a9C(a){var s,r,q,p,o,n,m,l,k,j=this.dy$,i=A.a6(j,t.xt) +for(o=i.length,n=0;n0)return!1 +if(h)A.a0(A.a5(j)) +s=i.y_(0) +h=s.gZp() +if(k.fx$.$2$priority$scheduler(h,k)){try{if(i.c===0)A.a0(A.a5(j));++i.d +i.y_(0) +o=i.c-1 +n=i.y_(o) +i.b[o]=null +i.c=o +if(o>0)i.a6T(n,0) +s.awJ()}catch(m){r=A.a1(m) +q=A.aH(m) +p=null +h=A.br("during a task callback") +l=p==null?null:new A.aja(p) +A.d6(new A.bO(r,q,"scheduler library",h,l,!1))}return i.c!==0}return!0}, +CZ(a,b,c){var s,r=this +if(c)r.l6() +s=++r.id$ +r.k1$.m(0,s,new A.x0(a)) +return r.id$}, +x6(a){return this.CZ(a,!1,!0)}, +x7(a,b){return this.CZ(a,b,!0)}, +a0r(a,b){return this.CZ(a,!1,b)}, +Vw(a){this.k1$.F(0,a) +this.k2$.E(0,a)}, +gap5(){var s=this +if(s.ok$==null){if(s.p2$===B.dm)s.l6() +s.ok$=new A.bB(new A.au($.aq,t.W),t.Q) +s.k4$.push(new A.aj8(s))}return s.ok$.a}, +gXc(){return this.p3$}, +SM(a){if(this.p3$===a)return +this.p3$=a +if(a)this.l6()}, +WO(){var s=$.aR() +if(s.ay==null){s.ay=this.gab1() +s.ch=$.aq}if(s.CW==null){s.CW=this.gabA() +s.cx=$.aq}}, +IE(){switch(this.p2$.a){case 0:case 4:this.l6() +return +case 1:case 2:case 3:return}}, +l6(){var s,r=this +if(!r.p1$)s=!(A.kE.prototype.gXc.call(r)&&r.bU$) +else s=!0 +if(s)return +r.WO() +$.aR() +s=$.ly +if(s==null){s=new A.qe(B.hI) +$.iZ.push(s.gxW()) +$.ly=s}s.l6() +r.p1$=!0}, +a0q(){if(this.p1$)return +this.WO() +$.aR() +var s=$.ly +if(s==null){s=new A.qe(B.hI) +$.iZ.push(s.gxW()) +$.ly=s}s.l6() +this.p1$=!0}, +LM(){var s,r,q=this +if(q.p4$||q.p2$!==B.dm)return +q.p4$=!0 +s=q.p1$ +$.aR() +r=$.ly +if(r==null){r=new A.qe(B.hI) +$.iZ.push(r.gxW()) +$.ly=r}r.a0t(new A.ajb(q),new A.ajc(q,s)) +q.aso(new A.ajd(q))}, +Ni(a){var s=this.R8$ +return A.ea(B.d.aI((s==null?B.F:new A.aZ(a.a-s.a)).a/1)+this.RG$.a,0,0)}, +ab2(a){if(this.p4$){this.x2$=!0 +return}this.Xh(a)}, +abB(){var s=this +if(s.x2$){s.x2$=!1 +s.k4$.push(new A.aj7(s)) +return}s.Xm()}, +Xh(a){var s,r,q=this +if(q.R8$==null)q.R8$=a +r=a==null +q.ry$=q.Ni(r?q.rx$:a) +if(!r)q.rx$=a +q.p1$=!1 +try{q.p2$=B.zw +s=q.k1$ +q.k1$=A.w(t.S,t.h1) +J.pl(s,new A.aj9(q)) +q.k2$.a5(0)}finally{q.p2$=B.zx}}, +av1(a){var s=this,r=s.y1$,q=r==null +if(!q&&r!==a)return null +if(r===a)++s.y2$ +else if(q){s.y1$=a +s.y2$=1}return new A.ag9(s.ga8Z())}, +a9_(){if(--this.y2$===0){this.y1$=null +$.aR()}}, +Xm(){var s,r,q,p,o,n,m,l,k,j=this +try{j.p2$=B.ek +p=t.zv +o=A.a6(j.k3$,p) +n=o.length +m=0 +for(;m0&&r<4){s=s.ry$ +s.toString +q.c=s}s=q.a +s.toString +return s}, +ti(a,b){var s=this,r=s.a +if(r==null)return +s.c=s.a=null +s.Cw() +if(b)r.Tv(s) +else r.Tw()}, +eL(a){return this.ti(0,!1)}, +akd(a){var s,r=this +r.e=null +s=r.c +if(s==null)s=r.c=a +r.d.$1(new A.aZ(a.a-s.a)) +if(!r.b&&r.a!=null&&r.e==null)r.e=$.bC.x7(r.gza(),!0)}, +Cw(){var s=this.e +if(s!=null){$.bC.Vw(s) +this.e=null}}, +l(){var s=this,r=s.a +if(r!=null){s.a=null +s.Cw() +r.Tv(s)}}, +k(a){return"Ticker()".charCodeAt(0)==0?"Ticker()":"Ticker()"}} +A.rY.prototype={ +Tw(){this.c=!0 +this.a.f1(0) +var s=this.b +if(s!=null)s.f1(0)}, +Tv(a){var s +this.c=!1 +s=this.b +if(s!=null)s.ot(new A.Ez(a))}, +avX(a){var s,r,q=this,p=new A.amZ(a) +if(q.b==null){s=q.b=new A.bB(new A.au($.aq,t.W),t.Q) +r=q.c +if(r!=null)if(r)s.f1(0) +else s.ot(B.Xy)}q.b.a.hZ(p,p,t.H)}, +qI(a,b){return this.a.a.qI(a,b)}, +on(a){return this.qI(a,null)}, +hZ(a,b,c){return this.a.a.hZ(a,b,c)}, +bo(a,b){return this.hZ(a,null,b)}, +i_(a){return this.a.a.i_(a)}, +k(a){var s=A.bi(this),r=this.c +if(r==null)r="active" +else r=r?"complete":"canceled" +return"#"+s+"("+r+")"}, +$iav:1} +A.amZ.prototype={ +$1(a){this.a.$0()}, +$S:56} +A.Ez.prototype={ +k(a){var s=this.a +if(s!=null)return"This ticker was canceled: "+s.k(0) +return'The ticker was canceled before the "orCancel" property was first used.'}, +$ibL:1} +A.Dv.prototype={ +god(){var s=this.WW$ +return s===$?this.WW$=new A.ct($.aR().d.c,$.aw()):s}, +ap7(){++this.IM$ +this.god().sq(0,!0) +return new A.akD(this.ga8F())}, +a8G(){--this.IM$ +this.god().sq(0,this.IM$>0)}, +Qm(){var s,r=this +if($.aR().d.c){if(r.AI$==null)r.AI$=r.ap7()}else{s=r.AI$ +if(s!=null)s.a.$0() +r.AI$=null}}, +adl(a){var s,r,q,p,o,n,m=a.d +if(t.V4.b(m)){s=B.aS.hN(m) +if(J.d(s,B.jB))s=m +r=new A.oi(a.a,a.b,a.c,s)}else r=a +s=this.IL$ +q=s.a +p=J.nA(q.slice(0),A.a2(q).c) +for(q=p.length,o=0;o=0;--o)r[o]=n[q-o-1].b}n=a5.fx +m=n.length +if(m!==0){l=new Int32Array(m) +for(o=0;o0?r[n-1].p1:null +if(n!==0)if(J.U(l)===J.U(o)){s=l==null||l.a==o.a +k=s}else k=!1 +else k=!0 +if(!k&&p.length!==0){if(o!=null)B.b.jr(p) +B.b.O(q,p) +B.b.a5(p)}p.push(new A.mF(m,l,n))}if(o!=null)B.b.jr(p) +B.b.O(q,p) +s=t.rB +s=A.a6(new A.ae(q,new A.akF(),s),s.i("ax.E")) +return s}, +a0E(a){if(this.ax==null)return +B.dA.ha(0,a.Cp(this.b))}, +d5(){return"SemanticsNode#"+this.b}, +a_9(a){return new A.Zq()}} +A.akH.prototype={ +$1(a){var s,r,q,p,o,n=this.a +n.a=n.a.aZ(a.fr) +s=n.b +r=a.y +q=a.dx +n.b=s|(r?q&$.a2g():q) +if(n.y==null)n.y=a.ok +if(n.Q==null)n.Q=a.p2 +if(n.as==null)n.as=a.p4 +if(n.at==null)n.at=a.R8 +if(n.ax==null)n.ax=a.RG +if(n.ay==null)n.ay=a.rx +if(n.ch==null)n.ch=a.ry +if(n.CW==null)n.CW=a.to +n.cx=a.x1 +if(n.cy==null)n.cy=a.x2 +n.dx=a.y1 +p=a.xr +o=n.db +n.db=o===0?p:o +if(n.c==="")n.c=a.fx +if(n.e.a==="")n.e=a.go +if(n.f.a==="")n.f=a.id +if(n.r.a==="")n.r=a.k1 +if(n.dy===B.iC)n.dy=a.y2 +if(n.fy===B.lO)n.fy=a.n +if(n.x==="")n.x=a.k3 +s=a.dy +if(s!=null){r=n.z;(r==null?n.z=A.aP(t.g3):r).O(0,s)}for(s=a.db,s=new A.eK(s,s.r,s.e),r=this.b;s.u();)r.E(0,A.a5d(s.d)) +s=a.k4 +if(s!=null){s=s.a +if(s!=null)r.E(0,A.a5d(new A.up(s,B.fx))) +a.k4.toString}s=n.d +r=n.y +n.d=A.aAu(a.fy,a.ok,s,r) +r=n.w +s=n.y +n.w=A.aAu(a.k2,a.ok,r,s) +s=n.fr +if(s==null)n.fr=a.M +else if(a.M!=null){s=A.eu(s,t.N) +r=a.M +r.toString +s.O(0,r) +n.fr=s}s=n.fx +if(s===B.z)n.fx=a.P +else if(s===B.lP){s=a.P +if(s!==B.z&&s!==B.lP)n.fx=s}return!0}, +$S:89} +A.akF.prototype={ +$1(a){return a.a}, +$S:360} +A.mn.prototype={ +b5(a,b){return B.d.b5(this.b,b.b)}, +$ic5:1} +A.jX.prototype={ +b5(a,b){return B.d.b5(this.a,b.a)}, +a1g(){var s,r,q,p,o,n,m,l,k,j=A.b([],t.TV) +for(s=this.c,r=s.length,q=0;q") +s=A.a6(new A.f0(n,new A.ayq(),s),s.i("o.E")) +return s}, +a1f(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this.c,a4=a3.length +if(a4<=1)return a3 +s=t.S +r=A.w(s,t.bu) +q=A.w(s,s) +for(p=this.b,o=p===B.b_,p=p===B.al,n=a4,m=0;m2.356194490192345 +else a0=!1 +if(a||a0)q.m(0,l.b,f.b)}}a1=A.b([],t.t) +a2=A.b(a3.slice(0),A.a2(a3)) +B.b.fa(a2,new A.aym()) +new A.ae(a2,new A.ayn(),A.a2(a2).i("ae<1,m>")).aj(0,new A.ayp(A.aP(s),q,a1)) +a3=t.qn +a3=A.a6(new A.ae(a1,new A.ayo(r),a3),a3.i("ax.E")) +a4=A.a2(a3).i("cc<1>") +a3=A.a6(new A.cc(a3,a4),a4.i("ax.E")) +return a3}, +$ic5:1} +A.ayq.prototype={ +$1(a){return a.a1f()}, +$S:184} +A.aym.prototype={ +$2(a,b){var s,r,q=a.e,p=A.tz(a,new A.j(q.a,q.b)) +q=b.e +s=A.tz(b,new A.j(q.a,q.b)) +r=B.d.b5(p.b,s.b) +if(r!==0)return-r +return-B.d.b5(p.a,s.a)}, +$S:110} +A.ayp.prototype={ +$1(a){var s=this,r=s.a +if(r.p(0,a))return +r.E(0,a) +r=s.b +if(r.az(0,a)){r=r.h(0,a) +r.toString +s.$1(r)}s.c.push(a)}, +$S:24} +A.ayn.prototype={ +$1(a){return a.b}, +$S:363} +A.ayo.prototype={ +$1(a){var s=this.a.h(0,a) +s.toString +return s}, +$S:364} +A.aAq.prototype={ +$1(a){return a.a1g()}, +$S:184} +A.mF.prototype={ +b5(a,b){var s,r=this.b +if(r==null||b.b==null)return this.c-b.c +s=b.b +s.toString +return r.b5(0,s)}, +$ic5:1} +A.Dy.prototype={ +l(){var s=this +s.b.a5(0) +s.c.a5(0) +s.d.a5(0) +s.cY()}, +a0F(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.b +if(f.a===0)return +s=A.aP(t.S) +r=A.b([],t.QF) +for(q=g.d,p=A.n(f).i("aY<1>"),o=p.i("o.E");f.a!==0;){n=A.a6(new A.aY(f,new A.akJ(g),p),o) +f.a5(0) +q.a5(0) +B.b.fa(n,new A.akK()) +B.b.O(r,n) +for(m=n.length,l=0;l#"+A.bi(this)}} +A.akJ.prototype={ +$1(a){return!this.a.d.p(0,a)}, +$S:89} +A.akK.prototype={ +$2(a,b){return a.ch-b.ch}, +$S:110} +A.akL.prototype={ +$2(a,b){return a.ch-b.ch}, +$S:110} +A.akI.prototype={ +$1(a){if(a.cy.az(0,this.b)){this.a.a=a +return!1}return!0}, +$S:89} +A.dM.prototype={ +me(a,b){var s=this +s.w.m(0,a,b) +s.x=s.x|a.a +s.r=!0}, +fc(a,b){this.me(a,new A.akr(b))}, +snb(a){a.toString +this.fc(B.fx,a)}, +sna(a){a.toString +this.fc(B.zK,a)}, +sBP(a){this.fc(B.iz,a)}, +sBF(a){this.fc(B.Qj,a)}, +sBQ(a){this.fc(B.iA,a)}, +sBR(a){this.fc(B.iw,a)}, +sBO(a){this.fc(B.ix,a)}, +satm(a){this.me(B.zM,new A.akx(a))}, +sKg(a){this.fc(B.zL,a)}, +sKa(a){this.fc(B.zJ,a)}, +sBB(a,b){this.fc(B.Qm,b)}, +sBC(a,b){this.fc(B.Qq,b)}, +sBM(a,b){this.fc(B.Qd,b)}, +sBK(a){this.me(B.Qn,new A.akv(a))}, +sBI(a){this.me(B.Qf,new A.akt(a))}, +sBL(a){this.me(B.Qo,new A.akw(a))}, +sBJ(a){this.me(B.Qc,new A.aku(a))}, +sBS(a){this.me(B.Qg,new A.aky(a))}, +sBT(a){this.me(B.Qh,new A.akz(a))}, +sBD(a){this.fc(B.Qk,a)}, +sBE(a){this.fc(B.Qp,a)}, +sBG(a,b){this.fc(B.iy,b)}, +sKf(a){this.fc(B.Qe,a)}, +sK8(a){this.fc(B.Ql,a)}, +sa0u(a){if(a==this.R8)return +this.R8=a +this.r=!0}, +sa0w(a){if(a==this.RG)return +this.RG=a +this.r=!0}, +sJZ(a){return}, +sAb(a){if(a==this.to)return +this.to=a +this.r=!0}, +sBf(a){if(a==null)return +this.a2=a +this.r=!0}, +sx9(a){this.ao=this.ao.anJ(!0) +this.r=!0}, +sBy(a){this.ao=this.ao.anH(a) +this.r=!0}, +sYj(a){this.ao=this.ao.ant(!0) +this.r=!0}, +sBs(a){this.ao=this.ao.anx(a) +this.r=!0}, +sYr(a){this.ao=this.ao.anC(A.JQ(a)) +this.r=!0}, +sarR(a){this.ao=this.ao.anr(A.JQ(a)) +this.r=!0}, +sYg(a,b){this.ao=this.ao.anq(A.JQ(b)) +this.r=!0}, +sYd(a){var s +if(a!=null){s=this.ao +this.ao=s.VW(a?B.cZ:B.h1)}this.r=!0}, +sYc(a){if(a===!0)this.ao=this.ao.VW(B.dH) +this.r=!0}, +sas5(a){this.ao=this.ao.anF(A.JQ(a)) +this.r=!0}, +sarU(a){this.ao=this.ao.anu(a) +this.r=!0}, +sJF(a){var s,r=this +if(!a)r.ao=r.ao.HW(B.J) +else{s=r.ao +if(s.r===B.J)r.ao=s.HW(B.fO)}r.r=!0}, +sp5(a){this.ao=this.ao.HW(A.JQ(a)) +this.r=!0}, +sYb(a){this.ao=this.ao.anp(a) +this.r=!0}, +sarY(a){this.ao=this.ao.anw(!0) +this.r=!0}, +sJR(a){return}, +sYh(a){this.ao=this.ao.ans(!0) +this.r=!0}, +sJp(a){this.ab=a +this.r=!0}, +sas2(a){this.ao=this.ao.anD(a) +this.r=!0}, +sarX(a){this.ao=this.ao.anv(a) +this.r=!0}, +sYi(a){this.ao=this.ao.HX(a) +this.r=!0}, +sYt(a){this.ao=this.ao.anE(!0) +this.r=!0}, +sYo(a){this.ao=this.ao.anA(a) +this.r=!0}, +sYl(a){this.ao=this.ao.anz(a) +this.r=!0}, +sYk(a){this.ao=this.ao.any(a) +this.r=!0}, +sJI(a){this.ao=this.ao.anB(A.JQ(a)) +this.r=!0}, +avl(a){var s=this.bF +s=s==null?null:s.p(0,a) +return s===!0}, +zB(a){var s=this.bF;(s==null?this.bF=A.aP(t.g3):s).E(0,a)}, +gQu(){if(this.y1!==B.iC)return!0 +var s=this.ao +if(!s.x)s=s.z||s.dx||s.db||s.as||s.ay||s.dy +else s=!0 +if(s)return!0 +return!1}, +Ye(a){var s,r,q,p,o,n=this +if(a==null||!a.r||!n.r)return!0 +if((n.x&a.x)!==0)return!1 +s=n.ao +r=a.ao +q=!0 +if(!(s.a!==B.dG&&r.a!==B.dG))if(!(s.b!==B.J&&r.b!==B.J)){p=r.c +o=s.c!==B.J +if(!(o&&p!==B.J))if(!(s.d!==B.J&&r.d!==B.J))if(!(o&&p!==B.J))if(!(s.e!==B.J&&r.e!==B.J))if(!(s.f!==B.J&&r.f!==B.J))if(!(s.r!==B.J&&r.r!==B.J))if(!(s.w&&r.w))if(!(s.x&&r.x))if(!(s.y&&r.y))if(!(s.z&&r.z))if(!(s.Q&&r.Q))if(!(s.as&&r.as))if(!(s.at&&r.at))if(!(s.ax&&r.ax))if(!(s.ay&&r.ay))if(!(s.ch&&r.ch))if(!(s.CW&&r.CW))if(!(s.cx&&r.cx))if(!(s.cy&&r.cy))if(!(s.db&&r.db))if(!(s.dx&&r.dx))s=s.dy&&r.dy +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q +else s=q}else s=q +else s=q +if(s)return!1 +if(n.rx!=null&&a.rx!=null)return!1 +if(n.to!=null&&a.to!=null)return!1 +if(n.M.a.length!==0&&a.M.a.length!==0)return!1 +if(n.gQu()&&a.gQu())return!1 +return!0}, +qu(a){var s,r,q,p=this +if(!a.r)return +s=a.w +if(a.d)s.aj(0,new A.aks(p)) +else p.w.O(0,s) +s=p.x +r=a.d +q=a.x +p.x=s|(r?q&$.a2g():q) +p.x2.O(0,a.x2) +p.ao=p.ao.aZ(a.ao) +p.a9=a.a9 +if(p.au==null)p.au=a.au +if(p.aX==null)p.aX=a.aX +if(p.b9==null)p.b9=a.b9 +if(p.aL==null)p.aL=a.aL +if(p.a2==null)p.a2=a.a2 +if(p.p4==null)p.p4=a.p4 +if(p.RG==null)p.RG=a.RG +if(p.R8==null)p.R8=a.R8 +if(p.rx==null)p.rx=a.rx +p.ry=a.ry +if(p.to==null)p.to=a.to +s=a.ab +r=p.ab +p.ab=r===0?s:r +s=p.S +if(s==null){s=p.S=a.S +p.r=!0}if(p.p3==null)p.p3=a.p3 +if(p.xr==="")p.xr=a.xr +r=p.y2 +p.y2=A.aAu(a.y2,a.S,r,s) +if(p.M.a==="")p.M=a.M +if(p.P.a==="")p.P=a.P +if(p.n.a==="")p.n=a.n +if(p.y1===B.iC)p.y1=a.y1 +if(p.br===B.lO)p.br=a.br +s=p.I +r=p.S +p.I=A.aAu(a.I,a.S,s,r) +if(p.X==="")p.X=a.X +s=p.bO +if(s==null)p.bO=a.bO +else if(a.bO!=null){s=A.eu(s,t.N) +r=a.bO +r.toString +s.O(0,r) +p.bO=s}s=a.bf +r=p.bf +if(s!==r)if(s===B.lQ)p.bf=B.lQ +else if(r===B.z)p.bf=s +p.r=p.r||a.r}} +A.akr.prototype={ +$1(a){this.a.$0()}, +$S:10} +A.akx.prototype={ +$1(a){a.toString +t.OE.a(a) +this.a.$1(new A.j(a[0],a[1]))}, +$S:10} +A.akv.prototype={ +$1(a){a.toString +this.a.$1(A.ty(a))}, +$S:10} +A.akt.prototype={ +$1(a){a.toString +this.a.$1(A.ty(a))}, +$S:10} +A.akw.prototype={ +$1(a){a.toString +this.a.$1(A.ty(a))}, +$S:10} +A.aku.prototype={ +$1(a){a.toString +this.a.$1(A.ty(a))}, +$S:10} +A.aky.prototype={ +$1(a){var s,r,q +a.toString +s=J.a2k(t.f.a(a),t.N,t.S) +r=s.h(0,"base") +r.toString +q=s.h(0,"extent") +q.toString +this.a.$1(A.c8(B.j,r,q,!1))}, +$S:10} +A.akz.prototype={ +$1(a){a.toString +this.a.$1(A.bt(a))}, +$S:10} +A.aks.prototype={ +$2(a,b){if(($.a2g()&a.a)>0)this.a.w.m(0,a,b)}, +$S:366} +A.a5o.prototype={ +K(){return"DebugSemanticsDumpOrder."+this.b}} +A.vT.prototype={ +b5(a,b){var s,r=this.a,q=b.a +if(r==q)return this.aoS(b) +s=r==null +if(s&&q!=null)return-1 +else if(!s&&q==null)return 1 +r.toString +q.toString +return B.c.b5(r,q)}, +$ic5:1} +A.r0.prototype={ +aoS(a){var s=a.b,r=this.b +if(s===r)return 0 +return B.f.b5(r,s)}} +A.Zp.prototype={} +A.Zs.prototype={} +A.Zt.prototype={} +A.KI.prototype={ +K(){return"Assertiveness."+this.b}} +A.akB.prototype={ +Cp(a){var s=A.ab(["type",this.a,"data",this.pv()],t.N,t.z) +if(a!=null)s.m(0,"nodeId",a) +return s}, +a_b(){return this.Cp(null)}, +k(a){var s,r,q=A.b([],t.s),p=this.pv(),o=p.gbX(p),n=A.a6(o,A.n(o).i("o.E")) +B.b.jr(n) +for(o=n.length,s=0;s#"+A.bi(this)+"()"}} +A.a3O.prototype={ +rp(a,b){return this.a1w(a,!0)}} +A.agi.prototype={ +n5(a,b){var s,r=B.bD.d_(A.a0d(null,A.a0e(4,b,B.a5,!1),null).e),q=$.e0.bF$ +q===$&&A.a() +s=q.D4(0,"flutter/assets",A.aGR(r)).bo(new A.agj(b),t.V4) +return s}} +A.agj.prototype={ +$1(a){if(a==null)throw A.e(A.nk(A.b([A.b_n(this.a),A.br("The asset does not exist or has empty data.")],t.D))) +return a}, +$S:367} +A.tQ.prototype={ +fB(){var s,r,q=this +if(q.a){s=A.w(t.N,t.z) +s.m(0,"uniqueIdentifier",q.b) +s.m(0,"hints",q.c) +s.m(0,"editingValue",q.d.KV()) +r=q.e +if(r!=null)s.m(0,"hintText",r)}else s=null +return s}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.tQ&&b.a===s.a&&b.b===s.b&&A.cE(b.c,s.c)&&b.d.j(0,s.d)&&b.e==s.e}, +gB(a){var s=this +return A.T(s.a,s.b,A.bI(s.c),s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this,r=A.b(["enabled: "+s.a,"uniqueIdentifier: "+s.b,"autofillHints: "+A.k(s.c),"currentEditingValue: "+s.d.k(0)],t.s),q=s.e +if(q!=null)r.push("hintText: "+q) +return"AutofillConfiguration("+B.b.bn(r,", ")+")"}} +A.a3j.prototype={} +A.DA.prototype={ +aeo(){var s,r,q=this,p=t.v3,o=new A.a9l(A.w(p,t.T),A.aP(t.SQ),A.b([],t.sA)) +q.bf$!==$&&A.bw() +q.bf$=o +s=$.aFQ() +r=A.b([],t.K0) +q.br$!==$&&A.bw() +q.br$=new A.NU(o,s,r,A.aP(p)) +p=q.bf$ +p===$&&A.a() +p.xB().bo(new A.akT(q),t.P)}, +vI(){var s=$.aCm() +s.a.a5(0) +s.b.a5(0) +s.c.a5(0)}, +n0(a){return this.aqJ(a)}, +aqJ(a){var s=0,r=A.H(t.H),q,p=this +var $async$n0=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:switch(A.bt(J.aK(t.a.a(a),"type"))){case"memoryPressure":p.vI() +break}s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$n0,r)}, +a6s(){var s=A.c9() +s.sdL(A.rP(null,new A.akS(s),null,!1,t.hz)) +return J.aR7(s.aS())}, +auu(){if(this.fr$==null)$.aR() +return}, +Fb(a){return this.ac7(a)}, +ac7(a){var s=0,r=A.H(t.ob),q,p=this,o,n,m,l,k +var $async$Fb=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:a.toString +o=A.aWU(a) +n=p.fr$ +o.toString +m=p.aa5(n,o) +for(n=m.length,l=0;lq)for(p=q;p") +r=A.eu(new A.bs(c,s),s.i("o.E")) +q=A.b([],t.K0) +p=c.h(0,b) +o=$.e0.rx$ +n=a0.a +if(n==="")n=d +m=e.a8a(a0) +if(a0 instanceof A.o2)if(p==null){l=new A.lG(b,a,n,o,!1) +r.E(0,b)}else l=A.aIy(n,m,p,b,o) +else if(p==null)l=d +else{l=A.aIz(m,p,b,!1,o) +r.F(0,b)}for(s=e.c.d,k=A.n(s).i("bs<1>"),j=k.i("o.E"),i=r.fU(A.eu(new A.bs(s,k),j)),i=i.gag(i),h=e.e;i.u();){g=i.gN(i) +if(g.j(0,b))q.push(new A.qw(g,a,d,o,!0)) +else{f=c.h(0,g) +f.toString +h.push(new A.qw(g,f,d,o,!0))}}for(c=A.eu(new A.bs(s,k),j).fU(r),c=c.gag(c);c.u();){k=c.gN(c) +j=s.h(0,k) +j.toString +h.push(new A.lG(k,j,d,o,!0))}if(l!=null)h.push(l) +B.b.O(h,q)}} +A.W7.prototype={} +A.abd.prototype={ +k(a){return"KeyboardInsertedContent("+this.a+", "+this.b+", "+A.k(this.c)+")"}, +j(a,b){var s,r,q=this +if(b==null)return!1 +if(J.U(b)!==A.r(q))return!1 +s=!1 +if(b instanceof A.abd)if(b.a===q.a)if(b.b===q.b){s=b.c +r=q.c +r=s==null?r==null:s===r +s=r}return s}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.abe.prototype={} +A.h.prototype={ +gB(a){return B.f.gB(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.h&&b.a===this.a}} +A.abx.prototype={ +$1(a){var s=$.aO5().h(0,a) +return s==null?A.cn([a],t.T):s}, +$S:374} +A.q.prototype={ +gB(a){return B.f.gB(this.a)}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.q&&b.a===this.a}} +A.W8.prototype={} +A.js.prototype={ +k(a){return"MethodCall("+this.a+", "+A.k(this.b)+")"}} +A.Cj.prototype={ +k(a){var s=this +return"PlatformException("+s.a+", "+A.k(s.b)+", "+A.k(s.c)+", "+A.k(s.d)+")"}, +$ibL:1} +A.BJ.prototype={ +k(a){return"MissingPluginException("+A.k(this.a)+")"}, +$ibL:1} +A.alR.prototype={ +hN(a){if(a==null)return null +return B.a5.bM(0,A.aEf(a,0,null))}, +c4(a){if(a==null)return null +return A.aGR(B.bD.d_(a))}} +A.aaP.prototype={ +c4(a){if(a==null)return null +return B.jC.c4(B.a4.hl(a))}, +hN(a){var s +if(a==null)return a +s=B.jC.hN(a) +s.toString +return B.a4.bM(0,s)}} +A.aaR.prototype={ +jL(a){var s=B.cX.c4(A.ab(["method",a.a,"args",a.b],t.N,t.X)) +s.toString +return s}, +j_(a){var s,r,q,p=null,o=B.cX.hN(a) +if(!t.f.b(o))throw A.e(A.cI("Expected method call Map, got "+A.k(o),p,p)) +s=J.aE(o) +r=s.h(o,"method") +if(r==null)q=s.az(o,"method") +else q=!0 +if(q)q=typeof r=="string" +else q=!1 +if(q)return new A.js(r,s.h(o,"args")) +throw A.e(A.cI("Invalid method call: "+A.k(o),p,p))}, +Wh(a){var s,r,q,p=null,o=B.cX.hN(a) +if(!t.j.b(o))throw A.e(A.cI("Expected envelope List, got "+A.k(o),p,p)) +s=J.aE(o) +if(s.gv(o)===1)return s.h(o,0) +r=!1 +if(s.gv(o)===3)if(typeof s.h(o,0)=="string")r=s.h(o,1)==null||typeof s.h(o,1)=="string" +if(r){r=A.bt(s.h(o,0)) +q=A.cC(s.h(o,1)) +throw A.e(A.aDJ(r,s.h(o,2),q,p))}r=!1 +if(s.gv(o)===4)if(typeof s.h(o,0)=="string")if(s.h(o,1)==null||typeof s.h(o,1)=="string")r=s.h(o,3)==null||typeof s.h(o,3)=="string" +if(r){r=A.bt(s.h(o,0)) +q=A.cC(s.h(o,1)) +throw A.e(A.aDJ(r,s.h(o,2),q,A.cC(s.h(o,3))))}throw A.e(A.cI("Invalid envelope: "+A.k(o),p,p))}, +vm(a){var s=B.cX.c4([a]) +s.toString +return s}, +oJ(a,b,c){var s=B.cX.c4([a,c,b]) +s.toString +return s}, +WM(a,b){return this.oJ(a,null,b)}} +A.alz.prototype={ +c4(a){var s +if(a==null)return null +s=A.anW(64) +this.eT(0,s,a) +return s.mQ()}, +hN(a){var s,r +if(a==null)return null +s=new A.Cu(a) +r=this.jl(0,s) +if(s.b=b.a.byteLength)throw A.e(B.bE) +return this.lU(b.pz(0),b)}, +lU(a,b){var s,r,q,p,o,n,m,l,k=this +switch(a){case 0:return null +case 1:return!0 +case 2:return!1 +case 3:s=b.b +r=$.e6() +q=b.a.getInt32(s,B.aM===r) +b.b+=4 +return q +case 4:return b.CM(0) +case 6:b.kf(8) +s=b.b +r=$.e6() +q=b.a.getFloat64(s,B.aM===r) +b.b+=8 +return q +case 5:case 7:p=k.fw(b) +return B.eq.d_(b.pA(p)) +case 8:return b.pA(k.fw(b)) +case 9:p=k.fw(b) +b.kf(4) +s=b.a +o=J.aGk(B.ax.gc9(s),s.byteOffset+b.b,p) +b.b=b.b+4*p +return o +case 10:return b.CN(k.fw(b)) +case 14:p=k.fw(b) +b.kf(4) +s=b.a +o=J.aQW(B.ax.gc9(s),s.byteOffset+b.b,p) +b.b=b.b+4*p +return o +case 11:p=k.fw(b) +b.kf(8) +s=b.a +o=J.aGj(B.ax.gc9(s),s.byteOffset+b.b,p) +b.b=b.b+8*p +return o +case 12:p=k.fw(b) +n=A.bz(p,null,!1,t.X) +for(s=b.a,m=0;m=s.byteLength)A.a0(B.bE) +b.b=r+1 +n[m]=k.lU(s.getUint8(r),b)}return n +case 13:p=k.fw(b) +s=t.X +n=A.w(s,s) +for(s=b.a,m=0;m=s.byteLength)A.a0(B.bE) +b.b=r+1 +r=k.lU(s.getUint8(r),b) +l=b.b +if(l>=s.byteLength)A.a0(B.bE) +b.b=l+1 +n.m(0,r,k.lU(s.getUint8(l),b))}return n +default:throw A.e(B.bE)}}, +hx(a,b){var s,r +if(b<254)a.fg(0,b) +else{s=a.d +if(b<=65535){a.fg(0,254) +r=$.e6() +s.$flags&2&&A.aI(s,10) +s.setUint16(0,b,B.aM===r) +a.tt(a.e,0,2)}else{a.fg(0,255) +r=$.e6() +s.$flags&2&&A.aI(s,11) +s.setUint32(0,b,B.aM===r) +a.tt(a.e,0,4)}}}, +fw(a){var s,r,q=a.pz(0) +$label0$0:{if(254===q){s=a.b +r=$.e6() +q=a.a.getUint16(s,B.aM===r) +a.b+=2 +s=q +break $label0$0}if(255===q){s=a.b +r=$.e6() +q=a.a.getUint32(s,B.aM===r) +a.b+=4 +s=q +break $label0$0}s=q +break $label0$0}return s}} +A.alA.prototype={ +$2(a,b){var s=this.a,r=this.b +s.eT(0,r,a) +s.eT(0,r,b)}, +$S:95} +A.alD.prototype={ +jL(a){var s=A.anW(64) +B.aS.eT(0,s,a.a) +B.aS.eT(0,s,a.b) +return s.mQ()}, +j_(a){var s,r,q +a.toString +s=new A.Cu(a) +r=B.aS.jl(0,s) +q=B.aS.jl(0,s) +if(typeof r=="string"&&s.b>=a.byteLength)return new A.js(r,q) +else throw A.e(B.oM)}, +vm(a){var s=A.anW(64) +s.fg(0,0) +B.aS.eT(0,s,a) +return s.mQ()}, +oJ(a,b,c){var s=A.anW(64) +s.fg(0,1) +B.aS.eT(0,s,a) +B.aS.eT(0,s,c) +B.aS.eT(0,s,b) +return s.mQ()}, +WM(a,b){return this.oJ(a,null,b)}, +Wh(a){var s,r,q,p,o,n +if(a.byteLength===0)throw A.e(B.Hi) +s=new A.Cu(a) +if(s.pz(0)===0)return B.aS.jl(0,s) +r=B.aS.jl(0,s) +q=B.aS.jl(0,s) +p=B.aS.jl(0,s) +o=s.b=a.byteLength +else n=!1 +if(n)throw A.e(A.aDJ(r,p,A.cC(q),o)) +else throw A.e(B.Hh)}} +A.aeW.prototype={ +aq0(a,b,c){var s,r,q,p +if(t.PB.b(b)){this.b.F(0,a) +return}s=this.b +r=s.h(0,a) +q=A.aYr(c) +if(q==null)q=this.a +if(J.d(r==null?null:t.ZC.a(r.a),q))return +p=q.A9(a) +s.m(0,a,p) +B.O9.cJ("activateSystemCursor",A.ab(["device",p.b,"kind",t.ZC.a(p.a).a],t.N,t.z),t.H)}} +A.BL.prototype={} +A.dt.prototype={ +k(a){var s=this.gAe() +return s}} +A.UB.prototype={ +A9(a){throw A.e(A.eQ(null))}, +gAe(){return"defer"}} +A.a_5.prototype={} +A.kI.prototype={ +gAe(){return"SystemMouseCursor("+this.a+")"}, +A9(a){return new A.a_5(this,a)}, +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.kI&&b.a===this.a}, +gB(a){return B.c.gB(this.a)}} +A.WI.prototype={} +A.mZ.prototype={ +guP(){var s=$.e0.bF$ +s===$&&A.a() +return s}, +ha(a,b){return this.a0C(0,b,this.$ti.i("1?"))}, +a0C(a,b,c){var s=0,r=A.H(c),q,p=this,o,n,m +var $async$ha=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:o=p.b +n=p.guP().D4(0,p.a,o.c4(b)) +m=o +s=3 +return A.v(t.T8.b(n)?n:A.iS(n,t.CD),$async$ha) +case 3:q=m.hN(e) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$ha,r)}, +xg(a){this.guP().M0(this.a,new A.a3g(this,a))}} +A.a3g.prototype={ +$1(a){return this.a_A(a)}, +a_A(a){var s=0,r=A.H(t.CD),q,p=this,o,n +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:o=p.a.b +n=o +s=3 +return A.v(p.b.$1(o.hN(a)),$async$$1) +case 3:q=n.c4(c) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$$1,r)}, +$S:185} +A.v9.prototype={ +guP(){var s=$.e0.bF$ +s===$&&A.a() +return s}, +mn(a,b,c,d){return this.aeB(a,b,c,d,d.i("0?"))}, +aeB(a,b,c,d,e){var s=0,r=A.H(e),q,p=this,o,n,m,l,k +var $async$mn=A.B(function(f,g){if(f===1)return A.E(g,r) +for(;;)switch(s){case 0:o=p.b +n=o.jL(new A.js(a,b)) +m=p.a +l=p.guP().D4(0,m,n) +s=3 +return A.v(t.T8.b(l)?l:A.iS(l,t.CD),$async$mn) +case 3:k=g +if(k==null){if(c){q=null +s=1 +break}throw A.e(A.aeL("No implementation found for method "+a+" on channel "+m))}q=d.i("0?").a(o.Wh(k)) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$mn,r)}, +cJ(a,b,c){return this.mn(a,b,!1,c)}, +Bj(a,b,c,d){return this.arI(a,b,c,d,c.i("@<0>").bR(d).i("aT<1,2>?"))}, +Y9(a,b,c){return this.Bj(a,null,b,c)}, +arI(a,b,c,d,e){var s=0,r=A.H(e),q,p=this,o +var $async$Bj=A.B(function(f,g){if(f===1)return A.E(g,r) +for(;;)switch(s){case 0:s=3 +return A.v(p.cJ(a,b,t.f),$async$Bj) +case 3:o=g +q=o==null?null:J.a2k(o,c,d) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$Bj,r)}, +nC(a){var s=this.guP() +s.M0(this.a,new A.aeG(this,a))}, +yb(a,b){return this.aaY(a,b)}, +aaY(a,b){var s=0,r=A.H(t.CD),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e +var $async$yb=A.B(function(c,d){if(c===1){o.push(d) +s=p}for(;;)switch(s){case 0:h=n.b +g=h.j_(a) +p=4 +e=h +s=7 +return A.v(b.$1(g),$async$yb) +case 7:k=e.vm(d) +q=k +s=1 +break +p=2 +s=6 +break +case 4:p=3 +f=o.pop() +k=A.a1(f) +if(k instanceof A.Cj){m=k +k=m.a +i=m.b +q=h.oJ(k,m.c,i) +s=1 +break}else if(k instanceof A.BJ){q=null +s=1 +break}else{l=k +h=h.WM("error",J.dr(l)) +q=h +s=1 +break}s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$yb,r)}} +A.aeG.prototype={ +$1(a){return this.a.yb(a,this.b)}, +$S:185} +A.hZ.prototype={ +cJ(a,b,c){return this.arJ(a,b,c,c.i("0?"))}, +iu(a,b){return this.cJ(a,null,b)}, +arJ(a,b,c,d){var s=0,r=A.H(d),q,p=this +var $async$cJ=A.B(function(e,f){if(e===1)return A.E(f,r) +for(;;)switch(s){case 0:q=p.a2n(a,b,!0,c) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$cJ,r)}} +A.E4.prototype={ +K(){return"SwipeEdge."+this.b}} +A.nY.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.nY&&J.d(s.a,b.a)&&s.b===b.b&&s.c===b.c}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"PredictiveBackEvent{touchOffset: "+A.k(this.a)+", progress: "+A.k(this.b)+", swipeEdge: "+this.c.k(0)+"}"}} +A.vv.prototype={ +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.vv&&b.a===this.a&&b.b===this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.a5s.prototype={ +C5(){var s=0,r=A.H(t.jQ),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e +var $async$C5=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:g=null +p=4 +l=n.a +l===$&&A.a() +e=t.J1 +s=7 +return A.v(l.iu("ProcessText.queryTextActions",t.z),$async$C5) +case 7:m=e.a(b) +if(m==null){l=A.b([],t.RW) +q=l +s=1 +break}g=m +p=2 +s=6 +break +case 4:p=3 +f=o.pop() +l=A.b([],t.RW) +q=l +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:l=A.b([],t.RW) +for(j=J.bb(J.a2m(g));j.u();){i=j.gN(j) +i.toString +A.bt(i) +h=J.aK(g,i) +h.toString +l.push(new A.vv(i,A.bt(h)))}q=l +s=1 +break +case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$C5,r)}, +C3(a,b,c){return this.aua(a,b,c)}, +aua(a,b,c){var s=0,r=A.H(t.ob),q,p=this,o,n +var $async$C3=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:o=p.a +o===$&&A.a() +n=A +s=3 +return A.v(o.cJ("ProcessText.processTextAction",[a,b,c],t.z),$async$C3) +case 3:q=n.cC(e) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$C3,r)}} +A.qx.prototype={ +K(){return"KeyboardSide."+this.b}} +A.hV.prototype={ +K(){return"ModifierKey."+this.b}} +A.Ct.prototype={ +gasP(){var s,r,q=A.w(t.xS,t.Dj) +for(s=0;s<9;++s){r=B.pA[s] +if(this.as_(r))q.m(0,r,B.e1)}return q}} +A.m_.prototype={} +A.aha.prototype={ +$0(){var s,r,q,p=this.b,o=J.aE(p),n=A.cC(o.h(p,"key")),m=n==null +if(!m){s=n.length +s=s!==0&&s===1}else s=!1 +if(s)this.a.a=n +s=A.cC(o.h(p,"code")) +if(s==null)s="" +m=m?"":n +r=A.hz(o.h(p,"location")) +if(r==null)r=0 +q=A.hz(o.h(p,"metaState")) +if(q==null)q=0 +p=A.hz(o.h(p,"keyCode")) +return new A.Py(s,m,r,q,p==null?0:p)}, +$S:376} +A.o2.prototype={} +A.vB.prototype={} +A.ahd.prototype={ +aqw(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +if(a instanceof A.o2){o=a.c +h.d.m(0,o.gjX(),o.gJU())}else if(a instanceof A.vB)h.d.F(0,a.c.gjX()) +h.ak0(a) +o=h.a +n=A.a6(o,t.iS) +m=n.length +l=0 +for(;l")),e),a0=a1 instanceof A.o2 +if(a0)a.E(0,g.gjX()) +for(s=g.a,r=null,q=0;q<9;++q){p=B.pA[q] +o=$.aOI() +n=o.h(0,new A.dg(p,B.ch)) +if(n==null)continue +m=B.vC.h(0,s) +if(n.p(0,m==null?new A.q(98784247808+B.c.gB(s)):m))r=p +if(f.h(0,p)===B.e1){c.O(0,n) +if(n.jG(0,a.glu(a)))continue}l=f.h(0,p)==null?A.aP(e):o.h(0,new A.dg(p,f.h(0,p))) +if(l==null)continue +for(o=A.n(l),m=new A.oQ(l,l.r,o.i("oQ<1>")),m.c=l.e,o=o.c;m.u();){k=m.d +if(k==null)k=o.a(k) +j=$.aOH().h(0,k) +j.toString +d.m(0,k,j)}}i=b.h(0,B.dg)!=null&&!J.d(b.h(0,B.dg),B.fc) +for(e=$.aFP(),e=new A.eK(e,e.r,e.e);e.u();){a=e.d +h=i&&a.j(0,B.dg) +if(!c.p(0,a)&&!h)b.F(0,a)}b.F(0,B.fo) +b.O(0,d) +if(a0&&r!=null&&!b.az(0,g.gjX())){e=g.gjX().j(0,B.ee) +if(e)b.m(0,g.gjX(),g.gJU())}}} +A.dg.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.dg&&b.a===this.a&&b.b==this.b}, +gB(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Y7.prototype={} +A.Y6.prototype={} +A.Py.prototype={ +gjX(){var s=this.a,r=B.vC.h(0,s) +return r==null?new A.q(98784247808+B.c.gB(s)):r}, +gJU(){var s,r=this.b,q=B.MM.h(0,r),p=q==null?null:q[this.c] +if(p!=null)return p +s=B.MD.h(0,r) +if(s!=null)return s +if(r.length===1)return new A.h(r.toLowerCase().charCodeAt(0)) +return new A.h(B.c.gB(this.a)+98784247808)}, +as_(a){var s,r=this +$label0$0:{if(B.e3===a){s=(r.d&4)!==0 +break $label0$0}if(B.e4===a){s=(r.d&1)!==0 +break $label0$0}if(B.e5===a){s=(r.d&2)!==0 +break $label0$0}if(B.e6===a){s=(r.d&8)!==0 +break $label0$0}if(B.lo===a){s=(r.d&16)!==0 +break $label0$0}if(B.ln===a){s=(r.d&32)!==0 +break $label0$0}if(B.lp===a){s=(r.d&64)!==0 +break $label0$0}if(B.lq===a||B.vF===a){s=!1 +break $label0$0}s=null}return s}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.Py&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +gB(a){var s=this +return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.D0.prototype={ +gav8(){var s=this +if(s.c)return new A.dw(s.a,t.hr) +if(s.b==null){s.b=new A.bB(new A.au($.aq,t.X6),t.EZ) +s.y8()}return s.b.a}, +y8(){var s=0,r=A.H(t.H),q,p=this,o +var $async$y8=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=3 +return A.v(B.lu.iu("get",t.pE),$async$y8) +case 3:o=b +if(p.b==null){s=1 +break}p.Ry(o) +case 1:return A.F(q,r)}}) +return A.G($async$y8,r)}, +Ry(a){var s,r=a==null +if(!r){s=J.aK(a,"enabled") +s.toString +A.ty(s)}else s=!1 +this.aqy(r?null:t.nc.a(J.aK(a,"data")),s)}, +aqy(a,b){var s,r,q=this,p=q.c&&b +q.d=p +if(p)$.bC.k4$.push(new A.aiG(q)) +s=q.a +if(b){p=q.a8v(a) +r=t.N +if(p==null){p=t.X +p=A.w(p,p)}r=new A.dB(p,q,null,"root",A.w(r,t.z4),A.w(r,t.I1)) +p=r}else p=null +q.a=p +q.c=!0 +r=q.b +if(r!=null)r.hL(0,p) +q.b=null +if(q.a!=s){q.ak() +if(s!=null)s.l()}}, +FC(a){return this.afr(a)}, +afr(a){var s=0,r=A.H(t.H),q=this,p +var $async$FC=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=a.a +switch(p){case"push":q.Ry(t.pE.a(a.b)) +break +default:throw A.e(A.eQ(p+" was invoked but isn't implemented by "+A.r(q).k(0)))}return A.F(null,r)}}) +return A.G($async$FC,r)}, +a8v(a){if(a==null)return null +return t.J1.a(B.aS.hN(J.Kg(B.O.gc9(a),a.byteOffset,a.byteLength)))}, +a0s(a){var s=this +s.r.E(0,a) +if(!s.f){s.f=!0 +$.bC.k4$.push(new A.aiH(s))}}, +OT(){var s,r,q,p,o=this +if(!o.f)return +o.f=!1 +for(s=o.r,r=A.cl(s,s.r,A.n(s).c),q=r.$ti.c;r.u();){p=r.d;(p==null?q.a(p):p).w=!1}s.a5(0) +s=B.aS.c4(o.a.a) +s.toString +B.lu.cJ("put",J.j2(B.ax.gc9(s),s.byteOffset,s.byteLength),t.H)}, +apF(){if($.bC.p1$)return +this.OT()}, +l(){var s=this.a +if(s!=null)s.l() +this.cY()}} +A.aiG.prototype={ +$1(a){this.a.d=!1}, +$S:6} +A.aiH.prototype={ +$1(a){return this.a.OT()}, +$S:6} +A.dB.prototype={ +gum(){var s=J.Kl(this.a,"c",new A.aiD()) +s.toString +return t.pE.a(s)}, +gmu(){var s=J.Kl(this.a,"v",new A.aiE()) +s.toString +return t.pE.a(s)}, +auE(a,b,c){var s=this,r=J.yj(s.gmu(),b),q=c.i("0?").a(J.mS(s.gmu(),b)) +if(J.eW(s.gmu()))J.mS(s.a,"v") +if(r)s.q7() +return q}, +amJ(a,b){var s,r,q,p,o=this,n=o.f +if(n.az(0,a)||!J.yj(o.gum(),a)){n=t.N +s=new A.dB(A.w(n,t.X),null,null,a,A.w(n,t.z4),A.w(n,t.I1)) +o.ik(s) +return s}r=t.N +q=o.c +p=J.aK(o.gum(),a) +p.toString +s=new A.dB(t.pE.a(p),q,o,a,A.w(r,t.z4),A.w(r,t.I1)) +n.m(0,a,s) +return s}, +ik(a){var s=this,r=a.d +if(r!==s){if(r!=null)r.yM(a) +a.d=s +s.Na(a) +if(a.c!=s.c)s.RV(a)}}, +a9d(a){this.yM(a) +a.d=null +if(a.c!=null){a.G7(null) +a.UE(this.gRU())}}, +q7(){var s,r=this +if(!r.w){r.w=!0 +s=r.c +if(s!=null)s.a0s(r)}}, +RV(a){a.G7(this.c) +a.UE(this.gRU())}, +G7(a){var s=this,r=s.c +if(r==a)return +if(s.w)if(r!=null)r.r.F(0,s) +s.c=a +if(s.w&&a!=null){s.w=!1 +s.q7()}}, +yM(a){var s,r,q,p=this +if(p.f.F(0,a.e)===a){J.mS(p.gum(),a.e) +s=p.r +r=s.h(0,a.e) +if(r!=null){q=J.cD(r) +p.P9(q.hX(r)) +if(q.ga7(r))s.F(0,a.e)}if(J.eW(p.gum()))J.mS(p.a,"c") +p.q7() +return}s=p.r +q=s.h(0,a.e) +if(q!=null)J.mS(q,a) +q=s.h(0,a.e) +q=q==null?null:J.eW(q) +if(q===!0)s.F(0,a.e)}, +Na(a){var s=this +if(s.f.az(0,a.e)){J.fF(s.r.bY(0,a.e,new A.aiC()),a) +s.q7() +return}s.P9(a) +s.q7()}, +P9(a){this.f.m(0,a.e,a) +J.dR(this.gum(),a.e,a.a)}, +UF(a,b){var s=this.f,r=this.r,q=A.n(r).i("bf<2>"),p=new A.bf(s,A.n(s).i("bf<2>")).apL(0,new A.f0(new A.bf(r,q),new A.aiF(),q.i("f0"))) +if(b){s=A.a6(p,A.n(p).i("o.E")) +s.$flags=1 +p=s}J.pl(p,a)}, +UE(a){return this.UF(a,!1)}, +auR(a){var s,r=this +if(a===r.e)return +s=r.d +if(s!=null)s.yM(r) +r.e=a +s=r.d +if(s!=null)s.Na(r)}, +l(){var s,r=this +r.UF(r.ga9c(),!0) +r.f.a5(0) +r.r.a5(0) +s=r.d +if(s!=null)s.yM(r) +r.d=null +r.G7(null)}, +k(a){return"RestorationBucket(restorationId: "+this.e+", owner: null)"}} +A.aiD.prototype={ +$0(){var s=t.X +return A.w(s,s)}, +$S:188} +A.aiE.prototype={ +$0(){var s=t.X +return A.w(s,s)}, +$S:188} +A.aiC.prototype={ +$0(){return A.b([],t.QT)}, +$S:380} +A.aiF.prototype={ +$1(a){return a}, +$S:381} +A.wa.prototype={ +j(a,b){var s,r +if(b==null)return!1 +if(this===b)return!0 +if(b instanceof A.wa){s=b.a +r=this.a +s=s.a===r.a&&s.b===r.b&&A.cE(b.b,this.b)}else s=!1 +return s}, +gB(a){var s=this.a +return A.T(s.a,s.b,A.bI(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){var s=this.b +return"SuggestionSpan(range: "+this.a.k(0)+", suggestions: "+s.k(s)+")"}} +A.Rx.prototype={ +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.Rx&&b.a===this.a&&A.cE(b.b,this.b)}, +gB(a){return A.T(this.a,A.bI(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"SpellCheckResults(spellCheckText: "+this.a+", suggestionSpans: "+A.k(this.b)+")"}} +A.a2U.prototype={} +A.kJ.prototype={ +gB(a){var s=this +return A.T(s.a,s.b,s.d,s.e,s.f,s.r,s.w,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.kJ)if(J.d(b.a,r.a))if(J.d(b.e,r.e))if(b.r===r.r)if(b.f===r.f)s=b.c==r.c +return s}} +A.alY.prototype={ +$0(){var s,r,q,p,o,n,m +if(!J.d($.wb,$.alV)){s=$.wb +r=s.a +r=r==null?null:r.C() +q=s.w +p=s.e +p=p==null?null:p.C() +o=s.f.K() +n=s.r.K() +m=s.c +m=m==null?null:m.K() +B.aW.cJ("SystemChrome.setSystemUIOverlayStyle",A.ab(["systemNavigationBarColor",r,"systemNavigationBarDividerColor",null,"systemStatusBarContrastEnforced",q,"statusBarColor",p,"statusBarBrightness",o,"statusBarIconBrightness",n,"systemNavigationBarIconBrightness",m,"systemNavigationBarContrastEnforced",s.d],t.N,t.z),t.H) +$.alV=$.wb}$.wb=null}, +$S:0} +A.alW.prototype={ +$0(){$.alV=null}, +$S:0} +A.a_6.prototype={} +A.RK.prototype={ +K(){return"SystemSoundType."+this.b}} +A.hr.prototype={ +eH(a){var s +if(a<0)return null +s=this.t3(a).a +return s>=0?s:null}, +eI(a){var s=this.t3(Math.max(0,a)).b +return s>=0?s:null}, +t3(a){var s,r=this.eH(a) +if(r==null)r=-1 +s=this.eI(a) +return new A.c4(r,s==null?-1:s)}} +A.u0.prototype={ +eH(a){var s +if(a<0)return null +s=this.a +return A.alQ(s,Math.min(a,s.length)).b}, +eI(a){var s,r=this.a +if(a>=r.length)return null +s=A.alQ(r,Math.max(0,a+1)) +return s.b+s.gN(0).length}, +t3(a){var s,r,q,p=this +if(a<0){s=p.eI(a) +return new A.c4(-1,s==null?-1:s)}else{s=p.a +if(a>=s.length){s=p.eH(a) +return new A.c4(s==null?-1:s,-1)}}r=A.alQ(s,a) +s=r.b +if(s!==r.c)s=new A.c4(s,s+r.gN(0).length) +else{q=p.eI(a) +s=new A.c4(s,q==null?-1:q)}return s}} +A.uX.prototype={ +t3(a){return this.a.t1(new A.ao(Math.max(a,0),B.j))}} +A.nR.prototype={ +eH(a){var s,r,q +if(a<0||this.a.length===0)return null +s=this.a +r=s.length +if(a>=r)return r +if(a===0)return 0 +if(a>1&&s.charCodeAt(a)===10&&s.charCodeAt(a-1)===13)q=a-2 +else q=A.aE6(s.charCodeAt(a))?a-1:a +while(q>0){if(A.aE6(s.charCodeAt(q)))return q+1;--q}return Math.max(q,0)}, +eI(a){var s,r=this.a,q=r.length +if(a>=q||q===0)return null +if(a<0)return 0 +for(s=a;!A.aE6(r.charCodeAt(s));){++s +if(s===q)return s}return s=s?null:s}} +A.fT.prototype={ +gmF(){var s,r=this +if(!r.gbG()||r.c===r.d)s=r.e +else s=r.c=n&&o<=p.b)return p +s=p.c +r=p.d +q=s<=r +if(o<=n){if(b)return p.qS(a.b,p.b,o) +n=q?o:s +return p.qQ(n,q?r:o)}if(b)return p.qS(a.b,n,o) +n=q?s:o +return p.qQ(n,q?o:r)}, +WS(a){if(this.gdd().j(0,a))return this +return this.anQ(a.b,a.a)}} +A.or.prototype={} +A.RU.prototype={} +A.RT.prototype={} +A.RV.prototype={} +A.wh.prototype={} +A.a_h.prototype={} +A.On.prototype={ +K(){return"MaxLengthEnforcement."+this.b}} +A.rT.prototype={} +A.WN.prototype={} +A.ayX.prototype={} +A.MR.prototype={ +apO(a,b){var s,r,q,p,o,n,m=this,l=null,k=new A.cK(""),j=b.b,i=j.gbG()?new A.WN(j.c,j.d):l,h=b.c,g=h.gbG()&&h.a!==h.b?new A.WN(h.a,h.b):l,f=new A.ayX(b,k,i,g) +h=b.a +s=B.c.qx(m.a,h) +for(r=new A.ZU(s.a,s.b,s.c),q=l;r.u();q=p){p=r.d +p.toString +o=q==null?l:q.a+q.c.length +if(o==null)o=0 +n=p.a +m.FS(!1,o,n,f) +m.FS(!0,n,n+p.c.length,f)}r=q==null?l:q.a+q.c.length +if(r==null)r=0 +m.FS(!1,r,h.length,f) +k=k.a +h=g==null||g.a===g.b?B.bg:new A.c4(g.a,g.b) +j=i==null?B.en:A.c8(j.e,i.a,i.b,j.f) +return new A.cA(k.charCodeAt(0)==0?k:k,j,h)}, +FS(a,b,c,d){var s,r,q,p +if(a)s=b===c?"":this.c +else s=B.c.a1(d.a.a,b,c) +d.b.a+=s +if(s.length===c-b)return +r=new A.a7W(b,c,s) +q=d.c +p=q==null +if(!p)q.a=q.a+r.$1(d.a.b.c) +if(!p)q.b=q.b+r.$1(d.a.b.d) +q=d.d +p=q==null +if(!p)q.a=q.a+r.$1(d.a.c.a) +if(!p)q.b=q.b+r.$1(d.a.c.b)}} +A.a7W.prototype={ +$1(a){var s=this,r=s.a,q=a<=r&&a=r.a&&s<=this.a.length}else r=!1 +return r}, +KO(a,b){var s,r,q,p,o=this +if(!a.gbG())return o +s=a.a +r=a.b +q=B.c.kV(o.a,s,r,b) +if(r-s===b.length)return o.anM(q) +s=new A.amk(a,b) +r=o.b +p=o.c +return new A.cA(q,A.c8(B.j,s.$1(r.c),s.$1(r.d),!1),new A.c4(s.$1(p.a),s.$1(p.b)))}, +KV(){var s=this.b,r=this.c +return A.ab(["text",this.a,"selectionBase",s.c,"selectionExtent",s.d,"selectionAffinity",s.e.K(),"selectionIsDirectional",s.f,"composingBase",r.a,"composingExtent",r.b],t.N,t.z)}, +k(a){return"TextEditingValue(text: \u2524"+this.a+"\u251c, selection: "+this.b.k(0)+", composing: "+this.c.k(0)+")"}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.cA&&b.a===s.a&&b.b.j(0,s.b)&&b.c.j(0,s.c)}, +gB(a){var s=this.c +return A.T(B.c.gB(this.a),this.b.gB(0),A.T(B.f.gB(s.a),B.f.gB(s.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.amk.prototype={ +$1(a){var s=this.a,r=s.a,q=a<=r&&a") +o=A.a6(new A.ae(n,new A.amD(),m),m.i("ax.E")) +n=p.f +m=A.n(n).i("bs<1>") +l=m.i("f4>") +n=A.a6(new A.f4(new A.aY(new A.bs(n,m),new A.amE(p,o),m.i("aY")),new A.amF(p),l),l.i("o.E")) +q=n +s=1 +break $async$outer +case"TextInputClient.scribbleInteractionBegan":p.r=!0 +s=1 +break $async$outer +case"TextInputClient.scribbleInteractionFinished":p.r=!1 +s=1 +break $async$outer}n=p.d +if(n==null){s=1 +break}if(c==="TextInputClient.requestExistingInputState"){m=p.e +m===$&&A.a() +p.DV(n,m) +p.yX(p.d.r.a.c.a) +s=1 +break}n=t.j +o=n.a(a.b) +if(c===u.l){n=t.a +j=n.a(J.aK(o,1)) +for(m=J.dF(j),l=J.bb(m.gbX(j));l.u();)A.aKl(n.a(m.h(j,l.gN(l)))) +s=1 +break}m=J.aE(o) +i=A.eT(m.h(o,0)) +l=p.d +if(i!==l.f){s=1 +break}switch(c){case"TextInputClient.updateEditingState":h=A.aKl(t.a.a(m.h(o,1))) +$.cf().akI(h,$.aCe()) +break +case u.s:l=t.a +g=l.a(m.h(o,1)) +m=A.b([],t.sD) +for(n=J.bb(n.a(J.aK(g,"deltas")));n.u();)m.push(A.aXx(l.a(n.gN(n)))) +t.Je.a(p.d.r).awL(m) +break +case"TextInputClient.performAction":if(A.bt(m.h(o,1))==="TextInputAction.commitContent"){n=t.a.a(m.h(o,2)) +m=J.aE(n) +A.bt(m.h(n,"mimeType")) +A.bt(m.h(n,"uri")) +if(m.h(n,"data")!=null)new Uint8Array(A.ic(A.hU(t.JY.a(m.h(n,"data")),!0,t.S))) +p.d.r.a.toString}else p.d.r.au_(A.b0v(A.bt(m.h(o,1)))) +break +case"TextInputClient.performSelectors":f=J.Kh(n.a(m.h(o,1)),t.N) +f.aj(f,p.d.r.gau1()) +break +case"TextInputClient.performPrivateCommand":n=t.a +e=n.a(m.h(o,1)) +m=p.d.r +l=J.aE(e) +A.bt(l.h(e,"action")) +if(l.h(e,"data")!=null)n.a(l.h(e,"data")) +m.a.toString +break +case"TextInputClient.updateFloatingCursor":n=l.r +l=A.b0u(A.bt(m.h(o,1))) +m=t.a.a(m.h(o,2)) +if(l===B.hF){k=J.aE(m) +d=new A.j(A.eU(k.h(m,"X")),A.eU(k.h(m,"Y")))}else d=B.i +n.Cy(new A.vz(d,null,l)) +break +case"TextInputClient.onConnectionClosed":n=l.r +if(n.ghG()){n.z.toString +n.ok=n.z=$.cf().d=null +n.a.d.iF()}break +case"TextInputClient.showAutocorrectionPromptRect":l.r.a14(A.eT(m.h(o,1)),A.eT(m.h(o,2))) +break +case"TextInputClient.showToolbar":l.r.i4() +break +case"TextInputClient.insertTextPlaceholder":l.r.arw(new A.I(A.eU(m.h(o,1)),A.eU(m.h(o,2)))) +break +case"TextInputClient.removeTextPlaceholder":l.r.ZM() +break +default:throw A.e(A.aeL(null))}case 1:return A.F(q,r)}}) +return A.G($async$Ff,r)}, +aiI(){if(this.w)return +this.w=!0 +A.dx(new A.amH(this))}, +ajh(a,b){var s,r,q,p,o,n,m +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.jl,q=t.H,p=s.$ti.c;s.u();){o=s.d +if(o==null)o=p.a(o) +n=$.cf() +m=n.c +m===$&&A.a() +m.cJ("TextInput.setClient",A.b([n.d.f,o.Op(b)],r),q)}}, +O5(){var s,r,q,p,o=this +o.d.toString +for(s=o.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d +if(p==null)q.a(p) +p=$.cf().c +p===$&&A.a() +p.iu("TextInput.clearClient",r)}o.d=null +o.aiI()}, +Gx(a){var s,r,q,p,o +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d +if(p==null)p=q.a(p) +o=$.cf().c +o===$&&A.a() +o.cJ("TextInput.updateConfig",p.Op(a),r)}}, +yX(a){var s,r,q,p +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d +if(p==null)q.a(p) +p=$.cf().c +p===$&&A.a() +p.cJ("TextInput.setEditingState",a.KV(),r)}}, +Gg(){var s,r,q,p +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d +if(p==null)q.a(p) +p=$.cf().c +p===$&&A.a() +p.iu("TextInput.show",r)}}, +aeg(){var s,r,q,p +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d +if(p==null)q.a(p) +p=$.cf().c +p===$&&A.a() +p.iu("TextInput.hide",r)}}, +ajk(a,b){var s,r,q,p,o,n,m,l,k +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=a.a,q=a.b,p=b.a,o=t.N,n=t.z,m=t.H,l=s.$ti.c;s.u();){k=s.d +if(k==null)l.a(k) +k=$.cf().c +k===$&&A.a() +k.cJ("TextInput.setEditableSizeAndTransform",A.ab(["width",r,"height",q,"transform",p],o,n),m)}}, +aji(a){var s,r,q,p,o,n,m,l,k,j +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.u();){j=s.d +if(j==null)k.a(j) +j=$.cf().c +j===$&&A.a() +j.cJ("TextInput.setMarkedTextRect",A.ab(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, +ajg(a){var s,r,q,p,o,n,m,l,k,j +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.u();){j=s.d +if(j==null)k.a(j) +j=$.cf().c +j===$&&A.a() +j.cJ("TextInput.setCaretRect",A.ab(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, +ajp(a){var s,r,q +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.u();){q=s.d;(q==null?r.a(q):q).a0Q(a)}}, +Ge(a,b,c,d,e){var s,r,q,p,o,n,m,l,k +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=d.a,q=e.a,p=t.N,o=t.z,n=t.H,m=c==null,l=s.$ti.c;s.u();){k=s.d +if(k==null)l.a(k) +k=$.cf().c +k===$&&A.a() +k.cJ("TextInput.setStyle",A.ab(["fontFamily",a,"fontSize",b,"fontWeightIndex",m?null:c.a,"textAlignIndex",r,"textDirectionIndex",q],p,o),n)}}, +aie(){var s,r,q,p +for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d +if(p==null)q.a(p) +p=$.cf().c +p===$&&A.a() +p.iu("TextInput.requestAutofill",r)}}, +akI(a,b){var s,r,q,p +if(this.d==null)return +for(s=$.cf().b,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c,q=t.H;s.u();){p=s.d +if((p==null?r.a(p):p)!==b){p=$.cf().c +p===$&&A.a() +p.cJ("TextInput.setEditingState",a.KV(),q)}}$.cf().d.r.avJ(a)}} +A.amG.prototype={ +$0(){var s=null +return A.b([A.h4("call",this.a,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.cg,s)],t.D)}, +$S:21} +A.amD.prototype={ +$1(a){return a}, +$S:382} +A.amE.prototype={ +$1(a){var s,r,q,p=this.b,o=p[0],n=p[1],m=p[2] +p=p[3] +s=this.a.f +r=s.h(0,a) +p=r==null?null:r.arV(new A.x(o,n,o+m,n+p)) +if(p!==!0)return!1 +p=s.h(0,a) +q=p==null?null:p.gqG(0) +if(q==null)q=B.a1 +return!(q.j(0,B.a1)||q.gaqY()||q.a>=1/0||q.b>=1/0||q.c>=1/0||q.d>=1/0)}, +$S:30} +A.amF.prototype={ +$1(a){var s=this.a.f.h(0,a).gqG(0),r=[a],q=s.a,p=s.b +B.b.O(r,[q,p,s.c-q,s.d-p]) +return r}, +$S:383} +A.amH.prototype={ +$0(){var s=this.a +s.w=!1 +if(s.d==null)s.aeg()}, +$S:0} +A.Eo.prototype={} +A.Xl.prototype={ +Op(a){var s,r=a.fB() +if($.cf().a!==$.aCe()){s=B.SI.fB() +s.m(0,"isMultiline",a.b.j(0,B.md)) +r.m(0,"inputType",s)}return r}, +a0Q(a){var s,r=$.cf().c +r===$&&A.a() +s=A.a2(a).i("ae<1,O>") +s=A.a6(new A.ae(a,new A.avy(),s),s.i("ax.E")) +r.cJ("TextInput.setSelectionRects",s,t.H)}} +A.avy.prototype={ +$1(a){var s=a.b,r=s.a,q=s.b +return A.b([r,q,s.c-r,s.d-q,a.a,a.c.a],t.a0)}, +$S:384} +A.am_.prototype={ +aqI(){var s,r=this +if(!r.f)s=!(r===$.rQ&&!r.e) +else s=!0 +if(s)return +if($.rQ===r)$.rQ=null +r.e=!0 +r.b.a5(0) +r.a.$0()}, +a17(a,b){var s,r,q,p,o=this,n=$.rQ +if(n!=null){s=n.e +n=!s&&J.d(n.c,a)&&A.cE($.rQ.d,b)}else n=!1 +if(n)return A.dc(null,t.H) +$.e0.bK$=o +o.b.a5(0) +for(n=b.length,r=0;r>") +q=A.a6(new A.ae(b,new A.am0(),n),n.i("ax.E")) +o.c=a +o.d=b +$.rQ=o +o.e=!1 +n=a.a +s=a.b +p=t.N +return B.aW.cJ("ContextMenu.showSystemContextMenu",A.ab(["targetRect",A.ab(["x",n,"y",s,"width",a.c-n,"height",a.d-s],p,t.i),"items",q],p,t.z),t.H)}, +jO(){var s=0,r=A.H(t.H),q,p=this +var $async$jO=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:if(p!==$.rQ){s=1 +break}$.rQ=null +$.e0.bK$=null +p.b.a5(0) +q=B.aW.iu("ContextMenu.hideSystemContextMenu",t.H) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$jO,r)}} +A.am0.prototype={ +$1(a){var s,r=A.w(t.N,t.z) +r.m(0,"callbackId",J.C(a.giE(a))) +s=a.giE(a) +if(s!=null)r.m(0,"title",s) +r.m(0,"type",a.go3()) +return r}, +$S:385} +A.fp.prototype={ +giE(a){return null}, +gB(a){return J.C(this.giE(this))}, +j(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.fp&&b.giE(b)==s.giE(s)}} +A.Nq.prototype={ +go3(){return"copy"}} +A.Nr.prototype={ +go3(){return"cut"}} +A.Nu.prototype={ +go3(){return"paste"}} +A.Nw.prototype={ +go3(){return"selectAll"}} +A.Nt.prototype={ +go3(){return"lookUp"}, +giE(a){return this.a}} +A.Nv.prototype={ +go3(){return"searchWeb"}, +giE(a){return this.a}} +A.Ns.prototype={ +go3(){return"captureTextFromCamera"}} +A.VL.prototype={} +A.VM.prototype={} +A.a_1.prototype={} +A.a_2.prototype={} +A.a0Q.prototype={} +A.Sg.prototype={ +K(){return"UndoDirection."+this.b}} +A.Sh.prototype={ +gaku(){var s=this.a +s===$&&A.a() +return s}, +Fg(a){return this.ae4(a)}, +ae4(a){var s=0,r=A.H(t.z),q,p=this,o,n +var $async$Fg=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:n=t.j.a(a.b) +if(a.a==="UndoManagerClient.handleUndo"){o=p.b +o.toString +o.aqr(p.aki(A.bt(J.aK(n,0)))) +s=1 +break}throw A.e(A.aeL(null)) +case 1:return A.F(q,r)}}) +return A.G($async$Fg,r)}, +aki(a){var s +$label0$0:{if("undo"===a){s=B.YO +break $label0$0}if("redo"===a){s=B.YP +break $label0$0}s=A.a0(A.nk(A.b([A.kh("Unknown undo direction: "+a)],t.D)))}return s}} +A.ani.prototype={} +A.anP.prototype={} +A.a0s.prototype={} +A.aAP.prototype={ +$1(a){this.a.sdL(a) +return!1}, +$S:22} +A.b0.prototype={} +A.b9.prototype={ +fi(a){this.b=a}, +kJ(a,b){return this.gjS()}, +ts(a,b){var s +$label0$0:{if(this instanceof A.cG){s=this.lI(0,a,b) +break $label0$0}s=this.kJ(0,a) +break $label0$0}return s}, +gjS(){return!0}, +qO(a){return!0}, +KW(a,b){return this.qO(a)?B.f6:B.hR}, +u1(a,b){var s +$label0$0:{if(this instanceof A.cG){s=this.d0(a,b) +break $label0$0}s=this.dv(a) +break $label0$0}return s}, +H_(a){var s=this.a +s.b=!0 +s.a.push(a) +return null}, +Ce(a){return this.a.F(0,a)}, +dk(a){return new A.H0(this,a,!1,!1,!1,!1,new A.ba(A.b([],t.e),t.c),A.n(this).i("H0"))}} +A.cG.prototype={ +lI(a,b,c){return this.a1u(0,b)}, +kJ(a,b){return this.lI(0,b,null)}, +dk(a){return new A.H1(this,a,!1,!1,!1,!1,new A.ba(A.b([],t.e),t.c),A.n(this).i("H1"))}} +A.d4.prototype={ +dv(a){return this.c.$1(a)}} +A.a2w.prototype={ +Y6(a,b,c){return a.u1(b,c)}, +arG(a,b,c){if(a.ts(b,c))return new A.am(!0,a.u1(b,c)) +return B.Py}} +A.la.prototype={ +ac(){return new A.F3(A.aP(t.od),new A.R())}} +A.a2y.prototype={ +$1(a){t.L1.a(a.gaa()) +return!1}, +$S:60} +A.a2B.prototype={ +$1(a){var s=this,r=A.a2x(t.L1.a(a.gaa()),s.b,s.d) +if(r!=null){s.c.vb(a) +s.a.a=r +return!0}return!1}, +$S:60} +A.a2z.prototype={ +$1(a){var s=A.a2x(t.L1.a(a.gaa()),this.b,this.c) +if(s!=null){this.a.a=s +return!0}return!1}, +$S:60} +A.a2A.prototype={ +$1(a){var s=this,r=s.b,q=A.a2x(t.L1.a(a.gaa()),r,s.d),p=q!=null +if(p&&q.ts(r,s.c))s.a.a=A.aCr(a).Y6(q,r,s.c) +return p}, +$S:60} +A.a2C.prototype={ +$1(a){var s=this,r=s.b,q=A.a2x(t.L1.a(a.gaa()),r,s.d),p=q!=null +if(p&&q.ts(r,s.c))s.a.a=A.aCr(a).Y6(q,r,s.c) +return p}, +$S:60} +A.F3.prototype={ +aw(){this.aK() +this.TI()}, +aaP(a){this.T(new A.ao0(this))}, +TI(){var s,r=this,q=r.a.d,p=A.n(q).i("bf<2>"),o=A.eu(new A.bf(q,p),p.i("o.E")),n=r.d.fU(o) +p=r.d +p.toString +s=o.fU(p) +for(q=n.gag(n),p=r.gPX();q.u();)q.gN(q).Ce(p) +for(q=s.gag(s);q.u();)q.gN(q).H_(p) +r.d=o}, +aH(a){this.b0(a) +this.TI()}, +l(){var s,r,q,p,o=this +o.aD() +for(s=o.d,s=A.cl(s,s.r,A.n(s).c),r=o.gPX(),q=s.$ti.c;s.u();){p=s.d;(p==null?q.a(p):p).Ce(r)}o.d=null}, +H(a){var s=this.a +return new A.F2(null,s.d,this.e,s.e,null)}} +A.ao0.prototype={ +$0(){this.a.e=new A.R()}, +$S:0} +A.F2.prototype={ +ce(a){var s +if(this.w===a.w)s=!A.JR(a.r,this.r) +else s=!0 +return s}} +A.q9.prototype={ +ac(){return new A.G8(new A.bu(null,t.A))}} +A.G8.prototype={ +aw(){this.aK() +$.bC.k4$.push(new A.as7(this)) +$.aa.an$.d.a.f.E(0,this.gQ8())}, +l(){$.aa.an$.d.a.f.F(0,this.gQ8()) +this.aD()}, +U5(a){this.yx(new A.as5(this))}, +abR(a){if(this.c==null)return +this.U5(a)}, +a6e(a){if(!this.e)this.yx(new A.as0(this))}, +a6g(a){if(this.e)this.yx(new A.as1(this))}, +a6c(a){var s=this +if(s.f!==a){s.yx(new A.as_(s,a)) +s.a.toString}}, +R5(a,b){var s,r,q,p,o,n,m=this,l=new A.as4(m),k=new A.as3(m,new A.as2(m)) +if(a==null){s=m.a +s.toString +r=s}else r=a +q=l.$1(r) +p=k.$1(r) +if(b!=null)b.$0() +s=m.a +s.toString +o=l.$1(s) +s=m.a +s.toString +n=k.$1(s) +if(p!==n)m.a.y.$1(n) +if(q!==o){l=m.a.z +if(l!=null)l.$1(o)}}, +yx(a){return this.R5(null,a)}, +afg(a){return this.R5(a,null)}, +aH(a){this.b0(a) +if(this.a.c!==a.c)$.bC.k4$.push(new A.as6(this,a))}, +ga6a(){var s,r=this.c +r.toString +r=A.bW(r,B.fS) +s=r==null?null:r.CW +$label0$0:{if(B.e8===s||s==null){r=this.a.c +break $label0$0}if(B.i8===s){r=!0 +break $label0$0}r=null}return r}, +H(a){var s,r,q,p=this,o=null,n=p.a,m=n.as +n=n.d +s=p.ga6a() +r=p.a +q=A.jt(A.nl(!1,s,r.ax,o,!0,!0,n,!0,o,p.ga6b(),o,o,o,o),m,p.r,p.ga6d(),p.ga6f(),o) +if(r.c)n=r.w.a!==0 +else n=!1 +if(n)q=A.tH(r.w,q) +return q}} +A.as7.prototype={ +$1(a){var s=$.aa.an$.d.a.b +if(s==null)s=A.Gi() +this.a.U5(s)}, +$S:6} +A.as5.prototype={ +$0(){var s=$.aa.an$.d.a.b +switch((s==null?A.Gi():s).a){case 0:s=!1 +break +case 1:s=!0 +break +default:s=null}this.a.d=s}, +$S:0} +A.as0.prototype={ +$0(){this.a.e=!0}, +$S:0} +A.as1.prototype={ +$0(){this.a.e=!1}, +$S:0} +A.as_.prototype={ +$0(){this.a.f=this.b}, +$S:0} +A.as4.prototype={ +$1(a){var s=this.a +return s.e&&a.c&&s.d}, +$S:100} +A.as2.prototype={ +$1(a){var s,r=this.a.c +r.toString +r=A.bW(r,B.fS) +s=r==null?null:r.CW +$label0$0:{if(B.e8===s||s==null){r=a.c +break $label0$0}if(B.i8===s){r=!0 +break $label0$0}r=null}return r}, +$S:100} +A.as3.prototype={ +$1(a){var s=this.a +return s.f&&s.d&&this.b.$1(a)}, +$S:100} +A.as6.prototype={ +$1(a){this.a.afg(this.b)}, +$S:6} +A.SA.prototype={ +dv(a){a.awr() +return null}} +A.zQ.prototype={ +qO(a){return this.c}, +dv(a){}} +A.tI.prototype={} +A.tW.prototype={} +A.h5.prototype={} +A.Mm.prototype={} +A.lX.prototype={} +A.Pq.prototype={ +lI(a,b,c){var s,r,q,p,o,n=$.aa.an$.d.c +if(n==null||n.e==null)return!1 +for(s=t.J,r=0;r<2;++r){q=B.Kt[r] +p=n.e +p.toString +o=A.aCt(p,q,s) +if(o!=null&&o.ts(q,c)){this.e=o +this.f=q +return!0}}return!1}, +kJ(a,b){return this.lI(0,b,null)}, +d0(a,b){var s,r=this.e +r===$&&A.a() +s=this.f +s===$&&A.a() +r.u1(s,b)}, +dv(a){return this.d0(a,null)}} +A.xm.prototype={ +QK(a,b,c){var s +a.fi(this.gmL()) +s=a.u1(b,c) +a.fi(null) +return s}, +d0(a,b){var s=this,r=A.aCs(s.gw4(),A.n(s).c) +return r==null?s.Y8(a,s.b,b):s.QK(r,a,b)}, +dv(a){return this.d0(a,null)}, +gjS(){var s,r,q=this,p=A.aCt(q.gw4(),null,A.n(q).c) +if(p!=null){p.fi(q.gmL()) +s=p.gjS() +p.fi(null) +r=s}else r=q.gmL().gjS() +return r}, +lI(a,b,c){var s,r=this,q=A.aCs(r.gw4(),A.n(r).c),p=q==null +if(!p)q.fi(r.gmL()) +s=(p?r.gmL():q).ts(b,c) +if(!p)q.fi(null) +return s}, +kJ(a,b){return this.lI(0,b,null)}, +qO(a){var s,r=this,q=A.aCs(r.gw4(),A.n(r).c),p=q==null +if(!p)q.fi(r.gmL()) +s=(p?r.gmL():q).qO(a) +if(!p)q.fi(null) +return s}} +A.H0.prototype={ +Y8(a,b,c){var s=this.e +if(b==null)return s.dv(a) +else return s.dv(a)}, +gmL(){return this.e}, +gw4(){return this.f}} +A.H1.prototype={ +QK(a,b,c){var s +c.toString +a.fi(new A.Fy(c,this.e,new A.ba(A.b([],t.e),t.c),this.$ti.i("Fy<1>"))) +s=a.u1(b,c) +a.fi(null) +return s}, +Y8(a,b,c){var s=this.e +if(b==null)return s.d0(a,c) +else return s.d0(a,c)}, +gmL(){return this.e}, +gw4(){return this.f}} +A.Fy.prototype={ +fi(a){this.d.fi(a)}, +kJ(a,b){return this.d.lI(0,b,this.c)}, +gjS(){return this.d.gjS()}, +qO(a){return this.d.qO(a)}, +H_(a){var s +this.a1t(a) +s=this.d.a +s.b=!0 +s.a.push(a)}, +Ce(a){this.a1v(a) +this.d.a.F(0,a)}, +dv(a){return this.d.d0(a,this.c)}} +A.SS.prototype={} +A.SQ.prototype={} +A.W3.prototype={} +A.Jw.prototype={ +fi(a){this.Mi(a) +this.e.fi(a)}} +A.Jx.prototype={ +fi(a){this.Mi(a) +this.e.fi(a)}} +A.yr.prototype={ +ac(){return new A.T3(null,null)}} +A.T3.prototype={ +H(a){var s=this.a +return new A.T2(B.a_,s.e,s.f,null,this,B.B,null,s.c,null)}} +A.T2.prototype={ +aG(a){var s=this +return A.aWj(s.e,s.y,s.f,s.r,s.z,s.w,A.dh(a),s.x)}, +aP(a,b){var s,r=this +b.sfO(r.e) +b.svl(0,r.r) +b.sav6(r.w) +b.saon(0,r.f) +b.savV(r.x) +b.sbC(A.dh(a)) +s=r.y +if(s!==b.f2){b.f2=s +b.aC() +b.aY()}b.sata(0,r.z)}} +A.a0y.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.yy.prototype={ +aG(a){var s=new A.CD(this.e,!0,A.ah(),null,new A.aO(),A.ah(),this.$ti.i("CD<1>")) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sq(0,this.e) +b.sa1b(!0)}} +A.EZ.prototype={ +ac(){return new A.J3()}} +A.J3.prototype={ +gaer(){$.aa.toString +var s=$.aR() +if(s.gI7()!=="/"){$.aa.toString +s=s.gI7()}else{this.a.toString +$.aa.toString +s=s.gI7()}return s}, +a8z(a){switch(this.d){case null:case void 0:case B.cT:return!0 +case B.fV:case B.cz:case B.fW:case B.jt:A.aE5(a.a) +return!0}}, +qX(a){this.d=a +this.a3S(a)}, +aw(){var s=this +s.aK() +s.akV() +$.aa.c1$.push(s) +s.d=$.aa.fr$}, +aH(a){var s,r,q,p,o,n,m=this +m.b0(a) +m.Ug(a) +s=m.gyr() +r=m.a +q=r.dy +p=r.fx +o=r.fy +n=r.go +r=r.fr +s.e=q +s.b=p +s.c=o +s.a=r +s.d=n}, +l(){var s,r=this +$.aa.iC(r) +s=r.e +if(s!=null)s.l() +s=r.gyr() +$.aa.iC(s) +s.cY() +r.aD()}, +O7(){var s=this.e +if(s!=null)s.l() +this.f=this.e=null}, +Ug(a){var s,r=this +r.a.toString +if(r.gUz()){r.O7() +s=r.r==null +if(!s){r.a.toString +a.toString}if(s){r.a.toString +r.r=new A.qi(r,t.TX)}}else{r.O7() +r.r=null}}, +akV(){return this.Ug(null)}, +gUz(){var s=this.a +if(s.Q==null){s=s.as +s=s==null?null:s.gbV(s) +s=s===!0 +if(!s)this.a.toString}else s=!0 +return s}, +ag8(a){var s=this,r=a.a,q=r==="/"&&s.a.Q!=null?new A.aA1(s):s.a.as.h(0,r) +if(q!=null)return s.a.f.$1$2(a,q,t.z) +s.a.toString +return null}, +agC(a){return this.a.at.$1(a)}, +Aj(){var s=0,r=A.H(t.y),q,p=this,o,n +var $async$Aj=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p.a.toString +o=p.r +n=o==null?null:o.gL() +if(n==null){q=!1 +s=1 +break}q=n.YN() +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$Aj,r)}, +vf(a){return this.aoH(a)}, +aoH(a){var s=0,r=A.H(t.y),q,p=this,o,n,m,l +var $async$vf=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p.a.toString +o=p.r +n=o==null?null:o.gL() +if(n==null){q=!1 +s=1 +break}m=a.grU() +o=m.geF(m).length===0?"/":m.geF(m) +l=m.gpm() +l=l.ga7(l)?null:m.gpm() +o=A.a0d(m.gkE().length===0?null:m.gkE(),o,l).guy() +o=n.G8(A.p6(o,0,o.length,B.a5,!1),null,t.X) +o.toString +n.dn(o) +q=!0 +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$vf,r)}, +gyr(){var s,r,q,p,o,n,m=this,l=m.w +if(l===$){s=m.a +r=s.dy +q=s.fx +p=s.fy +o=s.fr +s=s.go +n=new A.v0(o,q,p,s,r,$.aw()) +$.aa.toString +n.f=n.Sd($.aR().d.f,s) +$.aa.c1$.push(n) +m.w!==$&&A.aA() +m.w=n +l=n}return l}, +H(a){var s,r,q,p,o,n=this,m=null,l={} +l.a=null +s=n.a +s.toString +if(n.gUz()){s=n.r +r=n.gaer() +q=n.a +p=q.ch +p.toString +l.a=A.aU_(!0,new A.C0(r,n.gag7(),n.gagB(),p,"nav",B.XH,A.b2i(),!0,B.n,s),"Navigator Scope",!0,m,m,m,m) +s=q}else{s=n.a +s.toString}l.b=null +o=new A.e8(new A.aA2(l,n),m) +l.b=o +l.b=A.kd(o,m,m,B.c6,!0,s.db,m,m,B.aP) +l.c=null +l.c=new A.Sa(s.cx,s.dx.b_(1),l.b,m) +s=n.a.p4 +r=A.aYb() +q=A.lH($.aPc(),t.u,t.od) +q.m(0,B.mn,new A.Dd(new A.ba(A.b([],t.e),t.c)).dk(a)) +p=A.ahr() +return new A.D3(new A.DB(new A.dd(n.ga8y(),A.aE_(new A.Mc(A.tH(q,A.aDa(new A.RO(new A.DC(new A.nH(new A.aA3(l,n),m,n.gyr(),m),m),m),p)),m),"",r),m,t.w3),m),s,m)}} +A.aA1.prototype={ +$1(a){var s=this.a.a.Q +s.toString +return s}, +$S:17} +A.aA2.prototype={ +$1(a){return this.b.a.CW.$2(a,this.a.a)}, +$S:17} +A.aA3.prototype={ +$2(a,b){var s,r,q=this.b.gyr(),p=q.f +p.toString +s=t.IO +r=A.b([],s) +B.b.O(r,q.a) +r.push(B.Dz) +q=A.b(r.slice(0),s) +s=this.a +r=s.c +s=r==null?s.b:r +return new A.qE(p,q,s,!0,null)}, +$S:393} +A.a1I.prototype={} +A.KB.prototype={ +qZ(){var s=0,r=A.H(t.s1),q +var $async$qZ=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:q=B.js +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$qZ,r)}, +qX(a){if(a===this.a)return +this.a=a +switch(a.a){case 1:this.e.$0() +break +case 2:break +case 3:break +case 4:break +case 0:break}}} +A.Tf.prototype={} +A.Tg.prototype={} +A.yF.prototype={ +ac(){return new A.F8()}} +A.F8.prototype={ +aw(){this.aK() +this.Nz()}, +aH(a){this.b0(a) +this.Nz()}, +Nz(){this.e=new A.dd(this.ga6l(),this.a.c,null,t.Jc)}, +l(){var s,r,q=this.d +if(q!=null)for(q=new A.eK(q,q.r,q.e);q.u();){s=q.d +r=this.d.h(0,s) +r.toString +s.J(0,r)}this.aD()}, +a6m(a){var s,r=this,q=a.a,p=r.d +if(p==null)p=r.d=A.w(t.I_,t.M) +p.m(0,q,r.a8i(q)) +p=r.d.h(0,q) +p.toString +q.Z(0,p) +if(!r.f){r.f=!0 +s=r.Pq() +if(s!=null)r.Ub(s) +else $.bC.k4$.push(new A.aoE(r))}return!1}, +Pq(){var s={},r=this.c +r.toString +s.a=null +r.bg(new A.aoJ(s)) +return t.xO.a(s.a)}, +Ub(a){var s,r +this.c.toString +s=this.f +r=this.e +r===$&&A.a() +a.Nt(t.Fw.a(A.aUy(r,s)))}, +a8i(a){var s=A.c9(),r=new A.aoI(this,a,s) +s.sdL(r) +return r}, +H(a){var s=this.f,r=this.e +r===$&&A.a() +return new A.Ba(s,r,null)}} +A.aoE.prototype={ +$1(a){var s,r=this.a +if(r.c==null)return +s=r.Pq() +s.toString +r.Ub(s)}, +$S:6} +A.aoJ.prototype={ +$1(a){this.a.a=a}, +$S:11} +A.aoI.prototype={ +$0(){var s=this.a,r=this.b +s.d.F(0,r) +r.J(0,this.c.aS()) +if(s.d.a===0)if($.bC.p2$.a<3)s.T(new A.aoG(s)) +else{s.f=!1 +A.dx(new A.aoH(s))}}, +$S:0} +A.aoG.prototype={ +$0(){this.a.f=!1}, +$S:0} +A.aoH.prototype={ +$0(){var s=this.a +if(s.c!=null&&s.d.a===0)s.T(new A.aoF())}, +$S:0} +A.aoF.prototype={ +$0(){}, +$S:0} +A.uU.prototype={} +A.Bb.prototype={ +l(){this.ak() +this.cY()}} +A.mX.prototype={ +pZ(){var s=new A.Bb($.aw()) +this.fZ$=s +this.c.dK(new A.uU(s))}, +nm(){var s,r=this +if(r.gpt()){if(r.fZ$==null)r.pZ()}else{s=r.fZ$ +if(s!=null){s.ak() +s.cY() +r.fZ$=null}}}, +H(a){if(this.gpt()&&this.fZ$==null)this.pZ() +return B.a_8}} +A.X2.prototype={ +H(a){throw A.e(A.je("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass."))}} +A.a03.prototype={ +LV(a,b){}, +pe(a){A.aLC(this,new A.azH(this,a))}} +A.azH.prototype={ +$1(a){var s=a.z +s=s==null?null:s.p(0,this.a) +if(s===!0)a.be()}, +$S:11} +A.azG.prototype={ +$1(a){A.aLC(a,this.a)}, +$S:11} +A.a04.prototype={ +bJ(a){return new A.a03(A.h9(null,null,null,t.h,t.X),this,B.Z)}} +A.is.prototype={ +ce(a){return this.w!==a.w}} +A.OR.prototype={ +aG(a){var s=this.e +s=new A.PV(B.d.aI(A.A(s,0,1)*255),s,!1,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.scR(0,this.e) +b.szG(!1)}} +A.KR.prototype={ +Po(a){return null}, +aG(a){var s=new A.PH(!0,this.e,B.cA,this.Po(a),null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sAP(0,this.e) +b.smT(0,!0) +b.samg(B.cA) +b.sama(this.Po(a))}} +A.zz.prototype={ +aG(a){var s=new A.CH(this.e,this.f,this.r,!1,!1,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sph(this.e) +b.sXb(this.f) +b.sau7(this.r) +b.bB=b.bT=!1}, +vh(a){a.sph(null) +a.sXb(null)}} +A.ua.prototype={ +aG(a){var s=new A.PL(this.e,this.f,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sqK(this.e) +b.sjH(this.f)}, +vh(a){a.sqK(null)}} +A.Lz.prototype={ +aG(a){var s=new A.PK(this.e,A.dh(a),null,B.bN,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sol(0,this.e) +b.sjH(B.bN) +b.sqK(null) +b.sbC(A.dh(a))}} +A.u9.prototype={ +aG(a){var s=new A.PJ(this.e,this.f,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sqK(this.e) +b.sjH(this.f)}, +vh(a){a.sqK(null)}} +A.a4u.prototype={ +$1(a){return A.a4t(this.c,this.b,new A.ol(this.a,A.dh(a),null))}, +$S:396} +A.P9.prototype={ +aG(a){var s=this,r=new A.PW(s.e,s.r,s.w,s.y,s.x,null,s.f,null,new A.aO(),A.ah()) +r.aF() +r.saU(null) +return r}, +aP(a,b){var s=this +b.sbH(0,s.e) +b.sjH(s.f) +b.sol(0,s.r) +b.sdl(0,s.w) +b.sci(0,s.x) +b.sbc(0,s.y)}} +A.Pa.prototype={ +aG(a){var s=this,r=new A.PX(s.r,s.x,s.w,s.e,s.f,null,new A.aO(),A.ah()) +r.aF() +r.saU(null) +return r}, +aP(a,b){var s=this +b.sqK(s.e) +b.sjH(s.f) +b.sdl(0,s.r) +b.sci(0,s.w) +b.sbc(0,s.x)}} +A.mg.prototype={ +aG(a){var s=this,r=A.dh(a),q=new A.Q6(s.w,null,new A.aO(),A.ah()) +q.aF() +q.saU(null) +q.sc2(0,s.e) +q.sfO(s.r) +q.sbC(r) +q.sAR(s.x) +q.sZ6(0,null) +return q}, +aP(a,b){var s=this +b.sc2(0,s.e) +b.sZ6(0,null) +b.sfO(s.r) +b.sbC(A.dh(a)) +b.bT=s.w +b.sAR(s.x)}} +A.ug.prototype={ +aG(a){var s=new A.PS(this.e,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sp8(this.e)}} +A.LJ.prototype={ +aG(a){var s=new A.PO(this.e,!1,this.x,B.dz,B.dz,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sp8(this.e) +b.sa16(!1) +b.sck(0,this.x) +b.sasb(B.dz) +b.sapM(B.dz)}} +A.N3.prototype={ +aG(a){var s=new A.PP(this.e,this.f,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.savD(this.e) +b.R=this.f}} +A.bo.prototype={ +aG(a){var s=new A.CR(this.e,A.dh(a),null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.scl(0,this.e) +b.sbC(A.dh(a))}} +A.eH.prototype={ +aG(a){var s=new A.CS(this.f,this.r,this.e,A.dh(a),null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sfO(this.e) +b.savY(this.f) +b.sar2(this.r) +b.sbC(A.dh(a))}} +A.hE.prototype={} +A.lj.prototype={ +aG(a){var s=new A.CI(this.e,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sI9(this.e)}} +A.Bh.prototype={ +qA(a){var s,r=a.b +r.toString +t.Wz.a(r) +s=this.f +if(r.e!==s){r.e=s +r=a.gaT(a) +if(r!=null)r.a_()}}} +A.na.prototype={ +aG(a){var s=new A.CG(this.e,0,null,null,new A.aO(),A.ah()) +s.aF() +s.O(0,null) +return s}, +aP(a,b){b.sI9(this.e)}} +A.eB.prototype={ +aG(a){return A.aJH(A.le(this.f,this.e))}, +aP(a,b){b.sUZ(A.le(this.f,this.e))}, +d5(){var s,r,q,p,o=this.e,n=this.f +$label0$0:{s=1/0===o +if(s){r=1/0===n +q=n}else{q=null +r=!1}if(r){r="SizedBox.expand" +break $label0$0}if(0===o)r=0===(s?q:n) +else r=!1 +if(r){r="SizedBox.shrink" +break $label0$0}r="SizedBox" +break $label0$0}p=this.a +return p==null?r:r+"-"+p.k(0)}} +A.eZ.prototype={ +aG(a){return A.aJH(this.e)}, +aP(a,b){b.sUZ(this.e)}} +A.O6.prototype={ +aG(a){var s=new A.PT(this.e,this.f,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sasF(0,this.e) +b.sasE(0,this.f)}} +A.C7.prototype={ +aG(a){var s=new A.CQ(this.e,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sBA(this.e)}, +bJ(a){return new A.X9(this,B.Z)}} +A.X9.prototype={} +A.NN.prototype={ +aG(a){var s=null,r=new A.CO(s,s,s,new A.aO(),A.ah()) +r.aF() +r.saU(s) +return r}, +aP(a,b){b.sa1n(null) +b.sa1m(null)}} +A.Rh.prototype={ +aG(a){var s=new A.Q5(this.e,a.ad(t.I).w,null,A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.scl(0,this.e) +b.sbC(a.ad(t.I).w)}} +A.Zn.prototype={ +PQ(a){var s,r=this.e,q=r.ry +if(q!=null)return q +s=!0 +if(r.id==null){if(r.k2==null)r=r.R8!=null +else r=s +s=r}if(!s)return null +return A.dh(a)}} +A.mc.prototype={ +aG(a){var s=A.dh(a) +return A.aWo(this.e,null,this.w,this.r,s)}, +aP(a,b){var s +b.sfO(this.e) +s=A.dh(a) +b.sbC(s) +b.sAU(this.r) +b.sjH(this.w)}} +A.NI.prototype={ +H(a){var s,r,q,p=J.aDq(4,t.l7) +for(s=this.r,r=this.w,q=0;q<4;++q)p[q]=new A.Sz(r[q],q===s,!0,!0,!0,!0,null) +return new A.Hf(s,B.bA,null,B.bp,B.B,p,null)}} +A.Hf.prototype={ +aG(a){var s=this,r=A.dh(a) +r=new A.CN(s.z,s.e,r,s.r,s.w,A.ah(),0,null,null,new A.aO(),A.ah()) +r.aF() +r.O(0,null) +return r}, +aP(a,b){var s=this,r=s.z +if(b.rb!==r){b.rb=r +b.a_()}b.sAU(s.r) +b.sjH(s.w) +b.sfO(s.e) +r=A.dh(a) +b.sbC(r)}, +bJ(a){return new A.VX(A.dj(t.h),this,B.Z)}} +A.VX.prototype={ +gaa(){return t.c_.a(A.aB.prototype.gaa.call(this))}} +A.re.prototype={ +qA(a){var s,r,q=this,p=a.b +p.toString +t.B.a(p) +s=q.f +r=p.w!=s +if(r)p.w=s +s=q.r +if(p.e!=s){p.e=s +r=!0}s=q.w +if(p.f!=s){p.f=s +r=!0}s=q.x +if(p.r!=s){p.r=s +r=!0}s=q.y +if(p.x!=s){p.x=s +r=!0}s=q.z +if(p.y!=s){p.y=s +r=!0}if(r){p=a.gaT(a) +if(p!=null)p.a_()}}} +A.Pj.prototype={ +H(a){var s=this +return A.aVY(s.f,s.x,null,null,s.c,a.ad(t.I).w,s.d,s.r)}} +A.MU.prototype={ +gafF(){switch(this.e.a){case 0:return!0 +case 1:var s=this.w +return s===B.an||s===B.eU}}, +Lr(a){var s=this.x +s=this.gafF()?A.dh(a):null +return s}, +aG(a){var s=this +return A.aWk(B.n,s.w,s.e,s.f,s.r,s.as,s.z,s.Lr(a),s.y)}, +aP(a,b){var s=this,r=s.e +if(b.n!==r){b.n=r +b.a_()}r=s.f +if(b.I!==r){b.I=r +b.a_()}r=s.r +if(b.X!==r){b.X=r +b.a_()}r=s.w +if(b.a2!==r){b.a2=r +b.a_()}r=s.Lr(a) +if(b.S!=r){b.S=r +b.a_()}r=s.y +if(b.a9!==r){b.a9=r +b.a_()}if(B.n!==b.aX){b.aX=B.n +b.aC() +b.aY()}b.ste(0,s.as)}} +A.vL.prototype={} +A.zi.prototype={} +A.q6.prototype={ +qA(a){var s,r,q=a.b +q.toString +t.US.a(q) +s=this.f +r=q.e!==s +if(r)q.e=s +s=this.r +if(q.f!==s){q.f=s +r=!0}if(r){q=a.gaT(a) +if(q!=null)q.a_()}}} +A.Ae.prototype={} +A.SL.prototype={ +aG(a){var s=A.dh(a) +s=new A.CX(B.b1,B.dv,0,B.dv,0,B.mw,s,B.cx,B.n,A.ah(),0,null,null,new A.aO(),A.ah()) +s.aF() +s.O(0,null) +return s}, +aP(a,b){var s +b.sAn(0,B.b1) +b.sfO(B.dv) +b.ste(0,0) +b.sava(B.dv) +b.savg(0) +b.saoi(B.mw) +s=A.dh(a) +if(b.ab!=s){b.ab=s +b.a_()}if(b.au!==B.cx){b.au=B.cx +b.a_()}if(B.n!==b.aX){b.aX=B.n +b.aC() +b.aY()}}} +A.Qe.prototype={ +aG(a){var s,r,q,p,o=this,n=null,m=o.r +if(m==null)m=a.ad(t.I).w +s=o.x +r=o.y +q=A.Br(a) +if(r.j(0,B.Dx))r=new A.iT(1) +p=s===B.aA?"\u2026":n +s=new A.o7(A.Es(p,q,o.z,o.as,o.e,o.f,m,o.ax,r,o.at),o.w,s,o.ch,!1,0,n,n,new A.aO(),A.ah()) +s.aF() +s.O(0,n) +s.spn(o.ay) +return s}, +aP(a,b){var s,r=this +b.scW(0,r.e) +b.sni(0,r.f) +s=r.r +b.sbC(s==null?a.ad(t.I).w:s) +b.sa1d(r.w) +b.satR(0,r.x) +b.scA(r.y) +b.sn7(r.z) +b.sju(r.as) +b.snj(r.at) +b.srM(r.ax) +s=A.Br(a) +b.sjg(0,s) +b.spn(r.ay) +b.sa0z(r.ch)}} +A.Px.prototype={ +aG(a){var s,r=this,q=r.d +if(q==null)q=null +else{s=q.b +s===$&&A.a() +q=A.aCG(s,q.c)}q=new A.CM(q,r.e,r.f,r.r,r.w,r.x,r.y,r.z,r.Q,r.as,r.at,r.ax,r.ay,r.CW,!1,null,!1,new A.aO(),A.ah()) +q.aF() +q.akF() +return q}, +aP(a,b){var s,r=this,q=r.d +if(q==null)q=null +else{s=q.b +s===$&&A.a() +q=A.aCG(s,q.c)}b.sja(0,q) +b.a2=r.e +b.sfC(0,r.f) +b.sb4(0,r.r) +b.sCV(0,r.w) +b.sci(0,r.x) +b.scR(0,r.y) +b.samW(r.Q) +b.sAU(r.as) +b.sfO(r.at) +b.sauV(0,r.ax) +b.samC(r.ay) +b.sasC(!1) +b.sbC(null) +b.sJA(r.CW) +b.sarO(!1) +b.sAR(r.z)}, +vh(a){a.sja(0,null)}} +A.Ob.prototype={ +aG(a){var s=this,r=null,q=new A.PY(s.e,r,s.r,r,s.x,s.y,r,r,s.as,s.at,r,new A.aO(),A.ah()) +q.aF() +q.saU(r) +return q}, +aP(a,b){var s=this +b.cv=s.e +b.dt=null +b.bN=s.r +b.cn=null +b.c_=s.x +b.eo=s.y +b.fY=b.eA=null +b.f2=s.as +b.A=s.at}} +A.BM.prototype={ +aG(a){var s=this +return A.aWn(s.w,null,s.e,s.r,s.f,!0)}, +aP(a,b){var s,r=this +b.dt=r.e +b.bN=r.f +b.cn=r.r +s=r.w +if(!b.c_.j(0,s)){b.c_=s +b.aC()}if(b.A!==B.aH){b.A=B.aH +b.aC()}}} +A.jC.prototype={ +aG(a){var s=new A.Q0(null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}} +A.nq.prototype={ +aG(a){var s=new A.CL(this.e,null,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sXO(this.e) +b.sJu(null)}} +A.Km.prototype={ +aG(a){var s=new A.Cz(!1,null,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sUO(!1) +b.sJu(null)}} +A.oh.prototype={ +aG(a){var s=this,r=null,q=s.e,p=s.PQ(a),o=new A.Q1($,$,$,$,$,r,r,r,r,r,r,r,r,new A.aO(),A.ah()) +o.aF() +o.saU(r) +o.c5$=q +o.AA$=s.f +o.AB$=s.r +o.AD$=o.AC$=!1 +o.AE$=s.w +o.AF$=p +o.TK(q) +return o}, +aP(a,b){var s=this +b.san5(s.f) +b.sapj(s.r) +b.sape(!1) +b.samh(!1) +b.sZq(s.e) +b.sbC(s.PQ(a)) +b.sasn(s.w)}} +A.Or.prototype={ +aG(a){var s=new A.PU(null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}} +A.L_.prototype={ +aG(a){var s=new A.PI(!0,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sami(!0)}} +A.ng.prototype={ +aG(a){var s=new A.PN(this.e,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.sapf(this.e)}} +A.NH.prototype={ +aG(a){var s=new A.PQ(this.e,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.saro(0,this.e)}} +A.nE.prototype={ +H(a){return this.c}} +A.e8.prototype={ +H(a){return this.c.$1(a)}} +A.n7.prototype={ +aG(a){var s=new A.Hp(this.e,B.aH,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){t.rj.a(b).sci(0,this.e)}} +A.Hp.prototype={ +sci(a,b){if(b.j(0,this.cv))return +this.cv=b +this.aC()}, +aA(a,b){var s,r,q,p,o,n=this,m=n.gt(0) +if(m.a>0&&m.b>0){m=a.gcg(0) +s=n.gt(0) +r=b.a +q=b.b +$.a3() +p=A.bc() +o=n.cv +p.r=o.gq(o) +m.fm(new A.x(r,q,r+s.a,q+s.b),p)}m=n.D$ +if(m!=null)a.dm(m,b)}} +A.aA6.prototype={ +$0(){var s=$.bC,r=this.a +if(s.p2$===B.ek)s.k4$.push(new A.aA5(r)) +else r.AX()}, +$S:0} +A.aA5.prototype={ +$1(a){this.a.AX()}, +$S:6} +A.aA7.prototype={ +$1(a){var s=a==null?A.aEQ(a):a +return this.a.n0(s)}, +$S:191} +A.aA8.prototype={ +$1(a){var s=a==null?A.aEQ(a):a +return this.a.F3(s)}, +$S:191} +A.de.prototype={ +Aj(){return A.dc(!1,t.y)}, +Xu(a){return!1}, +XA(a){}, +Xk(){}, +Xi(){}, +vf(a){var s=a.grU(),r=s.geF(s).length===0?"/":s.geF(s),q=s.gpm() +q=q.ga7(q)?null:s.gpm() +r=A.a0d(s.gkE().length===0?null:s.gkE(),r,q).guy() +A.p6(r,0,r.length,B.a5,!1) +return A.dc(!1,t.y)}, +Ig(){}, +Wp(){}, +Wo(){}, +Wn(a){}, +qX(a){}, +Wq(a){}, +qZ(){var s=0,r=A.H(t.s1),q +var $async$qZ=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:q=B.js +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$qZ,r)}, +Ah(){}} +A.SJ.prototype={ +iC(a){B.b.F(this.A$,a) +return B.b.F(this.c1$,a)}, +B3(){var s=0,r=A.H(t.s1),q,p=this,o,n,m,l +var $async$B3=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:o=A.a6(p.c1$,t.X5) +n=o.length +m=!1 +l=0 +case 3:if(!(l=s.b&&s.c>=s.d) +else s=!0}else s=!1 +if(s)m=A.aUF(new A.eZ(B.jz,n,n),0,0) +else{s=o.d +if(s!=null)m=new A.eH(s,n,n,m,n)}r=o.gagP() +if(r!=null)m=new A.bo(r,m,n) +s=o.f +if(s!=null)m=new A.n7(s,m,n) +s=o.as +if(s!==B.n){q=A.dh(a) +p=o.r +p.toString +m=A.a4t(m,s,new A.Uu(q==null?B.al:q,p,n))}s=o.r +if(s!=null)m=A.zD(m,s,B.dM) +s=o.w +if(s!=null)m=A.zD(m,s,B.o6) +s=o.x +if(s!=null)m=new A.eZ(s,m,n) +s=o.y +if(s!=null)m=new A.bo(s,m,n) +s=o.z +if(s!=null)m=A.EJ(o.Q,m,n,s,!0) +m.toString +return m}} +A.Uu.prototype={ +CH(a){return this.c.CI(new A.x(0,0,0+a.a,0+a.b),this.b)}, +Dd(a){return!a.c.j(0,this.c)||a.b!==this.b}} +A.io.prototype={ +K(){return"ContextMenuButtonType."+this.b}} +A.ds.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.ds&&b.c==s.c&&J.d(b.a,s.a)&&b.b===s.b}, +gB(a){return A.T(this.c,this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"ContextMenuButtonItem "+this.b.k(0)+", "+A.k(this.c)}} +A.LO.prototype={ +a12(a,b,c){var s,r +A.aH9() +s=A.P0(b,!0) +s.toString +r=A.aJ7(b) +if(r==null)r=null +else{r=r.c +r.toString}r=A.r1(new A.a4T(A.NK(b,r),c),!1,!1) +$.pN=r +s.lG(0,r) +$.li=this}, +f6(a){if($.li!==this)return +A.aH9()}} +A.a4T.prototype={ +$1(a){return new A.mo(this.a.a,this.b.$1(a),null)}, +$S:17} +A.nb.prototype={ +np(a,b,c){return A.a5t(c,this.w,null,this.y,this.x)}, +ce(a){return!J.d(this.w,a.w)||!J.d(this.x,a.x)||!J.d(this.y,a.y)}} +A.a5u.prototype={ +$1(a){var s=a.ad(t.Uf) +if(s==null)s=B.dN +return A.a5t(this.e,s.w,this.a,this.d,s.x)}, +$S:399} +A.X3.prototype={ +H(a){throw A.e(A.je("A DefaultSelectionStyle constructed with DefaultSelectionStyle.fallback cannot be incorporated into the widget tree, it is meant only to provide a fallback value returned by DefaultSelectionStyle.of() when no enclosing default selection style is present in a BuildContext."))}} +A.Mc.prototype={ +aak(){var s,r +switch(A.aM().a){case 3:s=A.lH($.aFK(),t.Vz,t.J) +for(r=$.aFI(),r=new A.eK(r,r.r,r.e);r.u();)s.m(0,r.d,B.p) +return s +case 0:case 1:case 5:case 2:case 4:return $.aFK()}switch(A.aM().a){case 0:case 1:case 3:case 5:return null +case 2:return B.vw +case 4:return $.aNU()}}, +H(a){var s=this.c,r=this.aak() +if(r!=null)s=A.aE_(s,"",r) +return A.aE_(s,"",A.aSG())}} +A.Mg.prototype={ +pu(a){return new A.ak(0,a.b,0,a.d)}, +px(a,b){var s,r=this.b,q=r.a,p=q+b.a-a.a +r=r.b +s=r+b.b-a.b +if(p>0)q-=p +return new A.j(q,s>0?r-s:r)}, +m6(a){return!this.b.j(0,a.b)}} +A.j9.prototype={ +K(){return"DismissDirection."+this.b}} +A.zN.prototype={ +ac(){var s=null +return new A.FP(new A.bu(s,t.A),s,s,s)}} +A.G3.prototype={ +K(){return"_FlingGestureKind."+this.b}} +A.FP.prototype={ +aw(){var s,r,q=this +q.a5e() +s=q.gjB() +s.bk() +r=s.co$ +r.b=!0 +r.a.push(q.gabl()) +s.bk() +s.cF$.E(0,q.gabn()) +q.GF()}, +gjB(){var s,r=this,q=r.d +if(q===$){r.a.toString +s=A.bK(null,B.N,null,null,r) +r.d!==$&&A.aA() +r.d=s +q=s}return q}, +gpt(){var s=this.gjB().r +if(!(s!=null&&s.a!=null)){s=this.f +if(s==null)s=null +else{s=s.r +s=s!=null&&s.a!=null}s=s===!0}else s=!0 +return s}, +l(){this.gjB().l() +var s=this.f +if(s!=null)s.l() +this.a5d()}, +giL(){var s=this.a.x +return s===B.Ga||s===B.o7||s===B.k3}, +tL(a){var s,r,q,p +if(a===0)return B.o9 +if(this.giL()){s=this.c.ad(t.I).w +$label0$0:{r=B.b_===s +if(r&&a<0){q=B.k3 +break $label0$0}p=B.al===s +if(p&&a>0){q=B.k3 +break $label0$0}if(!r)q=p +else q=!0 +if(q){q=B.o7 +break $label0$0}q=null}return q}return a>0?B.o8:B.Gb}, +gEy(){this.a.toString +B.MK.h(0,this.tL(this.w)) +return 0.4}, +gRq(){var s=this.c.gt(0) +s.toString +return this.giL()?s.a:s.b}, +a8P(a){var s,r,q=this +if(q.x)return +q.y=!0 +s=q.gjB() +r=s.r +if(r!=null&&r.a!=null){r=s.x +r===$&&A.a() +q.w=r*q.gRq()*J.e7(q.w) +s.eL(0)}else{q.w=0 +s.sq(0,0)}q.T(new A.arf(q))}, +a8Q(a){var s,r,q,p=this +if(p.y){s=p.gjB().r +s=s!=null&&s.a!=null}else s=!0 +if(s)return +s=a.e +s.toString +r=p.w +switch(p.a.x.a){case 1:case 0:p.w=r+s +break +case 4:s=r+s +if(s<0)p.w=s +break +case 5:s=r+s +if(s>0)p.w=s +break +case 2:switch(p.c.ad(t.I).w.a){case 0:s=p.w+s +if(s>0)p.w=s +break +case 1:s=p.w+s +if(s<0)p.w=s +break}break +case 3:switch(p.c.ad(t.I).w.a){case 0:s=p.w+s +if(s<0)p.w=s +break +case 1:s=p.w+s +if(s>0)p.w=s +break}break +case 6:p.w=0 +break}if(J.e7(r)!==J.e7(p.w))p.T(new A.arg(p)) +s=p.gjB() +q=s.r +if(!(q!=null&&q.a!=null))s.sq(0,Math.abs(p.w)/p.gRq())}, +abo(){this.a.toString}, +GF(){var s=this,r=J.e7(s.w),q=s.gjB(),p=s.giL(),o=s.a +if(p){o.toString +p=new A.j(r,0)}else{o.toString +p=new A.j(0,r)}o=t.Ni +s.e=new A.al(t.o.a(q),new A.ay(B.i,p,o),o.i("al"))}, +a8B(a){var s,r,q,p,o=this +if(o.w===0)return B.mB +s=a.a +r=s.a +q=s.b +if(o.giL()){s=Math.abs(r) +if(s-Math.abs(q)<400||s<700)return B.mB +p=o.tL(r)}else{s=Math.abs(q) +if(s-Math.abs(r)<400||s<700)return B.mB +p=o.tL(q)}if(p===o.tL(o.w))return B.Zr +return B.Zs}, +a8O(a){var s,r,q,p,o=this +if(o.y){s=o.gjB().r +s=s!=null&&s.a!=null}else s=!0 +if(s)return +o.y=!1 +s=o.gjB() +if(s.gaN(0)===B.a2){o.tX() +return}r=a.c +q=r.a +p=o.giL()?q.a:q.b +switch(o.a8B(r).a){case 1:if(o.gEy()>=1){s.dg(0) +break}o.w=J.e7(p) +s.vD(Math.abs(p)*0.0033333333333333335) +break +case 2:o.w=J.e7(p) +s.vD(-Math.abs(p)*0.0033333333333333335) +break +case 0:if(s.gaN(0)!==B.Q){r=s.x +r===$&&A.a() +if(r>o.gEy())s.bP(0) +else s.dg(0)}break}}, +yd(a){return this.abm(a)}, +abm(a){var s=0,r=A.H(t.H),q=this +var $async$yd=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=a===B.a2&&!q.y?2:3 +break +case 2:s=4 +return A.v(q.tX(),$async$yd) +case 4:case 3:if(q.c!=null)q.nm() +return A.F(null,r)}}) +return A.G($async$yd,r)}, +tX(){var s=0,r=A.H(t.H),q,p=this,o +var $async$tX=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:if(p.gEy()>=1){p.gjB().dg(0) +s=1 +break}s=3 +return A.v(p.Ei(),$async$tX) +case 3:o=b +if(p.c!=null)if(o)p.ajV() +else p.gjB().dg(0) +case 1:return A.F(q,r)}}) +return A.G($async$tX,r)}, +Ei(){var s=0,r=A.H(t.y),q,p=this +var $async$Ei=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p.a.toString +q=!0 +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$Ei,r)}, +ajV(){var s,r=this +r.a.toString +s=r.tL(r.w) +r.a.w.$1(s)}, +H(a){var s,r,q,p,o,n,m,l,k=this,j=null +k.xp(a) +s=k.a +s.toString +r=k.r +if(r!=null){s=k.giL()?B.af:B.b1 +q=k.z +p=q.a +return A.aK4(s,0,A.e1(j,q.b,p),r)}r=k.e +r===$&&A.a() +o=A.rN(new A.nE(s.c,k.as),r,j,!0) +if(s.x===B.o9)return o +r=k.giL()?k.gOM():j +q=k.giL()?k.gON():j +p=k.giL()?k.gOL():j +n=k.giL()?j:k.gOM() +m=k.giL()?j:k.gON() +l=k.giL()?j:k.gOL() +return A.qf(s.ax,o,B.a9,!1,j,j,j,j,p,r,q,j,j,j,j,j,j,j,j,j,j,j,l,n,m)}} +A.arf.prototype={ +$0(){this.a.GF()}, +$S:0} +A.arg.prototype={ +$0(){this.a.GF()}, +$S:0} +A.Jo.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.Jp.prototype={ +aw(){this.aK() +if(this.gpt())this.pZ()}, +dJ(){var s=this.fZ$ +if(s!=null){s.ak() +s.cY() +this.fZ$=null}this.mb()}} +A.zO.prototype={ +H(a){var s=A.bP(a,null,t.w).w,r=s.a,q=r.a,p=r.b,o=A.aSU(a),n=A.aSS(o,r),m=A.aST(A.aSW(new A.x(0,0,0+q,0+p),A.aSV(s)),n) +return new A.bo(new A.az(m.a,m.b,q-m.c,p-m.d),A.v7(this.d,s.auK(m)),null)}} +A.a5U.prototype={ +$1(a){var s=a.gqG(a).geJ().aw8(0,0) +if(!s)a.gawc(a) +return s}, +$S:192} +A.a5V.prototype={ +$1(a){return a.gqG(a)}, +$S:402} +A.Mp.prototype={ +gfR(a){var s=this.a +if(s==null)s=null +else{s=s.c +s.toString}return s}} +A.nd.prototype={ +ac(){return new A.FW(A.kB(null),A.kB(null))}, +apW(a,b,c){return this.d.$3(a,b,c)}, +av5(a,b,c){return this.e.$3(a,b,c)}} +A.FW.prototype={ +aw(){var s,r=this +r.aK() +s=r.a.c +r.d=s.gaN(s) +s=r.a.c +s.bk() +s=s.co$ +s.b=!0 +s.a.push(r.gDS()) +r.OX()}, +Np(a){var s,r=this,q=r.d +q===$&&A.a() +s=r.a7h(a,q) +r.d=s +if(q!==s)r.OX()}, +aH(a){var s,r,q=this +q.b0(a) +s=a.c +if(s!==q.a.c){r=q.gDS() +s.cd(r) +s=q.a.c +s.bk() +s=s.co$ +s.b=!0 +s.a.push(r) +r=q.a.c +q.Np(r.gaN(r))}}, +a7h(a,b){switch(a.a){case 0:case 3:return a +case 1:switch(b.a){case 0:case 3:case 1:return a +case 2:return b}break +case 2:switch(b.a){case 0:case 3:case 2:return a +case 1:return b}break}}, +OX(){var s=this,r=s.d +r===$&&A.a() +switch(r.a){case 0:case 1:s.e.saT(0,s.a.c) +s.f.saT(0,B.ca) +break +case 2:case 3:s.e.saT(0,B.dD) +s.f.saT(0,new A.hi(s.a.c,new A.ba(A.b([],t.F),t.R),0)) +break}}, +l(){this.a.c.cd(this.gDS()) +this.aD()}, +H(a){var s=this.a +return s.apW(a,this.e,s.av5(a,this.f,s.f))}} +A.TP.prototype={ +aG(a){var s=new A.Ys(this.e,this.f,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){var s +this.MU(a,b) +s=this.f +b.af=s +if(!s){s=b.R +if(s!=null)s.$0() +b.R=null}else if(b.R==null)b.aC()}} +A.Ys.prototype={ +aA(a,b){var s=this +if(s.af)if(s.R==null)s.R=a.a.alG(s.A) +s.i6(a,b)}} +A.f9.prototype={ +amp(a,b,c){var s,r,q,p=null,o=this.a +if(!o.gYf()||!c)return A.d2(p,p,b,o.a) +s=b.aZ(B.AX) +o=this.a +r=o.c +o=o.a +q=r.a +r=r.b +return A.d2(A.b([A.d2(p,p,p,B.c.a1(o,0,q)),A.d2(p,p,s,B.c.a1(o,q,r)),A.d2(p,p,p,B.c.bZ(o,r))],t.Ne),p,b,p)}, +st9(a){var s,r=this.a,q=r.a.length,p=a.b +if(q=s.a&&p<=s.b?s:B.bg,a))}} +A.wo.prototype={} +A.hv.prototype={} +A.are.prototype={ +fn(a,b){return 0}, +lH(a){return a>=this.b}, +eG(a,b){var s,r,q,p=this.c,o=this.d +if(p[o].a>b){s=o +o=0}else s=11 +for(r=s-1;o=n)return r.h(s,o) +else if(a<=n)q=o-1 +else p=o+1}return null}, +amu(){var s,r=this,q=null,p=r.a.z +if(p===B.mj)return q +s=A.b([],t.ZD) +if(p.b&&r.gv7())s.push(new A.ds(new A.a6I(r),B.hi,q)) +if(p.a&&r.gv_())s.push(new A.ds(new A.a6J(r),B.hj,q)) +if(p.c&&r.gpj())s.push(new A.ds(new A.a6K(r),B.hk,q)) +if(p.d&&r.gD2())s.push(new A.ds(new A.a6L(r),B.hl,q)) +return s}, +Lt(){var s,r,q,p,o,n,m=this.a.c.a.b,l=this.gal(),k=l.aE,j=k.e.a_d(),i=this.a.c.a.a +if(j!==i||!m.gbG()||m.a===m.b){l=k.cM() +l=l.gb4(l) +k=k.cM() +return new A.Hh(k.gb4(k),l)}s=m.a +r=m.b +q=B.c.a1(i,s,r) +p=q.length===0 +o=l.t2(new A.c4(s,s+(p?B.co:new A.f7(q)).ga3(0).length)) +n=l.t2(new A.c4(r-(p?B.co:new A.f7(q)).gae(0).length,r)) +l=o==null?null:o.d-o.b +if(l==null){l=k.cM() +l=l.gb4(l)}s=n==null?null:n.d-n.b +if(s==null){k=k.cM() +k=k.gb4(k)}else k=s +return new A.Hh(k,l)}, +gan9(){var s,r,q,p,o,n=this.gal(),m=n.vA +if(m!=null)return new A.Ew(m,null) +s=this.Lt() +r=s.b +q=null +p=s.a +q=p +o=r +return A.aXF(q,n,n.wV(this.a.c.a.b),o)}, +gana(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.amu() +if(e==null){e=g.x.ay +s=g.gv_()?new A.a6M(g):f +r=g.gv7()?new A.a6N(g):f +q=g.gpj()?new A.a6O(g):f +p=g.gD2()?new A.a6P(g):f +o=g.gYI()?new A.a6Q(g):f +n=g.gLO()?new A.a6R(g):f +m=g.ga0U()?new A.a6S(g):f +l=g.gJS()?new A.a6T(g):f +k=t.ZD +j=A.b([],k) +i=q!=null +if(!i||e!==B.jI){h=A.aM()===B.ad +e=A.b([],k) +if(r!=null)e.push(new A.ds(r,B.hi,f)) +if(s!=null)e.push(new A.ds(s,B.hj,f)) +if(i)e.push(new A.ds(q,B.hk,f)) +s=m!=null +if(s&&h)e.push(new A.ds(m,B.hm,f)) +if(p!=null)e.push(new A.ds(p,B.hl,f)) +if(o!=null)e.push(new A.ds(o,B.jV,f)) +if(n!=null)e.push(new A.ds(n,B.jW,f)) +if(s&&!h)e.push(new A.ds(m,B.hm,f)) +B.b.O(j,e)}if(l!=null)j.push(new A.ds(l,B.jX,f)) +e=j}B.b.O(e,g.gak2()) +return e}, +gak2(){var s,r,q,p=A.b([],t.ZD),o=this.a,n=o.c.a.b +if(o.f||!n.gbG()||n.a===n.b)return p +for(o=this.go,s=o.length,r=0;r0||!r.ghG())return +s=r.a.c.a +if(s.j(0,r.ok))return +r.z.toString +$.cf().yX(s) +r.ok=s}, +PD(a){var s,r,q,p,o,n,m,l,k=this +if(!B.b.gc7(k.gfK().f).r.goi()){s=B.b.gc7(k.gfK().f).at +s.toString +return new A.oa(s,a)}s=k.gal() +r=s.gt(0) +if(k.a.k2===1){s=a.c +q=a.a +p=r.a +o=s-q>=p?p/2-a.gaV().a:A.A(0,s-p,q) +n=B.e9}else{q=a.gaV() +s=s.aE.cM() +m=A.aJE(q,Math.max(a.d-a.b,s.gb4(s)),a.c-a.a) +s=m.d +q=m.b +p=r.b +o=s-q>=p?p/2-m.gaV().b:A.A(0,s-p,q) +n=B.i9}s=B.b.gc7(k.gfK().f).at +s.toString +q=B.b.gc7(k.gfK().f).z +q.toString +p=B.b.gc7(k.gfK().f).Q +p.toString +l=A.A(o+s,q,p) +p=B.b.gc7(k.gfK().f).at +p.toString +return new A.oa(l,a.dj(n.a6(0,p-l)))}, +yI(){var s,r,q,p,o,n,m=this +if(!m.ghG()){s=m.a +r=s.c.a +s=s.bK +s.gkY() +s=m.a.bK +s=s.gkY() +q=A.aKn(m) +$.cf().DV(q,s) +s=q +m.z=s +m.Up() +m.Sm() +m.z.toString +s=m.fr +s===$&&A.a() +p=m.guz() +o=m.a.db +n=$.cf() +n.Ge(s.d,s.r,s.w,o,p) +n.yX(r) +n.Gg() +s=m.a.bK +if(s.gkY().f.a){m.z.toString +n.aie()}m.ok=r}else{m.z.toString +$.cf().Gg()}}, +Oa(){var s,r,q=this +if(q.ghG()){s=q.z +s.toString +r=$.cf() +if(r.d===s)r.O5() +q.M=q.ok=q.z=null +q.ZM()}}, +aiO(){if(this.rx)return +this.rx=!0 +A.dx(this.gaim())}, +aio(){var s,r,q,p,o,n=this +n.rx=!1 +s=n.ghG() +if(!s)return +s=n.z +s.toString +r=$.cf() +if(r.d===s)r.O5() +n.ok=n.z=null +s=n.a.bK +s.gkY() +s=n.a.bK +s=s.gkY() +q=A.aKn(n) +r.DV(q,s) +p=q +n.z=p +r.Gg() +s=n.fr +s===$&&A.a() +o=n.guz() +r.Ge(s.d,s.r,s.w,n.a.db,o) +r.yX(n.a.c.a) +n.ok=n.a.c.a}, +akv(){this.ry=!1 +$.aa.an$.d.J(0,this.gze())}, +Ch(){var s=this +if(s.a.d.gbQ())s.yI() +else{s.ry=!0 +$.aa.an$.d.Z(0,s.gze()) +s.a.d.iD()}}, +U9(){var s,r,q=this +if(q.Q!=null){s=q.a.d.gbQ() +r=q.Q +if(s){r.toString +r.cm(0,q.a.c.a)}else{r.l() +q.Q=null}}}, +aj_(a){var s,r,q,p,o +if(a==null)return!1 +s=this.c +s.toString +r=t.Lm +q=a.kD(r) +if(q==null)return!1 +for(p=s;p!=null;){o=p.kD(r) +if(o===q)return!0 +if(o==null)p=null +else{s=o.c +s.toString +p=s}}return!1}, +abf(a){var s,r,q,p=this,o=a instanceof A.rB +if(!o&&!(a instanceof A.iE))return +$label0$0:{if(!(o&&p.at!=null))o=a instanceof A.iE&&p.at==null +else o=!0 +if(o)break $label0$0 +if(a instanceof A.iE&&!p.at.b.j(0,p.a.c.a)){p.at=null +p.Ez() +break $label0$0}s=a.b +o=!1 +r=s==null?null:s.kD(t.Lm) +o=$.aa.an$.x.h(0,p.ay) +if(r==null)q=null +else{q=r.c +q.toString}o=!J.d(o,q)&&p.aj_(s) +if(o)p.Q0(a)}}, +Q0(a){$.a24() +return}, +xS(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.a +f.toString +s=g.c +s.toString +r=f.c.a +q=g.gal() +p=g.a +o=p.p2 +n=p.bO +m=p.x1 +$.a24() +p=p.eB +l=$.aw() +k=new A.ct(!1,l) +j=new A.ct(!1,l) +i=new A.ct(!1,l) +h=new A.S1(s,q,o,g,null,r,k,j,i) +r=h.gUt() +q.bF.Z(0,r) +q.ao.Z(0,r) +h.GO() +r=h.gaaU() +q=q.vA +h.e!==$&&A.bw() +h.e=new A.QK(s,new A.ct(B.Mw,l),new A.qG(),p,B.cq,0,k,h.gadg(),h.gadi(),r,B.cq,0,j,h.gad9(),h.gadb(),r,i,B.Kw,f,g.CW,g.cx,g.cy,o,g,n,m,g.x,q,new A.LO(),new A.LO()) +return h}, +yh(a,b){var s,r,q,p=this,o=p.a.c,n=o.a.a.length +if(n0}else p=!1 +q.r.sq(0,p)}, +gyZ(){var s,r,q=this +if(q.a.d.gbQ()){s=q.a +r=s.c.a.b +s=r.a===r.b&&s.as&&q.k4&&!q.gal().iq}else s=!1 +return s}, +uu(){var s,r=this +if(!r.a.as)return +if(!r.k4)return +s=r.d +if(s!=null)s.aR(0) +r.gki().sq(0,1) +if(r.a.a2)r.gki().Hb(r.gQL()).a.a.i_(r.gRh()) +else r.d=A.aKw(B.d2,new A.a6x(r))}, +FL(){var s,r=this,q=r.y1 +if(q>0){$.aa.toString +$.aR();--q +r.y1=q +if(q===0)r.T(new A.a6p())}if(r.a.a2){q=r.d +if(q!=null)q.aR(0) +r.d=A.co(B.F,new A.a6q(r))}else{q=r.d +q=q==null?null:q.b!=null +if(q!==!0&&r.k4)r.d=A.aKw(B.d2,new A.a6r(r)) +q=r.gki() +s=r.gki().x +s===$&&A.a() +q.sq(0,s===0?1:0)}}, +z5(a){var s=this,r=s.gki() +r.sq(0,s.gal().iq?1:0) +r=s.d +if(r!=null)r.aR(0) +s.d=null +if(a)s.y1=0}, +T8(){return this.z5(!0)}, +Gk(){var s=this +if(!s.gyZ())s.T8() +else if(s.d==null)s.uu()}, +OH(){var s,r,q,p=this +if(p.a.d.gbQ()&&!p.a.c.a.b.gbG()){s=p.gxV() +p.a.c.J(0,s) +r=p.a.c +q=p.Nl() +q.toString +r.st9(q) +p.a.c.Z(0,s)}p.GJ() +p.Gk() +p.U9() +p.T(new A.a6l()) +p.gUB().a1o()}, +a9l(){var s,r,q,p=this +if(p.a.d.gbQ()&&p.a.d.an4())p.yI() +else if(!p.a.d.gbQ()){p.Oa() +s=p.a.c +s.nS(0,s.a.HU(B.bg))}p.Gk() +p.U9() +s=p.a.d.gbQ() +r=$.aa +if(s){r.c1$.push(p) +s=p.c +s.toString +p.xr=A.ml(s).ay.d +if(!p.a.x)p.yU(!0) +q=p.Nl() +if(q!=null)p.yh(q,null)}else{r.iC(p) +p.T(new A.a6n(p))}p.nm()}, +Nl(){var s,r=this,q=r.a,p=q.aL&&q.k2===1&&!r.ry&&!r.k3 +r.k3=!1 +if(p)s=A.c8(B.j,0,q.c.a.a.length,!1) +else{q=q.c.a +s=!q.b.gbG()?A.mf(B.j,q.a.length):null}return s}, +a7V(a){if(this.gal().y==null||!this.ghG())return +this.Up()}, +Up(){var s=this.gal(),r=s.gt(0),q=s.aM(0,null) +s=this.z +if(!r.j(0,s.a)||!q.j(0,s.b)){s.a=r +s.b=q +$.cf().ajk(r,q)}}, +Sn(a){var s,r,q,p=this +if(!p.ghG())return +p.al2() +s=p.a.c.a.c +r=p.gal() +q=r.t2(s) +if(q==null)q=r.jo(new A.ao(s.gbG()?s.a:0,B.j)) +p.z.a0I(q) +p.akD() +$.bC.k4$.push(p.gaiL())}, +Sm(){return this.Sn(null)}, +Uk(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null +d.gz7() +s=A.aM() +if(s!==B.L)return +if(B.b.gc7(d.gfK().f).k4!==B.ir)return +s=d.gal() +r=s.aE.e +r.toString +d.a.toString +$label0$0:{q=d.c +q.toString +q=A.bW(q,B.bz) +q=q==null?c:q.gcA() +if(q==null)q=B.aB +break $label0$0}p=d.a.db +o=d.guz() +d.a.toString +n=d.c +n.toString +n=A.a5y(n) +m=new A.axZ(p,o,q,n,c,d.a.gju(),d.n,s.gt(0),r) +if(a)l=B.bo +else{q=d.M +q=q==null?c:q.amY(m) +l=q==null?B.bo:q}if(l.a<3)return +d.M=m +k=A.b([],t.u1) +j=r.nk(!1) +i=new A.E_(j,0,0) +for(h=0;i.DQ(1,i.c);h=g){r=i.d +g=h+(r==null?i.d=B.c.a1(j,i.b,i.c):r).length +r=h1){o=p.a.c.a.b +o=o.a!==o.b||o.c===0}else o=!0 +if(o)return +o=p.a.c.a +s=o.a +o=o.b.c +r=A.alQ(s,o) +q=r.b +if(o===s.length)r.Se(2,q) +else{r.Se(1,q) +r.DQ(1,r.b)}o=r.a +p.h8(new A.cA(B.c.a1(o,0,r.b)+new A.f7(r.gN(0)).gae(0)+new A.f7(r.gN(0)).ga3(0)+B.c.bZ(o,r.c),A.mf(B.j,r.b+r.gN(0).length),B.bg),B.ah)}, +S5(a){var s=this.a.c.a,r=a.a.KO(a.c,a.b) +this.h8(r,a.d) +if(r.j(0,s))this.OH()}, +aiU(a){if(a.a)this.iX(new A.ao(this.a.c.a.a.length,B.j)) +else this.iX(B.fL)}, +a9n(a){var s,r,q,p,o,n,m,l=this +if(a.b!==B.ft)return +s=B.b.gc7(l.gfK().f) +if(l.a.k2===1){r=l.gfK() +q=s.Q +q.toString +r.eD(q) +return}r=s.Q +r.toString +if(r===0){r=s.z +r.toString +r=r===0}else r=!1 +if(r)return +p=t._N.a(l.ay.gL()) +p.toString +o=A.ajh(p,a) +r=s.at +r.toString +q=s.z +q.toString +n=s.Q +n.toString +m=A.A(r+o,q,n) +if(m===r)return +l.gfK().eD(m)}, +a9G(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +if(h.a.k2===1)return +s=h.gal() +r=s.jo(h.a.c.a.b.gdd()) +q=t._N.a(h.ay.gL()) +q.toString +p=A.ajh(q,new A.ey(a.gAW(a)?B.aC:B.aR,B.ft)) +o=B.b.gc7(h.gfK().f) +if(a.gAW(a)){n=h.a.c.a +if(n.b.d>=n.a.length)return +n=r.b+p +m=o.Q +m.toString +l=s.gt(0) +k=o.at +k.toString +j=n+k>=m+l.b?new A.ao(h.a.c.a.a.length,B.j):s.fF(A.bj(s.aM(0,null),new A.j(r.a,n))) +i=h.a.c.a.b.HV(j.a)}else{if(h.a.c.a.b.d<=0)return +n=r.b+p +m=o.at +m.toString +j=n+m<=0?B.fL:s.fF(A.bj(s.aM(0,null),new A.j(r.a,n))) +i=h.a.c.a.b.HV(j.a)}h.iX(i.gdd()) +h.h8(h.a.c.a.io(i),B.ah)}, +akX(a){var s=a.b +this.iX(s.gdd()) +this.h8(a.a.io(s),a.c)}, +gUB(){var s,r=this,q=r.ab +if(q===$){s=A.b([],t.e) +r.ab!==$&&A.aA() +q=r.ab=new A.IV(r,new A.ba(s,t.c),t.Wp)}return q}, +aei(a){var s=this.Q +if(s==null)s=null +else{s=s.e +s===$&&A.a() +s=s.grQ()}if(s===!0){this.jP(!1) +return null}s=this.c +s.toString +return A.lb(s,a,t.xm)}, +agw(a,b){if(!this.RG)return +this.RG=!1 +this.a.toString +A.lb(a,new A.kg(),t.Rz)}, +H(c0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7=this,b8=null,b9={} +b7.xp(c0) +s=b7.a.p2 +$label0$0:{r=A.bW(c0,B.bz) +r=r==null?b8:r.gcA() +if(r==null)r=B.aB +break $label0$0}b9.a=null +$label1$1:{q=b7.a.p3 +if(B.SJ.j(0,q)){b9.a=B.Qs +break $label1$1}if(B.SK.j(0,q)){b9.a=B.Qr +break $label1$1}if(B.fK.j(0,q)){b9.a=B.Qt +break $label1$1}b9.a=B.zN}p=b7.ghG() +o=b7.au +if(o===$){n=t.e +m=A.b([],n) +l=t.c +o=b7.S +if(o===$){k=A.b([],n) +b7.S!==$&&A.aA() +o=b7.S=new A.d4(b7.gaib(),new A.ba(k,l),t.Tx)}j=b7.a9 +if(j===$){k=A.b([],n) +b7.a9!==$&&A.aA() +j=b7.a9=new A.d4(b7.gakW(),new A.ba(k,l),t.ZQ)}k=A.b([],n) +i=A.b([],n) +h=b7.ga7m() +g=b7.gafu() +f=A.b([],n) +e=b7.c +e.toString +e=new A.mr(b7,h,g,new A.ba(f,l),t.dA).dk(e) +f=b7.gafJ() +d=A.b([],n) +c=b7.c +c.toString +c=new A.mr(b7,f,g,new A.ba(d,l),t.Uz).dk(c) +d=b7.gaeR() +b=b7.gafw() +a=A.b([],n) +a0=b7.c +a0.toString +a=new A.mr(b7,d,b,new A.ba(a,l),t.Fb).dk(a0) +a0=A.p5(b7,h,g,!1,!1,!1,t._w).dk(a0) +h=A.b([],n) +a1=b7.c +a1.toString +h=new A.d4(b7.ga9F(),new A.ba(h,l),t.vr).dk(a1) +a2=A.p5(b7,f,g,!1,!0,!1,t.P9).dk(a1) +a3=b7.gah0() +a4=A.p5(b7,a3,g,!1,!0,!1,t.cP).dk(a1) +a1=A.p5(b7,d,b,!1,!0,!1,t.OO).dk(a1) +a5=b7.gUB() +a6=b7.c +a6.toString +a7=a5.dk(a6) +a5=a5.dk(a6) +a3=A.p5(b7,a3,g,!1,!0,!1,t.b5).dk(a6) +a8=b7.ga97() +a9=A.p5(b7,a8,g,!1,!0,!1,t.HH).dk(a6) +a6=A.p5(b7,f,g,!1,!0,!1,t.eI).dk(a6) +g=A.b([],n) +f=b7.c +f.toString +f=new A.J0(b7,b7.gaiT(),new A.ba(g,l),t.px).dk(f) +g=A.b([],n) +d=A.p5(b7,d,b,!1,!0,!0,t.oB) +b0=b7.c +b0.toString +d=d.dk(b0) +b0=A.p5(b7,a8,b,!0,!0,!0,t.bh).dk(b0) +b=A.b([],n) +a8=b7.c +a8.toString +a8=new A.Zf(b7,new A.ba(b,l)).dk(a8) +b=A.b([],n) +b1=b7.c +b1.toString +b1=new A.U4(b7,new A.ba(b,l)).dk(b1) +b=A.b([],n) +b2=b7.c +b2.toString +b2=new A.Xi(b7,new A.ba(b,l)).dk(b2) +b3=b7.a2 +if(b3===$){b=A.b([],n) +b7.a2!==$&&A.aA() +b3=b7.a2=new A.d4(b7.gakp(),new A.ba(b,l),t.j5)}b=b7.c +b.toString +b=b3.dk(b) +b4=A.b([],n) +b5=b7.c +b5.toString +b5=new A.V2(new A.ba(b4,l)).dk(b5) +n=A.b([],n) +b4=b7.c +b4.toString +b6=A.ab([B.XM,new A.zQ(!1,new A.ba(m,l)),B.Yi,o,B.Yx,j,B.Ba,new A.zL(!0,new A.ba(k,l)),B.ml,new A.d4(b7.gaeh(),new A.ba(i,l),t.OX),B.XU,e,B.YD,c,B.XV,a,B.Y5,a0,B.XZ,h,B.YE,a2,B.YL,a4,B.YK,a1,B.Yq,a7,B.Yr,a5,B.Yg,a3,B.YF,a9,B.YJ,a6,B.YH,f,B.mn,new A.d4(b7.ga9m(),new A.ba(g,l),t.fn),B.XK,d,B.XL,b0,B.Yk,a8,B.XS,b1,B.Yd,b2,B.Yp,b,B.XY,b5,B.XJ,new A.V3(new A.ba(n,l)).dk(b4)],t.u,t.od) +b7.au!==$&&A.aA() +b7.au=b6 +o=b6}return new A.TP(b7.ga7U(),p,A.tH(o,new A.e8(new A.a6H(b9,b7,s,r),b8)),b8)}, +Vq(){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.a +if(g.f){s=g.c.a.a +s=B.c.a6(g.e,s.length) +$.aa.toString +$.aR() +r=B.QD.p(0,A.aM()) +if(r){q=i.y1>0?i.y2:h +if(q!=null&&q>=0&&q=0&&p<=g.c.a.a.length){o=A.b([],t.s6) +g=i.a +n=g.c.a.a.length-i.n +if(g.k2!==1){o.push(B.a_o) +o.push(new A.mB(new A.I(i.gal().gt(0).a,0),B.ay,B.ef,h,h))}else o.push(B.a_n) +g=i.fr +g===$&&A.a() +p=A.b([A.d2(h,h,h,B.c.a1(i.a.c.a.a,0,n))],t.VO) +B.b.O(p,o) +p.push(A.d2(h,h,h,B.c.bZ(i.a.c.a.a,n))) +return A.d2(p,h,g,h)}m=!g.x&&g.d.gbQ() +if(i.gT1()){g=i.a.c.a +l=!g.gYf()||!m +p=i.fr +p===$&&A.a() +k=i.dy +k===$&&A.a() +k=k.c +k.toString +j=i.fx +j.toString +return A.b0R(g,l,p,k,j)}g=i.a.c +p=i.c +p.toString +k=i.fr +k===$&&A.a() +return g.amp(p,k,m)}} +A.a6o.prototype={ +$0(){}, +$S:0} +A.a6U.prototype={ +$1(a){var s=this.a +if(s.c!=null)s.iX(s.a.c.a.b.gdd())}, +$S:6} +A.a6s.prototype={ +$1(a){var s=this.a +if(s.c!=null)s.iX(s.a.c.a.b.gdd())}, +$S:6} +A.a6I.prototype={ +$0(){this.a.Ac(B.ai)}, +$S:0} +A.a6J.prototype={ +$0(){this.a.zZ(B.ai)}, +$S:0} +A.a6K.prototype={ +$0(){this.a.pk(B.ai)}, +$S:0} +A.a6L.prototype={ +$0(){this.a.D1(B.ai)}, +$S:0} +A.a6M.prototype={ +$0(){return this.a.zZ(B.ai)}, +$S:0} +A.a6N.prototype={ +$0(){return this.a.Ac(B.ai)}, +$S:0} +A.a6O.prototype={ +$0(){return this.a.pk(B.ai)}, +$S:0} +A.a6P.prototype={ +$0(){return this.a.D1(B.ai)}, +$S:0} +A.a6Q.prototype={ +$0(){return this.a.Bw(B.ai)}, +$S:0} +A.a6R.prototype={ +$0(){return this.a.xa(B.ai)}, +$S:0} +A.a6S.prototype={ +$0(){return this.a.xj(B.ai)}, +$S:0} +A.a6T.prototype={ +$0(){return this.a.ajT(B.ai)}, +$S:0} +A.a6y.prototype={ +$0(){var s=0,r=A.H(t.H),q=this,p,o,n,m,l +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:o=q.b +n=q.a +m=n.a +l=B.c.a1(m.c.a.a,o.a,o.b) +s=l.length!==0?2:3 +break +case 2:s=4 +return A.v(n.fy.C3(q.c.a,l,m.x),$async$$0) +case 4:p=b +if(p!=null&&n.gDR())n.RB(B.ai,p) +else n.h0() +case 3:return A.F(null,r)}}) +return A.G($async$$0,r)}, +$S:9} +A.a6Y.prototype={ +$0(){return this.a.k3=!0}, +$S:0} +A.a6W.prototype={ +$1(a){var s,r=this +if(r.b)r.a.Q.i4() +if(r.c){s=r.a.Q +s.oh() +s=s.e +s===$&&A.a() +s.M5()}}, +$S:6} +A.a6X.prototype={ +$1(a){this.a.yI()}, +$S:6} +A.a6t.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i,h=this.a +h.x2=!1 +s=$.aa.an$.x.h(0,h.w) +s=s==null?null:s.gU() +t.CA.a(s) +if(s!=null){r=s.A.gbG() +r=!r||h.gfK().f.length===0}else r=!0 +if(r)return +r=s.aE.cM() +q=r.gb4(r) +p=h.a.b9.d +r=h.Q +if((r==null?null:r.c)!=null){o=r.c.t_(q).b +n=Math.max(o,48) +p=Math.max(o/2-h.Q.c.rZ(B.cq,q).b+n/2,p)}m=h.a.b9.A0(p) +l=h.PD(s.jo(s.A.gdd())) +k=h.a.c.a.b +if(k.a===k.b)j=l.b +else{i=s.m_(k) +if(i.length===0)j=l.b +else if(k.c=s)return s +if(s<=1)return a +return this.NE(a)?a-1:a}, +eI(a){var s=this.a.length +if(s===0||a>=s)return null +if(a<0)return 0 +if(a===s-1)return s +if(s<=1)return a +s=a+1 +return this.NE(s)?a+2:s}} +A.mr.prototype={ +Qz(a){var s,r=this.e,q=r.Q +if(q!=null){q=q.e +q===$&&A.a() +q=!q.grQ()}else q=!0 +if(q)return +s=a.a +if(s.a!==s.KO(a.c,a.b).a)r.jP(!1)}, +d0(a,b){var s,r,q,p,o,n,m=this,l=m.e,k=l.a.c.a.b +if(!k.gbG())return null +s=l.NO() +r=k.a +q=k.b +if(r!==q){r=s.eH(r) +if(r==null)r=l.a.c.a.a.length +q=s.eI(q-1) +if(q==null)q=0 +p=new A.jD(l.a.c.a,"",new A.c4(r,q),B.ah) +m.Qz(p) +b.toString +return A.lb(b,p,t.UM)}r=a.a +o=m.r.$3(k.gmF(),r,m.f.$0()).a +q=k.c +if(r){r=s.eH(q) +if(r==null)r=l.a.c.a.a.length}else{r=s.eI(q-1) +if(r==null)r=0}n=A.c8(B.j,r,o,!1) +p=new A.jD(l.a.c.a,"",n,B.ah) +m.Qz(p) +b.toString +return A.lb(b,p,t.UM)}, +dv(a){return this.d0(a,null)}, +gjS(){var s=this.e.a +return!s.x&&s.c.a.b.gbG()}} +A.IU.prototype={ +d0(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.e,i=j.a,h=i.c.a,g=h.b,f=a.b||!i.aL +i=g.a +s=g.b +r=i===s +if(!r&&!k.f&&f){b.toString +return A.lb(b,new A.iO(h,A.mf(B.j,a.a?s:i),B.ah),t.gU)}q=g.gdd() +if(a.d){i=a.a +h=!1 +if(i){s=j.gal().t1(q).b +if(new A.ao(s,B.ak).j(0,q)){h=j.a.c.a.a +h=s!==h.length&&h.charCodeAt(q.a)!==10}}if(h)q=new A.ao(q.a,B.j) +else{if(!i){i=j.gal().t1(q).a +i=new A.ao(i,B.j).j(0,q)&&i!==0&&j.a.c.a.a.charCodeAt(q.a-1)!==10}else i=!1 +if(i)q=new A.ao(q.a,B.ak)}}i=k.r +if(i){h=g.c +s=g.d +p=a.a?h>s:h"))}, +gcU(){var s,r,q=this.x +if(q==null){s=A.b([],t.bp) +r=this.Q +while(r!=null){s.push(r) +r=r.Q}this.x=s +q=s}return q}, +gbQ(){if(!this.gkH()){var s=this.w +if(s==null)s=null +else{s=s.c +s=s==null?null:B.b.p(s.gcU(),this)}s=s===!0}else s=!0 +return s}, +gkH(){var s=this.w +return(s==null?null:s.c)===this}, +ghW(){return this.gfV()}, +O6(){var s,r,q,p,o=this.ay +if(o==null)return +this.ay=null +s=this.as +r=s.length +if(r!==0)for(q=0;q")).aj(0,B.b.grF(r))}}b.Q=null +b.O6() +B.b.F(this.as,b) +for(r=this.gcU(),q=r.length,p=0;p#"+s+q}, +$iac:1} +A.a8i.prototype={ +$1(a){return!a.gfH()&&a.b&&B.b.e6(a.gcU(),A.eE())}, +$S:33} +A.a8h.prototype={ +$1(a){return a.gfV()===this.a}, +$S:33} +A.lw.prototype={ +ghW(){return this}, +gfT(){return this.b&&A.d_.prototype.gfT.call(this)}, +gpr(){if(!(this.b&&B.b.e6(this.gcU(),A.eE())))return B.nh +return A.d_.prototype.gpr.call(this)}, +D5(a){if(a.Q==null)this.yO(a) +if(this.gbQ())a.kj(!0) +else a.oe()}, +am8(a,b){var s,r=this +if(b.Q==null)r.yO(b) +s=r.w +if(s!=null)s.w.push(new A.Tn(r,b)) +s=r.w +if(s!=null)s.ug()}, +kj(a){var s,r,q,p=this,o=p.fy +for(;;){if(o.length!==0){s=B.b.gae(o) +if(s.b&&B.b.e6(s.gcU(),A.eE())){s=B.b.gae(o) +r=s.ay +if(r==null){q=s.Q +r=s.ay=q==null?null:q.ghW()}s=r==null}else s=!0}else s=!1 +if(!s)break +o.pop()}o=A.jl(o) +if(!a||o==null){if(p.b&&B.b.e6(p.gcU(),A.eE())){p.oe() +p.R4(p)}return}o.kj(!0)}} +A.nm.prototype={ +K(){return"FocusHighlightMode."+this.b}} +A.a8g.prototype={ +K(){return"FocusHighlightStrategy."+this.b}} +A.Te.prototype={ +qX(a){return this.a.$1(a)}} +A.At.prototype={ +gail(){return!0}, +l(){var s,r=this,q=r.e +if(q!=null)$.aa.iC(q) +q=r.a +s=$.e0.br$ +s===$&&A.a() +if(J.d(s.a,q.gXq())){$.f1.a9$.b.F(0,q.gXr()) +s=$.e0.br$ +s===$&&A.a() +s.a=null +$.vS.IL$.F(0,q.gXt())}q.f=new A.er(A.w(t.Su,t.S),t.t6) +r.b.l() +r.cY()}, +a6I(a){var s,r,q=this +if(a===B.cz)if(q.c!==q.b)q.f=null +else{s=q.f +if(s!=null){s.iD() +q.f=null}}else{s=q.c +r=q.b +if(s!==r){q.r=r +q.f=s +q.V3()}}}, +ug(){if(this.x)return +this.x=!0 +A.dx(this.gam2())}, +V3(){var s,r,q,p,o,n,m,l,k,j=this +j.x=!1 +s=j.c +for(r=j.w,q=r.length,p=j.b,o=0;o")) +if(!r.gag(0).u())p=null +else p=b?r.gae(0):r.ga3(0)}return p==null?a:p}, +Pb(a,b){return this.EN(a,!1,b)}, +arF(a){}, +HE(a,b){}, +q8(a,b){var s,r,q,p,o,n,m,l=this,k=a.ghW() +k.toString +l.m8(k) +l.r8$.F(0,k) +s=A.jl(k.fy) +r=s==null +if(r){q=b?l.Pb(a,!1):l.EN(a,!0,!1) +return l.qe(q,b?B.cm:B.cn,b)}if(r)s=k +p=A.aDb(k,s) +if(b&&s===B.b.gae(p))switch(k.fr.a){case 1:s.iF() +return!1 +case 2:o=k.gfV() +if(o!=null&&o!==$.aa.an$.d.b){s.iF() +k=o.e +k.toString +A.nn(k).q8(o,!0) +k=s.gfV() +return(k==null?null:A.jl(k.fy))!==s}return l.qe(B.b.ga3(p),B.cm,b) +case 0:return l.qe(B.b.ga3(p),B.cm,b) +case 3:return!1}if(!b&&s===B.b.ga3(p))switch(k.fr.a){case 1:s.iF() +return!1 +case 2:o=k.gfV() +if(o!=null&&o!==$.aa.an$.d.b){s.iF() +k=o.e +k.toString +A.nn(k).q8(o,!1) +k=s.gfV() +return(k==null?null:A.jl(k.fy))!==s}return l.qe(B.b.gae(p),B.cn,b) +case 0:return l.qe(B.b.gae(p),B.cn,b) +case 3:return!1}for(k=J.bb(b?p:new A.cc(p,A.a2(p).i("cc<1>"))),n=null;k.u();n=m){m=k.gN(k) +if(n===s)return l.qe(m,b?B.cm:B.cn,b)}return!1}} +A.a8m.prototype={ +$1(a){return a.b&&B.b.e6(a.gcU(),A.eE())&&!a.gfH()}, +$S:33} +A.a8o.prototype={ +$1(a){var s,r,q,p,o,n,m +for(s=a.c,r=s.length,q=this.b,p=this.a,o=0;o")) +if(!p.ga7(0))s=p}o=J.aGs(s,new A.a5G(new A.x(a.gbl(0).a,-1/0,a.gbl(0).c,1/0))) +if(!o.ga7(0)){if(d)return B.b.ga3(A.aHq(a.gbl(0).gaV(),o)) +return B.b.gae(A.aHq(a.gbl(0).gaV(),o))}if(d)return B.b.ga3(A.aHr(a.gbl(0).gaV(),s)) +return B.b.gae(A.aHr(a.gbl(0).gaV(),s)) +case B.cu:case B.cw:s=this.ajO(c,a.gbl(0),b,d) +if(s.length===0)break +r=a.e +r.toString +q=A.i0(r,B.b1) +if(q!=null){p=new A.aY(s,new A.a5H(q),A.a2(s).i("aY<1>")) +if(!p.ga7(0))s=p}o=J.aGs(s,new A.a5I(new A.x(-1/0,a.gbl(0).b,1/0,a.gbl(0).d))) +if(!o.ga7(0)){if(d)return B.b.ga3(A.aHp(a.gbl(0).gaV(),o)) +return B.b.gae(A.aHp(a.gbl(0).gaV(),o))}if(d)return B.b.ga3(A.aHs(a.gbl(0).gaV(),s)) +return B.b.gae(A.aHs(a.gbl(0).gaV(),s))}return null}, +Pc(a,b,c){return this.EO(a,b,c,!0)}, +ajO(a,b,c,d){var s +$label0$0:{}s=c.l2(0,null).f8(0) +A.mO(s,new A.a5K(),t.mx) +return s}, +ajP(a,b,c,d){var s +$label0$0:{}s=c.l2(0,null).f8(0) +A.mO(s,new A.a5L(),t.mx) +return s}, +ahB(a,b,c){var s,r,q,p=this,o=p.r8$,n=o.h(0,b),m=n!=null +if(m){s=n.a +r=s.length!==0 +if(r)B.b.ga3(s) +s=r}else s=!1 +if(s){s=n.a +if(B.b.gae(s).b.Q==null){p.m8(b) +o.F(0,b) +return!1}q=new A.a5J(p,n,b) +switch(a){case B.cv:case B.ct:switch(B.b.ga3(s).a){case B.cw:case B.cu:p.m8(b) +o.F(0,b) +break +case B.ct:case B.cv:if(q.$1(a))return!0 +break}break +case B.cw:case B.cu:switch(B.b.ga3(s).a){case B.cw:case B.cu:if(q.$1(a))return!0 +break +case B.ct:case B.cv:p.m8(b) +o.F(0,b) +break}break}}if(m&&n.a.length===0){p.m8(b) +o.F(0,b)}return!1}, +G2(a,b,c,d){var s,r,q,p=this +if(b instanceof A.lw){s=b.fy +if(A.jl(s)!=null){s=A.jl(s) +s.toString +return p.G2(a,s,b,d)}r=p.X0(b,d) +if(r==null)r=a +switch(d){case B.ct:case B.cw:p.a.$2$alignmentPolicy(r,B.cn) +break +case B.cu:case B.cv:p.a.$2$alignmentPolicy(r,B.cm) +break}return!0}q=b.gkH() +switch(d){case B.ct:case B.cw:p.a.$2$alignmentPolicy(b,B.cn) +break +case B.cu:case B.cv:p.a.$2$alignmentPolicy(b,B.cm) +break}return!q}, +Ri(a,b,c,d){var s,r,q,p,o=this +if(d==null){s=a.ghW() +s.toString +r=s}else r=d +switch(r.fx.a){case 1:b.iF() +return!1 +case 2:q=r.gfV() +if(q!=null&&q!==$.aa.an$.d.b){o.m8(r) +s=o.r8$ +s.F(0,r) +o.m8(q) +s.F(0,q) +p=o.Pc(b,q.gpr(),c) +if(p==null)return o.Ri(a,b,c,q) +r=q}else p=o.EO(b,r.gpr(),c,!1) +break +case 0:p=o.EO(b,r.gpr(),c,!1) +break +case 3:return!1 +default:p=null}if(p!=null)return o.G2(a,p,r,c) +return!1}, +ag_(a,b,c){return this.Ri(a,b,c,null)}, +ari(a,b){var s,r,q,p,o,n=this,m=a.ghW(),l=A.jl(m.fy) +if(l==null){s=n.X0(a,b) +if(s==null)s=a +switch(b){case B.ct:case B.cw:n.a.$2$alignmentPolicy(s,B.cn) +break +case B.cu:case B.cv:n.a.$2$alignmentPolicy(s,B.cm) +break}return!0}if(n.ahB(b,m,l))return!0 +r=n.Pc(l,m.gpr(),b) +if(r!=null){q=n.r8$ +p=q.h(0,m) +o=new A.wS(b,l) +if(p!=null)p.a.push(o) +else q.m(0,m,new A.UI(A.b([o],t.Kj))) +return n.G2(a,r,m,b)}return n.ag_(a,l,b)}} +A.awo.prototype={ +$1(a){return a.b===this.a}, +$S:427} +A.a5Q.prototype={ +$2(a,b){var s=this.a +if(s.b)if(s.a)return B.d.b5(a.gbl(0).b,b.gbl(0).b) +else return B.d.b5(b.gbl(0).d,a.gbl(0).d) +else if(s.a)return B.d.b5(a.gbl(0).a,b.gbl(0).a) +else return B.d.b5(b.gbl(0).c,a.gbl(0).c)}, +$S:40} +A.a5F.prototype={ +$1(a){var s=a.e +s.toString +return A.i0(s,B.af)===this.a}, +$S:33} +A.a5G.prototype={ +$1(a){return!a.gbl(0).dM(this.a).ga7(0)}, +$S:33} +A.a5H.prototype={ +$1(a){var s=a.e +s.toString +return A.i0(s,B.b1)===this.a}, +$S:33} +A.a5I.prototype={ +$1(a){return!a.gbl(0).dM(this.a).ga7(0)}, +$S:33} +A.a5N.prototype={ +$2(a,b){var s=a.gbl(0).gaV(),r=b.gbl(0).gaV(),q=this.a,p=A.aCX(q,s,r) +if(p===0)return A.aCW(q,s,r) +return p}, +$S:40} +A.a5M.prototype={ +$2(a,b){var s=a.gbl(0).gaV(),r=b.gbl(0).gaV(),q=this.a,p=A.aCW(q,s,r) +if(p===0)return A.aCX(q,s,r) +return p}, +$S:40} +A.a5O.prototype={ +$2(a,b){var s,r,q,p=this.a,o=a.gbl(0),n=b.gbl(0),m=o.a,l=p.a,k=o.c +m=Math.abs(m-l)"),s=new A.ae(s,new A.awj(),r),s=new A.bd(s,s.gv(0),r.i("bd")),r=r.i("ax.E");s.u();){q=s.d +if(q==null)q=r.a(q) +p=o.b +if(p==null){o.b=q +p=q}o.b=p.fX(q)}s=o.b +s.toString +return s}} +A.awj.prototype={ +$1(a){return a.b}, +$S:433} +A.awk.prototype={ +$2(a,b){var s +switch(this.a.a){case 1:s=B.d.b5(a.gbl(0).a,b.gbl(0).a) +break +case 0:s=B.d.b5(b.gbl(0).c,a.gbl(0).c) +break +default:s=null}return s}, +$S:434} +A.ahq.prototype={} +A.ahs.prototype={ +$2(a,b){return B.d.b5(a.b.b,b.b.b)}, +$S:196} +A.aht.prototype={ +$2(a,b){var s=a.b,r=A.a2(b).i("aY<1>") +s=A.a6(new A.aY(b,new A.ahu(new A.x(-1/0,s.b,1/0,s.d)),r),r.i("o.E")) +return s}, +$S:435} +A.ahu.prototype={ +$1(a){return!a.b.dM(this.a).ga7(0)}, +$S:436} +A.Av.prototype={ +ac(){return new A.Vx()}} +A.G7.prototype={} +A.Vx.prototype={ +gcG(a){var s,r,q,p=this,o=p.d +if(o===$){s=p.a.c +r=A.b([],t.bp) +q=$.aw() +p.d!==$&&A.aA() +o=p.d=new A.G7(s,!1,!0,!0,!0,null,null,r,q)}return o}, +aw(){this.aK() +this.a.toString}, +l(){this.gcG(0).l() +this.aD()}, +aH(a){var s=this +s.b0(a) +if(a.c!==s.a.c)s.gcG(0).fr=s.a.c}, +H(a){var s=null,r=this.gcG(0) +return A.nl(!1,!1,this.a.f,s,!0,!0,r,!1,s,s,s,s,s,!0)}} +A.Q9.prototype={ +dv(a){a.awH(a.gcG(a))}} +A.qW.prototype={} +A.OG.prototype={ +dv(a){var s=$.aa.an$.d.c,r=s.e +r.toString +return A.nn(r).q8(s,!0)}, +KW(a,b){return b?B.f6:B.hR}} +A.rg.prototype={} +A.Pm.prototype={ +dv(a){var s=$.aa.an$.d.c,r=s.e +r.toString +return A.nn(r).q8(s,!1)}, +KW(a,b){return b?B.f6:B.hR}} +A.zL.prototype={ +dv(a){var s,r +if(!this.c){s=$.aa.an$.d.c +r=s.e +r.toString +A.nn(r).ari(s,a.a)}}} +A.Vy.prototype={} +A.Y9.prototype={ +HE(a,b){var s +this.a1Y(a,b) +s=this.r8$.h(0,b) +if(s!=null)B.b.k0(s.a,new A.awo(a))}} +A.a0T.prototype={} +A.a0U.prototype={} +A.AA.prototype={ +ac(){return new A.AB(A.aP(t.gx))}} +A.AB.prototype={ +a9H(){var s=this +s.a.toString +s.e=s.f.jG(0,new A.a8C()) +s.Pi()}, +Pi(){this.T(new A.a8D(this))}, +H(a){var s,r,q,p=this,o=null +switch(p.a.x.a){case 1:s=A.ml(a) +s.toString +p.GR(s) +break +case 2:if(p.e){s=A.ml(a) +s.toString +p.GR(s)}break +case 3:case 0:break}r=p.a +q=p.d +q=A.aYz(r.c,p,q) +return A.bG(o,o,new A.F0(q,o,o),!0,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,B.Qv,o,o,o,o,o,o,B.z,o)}, +rV(){var s,r,q=this +q.e=!0 +q.Pi() +s=q.c +s.toString +r=A.ml(s) +r.toString +return q.GR(r)}, +GR(a){var s,r,q,p,o,n,m,l=this,k={},j=k.a="" +l.a.toString +for(s=l.f,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c,q=!1;s.u();){p=s.d +if(p==null)p=r.a(p) +p.r.gbQ() +q=B.e0.t6(q,!p.rV()) +if(k.a.length===0){p=p.e +p===$&&A.a() +o=p.y +n=o==null?A.n(p).i("bJ.T").a(o):o +k.a=n==null?j:n}}if(k.a.length!==0){s=l.c +s.toString +s=A.bW(s,B.Bp) +s=s==null?null:s.ch +s=s===!0}else s=!1 +if(s){m=l.c.ad(t.I).w +if(A.aM()===B.L)A.a8P(new A.a8E(k,a,m),t.H) +else A.QV(a,k.a,m,B.n_)}return!q}} +A.a8C.prototype={ +$1(a){var s=a.f,r=s.y +return r==null?A.n(s).i("bJ.T").a(r):r}, +$S:437} +A.a8D.prototype={ +$0(){++this.a.d}, +$S:0} +A.a8E.prototype={ +$0(){var s=0,r=A.H(t.H),q=this +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=2 +return A.v(A.N6(B.d1,null,t.H),$async$$0) +case 2:A.QV(q.b,q.a.a,q.c,B.n_) +return A.F(null,r)}}) +return A.G($async$$0,r)}, +$S:9} +A.G9.prototype={ +ce(a){return this.r!==a.r}} +A.lx.prototype={ +ac(){return A.aU6(A.n(this).i("lx.T"))}} +A.hL.prototype={ +gGS(){var s=this.d +return s===$?this.d=this.a.x:s}, +rV(){var s,r +this.T(new A.a8B(this)) +s=this.e +s===$&&A.a() +r=s.y +return(r==null?A.n(s).i("bJ.T").a(r):r)==null}, +zl(){var s,r=this.a +r=r.r +s=this.e +if(r!=null){s===$&&A.a() +s.sq(0,r.$1(this.gGS()))}else{s===$&&A.a() +s.sq(0,null)}}, +Ag(a){var s +this.T(new A.a8A(this,a)) +s=this.c +s.toString +s=A.N2(s) +if(s!=null)s.a9H()}, +ged(){return this.a.Q}, +hs(a,b){var s=this,r=s.e +r===$&&A.a() +s.kU(r,"error_text") +s.kU(s.f,"has_interacted_by_user")}, +dJ(){var s=this.c +s.toString +s=A.N2(s) +if(s!=null)s.f.F(0,this) +this.mb()}, +aw(){var s,r,q=this +q.aK() +s=q.a.f +r=$.aw() +q.e!==$&&A.bw() +q.e=new A.Qc(s,r)}, +aH(a){this.a43(a) +this.a.toString}, +be(){this.a42() +var s=this.c +s.toString +s=A.N2(s) +switch(s==null?null:s.a.x){case B.n1:$.aa.k4$.push(new A.a8z(this)) +break +case B.jx:case B.BP:case B.jw:case null:case void 0:break}}, +l(){var s=this,r=s.e +r===$&&A.a() +r.l() +s.r.l() +s.f.l() +s.a44()}, +H(a){var s,r,q=this,p=null,o=q.a +if(o.y)switch(o.z.a){case 1:q.zl() +break +case 2:o=q.f +s=o.y +if(s==null?A.n(o).i("bJ.T").a(s):s)q.zl() +break +case 3:case 0:break}o=A.N2(a) +if(o!=null)o.f.E(0,q) +o=q.e +o===$&&A.a() +s=o.y +o=(s==null?A.n(o).i("bJ.T").a(s):s)!=null?B.lQ:B.lP +r=A.bG(p,p,q.a.c.$1(q),!1,p,p,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p) +o=A.N2(a) +if((o==null?p:o.a.x)===B.jx&&q.a.z!==B.n1||q.a.z===B.jx)return A.nl(!1,!1,r,p,p,p,q.r,!0,p,new A.a8y(q),p,p,p,!0) +return r}} +A.a8B.prototype={ +$0(){this.a.zl()}, +$S:0} +A.a8A.prototype={ +$0(){var s=this.a +s.d=this.b +s.f.MW(0,!0)}, +$S:0} +A.a8z.prototype={ +$1(a){var s,r,q=this.a,p=q.a,o=!1 +if(p.y){s=q.e +s===$&&A.a() +r=s.y +if((r==null?A.n(s).i("bJ.T").a(r):r)==null){p=p.r +p=(p==null?null:p.$1(q.gGS()))==null +p=!p}else p=o}else p=o +if(p)q.rV()}, +$S:6} +A.a8y.prototype={ +$1(a){var s +if(!a){s=this.a +s.T(new A.a8x(s))}}, +$S:16} +A.a8x.prototype={ +$0(){this.a.zl()}, +$S:0} +A.tR.prototype={ +K(){return"AutovalidateMode."+this.b}} +A.as8.prototype={ +$2(a,b){if(!a.a)a.J(0,b)}, +$S:50} +A.wZ.prototype={ +aH(a){this.b0(a) +this.oG()}, +be(){var s,r,q,p,o=this +o.dc() +s=o.bw$ +r=o.gnh() +q=o.c +q.toString +q=A.o9(q) +o.fp$=q +p=o.mB(q,r) +if(r){o.hs(s,o.e7$) +o.e7$=!1}if(p)if(s!=null)s.l()}, +l(){var s,r=this +r.fo$.aj(0,new A.as8()) +s=r.bw$ +if(s!=null)s.l() +r.bw$=null +r.aD()}} +A.jg.prototype={ +gL(){var s,r,q,p=$.aa.an$.x.h(0,this) +$label0$0:{s=p instanceof A.iI +r=null +if(s){q=p.ok +q.toString +r=q +q=A.n(this).c.b(q)}else q=!1 +if(q){if(s)q=r +else{q=p.ok +q.toString}A.n(this).c.a(q) +break $label0$0}q=null +break $label0$0}return q}} +A.bu.prototype={ +k(a){var s,r=this,q=r.a +if(q!=null)s=" "+q +else s="" +if(A.r(r)===B.Y7)return"[GlobalKey#"+A.bi(r)+s+"]" +return"["+("#"+A.bi(r))+s+"]"}} +A.qi.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return this.$ti.b(b)&&b.a===this.a}, +gB(a){return A.pi(this.a)}, +k(a){var s="GlobalObjectKey",r=B.c.lx(s,">")?B.c.a1(s,0,-8):s +return"["+r+" "+("#"+A.bi(this.a))+"]"}} +A.f.prototype={ +d5(){var s=this.a +return s==null?"Widget":"Widget-"+s.k(0)}, +j(a,b){if(b==null)return!1 +return this.pO(0,b)}, +gB(a){return A.R.prototype.gB.call(this,0)}} +A.aj.prototype={ +bJ(a){return new A.w5(this,B.Z)}} +A.Y.prototype={ +bJ(a){var s=this.ac(),r=new A.iI(s,this,B.Z) +s.c=r +s.a=this +return r}} +A.X.prototype={ +gaa(){var s=this.a +s.toString +return s}, +aw(){}, +aH(a){}, +T(a){a.$0() +this.c.cc()}, +dJ(){}, +bA(){}, +l(){}, +be(){}} +A.aQ.prototype={} +A.ef.prototype={ +bJ(a){return new A.nT(this,B.Z,A.n(this).i("nT"))}} +A.b5.prototype={ +bJ(a){return A.aUr(this)}} +A.as.prototype={ +aP(a,b){}, +vh(a){}} +A.O3.prototype={ +bJ(a){return new A.O2(this,B.Z)}} +A.b7.prototype={ +bJ(a){return new A.DE(this,B.Z)}} +A.ev.prototype={ +bJ(a){return A.aV7(this)}} +A.t8.prototype={ +K(){return"_ElementLifecycle."+this.b}} +A.VW.prototype={ +aky(){var s,r=this.b,q=A.a6(r,A.n(r).c) +B.b.fa(q,A.aFg()) +s=q +r.a5(0) +try{r=s +new A.cc(r,A.a2(r).i("cc<1>")).aj(0,A.b1J())}finally{}}, +E(a,b){var s +$label0$0:{s=b.w +if(B.fR===s){A.aLc(b) +this.b.E(0,b) +break $label0$0}if(B.Bj===s){this.b.E(0,b) +break $label0$0}}}} +A.atn.prototype={ +$1(a){A.aLd(a)}, +$S:11} +A.La.prototype={ +akr(a){var s,r,q +try{a.Zx()}catch(q){s=A.a1(q) +r=A.aH(q) +A.aB7(A.br("while rebuilding dirty elements"),s,r,new A.a3x(a))}}, +a9U(a){var s,r,q,p,o,n=this,m=n.e +B.b.fa(m,A.aFg()) +n.d=!1 +try{for(s=0;s0?r[a-1].as:s))break;--a}return a}} +A.a3x.prototype={ +$0(){var s=null,r=A.b([],t.D) +J.fF(r,A.h4("The element being rebuilt at the time was",this.a,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.cg,s)) +return r}, +$S:21} +A.a3w.prototype={ +LL(a){var s,r=this,q=a.gls() +if(!r.c&&r.a!=null){r.c=!0 +r.a.$0()}if(!a.at){q.e.push(a) +a.at=!0}if(!q.a&&!q.b){q.a=!0 +s=q.c +if(s!=null)s.$0()}if(q.d!=null)q.d=!0}, +YG(a){try{a.$0()}finally{}}, +uQ(a,b){var s=a.gls(),r=b==null +if(r&&s.e.length===0)return +try{this.c=!0 +s.b=!0 +if(!r)try{b.$0()}finally{}s.a9U(a)}finally{this.c=s.b=!1}}, +amo(a){return this.uQ(a,null)}, +apx(){var s,r,q +try{this.YG(this.b.gakx())}catch(q){s=A.a1(q) +r=A.aH(q) +A.aB7(A.kh("while finalizing the widget tree"),s,r,null)}finally{}}} +A.C2.prototype={ +Hj(){var s=this.a +this.b=new A.av4(this,s==null?null:s.b)}} +A.av4.prototype={ +dK(a){var s=this.a.Z_(a) +if(s)return +s=this.b +if(s!=null)s.dK(a)}} +A.aB.prototype={ +j(a,b){if(b==null)return!1 +return this===b}, +gaa(){var s=this.e +s.toString +return s}, +gls(){var s=this.r +s.toString +return s}, +gU(){for(var s=this;s!=null;)if(s.w===B.Bk)break +else if(s instanceof A.b_)return s.gU() +else s=s.grG() +return null}, +grG(){var s={} +s.a=null +this.bg(new A.a78(s)) +return s.a}, +aoA(a){var s=null,r=A.b([],t.D),q=A.b([],t.lX) +this.k8(new A.a76(q)) +r.push(A.h4("The specific widget that could not find a "+a.k(0)+" ancestor was",this,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.cg,s)) +if(q.length!==0)r.push(A.aTo("The ancestors of this widget were",q)) +else r.push(A.br('This widget is the root of the tree, so it has no ancestors, let alone a "'+a.k(0)+'" ancestor.')) +return r}, +aoz(a){var s=null +return A.h4(a,this,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.cg,s)}, +bg(a){}, +dD(a,b,c){var s,r,q=this +if(b==null){if(a!=null)q.Ad(a) +return null}if(a!=null){s=a.gaa().pO(0,b) +if(s){if(!J.d(a.c,c))q.a_p(a,c) +r=a}else{s=a.gaa() +if(A.r(s)===A.r(b)&&J.d(s.a,b.a)){if(!J.d(a.c,c))q.a_p(a,c) +a.cm(0,b) +r=a}else{q.Ad(a) +r=q.vR(b,c)}}}else r=q.vR(b,c) +return r}, +a_m(a0,a1,a2){var s,r,q,p,o,n,m,l=this,k=null,j=new A.a79(a2),i=new A.a7a(k),h=a1.length,g=h-1,f=a0.length-1,e=t.h,d=A.bz(h,$.aFY(),!1,e),c=k,b=0,a=0 +for(;;){if(!(a<=f&&b<=g))break +s=j.$1(a0[a]) +r=a1[b] +if(s!=null){h=s.gaa() +h=!(A.r(h)===A.r(r)&&J.d(h.a,r.a))}else h=!0 +if(h)break +h=l.dD(s,r,i.$2(b,c)) +h.toString +d[b]=h;++b;++a +c=h}q=f +for(;;){h=a<=q +if(!(h&&b<=g))break +s=j.$1(a0[q]) +r=a1[g] +if(s!=null){p=s.gaa() +p=!(A.r(p)===A.r(r)&&J.d(p.a,r.a))}else p=!0 +if(p)break;--q;--g}if(h){o=A.w(t.D2,e) +while(a<=q){s=j.$1(a0[a]) +if(s!=null)if(s.gaa().a!=null){e=s.gaa().a +e.toString +o.m(0,e,s)}else{s.a=null +s.oC() +l.f.b.E(0,s)}++a}}else o=k +for(;b<=g;c=e){r=a1[b] +s=k +if(h){n=r.a +if(n!=null){m=o.h(0,n) +if(m!=null){e=m.gaa() +if(A.r(e)===A.r(r)&&J.d(e.a,n)){o.F(0,n) +s=m}}else s=m}}e=l.dD(s,r,i.$2(b,c)) +e.toString +d[b]=e;++b}g=a1.length-1 +for(;;){if(!(a<=f&&b<=g))break +e=l.dD(a0[a],a1[b],i.$2(b,c)) +e.toString +d[b]=e;++b;++a +c=e}if(h&&o.a!==0)for(h=new A.dl(o,o.r,o.e);h.u();){e=h.d +p=a2.p(0,e) +if(!p){e.a=null +e.oC() +l.f.b.E(0,e)}}return d}, +ea(a,b){var s,r,q,p=this +p.a=a +p.c=b +p.w=B.fR +s=a==null +if(s)r=null +else{r=a.d +r===$&&A.a()}p.d=1+(r==null?0:r) +if(!s){p.f=a.f +p.r=a.gls()}q=p.gaa().a +if(q instanceof A.jg)p.f.x.m(0,q,p) +p.GC() +p.Hj()}, +cm(a,b){this.e=b}, +a_p(a,b){new A.a7b(b).$1(a)}, +wL(a){this.c=a}, +TY(a){var s=a+1,r=this.d +r===$&&A.a() +if(r")),n=n.c;r.u();){q=r.d;(q==null?n.a(q):q).n.F(0,p)}p.y=null +p.w=B.Bj}, +l1(){var s=this,r=s.e,q=r==null?null:r.a +if(q instanceof A.jg){r=s.f.x +if(J.d(r.h(0,q),s))r.F(0,q)}s.z=s.e=null +s.w=B.Bk}, +gt(a){var s=this.gU() +if(s instanceof A.y)return s.gt(0) +return null}, +mM(a,b){var s=this.z;(s==null?this.z=A.dj(t.IS):s).E(0,a) +a.L0(this,b) +return t.WB.a(a.gaa())}, +vb(a){return this.mM(a,null)}, +ad(a){var s=this.y,r=s==null?null:s.h(0,A.bZ(a)) +if(r!=null)return a.a(this.mM(r,null)) +this.Q=!0 +return null}, +wX(a){var s=this.fD(a) +s=s==null?null:s.gaa() +return a.i("0?").a(s)}, +fD(a){var s=this.y +return s==null?null:s.h(0,A.bZ(a))}, +Hj(){var s=this.a +this.b=s==null?null:s.b}, +GC(){var s=this.a +this.y=s==null?null:s.y}, +IX(a){var s,r=this.a +for(;;){s=r==null +if(!(!s&&A.r(r.gaa())!==A.bZ(a)))break +r=r.a}s=s?null:r.gaa() +return a.i("0?").a(s)}, +kD(a){var s,r,q=this.a +while(s=q==null,!s){if(q instanceof A.iI){r=q.ok +r.toString +r=a.b(r)}else r=!1 +if(r)break +q=q.a}t.lE.a(q) +if(s)s=null +else{s=q.ok +s.toString}return a.i("0?").a(s)}, +apA(a){var s,r,q=this.a +for(s=null;q!=null;){if(q instanceof A.iI){r=q.ok +r.toString +r=a.b(r)}else r=!1 +if(r)s=q +q=q.a}if(s==null)r=null +else{r=s.ok +r.toString}return a.i("0?").a(r)}, +re(a){var s=this.a +while(s!=null){if(s instanceof A.b_&&a.b(s.gU()))return a.a(s.gU()) +s=s.a}return null}, +k8(a){var s=this.a +for(;;){if(!(s!=null&&a.$1(s)))break +s=s.a}}, +be(){this.cc()}, +dK(a){var s=this.b +if(s!=null)s.dK(a)}, +d5(){var s=this.e +s=s==null?null:s.d5() +return s==null?"#"+A.bi(this)+"(DEFUNCT)":s}, +cc(){var s=this +if(s.w!==B.fR)return +if(s.as)return +s.as=!0 +s.f.LL(s)}, +C8(a){var s +if(this.w===B.fR)s=!this.as&&!a +else s=!0 +if(s)return +try{this.jj()}finally{}}, +Zx(){return this.C8(!1)}, +jj(){this.as=!1}, +$iL:1} +A.a78.prototype={ +$1(a){this.a.a=a}, +$S:11} +A.a76.prototype={ +$1(a){this.a.push(a) +return!0}, +$S:22} +A.a75.prototype={ +$1(a){var s=null +return A.h4("",a,!0,B.bb,s,s,s,B.aF,!1,!0,!0,B.d0,s)}, +$S:438} +A.a79.prototype={ +$1(a){var s=this.a.p(0,a) +return s?null:a}, +$S:439} +A.a7a.prototype={ +$2(a,b){return new A.nt(b,a,t.Bc)}, +$S:440} +A.a7b.prototype={ +$1(a){var s +a.wL(this.a) +s=a.grG() +if(s!=null)this.$1(s)}, +$S:11} +A.a73.prototype={ +$1(a){a.TY(this.a)}, +$S:11} +A.a72.prototype={ +$1(a){a.TL()}, +$S:11} +A.a77.prototype={ +$1(a){a.oC()}, +$S:11} +A.a74.prototype={ +$1(a){a.uN(this.a)}, +$S:11} +A.MJ.prototype={ +aG(a){var s=this.d,r=new A.CJ(s,new A.aO(),A.ah()) +r.aF() +r.a5U(s) +return r}} +A.zj.prototype={ +grG(){return this.ay}, +ea(a,b){this.Dt(a,b) +this.EQ()}, +EQ(){this.Zx()}, +jj(){var s,r,q,p,o,n,m,l=this,k=null +try{k=l.hj() +l.gaa()}catch(o){s=A.a1(o) +r=A.aH(o) +n=A.Ac(A.aB7(A.br("building "+l.k(0)),s,r,new A.a4M())) +k=n}finally{l.nM()}try{l.ay=l.dD(l.ay,k,l.c)}catch(o){q=A.a1(o) +p=A.aH(o) +n=A.Ac(A.aB7(A.br("building "+l.k(0)),q,p,new A.a4N())) +k=n +try{m=l.ay +if(m!=null)m.dJ()}catch(o){}l.ay=l.dD(null,k,l.c)}}, +bg(a){var s=this.ay +if(s!=null)a.$1(s)}, +ir(a){this.ay=null +this.jv(a)}} +A.a4M.prototype={ +$0(){var s=A.b([],t.D) +return s}, +$S:21} +A.a4N.prototype={ +$0(){var s=A.b([],t.D) +return s}, +$S:21} +A.w5.prototype={ +hj(){return t.Iz.a(this.gaa()).H(this)}, +cm(a,b){this.pM(0,b) +this.C8(!0)}} +A.iI.prototype={ +hj(){return this.ok.H(this)}, +EQ(){this.ok.aw() +this.ok.be() +this.a1I()}, +jj(){var s=this +if(s.p1){s.ok.be() +s.p1=!1}s.a1J()}, +cm(a,b){var s,r,q,p=this +p.pM(0,b) +s=p.ok +r=s.a +r.toString +q=p.e +q.toString +s.a=t.d1.a(q) +s.aH(r) +p.C8(!0)}, +bA(){this.tl() +this.ok.bA() +this.cc()}, +dJ(){this.ok.dJ() +this.Mr()}, +l1(){var s=this +s.tm() +s.ok.l() +s.ok=s.ok.c=null}, +mM(a,b){return this.xu(a,b)}, +vb(a){return this.mM(a,null)}, +be(){this.Ds() +this.p1=!0}} +A.Cp.prototype={ +hj(){return t.yH.a(this.gaa()).b}, +cm(a,b){var s=this,r=t.yH.a(s.gaa()) +s.pM(0,b) +s.wM(r) +s.C8(!0)}, +wM(a){this.pe(a)}} +A.nT.prototype={ +Nt(a){var s=this.ay +if(s!=null)new A.ag8(a).$1(s)}, +pe(a){var s=this.e +s.toString +this.Nt(this.$ti.i("ef<1>").a(s))}} +A.ag8.prototype={ +$1(a){var s +if(a instanceof A.b_)this.a.qA(a.gU()) +else if(a.grG()!=null){s=a.grG() +s.toString +this.$1(s)}}, +$S:11} +A.fJ.prototype={ +GC(){var s=this,r=s.a,q=r==null?null:r.y +if(q==null)q=B.Or +s.y=q.aui(0,A.r(s.gaa()),s)}, +LV(a,b){this.n.m(0,a,b)}, +L0(a,b){this.LV(a,null)}, +K4(a,b){b.be()}, +wM(a){if(t.WB.a(this.gaa()).ce(a))this.a2E(a)}, +pe(a){var s,r,q +for(s=this.n,r=A.n(s),s=new A.x3(s,s.Eg(),r.i("x3<1>")),r=r.c;s.u();){q=s.d +this.K4(a,q==null?r.a(q):q)}}} +A.b_.prototype={ +gU(){var s=this.ay +s.toString +return s}, +grG(){return null}, +a9N(){var s=this.a +for(;;){if(!(s!=null&&!(s instanceof A.b_)))break +s=s.a}return t.p2.a(s)}, +a9M(){var s=this.a,r=A.b([],t.OM) +for(;;){if(!(s!=null&&!(s instanceof A.b_)))break +if(s instanceof A.nT)r.push(s) +s=s.a}return r}, +ea(a,b){var s=this +s.Dt(a,b) +s.ay=t.F5.a(s.gaa()).aG(s) +s.uN(b) +s.nM()}, +cm(a,b){var s=this +s.pM(0,b) +t.F5.a(s.gaa()).aP(s,s.gU()) +s.nM()}, +jj(){var s=this +t.F5.a(s.gaa()).aP(s,s.gU()) +s.nM()}, +dJ(){this.Mr()}, +l1(){var s=this,r=t.F5.a(s.gaa()) +s.tm() +r.vh(s.gU()) +s.ay.l() +s.ay=null}, +wL(a){var s,r=this,q=r.c +r.a1V(a) +s=r.CW +if(s!=null)s.jh(r.gU(),q,r.c)}, +uN(a){var s,r,q,p,o,n=this +n.c=a +s=n.CW=n.a9N() +if(s!=null)s.jc(n.gU(),a) +r=n.a9M() +for(s=r.length,q=t.IL,p=0;p"))}, +jc(a,b){var s=this.gU(),r=b.a +s.Jx(0,a,r==null?null:r.gU())}, +jh(a,b,c){var s=this.gU(),r=c.a +s.wb(a,r==null?null:r.gU())}, +k_(a,b){this.gU().F(0,a)}, +bg(a){var s,r,q,p,o=this.p1 +o===$&&A.a() +s=o.length +r=this.p2 +q=0 +for(;q") +j.d=new A.al(t.o.a(q),new A.fa(new A.fl(new A.ed(o,1,B.U)),p,n),n.i("al"))}}if(s)s=!(isFinite(r.a)&&isFinite(r.b)) +else s=!0 +j.w=s}, +a1h(a,b){var s,r,q,p=this +p.sasx(b) +s=p.f +switch(s.a.a){case 1:r=p.e +r===$&&A.a() +r.saT(0,new A.hi(s.giV(0),new A.ba(A.b([],t.F),t.R),0)) +q=!1 +break +case 0:r=p.e +r===$&&A.a() +r.saT(0,s.giV(0)) +q=!0 +break +default:q=null}s=p.f +p.b=s.v3(s.gXe(),p.f.gCo()) +p.f.f.Dk(q) +p.f.r.Dj() +s=p.f.b +r=A.r1(p.ga76(),!1,!1) +p.r=r +s.lG(0,r) +r=p.e +r===$&&A.a() +r.bk() +r.cF$.E(0,p.gKl())}, +k(a){var s,r,q=this.f,p=q.d.c,o=q.e.c,n=q.f.a.c +q=p.k(0) +s=o.k(0) +r=this.e +r===$&&A.a() +return"HeroFlight(for: "+n+", from: "+q+", to: "+s+" "+A.k(r.c)+")"}} +A.asE.prototype={ +$2(a,b){var s,r=null,q=this.a,p=q.b +p===$&&A.a() +s=q.e +s===$&&A.a() +s=p.a8(0,s.gq(0)) +s.toString +p=q.f.c +return A.rf(p.b-s.d,A.kn(new A.d5(q.d,!1,b,r),!0,r),r,r,s.a,p.a-s.c,s.b,r)}, +$S:452} +A.asF.prototype={ +$0(){var s,r=this.a +r.x=!1 +this.b.cy.J(0,this) +s=r.e +s===$&&A.a() +r.RC(s.gaN(0))}, +$S:0} +A.AJ.prototype={ +aoF(a,b){var s +if(b==null)return +s=$.k1() +A.q2(this) +if(!s.a.get(this).cy.a)this.Ra(b,!1,a)}, +oF(){var s,r,q,p,o=$.k1() +A.q2(this) +if(o.a.get(this).cy.a)return +o=this.b +s=A.n(o).i("bf<2>") +r=s.i("aY") +o=A.a6(new A.aY(new A.bf(o,s),new A.a9t(),r),r.i("o.E")) +o.$flags=1 +q=o +for(o=q.length,p=0;p"),a1=t.k2;s.u();){a2=s.gN(s) +a3=a2.a +a4=a2.b +a5=l.h(0,a3) +a6=j.h(0,a3) +if(a5==null||i)a7=null +else{a2=r.fy +if(a2==null)a2=A.a0(A.a5("RenderBox was not laid out: "+A.r(r).k(0)+"#"+A.bi(r))) +a5.a.toString +a4.a.toString +a7=new A.asD(b4,q,a2,b2,b3,a4,a5,k,p,b5,a6!=null)}if(a7!=null&&a7.gbG()){l.F(0,a3) +if(a6!=null){a2=a6.f +a8=a2.a +if(a8===B.dZ&&a7.a===B.e_){a2=a6.e +a2===$&&A.a() +a2.saT(0,new A.hi(a7.giV(0),new A.ba(A.b([],g),f),0)) +a2=a6.b +a2===$&&A.a() +a6.b=new A.D1(a2,a2.b,a2.a,a1)}else{a8=a8===B.e_&&a7.a===B.dZ +a9=a6.e +if(a8){a9===$&&A.a() +a2=a7.giV(0) +a8=a6.f.giV(0).gq(0) +a9.saT(0,new A.al(a.a(a2),new A.ay(a8,1,b),a0)) +a2=a6.f +a8=a2.f +a9=a7.r +if(a8!==a9){a8.r0(!0) +a9.Dj() +a2=a6.f +a2.toString +a8=a6.b +a8===$&&A.a() +a6.b=a2.v3(a8.b,a7.gCo())}else{a8=a6.b +a8===$&&A.a() +a6.b=a2.v3(a8.b,a8.a)}}else{a8=a6.b +a8===$&&A.a() +a9===$&&A.a() +a6.b=a2.v3(a8.a8(0,a9.gq(0)),a7.gCo()) +a6.c=null +a2=a7.a +a8=a6.e +if(a2===B.e_)a8.saT(0,new A.hi(a7.giV(0),new A.ba(A.b([],g),f),0)) +else a8.saT(0,a7.giV(0)) +a6.f.f.r0(!0) +a6.f.r.r0(!0) +a7.f.Dk(a2===B.dZ) +a7.r.Dj() +a2=a6.r.r.gL() +if(a2!=null)a2.yu()}}a2=a6.f +if(a2!=null){a2=a2.Q +if(a2!=null)a2.a.cd(a2.gGy())}a6.f=a7}else{a2=new A.mw(h,B.dD) +a8=A.b([],g) +a9=new A.ba(a8,f) +b0=new A.rj(a9,new A.er(A.w(e,d),c),0) +b0.a=B.Q +b0.b=0 +b0.bk() +a9.b=!0 +a8.push(a2.gPY()) +a2.e=b0 +a2.a1h(0,a7) +j.m(0,a3,a2)}}else if(a6!=null)a6.w=!0}for(s=l.geu(l),s=s.gag(s);s.u();)s.gN(s).ap2()}, +abM(a){var s=this.b.F(0,a.f.f.a.c) +if(s!=null)s.l()}, +a8x(a,b,c,d,e){var s=t.rA.a(e.gaa()),r=A.bW(e,null),q=A.bW(d,null) +if(r==null||q==null)return s.e +return A.hC(b,new A.a9r(r,c,q.r,r.r,b,s),null)}, +l(){for(var s=this.b,s=new A.dl(s,s.r,s.e);s.u();)s.d.l()}} +A.a9t.prototype={ +$1(a){var s=a.f,r=!1 +if(s.y)if(s.a===B.e_){s=a.e +s===$&&A.a() +s=s.gaN(0)===B.Q}else s=r +else s=r +return s}, +$S:455} +A.a9s.prototype={ +$1(a){var s=this,r=s.c +if(r.b==null||s.d.b==null)return +s.b.T5(r,s.d,s.a.a,s.e)}, +$S:6} +A.a9r.prototype={ +$2(a,b){var s=this,r=s.c,q=s.d,p=s.e +r=s.b===B.dZ?new A.A0(r,q).a8(0,p.gq(p)):new A.A0(q,r).a8(0,p.gq(p)) +return A.v7(s.f.e,s.a.qP(r))}, +$S:456} +A.ca.prototype={ +H(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=a.ad(t.I).w,g=A.aa8(a),f=j.d,e=f==null?g.a:f +if(e==null)e=14 +if(g.x===!0){f=A.bW(a,B.bz) +f=f==null?i:f.gcA() +s=(f==null?B.aB:f).aJ(0,e)}else s=e +r=g.b +q=g.c +p=g.d +o=g.e +n=j.c +m=g.gcR(0) +if(m==null)m=1 +l=j.x +if(l==null){f=g.f +f.toString +l=f}if(m!==1)l=l.b_(l.gcR(l)*m) +f=A.b([],t.uf) +if(r!=null)f.push(new A.kl("FILL",r)) +if(q!=null)f.push(new A.kl("wght",q)) +if(p!=null)f.push(new A.kl("GRAD",p)) +if(o!=null)f.push(new A.kl("opsz",o)) +k=A.aDT(i,i,i,B.SL,i,i,!0,i,A.d2(i,i,A.iL(i,i,l,i,i,i,i,i,n.b,i,i,s,i,f,i,i,1,!1,B.D,i,i,i,i,g.w,i,i),A.dn(n.a)),B.az,h,i,B.aB,B.aP) +if(n.d)switch(h.a){case 0:f=new A.b6(new Float64Array(16)) +f.dF() +f.nz(-1,1,1,1) +k=A.EJ(B.a_,k,i,f,!1) +break +case 1:break}return A.bG(i,i,new A.ng(!0,A.e1(A.dG(k,i,i),s,s),i),!1,i,i,!1,i,i,i,i,i,i,j.z,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,B.z,i)}} +A.by.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.by&&b.a===s.a&&b.b==s.b&&b.d===s.d&&A.cE(null,null)}, +gB(a){return A.T(this.a,this.b,null,this.d,A.bI(B.KF),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"IconData(U+"+B.c.eb(B.f.lV(this.a,16).toUpperCase(),5,"0")+")"}} +A.qq.prototype={ +ce(a){return!this.w.j(0,a.w)}, +np(a,b,c){return A.AR(c,this.w,null)}} +A.aa7.prototype={ +$1(a){return A.AR(this.c,A.aIc(a).aZ(this.b),this.a)}, +$S:457} +A.cP.prototype={ +ox(a,b,c,d,e,f,g,h,i){var s=this,r=h==null?s.a:h,q=c==null?s.b:c,p=i==null?s.c:i,o=d==null?s.d:d,n=f==null?s.e:f,m=b==null?s.f:b,l=e==null?s.gcR(0):e,k=g==null?s.w:g +return new A.cP(r,q,p,o,n,m,l,k,a==null?s.x:a)}, +b1(a){var s=null +return this.ox(s,a,s,s,s,s,s,s,s)}, +W3(a,b){var s=null +return this.ox(s,a,s,s,s,s,s,b,s)}, +aZ(a){return this.ox(a.x,a.f,a.b,a.d,a.gcR(0),a.e,a.w,a.a,a.c)}, +Y(a){return this}, +gcR(a){var s=this.r +if(s==null)s=null +else s=A.A(s,0,1) +return s}, +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return b instanceof A.cP&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.d(b.f,s.f)&&b.gcR(0)==s.gcR(0)&&A.cE(b.w,s.w)&&b.x==s.x}, +gB(a){var s=this,r=s.gcR(0),q=s.w +q=q==null?null:A.bI(q) +return A.T(s.a,s.b,s.c,s.d,s.e,s.f,r,q,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.VS.prototype={} +A.AS.prototype={ +ac(){return new A.Gk()}} +A.Gk.prototype={ +aw(){var s=this +s.aK() +$.aa.c1$.push(s) +s.z=new A.Mp(s)}, +l(){var s,r=this +$.aa.iC(r) +r.ajX() +s=r.at +if(s!=null)s.l() +s=r.z +s===$&&A.a() +s.a=null +r.G_(null) +r.aD()}, +be(){var s,r=this +r.U6() +r.Sb() +s=r.c +s.toString +if(A.aEa(s))r.aeU() +else r.Ta(!0) +r.dc()}, +aH(a){var s,r,q=this +q.b0(a) +if(q.r&&q.a.e==null!==(a.e==null)){s=q.tR() +r=q.d +r.toString +r.Z(0,q.Py(!0)) +q.d.J(0,s)}if(!q.a.c.j(0,a.c))q.Sb()}, +Ah(){this.a3R() +this.T(new A.atm(this))}, +U6(){var s=this.c +s.toString +s=A.bW(s,B.ZI) +s=s==null?null:s.Q +if(s==null){s=$.vS.vt$ +s===$&&A.a() +s=(s.a&2)!==0}this.w=s}, +Sb(){var s,r,q,p,o=this,n=o.z +n===$&&A.a() +s=o.a +r=s.c +q=o.c +q.toString +p=s.r +if(p!=null&&s.w!=null){s=s.w +s.toString +s=new A.I(p,s)}else s=null +o.al9(new A.De(n,r,t.JE).Y(A.a1U(q,s)))}, +Py(a){var s,r=this,q=r.ax +if(q==null||a){r.as=r.Q=null +q=r.a +s=q.e==null?null:r.gac0() +q=q.f +q=q!=null?new A.atf(r):null +q=r.ax=new A.hP(r.gac2(),s,q)}return q}, +tR(){return this.Py(!1)}, +ac3(a,b){this.T(new A.ath(this,a,b))}, +ac1(a){this.T(new A.atg(this,a))}, +G_(a){var s=this.e +$.bC.k4$.push(new A.ati(s)) +this.e=a}, +al9(a){var s,r,q=this,p=q.d +if(p==null)s=null +else{s=p.a +if(s==null)s=p}r=a.a +if(s===(r==null?a:r))return +if(q.r){p.toString +p.J(0,q.tR())}q.a.toString +q.T(new A.atk(q)) +q.T(new A.atl(q)) +q.d=a +if(q.r)a.Z(0,q.tR())}, +aeU(){var s,r=this +if(r.r)return +s=r.d +s.toString +s.Z(0,r.tR()) +s=r.at +if(s!=null)s.l() +r.at=null +r.r=!0}, +Ta(a){var s,r=this +if(!r.r)return +s=!1 +if(a)if(r.at==null){s=r.d +s=(s==null?null:s.a)!=null}if(s)r.at=r.d.a.rn() +s=r.d.a +if(s!=null&&r.a.f!=null)s.alH(new A.atj()) +s=r.d +s.toString +s.J(0,r.tR()) +r.r=!1}, +ajX(){return this.Ta(!1)}, +H(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.Q +if(e!=null){s=g.a.f +if(s!=null)return s.$3(a,e,g.as)}r=A.c9() +e=g.e +s=e==null +q=s?f:e.a +p=s?f:e.c +o=g.a +n=o.r +m=o.w +e=s?f:e.b +if(e==null)e=1 +s=o.x +l=o.Q +k=o.as +j=o.at +i=o.ax +h=g.w +h===$&&A.a() +r.b=new A.Px(q,p,n,m,e,s,f,o.z,l,k,j,i,f,!1,h,!1,f) +g.a.toString +r.b=A.bG(f,f,r.aS(),!1,f,f,!1,f,f,f,f,!0,f,"",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,B.z,f) +r.b=g.a.d.$4(a,r.aS(),g.x,g.y) +e=g.a.e +if(e!=null)r.b=e.$3(a,r.aS(),g.f) +return r.aS()}} +A.atm.prototype={ +$0(){this.a.U6()}, +$S:0} +A.atf.prototype={ +$2(a,b){var s=this.a +s.T(new A.ate(s,a,b))}, +$S:241} +A.ate.prototype={ +$0(){var s=this.a +s.Q=this.b +s.as=this.c}, +$S:0} +A.ath.prototype={ +$0(){var s,r=this.a +r.G_(this.b) +r.as=r.Q=r.f=null +s=r.x +r.x=s==null?0:s+1 +r.y=B.e0.t6(r.y,this.c)}, +$S:0} +A.atg.prototype={ +$0(){var s=this.a +s.f=this.b +s.as=s.Q=null}, +$S:0} +A.ati.prototype={ +$1(a){var s=this.a +if(s!=null)s.a.l() +return null}, +$S:6} +A.atk.prototype={ +$0(){this.a.G_(null)}, +$S:0} +A.atl.prototype={ +$0(){var s=this.a +s.x=s.f=null +s.y=!1}, +$S:0} +A.atj.prototype={ +$2(a,b){}, +$S:241} +A.a0I.prototype={} +A.pv.prototype={ +e8(a){var s=A.hD(this.a,this.b,a) +s.toString +return s}} +A.lk.prototype={ +e8(a){var s=A.a5q(this.a,this.b,a) +s.toString +return s}} +A.A0.prototype={ +e8(a){var s=A.A1(this.a,this.b,a) +s.toString +return s}} +A.ln.prototype={ +e8(a){var s=A.cZ(this.a,this.b,a) +s.toString +return s}} +A.pu.prototype={ +e8(a){return A.j4(this.a,this.b,a)}} +A.qP.prototype={ +e8(b0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=new A.eD(new Float64Array(3)),a5=new A.eD(new Float64Array(3)),a6=A.aJz(),a7=A.aJz(),a8=new A.eD(new Float64Array(3)),a9=new A.eD(new Float64Array(3)) +this.a.Wi(a4,a6,a8) +this.b.Wi(a5,a7,a9) +s=1-b0 +r=a4.m3(s).V(0,a5.m3(b0)) +q=a6.m3(s).V(0,a7.m3(b0)) +p=new Float64Array(4) +o=new A.lZ(p) +o.cB(q) +o.we(0) +n=a8.m3(s).V(0,a9.m3(b0)) +s=new Float64Array(16) +q=new A.b6(s) +m=p[0] +l=p[1] +k=p[2] +j=p[3] +i=m+m +h=l+l +g=k+k +f=m*i +e=m*h +d=m*g +c=l*h +b=l*g +a=k*g +a0=j*i +a1=j*h +a2=j*g +a3=r.a +s[0]=1-(c+a) +s[1]=e+a2 +s[2]=d-a1 +s[3]=0 +s[4]=e-a2 +s[5]=1-(f+a) +s[6]=b+a0 +s[7]=0 +s[8]=d+a1 +s[9]=b-a0 +s[10]=1-(f+c) +s[11]=0 +s[12]=a3[0] +s[13]=a3[1] +s[14]=a3[2] +s[15]=1 +s=n.a +q.nz(s[0],s[1],s[2],1) +return q}} +A.rV.prototype={ +e8(a){var s=A.bm(this.a,this.b,a) +s.toString +return s}} +A.NG.prototype={} +A.uM.prototype={ +gmI(a){var s,r=this,q=r.d +if(q===$){s=A.bK(null,r.a.d,null,null,r) +r.d!==$&&A.aA() +r.d=s +q=s}return q}, +gei(){var s,r=this,q=r.e +if(q===$){s=r.gmI(0) +q=r.e=A.cw(r.a.c,s,null)}return q}, +aw(){var s,r=this +r.aK() +s=r.gmI(0) +s.bk() +s=s.co$ +s.b=!0 +s.a.push(new A.aaF(r)) +r.Ot() +r.In()}, +aH(a){var s,r=this +r.b0(a) +if(r.a.c!==a.c){r.gei().l() +s=r.gmI(0) +r.e=A.cw(r.a.c,s,null)}s=r.gmI(0) +s.e=r.a.d +if(r.Ot()){r.lE(new A.aaE(r)) +s.j9(0,0) +r.In()}}, +l(){this.gei().l() +this.gmI(0).l() +this.a49()}, +Ot(){var s={} +s.a=!1 +this.lE(new A.aaD(s)) +return s.a}, +In(){}} +A.aaF.prototype={ +$1(a){if(a===B.a2)this.a.a.toString}, +$S:7} +A.aaE.prototype={ +$3(a,b,c){var s +if(a==null)s=null +else{a.sHo(a.a8(0,this.a.gei().gq(0))) +a.sbv(0,b) +s=a}return s}, +$S:204} +A.aaD.prototype={ +$3(a,b,c){var s +if(b!=null){if(a==null)a=c.$1(b) +s=a.b +if(!J.d(b,s==null?a.a:s))this.a.a=!0 +else if(a.b==null)a.sbv(0,a.a)}else a=null +return a}, +$S:204} +A.tN.prototype={ +aw(){this.a29() +var s=this.gmI(0) +s.bk() +s.cF$.E(0,this.gaaS())}, +aaT(){this.T(new A.a2K())}} +A.a2K.prototype={ +$0(){}, +$S:0} +A.yk.prototype={ +ac(){return new A.SX(null,null)}} +A.SX.prototype={ +lE(a){var s,r,q=this,p=null,o=q.CW +q.a.toString +s=t.VA +q.CW=s.a(a.$3(o,p,new A.ao4())) +o=q.cx +q.a.toString +r=t.Om +q.cx=r.a(a.$3(o,p,new A.ao5())) +o=t.xG +q.cy=o.a(a.$3(q.cy,q.a.y,new A.ao6())) +q.db=o.a(a.$3(q.db,q.a.z,new A.ao7())) +q.dx=t.YY.a(a.$3(q.dx,q.a.Q,new A.ao8())) +o=q.dy +q.a.toString +q.dy=r.a(a.$3(o,p,new A.ao9())) +o=q.fr +q.a.toString +q.fr=t.ka.a(a.$3(o,p,new A.aoa())) +o=q.fx +q.a.toString +q.fx=s.a(a.$3(o,p,new A.aob()))}, +H(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.gei(),i=l.CW +i=i==null?k:i.a8(0,j.gq(0)) +s=l.cx +s=s==null?k:s.a8(0,j.gq(0)) +r=l.cy +r=r==null?k:r.a8(0,j.gq(0)) +q=l.db +q=q==null?k:q.a8(0,j.gq(0)) +p=l.dx +p=p==null?k:p.a8(0,j.gq(0)) +o=l.dy +o=o==null?k:o.a8(0,j.gq(0)) +n=l.fr +n=n==null?k:n.a8(0,j.gq(0)) +m=l.fx +m=m==null?k:m.a8(0,j.gq(0)) +return A.c_(i,l.a.r,B.n,k,p,r,q,k,o,s,n,m,k)}} +A.ao4.prototype={ +$1(a){return new A.mU(t.pC.a(a),null)}, +$S:205} +A.ao5.prototype={ +$1(a){return new A.ln(t.A0.a(a),null)}, +$S:105} +A.ao6.prototype={ +$1(a){return new A.lk(t.Hw.a(a),null)}, +$S:207} +A.ao7.prototype={ +$1(a){return new A.lk(t.Hw.a(a),null)}, +$S:207} +A.ao8.prototype={ +$1(a){return new A.pv(t.k.a(a),null)}, +$S:464} +A.ao9.prototype={ +$1(a){return new A.ln(t.A0.a(a),null)}, +$S:105} +A.aoa.prototype={ +$1(a){return new A.qP(t.xV.a(a),null)}, +$S:465} +A.aob.prototype={ +$1(a){return new A.mU(t.pC.a(a),null)}, +$S:205} +A.yo.prototype={ +ac(){return new A.T_(null,null)}} +A.T_.prototype={ +lE(a){this.CW=t.Om.a(a.$3(this.CW,this.a.r,new A.aoe()))}, +H(a){var s=this.CW +s.toString +return new A.bo(J.aQX(s.a8(0,this.gei().gq(0)),B.as,B.Br),this.a.w,null)}} +A.aoe.prototype={ +$1(a){return new A.ln(t.A0.a(a),null)}, +$S:105} +A.yq.prototype={ +ac(){return new A.T1(null,null)}} +A.T1.prototype={ +lE(a){var s,r=this,q=null,p=t.ir +r.CW=p.a(a.$3(r.CW,r.a.w,new A.aoj())) +r.cx=p.a(a.$3(r.cx,r.a.x,new A.aok())) +s=r.cy +r.a.toString +r.cy=p.a(a.$3(s,q,new A.aol())) +s=r.db +r.a.toString +r.db=p.a(a.$3(s,q,new A.aom())) +s=r.dx +r.a.toString +r.dx=p.a(a.$3(s,q,new A.aon())) +s=r.dy +r.a.toString +r.dy=p.a(a.$3(s,q,new A.aoo()))}, +H(a){var s,r,q,p,o,n=this,m=null,l=n.CW +l=l==null?m:l.a8(0,n.gei().gq(0)) +s=n.cx +s=s==null?m:s.a8(0,n.gei().gq(0)) +r=n.cy +r=r==null?m:r.a8(0,n.gei().gq(0)) +q=n.db +q=q==null?m:q.a8(0,n.gei().gq(0)) +p=n.dx +p=p==null?m:p.a8(0,n.gei().gq(0)) +o=n.dy +o=o==null?m:o.a8(0,n.gei().gq(0)) +return A.rf(q,n.a.r,o,m,l,r,s,p)}} +A.aoj.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.aok.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.aol.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.aom.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.aon.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.aoo.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.yn.prototype={ +ac(){return new A.SZ(null,null)}} +A.SZ.prototype={ +lE(a){this.z=t.ir.a(a.$3(this.z,this.a.w,new A.aod()))}, +In(){var s=this.gei(),r=this.z +r.toString +this.Q=new A.al(t.o.a(s),r,A.n(r).i("al"))}, +H(a){var s=this.Q +s===$&&A.a() +return new A.d5(s,!1,this.a.r,null)}} +A.aod.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.yl.prototype={ +ac(){return new A.SY(null,null)}} +A.SY.prototype={ +lE(a){this.CW=t.Dh.a(a.$3(this.CW,this.a.w,new A.aoc()))}, +H(a){var s=null,r=this.CW +r.toString +r=r.a8(0,this.gei().gq(0)) +return A.kd(this.a.r,s,s,B.c6,!0,r,s,s,B.aP)}} +A.aoc.prototype={ +$1(a){return new A.rV(t.em.a(a),null)}, +$S:466} +A.yp.prototype={ +ac(){return new A.T0(null,null)}} +A.T0.prototype={ +lE(a){var s=this,r=s.CW +s.a.toString +s.CW=t.eJ.a(a.$3(r,B.ac,new A.aof())) +s.cx=t.ir.a(a.$3(s.cx,s.a.z,new A.aog())) +r=t.YJ +s.cy=r.a(a.$3(s.cy,s.a.Q,new A.aoh())) +s.db=r.a(a.$3(s.db,s.a.at,new A.aoi()))}, +H(a){var s,r,q,p=this,o=p.a.x,n=p.CW +n.toString +n=n.a8(0,p.gei().gq(0)) +s=p.cx +s.toString +s=s.a8(0,p.gei().gq(0)) +r=p.a.Q +q=p.db +q.toString +q=q.a8(0,p.gei().gq(0)) +q.toString +return new A.P9(B.aq,o,n,s,r,q,p.a.r,null)}} +A.aof.prototype={ +$1(a){return new A.pu(t.m_.a(a),null)}, +$S:467} +A.aog.prototype={ +$1(a){return new A.ay(A.cp(a),null,t.Y)}, +$S:32} +A.aoh.prototype={ +$1(a){return new A.fj(t.G.a(a),null)}, +$S:85} +A.aoi.prototype={ +$1(a){return new A.fj(t.G.a(a),null)}, +$S:85} +A.x6.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.iu.prototype={ +bJ(a){return new A.AX(A.h9(null,null,null,t.h,t.X),this,B.Z,A.n(this).i("AX"))}} +A.AX.prototype={ +L0(a,b){var s=this.n,r=this.$ti,q=r.i("bg<1>?").a(s.h(0,a)),p=q==null +if(!p&&q.ga7(q))return +if(b==null)s.m(0,a,A.dj(r.c)) +else{p=p?A.dj(r.c):q +p.E(0,r.c.a(b)) +s.m(0,a,p)}}, +K4(a,b){var s,r=this.$ti,q=r.i("bg<1>?").a(this.n.h(0,b)) +if(q==null)return +if(!q.ga7(q)){s=this.e +s.toString +s=r.i("iu<1>").a(s).L6(a,q) +r=s}else r=!0 +if(r)b.be()}} +A.kp.prototype={ +ce(a){return a.f!==this.f}, +bJ(a){var s=new A.x7(A.h9(null,null,null,t.h,t.X),this,B.Z,A.n(this).i("x7")) +this.f.Z(0,s.gFh()) +return s}} +A.x7.prototype={ +cm(a,b){var s,r,q=this,p=q.e +p.toString +s=q.$ti.i("kp<1>").a(p).f +r=b.f +if(s!==r){p=q.gFh() +s.J(0,p) +r.Z(0,p)}q.MJ(0,b)}, +hj(){var s,r=this +if(r.bK){s=r.e +s.toString +r.Mu(r.$ti.i("kp<1>").a(s)) +r.bK=!1}return r.MI()}, +ae5(){this.bK=!0 +this.cc()}, +pe(a){this.Mu(a) +this.bK=!1}, +l1(){var s=this,r=s.e +r.toString +s.$ti.i("kp<1>").a(r).f.J(0,s.gFh()) +s.tm()}} +A.cQ.prototype={} +A.aaG.prototype={ +$1(a){var s,r,q,p,o +if(a.j(0,this.a))return!1 +s=a instanceof A.fJ +r=null +if(s){r=a.gaa() +q=r +q=q instanceof A.cQ}else q=!1 +if(q){q=s?r:a.gaa() +t.og.a(q) +p=A.r(q) +o=this.b +if(!o.p(0,p)){o.E(0,p) +this.c.push(q)}}return!0}, +$S:22} +A.Le.prototype={} +A.mo.prototype={ +H(a){var s,r,q,p=this.d +for(s=this.c,r=s.length,q=0;q"))}} +A.x9.prototype={ +gU(){return this.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(this))}, +gls(){var s,r=this,q=r.p2 +if(q===$){s=A.b([],t.lX) +r.p2!==$&&A.aA() +q=r.p2=new A.La(r.gaiM(),s)}return q}, +aiN(){var s,r,q,p=this +if(p.p3)return +s=$.bC +r=s.p2$ +$label0$0:{if(B.dm===r||B.lG===r){q=!0 +break $label0$0}if(B.zw===r||B.zx===r||B.ek===r){q=!1 +break $label0$0}q=null}if(!q){p.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(p)).pC() +return}p.p3=!0 +s.x6(p.gaa2())}, +aa3(a){var s=this +s.p3=!1 +if(s.e!=null)s.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(s)).pC()}, +bg(a){var s=this.p1 +if(s!=null)a.$1(s)}, +ir(a){this.p1=null +this.jv(a)}, +ea(a,b){var s=this +s.nR(a,b) +s.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(s)).TM(s.gRP())}, +cm(a,b){var s,r=this,q=r.e +q.toString +s=r.$ti +s.i("l9<1>").a(q) +r.ma(0,b) +s=s.i("eN<1,t>") +s.a(A.b_.prototype.gU.call(r)).TM(r.gRP()) +r.R8=!0 +s.a(A.b_.prototype.gU.call(r)).pC()}, +cc(){this.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(this)).pC() +this.R8=!0}, +jj(){var s=this +s.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(s)).pC() +s.R8=!0 +s.Dz()}, +l1(){this.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(this)).AJ$=null +this.MT()}, +ahP(a){var s=this,r=s.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(s)).gYD(),q=new A.atY(s,r) +q=s.R8||!r.j(0,s.p4)?q:null +s.f.uQ(s,q)}, +jc(a,b){this.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(this)).saU(a)}, +jh(a,b,c){}, +k_(a,b){this.$ti.i("eN<1,t>").a(A.b_.prototype.gU.call(this)).saU(null)}} +A.atY.prototype={ +$0(){var s,r,q,p,o,n,m,l,k=this,j=null +try{o=k.a +n=o.e +n.toString +j=o.$ti.i("l9<1>").a(n).gHx().$2(o,k.b) +o.e.toString}catch(m){s=A.a1(m) +r=A.aH(m) +l=A.Ac(A.aMu(A.br("building "+k.a.e.k(0)),s,r,new A.atZ())) +j=l}try{o=k.a +o.p1=o.dD(o.p1,j,null)}catch(m){q=A.a1(m) +p=A.aH(m) +o=k.a +l=A.Ac(A.aMu(A.br("building "+o.e.k(0)),q,p,new A.au_())) +j=l +o.p1=o.dD(null,j,o.c)}finally{o=k.a +o.R8=!1 +o.p4=k.b}}, +$S:0} +A.atZ.prototype={ +$0(){var s=A.b([],t.D) +return s}, +$S:21} +A.au_.prototype={ +$0(){var s=A.b([],t.D) +return s}, +$S:21} +A.eN.prototype={ +TM(a){if(J.d(a,this.AJ$))return +this.AJ$=a +this.pC()}, +JP(){var s=this.AJ$ +s.toString +return s.$1(this.gW())}, +gYD(){return A.n(this).i("eN.0").a(this.gW())}} +A.xo.prototype={} +A.aB0.prototype={ +$1(a){return this.a.a=a}, +$S:111} +A.aB1.prototype={ +$1(a){return a.b}, +$S:469} +A.aB2.prototype={ +$1(a){var s,r,q,p +for(s=J.aE(a),r=this.a,q=this.b,p=0;ps.b?B.Oh:B.Og}, +v2(a,b,c,d,e){var s=this,r=c==null?s.gcA():c,q=b==null?s.r:b,p=e==null?s.w:e,o=d==null?s.f:d,n=a==null?s.cy:a +return new A.BD(s.a,s.b,r,s.e,o,q,p,s.x,!1,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,n,!1)}, +ao1(a,b){return this.v2(null,a,null,null,b)}, +W_(a){var s=null +return this.v2(s,s,a,s,s)}, +qP(a){var s=null +return this.v2(s,a,s,s,s)}, +ao3(a,b){return this.v2(null,null,null,a,b)}, +ao6(a,b,c,d){return this.v2(a,b,null,c,d)}, +ZK(a,b,c,d){var s,r,q,p,o,n,m=this,l=null +if(!(b||d||c||a))return m +s=m.r +r=b?0:l +q=d?0:l +p=c?0:l +r=s.ow(a?0:l,r,p,q) +q=m.w +p=b?Math.max(0,q.a-s.a):l +o=d?Math.max(0,q.b-s.b):l +n=c?Math.max(0,q.c-s.c):l +return m.ao1(r,q.ow(a?Math.max(0,q.d-s.d):l,p,n,o))}, +ZO(a,b,c,d){var s=this,r=null,q=s.w,p=b?Math.max(0,q.a-s.f.a):r,o=d?Math.max(0,q.b-s.f.b):r,n=c?Math.max(0,q.c-s.f.c):r,m=s.f,l=Math.max(0,q.d-m.d) +q=q.ow(l,p,n,o) +p=b?0:r +o=d?0:r +n=c?0:r +return s.ao3(m.ow(0,p,n,o),q)}, +auQ(a){return this.ZO(a,!1,!1,!1)}, +auK(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=a.c,f=a.a,e=a.d,d=a.b,c=h.a +if(new A.I(g-f,e-d).j(0,c)&&new A.j(f,d).j(0,B.i))return h +s=c.a-g +r=c.b-e +g=h.r +e=Math.max(0,g.a-f) +c=Math.max(0,g.b-d) +q=Math.max(0,g.c-s) +g=Math.max(0,g.d-r) +p=h.w +o=Math.max(0,p.a-f) +n=Math.max(0,p.b-d) +m=Math.max(0,p.c-s) +p=Math.max(0,p.d-r) +l=h.f +f=Math.max(0,l.a-f) +d=Math.max(0,l.b-d) +k=Math.max(0,l.c-s) +l=Math.max(0,l.d-r) +j=h.cy +i=A.a2(j).i("aY<1>") +j=A.a6(new A.aY(j,new A.aei(a),i),i.i("o.E")) +return h.ao6(j,new A.az(e,c,q,g),new A.az(f,d,k,l),new A.az(o,n,m,p))}, +j(a,b){var s,r=this +if(b==null)return!1 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.BD)if(b.a.j(0,r.a))if(b.b===r.b)if(b.gcA().gk6()===r.gcA().gk6())if(b.e===r.e)if(b.r.j(0,r.r))if(b.w.j(0,r.w))if(b.f.j(0,r.f))if(b.x.j(0,r.x))if(b.as===r.as)if(b.at===r.at)if(b.ax===r.ax)if(b.Q===r.Q)if(b.z===r.z)if(b.ay===r.ay)if(b.ch===r.ch)if(b.CW===r.CW)if(b.cx.j(0,r.cx))s=A.cE(b.cy,r.cy) +return s}, +gB(a){var s=this +return A.T(s.a,s.b,s.gcA().gk6(),s.e,s.r,s.w,s.f,!1,s.as,s.at,s.ax,s.Q,s.z,s.ay,s.CW,s.cx,A.bI(s.cy),!1,B.a,B.a)}, +k(a){var s=this +return"MediaQueryData("+B.b.bn(A.b(["size: "+s.a.k(0),"devicePixelRatio: "+B.d.ah(s.b,1),"textScaler: "+s.gcA().k(0),"platformBrightness: "+s.e.k(0),"padding: "+s.r.k(0),"viewPadding: "+s.w.k(0),"viewInsets: "+s.f.k(0),"systemGestureInsets: "+s.x.k(0),"alwaysUse24HourFormat: false","accessibleNavigation: "+s.z,"highContrast: "+s.as,"onOffSwitchLabels: "+s.at,"disableAnimations: "+s.ax,"invertColors: "+s.Q,"boldText: "+s.ay,"navigationMode: "+s.CW.b,"gestureSettings: "+s.cx.k(0),"displayFeatures: "+A.k(s.cy),"supportsShowingSystemContextMenu: false"],t.s),", ")+")"}} +A.aei.prototype={ +$1(a){return this.a.ft(a.gqG(a))}, +$S:192} +A.jr.prototype={ +ce(a){return!this.w.j(0,a.w)}, +L6(a,b){return b.jG(0,new A.aej(this,a))}} +A.ael.prototype={ +$1(a){return A.v7(this.a,A.bP(a,null,t.w).w.W_(B.aB))}, +$S:208} +A.aek.prototype={ +$1(a){var s=A.bP(a,null,t.w).w +return A.v7(this.c,s.W_(s.gcA().zT(0,this.b,this.a)))}, +$S:208} +A.aej.prototype={ +$1(a){var s=this,r=!1 +if(a instanceof A.dD)switch(a.a){case 0:r=!s.a.w.a.j(0,s.b.w.a) +break +case 1:r=s.a.w.a.a!==s.b.w.a.a +break +case 2:r=s.a.w.a.b!==s.b.w.a.b +break +case 3:r=s.a.w.gpf(0)!==s.b.w.gpf(0) +break +case 4:r=s.a.w.b!==s.b.w.b +break +case 5:r=s.a.w.gcA().gk6()!==s.b.w.gcA().gk6() +break +case 6:r=!s.a.w.gcA().j(0,s.b.w.gcA()) +break +case 7:r=s.a.w.e!==s.b.w.e +break +case 8:r=!s.a.w.r.j(0,s.b.w.r) +break +case 9:r=!s.a.w.f.j(0,s.b.w.f) +break +case 11:r=!s.a.w.w.j(0,s.b.w.w) +break +case 14:r=s.a.w.Q!==s.b.w.Q +break +case 15:r=s.a.w.as!==s.b.w.as +break +case 16:r=s.a.w.at!==s.b.w.at +break +case 17:r=s.a.w.ax!==s.b.w.ax +break +case 18:r=s.a.w.ay!==s.b.w.ay +break +case 19:r=s.a.w.ch!==s.b.w.ch +break +case 20:r=s.a.w.CW!==s.b.w.CW +break +case 21:r=!s.a.w.cx.j(0,s.b.w.cx) +break +case 22:r=s.a.w.cy!==s.b.w.cy +break +case 10:r=!s.a.w.x.j(0,s.b.w.x) +break +case 13:r=s.a.w.z!==s.b.w.z +break +case 12:break +case 23:break +default:r=null}return r}, +$S:474} +A.OD.prototype={ +K(){return"NavigationMode."+this.b}} +A.GJ.prototype={ +ac(){return new A.Wx()}} +A.Wx.prototype={ +aw(){this.aK() +$.aa.c1$.push(this)}, +be(){this.dc() +this.akS() +this.qs()}, +aH(a){var s,r=this +r.b0(a) +s=r.a +s.toString +if(r.e==null||a.c!==s.c)r.qs()}, +akS(){var s,r=this +r.a.toString +s=r.c +s.toString +s=A.bW(s,null) +r.d=s +r.e=null}, +qs(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=f.a.c,c=f.d,b=d.grB(),a=$.dy(),a0=a.d,a1=a0==null +b=b.dE(0,a1?a.gcu():a0) +s=a1?a.gcu():a0 +r=c==null +q=r?e:c.gcA() +if(q==null){q=d.b +q=new A.RL(q,q.d.e)}p=r?e:c.e +if(p==null)p=d.b.d.d +o=A.a6i(B.er,a1?a.gcu():a0) +n=A.a6i(B.er,a1?a.gcu():a0) +m=d.ay +m=A.a6i(m,a1?a.gcu():a0) +a=A.a6i(B.er,a1?a.gcu():a0) +a0=r?e:c.z +if(a0==null)a0=(d.b.d.a.a&1)!==0 +a1=r?e:c.Q +if(a1==null)a1=(d.b.d.a.a&2)!==0 +l=r?e:c.ax +if(l==null)l=(d.b.d.a.a&4)!==0 +k=r?e:c.ay +if(k==null)k=(d.b.d.a.a&8)!==0 +j=r?e:c.ch +if(j==null)j=(d.b.d.a.a&128)===0 +i=r?e:c.as +if(i==null)i=(d.b.d.a.a&32)!==0 +h=r?e:c.at +d=h==null?(d.b.d.a.a&64)!==0:h +h=r&&e +c=r?e:c.CW +if(c==null)c=B.e8 +r=r&&e +g=new A.BD(b,s,q,p,m,o,n,a,h===!0,a0,a1,i,d,l,k,j,c,new A.us(e),B.KA,r===!0) +if(!g.j(0,f.e))f.T(new A.auE(f,g))}, +Ah(){if(this.d==null)this.qs()}, +Ig(){this.qs()}, +Wp(){if(this.d==null)this.qs()}, +Wo(){if(this.d==null)this.qs()}, +l(){$.aa.iC(this) +this.aD()}, +H(a){var s=this.e +s.toString +return A.v7(this.a.e,s)}} +A.auE.prototype={ +$0(){this.a.e=this.b}, +$S:0} +A.azM.prototype={ +zT(a,b,c){return A.a0(A.eQ(null))}, +aJ(a,b){return A.a0(A.eQ(null))}, +gk6(){return A.a0(A.eQ(null))}} +A.RL.prototype={ +aJ(a,b){return b*this.a.d.e}, +j(a,b){var s,r,q,p +if(b==null)return!1 +if(this===b)return!0 +$label0$0:{s=b instanceof A.RL +r=null +if(s){r=b.b +q=r +q=typeof q=="number"}else q=!1 +if(q){p=s?r:b.b +q=this.b===p +break $label0$0}if(B.aB.j(0,b)){q=this.b===1 +break $label0$0}q=!1 +break $label0$0}return q}, +gB(a){return B.d.gB(this.b)}, +k(a){var s=this.b +return"SystemTextScaler ("+(s===1?"no scaling":A.k(s)+"x")+")"}, +gk6(){return this.b}} +A.a0K.prototype={} +A.Zo.prototype={ +aG(a){var s=new A.YF(this.e,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.samM(this.e)}} +A.YF.prototype={ +samM(a){var s=this,r=s.A +if(r===a)return +if(s.y!=null)r.J(0,s.grq()) +s.A=a +a.Z(0,s.grq()) +s.aY()}, +ghB(){var s=this.A.a,r=A.y.prototype.ghB.call(this) +return new A.x(r.a+s.a,r.b+s.b,r.c-s.c,r.d-s.d)}, +av(a){this.pQ(a) +this.A.Z(0,this.grq())}, +ai(a){this.A.J(0,this.grq()) +this.mc(0)}, +dU(a){this.i5(a) +a.a=!0}} +A.va.prototype={ +H(a){var s,r,q,p,o,n,m,l,k,j=this,i=null +switch(A.aM().a){case 1:case 3:case 5:s=!1 +break +case 0:case 2:case 4:s=!0 +break +default:s=i}r=j.d&&s +q=new A.aeQ(j,a) +p=r&&j.r!=null?q:i +o=r&&j.r!=null?q:i +n=r?j.r:i +m=r&&j.r!=null?a.ad(t.I).w:i +l=j.c +k=A.bG(i,i,A.jt(new A.eZ(B.jz,l==null?i:new A.n7(l,i,i),i),B.b5,i,i,i,i),!1,i,i,!1,i,i,i,i,i,i,n,i,i,i,i,i,i,i,i,i,o,i,i,i,p,j.x,i,i,i,i,i,m,i,B.z,i) +if(r&&j.w!=null){p=j.w +p.toString +k=new A.Zo(p,k,i)}return A.aRA(new A.ng(!r,new A.WG(k,q,i),i))}} +A.aeQ.prototype={ +$0(){if(this.a.d)A.aDF(this.b) +else A.E8(B.Sr)}, +$S:0} +A.Kx.prototype={ +H(a){var s=this,r=t.Bs.a(s.c) +return A.aeP(!0,s.x,r.gq(r),s.e,null,s.f,s.y)}} +A.wE.prototype={ +hT(a){if(this.n==null)return!1 +return this.pN(a)}, +Xw(a){}, +Xy(a,b){var s=this.n +if(s!=null)this.cN("onAnyTapUp",s)}, +B7(a,b,c){}} +A.T8.prototype={ +VR(){var s=t.S +return new A.wE(B.bd,-1,-1,B.d6,A.w(s,t.g),A.dj(s),null,null,A.JW(),A.w(s,t.E))}, +XT(a){a.n=this.a}} +A.WG.prototype={ +H(a){return new A.iB(this.c,A.ab([B.YA,new A.T8(this.d)],t.u,t.xR),B.aH,!1,null)}} +A.OE.prototype={ +H(a){var s=this,r=a.ad(t.I).w,q=A.b([],t.p),p=s.c +if(p!=null)q.push(A.Bi(p,B.jk)) +p=s.d +if(p!=null)q.push(A.Bi(p,B.jl)) +p=s.e +if(p!=null)q.push(A.Bi(p,B.jm)) +return new A.na(new A.azy(s.f,s.r,r,null),q,null)}} +A.IK.prototype={ +K(){return"_ToolbarSlot."+this.b}} +A.azy.prototype={ +Kt(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +if(h.b.h(0,B.jk)!=null){s=a.a +r=a.b +q=h.dX(B.jk,new A.ak(0,s,r,r)).a +switch(h.f.a){case 0:s-=q +break +case 1:s=0 +break +default:s=null}h.fu(B.jk,new A.j(s,0))}else q=0 +if(h.b.h(0,B.jm)!=null){p=h.dX(B.jm,A.yS(a)) +switch(h.f.a){case 0:s=0 +break +case 1:s=a.a-p.a +break +default:s=null}o=p.a +h.fu(B.jm,new A.j(s,(a.b-p.b)/2))}else o=0 +if(h.b.h(0,B.jl)!=null){s=a.a +r=h.e +n=Math.max(s-q-o-r*2,0) +m=h.dX(B.jl,A.yS(a).VY(n)) +l=q+r +if(h.d){k=m.a +j=(s-k)/2 +i=s-o +if(j+k>i)j=i-k-r +else if(j")),s=s.c;q.u();){r=q.d +if(r==null)r=s.a(r) +if(r.a===this)return!1 +r=r.d.a +if(r<=10&&r>=1)return!0}return!1}, +gBk(){var s=this.b +if(s==null)s=null +else{s=s.Pd(A.aLs(this)) +s=s==null?null:s.gYn()}return s===!0}} +A.aiQ.prototype={ +$1(a){var s=this.a +if(s.grI()){s=s.b.y.gfV() +if(s!=null)s.iD()}}, +$S:28} +A.aiP.prototype={ +$1(a){var s=this.a.b +if(s!=null){s=s.y.gfV() +if(s!=null)s.iD()}}, +$S:28} +A.jE.prototype={ +k(a){var s=this.a +s=s==null?"none":'"'+s+'"' +return"RouteSettings("+s+", "+A.k(this.b)+")"}} +A.qV.prototype={} +A.qm.prototype={ +ce(a){return a.f!=this.f}} +A.aiO.prototype={} +A.Se.prototype={} +A.Md.prototype={} +A.C0.prototype={ +ac(){var s=null,r=A.b([],t.uD),q=$.aw(),p=t.Tp +return new A.jv(new A.VH(r,q),A.aP(t.Ez),new A.VI(q),A.lI(s,p),A.lI(s,p),A.MY(!0,"Navigator",!0,!0,s,s,!1),new A.D_(0,q,t.dZ),new A.ct(!1,q),A.aP(t.S),s,A.w(t.yb,t.M),s,!0,s,s,s)}, +atf(a,b){return this.at.$2(a,b)}} +A.afD.prototype={ +$1(a){return a==null}, +$S:475} +A.fc.prototype={ +K(){return"_RouteLifecycle."+this.b}} +A.Z1.prototype={} +A.ia.prototype={ +ged(){var s,r +if(this.c){s=t.sd.a(this.a.c) +s.ged() +r=A.k(s.ged()) +return"p+"+r}r=this.b +if(r!=null)return"r+"+r.gZY() +return null}, +aqu(a,b,c,d){var s,r,q,p=this,o=p.d,n=p.a +n.b=b +n.oZ() +s=p.d +if(s===B.mJ||s===B.mK){r=n.oE() +p.d=B.Bu +r.avX(new A.axM(p,b))}else{if(c instanceof A.ee){s=n.CW +s.toString +q=c.CW.x +q===$&&A.a() +s.sq(0,q)}n.a3k(c) +p.d=B.fT}if(a)n.oD(null) +s=o===B.a_l||o===B.mK +q=b.w +if(s)q.fd(0,new A.GV(n,d)) +else q.fd(0,new A.xi(n,d))}, +J3(a){var s=this +s.a.qY(a) +s.f=new A.tw(new ($.a2d())(a)) +if(s.w!=null)a.f.a.bo(new A.axL(s),t.P)}, +aqt(a,b){var s,r=this +r.d=B.a_h +s=r.a +if((s.e.a.a&30)!==0)return!0 +if(!s.lv(r.y)){r.d=B.fT +return!1}s.BN(!0,r.y) +r.y=null +return!0}, +au4(a,b){this.y=a +this.d=B.Bv +this.x=b}, +au5(a,b){return this.au4(a,b,t.z)}, +an_(a,b,c,d){var s=this +if(s.d.a>=10)return +s.z=!d +s.y=b +s.d=B.a_m +s.x=c}, +VK(a,b,c,d){return this.an_(0,b,c,d,t.z)}, +l(){var s,r,q,p,o,n,m,l=this,k={} +l.d=B.a_j +s=l.a +r=s.r +q=new A.axJ() +p=new A.aY(r,q,A.a2(r).i("aY<1>")) +if(!p.gag(0).u()){l.d=B.ja +s.l() +return}k.a=p.gv(0) +o=s.b +o.f.E(0,l) +for(s=B.b.gag(r),q=new A.oB(s,q);q.u();){r=s.gN(0) +n=A.c9() +m=new A.axK(k,l,r,n,o) +n.b=m +r=r.e +if(r!=null)r.Z(0,m)}}, +gavZ(){var s=this.d.a +return s<=7&&s>=1}, +gYn(){var s=this.d.a +return s<=10&&s>=1}} +A.axM.prototype={ +$0(){var s=this.a +if(s.d===B.Bu){s.d=B.fT +this.b.tP()}}, +$S:0} +A.axL.prototype={ +$1(a){var s=0,r=A.H(t.P),q=this,p,o +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=A.aM() +s=B.ad===p?3:4 +break +case 3:o=q.a.w +s=5 +return A.v(A.N6(B.cG,null,t.H),$async$$1) +case 5:B.dA.ha(0,B.oK.Cp(o)) +s=2 +break +case 4:if(B.L===p){B.dA.ha(0,B.oK.Cp(q.a.w)) +s=2 +break}s=2 +break +case 2:return A.F(null,r)}}) +return A.G($async$$1,r)}, +$S:476} +A.axJ.prototype={ +$1(a){return a.gYQ()}, +$S:477} +A.axK.prototype={ +$0(){var s=this,r=s.a;--r.a +s.c.J(0,s.d.aS()) +if(r.a===0)return A.dx(new A.axI(s.b,s.e))}, +$S:0} +A.axI.prototype={ +$0(){var s=this.a +if(!this.b.f.F(0,s))return +s.d=B.ja +s.a.l()}, +$S:0} +A.axN.prototype={ +$1(a){return a.a===this.a}, +$S:64} +A.oT.prototype={} +A.xi.prototype={ +pd(a){}} +A.xh.prototype={ +pd(a){}} +A.GU.prototype={ +pd(a){}} +A.GV.prototype={ +pd(a){}} +A.VH.prototype={ +O(a,b){B.b.O(this.a,b) +if(J.mR(b))this.ak()}, +h(a,b){return this.a[b]}, +gag(a){var s=this.a +return new J.cV(s,s.length,A.a2(s).i("cV<1>"))}, +k(a){return A.nz(this.a,"[","]")}, +$iac:1} +A.jv.prototype={ +abY(){var s,r,q,p=this,o=!p.Vu() +if(o){s=p.u6(A.k0()) +r=s!=null&&s.a.gkQ()===B.ej}else r=!1 +q=new A.nM(!o||r) +o=$.bC +switch(o.p2$.a){case 4:p.c.dK(q) +break +case 0:case 2:case 3:case 1:o.k4$.push(new A.afA(p,q)) +break}}, +aw(){var s,r,q,p,o=this +o.aK() +for(s=o.a.y,r=0;!1;++r){q=s[r] +p=$.k1() +A.MM(q) +p.a.set(q,o)}o.as=o.a.y +s=o.c.fD(t.mS) +s=s==null?null:s.gaa() +t._I.a(s) +o.GB(s==null?null:s.f) +o.a.toString +B.lv.iu("selectSingleEntryHistory",t.H) +$.e0.ao$.Z(0,o.gRR()) +o.e.Z(0,o.gQa())}, +ahT(){var s=this.e,r=A.jl(new A.aY(s,A.k0(),A.n(s).i("aY"))) +if(r!=null)r.w=$.e0.ao$.a}, +hs(a,b){var s,r,q,p,o,n,m,l=this +l.kU(l.at,"id") +s=l.r +l.kU(s,"history") +l.Pk() +l.d=new A.bu(null,t.ku) +r=l.e +r.O(0,s.ZZ(null,l)) +l.a.toString +q=r.a +p=0 +for(;!1;++p){o=B.Ky[p] +n=l.c +n.toString +m=new A.ia(o.I1(n),null,!0,B.mI,B.cb,new A.tw(new ($.a2d())(B.cb)),B.cb) +q.push(m) +r.ak() +n=s.ZZ(m,l) +B.b.O(q,n) +if(B.b.gbV(n))r.ak()}if(s.y==null){s=l.a +q=s.r +r.O(0,J.h0(s.atf(l,q),new A.afC(l),t.Ez))}l.tP()}, +Il(a){var s,r=this +r.a3c(a) +s=r.r +if(r.bw$!=null)s.cm(0,r.e) +else s.a5(0)}, +ged(){return this.a.z}, +be(){var s,r,q,p,o,n=this +n.a4e() +s=n.c.ad(t.mS) +n.GB(s==null?null:s.f) +for(r=n.e.a,q=A.a2(r),r=new J.cV(r,r.length,q.i("cV<1>")),q=q.c;r.u();){p=r.d +p=(p==null?q.a(p):p).a +if(p.b===n){p.MX() +o=p.x1 +o===$&&A.a() +o=o.r.gL() +if(o!=null)o.yu() +p=p.rx +if(p.gL()!=null)p.gL().Pj()}}}, +Pk(){var s,r,q +this.f.EL(new A.afz(),!0) +for(s=this.e,r=s.a;!s.ga7(0);){q=r.pop() +s.ak() +A.aJ6(q,!1)}}, +GB(a){var s,r,q=this +if(q.Q!=a){if(a!=null)$.k1().m(0,a,q) +s=q.Q +if(s==null)s=null +else{r=$.k1() +A.q2(s) +s=r.a.get(s)}if(s===q){s=$.k1() +r=q.Q +r.toString +s.m(0,r,null)}q.Q=a +q.GA()}}, +GA(){var s=this,r=s.Q,q=s.a +if(r!=null)s.as=B.b.V(q.y,A.b([r],t.tc)) +else s.as=q.y}, +aH(a){var s,r,q,p,o,n,m=this +m.a4f(a) +s=a.y +if(s!==m.a.y){for(r=0;!1;++r){q=s[r] +p=$.k1() +A.MM(q) +p.a.set(q,null)}for(s=m.a.y,r=0;!1;++r){q=s[r] +p=$.k1() +A.MM(q) +p.a.set(q,m)}m.GA()}m.a.toString +for(s=m.e.a,p=A.a2(s),s=new J.cV(s,s.length,p.i("cV<1>")),p=p.c;s.u();){o=s.d +o=(o==null?p.a(o):o).a +if(o.b===m){o.MX() +n=o.x1 +n===$&&A.a() +n=n.r.gL() +if(n!=null)n.yu() +o=o.rx +if(o.gL()!=null)o.gL().Pj()}}}, +dJ(){var s,r,q,p,o=this.as +o===$&&A.a() +s=o.length +r=0 +for(;r")),r=r.c;s.u();){q=s.d +B.b.O(p,(q==null?r.a(q):q).a.r)}return p}, +ES(b4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2=this,b3=null +b2.CW=!0 +s=b2.e +r=s.gv(0)-1 +q=s.a +p=q[r] +o=r>0?q[r-1]:b3 +n=A.b([],t.uD) +$label0$1:for(m=b2.x,l=t.F,k=t.R,j=t.M,i=t.S,h=t.PD,g=b2.w,f=b3,e=f,d=!1,c=!1;r>=0;){b=!0 +a=!0 +switch(p.d.a){case 1:a0=b2.mk(r-1,A.k0()) +a1=a0>=0?q[a0]:b3 +a1=a1==null?b3:a1.a +p.d=B.a_k +g.fd(0,new A.xi(p.a,a1)) +continue $label0$1 +case 2:if(d||e==null){a1=p.a +a1.b=b2 +a1.N_() +a2=A.eh.prototype.giV.call(a1,0) +a3=new A.rj(new A.ba(A.b([],l),k),new A.er(A.w(j,i),h),0) +a3.c=a2 +if(a2==null){a3.a=B.Q +a3.b=0}a1.p3=a3 +a2=A.eh.prototype.gD0.call(a1) +a3=new A.rj(new A.ba(A.b([],l),k),new A.er(A.w(j,i),h),0) +a3.c=a2 +a1.p4=a3 +a2=a1.rx +a3=a2.gL()!=null +if(a3)a1.b.a.toString +if(a3){a3=a1.b.y +a4=a3.ay +if(a4==null){a5=a3.Q +a4=a3.ay=a5==null?b3:a5.ghW()}if(a4!=null){a2=a2.gL().f +if(a2.Q==null)a4.yO(a2) +if(a4.gbQ())a2.kj(!0) +else a2.oe()}}a1.a3K() +p.d=B.fT +if(e==null)a1.oD(b3) +continue $label0$1}break +case 3:case 4:case 6:a1=o==null?b3:o.a +a0=b2.mk(r-1,A.k0()) +a2=a0>=0?q[a0]:b3 +a2=a2==null?b3:a2.a +p.aqu(e==null,b2,a1,a2) +if(p.d===B.fT)continue $label0$1 +break +case 5:if(!c&&f!=null)p.J3(f) +c=a +break +case 7:if(!c&&f!=null)p.J3(f) +c=a +d=b +break +case 8:a0=b2.mk(r,A.JS()) +a1=a0>=0?q[a0]:b3 +if(!p.aqt(b2,a1==null?b3:a1.a))continue $label0$1 +if(!c){if(f!=null)p.J3(f) +f=p.a}a1=p.a +a0=b2.mk(r,A.JS()) +a2=a0>=0?q[a0]:b3 +m.fd(0,new A.xh(a1,a2==null?b3:a2.a)) +if(p.d===B.j9)continue $label0$1 +d=b +break +case 11:break +case 9:a1=p.a +a1=a1.e.a +if((a1.a&30)!==0)A.a0(A.a5("Future already completed")) +a1.hD(b3) +p.y=null +p.d=B.a_g +continue $label0$1 +case 10:if(!c){if(f!=null)p.a.qY(f) +f=b3}a0=b2.mk(r,A.JS()) +a1=a0>=0?q[a0]:b3 +a1=a1==null?b3:a1.a +a2=p.a +if(a2.b===b2)p.d=B.a_i +else p.d=B.j9 +if(p.z)m.fd(0,new A.GU(a2,a1)) +continue $label0$1 +case 12:if(!d&&e!=null)break +p.d=B.j9 +continue $label0$1 +case 13:a6=B.b.hr(q,r) +s.ak() +n.push(a6) +if(p.c&&p.x)b2.a.toString +p=e +break +case 14:case 15:case 0:break}--r +a7=r>0?q[r-1]:b3 +e=p +p=o +o=a7}b2.a9V() +b2.a9X() +a8=b2.u6(A.k0()) +q=a8==null +if(!q&&b2.ax!==a8){m=b2.as +m===$&&A.a() +l=m.length +k=a8.a +a9=0 +for(;a9=0;){s=l[k] +r=s.d.a +if(!(r<=12&&r>=3)){--k +continue}q=this.aaF(k+1,A.aNm()) +r=q==null +p=r?m:q.a +if(p!=s.r){if(!((r?m:q.a)==null&&J.d(s.f.a.deref(),s.r))){p=r?m:q.a +s.a.oD(p)}s.r=r?m:q.a}--k +o=this.mk(k,A.aNm()) +n=o>=0?l[o]:m +r=n==null +p=r?m:n.a +if(p!=s.e){p=s.a +p.a3g(r?m:n.a) +p.op() +s.e=r?m:n.a}}}, +PL(a,b){a=this.mk(a,b) +return a>=0?this.e.a[a]:null}, +mk(a,b){var s=this.e.a +for(;;){if(!(a>=0&&!b.$1(s[a])))break;--a}return a}, +aaF(a,b){var s=this.e,r=s.a +for(;;){if(!(a?") +q=r.a(this.a.w.$1(s)) +return q==null&&!b?r.a(this.a.x.$1(s)):q}, +G8(a,b,c){return this.yT(a,!1,b,c)}, +auc(a){var s=this.e +s.a.push(A.axH(a,B.mJ,!1,null)) +s.ak() +this.tP() +this.xL() +return a.e.a}, +dn(a){return this.auc(a,t.X)}, +ahL(a,b){var s,r=this.e,q=r.gv(0)-1,p=r.a +p.push(a) +r.ak() +for(;;){if(!(q>=0&&!b.$1(p[q].a)))break +r=p[q] +s=r.d.a +if(s<=10&&s>=1)r.VK(0,null,!0,!1);--q}this.tP() +this.xL()}, +Vu(){var s=this.e.gag(0),r=new A.oB(s,A.k0()) +if(!r.u())return!1 +s=s.gN(0).a.kA$ +if(s!=null&&s.length!==0)return!0 +if(!r.u())return!1 +return!0}, +w8(a){var s=0,r=A.H(t.y),q,p=this,o,n +var $async$w8=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)$async$outer:switch(s){case 0:n=p.u6(A.k0()) +if(n==null){q=!1 +s=1 +break}o=n.a +s=3 +return A.v(o.jn(),$async$w8) +case 3:if(c===B.ej){q=!0 +s=1 +break}if(p.c==null){q=!0 +s=1 +break}if(n!==p.u6(A.k0())){q=!0 +s=1 +break}switch(o.gkQ().a){case 2:q=!1 +s=1 +break $async$outer +case 0:p.nd(a) +q=!0 +s=1 +break $async$outer +case 1:o.BN(!1,a) +q=!0 +s=1 +break $async$outer}case 1:return A.F(q,r)}}) +return A.G($async$w8,r)}, +asG(a){return this.w8(a,t.X)}, +YN(){return this.w8(null,t.X)}, +Zf(a){var s=this,r=s.e.YC(0,A.k0()) +if(r.c)s.a.toString +r.au5(a,!0) +if(r.d===B.Bv)s.ES(!1) +s.xL()}, +dB(){return this.Zf(null,t.X)}, +nd(a){return this.Zf(a,t.X)}, +WZ(a){var s=this,r=s.e.a,q=B.b.XQ(r,A.aLs(a),0),p=r[q] +if(p.c&&p.d.a<8){r=s.PL(q-1,A.JS()) +r=r==null?null:r.a +s.x.fd(0,new A.xh(a,r))}p.d=B.j9 +if(!s.CW)s.ES(!1)}, +sUy(a){this.cx=a +this.cy.sq(0,a>0)}, +Wt(){var s,r,q,p,o,n,m=this +m.sUy(m.cx+1) +if(m.cx===1){s=m.e +r=m.mk(s.gv(0)-1,A.JS()) +q=s.a[r].a +s=q.kA$ +p=!(s!=null&&s.length!==0)&&r>0?m.PL(r-1,A.JS()).a:null +s=m.as +s===$&&A.a() +o=s.length +n=0 +for(;n")),r=r.c;s.u();){q=s.d +if(q==null)q=r.a(q) +if(a.$1(q))return q}return null}, +u6(a){var s,r,q,p,o +for(s=this.e.a,r=A.a2(s),s=new J.cV(s,s.length,r.i("cV<1>")),r=r.c,q=null;s.u();){p=s.d +o=p==null?r.a(p):p +if(a.$1(o))q=o}return q}, +H(a){var s,r,q=this,p=null,o=q.gacM(),n=A.nn(a),m=q.bw$,l=q.d +l===$&&A.a() +s=q.a.ay +if(l.gL()==null){r=q.gNn() +r=J.nA(r.slice(0),A.a2(r).c)}else r=B.Kz +return new A.qm(p,new A.dd(new A.afB(q,a),A.Bo(B.bY,new A.Km(!1,A.aDa(A.nl(!0,p,A.EQ(m,new A.vm(r,s,l)),p,p,p,q.y,!1,p,p,p,p,p,!0),n),p),o,q.gafD(),p,p,o),p,t.w3),p)}} +A.afA.prototype={ +$1(a){var s=this.a.c +if(s==null)return +s.dK(this.b)}, +$S:6} +A.afC.prototype={ +$1(a){var s,r,q=a.c.a +if(q!=null){s=this.a.at +r=s.y +if(r==null)r=s.$ti.i("bJ.T").a(r) +s.MW(0,r+1) +q=new A.WO(r,q,null,B.mL)}else q=null +return A.axH(a,B.mI,!1,q)}, +$S:480} +A.afz.prototype={ +$1(a){a.d=B.ja +a.a.l() +return!0}, +$S:64} +A.afy.prototype={ +$0(){var s=this.a +if(s!=null)s.sUO(!0)}, +$S:0} +A.afB.prototype={ +$1(a){if(a.a||!this.a.Vu())return!1 +this.b.dK(B.Nj) +return!0}, +$S:190} +A.HN.prototype={ +K(){return"_RouteRestorationType."+this.b}} +A.YT.prototype={ +gYp(){return!0}, +zX(){return A.b([this.a.a],t.jl)}} +A.WO.prototype={ +zX(){var s=this,r=s.a4C(),q=A.b([s.c,s.d],t.jl),p=s.e +if(p!=null)q.push(p) +B.b.O(r,q) +return r}, +I1(a){var s=a.G8(this.d,this.e,t.z) +s.toString +return s}, +gZY(){return this.c}} +A.aor.prototype={ +gYp(){return!1}, +zX(){A.aVF(this.d)}, +I1(a){var s=a.c +s.toString +return this.d.$2(s,this.e)}, +gZY(){return this.c}} +A.VI.prototype={ +cm(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.y==null +if(a)c.y=A.w(t.N,t.UX) +s=t.jl +r=A.b([],s) +q=c.y +q.toString +p=J.aK(q,null) +if(p==null)p=B.hV +o=A.w(t.ob,t.UX) +q=c.y +q.toString +n=J.aRl(J.a2m(q)) +for(q=a1.a,m=A.a2(q),q=new J.cV(q,q.length,m.i("cV<1>")),m=m.c,l=b,k=a,j=!0;q.u();){i=q.d +h=i==null?m.a(i):i +if(h.d.a>7){i=h.a +i.d.sq(0,b) +continue}if(h.c){k=k||r.length!==J.cg(p) +if(r.length!==0){g=l==null?b:l.ged() +o.m(0,g,r) +n.F(0,g)}j=h.ged()!=null +i=h.a +f=j?h.ged():b +i.d.sq(0,f) +if(j){r=A.b([],s) +i=c.y +i.toString +p=J.aK(i,h.ged()) +if(p==null)p=B.hV}else{r=B.hV +p=B.hV}l=h +continue}if(j){i=h.b +i=i==null?b:i.gYp() +j=i===!0}else j=!1 +i=h.a +f=j?h.ged():b +i.d.sq(0,f) +if(j){i=h.b +e=i.b +if(e==null)e=i.b=i.zX() +if(!k){i=J.aE(p) +f=i.gv(p) +d=r.length +k=f<=d||!J.d(i.h(p,d),e)}else k=!0 +B.b.E(r,e)}}k=k||r.length!==J.cg(p) +c.a9K(r,l,o,n) +if(k||n.gbV(n)){c.y=o +c.ak()}}, +a9K(a,b,c,d){var s +if(a.length!==0){s=b==null?null:b.ged() +c.m(0,s,a) +d.F(0,s)}}, +a5(a){if(this.y==null)return +this.y=null +this.ak()}, +ZZ(a,b){var s,r,q,p=A.b([],t.uD) +if(this.y!=null)s=a!=null&&a.ged()==null +else s=!0 +if(s)return p +s=this.y +s.toString +r=J.aK(s,a==null?null:a.ged()) +if(r==null)return p +for(s=J.bb(r);s.u();){q=A.aZ6(s.gN(s)) +p.push(new A.ia(q.I1(b),q,!1,B.mI,B.cb,new A.tw(new ($.a2d())(B.cb)),B.cb))}return p}, +A6(){return null}, +rf(a){a.toString +return J.aRd(t.f.a(a),new A.asJ(),t.ob,t.UX)}, +XS(a){this.y=a}, +rO(){return this.y}, +gmT(a){return this.y!=null}} +A.asJ.prototype={ +$2(a,b){return new A.b1(A.cC(a),A.hU(t.j.a(b),!0,t.K),t.qE)}, +$S:481} +A.nM.prototype={ +k(a){return"NavigationNotification canHandlePop: "+this.a}} +A.av1.prototype={ +$2(a,b){if(!a.a)a.J(0,b)}, +$S:50} +A.GW.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.GX.prototype={ +aH(a){this.b0(a) +this.oG()}, +be(){var s,r,q,p,o=this +o.dc() +s=o.bw$ +r=o.gnh() +q=o.c +q.toString +q=A.o9(q) +o.fp$=q +p=o.mB(q,r) +if(r){o.hs(s,o.e7$) +o.e7$=!1}if(p)if(s!=null)s.l()}, +l(){var s,r=this +r.fo$.aj(0,new A.av1()) +s=r.bw$ +if(s!=null)s.l() +r.bw$=null +r.a4d()}} +A.a0H.prototype={} +A.OJ.prototype={ +k(a){var s=A.b([],t.s) +this.dT(s) +return"Notification("+B.b.bn(s,", ")+")"}, +dT(a){}} +A.dd.prototype={ +bJ(a){return new A.GY(this,B.Z,this.$ti.i("GY<1>"))}} +A.GY.prototype={ +Z_(a){var s,r=this.e +r.toString +s=this.$ti +s.i("dd<1>").a(r) +if(s.c.b(a))return r.d.$1(a) +return!1}, +pe(a){}} +A.hS.prototype={} +A.a0P.prototype={} +A.OZ.prototype={ +K(){return"OverflowBarAlignment."+this.b}} +A.OY.prototype={ +aG(a){var s=this,r=a.ad(t.I).w +r=new A.xw(s.e,s.f,s.r,s.w,s.x,r,0,null,null,new A.aO(),A.ah()) +r.aF() +r.O(0,null) +return r}, +aP(a,b){var s,r=this +t.Eg.a(b) +b.ste(0,r.e) +b.sfO(r.f) +b.satU(r.r) +b.satS(r.w) +b.satT(r.x) +s=a.ad(t.I).w +b.sbC(s)}} +A.kW.prototype={} +A.xw.prototype={ +ste(a,b){if(this.n===b)return +this.n=b +this.a_()}, +sfO(a){if(this.I==a)return +this.I=a +this.a_()}, +satU(a){if(this.X===a)return +this.X=a +this.a_()}, +satS(a){if(this.a2===a)return +this.a2=a +this.a_()}, +satT(a){if(this.S===a)return +this.S=a +this.a_()}, +sbC(a){if(this.a9===a)return +this.a9=a +this.a_()}, +eg(a){if(!(a.b instanceof A.kW))a.b=new A.kW(null,null,B.i)}, +ba(a){var s,r,q,p,o,n,m=this,l=m.a4$ +if(l==null)return 0 +for(s=A.n(m).i("a9.1"),r=0;l!=null;){q=l.gbE() +p=B.aK.dY(l.dy,1/0,q) +r+=p +q=l.b +q.toString +l=s.a(q).am$}q=m.n +o=m.c0$ +l=m.a4$ +if(r+q*(o-1)>a){for(n=0;l!=null;){q=l.gbD() +p=B.aL.dY(l.dy,a,q) +n+=p +q=l.b +q.toString +l=s.a(q).am$}return n+m.X*(m.c0$-1)}else{for(n=0;l!=null;){q=l.gbD() +p=B.aL.dY(l.dy,a,q) +n=Math.max(n,p) +q=l.b +q.toString +l=s.a(q).am$}return n}}, +b6(a){var s,r,q,p,o,n,m=this,l=m.a4$ +if(l==null)return 0 +for(s=A.n(m).i("a9.1"),r=0;l!=null;){q=l.gbE() +p=B.aK.dY(l.dy,1/0,q) +r+=p +q=l.b +q.toString +l=s.a(q).am$}q=m.n +o=m.c0$ +l=m.a4$ +if(r+q*(o-1)>a){for(n=0;l!=null;){q=l.gbL() +p=B.b8.dY(l.dy,a,q) +n+=p +q=l.b +q.toString +l=s.a(q).am$}return n+m.X*(m.c0$-1)}else{for(n=0;l!=null;){q=l.gbL() +p=B.b8.dY(l.dy,a,q) +n=Math.max(n,p) +q=l.b +q.toString +l=s.a(q).am$}return n}}, +bb(a){var s,r,q,p,o=this,n=o.a4$ +if(n==null)return 0 +for(s=A.n(o).i("a9.1"),r=0;n!=null;){q=n.gbE() +p=B.aK.dY(n.dy,1/0,q) +r+=p +q=n.b +q.toString +n=s.a(q).am$}return r+o.n*(o.c0$-1)}, +b7(a){var s,r,q,p,o=this,n=o.a4$ +if(n==null)return 0 +for(s=A.n(o).i("a9.1"),r=0;n!=null;){q=n.gbj() +p=B.ab.dY(n.dy,1/0,q) +r+=p +q=n.b +q.toString +n=s.a(q).am$}return r+o.n*(o.c0$-1)}, +fk(a){return this.Af(a)}, +ds(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null,a0=a2.b,a1=new A.ak(0,a0,0,a2.d) +switch(b.S.a){case 1:s=new A.am(b.guU(),b.a4$) +break +case 0:s=new A.am(b.gzS(),b.c6$) +break +default:s=a}r=s.a +q=t.xP.b(r) +p=a +if(q){o=s.b +p=o +n=r}else n=a +if(!q)throw A.e(A.a5("Pattern matching error")) +for(m=p,l=a,k=l,j=0,i=0,h=0;m!=null;m=n.$1(m)){s=m.gc8() +q=m.dy +g=B.R.dY(q,a1,s) +f=g.b +e=f-j +if(e>0){d=k==null?a:k+e/2 +k=d +j=f}c=B.eH.dY(q,new A.am(a1,a3),m.gxQ()) +if(c!=null){if(l==null){d=c+i +l=d}k=A.tT(k,c+(j-f))}i+=f+b.X +h+=g.a}return h+b.n*(b.c0$-1)>a0?l:k}, +cE(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.a4$ +if(i==null)return new A.I(A.A(0,a.a,a.b),A.A(0,a.c,a.d)) +s=a.b +r=new A.ak(0,s,0,a.d) +for(q=A.n(j).i("a9.1"),p=0,o=0,n=0;i!=null;){m=i.gc8() +l=B.R.dY(i.dy,r,m) +p+=l.a +m=l.b +o=Math.max(o,m) +n+=m+j.X +m=i.b +m.toString +i=q.a(m).am$}k=p+j.n*(j.c0$-1) +if(k>s)return a.b3(new A.I(s,n-j.X)) +else return a.b3(new A.I(j.I==null?k:s,o))}, +bx(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4="RenderBox was not laid out: ",a5={},a6=a5.a=a3.a4$ +if(a6==null){s=t.k.a(A.t.prototype.gW.call(a3)) +a3.fy=new A.I(A.A(0,s.a,s.b),A.A(0,s.c,s.d)) +return}s=t.k +r=s.a(A.t.prototype.gW.call(a3)) +q=new A.ak(0,r.b,0,r.d) +for(r=A.n(a3).i("a9.1"),p=a6,o=0,n=0,m=0;p!=null;p=a6){p.c3(q,!0) +p=a5.a +l=p.fy +o+=(l==null?A.a0(A.a5(a4+A.r(p).k(0)+"#"+A.bi(p))):l).a +n=Math.max(n,l.b) +m=Math.max(m,l.a) +p=p.b +p.toString +a6=r.a(p).am$ +a5.a=a6}k=a3.a9===B.b_ +j=o+a3.n*(a3.c0$-1) +if(j>s.a(A.t.prototype.gW.call(a3)).b){a6=a3.S===B.cx?a3.a4$:a3.c6$ +a5.a=a6 +i=new A.axg(a5,a3) +for(r=t.pi,p=a6,h=0;p!=null;p=a6){l=p.b +l.toString +r.a(l) +g=0 +switch(a3.a2.a){case 2:p=s.a(A.t.prototype.gW.call(a3)) +g=a5.a +f=g.fy +if(f==null)f=A.a0(A.a5(a4+A.r(g).k(0)+"#"+A.bi(g))) +f=(p.b-f.a)/2 +p=f +break +case 0:if(k){p=s.a(A.t.prototype.gW.call(a3)) +g=a5.a +f=g.fy +if(f==null)f=A.a0(A.a5(a4+A.r(g).k(0)+"#"+A.bi(g))) +f=p.b-f.a +p=f}else{e=g +g=p +p=e}break +case 1:if(k){e=g +g=p +p=e}else{p=s.a(A.t.prototype.gW.call(a3)) +g=a5.a +f=g.fy +if(f==null)f=A.a0(A.a5(a4+A.r(g).k(0)+"#"+A.bi(g))) +f=p.b-f.a +p=f}break +default:g=p +p=null}l.a=new A.j(p,h) +p=g.fy +if(p==null)p=A.a0(A.a5(a4+A.r(g).k(0)+"#"+A.bi(g))) +h+=p.b+a3.X +a6=i.$0() +a5.a=a6}a3.fy=s.a(A.t.prototype.gW.call(a3)).b3(new A.I(s.a(A.t.prototype.gW.call(a3)).b,h-a3.X))}else{a6=a3.a4$ +a5.a=a6 +d=a6.gt(0).a +c=a3.I==null?j:s.a(A.t.prototype.gW.call(a3)).b +a3.fy=s.a(A.t.prototype.gW.call(a3)).b3(new A.I(c,n)) +b=A.c9() +a=a3.n +switch(a3.I){case null:case void 0:b.b=k?a3.gt(0).a-d:0 +break +case B.x:b.b=k?a3.gt(0).a-d:0 +break +case B.b3:a0=(a3.gt(0).a-j)/2 +b.b=k?a3.gt(0).a-a0-d:a0 +break +case B.i4:b.b=k?j-d:a3.gt(0).a-j +break +case B.cj:a=(a3.gt(0).a-o)/(a3.c0$-1) +b.b=k?a3.gt(0).a-d:0 +break +case B.vt:a=a3.c0$>0?(a3.gt(0).a-o)/a3.c0$:0 +s=a/2 +b.b=k?a3.gt(0).a-s-d:s +break +case B.vu:a=(a3.gt(0).a-o)/(a3.c0$+1) +b.b=k?a3.gt(0).a-a-d:a +break}for(s=!k,p=t.pi,l=b.a;g=a5.a,g!=null;){f=g.b +f.toString +p.a(f) +a1=b.b +if(a1===b)A.a0(A.Bf(l)) +a2=g.fy +f.a=new A.j(a1,(n-(a2==null?A.a0(A.a5(a4+A.r(g).k(0)+"#"+A.bi(g))):a2).b)/2) +if(s)g=b.b=a1+(a2.a+a) +else g=a1 +a6=a5.a=r.a(f).am$ +if(k&&a6!=null){f=a6.fy +b.b=g-((f==null?A.a0(A.a5(a4+A.r(a6).k(0)+"#"+A.bi(a6))):f).a+a)}}}}, +cz(a,b){return this.va(a,b)}, +aA(a,b){this.qU(a,b)}} +A.axg.prototype={ +$0(){var s=this.b,r=s.S,q=this.a.a +s=A.n(s).i("a9.1") +if(r===B.cx){r=q.b +r.toString +r=s.a(r).am$ +s=r}else{r=q.b +r.toString +r=s.a(r).ca$ +s=r}return s}, +$S:482} +A.a13.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.pi;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.pi;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.a14.prototype={} +A.nP.prototype={ +skO(a){var s +if(this.b===a)return +this.b=a +s=this.f +if(s!=null)s.OG()}, +sw5(a){if(this.c)return +this.c=!0 +this.f.OG()}, +gYQ(){var s=this.e +return(s==null?null:s.a)!=null}, +Z(a,b){var s=this.e +if(s!=null)s.Z(0,b)}, +J(a,b){var s=this.e +if(s!=null)s.J(0,b)}, +f6(a){var s,r=this.f +r.toString +this.f=null +if(r.c==null)return +B.b.F(r.d,this) +s=$.bC +if(s.p2$===B.ek)s.k4$.push(new A.afV(r)) +else r.R2()}, +cc(){var s=this.r.gL() +if(s!=null)s.yu()}, +l(){var s,r=this +r.w=!0 +if(!r.gYQ()){s=r.e +if(s!=null){s.P$=$.aw() +s.M$=0}r.e=null}}, +k(a){var s=this,r=A.bi(s),q=s.b,p=s.c,o=s.w?"(DISPOSED)":"" +return"#"+r+"(opaque: "+q+"; maintainState: "+p+")"+o}, +$iac:1} +A.afV.prototype={ +$1(a){this.a.R2()}, +$S:6} +A.mz.prototype={ +ac(){return new A.H_()}} +A.H_.prototype={ +agM(a,b){var s,r,q,p=this.e +if(p==null)p=this.e=new A.qB(t.oM) +s=p.b===0?null:p.gae(0) +r=b.a +for(;;){q=s==null +if(!(!q&&s.a>r))break +s=s.gZn()}if(q){p.ym(p.c,b,!0) +p.c=b}else s.j5$.ym(s.j6$,b,!1)}, +gFP(){var s,r=this,q=r.f +if(q===$){s=r.Et(!1) +r.f!==$&&A.aA() +r.f=s +q=s}return q}, +Et(a){return new A.jZ(this.a8j(a),t.dQ)}, +a8j(a){var s=this +return function(){var r=a +var q=0,p=2,o=[],n,m,l +return function $async$Et(b,c,d){if(c===1){o.push(d) +q=p}for(;;)switch(q){case 0:l=s.e +if(l==null||l.b===0){q=1 +break}n=r?l.gae(0):l.ga3(0) +case 3:if(!(n!=null)){q=4 +break}m=n.d +n=r?n.gZn():n.glN(0) +q=m!=null?5:6 +break +case 5:q=7 +return b.b=m,1 +case 7:case 6:q=3 +break +case 4:case 1:return 0 +case 2:return b.c=o.at(-1),3}}}}, +aw(){var s,r=this +r.aK() +r.a.c.e.sq(0,r) +s=r.c.re(t.im) +s.toString +r.d=s}, +aH(a){var s,r=this +r.b0(a) +if(a.d!==r.a.d){s=r.c.re(t.im) +s.toString +r.d=s}}, +l(){var s,r=this,q=r.a.c.e +if(q!=null)q.sq(0,null) +q=r.a.c +if(q.w){s=q.e +if(s!=null){s.P$=$.aw() +s.M$=0}q.e=null}r.e=null +r.aD()}, +H(a){var s=this.a,r=s.e,q=this.d +q===$&&A.a() +return new A.wn(r,new A.tp(q,this,new A.e8(s.c.a,null),null),null)}, +yu(){this.T(new A.avn())}} +A.avn.prototype={ +$0(){}, +$S:0} +A.vm.prototype={ +ac(){return new A.Cb(A.b([],t.wi),null,null)}} +A.Cb.prototype={ +aw(){this.aK() +this.XW(0,this.a.c)}, +Fq(a,b){if(a!=null)return B.b.hR(this.d,a) +return this.d.length}, +XV(a,b,c){b.f=this +this.T(new A.ag0(this,c,null,b))}, +lG(a,b){return this.XV(0,b,null)}, +XW(a,b){var s,r=b.length +if(r===0)return +for(s=0;s"),s=new A.cc(s,r),s=new A.bd(s,s.gv(0),r.i("bd")),r=r.i("ax.E"),q=!0,p=0;s.u();){o=s.d +if(o==null)o=r.a(o) +if(q){++p +m.push(new A.mz(o,n,!0,o.r)) +o=o.b +q=!o}else if(o.c)m.push(new A.mz(o,n,!1,o.r))}s=m.length +r=n.a.d +o=t.MV +o=A.a6(new A.cc(m,o),o.i("ax.E")) +o.$flags=1 +return new A.II(s-p,r,o,null)}} +A.ag0.prototype={ +$0(){var s=this,r=s.a +B.b.rj(r.d,r.Fq(s.b,s.c),s.d)}, +$S:0} +A.ag_.prototype={ +$0(){var s=this,r=s.a +B.b.rk(r.d,r.Fq(s.b,s.c),s.d)}, +$S:0} +A.ag1.prototype={ +$0(){var s,r,q=this,p=q.a,o=p.d +B.b.a5(o) +s=q.b +B.b.O(o,s) +r=q.c +r.auH(s) +B.b.rk(o,p.Fq(q.d,q.e),r)}, +$S:0} +A.afZ.prototype={ +$0(){}, +$S:0} +A.afY.prototype={ +$0(){}, +$S:0} +A.II.prototype={ +bJ(a){return new A.a_x(A.dj(t.h),this,B.Z)}, +aG(a){var s=new A.to(a.ad(t.I).w,this.e,this.f,A.ah(),0,null,null,new A.aO(),A.ah()) +s.aF() +s.O(0,null) +return s}, +aP(a,b){var s=this.e +if(b.X!==s){b.X=s +if(!b.S)b.nP()}b.sbC(a.ad(t.I).w) +s=this.f +if(s!==b.a2){b.a2=s +b.aC() +b.aY()}}} +A.a_x.prototype={ +gU(){return t.im.a(A.hW.prototype.gU.call(this))}, +jc(a,b){var s,r +this.Mx(a,b) +s=a.b +s.toString +t.i9.a(s) +r=this.e +r.toString +s.at=t.KJ.a(t.f2.a(r).c[b.b]).c}, +jh(a,b,c){this.My(a,b,c)}} +A.oY.prototype={ +eg(a){if(!(a.b instanceof A.dN))a.b=new A.dN(null,null,B.i)}, +fk(a){var s,r,q,p,o,n +for(s=this.ld(),s=s.gag(s),r=t.B,q=null;s.u();){p=s.gN(s) +o=p.b +o.toString +r.a(o) +n=p.k9(a) +o=o.a +q=A.tT(q,n==null?null:n+o.b)}return q}, +dX(a,b){var s,r=a.b +r.toString +t.B.a(r) +s=this.grN().gG5() +if(!r.gp6()){a.c3(b,!0) +r.a=B.i}else A.aJM(a,r,this.gt(0),s)}, +cz(a,b){var s,r,q,p=this.xM(),o=p.gag(p) +p=t.B +s=!1 +for(;;){if(!(!s&&o.u()))break +r=o.gN(o) +q=r.b +q.toString +s=a.iU(new A.axt(r),p.a(q).a,b)}return s}, +aA(a,b){var s,r,q,p,o,n +for(s=this.ld(),s=s.gag(s),r=t.B,q=b.a,p=b.b;s.u();){o=s.gN(s) +n=o.b +n.toString +n=r.a(n).a +a.dm(o,new A.j(n.a+q,n.b+p))}}} +A.axt.prototype={ +$2(a,b){return this.a.cp(a,b)}, +$S:18} +A.xO.prototype={ +a_u(a){var s=this.at +if(s==null)s=null +else{s=s.e +s=s==null?null:s.a.gFP().aj(0,a)}return s}} +A.to.prototype={ +grN(){return this}, +eg(a){if(!(a.b instanceof A.xO))a.b=new A.xO(null,null,B.i)}, +av(a){var s,r,q,p,o +this.a5r(a) +s=this.a4$ +for(r=t.i9;s!=null;){q=s.b +q.toString +r.a(q) +p=q.at +if(p==null)o=null +else{p=p.e +o=p==null?null:new A.mE(p.a.gFP().a())}if(o!=null)while(o.u())o.b.av(a) +s=q.am$}}, +ai(a){var s,r,q +this.a5s(0) +s=this.a4$ +for(r=t.i9;s!=null;){q=s.b +q.toString +r.a(q) +q.a_u(A.b2k()) +s=q.am$}}, +fz(){return this.bg(this.gKI())}, +gG5(){var s=this.n +return s==null?this.n=B.bA.Y(this.I):s}, +sbC(a){var s=this +if(s.I===a)return +s.I=a +s.n=null +if(!s.S)s.nP()}, +DJ(a){var s=this +s.S=!0 +s.ik(a) +s.aC() +s.S=!1 +a.A.a_()}, +FW(a){var s=this +s.S=!0 +s.mS(a) +s.aC() +s.S=!1}, +a_(){if(!this.S)this.nP()}, +gq0(){var s,r,q,p,o=this +if(o.X===A.a9.prototype.guV.call(o))return null +s=A.a9.prototype.gapC.call(o,0) +for(r=o.X,q=t.B;r>0;--r){p=s.b +p.toString +s=q.a(p).am$}return s}, +bb(a){return A.rs(this.gq0(),new A.axx(a))}, +b7(a){return A.rs(this.gq0(),new A.axv(a))}, +ba(a){return A.rs(this.gq0(),new A.axw(a))}, +b6(a){return A.rs(this.gq0(),new A.axu(a))}, +ds(a,b){var s,r,q,p,o=a.a,n=a.b,m=A.A(1/0,o,n),l=a.c,k=a.d,j=A.A(1/0,l,k) +if(isFinite(m)&&isFinite(j))s=new A.I(A.A(1/0,o,n),A.A(1/0,l,k)) +else{o=this.EP() +s=o.ap(B.R,a,o.gc8())}r=A.n_(s) +q=this.gG5() +for(o=new A.mE(this.ld().a()),p=null;o.u();)p=A.tT(p,A.aLr(o.b,s,r,q,b)) +return p}, +cE(a){var s=a.a,r=a.b,q=A.A(1/0,s,r),p=a.c,o=a.d,n=A.A(1/0,p,o) +if(isFinite(q)&&isFinite(n))return new A.I(A.A(1/0,s,r),A.A(1/0,p,o)) +s=this.EP() +return s.ap(B.R,a,s.gc8())}, +ld(){return new A.jZ(this.a7H(),t.bm)}, +a7H(){var s=this +return function(){var r=0,q=1,p=[],o,n,m,l,k +return function $async$ld(a,b,c){if(b===1){p.push(c) +r=q}for(;;)switch(r){case 0:k=s.gq0() +o=t.i9 +case 2:if(!(k!=null)){r=3 +break}r=4 +return a.b=k,1 +case 4:n=k.b +n.toString +o.a(n) +m=n.at +if(m==null)l=null +else{m=m.e +l=m==null?null:new A.mE(m.a.gFP().a())}r=l!=null?5:6 +break +case 5:case 7:if(!l.u()){r=8 +break}r=9 +return a.b=l.b,1 +case 9:r=7 +break +case 8:case 6:k=n.am$ +r=2 +break +case 3:return 0 +case 1:return a.c=p.at(-1),3}}}}, +xM(){return new A.jZ(this.a7G(),t.bm)}, +a7G(){var s=this +return function(){var r=0,q=1,p=[],o,n,m,l,k,j,i,h +return function $async$xM(a,b,c){if(b===1){p.push(c) +r=q}for(;;)switch(r){case 0:i=s.X===A.a9.prototype.guV.call(s)?null:s.c6$ +h=s.c0$-s.X +o=t.i9 +case 2:if(!(i!=null)){r=3 +break}n=i.b +n.toString +o.a(n) +m=n.at +l=null +if(!(m==null)){m=m.e +if(!(m==null)){m=m.a +k=m.r +if(k===$){j=m.Et(!0) +m.r!==$&&A.aA() +m.r=j +k=j}m=new A.mE(k.a()) +l=m}}r=l!=null?4:5 +break +case 4:case 6:if(!l.u()){r=7 +break}r=8 +return a.b=l.b,1 +case 8:r=6 +break +case 7:case 5:r=9 +return a.b=i,1 +case 9:--h +i=h<=0?null:n.ca$ +r=2 +break +case 3:return 0 +case 1:return a.c=p.at(-1),3}}}}, +gkc(){return!1}, +bx(){var s,r,q=this,p=t.k,o=p.a(A.t.prototype.gW.call(q)),n=A.A(1/0,o.a,o.b) +o=A.A(1/0,o.c,o.d) +if(isFinite(n)&&isFinite(o)){p=p.a(A.t.prototype.gW.call(q)) +q.fy=new A.I(A.A(1/0,p.a,p.b),A.A(1/0,p.c,p.d)) +s=null}else{s=q.EP() +q.a9=!0 +q.dX(s,p.a(A.t.prototype.gW.call(q))) +q.a9=!1 +q.fy=s.gt(0)}r=A.n_(q.gt(0)) +for(p=new A.mE(q.ld().a());p.u();){o=p.b +if(o!==s)q.dX(o,r)}}, +EP(){var s,r,q,p=this,o=p.X===A.a9.prototype.guV.call(p)?null:p.c6$ +for(s=t.i9;o!=null;){r=o.b +r.toString +s.a(r) +q=r.at +q=q==null?null:q.d +if(q===!0&&!r.gp6())return o +o=r.ca$}throw A.e(A.nk(A.b([A.kh("Overlay was given infinite constraints and cannot be sized by a suitable child."),A.br("The constraints given to the overlay ("+p.gW().k(0)+") would result in an illegal infinite size ("+p.gW().gamd().k(0)+"). To avoid that, the Overlay tried to size itself to one of its children, but no suitable non-positioned child that belongs to an OverlayEntry with canSizeOverlay set to true could be found."),A.Ab("Try wrapping the Overlay in a SizedBox to give it a finite size or use an OverlayEntry with canSizeOverlay set to true.")],t.D)))}, +aA(a,b){var s,r,q=this,p=q.ab +if(q.a2!==B.n){s=q.cx +s===$&&A.a() +r=q.gt(0) +p.saB(0,a.lQ(s,b,new A.x(0,0,0+r.a,0+r.b),A.oY.prototype.geE.call(q),q.a2,p.a))}else{p.saB(0,null) +q.a4x(a,b)}}, +l(){this.ab.saB(0,null) +this.fb()}, +bg(a){var s,r,q=this.a4$ +for(s=t.i9;q!=null;){a.$1(q) +r=q.b +r.toString +s.a(r) +r.a_u(a) +q=r.am$}}, +eS(a){var s,r,q=this.gq0() +for(s=t.i9;q!=null;){a.$1(q) +r=q.b +r.toString +q=s.a(r).am$}}, +mN(a){var s +switch(this.a2.a){case 0:return null +case 1:case 2:case 3:s=this.gt(0) +return new A.x(0,0,0+s.a,0+s.b)}}} +A.axx.prototype={ +$1(a){return a.ap(B.aK,this.a,a.gbE())}, +$S:38} +A.axv.prototype={ +$1(a){return a.ap(B.ab,this.a,a.gbj())}, +$S:38} +A.axw.prototype={ +$1(a){return a.ap(B.aL,this.a,a.gbD())}, +$S:38} +A.axu.prototype={ +$1(a){return a.ap(B.b8,this.a,a.gbL())}, +$S:38} +A.afX.prototype={ +k(a){return"OverlayPortalController"+(this.a!=null?"":" DETACHED")}} +A.P_.prototype={ +K(){return"OverlayChildLocation."+this.b}} +A.Ca.prototype={ +ac(){return new A.Xf()}} +A.afW.prototype={ +$1(a){return new A.xk(this.a,null)}, +$S:483} +A.Xf.prototype={ +aas(a,b){var s,r,q=this,p=q.f,o=A.td(new A.avo(q,b)) +if(p!=null)if(q.e){s=o.cD() +s=p.b===s.r&&p.c===s.f +r=s}else r=!0 +else r=!1 +q.e=!1 +if(r)return p +return q.f=new A.oW(a,o.cD().r,o.cD().f)}, +aw(){this.aK() +this.SS(this.a.c)}, +SS(a){var s,r=a.b,q=this.d +if(q!=null)s=r!=null&&r>q +else s=!0 +if(s)this.d=r +a.b=null +a.a=this}, +be(){this.dc() +this.e=!0}, +aH(a){var s,r,q=this +q.b0(a) +q.e=q.e||a.f!==q.a.f +s=a.c +r=q.a.c +if(s!==r){s.a=null +q.SS(r)}}, +bA(){this.cs()}, +l(){this.a.c.a=null +this.f=null +this.aD()}, +a11(a,b){this.T(new A.avq(this,b)) +this.f=null}, +jO(){this.T(new A.avp(this)) +this.f=null}, +H(a){var s,r,q=this,p=null,o=q.d +if(o==null)return new A.xl(p,q.a.e,p,p) +s=q.aas(o,q.a.f) +r=q.a +return new A.xl(new A.UA(new A.e8(r.d,p),p),r.e,s,p)}} +A.avo.prototype={ +$0(){var s=this.a.c +s.toString +return A.aZ4(s,this.b===B.Ol)}, +$S:664} +A.avq.prototype={ +$0(){this.a.d=this.b}, +$S:0} +A.avp.prototype={ +$0(){this.a.d=null}, +$S:0} +A.oW.prototype={ +Ng(a){var s,r=this +r.d=a +r.b.agM(0,r) +s=r.c +s.aC() +s.kL() +s.aY()}, +S0(a){var s,r=this +r.d=null +s=r.b.e +if(s!=null)s.F(0,r) +s=r.c +s.aC() +s.kL() +s.aY()}, +k(a){var s=A.bi(this) +return"_OverlayEntryLocation["+s+"] "}} +A.tp.prototype={ +ce(a){return a.f!==this.f||a.r!==this.r}} +A.axs.prototype={ +$1(a){this.a.a=A.abE(a,t.pR) +return!1}, +$S:22} +A.xl.prototype={ +bJ(a){return new A.Xe(this,B.Z)}, +aG(a){var s=new A.Hy(null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}} +A.Xe.prototype={ +gU(){return t.SN.a(A.b_.prototype.gU.call(this))}, +ea(a,b){var s,r=this +r.nR(a,b) +s=r.e +s.toString +t.eU.a(s) +r.p2=r.dD(r.p2,s.d,null) +r.p1=r.dD(r.p1,s.c,s.e)}, +cm(a,b){var s=this +s.ma(0,b) +s.p2=s.dD(s.p2,b.d,null) +s.p1=s.dD(s.p1,b.c,b.e)}, +ir(a){this.p2=null +this.jv(a)}, +bg(a){var s=this.p2,r=this.p1 +if(s!=null)a.$1(s) +if(r!=null)a.$1(r)}, +bA(){var s,r +this.tl() +s=this.p1 +s=s==null?null:s.gU() +t.Kp.a(s) +if(s!=null){r=this.p1.c +r.toString +t.Vl.a(r) +r.c.DJ(s) +r.d=s}}, +dJ(){var s,r=this.p1 +r=r==null?null:r.gU() +t.Kp.a(r) +if(r!=null){s=this.p1.c +s.toString +t.Vl.a(s) +s.c.FW(r) +s.d=null}this.MS()}, +jc(a,b){var s,r=t.SN +if(b!=null){s=r.a(A.b_.prototype.gU.call(this)) +t.Lj.a(a) +s.A=a +b.Ng(a) +b.c.DJ(a) +r.a(A.b_.prototype.gU.call(this)).aY()}else r.a(A.b_.prototype.gU.call(this)).saU(a)}, +jh(a,b,c){var s=b.c,r=c.c +if(s!==r){s.FW(a) +r.DJ(a)}if(b.b!==c.b||b.a!==c.a){b.S0(a) +c.Ng(a)}t.SN.a(A.b_.prototype.gU.call(this)).aY()}, +k_(a,b){var s +if(b==null){t.SN.a(A.b_.prototype.gU.call(this)).saU(null) +return}t.Lj.a(a) +b.S0(a) +b.c.FW(a) +s=t.SN +s.a(A.b_.prototype.gU.call(this)).A=null +s.a(A.b_.prototype.gU.call(this)).aY()}} +A.UA.prototype={ +aG(a){var s,r=a.re(t.SN) +r.toString +s=new A.kY(r,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return r.A=s}, +aP(a,b){}} +A.kY.prototype={ +ld(){var s=this.D$ +return s==null?B.ng:A.aIp(1,new A.awY(s),t.x)}, +xM(){return this.ld()}, +grN(){var s,r=this.d +$label0$0:{if(r instanceof A.to){s=r +break $label0$0}s=A.a0(A.je(A.k(r)+" of "+this.k(0)+" is not a _RenderTheater"))}return s}, +fz(){this.A.kT(this) +this.MV()}, +gkc(){return!0}, +a_(){this.R=!0 +this.nP()}, +gjp(){return this.A}, +ds(a,b){var s=this.D$ +if(s==null)return null +return A.aLr(s,new A.I(A.A(1/0,a.a,a.b),A.A(1/0,a.c,a.d)),a,this.grN().gG5(),b)}, +OS(a,b){var s=this,r=s.R||!t.k.a(A.t.prototype.gW.call(s)).j(0,b) +s.af=!0 +s.MR(b,!1) +s.R=s.af=!1 +if(r)a.Bi(new A.awZ(s),t.k)}, +c3(a,b){var s=this.d +s.toString +this.OS(s,a)}, +hp(a){return this.c3(a,!1)}, +pl(){var s=t.k.a(A.t.prototype.gW.call(this)) +this.fy=new A.I(A.A(1/0,s.a,s.b),A.A(1/0,s.c,s.d))}, +bx(){var s,r=this +if(r.af){r.R=!1 +return}s=r.D$ +if(s==null){r.R=!1 +return}r.dX(s,t.k.a(A.t.prototype.gW.call(r))) +r.R=!1}, +cP(a,b){var s,r=a.b +r.toString +s=t.q.a(r).a +b.dC(s.a,s.b,0,1)}} +A.awY.prototype={ +$1(a){return this.a}, +$S:209} +A.awZ.prototype={ +$1(a){var s=this.a +s.R=!0 +s.nP()}, +$S:486} +A.Hy.prototype={ +fz(){this.MV() +var s=this.A +if(s!=null&&s.y!=null)this.kT(s)}, +bx(){var s,r,q,p,o,n,m,l,k +this.pP() +s=this.A +if(s==null)return +r=s.d +r.toString +t.im.a(r) +if(!r.a9){q=t.k.a(A.t.prototype.gW.call(r)) +p=q.a +o=q.b +n=A.A(1/0,p,o) +m=q.c +l=q.d +k=A.A(1/0,m,l) +s.OS(this,A.n_(isFinite(n)&&isFinite(k)?new A.I(A.A(1/0,p,o),A.A(1/0,m,l)):r.gt(0)))}}, +eS(a){var s +this.nQ(a) +s=this.A +if(s!=null)a.$1(s)}} +A.xk.prototype={ +aG(a){var s=new A.Hx(null,!0,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +gHx(){return this.d}} +A.Hx.prototype={ +ld(){var s=this.D$ +return s==null?B.ng:A.aIp(1,new A.ax0(s),t.x)}, +xM(){return this.ld()}, +grN(){var s,r=this.d +$label0$0:{if(r instanceof A.kY){s=r.grN() +break $label0$0}s=A.a0(A.je(A.k(r)+" of "+this.k(0)+" is not a _RenderDeferredLayoutBox"))}return s}, +gkc(){return!0}, +pl(){var s=t.k.a(A.t.prototype.gW.call(this)) +return this.fy=new A.I(A.A(1/0,s.a,s.b),A.A(1/0,s.c,s.d))}, +cP(a,b){var s,r=a.b +r.toString +s=t.q.a(r).a +b.dC(s.a,s.b,0,1)}, +gYD(){var s=this.A +s.toString +return s}, +JP(){var s,r=this,q=r.grN(),p=r.d +p.toString +s=t.Lj.a(p).A +r.A=new A.hx(s.gt(0),s.aM(0,q),r.gt(0)) +r.a2L()}, +bx(){var s,r=this +r.avf() +s=r.D$ +if(s!=null)r.dX(s,t.k.a(A.t.prototype.gW.call(r))) +if(r.R==null)r.R=$.bC.a0r(r.gagN(),!1)}, +bb(a){return 0}, +b7(a){return 0}, +ba(a){return 0}, +b6(a){return 0}, +cE(a){return B.I}, +ds(a,b){return null}, +agO(a){this.R=null +this.a_()}, +l(){var s=this.R +if(A.xY(s))$.bC.Vw(s) +this.fb()}} +A.ax0.prototype={ +$1(a){return this.a}, +$S:209} +A.Xg.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.a0X.prototype={} +A.a0Y.prototype={} +A.a0Z.prototype={} +A.a1_.prototype={ +pC(){var s,r=this +if(r.IN$)return +r.IN$=!0 +s=r.y +if(s!=null)s.r.push(r) +r.nP()}} +A.a10.prototype={} +A.JB.prototype={ +av(a){var s,r,q +this.e1(a) +s=this.a4$ +for(r=t.B;s!=null;){s.av(a) +q=s.b +q.toString +s=r.a(q).am$}}, +ai(a){var s,r,q +this.e2(0) +s=this.a4$ +for(r=t.B;s!=null;){s.ai(0) +q=s.b +q.toString +s=r.a(q).am$}}} +A.a17.prototype={} +A.AG.prototype={ +ac(){var s=t.y +return new A.Ge(A.ab([!1,!0,!0,!0],s,s),null,null)}, +kN(a){return A.ya().$1(a)}} +A.Ge.prototype={ +aw(){var s,r,q=this +q.aK() +s=q.a +r=s.f +q.d=A.aL9(A.b8(s.e),r,q) +r=q.a +s=r.f +s=A.aL9(A.b8(r.e),s,q) +q.e=s +r=q.d +r.toString +q.f=new A.tg(A.b([r,s],t.Eo))}, +aH(a){var s,r=this +r.b0(a) +if(!a.f.j(0,r.a.f)||A.b8(a.e)!==A.b8(r.a.e)){s=r.d +s.toString +s.sci(0,r.a.f) +s=r.d +s.toString +s.sVf(A.b8(r.a.e)) +s=r.e +s.toString +s.sci(0,r.a.f) +s=r.e +s.toString +s.sVf(A.b8(r.a.e))}}, +FO(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +if(!h.a.kN(a))return!1 +s=a.a +r=s.e +if(A.b8(r)!==A.b8(h.a.e))return!1 +q=h.d +q.toString +p=s.c +p.toString +o=s.a +o.toString +q.e=-Math.min(p-o,q.d) +o=h.e +o.toString +s=s.b +s.toString +o.e=-Math.min(s-p,o.d) +if(a instanceof A.jx){s=a.e +if(s<0)n=q +else if(s>0)n=o +else n=null +m=n===q +l=new A.nQ(m,0) +q=h.c +q.dK(l) +q=h.w +q.m(0,m,l.c) +q=q.h(0,m) +q.toString +if(q)n.d=0 +q=h.w.h(0,m) +q.toString +if(q){q=a.f +if(q!==0){s=n.c +if(s!=null)s.aR(0) +n.c=null +k=A.A(Math.abs(q),100,1e4) +s=n.r +if(n.a===B.j4)r=0.3 +else{r=n.w +r===$&&A.a() +q=r.a +q=r.b.a8(0,q.gq(q)) +r=q}s.a=r +r.toString +s.b=A.A(k*0.00006,r,0.5) +r=n.x +s=n.y +s===$&&A.a() +q=s.a +r.a=s.b.a8(0,q.gq(q)) +r.b=Math.min(0.025+75e-8*k*k,1) +r=n.b +r===$&&A.a() +r.e=A.ea(0,B.d.aI(0.15+k*0.02),0) +r.j9(0,0) +n.at=0.5 +n.a=B.Zu}else{q=a.d +if(q!=null){p=a.b.gU() +p.toString +t.x.a(p) +j=p.gt(0) +i=p.dQ(q.a) +switch(A.b8(r).a){case 0:n.toString +r=j.b +n.Zr(0,Math.abs(s),j.a,A.A(i.b,0,r),r) +break +case 1:n.toString +r=j.a +n.Zr(0,Math.abs(s),j.b,A.A(i.a,0,r),r) +break}}}}}else{if(!(a instanceof A.iE&&a.d!=null))s=a instanceof A.kF&&a.d!=null +else s=!0 +if(s){if(q.a===B.j5)q.o7(B.eY) +s=h.e +if(s.a===B.j5)s.o7(B.eY)}}h.r=A.r(a) +return!1}, +l(){this.d.l() +this.e.l() +this.a5h()}, +H(a){var s=this,r=null,q=s.a,p=s.d,o=s.e,n=q.e,m=s.f +return new A.dd(s.gFN(),new A.jC(A.ip(new A.jC(q.w,r),new A.VF(p,o,n,m),r,r,B.I),r),r,t.WA)}} +A.x2.prototype={ +K(){return"_GlowState."+this.b}} +A.Gd.prototype={ +sci(a,b){if(this.ay.j(0,b))return +this.ay=b +this.ak()}, +sVf(a){if(this.ch===a)return +this.ch=a +this.ak()}, +l(){var s=this,r=s.b +r===$&&A.a() +r.l() +r=s.f +r===$&&A.a() +r.l() +r=s.z +r===$&&A.a() +r.w.de$.F(0,r) +r.MY() +r=s.c +if(r!=null)r.aR(0) +s.cY()}, +Zr(a,b,c,d,e){var s,r,q,p=this,o=p.c +if(o!=null)o.aR(0) +p.ax=p.ax+b/200 +o=p.r +s=p.w +s===$&&A.a() +r=s.b +s=s.a +o.a=r.a8(0,s.gq(s)) +o.b=Math.min(r.a8(0,s.gq(s))+b/c*0.8,0.5) +q=Math.min(c,e*0.20096189432249995) +s=p.x +r=p.y +r===$&&A.a() +o=r.b +r=r.a +s.a=o.a8(0,r.gq(r)) +s.b=Math.max(1-1/(0.7*Math.sqrt(p.ax*q)),A.l4(o.a8(0,r.gq(r)))) +r=d/e +p.as=r +if(r!==p.at){o=p.z +o===$&&A.a() +if(!o.gas4())o.pI(0)}else{o=p.z +o===$&&A.a() +o.eL(0) +p.Q=null}o=p.b +o===$&&A.a() +o.e=B.cF +if(p.a!==B.j5){o.j9(0,0) +p.a=B.j5}else{o=o.r +if(!(o!=null&&o.a!=null))p.ak()}p.c=A.co(B.cF,new A.asr(p))}, +E7(a){var s=this +if(a!==B.a2)return +switch(s.a.a){case 1:s.o7(B.eY) +break +case 3:s.a=B.j4 +s.ax=0 +break +case 2:case 0:break}}, +o7(a){var s,r,q=this,p=q.a +if(p===B.Bm||p===B.j4)return +p=q.c +if(p!=null)p.aR(0) +q.c=null +p=q.r +s=q.w +s===$&&A.a() +r=s.a +p.a=s.b.a8(0,r.gq(r)) +p.b=0 +p=q.x +r=q.y +r===$&&A.a() +s=r.a +p.a=r.b.a8(0,s.gq(s)) +p.b=0 +p=q.b +p===$&&A.a() +p.e=a +p.j9(0,0) +q.a=B.Bm}, +akf(a){var s,r=this,q=r.Q +if(q!=null){q=q.a +s=r.as +r.at=s-(s-r.at)*Math.pow(2,-(a.a-q)/$.aPn().a) +r.ak()}if(A.JT(r.as,r.at,0.001)){q=r.z +q===$&&A.a() +q.eL(0) +r.Q=null}else r.Q=a}, +aA(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.w +j===$&&A.a() +s=j.a +if(J.d(j.b.a8(0,s.gq(s)),0))return +s=b.a +r=b.b +q=s>r?r/s:1 +p=s*3/2 +o=Math.min(r,s*0.20096189432249995) +r=k.y +r===$&&A.a() +n=r.a +n=r.b.a8(0,n.gq(n)) +r=k.at +$.a3() +m=A.bc() +l=j.a +m.r=k.ay.b_(j.b.a8(0,l.gq(l))).gq(0) +l=a.a +J.ap(l.save()) +l.translate(0,k.d+k.e) +a.t7(0,1,n*q) +l.clipRect(A.cU(new A.x(0,0,0+s,0+o)),$.mQ()[1],!0) +a.mR(new A.j(s/2*(0.5+r),o-p),p,m) +l.restore()}, +k(a){return"_GlowController(color: "+this.ay.k(0)+", axis: "+this.ch.b+")"}} +A.asr.prototype={ +$0(){return this.a.o7(B.hr)}, +$S:0} +A.VF.prototype={ +Ru(a,b,c,d,e){var s,r +if(c==null)return +switch(A.mJ(d,e).a){case 0:c.aA(a,b) +break +case 2:s=a.a +J.ap(s.save()) +s.translate(0,b.b) +a.t7(0,1,-1) +c.aA(a,b) +s.restore() +break +case 3:s=a.a +J.ap(s.save()) +a.a_2(0,1.5707963267948966) +a.t7(0,1,-1) +c.aA(a,new A.I(b.b,b.a)) +s.restore() +break +case 1:s=a.a +J.ap(s.save()) +r=b.a +s.translate(r,0) +a.a_2(0,1.5707963267948966) +c.aA(a,new A.I(b.b,r)) +s.restore() +break}}, +aA(a,b){var s=this,r=s.d +s.Ru(a,b,s.b,r,B.oO) +s.Ru(a,b,s.c,r,B.hL)}, +ew(a){return a.b!=this.b||a.c!=this.c}, +k(a){return"_GlowingOverscrollIndicatorPainter("+A.k(this.b)+", "+A.k(this.c)+")"}} +A.ZS.prototype={ +K(){return"_StretchDirection."+this.b}} +A.DZ.prototype={ +ac(){return new A.Iw(null,null)}, +kN(a){return A.ya().$1(a)}} +A.Iw.prototype={ +gqo(){var s,r,q,p,o,n=this,m=null,l=n.d +if(l===$){s=t.Y +r=new A.ay(0,0,s) +q=new A.Iv(r,B.mQ,B.jj,$.aw()) +p=A.bK(m,m,m,m,n) +p.bk() +o=p.co$ +o.b=!0 +o.a.push(q.gE6()) +q.a!==$&&A.bw() +q.a=p +p=A.cw(B.dE,p,m) +p.a.Z(0,q.gcV()) +q.c!==$&&A.bw() +q.c=p +t.o.a(p) +q.b!==$&&A.bw() +q.b=new A.al(p,r,s.i("al")) +n.d!==$&&A.aA() +n.d=q +l=q}return l}, +FO(a){var s,r,q,p,o,n,m,l,k=this +if(!k.a.kN(a))return!1 +s=a.a +if(A.b8(s.e)!==A.b8(k.a.c))return!1 +if(a instanceof A.jx){k.f=a +J.U(k.e) +r=a.e +q=new A.nQ(r<0,0) +p=k.c +p.dK(q) +k.w=q.c +if(k.w){r=k.r+=r +p=a.f +if(p!==0){s=k.gqo() +r=k.r +o=A.A(Math.abs(p),1,1e4) +p=s.d +n=s.b +n===$&&A.a() +m=n.a +p.a=n.b.a8(0,m.gq(m)) +p.b=Math.min(0.016+1.01/o,1) +p=s.a +p===$&&A.a() +p.e=A.ea(0,B.d.aI(Math.max(o*0.02,50)),0) +p.j9(0,0) +s.e=B.a_p +s.r=r>0?B.jj:B.Bz}else if(a.d!=null){s=s.d +s.toString +l=A.A(Math.abs(r)/s,0,1) +k.gqo().aub(0,l,k.r)}}}else if(a instanceof A.iE||a instanceof A.kF){k.r=0 +s=k.gqo() +if(s.e===B.mR)s.o7(B.k6)}k.e=a +return!1}, +l(){this.gqo().l() +this.a5A()}, +H(a){return new A.dd(this.gFN(),A.hC(this.gqo(),new A.ayL(this),null),null,t.WA)}} +A.ayL.prototype={ +$2(a,b){var s,r,q,p,o,n=null,m=this.a,l=m.gqo(),k=l.b +k===$&&A.a() +s=k.a +r=k.b.a8(0,s.gq(s)) +switch(A.b8(m.a.c).a){case 0:q=A.bP(a,B.mD,t.w).w.a.a +break +case 1:q=A.bP(a,B.Bq,t.w).w.a.b +break +default:q=n}k=m.f +if(k==null)p=n +else{k=k.a.d +k.toString +p=k}if(p==null)p=q +o=l.r===B.jj?-r:r +m=m.a +l=m.c +if(l===B.aR||l===B.ba)o=-o +l=A.b8(l) +k=m.f +m=r!==0&&p!==q?m.e:B.n +return A.LB(new A.RG(o,l,k,n),m,n)}, +$S:487} +A.xH.prototype={ +K(){return"_StretchState."+this.b}} +A.Iv.prototype={ +aub(a,b,c){var s,r,q,p=this,o=c>0?B.jj:B.Bz +if(p.r!==o&&p.e===B.mS)return +p.r=o +p.f=b +s=p.d +r=p.b +r===$&&A.a() +q=r.a +s.a=r.b.a8(0,q.gq(q)) +q=p.f +s.b=0.016*q+0.016*(1-Math.exp(-q*8.237217661997105)) +q=p.a +q===$&&A.a() +q.e=B.k6 +if(p.e!==B.mR){q.j9(0,0) +p.e=B.mR}else{s=q.r +if(!(s!=null&&s.a!=null))p.ak()}}, +E7(a){var s=this +if(a!==B.a2)return +switch(s.e.a){case 1:s.o7(B.k6) +break +case 3:s.e=B.mQ +s.f=0 +break +case 2:case 0:break}}, +o7(a){var s,r,q=this,p=q.e +if(p===B.mS||p===B.mQ)return +p=q.d +s=q.b +s===$&&A.a() +r=s.a +p.a=s.b.a8(0,r.gq(r)) +p.b=0 +p=q.a +p===$&&A.a() +p.e=a +p.j9(0,0) +q.e=B.mS}, +l(){var s=this.a +s===$&&A.a() +s.l() +s=this.c +s===$&&A.a() +s.l() +this.cY()}, +k(a){return"_StretchController()"}} +A.nQ.prototype={ +dT(a){this.a4h(a) +a.push("side: "+(this.a?"leading edge":"trailing edge"))}} +A.H2.prototype={ +dT(a){var s,r +this.Dw(a) +s=this.hm$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.Js.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.JG.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.It.prototype={ +j(a,b){if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +return b instanceof A.It&&A.cE(b.a,this.a)}, +gB(a){return A.bI(this.a)}, +k(a){return"StorageEntryIdentifier("+B.b.bn(this.a,":")+")"}} +A.Cd.prototype={ +Nm(a){var s=A.b([],t.g8) +if(A.aJg(a,s))a.k8(new A.ag2(s)) +return s}, +auw(a){var s +if(this.a==null)return null +s=this.Nm(a) +return s.length!==0?this.a.h(0,new A.It(s)):null}} +A.ag2.prototype={ +$1(a){return A.aJg(a,this.a)}, +$S:22} +A.vo.prototype={ +H(a){return this.c}} +A.kz.prototype={ +gj0(){return null}, +gl_(a){return B.cG}} +A.Cc.prototype={ +gkO(){return!0}, +gqF(){return!1}, +uS(a){return a instanceof A.hf}, +Hz(a){return a instanceof A.hf}, +gJ1(){return this.ao}, +goj(){return this.aE}} +A.aeE.prototype={} +A.agn.prototype={} +A.Mb.prototype={ +FB(a){return this.afp(a)}, +afp(a){var s=0,r=A.H(t.H),q,p=this,o,n,m +var $async$FB=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:n=A.eT(a.b) +m=p.a +if(!m.az(0,n)){s=1 +break}m=m.h(0,n) +m.toString +o=a.a +if(o==="Menu.selectedCallback"){m.gawE().$0() +m.gatr() +o=$.aa.an$.d.c.e +o.toString +A.aRp(o,m.gatr(),t.J)}else if(o==="Menu.opened")m.gawD(m).$0() +else if(o==="Menu.closed")m.gawC(m).$0() +case 1:return A.F(q,r)}}) +return A.G($async$FB,r)}} +A.vu.prototype={ +ce(a){return this.f!=a.f}} +A.o8.prototype={ +ac(){return new A.YU(null,A.w(t.yb,t.M),null,!0,null)}} +A.YU.prototype={ +ged(){return this.a.d}, +hs(a,b){}, +H(a){return A.EQ(this.bw$,this.a.c)}} +A.t1.prototype={ +ce(a){return a.f!=this.f}} +A.D3.prototype={ +ac(){return new A.HM()}} +A.HM.prototype={ +be(){var s,r=this +r.dc() +s=r.c +s.toString +r.r=A.o9(s) +r.Fw() +if(r.d==null){r.a.toString +r.d=!1}}, +aH(a){this.b0(a) +this.Fw()}, +gQR(){this.a.toString +return!1}, +Fw(){var s,r=this +if(r.gQR()&&!r.w){r.w=!0;++$.m1.db$ +s=$.e0.aE$ +s===$&&A.a() +s.gav8().bo(new A.axB(r),t.P)}}, +ai9(){var s,r=this +r.e=!1 +r.f=null +s=$.e0.aE$ +s===$&&A.a() +s.J(0,r.gG0()) +r.Fw()}, +l(){if(this.e){var s=$.e0.aE$ +s===$&&A.a() +s.J(0,this.gG0())}this.aD()}, +H(a){var s,r,q=this,p=q.d +p.toString +if(p&&q.gQR())return B.ay +p=q.r +if(p==null)p=q.f +s=q.a +r=s.d +return A.EQ(p,new A.o8(s.c,r,null))}} +A.axB.prototype={ +$1(a){var s,r=this.a +r.w=!1 +if(r.c!=null){s=$.e0.aE$ +s===$&&A.a() +s.Z(0,r.gG0()) +r.T(new A.axA(r,a))}$.m1.V_()}, +$S:488} +A.axA.prototype={ +$0(){var s=this.a +s.f=this.b +s.e=!0 +s.d=!1}, +$S:0} +A.e_.prototype={ +gmT(a){return!0}, +l(){var s=this,r=s.c +if(r!=null)r.akz(s) +s.cY() +s.a=!0}} +A.iD.prototype={ +Il(a){}, +kU(a,b){var s,r,q=this,p=q.bw$ +p=p==null?null:J.yj(p.gmu(),b) +s=p===!0 +r=s?a.rf(J.aK(q.bw$.gmu(),b)):a.A6() +if(a.b==null){a.b=b +a.c=q +p=new A.aiI(q,a) +a.Z(0,p) +q.fo$.m(0,a,p)}a.XS(r) +if(!s&&a.gmT(a)&&q.bw$!=null)q.GI(a)}, +oG(){var s,r,q=this +if(q.fp$!=null){s=q.bw$ +s=s==null?null:s.e +s=s==q.ged()||q.gnh()}else s=!0 +if(s)return +r=q.bw$ +if(q.mB(q.fp$,!1))if(r!=null)r.l()}, +gnh(){var s,r,q=this +if(q.e7$)return!0 +if(q.ged()==null)return!1 +s=q.c +s.toString +r=A.o9(s) +if(r!=q.fp$){if(r==null)s=null +else{s=r.c +s=s==null?null:s.d +s=s===!0}s=s===!0}else s=!1 +return s}, +mB(a,b){var s,r,q=this +if(q.ged()==null||a==null)return q.SO(null,b) +if(b||q.bw$==null){s=q.ged() +s.toString +return q.SO(a.amJ(s,q),b)}s=q.bw$ +s.toString +r=q.ged() +r.toString +s.auR(r) +r=q.bw$ +r.toString +a.ik(r) +return!1}, +SO(a,b){var s,r=this,q=r.bw$ +if(a==q)return!1 +r.bw$=a +if(!b){if(a!=null){s=r.fo$ +new A.bs(s,A.n(s).i("bs<1>")).aj(0,r.gakT())}r.Il(q)}return!0}, +GI(a){var s,r=a.gmT(a),q=this.bw$ +if(r){if(q!=null){r=a.b +r.toString +s=a.rO() +if(!J.d(J.aK(q.gmu(),r),s)||!J.yj(q.gmu(),r)){J.dR(q.gmu(),r,s) +q.q7()}}}else if(q!=null){r=a.b +r.toString +q.auE(0,r,t.K)}}, +akz(a){var s=this.fo$.F(0,a) +s.toString +a.J(0,s) +a.c=a.b=null}} +A.aiI.prototype={ +$0(){var s=this.a +if(s.bw$==null)return +s.GI(this.b)}, +$S:0} +A.aAg.prototype={ +$2(a,b){if(!a.a)a.J(0,b)}, +$S:50} +A.a18.prototype={ +aH(a){this.b0(a) +this.oG()}, +be(){var s,r,q,p,o=this +o.dc() +s=o.bw$ +r=o.gnh() +q=o.c +q.toString +q=A.o9(q) +o.fp$=q +p=o.mB(q,r) +if(r){o.hs(s,o.e7$) +o.e7$=!1}if(p)if(s!=null)s.l()}, +l(){var s,r=this +r.fo$.aj(0,new A.aAg()) +s=r.bw$ +if(s!=null)s.l() +r.bw$=null +r.aD()}} +A.bJ.prototype={ +sq(a,b){var s=this.y +if(b==null?s!=null:b!==s){this.y=b +this.Io(s)}}, +XS(a){this.y=a}} +A.i9.prototype={ +A6(){return this.cy}, +Io(a){this.ak()}, +rf(a){return A.n(this).i("i9.T").a(a)}, +rO(){var s=this.y +return s==null?A.n(this).i("bJ.T").a(s):s}} +A.HK.prototype={ +rf(a){return this.a4A(a)}, +rO(){var s=this.a4B() +s.toString +return s}} +A.D_.prototype={} +A.ru.prototype={} +A.Qc.prototype={} +A.aAh.prototype={ +$2(a,b){if(!a.a)a.J(0,b)}, +$S:50} +A.ob.prototype={ +grU(){return this.b}} +A.Qi.prototype={ +ac(){return new A.xA(new A.YR($.aw()),null,A.w(t.yb,t.M),null,!0,null,this.$ti.i("xA<1>"))}} +A.aiM.prototype={ +K(){return"RouteInformationReportingType."+this.b}} +A.xA.prototype={ +ged(){return this.a.r}, +aw(){var s,r=this +r.aK() +s=r.a.c +if(s!=null)s.Z(0,r.gyg()) +r.a.f.alD(r.gF4()) +r.a.e.Z(0,r.gFc())}, +hs(a,b){var s,r,q=this,p=q.f +q.kU(p,"route") +s=p.y +r=s==null +if((r?A.n(p).i("bJ.T").a(s):s)!=null){p=r?A.n(p).i("bJ.T").a(s):s +p.toString +q.yK(p,new A.axU(q))}else{p=q.a.c +if(p!=null)q.yK(p.a,new A.axV(q))}}, +aiP(){var s=this +if(s.w||s.a.c==null)return +s.w=!0 +$.bC.k4$.push(s.gaic())}, +aid(a){var s,r,q,p=this +if(p.c==null)return +p.w=!1 +s=p.f +r=s.y +q=r==null +if((q?A.n(s).i("bJ.T").a(r):r)!=null){s=q?A.n(s).i("bJ.T").a(r):r +s.toString +r=p.a.c +r.toString +q=p.e +q.toString +r.awI(s,q)}p.e=B.zu}, +air(){this.a.e.gawu() +this.a.toString +return null}, +yy(){var s=this +s.f.sq(0,s.air()) +if(s.e==null)s.e=B.zu +s.aiP()}, +be(){var s,r,q,p=this +p.r=!0 +p.a5t() +s=p.f +r=s.y +q=r==null?A.n(s).i("bJ.T").a(r):r +if(q==null){s=p.a.c +q=s==null?null:s.a}if(q!=null&&p.r)p.yK(q,new A.axT(p)) +p.r=!1 +p.yy()}, +aH(a){var s,r,q,p=this +p.a5u(a) +s=p.a.c +r=a.c +p.d=new A.R() +if(s!=r){s=r==null +if(!s)r.J(0,p.gyg()) +q=p.a.c +if(q!=null)q.Z(0,p.gyg()) +s=s?null:r.a +r=p.a.c +if(s!=(r==null?null:r.a))p.Qj()}s=a.f +if(p.a.f!==s){r=p.gF4() +s.auI(r) +p.a.f.alD(r)}p.a.toString +s=p.gFc() +a.e.J(0,s) +p.a.e.Z(0,s) +p.yy()}, +l(){var s,r=this +r.f.l() +s=r.a.c +if(s!=null)s.J(0,r.gyg()) +r.a.f.auI(r.gF4()) +r.a.e.J(0,r.gFc()) +r.d=null +r.a5v()}, +yK(a,b){var s,r,q=this +q.r=!1 +q.d=new A.R() +s=q.a.d +s.toString +r=q.c +r.toString +s.awF(a,r).bo(q.ahK(q.d,b),t.H)}, +ahK(a,b){return new A.axR(this,a,b)}, +Qj(){var s=this +s.r=!0 +s.yK(s.a.c.a,new A.axO(s))}, +aaZ(){var s=this +s.d=new A.R() +return s.a.e.awG().bo(s.acZ(s.d),t.y)}, +acZ(a){return new A.axP(this,a)}, +Sg(){this.T(new A.axS()) +this.yy() +return new A.dw(null,t.b6)}, +ad_(){this.T(new A.axQ()) +this.yy()}, +H(a){var s=this.bw$,r=this.a,q=r.c,p=r.f,o=r.d +r=r.e +return A.EQ(s,new A.Z2(q,p,o,r,this,new A.e8(r.gVk(),null),null))}} +A.axU.prototype={ +$0(){return this.a.a.e.gawb()}, +$S(){return this.a.$ti.i("av<~>(1)()")}} +A.axV.prototype={ +$0(){return this.a.a.e.gawa()}, +$S(){return this.a.$ti.i("av<~>(1)()")}} +A.axT.prototype={ +$0(){return this.a.a.e.ga0N()}, +$S(){return this.a.$ti.i("av<~>(1)()")}} +A.axR.prototype={ +$1(a){var s=0,r=A.H(t.H),q,p=this,o,n +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:o=p.a +n=p.b +if(o.d!=n){s=1 +break}s=3 +return A.v(p.c.$0().$1(a),$async$$1) +case 3:if(o.d==n)o.Sg() +case 1:return A.F(q,r)}}) +return A.G($async$$1,r)}, +$S(){return this.a.$ti.i("av<~>(1)")}} +A.axO.prototype={ +$0(){return this.a.a.e.ga0N()}, +$S(){return this.a.$ti.i("av<~>(1)()")}} +A.axP.prototype={ +$1(a){var s=this.a +if(this.b!=s.d)return new A.dw(!0,t.d9) +s.Sg() +return new A.dw(a,t.d9)}, +$S:490} +A.axS.prototype={ +$0(){}, +$S:0} +A.axQ.prototype={ +$0(){}, +$S:0} +A.Z2.prototype={ +ce(a){return!0}} +A.YR.prototype={ +A6(){return null}, +Io(a){this.ak()}, +rf(a){var s,r +if(a==null)return null +t.Dn.a(a) +s=J.cD(a) +r=A.cC(s.ga3(a)) +if(r==null)return null +return new A.ob(A.d3(r),s.gae(a))}, +rO(){var s,r=this,q=r.y,p=q==null +if((p?A.n(r).i("bJ.T").a(q):q)==null)q=null +else{q=(p?A.n(r).i("bJ.T").a(q):q).grU().k(0) +s=r.y +q=[q,(s==null?A.n(r).i("bJ.T").a(s):s).c]}return q}} +A.xW.prototype={ +aH(a){this.b0(a) +this.oG()}, +be(){var s,r,q,p,o=this +o.dc() +s=o.bw$ +r=o.gnh() +q=o.c +q.toString +q=A.o9(q) +o.fp$=q +p=o.mB(q,r) +if(r){o.hs(s,o.e7$) +o.e7$=!1}if(p)if(s!=null)s.l()}, +l(){var s,r=this +r.fo$.aj(0,new A.aAh()) +s=r.bw$ +if(s!=null)s.l() +r.bw$=null +r.aD()}} +A.vn.prototype={ +oZ(){var s,r=this,q=A.r1(r.ga70(),!1,!1) +r.x1=q +r.gw5() +s=A.r1(r.ga72(),r.gkO(),!0) +r.xr=s +B.b.O(r.r,A.b([q,s],t.wi)) +r.a3m()}, +lv(a){var s=this +s.a3h(a) +if(s.CW.gaN(0)===B.Q&&!s.ay)s.b.WZ(s) +return!0}, +l(){var s,r,q +for(s=this.r,r=s.length,q=0;q"))}} +A.my.prototype={ +aw(){var s,r,q=this +q.aK() +s=A.b([],t.Eo) +r=q.a.c.p3 +if(r!=null)s.push(r) +r=q.a.c.p4 +if(r!=null)s.push(r) +q.e=new A.tg(s)}, +aH(a){this.b0(a) +this.U1()}, +be(){this.dc() +this.d=null +this.U1()}, +U1(){var s,r,q=this.a.c,p=q.k4 +p=p!=null?p:q.b.a.Q +q.b.a.toString +s=this.f +s.fr=p +s.fx=B.B9 +if(q.giw()&&this.a.c.grI()){r=q.b.y.gfV() +if(r!=null)r.D5(s)}}, +Pj(){this.T(new A.auL(this))}, +l(){this.f.l() +this.r.l() +this.aD()}, +gSY(){var s=this.a.c,r=s.p3 +if((r==null?null:r.gaN(0))!==B.b9){s=s.b +s=s==null?null:s.cy.a +s=s===!0}else s=!0 +return s}, +H(a){var s,r,q,p,o,n,m=this,l=null +m.f.sfH(!m.a.c.giw()) +s=m.a.c +r=s.giw() +q=m.a.c +if(!q.gJj()){q=q.kA$ +q=q!=null&&q.length!==0}else q=!0 +p=m.a.c.gkO() +o=m.a.c +o=o.gJj()||o.vu$>0 +n=m.a.c +return A.hC(s.d,new A.auP(m),new A.GM(r,q,o,p,s,new A.C7(n.p2,new A.vo(new A.e8(new A.auQ(m),l),n.to,l),l),l))}} +A.auL.prototype={ +$0(){this.a.d=null}, +$S:0} +A.auP.prototype={ +$2(a,b){var s=this.a.a.c.d.a +b.toString +return new A.o8(b,s,null)}, +$S:492} +A.auQ.prototype={ +$1(a){var s,r=null,q=A.ab([B.ml,new A.UK(a,new A.ba(A.b([],t.e),t.c))],t.u,t.od),p=this.a,o=p.e +o===$&&A.a() +s=p.d +if(s==null)s=p.d=new A.jC(new A.e8(new A.auN(p),r),p.a.c.ry) +return A.tH(q,new A.vu(p.r,B.af,B.QH,A.aL7(new A.jC(new A.nH(new A.auO(p),s,o,r),r),p.f,!0),r))}, +$S:493} +A.auO.prototype={ +$2(a,b){var s,r,q=this.a,p=q.a.c,o=p.p3 +o.toString +s=p.p4 +s.toString +r=p.b +r=r==null?null:r.cy +if(r==null)r=new A.ct(!1,$.aw()) +return p.a6Z(a,o,s,new A.nH(new A.auM(q),b,r,null))}, +$S:44} +A.auM.prototype={ +$2(a,b){var s=this.a,r=s.gSY() +s.f.sku(!r) +return A.kn(b,r,null)}, +$S:494} +A.auN.prototype={ +$1(a){var s,r=this.a.a.c,q=r.p3 +q.toString +s=r.p4 +s.toString +return r.Hv(a,q,s)}, +$S:17} +A.ee.prototype={ +T(a){var s,r=this.rx +if(r.gL()!=null){r=r.gL() +if(r.a.c.giw()&&!r.gSY()&&r.a.c.grI()){s=r.a.c.b.y.gfV() +if(s!=null)s.D5(r.f)}r.T(a)}else a.$0()}, +qH(a,b,c,d){return d}, +gj0(){return null}, +a6Z(a,b,c,d){var s,r,q=this +if(q.p1==null||c.gaN(0)===B.Q)return q.qH(a,b,c,d) +s=q.qH(a,b,A.kB(null),d) +r=q.p1 +r.toString +r=r.$5(a,b,c,q.goj(),s) +return r==null?s:r}, +oZ(){var s=this +s.N_() +s.p3=A.kB(A.eh.prototype.giV.call(s,0)) +s.p4=A.kB(A.eh.prototype.gD0.call(s))}, +oE(){var s=this,r=s.rx,q=r.gL()!=null +if(q)s.b.a.toString +if(q){q=s.b.y.gfV() +if(q!=null)q.D5(r.gL().f)}return s.a3O()}, +gZg(){var s,r=this +if(r.gvX())return!1 +s=r.kA$ +if(s!=null&&s.length!==0)return!1 +if(r.R8.length!==0||r.gkQ()===B.ej)return!1 +if(r.p3.gaN(0)!==B.a2)return!1 +return!0}, +sBA(a){var s,r=this +if(r.p2===a)return +r.T(new A.aeU(r,a)) +s=r.p3 +s.toString +s.saT(0,r.p2?B.dD:A.eh.prototype.giV.call(r,0)) +s=r.p4 +s.toString +s.saT(0,r.p2?B.ca:A.eh.prototype.gD0.call(r)) +r.op()}, +jn(){var s=0,r=A.H(t.oj),q,p=this,o,n,m +var $async$jn=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p.rx.gL() +o=A.a6(p.R8,t.Ev) +n=o.length +m=0 +case 3:if(!(m").b(a)&&s.uS(a)&&!J.d(a.gj0(),s.gj0()))s.p1=a.gj0() +else s.p1=null +s.a3L(a) +s.op()}, +qY(a){var s=this +if(A.n(s).i("ee<1>").b(a)&&s.uS(a)&&!J.d(a.gj0(),s.gj0()))s.p1=a.gj0() +else s.p1=null +s.a3N(a) +s.op() +s.afj()}, +op(){var s,r=this +r.a3d() +if($.bC.p2$!==B.ek){r.T(new A.aeT()) +s=r.x1 +s===$&&A.a() +s.cc()}s=r.xr +s===$&&A.a() +r.gw5() +s.sw5(!0)}, +gJ1(){return!1}, +a71(a){var s,r=null,q=this.Vn() +q=A.kn(q,!this.p3.gaN(0).glJ(),r) +s=this.gqF() +return s?A.bG(r,r,q,!1,r,r,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,B.Of,r,r,r,B.z,r):q}, +Vn(){var s,r,q,p,o,n=this,m=null +if(n.gqE()!=null&&(n.gqE().C()>>>24&255)!==0&&!n.p2){s=n.p3 +s.toString +r=n.gqE() +r=A.aC(0,r.C()>>>16&255,r.C()>>>8&255,r.C()&255) +q=n.gqE() +p=t.IC.i("fa") +o=A.aGv(!0,m,new A.al(t.o.a(s),new A.fa(new A.fl(B.bc),new A.fj(r,q),p),p.i("al")),n.gqF(),n.gzK(),m)}else o=A.aeP(!0,m,m,n.gqF(),m,n.gzK(),m) +return o}, +a73(a){var s=this,r=null,q=s.x2 +return q==null?s.x2=A.bG(r,r,new A.xg(s,s.rx,A.n(s).i("xg<1>")),!1,r,r,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,B.Oe,r,r,r,B.z,r):q}, +k(a){return"ModalRoute("+this.c.k(0)+", animation: "+A.k(this.ch)+")"}} +A.aeU.prototype={ +$0(){this.a.p2=this.b}, +$S:0} +A.aeS.prototype={ +$1(a){var s=this.a.ry,r=$.aa.an$.x.h(0,s) +r=r==null?null:r.e!=null +if(r!==!0)return +s=$.aa.an$.x.h(0,s) +if(s!=null)s.dK(this.b)}, +$S:6} +A.aeT.prototype={ +$0(){}, +$S:0} +A.Cm.prototype={ +gkO(){return!1}, +gw5(){return!0}, +goj(){return!1}} +A.vy.prototype={ +gqF(){return this.hP}, +gzK(){return this.r1}, +gqE(){return this.lz}, +gl_(a){return this.r2}, +Hv(a,b,c){var s=null +return A.bG(s,s,new A.zO(this.mW,this.jM.$3(a,b,c),s),!1,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,B.z,s)}, +qH(a,b,c,d){return this.oN.$4(a,b,c,d)}, +gJ1(){return this.mX}} +A.ti.prototype={ +jn(){var s=0,r=A.H(t.oj),q,p=this,o +var $async$jn=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:o=p.kA$ +if(o!=null&&o.length!==0){q=B.iq +s=1 +break}q=p.a3o() +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$jn,r)}, +gkQ(){var s=this.kA$ +if(s!=null&&s.length!==0)return B.iq +return A.cJ.prototype.gkQ.call(this)}, +lv(a){var s,r,q=this,p=q.kA$ +if(p!=null&&p.length!==0){s=p.pop() +s.b=null +s.awj() +r=s.c&&--q.vu$===0 +if(q.kA$.length===0||r)q.op() +return!1}q.a3M(a) +return!0}} +A.Ql.prototype={ +H(a){var s,r,q,p=this,o=A.bP(a,B.bK,t.w).w.r,n=p.r,m=Math.max(o.a,n.a),l=p.d,k=l?o.b:0 +k=Math.max(k,n.b) +s=Math.max(o.c,n.c) +r=p.f +q=r?o.d:0 +return new A.bo(new A.az(m,k,s,Math.max(q,n.d)),A.aIX(p.x,a,r,!0,!0,l),null)}} +A.Qx.prototype={ +ZU(){}, +Wx(a,b){if(b!=null)b.dK(new A.rB(null,a,b,0))}, +Wy(a,b,c){b.dK(A.aDW(b,null,null,a,c))}, +Ao(a,b,c){b.dK(new A.jx(null,c,0,a,b,0))}, +Ww(a,b){b.dK(new A.iE(null,a,b,0))}, +uL(){}, +l(){this.b=!0}, +k(a){return"#"+A.bi(this)}} +A.np.prototype={ +uL(){this.a.i1(0)}, +gl9(){return!1}, +gjU(){return!1}, +ghw(){return 0}} +A.a9T.prototype={ +gl9(){return!1}, +gjU(){return!1}, +ghw(){return 0}, +l(){this.c.$0() +this.xy()}} +A.ajn.prototype={ +a6z(a,b){var s,r,q=this +if(b==null)return a +if(a===0){s=!1 +if(q.d!=null)if(q.r==null){s=q.e +s=b.a-s.a>5e4}if(s)q.r=0 +return 0}else{s=q.r +if(s==null)return a +else{s+=a +q.r=s +r=q.d +r.toString +if(Math.abs(s)>r){q.r=null +s=Math.abs(a) +if(s>24)return a +else return Math.min(r/3,s)*J.e7(a)}else return 0}}}, +cm(a,b){var s,r,q,p,o,n=this +n.x=b +s=b.e +s.toString +r=s===0 +if(!r)n.e=b.c +q=b.c +p=!1 +if(n.f)if(r)if(q!=null){r=n.e +r=q.a-r.a>2e4}else r=!0 +else r=p +else r=p +if(r)n.f=!1 +o=n.a6z(s,q) +if(o===0)return +s=n.a +if(A.y5(s.w.a.c))o=-o +s.L7(o>0?B.lH:B.lI) +r=s.at +r.toString +s.DE(r-s.r.Hg(s,o))}, +WN(a,b){var s,r,q=this,p=b.d +p.toString +s=-p +if(A.y5(q.a.w.a.c))s=-s +q.x=b +if(q.f){p=q.c +r=Math.abs(s)>Math.abs(p)*0.5 +if(J.e7(s)===J.e7(p)&&r)s+=p}q.a.i1(s)}, +l(){this.x=null +this.b.$0()}, +k(a){return"#"+A.bi(this)}} +A.a6b.prototype={ +Wx(a,b){var s=t.uL.a(this.c.x) +if(b!=null)b.dK(new A.rB(s,a,b,0))}, +Wy(a,b,c){b.dK(A.aDW(b,null,t.zk.a(this.c.x),a,c))}, +Ao(a,b,c){b.dK(new A.jx(t.zk.a(this.c.x),c,0,a,b,0))}, +Ww(a,b){var s=this.c.x +b.dK(new A.iE(s instanceof A.fm?s:null,a,b,0))}, +gl9(){var s=this.c +return(s==null?null:s.w)!==B.bf}, +gjU(){return!0}, +ghw(){return 0}, +l(){this.c=null +this.xy()}, +k(a){return"#"+A.bi(this)+"("+A.k(this.c)+")"}} +A.KT.prototype={ +ZU(){var s=this.a,r=this.c +r===$&&A.a() +s.i1(r.ghw())}, +uL(){var s=this.a,r=this.c +r===$&&A.a() +s.i1(r.ghw())}, +Gc(){var s=this.c +s===$&&A.a() +s=s.x +s===$&&A.a() +if(!(Math.abs(this.a.DE(s))<1e-10)){s=this.a +s.iW(new A.np(s))}}, +Ga(){if(!this.b)this.a.i1(0)}, +Ao(a,b,c){var s=this.c +s===$&&A.a() +b.dK(new A.jx(null,c,s.ghw(),a,b,0))}, +gjU(){return!0}, +ghw(){var s=this.c +s===$&&A.a() +return s.ghw()}, +l(){var s=this.c +s===$&&A.a() +s.l() +this.xy()}, +k(a){var s=A.bi(this),r=this.c +r===$&&A.a() +return"#"+s+"("+r.k(0)+")"}, +gl9(){return this.d}} +A.My.prototype={ +Gc(){var s=this.d +s===$&&A.a() +s=s.x +s===$&&A.a() +if(!(Math.abs(this.a.DE(s))<1e-10)){s=this.a +s.iW(new A.np(s))}}, +Ga(){var s,r +if(!this.b){s=this.a +r=this.d +r===$&&A.a() +s.i1(r.ghw())}}, +Ao(a,b,c){var s=this.d +s===$&&A.a() +b.dK(new A.jx(null,c,s.ghw(),a,b,0))}, +gl9(){return!0}, +gjU(){return!0}, +ghw(){var s=this.d +s===$&&A.a() +return s.ghw()}, +l(){var s=this.c +s===$&&A.a() +s.f1(0) +s=this.d +s===$&&A.a() +s.l() +this.xy()}, +k(a){var s=A.bi(this),r=this.d +r===$&&A.a() +return"#"+s+"("+r.k(0)+")"}} +A.De.prototype={ +wz(a,b,c,d){var s,r=this +if(b.a==null){s=$.jy.oP$ +s===$&&A.a() +s=s.a.h(0,c)!=null||s.b.h(0,c)!=null}else s=!0 +if(s){r.b.wz(a,b,c,d) +return}s=r.a +if(s.gfR(0)==null)return +s=s.gfR(0) +s.toString +if(A.aWG(s)){$.bC.x6(new A.ajj(r,a,b,c,d)) +return}r.b.wz(a,b,c,d)}, +Bt(a,b){return this.b.Bt(a,b)}, +Bv(a,b){return this.b.Bv(a,b)}, +K6(a){return this.b.K6(a)}} +A.ajj.prototype={ +$1(a){var s=this +A.dx(new A.aji(s.a,s.b,s.c,s.d,s.e))}, +$S:6} +A.aji.prototype={ +$0(){var s=this +return s.a.wz(s.b,s.c,s.d,s.e)}, +$S:0} +A.Qy.prototype={ +aoa(a,b,c,d,e,f,g,h){return new A.aA9(this,h,d,e,f,b,a,c,g)}, +ao0(a,b){var s=null +return this.aoa(s,s,s,a,s,s,s,b)}, +ka(a){return A.aM()}, +goH(){return B.zW}, +nt(a){switch(this.ka(a).a){case 4:case 2:return B.lr +case 3:case 5:case 0:case 1:return B.e7}}, +gC_(){return A.cn([B.cJ,B.d9],t.T)}, +zQ(a,b,c){var s=null +switch(this.ka(a).a){case 3:case 4:case 5:return A.aWd(b,c.b,B.cG,s,s,0,A.ya(),B.F,s,s,s,s,B.eY,s) +case 0:case 1:case 2:return b}}, +zO(a,b,c){switch(this.ka(a).a){case 2:case 3:case 4:case 5:return b +case 0:case 1:return A.aI6(c.a,b,B.k)}}, +CB(a){switch(this.ka(a).a){case 2:return new A.ajk() +case 4:return new A.ajl() +case 0:case 1:case 3:case 5:return new A.ajm()}}, +py(a){switch(this.ka(a).a){case 2:return B.Cc +case 4:return B.Cd +case 0:case 1:case 3:case 5:return B.DO}}, +k(a){return"ScrollBehavior"}} +A.ajk.prototype={ +$1(a){return A.aUp(a.gcK(a))}, +$S:495} +A.ajl.prototype={ +$1(a){var s=a.gcK(a),r=t.av +return new A.v3(A.bz(20,null,!1,r),s,A.bz(20,null,!1,r))}, +$S:496} +A.ajm.prototype={ +$1(a){return new A.jS(a.gcK(a),A.bz(20,null,!1,t.av))}, +$S:210} +A.aA9.prototype={ +goH(){var s=this.r +return s==null?B.zW:s}, +gC_(){var s=this.x +return s==null?A.cn([B.cJ,B.d9],t.T):s}, +nt(a){var s=this.a.nt(a) +return s}, +zO(a,b,c){if(this.c)return this.a.zO(a,b,c) +return b}, +zQ(a,b,c){if(this.b)return this.a.zQ(a,b,c) +return b}, +py(a){var s=this.a.py(a) +return s}, +CB(a){return this.a.CB(a)}, +k(a){return"_WrappedScrollBehavior"}} +A.Df.prototype={ +ce(a){var s=A.r(this.f),r=A.r(a.f) +return s!==r}} +A.Dg.prototype={ +kq(a,b,c){return this.alY(a,b,c)}, +alY(a,b,c){var s=0,r=A.H(t.H),q=this,p,o,n +var $async$kq=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:n=A.b([],t.mo) +for(p=q.f,o=0;o#"+A.bi(this)+"("+B.b.bn(s,", ")+")"}} +A.alh.prototype={ +k(a){var s=A.b([],t.s) +this.dT(s) +return"#"+A.bi(this)+"("+B.b.bn(s,", ")+")"}, +dT(a){var s,r,q +try{s=this.b +if(s!=null)a.push("estimated child count: "+A.k(s))}catch(q){r=A.a1(q) +a.push("estimated child count: EXCEPTION ("+J.U(r).k(0)+")")}}} +A.Z4.prototype={} +A.Rb.prototype={ +apz(a){return null}, +Vl(a,b){var s,r,q,p,o,n,m,l,k=null +if(b>=0)p=b>=this.b +else p=!0 +if(p)return k +s=null +try{s=this.a.$2(a,b)}catch(o){r=A.a1(o) +q=A.aH(o) +n=new A.bO(r,q,"widgets library",A.br("building"),k,!1) +A.d6(n) +s=A.Ac(n)}if(s==null)return k +if(s.a!=null){p=s.a +p.toString +m=new A.Z4(p)}else m=k +p=s +s=new A.jC(p,k) +p=s +l=A.aMj(p,b) +if(l!=null)s=new A.NH(l,s,k) +p=s +s=new A.yF(new A.I6(p,k),k) +return new A.nE(s,m)}} +A.I6.prototype={ +ac(){return new A.I7(null)}} +A.I7.prototype={ +gpt(){return this.r}, +asg(a){return new A.ayj(this,a)}, +zg(a,b){var s,r=this +if(b){s=r.d;(s==null?r.d=A.aP(t.x9):s).E(0,a)}else{s=r.d +if(s!=null)s.F(0,a)}s=r.d +s=s==null?null:s.a!==0 +s=s===!0 +if(r.r!==s){r.r=s +r.nm()}}, +be(){var s,r,q,p=this +p.dc() +s=p.c +s.toString +r=A.Dp(s) +s=p.f +if(s!=r){if(s!=null){q=p.e +if(q!=null)new A.bs(q,A.n(q).i("bs<1>")).aj(0,s.grF(s))}p.f=r +if(r!=null){s=p.e +if(s!=null)new A.bs(s,A.n(s).i("bs<1>")).aj(0,r.gjF(r))}}}, +E(a,b){var s,r=this,q=r.asg(b) +b.Z(0,q) +s=r.e;(s==null?r.e=A.w(t.x9,t.M):s).m(0,b,q) +r.f.E(0,b) +if(b.gq(b).c!==B.cM)r.zg(b,!0)}, +F(a,b){var s=this.e +if(s==null)return +s=s.F(0,b) +s.toString +b.J(0,s) +this.f.F(0,b) +this.zg(b,!1)}, +l(){var s,r,q=this,p=q.e +if(p!=null){for(p=new A.eK(p,p.r,p.e);p.u();){s=p.d +q.f.F(0,s) +r=q.e.h(0,s) +r.toString +s.J(0,r)}q.e=null}q.d=null +q.aD()}, +H(a){var s=this +s.xp(a) +if(s.f==null)return s.a.c +return A.aJX(s.a.c,s)}} +A.ayj.prototype={ +$0(){var s=this.b,r=this.a +if(s.gq(s).c!==B.cM)r.zg(s,!0) +else r.zg(s,!1)}, +$S:0} +A.a1d.prototype={ +aw(){this.aK() +if(this.r)this.pZ()}, +dJ(){var s=this.fZ$ +if(s!=null){s.ak() +s.cY() +this.fZ$=null}this.mb()}} +A.QC.prototype={ +kw(){var s=this,r=null,q=s.gJl()?s.giz():r,p=s.gJl()?s.giy():r,o=s.gXE()?s.gdN():r,n=s.gXG()?s.gwN():r,m=s.ghi(),l=s.gmO(s) +return new A.a7Z(q,p,o,n,m,l)}, +gwj(){var s=this +return s.gdN()s.giy()}, +goM(){var s=this +return s.gwN()-A.A(s.giz()-s.gdN(),0,s.gwN())-A.A(s.gdN()-s.giy(),0,s.gwN())}} +A.a7Z.prototype={ +giz(){var s=this.a +s.toString +return s}, +giy(){var s=this.b +s.toString +return s}, +gJl(){return this.a!=null&&this.b!=null}, +gdN(){var s=this.c +s.toString +return s}, +gXE(){return this.c!=null}, +gwN(){var s=this.d +s.toString +return s}, +gXG(){return this.d!=null}, +k(a){var s=this +return"FixedScrollMetrics("+B.d.ah(Math.max(s.gdN()-s.giz(),0),1)+"..["+B.d.ah(s.goM(),1)+"].."+B.d.ah(Math.max(s.giy()-s.gdN(),0),1)+")"}, +ghi(){return this.e}, +gmO(a){return this.f}} +A.Vm.prototype={} +A.fU.prototype={} +A.Sy.prototype={ +Z_(a){if(t.rS.b(a))++a.hm$ +return!1}} +A.fN.prototype={ +dT(a){this.a4J(a) +a.push(this.a.k(0))}} +A.rB.prototype={ +dT(a){var s +this.tp(a) +s=this.d +if(s!=null)a.push(s.k(0))}} +A.kF.prototype={ +dT(a){var s +this.tp(a) +a.push("scrollDelta: "+A.k(this.e)) +s=this.d +if(s!=null)a.push(s.k(0))}} +A.jx.prototype={ +dT(a){var s,r=this +r.tp(a) +a.push("overscroll: "+B.d.ah(r.e,1)) +a.push("velocity: "+B.d.ah(r.f,1)) +s=r.d +if(s!=null)a.push(s.k(0))}} +A.iE.prototype={ +dT(a){var s +this.tp(a) +s=this.d +if(s!=null)a.push(s.k(0))}} +A.Sr.prototype={ +dT(a){this.tp(a) +a.push("direction: "+this.d.k(0))}} +A.HW.prototype={ +dT(a){var s,r +this.Dw(a) +s=this.hm$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.HV.prototype={ +ce(a){return this.f!==a.f}} +A.mx.prototype={ +asf(a,b){return this.a.$1(b)}} +A.Di.prototype={ +ac(){return new A.QD(new A.qB(t.y4))}} +A.QD.prototype={ +J(a,b){var s,r,q=this.d +q.toString +q=A.aYK(q,q.$ti.c) +s=q.$ti.c +while(q.u()){r=q.c +if(r==null)r=s.a(r) +if(J.d(r.a,b)){q=r.j5$ +q.toString +q.TG(A.n(r).i("ix.E").a(r)) +return}}}, +Rf(a){var s,r,q,p,o,n,m,l,k=this.d +if(k.b===0)return +p=A.a6(k,t.Sx) +for(k=p.length,o=0;oMath.max(Math.abs(s.a),Math.abs(s.b))}return s.Zy(a,b,c)}, +uK(a,b){var s=this.a +s=s==null?null:s.uK(a,b) +return s==null?0:s}, +zE(a,b,c,d){var s=this.a +if(s==null){s=b.c +s.toString +return s}return s.zE(a,b,c,d)}, +A4(a,b){var s=this.a +return s==null?null:s.A4(a,b)}, +gtf(){var s=this.a +s=s==null?null:s.gtf() +return s==null?$.aOQ():s}, +Cr(a){var s=this.a +s=s==null?null:s.Cr(a) +if(s==null){s=a.w.f +s===$&&A.a() +s=new A.EF(1/s,1/(0.05*s))}return s}, +gK_(){var s=this.a +s=s==null?null:s.gK_() +return s==null?18:s}, +gBx(){var s=this.a +s=s==null?null:s.gBx() +return s==null?50:s}, +gw7(){var s=this.a +s=s==null?null:s.gw7() +return s==null?8000:s}, +HD(a){var s=this.a +s=s==null?null:s.HD(a) +return s==null?0:s}, +gIr(){var s=this.a +return s==null?null:s.gIr()}, +goi(){return!0}, +gHa(){return!0}, +k(a){var s=this.a +if(s==null)return"ScrollPhysics" +return"ScrollPhysics -> "+s.k(0)}} +A.Pw.prototype={ +mE(a){return new A.Pw(this.om(a))}, +zE(a,b,c,d){var s,r,q,p,o,n,m=d===0,l=c.a +l.toString +s=b.a +s.toString +if(l===s){r=c.b +r.toString +q=b.b +q.toString +q=r===q +r=q}else r=!1 +p=r?!1:m +r=c.c +r.toString +q=b.c +q.toString +if(r!==q){q=!1 +if(isFinite(l)){o=c.b +o.toString +if(isFinite(o))if(isFinite(s)){q=b.b +q.toString +q=isFinite(q)}}if(q)m=!1 +p=!1}q=ro}else o=!0 +if(o)m=!1 +if(p){if(q&&s>l)return s-(l-r) +l=c.b +l.toString +if(r>l){q=b.b +q.toString +q=q0&&b<0))n=p>0&&b>0 +else n=!0 +s=a.ax +if(n){s.toString +m=this.Xd((o-Math.abs(b))/s)}else{s.toString +m=this.Xd(o/s)}l=J.e7(b) +if(n&&this.b===B.zz)return l*Math.abs(b) +return l*A.aRG(o,Math.abs(b),m)}, +uK(a,b){return 0}, +A4(a,b){var s,r,q,p,o,n,m,l=this.Cr(a) +if(Math.abs(b)>=l.c||a.gwj()){s=this.gtf() +r=a.at +r.toString +q=a.z +q.toString +p=a.Q +p.toString +switch(this.b.a){case 1:o=1400 +break +case 0:o=0 +break +default:o=null}n=new A.a3l(q,p,s,l) +if(rp){n.f=new A.rA(p,A.Ip(s,r-p,b),B.c7) +n.r=-1/0}else{r=n.e=A.aU8(0.135,r,b,o) +m=r.gAS() +if(b>0&&m>p){q=r.a_7(p) +n.r=q +n.f=new A.rA(p,A.Ip(s,p-p,Math.min(r.fn(0,q),5000)),B.c7)}else if(b<0&&mr)q=r +else q=o +r=a.z +r.toString +if(s0){r=a.at +r.toString +p=a.Q +p.toString +p=r>=p +r=p}else r=!1 +if(r)return o +if(b<0){r=a.at +r.toString +p=a.z +p.toString +p=r<=p +r=p}else r=!1 +if(r)return o +r=a.at +r.toString +r=new A.a4m(r,b,n) +p=$.aC6() +s=p*0.35*Math.pow(s/2223.8657884799995,1/(p-1)) +r.e=s +r.f=b*s/p +return r}} +A.Ku.prototype={ +mE(a){return new A.Ku(this.om(a))}, +m5(a){return!0}} +A.OF.prototype={ +mE(a){return new A.OF(this.om(a))}, +gHa(){return!1}, +goi(){return!1}} +A.rz.prototype={ +K(){return"ScrollPositionAlignmentPolicy."+this.b}} +A.m2.prototype={ +a5W(a,b,c,d,e){var s,r,q,p=this +if(d!=null)p.qu(d) +if(p.at==null){s=p.w +r=s.c +r.toString +r=A.aJi(r) +if(r==null)q=null +else{s=s.c +s.toString +q=r.auw(s)}if(q!=null)p.at=q}}, +giz(){var s=this.z +s.toString +return s}, +giy(){var s=this.Q +s.toString +return s}, +gJl(){return this.z!=null&&this.Q!=null}, +gdN(){var s=this.at +s.toString +return s}, +gXE(){return this.at!=null}, +gwN(){var s=this.ax +s.toString +return s}, +gXG(){return this.ax!=null}, +qu(a){var s=this,r=a.z +if(r!=null&&a.Q!=null){s.z=r +r=a.Q +r.toString +s.Q=r}r=a.at +if(r!=null)s.at=r +r=a.ax +if(r!=null)s.ax=r +s.fr=a.fr +a.fr=null +if(A.r(a)!==A.r(s))s.fr.ZU() +s.w.D7(s.fr.gl9()) +s.dy.sq(0,s.fr.gjU())}, +gmO(a){var s=this.w.f +s===$&&A.a() +return s}, +a0O(a){var s,r,q,p=this,o=p.at +o.toString +if(a!==o){s=p.r.uK(p,a) +o=p.at +o.toString +r=a-s +p.at=r +if(r!==o){if(p.gwj())p.w.D7(!1) +p.GN() +p.Mk() +r=p.at +r.toString +p.Im(r-o)}if(Math.abs(s)>1e-10){o=p.fr +o.toString +r=p.kw() +q=$.aa.an$.x.h(0,p.w.Q) +q.toString +o.Ao(r,q,s) +return s}}return 0}, +I0(a){var s=this.at +s.toString +this.at=s+a +this.ch=!0}, +Xa(a){var s=this,r=s.at +r.toString +s.as=a-r +s.at=a +s.GN() +s.Mk() +$.bC.k4$.push(new A.ajr(s))}, +uM(a){if(this.ax!==a){this.ax=a +this.ch=!0}return!0}, +qz(a,b){var s,r,q=this +if(!A.JT(q.z,a,0.001)||!A.JT(q.Q,b,0.001)||q.ch||q.db!==A.b8(q.ghi())){q.z=a +q.Q=b +q.db=A.b8(q.ghi()) +s=q.ay +r=s?q.kw():null +q.ch=!1 +q.CW=!0 +if(s){s=q.cx +s.toString +r.toString +s=!q.aob(s,r)}else s=!1 +if(s)return!1 +q.ay=!0}if(q.CW){q.a3s() +q.w.a0G(q.r.m5(q)) +q.CW=!1}r=q.kw() +s=q.cx +if(s!=null)s=!(Math.max(r.gdN()-r.giz(),0)===Math.max(s.gdN()-s.giz(),0)&&r.goM()===s.goM()&&Math.max(r.giy()-r.gdN(),0)===Math.max(s.giy()-s.gdN(),0)&&r.e===s.e) +else s=!0 +if(s){if(!q.cy){A.dx(q.gaoK()) +q.cy=!0}q.cx=q.kw()}return!0}, +aob(a,b){var s=this,r=s.r.zE(s.fr.gjU(),b,a,s.fr.ghw()),q=s.at +q.toString +if(r!==q){s.at=r +return!1}return!0}, +uL(){this.fr.uL() +this.GN()}, +GN(){var s,r,q,p,o,n,m=this,l=m.w +switch(l.a.c.a){case 0:s=B.PH +break +case 2:s=B.PC +break +case 3:s=B.Pw +break +case 1:s=B.Pv +break +default:s=null}r=s.a +q=null +p=s.b +q=p +s=A.aP(t._S) +o=m.at +o.toString +n=m.z +n.toString +if(o>n)s.E(0,q) +o=m.at +o.toString +n=m.Q +n.toString +if(on)k=n +break +default:k=null}n=p.at +n.toString +if(k===n){s=1 +break}if(e.a===0){p.eD(k) +s=1 +break}q=p.kq(k,d,e) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$ID,r)}, +wc(a,b,c,d){var s,r=this.z +r.toString +s=this.Q +s.toString +b=A.A(b,r,s) +return this.a3Q(0,b,c,d)}, +iW(a){var s,r,q=this,p=q.fr +if(p!=null){s=p.gl9() +r=q.fr.gjU() +if(r&&!a.gjU())q.Ih() +q.fr.l()}else{r=!1 +s=!1}q.fr=a +if(s!==a.gl9())q.w.D7(q.fr.gl9()) +q.dy.sq(0,q.fr.gjU()) +if(!r&&q.fr.gjU())q.Ik()}, +Ik(){var s=this.fr +s.toString +s.Wx(this.kw(),$.aa.an$.x.h(0,this.w.Q))}, +Im(a){var s,r,q=this.fr +q.toString +s=this.kw() +r=$.aa.an$.x.h(0,this.w.Q) +r.toString +q.Wy(s,r,a)}, +Ih(){var s,r,q,p=this,o=p.fr +o.toString +s=p.kw() +r=p.w +q=$.aa.an$.x.h(0,r.Q) +q.toString +o.Ww(s,q) +q=p.at +q.toString +r.r.sq(0,q) +q=$.e0.aE$ +q===$&&A.a() +q.apF() +o=r.c +o.toString +o=A.aJi(o) +if(o!=null){s=r.c +s.toString +r=p.at +r.toString +if(o.a==null)o.a=A.w(t.K,t.z) +s=o.Nm(s) +if(s.length!==0)o.a.m(0,new A.It(s),r)}}, +aoL(){var s,r,q +this.cy=!1 +s=this.w.Q +if($.aa.an$.x.h(0,s)!=null){r=this.kw() +q=$.aa.an$.x.h(0,s) +q.toString +s=$.aa.an$.x.h(0,s) +if(s!=null)s.dK(new A.rx(r,q,0))}}, +l(){var s=this,r=s.fr +if(r!=null)r.l() +s.fr=null +r=s.dy +r.P$=$.aw() +r.M$=0 +s.cY()}, +dT(a){var s,r,q=this +q.a3P(a) +s=q.z +s=s==null?null:B.d.ah(s,1) +r=q.Q +r=r==null?null:B.d.ah(r,1) +a.push("range: "+A.k(s)+".."+A.k(r)) +r=q.ax +a.push("viewport: "+A.k(r==null?null:B.d.ah(r,1)))}} +A.ajr.prototype={ +$1(a){this.a.as=0}, +$S:6} +A.rx.prototype={ +Vb(){return A.aDW(this.b,this.hm$,null,this.a,null)}, +dT(a){this.a4I(a) +a.push(this.a.k(0))}} +A.HU.prototype={ +dT(a){var s,r +this.Dw(a) +s=this.hm$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.Z8.prototype={} +A.Dj.prototype={ +ghi(){return this.w.a.c}, +qu(a){var s,r=this +r.a3r(a) +r.fr.a=r +r.k4=a.k4 +s=a.ok +if(s!=null){r.ok=s +s.a=r +a.ok=null}}, +iW(a){var s,r=this +r.k3=0 +r.a3t(a) +s=r.ok +if(s!=null)s.l() +r.ok=null +if(!r.fr.gjU())r.L7(B.ir)}, +i1(a){var s,r,q=this,p=q.r.A4(q,a) +if(p!=null){if(!q.gwj()){s=q.fr +s=s==null?null:s.gl9() +s=s!==!1}else s=!1 +s=new A.KT(s,q) +r=A.aGA(null,0,q.w) +r.bk() +r.cF$.E(0,s.gGb()) +r.Hb(p).a.a.i_(s.gG9()) +s.c=r +q.iW(s)}else q.iW(new A.np(q))}, +L7(a){var s,r,q,p=this +if(p.k4===a)return +p.k4=a +s=p.kw() +r=p.w.Q +q=$.aa.an$.x.h(0,r) +q.toString +r=$.aa.an$.x.h(0,r) +if(r!=null)r.dK(new A.Sr(a,s,q,0))}, +kq(a,b,c){var s,r,q=this,p=q.at +p.toString +if(A.JT(a,p,q.r.Cr(q).a)){q.eD(a) +return A.dc(null,t.H)}s=new A.My(q) +r=new A.au($.aq,t.W) +s.c=new A.bB(r,t.Q) +p=A.aGA("DrivenScrollActivity",p,q.w) +p.bk() +p.cF$.E(0,s.gGb()) +p.z=B.av +p.i8(a,b,c).a.a.i_(s.gG9()) +s.d!==$&&A.bw() +s.d=p +q.iW(s) +return r}, +eD(a){var s,r,q=this +q.iW(new A.np(q)) +s=q.at +s.toString +if(s!==a){q.Xa(a) +q.Ik() +r=q.at +r.toString +q.Im(r-s) +q.Ih()}q.i1(0)}, +Ku(a){var s,r,q,p,o=this +if(a===0){o.i1(0) +return}s=o.at +s.toString +r=o.z +r.toString +r=Math.max(s+a,r) +q=o.Q +q.toString +p=Math.min(r,q) +if(p!==s){o.iW(new A.np(o)) +o.L7(-a>0?B.lH:B.lI) +s=o.at +s.toString +o.dy.sq(0,!0) +o.Xa(p) +o.Ik() +r=o.at +r.toString +o.Im(r-s) +o.Ih() +o.i1(0)}}, +Bg(a){var s=this,r=s.fr.ghw(),q=new A.a9T(a,s) +s.iW(q) +s.k3=r +return q}, +WD(a,b){var s,r,q=this,p=q.r,o=p.HD(q.k3) +p=p.gIr() +s=p==null?null:0 +r=new A.ajn(q,b,o,p,a.c,o!==0,s,a.d,a) +q.iW(new A.a6b(r,q)) +return q.ok=r}, +l(){var s=this.ok +if(s!=null)s.l() +this.ok=null +this.a3v()}} +A.a3l.prototype={ +Gh(a){var s,r=this,q=r.r +q===$&&A.a() +if(a>q){if(!isFinite(q))q=0 +r.w=q +q=r.f +q===$&&A.a() +s=q}else{r.w=0 +q=r.e +q===$&&A.a() +s=q}s.a=r.a +return s}, +eG(a,b){return this.Gh(b).eG(0,b-this.w)}, +fn(a,b){return this.Gh(b).fn(0,b-this.w)}, +lH(a){return this.Gh(a).lH(a-this.w)}, +k(a){return"BouncingScrollSimulation(leadingExtent: "+A.k(this.b)+", trailingExtent: "+A.k(this.c)+")"}} +A.a4m.prototype={ +eG(a,b){var s,r=this.e +r===$&&A.a() +s=A.A(b/r,0,1) +r=this.f +r===$&&A.a() +return this.b+r*(1-Math.pow(1-s,$.aC6()))}, +fn(a,b){var s=this.e +s===$&&A.a() +return this.c*Math.pow(1-A.A(b/s,0,1),$.aC6()-1)}, +lH(a){var s=this.e +s===$&&A.a() +return a>=s}} +A.QE.prototype={ +amr(a,b,c,d){var s=this +if(s.x)return new A.QY(c,b,B.Aq,s.CW,d,null) +return new A.EX(c,0,b,null,s.Q,B.Aq,s.CW,d,null)}, +H(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.Vm(a),f=i.db +if(f==null){s=A.bW(a,h) +if(s!=null){r=s.r +q=r.anS(0,0) +p=r.anX(0,0) +r=i.c===B.af +f=r?p:q +g=A.v7(g,s.qP(r?q:p))}}o=A.b([f!=null?new A.Rh(f,g,h):g],t.p) +r=i.c +n=A.aNa(a,r,!1) +m=i.f +m=i.e==null&&A.aJr(a,r) +l=m?A.Pn(a):i.e +k=A.aDX(n,i.CW,l,i.ax,!1,i.cx,h,i.r,i.ch,h,i.as,new A.ajs(i,n,o)) +j=m&&l!=null?A.aJq(k):k +A.od(a) +return j}} +A.ajs.prototype={ +$2(a,b){return this.a.amr(a,b,this.b,this.c)}, +$S:500} +A.L5.prototype={} +A.O9.prototype={ +Vm(a){return new A.Rg(this.x1,null)}} +A.Nb.prototype={ +Vm(a){return new A.Rd(this.rx,this.ry,null)}} +A.ay3.prototype={ +$2(a,b){if(!a.a)a.J(0,b)}, +$S:50} +A.Dk.prototype={ +ac(){var s=null,r=t.A +return new A.rC(new A.YS($.aw()),new A.bu(s,r),new A.bu(s,t.hA),new A.bu(s,r),B.vy,s,A.w(t.yb,t.M),s,!0,s,s,s)}, +avT(a,b){return this.f.$2(a,b)}} +A.ajy.prototype={ +$1(a){return null}, +$S:501} +A.HX.prototype={ +ce(a){return this.r!==a.r}} +A.rC.prototype={ +gWl(){var s,r=this +switch(r.a.c.a){case 0:s=r.d.at +s.toString +s=new A.j(0,-s) +break +case 2:s=r.d.at +s.toString +s=new A.j(0,s) +break +case 3:s=r.d.at +s.toString +s=new A.j(-s,0) +break +case 1:s=r.d.at +s.toString +s=new A.j(s,0) +break +default:s=null}return s}, +gtI(){var s=this.a.d +if(s==null){s=this.x +s.toString}return s}, +ged(){return this.a.Q}, +Ud(){var s,r,q,p=this,o=null,n=p.a.as +if(n==null){n=p.c +n.toString +n=A.od(n)}p.w=n +n=p.a +s=n.e +if(s==null){n=n.as +if(n==null)s=o +else{r=p.c +r.toString +r=n.py(r) +s=r}}n=p.w +r=p.c +r.toString +r=n.py(r) +p.e=r +n=s==null?o:s.mE(r) +p.e=n==null?p.e:n +q=p.d +if(q!=null){p.gtI().vd(0,q) +A.dx(q.gcQ())}p.gtI() +n=p.e +n.toString +r=$.aw() +r=new A.Dj(B.ir,n,p,!0,o,new A.ct(!1,r),r) +r.a5W(p,o,!0,q,n) +n=r.at +if(n==null)r.at=0 +if(r.fr==null)r.iW(new A.np(r)) +p.d=r +p.gtI().av(r)}, +hs(a,b){var s,r,q,p=this.r +this.kU(p,"offset") +s=p.y +r=s==null +if((r?A.n(p).i("bJ.T").a(s):s)!=null){q=this.d +q.toString +p=r?A.n(p).i("bJ.T").a(s):s +p.toString +if(b)q.at=p +else q.eD(p)}}, +aw(){if(this.a.d==null)this.x=A.Qz() +this.aK()}, +be(){var s,r=this,q=r.c +q.toString +q=A.bW(q,B.mG) +r.y=q==null?null:q.cx +q=r.c +q.toString +q=A.bW(q,B.cS) +q=q==null?null:q.b +if(q==null){q=r.c +q.toString +A.ml(q).toString +q=$.dy() +s=q.d +q=s==null?q.gcu():s}r.f=q +r.Ud() +r.a4L()}, +ajz(a){var s,r,q=this,p=null,o=q.a.as,n=o==null,m=a.as,l=m==null +if(n!==l)return!0 +if(!n)if(!l){n=!0 +if(A.r(m.a)===A.r(o.a))if(m.b===o.b)if(m.c===o.c)if(A.yb(m.goH(),o.goH())){o=A.yb(m.gC_(),o.gC_()) +o=!o}else o=n +else o=n +else o=n +else o=n}else o=!1 +else o=!1 +if(o)return!0 +o=q.a +s=o.e +if(s==null){o=o.as +if(o==null)s=p +else{n=q.c +n.toString +n=o.py(n) +s=n}}r=a.e +if(r==null)if(l)r=p +else{o=q.c +o.toString +o=m.py(o) +r=o}do{o=s==null +n=o?p:A.r(s) +m=r==null +if(n!=(m?p:A.r(r)))return!0 +s=o?p:s.a +r=m?p:r.a}while(s!=null||r!=null) +o=q.a.d +o=o==null?p:A.r(o) +n=a.d +return o!=(n==null?p:A.r(n))}, +aH(a){var s,r,q=this +q.a4M(a) +s=a.d +if(q.a.d!=s){if(s==null){s=q.x +s.toString +r=q.d +r.toString +s.vd(0,r) +q.x.l() +q.x=null}else{r=q.d +r.toString +s.vd(0,r) +if(q.a.d==null)q.x=A.Qz()}s=q.gtI() +r=q.d +r.toString +s.av(r)}if(q.ajz(a))q.Ud()}, +l(){var s,r=this,q=r.a.d +if(q!=null){s=r.d +s.toString +q.vd(0,s)}else{q=r.x +if(q!=null){s=r.d +s.toString +q.vd(0,s)}q=r.x +if(q!=null)q.l()}r.d.l() +r.r.l() +r.a4N()}, +a0G(a){var s,r,q=this +if(a===q.ay)s=!a||A.b8(q.a.c)===q.ch +else s=!1 +if(s)return +if(!a){q.at=B.vy +q.Su()}else{switch(A.b8(q.a.c).a){case 1:q.at=A.ab([B.iX,new A.cr(new A.aju(q),new A.ajv(q),t.ok)],t.u,t.xR) +break +case 0:q.at=A.ab([B.mo,new A.cr(new A.ajw(q),new A.ajx(q),t.Uv)],t.u,t.xR) +break}a=!0}q.ay=a +q.ch=A.b8(q.a.c) +s=q.Q +if(s.gL()!=null){s=s.gL() +s.Gn(q.at) +if(!s.a.f){r=s.c.gU() +r.toString +t.Wx.a(r) +s.e.am6(r)}}}, +D7(a){var s,r=this +if(r.ax===a)return +r.ax=a +s=r.as +if($.aa.an$.x.h(0,s)!=null){s=$.aa.an$.x.h(0,s).gU() +s.toString +t.f1.a(s).sXO(r.ax)}}, +abt(a){this.cx=this.d.Bg(this.ga8W())}, +aiW(a){var s=this +s.CW=s.d.WD(a,s.ga8U()) +if(s.cx!=null)s.cx=null}, +aiX(a){var s=this.CW +if(s!=null)s.cm(0,a)}, +aiV(a){var s=this.CW +if(s!=null)s.WN(0,a)}, +Su(){if($.aa.an$.x.h(0,this.Q)==null)return +var s=this.cx +if(s!=null)s.a.i1(0) +s=this.CW +if(s!=null)s.a.i1(0)}, +a8X(){this.cx=null}, +a8V(){this.CW=null}, +Sz(a){var s,r=this.d,q=r.at +q.toString +s=r.z +s.toString +s=Math.max(q+a,s) +r=r.Q +r.toString +return Math.min(s,r)}, +Sy(a){var s,r,q,p=$.e0.bf$ +p===$&&A.a() +p=p.a +s=A.n(p).i("bf<2>") +r=A.eu(new A.bf(p,s),s.i("o.E")) +p=this.w +p===$&&A.a() +p=p.gC_() +q=r.jG(0,p.glu(p))&&a.gcK(a)===B.bG +p=this.a +switch((q?A.b1A(A.b8(p.c)):A.b8(p.c)).a){case 0:p=a.gt8().a +break +case 1:p=a.gt8().b +break +default:p=null}return A.y5(this.a.c)?-p:p}, +ahR(a){var s,r,q,p,o=this +if(t.Mj.b(a)&&o.d!=null){s=o.e +if(s!=null){r=o.d +r.toString +r=!s.m5(r) +s=r}else s=!1 +if(s){a.ng(!0) +return}q=o.Sy(a) +p=o.Sz(q) +if(q!==0){s=o.d.at +s.toString +s=p!==s}else s=!1 +if(s){$.f1.au$.ZC(0,a,o.gaiY()) +return}a.ng(!0)}else if(t.xb.b(a))o.d.Ku(0)}, +aiZ(a){var s,r=this,q=r.Sy(a),p=r.Sz(q) +if(q!==0){s=r.d.at +s.toString +s=p!==s}else s=!1 +if(s)r.d.Ku(q)}, +ad3(a){var s,r +if(a.hm$===0){s=$.aa.an$.x.h(0,this.z) +r=s==null?null:s.gU() +if(r!=null)r.aY()}return!1}, +H(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.d +i.toString +s=k.at +r=k.a +q=r.x +p=r.w +o=k.ax +n=new A.HX(k,i,A.Bo(B.bY,new A.iB(A.bG(j,j,A.kn(r.avT(a,i),o,k.as),!1,j,j,!p,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,B.z,j),s,q,p,k.Q),j,j,j,k.gahQ(),j),j) +i=k.a +if(!i.w){i=k.d +i.toString +s=k.e.goi() +r=k.a +q=A.b8(r.c) +n=new A.dd(k.gad2(),new A.Z9(i,s,r.y,q,n,k.z),j,t.ji) +i=r}s=k.gtI() +m=new A.QF(i.c,s,i.at) +i=k.w +i===$&&A.a() +n=i.zQ(a,i.zO(a,n,m),m) +l=A.Dp(a) +if(l!=null){i=k.d +i.toString +n=new A.HZ(k,i,n,l,j)}return n}} +A.aju.prototype={ +$0(){var s=this.a.w +s===$&&A.a() +return A.aEh(null,s.goH())}, +$S:114} +A.ajv.prototype={ +$1(a){var s,r,q=this.a +a.ay=q.gQ2() +a.ch=q.gSw() +a.CW=q.gSx() +a.cx=q.gSv() +a.cy=q.gSt() +s=q.e +r=s==null +a.db=r?null:s.gK_() +a.dx=r?null:s.gBx() +s=q.e +a.dy=s==null?null:s.gw7() +s=q.w +s===$&&A.a() +r=q.c +r.toString +a.fx=s.CB(r) +a.at=q.a.z +r=q.w +s=q.c +s.toString +a.ax=r.nt(s) +a.b=q.y +a.c=q.w.goH()}, +$S:113} +A.ajw.prototype={ +$0(){var s=this.a.w +s===$&&A.a() +return A.aDm(null,s.goH())}, +$S:199} +A.ajx.prototype={ +$1(a){var s,r,q=this.a +a.ay=q.gQ2() +a.ch=q.gSw() +a.CW=q.gSx() +a.cx=q.gSv() +a.cy=q.gSt() +s=q.e +r=s==null +a.db=r?null:s.gK_() +a.dx=r?null:s.gBx() +s=q.e +a.dy=s==null?null:s.gw7() +s=q.w +s===$&&A.a() +r=q.c +r.toString +a.fx=s.CB(r) +a.at=q.a.z +r=q.w +s=q.c +s.toString +a.ax=r.nt(s) +a.b=q.y +a.c=q.w.goH()}, +$S:200} +A.HZ.prototype={ +ac(){return new A.Za()}} +A.Za.prototype={ +aw(){var s,r,q,p +this.aK() +s=this.a +r=s.c +s=s.d +q=t.x9 +p=t.i +q=new A.HY(r,new A.a6h(r,30),s,A.w(q,p),A.w(q,p),A.b([],t.D1),A.aP(q),B.zI,$.aw()) +s.Z(0,q.gSl()) +this.d=q}, +aH(a){var s,r +this.b0(a) +s=this.a.d +if(a.d!==s){r=this.d +r===$&&A.a() +r.sby(0,s)}}, +l(){var s=this.d +s===$&&A.a() +s.l() +this.aD()}, +H(a){var s=this.a,r=s.f,q=this.d +q===$&&A.a() +return new A.rE(r,s.e,q,null)}} +A.HY.prototype={ +sby(a,b){var s,r=this.id +if(b===r)return +s=this.gSl() +r.J(0,s) +this.id=b +b.Z(0,s)}, +aiJ(){if(this.fr)return +this.fr=!0 +$.bC.k4$.push(new A.ay0(this))}, +Ai(){var s=this,r=s.b,q=A.qA(r,A.a2(r).c) +r=s.k1 +r.k0(r,new A.ay1(q)) +r=s.k2 +r.k0(r,new A.ay2(q)) +s.Mz()}, +B_(a){var s=this +s.k1.a5(0) +s.k2.a5(0) +s.fy=s.fx=null +s.go=!1 +return s.MB(a)}, +kG(a){var s,r,q,p,o,n,m=this +if(m.fy==null&&m.fx==null)m.go=m.PV(a.b) +s=A.a1N(m.dx) +r=a.b +q=a.c +p=-s.a +o=-s.b +if(a.a===B.cL){r=m.fy=m.QD(r) +a=A.ajA(new A.j(r.a+p,r.b+o),q)}else{r=m.fx=m.QD(r) +a=A.ajB(new A.j(r.a+p,r.b+o),q)}n=m.ME(a) +if(n===B.lM){m.dy.e=!1 +return n}if(m.go){r=m.dy +r.a1i(A.aJE(a.b,0,0)) +if(r.e)return B.lM}return n}, +QD(a){var s,r,q,p=this.dx,o=p.c.gU() +o.toString +t.x.a(o) +s=o.dQ(a) +if(!this.go){r=s.b +if(r<0||s.a<0)return A.bj(o.aM(0,null),B.i) +if(r>o.gt(0).b||s.a>o.gt(0).a)return B.O8}q=A.a1N(p) +return A.bj(o.aM(0,null),new A.j(s.a+q.a,s.b+q.b))}, +Gz(a,b){var s,r,q,p=this,o=p.dx,n=A.a1N(o) +o=o.c.gU() +o.toString +t.x.a(o) +s=o.aM(0,null) +r=p.d +if(r!==-1)q=p.fx==null||b +else q=!1 +if(q){r=p.b[r] +r=r.gq(r).a +r.toString +p.fx=A.bj(s,A.bj(p.b[p.d].aM(0,o),r.a.V(0,new A.j(0,-r.b/2))).V(0,n))}r=p.c +if(r!==-1){r=p.b[r] +r=r.gq(r).b +r.toString +p.fy=A.bj(s,A.bj(p.b[p.c].aM(0,o),r.a.V(0,new A.j(0,-r.b/2))).V(0,n))}}, +TZ(){return this.Gz(!0,!0)}, +B4(a){var s=this.MC(a) +if(this.d!==-1)this.TZ() +return s}, +B6(a){var s,r=this +r.go=r.PV(a.gLH()) +s=r.MD(a) +r.TZ() +return s}, +J5(a){var s=this,r=s.a2t(a),q=a.gjT() +s.Gz(a.gjT(),!q) +if(s.go)s.QS(a.gjT()) +return r}, +J4(a){var s=this,r=s.a2s(a),q=a.gjT() +s.Gz(a.gjT(),!q) +if(s.go)s.QS(a.gjT()) +return r}, +QS(a){var s,r,q,p,o,n,m,l,k=this,j=k.b +if(a){s=j[k.c] +r=s.gq(s).b +q=s.gq(s).b.b}else{s=j[k.d] +r=s.gq(s).a +j=s.gq(s).a +q=j==null?null:j.b}if(q==null||r==null)return +j=k.dx +p=j.c.gU() +p.toString +t.x.a(p) +o=A.bj(s.aM(0,p),r.a) +n=p.gt(0).a +p=p.gt(0).b +switch(j.a.c.a){case 0:m=o.b +l=m-q +if(m>=p&&l<=0)return +if(m>p){j=k.id +n=j.at +n.toString +j.eD(n+p-m) +return}if(l<0){j=k.id +p=j.at +p.toString +j.eD(p+0-l)}return +case 1:r=o.a +if(r>=n&&r<=0)return +if(r>n){j=k.id +p=j.at +p.toString +j.eD(p+r-n) +return}if(r<0){j=k.id +p=j.at +p.toString +j.eD(p+r)}return +case 2:m=o.b +l=m-q +if(m>=p&&l<=0)return +if(m>p){j=k.id +n=j.at +n.toString +j.eD(n+m-p) +return}if(l<0){j=k.id +p=j.at +p.toString +j.eD(p+l)}return +case 3:r=o.a +if(r>=n&&r<=0)return +if(r>n){j=k.id +p=j.at +p.toString +j.eD(p+n-r) +return}if(r<0){j=k.id +p=j.at +p.toString +j.eD(p+0-r)}return}}, +PV(a){var s,r=this.dx.c.gU() +r.toString +t.x.a(r) +s=r.dQ(a) +return new A.x(0,0,0+r.gt(0).a,0+r.gt(0).b).p(0,s)}, +e5(a,b){var s,r,q=this +switch(b.a.a){case 0:s=q.dx.d.at +s.toString +q.k1.m(0,a,s) +q.mV(a) +break +case 1:s=q.dx.d.at +s.toString +q.k2.m(0,a,s) +q.mV(a) +break +case 6:case 7:q.mV(a) +s=q.dx +r=s.d.at +r.toString +q.k1.m(0,a,r) +s=s.d.at +s.toString +q.k2.m(0,a,s) +break +case 2:q.k2.F(0,a) +q.k1.F(0,a) +break +case 3:case 4:case 5:s=q.dx +r=s.d.at +r.toString +q.k2.m(0,a,r) +s=s.d.at +s.toString +q.k1.m(0,a,s) +break}return q.MA(a,b)}, +mV(a){var s,r,q,p,o,n,m=this,l=m.dx,k=l.d.at +k.toString +s=m.k1 +r=s.h(0,a) +q=m.fx +if(q!=null)p=r==null||Math.abs(k-r)>1e-10 +else p=!1 +if(p){o=A.a1N(l) +a.mP(A.ajB(new A.j(q.a+-o.a,q.b+-o.b),null)) +q=l.d.at +q.toString +s.m(0,a,q)}s=m.k2 +n=s.h(0,a) +q=m.fy +if(q!=null)k=n==null||Math.abs(k-n)>1e-10 +else k=!1 +if(k){o=A.a1N(l) +a.mP(A.ajA(new A.j(q.a+-o.a,q.b+-o.b),null)) +l=l.d.at +l.toString +s.m(0,a,l)}}, +l(){var s=this +s.k1.a5(0) +s.k2.a5(0) +s.fr=!1 +s.dy.e=!1 +s.Dv()}} +A.ay0.prototype={ +$1(a){var s=this.a +if(!s.fr)return +s.fr=!1 +s.zh()}, +$S:6} +A.ay1.prototype={ +$2(a,b){return!this.a.p(0,a)}, +$S:214} +A.ay2.prototype={ +$2(a,b){return!this.a.p(0,a)}, +$S:214} +A.Z9.prototype={ +aG(a){var s=this,r=s.e,q=new A.HF(r,s.f,s.w,s.r,null,new A.aO(),A.ah()) +q.aF() +q.saU(null) +r.Z(0,q.grq()) +return q}, +aP(a,b){var s=this +b.soi(s.f) +b.af=s.w +b.sby(0,s.e) +b.sa0B(s.r)}} +A.HF.prototype={ +sby(a,b){var s,r=this,q=r.A +if(b===q)return +s=r.grq() +q.J(0,s) +r.A=b +b.Z(0,s) +r.aY()}, +soi(a){if(a===this.R)return +this.R=a +this.aY()}, +sa0B(a){if(a==this.bT)return +this.bT=a +this.aY()}, +agl(a){var s +switch(this.af.a){case 0:s=a.a +break +case 1:s=a.b +break +default:s=null}this.A.eD(s)}, +dU(a){var s,r,q=this +q.i5(a) +a.a=!0 +s=q.A +if(s.ay){r=q.R +a.ao=a.ao.anl(r) +a.r=!0 +r=s.at +r.toString +a.aX=r +r=s.Q +r.toString +a.b9=r +s=s.z +s.toString +a.aL=s +a.sa0u(q.bT) +s=q.A +r=s.Q +r.toString +s=s.z +s.toString +if(r>s&&q.R)a.satm(q.gagk())}}, +qC(a,b,c){var s,r,q,p,o,n,m,l=this +if(c.length!==0){s=B.b.ga3(c).dy +s=!(s!=null&&s.p(0,B.zS))}else s=!0 +if(s){l.bB=null +l.MQ(a,b,c) +return}s=l.bB +if(s==null)s=l.bB=A.Dx(null,l.gpF()) +s.sbl(0,a.e) +s=l.bB +s.toString +r=t.QF +q=A.b([s],r) +p=A.b([],r) +for(s=c.length,o=null,n=0;n#"+A.bi(r)+"("+B.b.bn(q,", ")+")"}, +gB(a){return A.T(this.a,this.b,null,this.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=!1 +if(b instanceof A.QF)if(b.a===r.a)if(b.b===r.b)s=b.d===r.d +return s}} +A.ajt.prototype={ +$2(a,b){if(b!=null)this.a.push(a+b.k(0))}, +$S:506} +A.a6h.prototype={ +FI(a,b){var s +switch(b.a){case 0:s=a.a +break +case 1:s=a.b +break +default:s=null}return s}, +ajG(a,b){var s +switch(b.a){case 0:s=a.a +break +case 1:s=a.b +break +default:s=null}return s}, +a1i(a){var s=this,r=s.a.gWl() +s.d=a.l0(0,r.a,r.b) +if(s.e)return +s.qh()}, +qh(){var s=0,r=A.H(t.H),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b +var $async$qh=A.B(function(a,a0){if(a===1)return A.E(a0,r) +for(;;)switch(s){case 0:c=p.a +b=c.c.gU() +b.toString +t.x.a(b) +o=b.aM(0,null) +n=A.dK(o,new A.x(0,0,0+b.gt(0).a,0+b.gt(0).b)) +b=p.d +b===$&&A.a() +A.dK(o,b) +p.e=!0 +m=c.gWl() +b=n.a +l=n.b +k=c.a.c +j=p.FI(new A.j(b+m.a,l+m.b),A.b8(k)) +i=j+p.ajG(new A.I(n.c-b,n.d-l),A.b8(k)) +l=p.d +h=p.FI(new A.j(l.a,l.b),A.b8(k)) +g=p.FI(new A.j(l.c,l.d),A.b8(k)) +f=null +switch(k.a){case 0:case 3:if(g>i){b=c.d +l=b.at +l.toString +b=b.z +b.toString +b=l>b}else b=!1 +if(b){e=Math.min(g-i,20) +b=c.d +l=b.z +l.toString +b=b.at +b.toString +f=Math.max(l,b-e)}else{if(hb}else b=!1 +if(b){e=Math.min(j-h,20) +b=c.d +l=b.z +l.toString +b=b.at +b.toString +f=Math.max(l,b-e)}else{if(g>i){b=c.d +l=b.at +l.toString +b=b.Q +b.toString +b=l1e-10 +s=r}else s=!1 +return s}, +Rw(a){var s,r,q=this +if(a){$.a3() +s=A.bc() +r=q.c +s.r=r.b_(r.gcR(r)*q.r.gq(0)).gq(0) +s.b=B.bt +s.c=1 +return s}$.a3() +s=A.bc() +r=q.b +s.r=r.b_(r.gcR(r)*q.r.gq(0)).gq(0) +return s}, +agY(){return this.Rw(!1)}, +agW(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null +g.gG6() +switch(g.gG6().a){case 0:s=g.f +r=g.db +r===$&&A.a() +q=new A.I(s,r) +r=g.x +s+=2*r +p=g.dx.d +p.toString +o=new A.I(s,p-g.geY()) +n=r+g.CW.a +m=g.cy +m===$&&A.a() +r=n-r +l=g.gu7() +k=new A.j(r,l) +j=k.V(0,new A.j(s,0)) +i=new A.j(r+s,l+(p-g.geY())) +h=m +break +case 1:s=g.f +r=g.db +r===$&&A.a() +q=new A.I(s,r) +r=g.x +p=g.dx.d +p.toString +o=new A.I(s+2*r,p-g.geY()) +n=b.a-s-r-g.CW.c +s=g.cy +s===$&&A.a() +r=n-r +m=g.gu7() +k=new A.j(r,m) +i=new A.j(r,m+(p-g.geY())) +j=k +h=s +break +case 2:s=g.db +s===$&&A.a() +r=g.f +q=new A.I(s,r) +s=g.dx.d +s.toString +p=g.geY() +m=g.x +r+=2*m +o=new A.I(s-p,r) +p=g.cy +p===$&&A.a() +h=m+g.CW.b +l=g.gu7() +m=h-m +k=new A.j(l,m) +j=k.V(0,new A.j(0,r)) +i=new A.j(l+(s-g.geY()),m+r) +n=p +break +case 3:s=g.db +s===$&&A.a() +r=g.f +q=new A.I(s,r) +s=g.dx.d +s.toString +p=g.geY() +m=g.x +o=new A.I(s-p,r+2*m) +p=g.cy +p===$&&A.a() +h=b.b-r-m-g.CW.d +r=g.gu7() +m=h-m +k=new A.j(r,m) +i=new A.j(r+(s-g.geY()),m) +j=k +n=p +break +default:i=f +j=i +k=j +o=k +q=o +h=q +n=h}s=k.a +r=k.b +g.ch=new A.x(s,r,s+o.a,r+o.b) +g.cx=new A.x(n,h,n+q.a,h+q.b) +if(g.r.gq(0)!==0){s=g.ch +s.toString +a.fm(s,g.agY()) +a.lw(j,i,g.Rw(!0)) +s=g.y +if(s!=null){r=g.cx +r.toString +a.ez(A.o1(r,s),g.gRv()) +return}s=g.cx +s.toString +a.fm(s,g.gRv()) +return}}, +aA(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.dy +if(d==null||!e.FE(e.dx))return +s=e.dx +r=s.d +r.toString +q=e.geY() +p=e.w +o=2*p +if(r-q-o<=0)return +q=s.b +q.toString +if(q==1/0||q==-1/0)return +n=s.goM() +m=e.geY() +l=s.a +l.toString +q-=l +k=A.A((n-m)/(q+r-e.geY()),0,1) +j=Math.max(Math.min(r-e.geY()-o,e.at),(r-e.geY()-o)*k) +m=s.goM() +i=Math.min(e.as,r-e.geY()-o) +n=d!==B.aR +if((!n||d===B.ba?Math.max(s.giy()-s.gdN(),0):Math.max(s.gdN()-s.giz(),0))>0)h=(!n||d===B.ba?Math.max(s.gdN()-s.giz(),0):Math.max(s.giy()-s.gdN(),0))>0 +else h=!1 +g=h?i:i*(1-A.A(1-m/r,0,0.2)/0.2) +m=A.A(j,g,r-e.geY()-o) +e.db=m +if(q>0){s=s.c +s.toString +f=A.A((s-l)/q,0,1)}else f=0 +d=!n||d===B.ba?1-f:f +e.cy=d*(r-e.geY()-o-m)+(e.gu7()+p) +return e.agW(a,b)}, +LF(a){var s,r,q,p,o=this,n=o.dx,m=n.b +m.toString +s=n.a +s.toString +n=n.d +n.toString +r=o.geY() +q=o.w +p=o.db +p===$&&A.a() +return(m-s)*a/(n-r-2*q-p)}, +vO(a){var s,r,q=this +if(q.cx==null)return null +s=!0 +if(!q.ay)if(q.r.gq(0)!==0){s=q.dx +r=s.a +r.toString +s=s.b +s.toString +s=r===s}if(s)return!1 +return q.ch.p(0,a)}, +XK(a,b,c){var s,r,q,p=this,o=p.ch +if(o==null)return!1 +if(p.ay)return!1 +s=p.dx +r=s.a +r.toString +s=s.b +s.toString +if(r===s)return!1 +q=o.fX(A.o3(p.cx.gaV(),24)) +if(p.r.gq(0)===0){if(c&&b===B.bG)return q.p(0,a) +return!1}switch(b.a){case 0:case 4:return q.p(0,a) +case 1:case 2:case 3:case 5:return o.p(0,a)}}, +ard(a,b){return this.XK(a,b,!1)}, +XL(a,b){var s,r,q=this +if(q.cx==null)return!1 +if(q.ay)return!1 +if(q.r.gq(0)===0)return!1 +s=q.dx +r=s.a +r.toString +s=s.b +s.toString +if(r===s)return!1 +switch(b.a){case 0:case 4:s=q.cx +return s.fX(A.o3(s.gaV(),24)).p(0,a) +case 1:case 2:case 3:case 5:return q.cx.p(0,a)}}, +ew(a){var s=this,r=!0 +if(s.a.j(0,a.a))if(s.b.j(0,a.b))if(s.c.j(0,a.c))if(s.e==a.e)if(s.f===a.f)if(s.r===a.r)if(s.w===a.w)if(s.x===a.x)if(J.d(s.y,a.y))if(s.Q.j(0,a.Q))if(s.as===a.as)if(s.at===a.at)r=s.ay!==a.ay +return r}, +Dc(a){return!1}, +gxe(){return null}, +k(a){return"#"+A.bi(this)}, +l(){this.r.a.J(0,this.gcV()) +this.cY()}} +A.vC.prototype={ +ac(){return A.aWe(t.jU)}, +kN(a){return this.cx.$1(a)}} +A.kC.prototype={ +gjD(){var s=this.a.d +return s}, +gpH(){var s=this.a.e +return s===!0}, +gT_(){if(this.gpH())this.a.toString +return!1}, +goI(){this.a.toString +return!0}, +aw(){var s,r,q,p,o,n=this,m=null +n.aK() +s=A.bK(m,n.a.ay,m,m,n) +s.bk() +r=s.co$ +r.b=!0 +r.a.push(n.gald()) +n.x=s +s=n.y=A.cw(B.ao,s,m) +r=n.a +q=r.w +if(q==null)q=6 +p=r.r +o=r.db +r=r.dx +r=new A.vP(B.jQ,B.y,B.y,m,q,s,r,0,p,m,B.as,18,18,o,B.as,$.aw()) +s.a.Z(0,r.gcV()) +n.CW!==$&&A.bw() +n.CW=r}, +be(){this.dc()}, +ale(a){var s,r=this +if(a!==B.Q)if(r.gjD()!=null&&r.goI()){s=r.x +s===$&&A.a() +s=s.Q +s===$&&A.a() +if(s===B.bB){s=r.a.e +s=s===!0}else s=!1 +if(s)return}}, +wK(){var s,r=this,q=r.c.ad(t.I).w,p=r.CW +p===$&&A.a() +r.a.toString +p.sci(0,B.jQ) +r.a.toString +p.savB(null) +if(r.gT_()){r.a.toString +s=B.Es}else s=B.y +p.sa_h(s) +if(r.gT_()){r.a.toString +s=B.EY}else s=B.y +p.sa_g(s) +p.sbC(q) +s=r.a.w +p.sKR(s==null?6:s) +p.sws(r.a.r) +r.a.toString +s=r.c +s.toString +s=A.bP(s,B.bK,t.w).w +p.scl(0,s.r) +p.sD_(r.a.db) +p.sJV(r.a.dx) +r.a.toString +p.sbH(0,null) +r.a.toString +p.sI4(0) +r.a.toString +p.sK1(0,18) +r.a.toString +p.sYP(18) +p.sXN(!r.goI())}, +aH(a){var s,r=this +r.b0(a) +s=r.a.e +if(s!=a.e)if(s===!0){s=r.w +if(s!=null)s.aR(0) +s=r.x +s===$&&A.a() +s.z=B.av +s.i8(1,B.U,null)}else{s=r.x +s===$&&A.a() +s.dg(0)}}, +yz(){var s,r=this +if(!r.gpH()){s=r.w +if(s!=null)s.aR(0) +r.w=A.co(r.a.ch,new A.ahm(r))}}, +a91(){this.as=null}, +a93(){this.ax=null}, +aaD(a){var s,r,q,p,o,n=this,m=B.b.gc7(n.r.f),l=A.c9(),k=A.c9(),j=m.w +switch(j.a.c.a){case 0:s=a.b +l.b=n.d.b-s +k.b=n.e.b-s +break +case 1:s=a.a +l.b=s-n.d.a +k.b=s-n.e.a +break +case 2:s=a.b +l.b=s-n.d.b +k.b=s-n.e.b +break +case 3:s=a.a +l.b=n.d.a-s +k.b=n.e.a-s +break}s=n.CW +s===$&&A.a() +r=n.f +r.toString +q=s.LF(r+l.aS()) +if(l.aS()>0){r=m.at +r.toString +r=qr}else r=!1 +else r=!0 +if(r){r=m.at +r.toString +q=r+s.LF(k.aS())}s=m.at +s.toString +if(q!==s){p=q-m.r.uK(m,q) +s=n.c +s.toString +s=A.od(s) +r=n.c +r.toString +switch(s.ka(r).a){case 1:case 3:case 4:case 5:s=m.z +s.toString +r=m.Q +r.toString +p=A.A(p,s,r) +break +case 2:case 0:break}o=A.y5(j.a.c) +j=m.at +if(o){j.toString +j=p-j}else{j.toString +j-=p}return j}return null}, +Jg(){var s,r=this +r.r=r.gjD() +if(r.ay==null)return +s=r.w +if(s!=null)s.aR(0) +r.ax=B.b.gc7(r.r.f).Bg(r.ga92())}, +B9(a){var s,r,q,p,o,n,m,l,k=this +if(k.ay==null)return +s=k.w +if(s!=null)s.aR(0) +s=k.x +s===$&&A.a() +s.bP(0) +r=B.b.gc7(k.r.f) +s=$.aa.an$.x.h(0,k.z).gU() +s.toString +s=A.bj(t.x.a(s).aM(0,null),a) +k.as=r.WD(new A.hG(s,a,null,null),k.ga90()) +k.e=k.d=a +s=k.CW +s===$&&A.a() +q=s.dx +p=q.b +p.toString +o=q.a +o.toString +n=p-o +if(n>0){m=q.c +m.toString +l=A.A(m/n,o/n,p/n)}else l=0 +q=q.d +q.toString +p=s.geY() +o=s.w +s=s.db +s===$&&A.a() +k.f=l*(q-p-2*o-s)}, +aqU(a){var s,r,q,p,o,n,m=this,l=null +if(J.d(m.e,a))return +s=B.b.gc7(m.r.f) +if(!s.r.m5(s))return +r=m.ay +if(r==null)return +if(m.as==null)return +q=m.aaD(a) +if(q==null)return +switch(r.a){case 0:p=new A.j(q,0) +break +case 1:p=new A.j(0,q) +break +default:p=l}o=$.aa.an$.x.h(0,m.z).gU() +o.toString +n=A.zW(p,A.bj(t.x.a(o).aM(0,l),a),l,a,q,l) +m.as.cm(0,n) +m.e=a}, +B8(a,b){var s,r,q,p,o,n=this,m=n.ay +if(m==null)return +n.yz() +n.e=n.r=null +if(n.as==null)return +s=n.c +s.toString +s=A.od(s) +r=n.c +r.toString +q=s.ka(r) +$label0$0:{if(B.L===q||B.ad===q){s=b.a +s=new A.i6(new A.j(-s.a,-s.b)) +break $label0$0}s=B.cO +break $label0$0}r=$.aa.an$.x.h(0,n.z).gU() +r.toString +r=A.bj(t.x.a(r).aM(0,null),a) +switch(m.a){case 0:p=s.a.a +break +case 1:p=s.a.b +break +default:p=null}o=n.as +if(o!=null)o.WN(0,new A.fm(r,a,s,p)) +n.r=n.f=n.e=n.d=null}, +Ba(a){var s,r,q,p,o,n=this,m=n.gjD() +n.r=m +s=B.b.gc7(m.f) +if(!s.r.m5(s))return +m=s.w +switch(A.b8(m.a.c).a){case 1:r=n.CW +r===$&&A.a() +r=r.cy +r===$&&A.a() +q=a.b.b>r?B.aC:B.aR +break +case 0:r=n.CW +r===$&&A.a() +r=r.cy +r===$&&A.a() +q=a.b.a>r?B.bU:B.ba +break +default:q=null}m=$.aa.an$.x.h(0,m.Q) +m.toString +p=A.i0(m,null) +p.toString +o=A.ajh(p,new A.ey(q,B.ft)) +m=B.b.gc7(n.r.f) +r=B.b.gc7(n.r.f).at +r.toString +m.wc(0,r+o,B.o0,B.bd)}, +Gf(a){var s,r,q=this.gjD() +if(q==null)return!0 +s=q.f +r=s.length +if(r>1)return!1 +return r===0||A.b8(B.b.gc7(s).ghi())===a}, +aj1(a){var s,r,q=this,p=q.a +p.toString +if(!p.kN(a.Vb()))return!1 +if(q.gpH()){p=q.x +p===$&&A.a() +p=!p.gaN(0).glJ()}else p=!1 +if(p){p=q.x +p===$&&A.a() +p.bP(0)}s=a.a +p=s.e +if(q.Gf(A.b8(p))){r=q.CW +r===$&&A.a() +r.d7(0,s,p)}if(A.b8(p)!==q.ay)q.T(new A.ahk(q,s)) +p=q.at +r=s.b +r.toString +if(p!==r>0)q.T(new A.ahl(q)) +return!1}, +aj3(a){var s,r,q,p=this +if(!p.a.kN(a))return!1 +s=a.a +r=s.b +r.toString +q=s.a +q.toString +if(r<=q){r=p.x +r===$&&A.a() +if(r.gaN(0).glJ())r.dg(0) +r=s.e +if(p.Gf(A.b8(r))){q=p.CW +q===$&&A.a() +q.d7(0,s,r)}return!1}if(a instanceof A.kF||a instanceof A.jx){r=p.x +r===$&&A.a() +if(!r.gaN(0).glJ())r.bP(0) +r=p.w +if(r!=null)r.aR(0) +r=s.e +if(p.Gf(A.b8(r))){q=p.CW +q===$&&A.a() +q.d7(0,s,r)}}else if(a instanceof A.iE)if(p.as==null)p.yz() +return!1}, +adX(a){this.Jg()}, +F1(a){var s=$.aa.an$.x.h(0,this.z).gU() +s.toString +return t.x.a(s).dQ(a)}, +ae0(a){this.B9(this.F1(a.a))}, +ae2(a){this.aqU(this.F1(a.a))}, +adZ(a){this.B8(this.F1(a.a),a.c)}, +adV(){if($.aa.an$.x.h(0,this.ch)==null)return +var s=this.ax +if(s!=null)s.a.i1(0) +s=this.as +if(s!=null)s.a.i1(0)}, +aeq(a){var s=this +a.ay=s.gadW() +a.ch=s.gae_() +a.CW=s.gae1() +a.cx=s.gadY() +a.cy=s.gadU() +a.b=B.G1 +a.at=B.k4}, +gaa8(){var s,r=this,q=A.w(t.u,t.xR),p=!1 +if(r.goI())if(r.gjD()!=null)if(r.gjD().f.length===1){s=B.b.gc7(r.gjD().f) +if(s.z!=null&&s.Q!=null){p=B.b.gc7(r.gjD().f).Q +p.toString +p=p>0}}if(!p)return q +switch(A.b8(B.b.gc7(r.gjD().f).ghi()).a){case 0:q.m(0,B.YI,new A.cr(new A.ahg(r),r.gQG(),t.lh)) +break +case 1:q.m(0,B.Yy,new A.cr(new A.ahh(r),r.gQG(),t.Pw)) +break}q.m(0,B.YC,new A.cr(new A.ahi(r),new A.ahj(r),t.Bk)) +return q}, +Ym(a,b,c){var s,r=this.z +if($.aa.an$.x.h(0,r)==null)return!1 +s=A.aEY(r,a) +r=this.CW +r===$&&A.a() +return r.XK(s,b,!0)}, +J6(a){var s,r=this +if(r.Ym(a.gby(a),a.gcK(a),!0)){r.Q=!0 +s=r.x +s===$&&A.a() +s.bP(0) +s=r.w +if(s!=null)s.aR(0)}else if(r.Q){r.Q=!1 +r.yz()}}, +J7(a){this.Q=!1 +this.yz()}, +RD(a){var s=A.b8(B.b.gc7(this.r.f).ghi())===B.b1?a.gt8().a:a.gt8().b +return A.y5(B.b.gc7(this.r.f).w.a.c)?s*-1:s}, +Tj(a){var s,r=B.b.gc7(this.r.f).at +r.toString +s=B.b.gc7(this.r.f).z +s.toString +s=Math.max(r+a,s) +r=B.b.gc7(this.r.f).Q +r.toString +return Math.min(s,r)}, +acL(a){var s,r,q,p=this +p.r=p.gjD() +s=p.RD(a) +r=p.Tj(s) +if(s!==0){q=B.b.gc7(p.r.f).at +q.toString +q=r!==q}else q=!1 +if(q)B.b.gc7(p.r.f).Ku(s)}, +aj5(a){var s,r,q,p,o,n=this +n.r=n.gjD() +s=n.CW +s===$&&A.a() +s=s.vO(a.gd4()) +r=!1 +if(s===!0){s=n.r +if(s!=null)s=s.f.length!==0 +else s=r}else s=r +if(s){q=B.b.gc7(n.r.f) +if(t.Mj.b(a)){if(!q.r.m5(q))return +p=n.RD(a) +o=n.Tj(p) +if(p!==0){s=q.at +s.toString +s=o!==s}else s=!1 +if(s)$.f1.au$.ZC(0,a,n.gacK())}else if(t.xb.b(a)){s=q.at +s.toString +q.eD(s)}}}, +l(){var s=this,r=s.x +r===$&&A.a() +r.l() +r=s.w +if(r!=null)r.aR(0) +r=s.CW +r===$&&A.a() +r.r.a.J(0,r.gcV()) +r.cY() +r=s.y +r===$&&A.a() +r.l() +s.a4j()}, +H(a){var s,r,q=this,p=null +q.wK() +s=q.gaa8() +r=q.CW +r===$&&A.a() +return new A.dd(q.gaj0(),new A.dd(q.gaj2(),new A.jC(A.Bo(B.bY,new A.iB(A.jt(A.ip(new A.jC(q.a.c,p),r,q.z,p,B.I),B.bV,p,p,new A.ahn(q),new A.aho(q)),s,p,!1,q.ch),p,p,p,q.gaj4(),p),p),p,t.WA),p,t.ji)}} +A.ahm.prototype={ +$0(){var s=this.a,r=s.x +r===$&&A.a() +r.dg(0) +s.w=null}, +$S:0} +A.ahk.prototype={ +$0(){this.a.ay=A.b8(this.b.e)}, +$S:0} +A.ahl.prototype={ +$0(){var s=this.a +s.at=!s.at}, +$S:0} +A.ahg.prototype={ +$0(){var s=this.a,r=t.S +return new A.oN(s.z,B.a9,B.e7,A.a20(),B.cy,A.w(r,t.GY),A.w(r,t.v),B.i,A.b([],t.t),A.w(r,t.g),A.dj(r),s,null,A.a21(),A.w(r,t.E))}, +$S:508} +A.ahh.prototype={ +$0(){var s=this.a,r=t.S +return new A.p7(s.z,B.a9,B.e7,A.a20(),B.cy,A.w(r,t.GY),A.w(r,t.v),B.i,A.b([],t.t),A.w(r,t.g),A.dj(r),s,null,A.a21(),A.w(r,t.E))}, +$S:509} +A.ahi.prototype={ +$0(){var s=this.a,r=t.S +return new A.l1(s.z,B.bd,-1,-1,B.d6,A.w(r,t.g),A.dj(r),s,null,A.JW(),A.w(r,t.E))}, +$S:510} +A.ahj.prototype={ +$1(a){a.n=this.a.gXz()}, +$S:511} +A.ahn.prototype={ +$1(a){var s +switch(a.gcK(a).a){case 1:case 4:s=this.a +if(s.goI())s.J7(a) +break +case 2:case 3:case 5:case 0:break}}, +$S:42} +A.aho.prototype={ +$1(a){var s +switch(a.gcK(a).a){case 1:case 4:s=this.a +if(s.goI())s.J6(a) +break +case 2:case 3:case 5:case 0:break}}, +$S:512} +A.l1.prototype={ +hT(a){return A.b0_(this.bB,a)&&this.a3J(a)}} +A.p7.prototype={ +JH(a){return!1}, +hT(a){return A.aMi(this.eC,a)&&this.Mp(a)}} +A.oN.prototype={ +JH(a){return!1}, +hT(a){return A.aMi(this.eC,a)&&this.Mp(a)}} +A.xs.prototype={ +bA(){this.cs() +this.cf() +this.ey()}, +l(){var s=this,r=s.aW$ +if(r!=null)r.J(0,s.gek()) +s.aW$=null +s.aD()}} +A.w6.prototype={ +Ij(a,b){var s=this +switch(a){case!0:s.dy.E(0,b) +break +case!1:s.dx.E(0,b) +break +case null:case void 0:s.dx.E(0,b) +s.dy.E(0,b) +break}}, +Ws(a){return this.Ij(null,a)}, +Ak(){var s,r,q,p,o,n,m=this,l=m.d +if(l===-1||m.c===-1)return +s=m.c +r=Math.min(l,s) +q=Math.max(l,s) +for(p=r;p<=q;++p)m.Ws(m.b[p]) +l=m.d +if(l!==-1){l=m.b[l] +l=l.gq(l).c!==B.cM}else l=!1 +if(l){r=m.b[m.d] +o=r.gq(r).a.a.V(0,new A.j(0,-r.gq(r).a.b/2)) +m.fr=A.bj(r.aM(0,null),o)}l=m.c +if(l!==-1){l=m.b[l] +l=l.gq(l).c!==B.cM}else l=!1 +if(l){q=m.b[m.c] +n=q.gq(q).b.a.V(0,new A.j(0,-q.gq(q).b.b/2)) +m.fx=A.bj(q.aM(0,null),n)}}, +HI(){var s=this +B.b.aj(s.b,s.gamL()) +s.fx=s.fr=null}, +HJ(a){this.dx.F(0,a) +this.dy.F(0,a)}, +F(a,b){this.HJ(b) +this.a2v(0,b)}, +B4(a){var s=this.MC(a) +this.Ak() +return s}, +B6(a){var s=this.MD(a) +this.Ak() +return s}, +B5(a){var s=this.a2u(a) +this.Ak() +return s}, +B_(a){var s=this.MB(a) +this.HI() +return s}, +kG(a){var s=a.b +if(a.a===B.cL)this.fx=s +else this.fr=s +return this.ME(a)}, +l(){this.HI() +this.Dv()}, +e5(a,b){var s=this +switch(b.a.a){case 0:s.Ij(!1,a) +s.mV(a) +break +case 1:s.Ij(!0,a) +s.mV(a) +break +case 2:s.HJ(a) +break +case 3:case 4:case 5:break +case 6:case 7:s.Ws(a) +s.mV(a) +break}return s.MA(a,b)}, +mV(a){var s,r,q=this +if(q.fx!=null&&q.dy.E(0,a)){s=q.fx +s.toString +r=A.ajA(s,null) +if(q.c===-1)q.kG(r) +a.mP(r)}if(q.fr!=null&&q.dx.E(0,a)){s=q.fr +s.toString +r=A.ajB(s,null) +if(q.d===-1)q.kG(r) +a.mP(r)}}, +Ai(){var s,r=this,q=r.fx +if(q!=null)r.kG(A.ajA(q,null)) +q=r.fr +if(q!=null)r.kG(A.ajB(q,null)) +q=r.b +s=A.qA(q,A.a2(q).c) +r.dy.EL(new A.alG(s),!0) +r.dx.EL(new A.alH(s),!0) +r.Mz()}} +A.alG.prototype={ +$1(a){return!this.a.p(0,a)}, +$S:65} +A.alH.prototype={ +$1(a){return!this.a.p(0,a)}, +$S:65} +A.vc.prototype={ +E(a,b){this.Q.E(0,b) +this.Sp()}, +F(a,b){var s,r,q=this +if(q.Q.F(0,b))return +s=B.b.hR(q.b,b) +B.b.hr(q.b,s) +r=q.c +if(s<=r)q.c=r-1 +r=q.d +if(s<=r)q.d=r-1 +b.J(0,q.gFe()) +q.Sp()}, +Sp(){var s,r +if(!this.y){this.y=!0 +s=new A.aff(this) +r=$.bC +if(r.p2$===B.lG)A.dx(s) +else r.k4$.push(s)}}, +a9T(){var s,r,q,p,o,n,m,l,k=this,j=k.Q,i=A.a6(j,A.n(j).c) +B.b.fa(i,k.guX()) +s=k.b +k.b=A.b([],t.D1) +r=k.d +q=k.c +j=k.gFe() +p=0 +o=0 +for(;;){n=i.length +if(!(pMath.min(n,l))k.mV(m) +m.Z(0,j) +B.b.E(k.b,m);++p}}k.c=q +k.d=r +k.Q=A.aP(t.x9)}, +Ai(){this.zh()}, +zh(){var s=this,r=s.a0c() +if(!s.at.j(0,r)){s.at=r +s.ak()}s.akK()}, +guX(){return A.b2x()}, +ad8(){if(this.x)return +this.zh()}, +a0c(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.c +if(a===-1||c.d===-1||c.b.length===0)return new A.oe(b,b,B.cM,B.l1,c.b.length!==0) +if(!c.as){a=c.Nk(c.d,a) +c.d=a +c.c=c.Nk(c.c,a)}a=c.b[c.d] +s=a.gq(a) +a=c.c +r=c.d +q=a>=r +for(;;){if(!(r!==c.c&&s.a==null))break +r+=q?1:-1 +a=c.b[r] +s=a.gq(a)}a=s.a +if(a!=null){p=c.b[r] +o=c.a.gU() +o.toString +n=A.bj(p.aM(0,t.x.a(o)),a.a) +m=isFinite(n.a)&&isFinite(n.b)?new A.rG(n,a.b,a.c):b}else m=b +a=c.b[c.c] +l=a.gq(a) +k=c.c +for(;;){if(!(k!==c.d&&l.b==null))break +k+=q?-1:1 +a=c.b[k] +l=a.gq(a)}a=l.b +if(a!=null){p=c.b[k] +o=c.a.gU() +o.toString +j=A.bj(p.aM(0,t.x.a(o)),a.a) +i=isFinite(j.a)&&isFinite(j.b)?new A.rG(j,a.b,a.c):b}else i=b +h=A.b([],t.AO) +g=c.gaqZ()?new A.x(0,0,0+c.gVS().a,0+c.gVS().b):b +for(f=c.d;f<=c.c;++f){a=c.b[f] +e=a.gq(a).d +a=new A.ae(e,new A.afg(c,f,g),A.a2(e).i("ae<1,x>")).Du(0,new A.afh()) +d=A.a6(a,a.$ti.i("o.E")) +B.b.O(h,d)}return new A.oe(m,i,!s.j(0,l)?B.lN:s.c,h,!0)}, +Nk(a,b){var s,r=b>a +for(;;){if(a!==b){s=this.b[a] +s=s.gq(s).c!==B.lN}else s=!1 +if(!s)break +a+=r?1:-1}return a}, +kR(a,b){return}, +akK(){var s,r=this,q=null,p=r.e,o=r.r,n=r.d +if(n===-1||r.c===-1){n=r.f +if(n!=null){n.kR(q,q) +r.f=null}n=r.w +if(n!=null){n.kR(q,q) +r.w=null}return}n=r.b[n] +s=r.f +if(n!==s)if(s!=null)s.kR(q,q) +n=r.b[r.c] +s=r.w +if(n!==s)if(s!=null)s.kR(q,q) +n=r.b +s=r.d +n=r.f=n[s] +if(s===r.c){r.w=n +n.kR(p,o) +return}n.kR(p,q) +n=r.b[r.c] +r.w=n +n.kR(q,o)}, +SD(){var s,r,q,p=this,o=p.d,n=o===-1 +if(n&&p.c===-1)return +if(n||p.c===-1){if(n)o=p.c +n=p.b +new A.aY(n,new A.afb(p,o),A.a2(n).i("aY<1>")).aj(0,new A.afc(p)) +return}n=p.c +s=Math.min(o,n) +r=Math.max(o,n) +for(q=0;n=p.b,q=s&&q<=r)continue +p.e5(n[q],B.eI)}}, +B4(a){var s,r,q,p=this +for(s=p.b,r=s.length,q=0;q")).aj(0,new A.afe(i)) +i.d=i.c=r}return B.P}else if(s===B.G){i.d=i.c=r-1 +return B.P}}return B.P}, +B6(a){return this.Ql(a)}, +B5(a){return this.Ql(a)}, +B_(a){var s,r,q,p=this +for(s=p.b,r=s.length,q=0;q0&&r===B.M))break;--s +r=p.e5(p.b[s],a)}if(a.gjT())p.c=s +else p.d=s +return r}, +J4(a){var s,r,q,p=this +if(p.d===-1){a.gAn(a) +$label0$0:{}p.d=p.c=null}s=a.gjT()?p.c:p.d +r=p.e5(p.b[s],a) +switch(a.gAn(a)){case B.lK:if(r===B.M)if(s>0){--s +r=p.e5(p.b[s],a.ani(B.iv))}break +case B.lL:if(r===B.G){q=p.b +if(s=0&&a==null))break +a0=d.b=a1.e5(a3[b],a6) +switch(a0.a){case 2:case 3:case 4:a=a0 +break +case 0:if(c===!1){++b +a=B.P}else if(b===a1.b.length-1)a=a0 +else{++b +c=!0}break +case 1:if(c===!0){--b +a=B.P}else if(b===0)a=a0 +else{--b +c=!1}break}}if(a7)a1.c=b +else a1.d=b +a1.SD() +a.toString +return a}, +VJ(a,b){return this.guX().$2(a,b)}} +A.aff.prototype={ +$1(a){var s=this.a +if(!s.y)return +s.y=!1 +if(s.Q.a!==0)s.a9T() +s.Ai()}, +$0(){return this.$1(null)}, +$S:193} +A.afg.prototype={ +$1(a){var s,r=this.a,q=r.b[this.b] +r=r.a.gU() +r.toString +s=A.dK(q.aM(0,t.x.a(r)),a) +r=this.c +r=r==null?null:r.dM(s) +return r==null?s:r}, +$S:514} +A.afh.prototype={ +$1(a){return a.gvW(0)&&!a.ga7(0)}, +$S:515} +A.afb.prototype={ +$1(a){return a!==this.a.b[this.b]}, +$S:65} +A.afc.prototype={ +$1(a){return this.a.e5(a,B.eI)}, +$S:34} +A.afd.prototype={ +$1(a){return a!==this.a.b[this.b]}, +$S:65} +A.afe.prototype={ +$1(a){return this.a.e5(a,B.eI)}, +$S:34} +A.WM.prototype={} +A.rE.prototype={ +ac(){return new A.Zk(A.aP(t.M),null,!1)}} +A.Zk.prototype={ +aw(){var s,r,q,p=this +p.aK() +s=p.a +r=s.e +if(r!=null){q=p.c +q.toString +r.a=q +s=s.c +if(s!=null)p.spn(s)}}, +aH(a){var s,r,q,p,o,n=this +n.b0(a) +s=a.e +if(s!=n.a.e){r=s==null +if(!r){s.a=null +n.d.aj(0,s.gZJ(s))}q=n.a.e +if(q!=null){p=n.c +p.toString +q.a=p +n.d.aj(0,q.gzy(q))}s=r?null:s.at +r=n.a.e +if(!J.d(s,r==null?null:r.at)){s=n.d +s=A.a6(s,A.n(s).c) +s.$flags=1 +s=s +r=s.length +o=0 +for(;o") +m=n.i("o.E") +l=0 +for(;l")).gag(0);s.u();)r.O(0,s.d.b) +return r}, +$iac:1} +A.DC.prototype={ +ac(){var s=$.aw() +return new A.Ic(new A.DD(A.w(t.yE,t.bU),s),new A.vX(B.i6,s))}} +A.Ic.prototype={ +aw(){this.aK() +this.d.Z(0,this.gSW())}, +ajt(){this.e.sm4(this.d.gm4())}, +l(){var s=this,r=s.d +r.J(0,s.gSW()) +r.cY() +r=s.e +r.P$=$.aw() +r.M$=0 +s.aD()}, +H(a){return new A.Zy(this.d,new A.rM(this.e,B.i6,this.a.c,null,null),null)}} +A.Zy.prototype={ +ce(a){return this.f!==a.f}} +A.Zw.prototype={} +A.Zx.prototype={} +A.Zz.prototype={} +A.ZB.prototype={} +A.ZC.prototype={} +A.a0x.prototype={} +A.R_.prototype={ +H(a){var s,r,q,p,o=null,n={},m=A.aNa(a,B.af,!1),l=this.x +n.a=l +s=this.e +if(s!=null)n.a=new A.bo(s,l,o) +r=A.aJr(a,B.af) +q=r?A.Pn(a):o +p=A.aDX(m,B.B,q,B.a9,!1,B.aH,o,o,o,o,o,new A.al8(n,this,m)) +A.od(a) +return r&&q!=null?A.aJq(p):p}} +A.al8.prototype={ +$2(a,b){return new A.xC(this.c,b,B.B,this.a.a,null)}, +$S:521} +A.xC.prototype={ +aG(a){var s=new A.HH(this.e,this.f,this.r,A.ah(),null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){var s +b.shi(this.e) +b.sck(0,this.f) +s=this.r +if(s!==b.X){b.X=s +b.aC() +b.aY()}}, +bJ(a){return new A.ZE(this,B.Z)}} +A.ZE.prototype={} +A.HH.prototype={ +shi(a){if(a===this.n)return +this.n=a +this.a_()}, +sck(a,b){var s=this,r=s.I +if(b===r)return +if(s.y!=null)r.J(0,s.gyj()) +s.I=b +if(s.y!=null)b.Z(0,s.gyj()) +s.a_()}, +aef(){this.aC() +this.aY()}, +eg(a){if(!(a.b instanceof A.cx))a.b=new A.cx()}, +av(a){this.a5p(a) +this.I.Z(0,this.gyj())}, +ai(a){this.I.J(0,this.gyj()) +this.a5q(0)}, +geQ(){return!0}, +gajF(){switch(A.b8(this.n).a){case 0:var s=this.gt(0).a +break +case 1:s=this.gt(0).b +break +default:s=null}return s}, +gyw(){var s=this,r=s.D$ +if(r==null)return 0 +switch(A.b8(s.n).a){case 0:r=r.gt(0).a-s.gt(0).a +break +case 1:r=r.gt(0).b-s.gt(0).b +break +default:r=null}return Math.max(0,A.l4(r))}, +Px(a){var s +switch(A.b8(this.n).a){case 0:s=new A.ak(0,1/0,a.c,a.d) +break +case 1:s=new A.ak(a.a,a.b,0,1/0) +break +default:s=null}return s}, +bb(a){var s=this.D$ +s=s==null?null:s.ap(B.aK,a,s.gbE()) +return s==null?0:s}, +b7(a){var s=this.D$ +s=s==null?null:s.ap(B.ab,a,s.gbj()) +return s==null?0:s}, +ba(a){var s=this.D$ +s=s==null?null:s.ap(B.aL,a,s.gbD()) +return s==null?0:s}, +b6(a){var s=this.D$ +s=s==null?null:s.ap(B.b8,a,s.gbL()) +return s==null?0:s}, +cE(a){var s=this.D$ +if(s==null)return new A.I(A.A(0,a.a,a.b),A.A(0,a.c,a.d)) +return a.b3(s.ap(B.R,this.Px(a),s.gc8()))}, +bx(){var s,r,q=this,p=t.k.a(A.t.prototype.gW.call(q)),o=q.D$ +if(o==null)q.fy=new A.I(A.A(0,p.a,p.b),A.A(0,p.c,p.d)) +else{o.c3(q.Px(p),!0) +q.fy=p.b3(q.D$.gt(0))}o=q.I.at +if(o!=null)if(o>q.gyw()){o=q.I +s=q.gyw() +r=q.I.at +r.toString +o.I0(s-r)}else{o=q.I +s=o.at +s.toString +if(s<0)o.I0(0-s)}q.I.uM(q.gajF()) +q.I.qz(0,q.gyw())}, +ul(a){var s,r=this +switch(r.n.a){case 0:s=new A.j(0,a-r.D$.gt(0).b+r.gt(0).b) +break +case 3:s=new A.j(a-r.D$.gt(0).a+r.gt(0).a,0) +break +case 1:s=new A.j(-a,0) +break +case 2:s=new A.j(0,-a) +break +default:s=null}return s}, +SX(a){var s,r,q=this +switch(q.X.a){case 0:return!1 +case 1:case 2:case 3:s=a.a +if(!(s<0)){r=a.b +s=r<0||s+q.D$.gt(0).a>q.gt(0).a||r+q.D$.gt(0).b>q.gt(0).b}else s=!0 +return s}}, +aA(a,b){var s,r,q,p,o,n=this +if(n.D$!=null){s=n.I.at +s.toString +r=n.ul(s) +s=new A.axk(n,r) +q=n.a2 +if(n.SX(r)){p=n.cx +p===$&&A.a() +o=n.gt(0) +q.saB(0,a.lQ(p,b,new A.x(0,0,0+o.a,0+o.b),s,n.X,q.a))}else{q.saB(0,null) +s.$2(a,b)}}}, +l(){this.a2.saB(0,null) +this.fb()}, +cP(a,b){var s,r=this.I.at +r.toString +s=this.ul(r) +b.dC(s.a,s.b,0,1)}, +mN(a){var s=this,r=s.I.at +r.toString +r=s.SX(s.ul(r)) +if(r){r=s.gt(0) +return new A.x(0,0,0+r.a,0+r.b)}return null}, +cz(a,b){var s,r=this +if(r.D$!=null){s=r.I.at +s.toString +return a.iU(new A.axj(r),r.ul(s),b)}return!1}, +pw(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=this,h=null +A.b8(i.n) +if(d==null)d=a.gkP() +if(!(a instanceof A.y)){s=i.I.at +s.toString +return new A.oa(s,d)}r=A.dK(a.aM(0,i.D$),d) +q=i.D$.gt(0) +switch(i.n.a){case 0:s=r.d +s=new A.hx(i.gt(0).b,q.b-s,s-r.b) +break +case 3:s=r.c +s=new A.hx(i.gt(0).a,q.a-s,s-r.a) +break +case 1:s=r.a +s=new A.hx(i.gt(0).a,s,r.c-s) +break +case 2:s=r.b +s=new A.hx(i.gt(0).b,s,r.d-s) +break +default:s=h}p=s.a +o=h +n=h +m=s.b +l=s.c +n=l +o=m +k=p +j=o-(k-n)*b +return new A.oa(j,r.dj(i.ul(j)))}, +CQ(a,b,c){return this.pw(a,b,null,c)}, +eK(a,b,c,d){var s=this +if(!s.I.r.goi())return s.xw(a,b,c,d) +s.xw(a,null,c,A.aJN(a,b,c,s.I,d,s))}, +td(){return this.eK(B.bc,null,B.F,null)}, +nF(a){return this.eK(B.bc,null,B.F,a)}, +pG(a,b,c){return this.eK(a,null,b,c)}, +nG(a,b){return this.eK(B.bc,a,B.F,b)}, +Ic(a){var s,r,q=this,p=q.gyw(),o=q.I.at +o.toString +s=p-o +switch(q.n.a){case 0:q.gt(0) +q.gt(0) +p=q.gt(0) +o=q.gt(0) +r=q.I.at +r.toString +return new A.x(0,0-s,0+p.a,0+o.b+r) +case 1:q.gt(0) +p=q.I.at +p.toString +q.gt(0) +return new A.x(0-p,0,0+q.gt(0).a+s,0+q.gt(0).b) +case 2:q.gt(0) +q.gt(0) +p=q.I.at +p.toString +return new A.x(0,0-p,0+q.gt(0).a,0+q.gt(0).b+s) +case 3:q.gt(0) +q.gt(0) +p=q.gt(0) +o=q.I.at +o.toString +return new A.x(0-s,0,0+p.a+o,0+q.gt(0).b)}}, +$iCA:1} +A.axk.prototype={ +$2(a,b){var s=this.a.D$ +s.toString +a.dm(s,b.V(0,this.b))}, +$S:15} +A.axj.prototype={ +$2(a,b){return this.a.D$.cp(a,b)}, +$S:18} +A.JA.prototype={ +av(a){var s +this.e1(a) +s=this.D$ +if(s!=null)s.av(a)}, +ai(a){var s +this.e2(0) +s=this.D$ +if(s!=null)s.ai(0)}} +A.a1e.prototype={} +A.a1f.prototype={} +A.R2.prototype={} +A.R3.prototype={ +aG(a){var s=new A.YG(new A.alb(a),null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}} +A.alb.prototype={ +$0(){this.a.dK(B.Dd)}, +$S:0} +A.YG.prototype={ +bx(){var s=this +s.pP() +if(s.R!=null&&!s.gt(0).j(0,s.R))s.A.$0() +s.R=s.gt(0)}} +A.Ri.prototype={} +A.on.prototype={ +bJ(a){return A.aK9(this,!1)}, +IF(a,b,c,d,e){return null}} +A.Rg.prototype={ +bJ(a){return A.aK9(this,!0)}, +aG(a){var s=new A.Q4(t.Gt.a(a),A.w(t.S,t.x),0,null,null,A.ah()) +s.aF() +return s}} +A.Rd.prototype={ +aG(a){var s=new A.Q3(this.f,t.Gt.a(a),A.w(t.S,t.x),0,null,null,A.ah()) +s.aF() +return s}, +aP(a,b){b.sa0i(this.f)}, +IF(a,b,c,d,e){var s +this.a3C(a,b,c,d,e) +s=this.f.Lw(a).VO(this.d.b) +return s}} +A.w_.prototype={ +gU(){return t.kl.a(A.b_.prototype.gU.call(this))}, +cm(a,b){var s,r,q=this.e +q.toString +t.M0.a(q) +this.ma(0,b) +s=b.d +r=q.d +q=s!==r +if(q){A.r(s) +A.r(r)}if(q)this.jj()}, +jj(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null,a1={} +a.Dz() +a.p3=null +a1.a=!1 +try{i=t.S +s=A.aKb(i,t.Dv) +r=A.h9(a0,a0,a0,i,t.i) +i=a.e +i.toString +q=t.M0.a(i) +p=new A.alp(a1,a,s,q,r) +i=a.p2 +h=i.$ti.i("mC<1,fY<1,2>>") +h=A.a6(new A.mC(i,h),h.i("o.E")) +g=h.length +f=t.MR +e=a.p1 +d=0 +for(;d>")).aj(0,p) +if(!a1.a&&a.R8){b=i.YB() +k=b==null?-1:b +j=k+1 +J.dR(s,j,i.h(0,j)) +p.$1(j)}}finally{a.p4=null +a.gU()}}, +aod(a,b){this.f.uQ(this,new A.alm(this,b,a))}, +dD(a,b,c){var s,r,q,p,o=null +if(a==null)s=o +else{s=a.gU() +s=s==null?o:s.b}r=t.MR +r.a(s) +q=this.a1U(a,b,c) +if(q==null)p=o +else{p=q.gU() +p=p==null?o:p.b}r.a(p) +if(s!=p&&s!=null&&p!=null)p.a=s.a +return q}, +ir(a){this.p2.F(0,a.c) +this.jv(a)}, +ZG(a){var s,r=this +r.gU() +s=a.b +s.toString +s=t.U.a(s).b +s.toString +r.f.uQ(r,new A.alq(r,s))}, +WP(a,b,c,d,e){var s,r=this.e +r.toString +t.M0.a(r) +d.toString +s=r.IF(a,b,c,d,e) +return s==null?A.aX5(b,c,d,e,r.d.b):s}, +guV(){var s=this.e +s.toString +t.M0.a(s) +return s.d.b}, +ve(){var s=this.p2 +s.apD() +s.YB() +s=this.e +s.toString +t.M0.a(s)}, +If(a){var s=a.b +s.toString +t.U.a(s).b=this.p4}, +jc(a,b){this.gU().Dq(0,t.x.a(a),this.p3)}, +jh(a,b,c){this.gU().wb(t.x.a(a),this.p3)}, +k_(a,b){this.gU().F(0,t.x.a(a))}, +bg(a){var s=this.p2,r=s.$ti.i("tr<1,2>") +r=A.pC(new A.tr(s,r),r.i("o.E"),t.h) +s=A.a6(r,A.n(r).i("o.E")) +B.b.aj(s,a)}} +A.alp.prototype={ +$1(a){var s,r,q,p,o=this,n=o.b +n.p4=a +q=n.p2 +if(q.h(0,a)!=null&&!J.d(q.h(0,a),o.c.h(0,a))){q.m(0,a,n.dD(q.h(0,a),null,a)) +o.a.a=!0}s=n.dD(o.c.h(0,a),o.d.d.Vl(n,a),a) +if(s!=null){p=o.a +p.a=p.a||!J.d(q.h(0,a),s) +q.m(0,a,s) +q=s.gU().b +q.toString +r=t.U.a(q) +if(a===0)r.a=0 +else{q=o.e +if(q.az(0,a))r.a=q.h(0,a)}if(!r.c)n.p3=t.Qv.a(s.gU())}else{o.a.a=!0 +q.F(0,a)}}, +$S:24} +A.aln.prototype={ +$0(){return null}, +$S:13} +A.alo.prototype={ +$0(){return this.a.p2.h(0,this.b)}, +$S:523} +A.alm.prototype={ +$0(){var s,r,q,p=this,o=p.a +o.p3=p.b==null?null:t.Qv.a(o.p2.h(0,p.c-1).gU()) +s=null +try{q=o.e +q.toString +r=t.M0.a(q) +q=o.p4=p.c +s=o.dD(o.p2.h(0,q),r.d.Vl(o,q),q)}finally{o.p4=null}q=p.c +o=o.p2 +if(s!=null)o.m(0,q,s) +else o.F(0,q)}, +$S:0} +A.alq.prototype={ +$0(){var s,r,q=this +try{s=q.a +r=s.p4=q.b +s.dD(s.p2.h(0,r),null,r)}finally{q.a.p4=null}q.a.p2.F(0,q.b)}, +$S:0} +A.Ba.prototype={ +qA(a){var s,r=a.b +r.toString +t.Cl.a(r) +s=this.f +if(r.ra$!==s){r.ra$=s +if(!s){r=a.gaT(a) +if(r!=null)r.a_()}}}} +A.DL.prototype={} +A.hl.prototype={ +bJ(a){var s=A.n(this),r=t.h +return new A.DM(A.w(s.i("hl.0"),r),A.w(t.D2,r),this,B.Z,s.i("DM"))}} +A.kG.prototype={ +gim(a){var s=this.df$ +return new A.bf(s,A.n(s).i("bf<2>"))}, +fz(){J.pl(this.gim(this),this.gKI())}, +bg(a){J.pl(this.gim(this),a)}, +yW(a,b){var s=this.df$,r=s.h(0,b) +if(r!=null){this.mS(r) +s.F(0,b)}if(a!=null){s.m(0,b,a) +this.ik(a)}}} +A.DM.prototype={ +gU(){return this.$ti.i("kG<1,2>").a(A.b_.prototype.gU.call(this))}, +bg(a){var s=this.p1 +new A.bf(s,A.n(s).i("bf<2>")).aj(0,a)}, +ir(a){this.p1.F(0,a.c) +this.jv(a)}, +ea(a,b){this.nR(a,b) +this.TR()}, +cm(a,b){this.ma(0,b) +this.TR()}, +TR(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.e +e.toString +s=f.$ti +s.i("hl<1,2>").a(e) +r=f.p2 +q=t.h +f.p2=A.w(t.D2,q) +p=f.p1 +s=s.c +f.p1=A.w(s,q) +for(q=e.gMb(),o=q.length,n=0;n")).aj(0,f.gaop())}, +jc(a,b){this.$ti.i("kG<1,2>").a(A.b_.prototype.gU.call(this)).yW(a,b)}, +k_(a,b){var s=this.$ti.i("kG<1,2>") +if(s.a(A.b_.prototype.gU.call(this)).df$.h(0,b)===a)s.a(A.b_.prototype.gU.call(this)).yW(null,b)}, +jh(a,b,c){var s=this.$ti.i("kG<1,2>").a(A.b_.prototype.gU.call(this)) +if(s.df$.h(0,b)===a)s.yW(null,b) +s.yW(a,c)}} +A.Ie.prototype={ +aP(a,b){return this.MU(a,b)}} +A.DP.prototype={ +K(){return"SnapshotMode."+this.b}} +A.DO.prototype={ +soj(a){if(a===this.a)return +this.a=a +this.ak()}} +A.Rn.prototype={ +aG(a){var s=new A.xx(A.bP(a,B.cS,t.w).w.b,this.w,this.e,this.f,!0,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){t.xL.a(b) +b.smI(0,this.e) +b.sasO(0,this.f) +b.smO(0,A.bP(a,B.cS,t.w).w.b) +b.sph(this.w) +b.sam9(!0)}} +A.xx.prototype={ +smO(a,b){var s,r=this +if(b===r.A)return +r.A=b +s=r.bU +if(s==null)return +else{s.l() +r.bU=null +r.aC()}}, +sph(a){var s,r=this,q=r.R +if(a===q)return +s=r.ge9() +q.J(0,s) +r.R=a +if(A.r(q)!==A.r(r.R)||r.R.ew(q))r.aC() +if(r.y!=null)r.R.Z(0,s)}, +smI(a,b){var s,r,q=this,p=q.af +if(b===p)return +s=q.gyG() +p.J(0,s) +r=q.af.a +q.af=b +if(q.y!=null){b.Z(0,s) +if(r!==q.af.a)q.Rm()}}, +sasO(a,b){if(b===this.bT)return +this.bT=b +this.aC()}, +sam9(a){return}, +av(a){var s=this +s.af.Z(0,s.gyG()) +s.R.Z(0,s.ge9()) +s.pQ(a)}, +ai(a){var s,r=this +r.kC=!1 +r.af.J(0,r.gyG()) +r.R.J(0,r.ge9()) +s=r.bU +if(s!=null)s.l() +r.eC=r.bU=null +r.mc(0)}, +l(){var s,r=this +r.af.J(0,r.gyG()) +r.R.J(0,r.ge9()) +s=r.bU +if(s!=null)s.l() +r.eC=r.bU=null +r.fb()}, +Rm(){var s,r=this +r.kC=!1 +s=r.bU +if(s!=null)s.l() +r.eC=r.bU=null +r.aC()}, +agQ(){var s,r=this,q=A.aJb(B.i),p=r.gt(0),o=new A.r2(q,new A.x(0,0,0+p.a,0+p.b)) +r.i6(o,B.i) +o.tj() +if(r.bT!==B.S6&&!q.DG()){q.l() +if(r.bT===B.S5)throw A.e(A.je("SnapshotWidget used with a child that contains a PlatformView.")) +r.kC=!0 +return null}p=r.gt(0) +s=q.avt(new A.x(0,0,0+p.a,0+p.b),r.A) +q.l() +r.iq=r.gt(0) +return s}, +aA(a,b){var s,r,q,p,o=this +if(o.gt(0).ga7(0)){s=o.bU +if(s!=null)s.l() +o.eC=o.bU=null +return}if(!o.af.a||o.kC){s=o.bU +if(s!=null)s.l() +o.eC=o.bU=null +o.R.rv(a,b,o.gt(0),A.eO.prototype.geE.call(o)) +return}s=o.gt(0) +r=o.iq +s=!s.j(0,r)&&r!=null +if(s){s=o.bU +if(s!=null)s.l() +o.bU=null}if(o.bU==null){o.bU=o.agQ() +o.eC=o.gt(0).a6(0,o.A)}s=o.bU +r=o.R +if(s==null)r.rv(a,b,o.gt(0),A.eO.prototype.geE.call(o)) +else{s=o.gt(0) +q=o.bU +q.toString +p=o.eC +p.toString +r.Za(a,b,s,q,p,o.A)}}} +A.Rm.prototype={} +A.FN.prototype={ +ge3(a){return A.a0(A.kw(this,A.nB(B.Sl,"gawm",1,[],[],0)))}, +se3(a,b){A.a0(A.kw(this,A.nB(B.Si,"sawg",2,[b],[],0)))}, +gcZ(){return A.a0(A.kw(this,A.nB(B.Sm,"gawn",1,[],[],0)))}, +scZ(a){A.a0(A.kw(this,A.nB(B.Sq,"sawh",2,[a],[],0)))}, +gli(){return A.a0(A.kw(this,A.nB(B.Sn,"gawo",1,[],[],0)))}, +sli(a){A.a0(A.kw(this,A.nB(B.Sk,"sawi",2,[a],[],0)))}, +gmv(){return A.a0(A.kw(this,A.nB(B.So,"gawp",1,[],[],0)))}, +smv(a){A.a0(A.kw(this,A.nB(B.Sj,"sawl",2,[a],[],0)))}, +RZ(a){return A.a0(A.kw(this,A.nB(B.Sp,"awq",0,[a],[],0)))}, +Z(a,b){}, +l(){}, +J(a,b){}, +$iac:1, +$iaS:1} +A.Rv.prototype={ +H(a){return A.ec(B.ay,1)}} +A.DQ.prototype={ +ao7(a,b,c,d){var s=this +if(!s.e)return B.fH +return new A.DQ(c,s.b,s.c,s.d,!0)}, +anL(a){return this.ao7(null,null,a,null)}, +k(a){var s=this,r=s.e?"enabled":"disabled" +return"SpellCheckConfiguration("+r+", service: "+A.k(s.a)+", text style: "+A.k(s.c)+", toolbar builder: "+A.k(s.d)+")"}, +j(a,b){var s +if(b==null)return!1 +if(J.U(b)!==A.r(this))return!1 +s=!1 +if(b instanceof A.DQ)if(b.a==this.a)s=b.e===this.e +return s}, +gB(a){var s=this +return A.T(s.a,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.rO.prototype={ +K(){return"StandardComponentType."+this.b}} +A.DV.prototype={ +ac(){return new A.Is()}} +A.Is.prototype={ +aw(){this.aK() +this.a.c.el(this.gDT())}, +aH(a){var s,r,q=this +q.b0(a) +s=a.c +if(q.a.c!==s){r=q.gDT() +s.cd(r) +q.a.c.el(r)}}, +l(){this.a.c.cd(this.gDT()) +this.aD()}, +a6D(a){this.T(new A.ayI())}, +H(a){var s=this.a +return s.mG(a,s.f)}} +A.ayI.prototype={ +$0(){}, +$S:0} +A.RG.prototype={ +aa9(a){var s=this.c>0 +if(this.d===B.af)return s?B.BF:B.BE +if(a===B.b_)return s?B.mU:B.jo +else return s?B.jo:B.mU}, +H(a){var s,r,q,p=this,o=a.ad(t.I).w,n=1,m=1 +switch(p.d.a){case 0:n=1+Math.abs(p.c) +break +case 1:m=1+Math.abs(p.c) +break}s=p.aa9(o) +r=A.qQ(n,m,1) +q=p.c===0?null:B.hE +return A.EJ(s,p.e,q,r,!0)}} +A.E7.prototype={ +ac(){return new A.a_3()}} +A.am1.prototype={ +$0(){return this.a.jP(!1)}, +$S:0} +A.a_3.prototype={ +aw(){var s,r=this +r.aK() +s=new A.am_(r.a.e,A.w(t.N,t.M)) +$.e0.bK$=s +r.d!==$&&A.bw() +r.d=s}, +l(){var s=this.d +s===$&&A.a() +s.jO() +s.f=!0 +this.aD()}, +H(a){var s,r,q,p,o=this +if(o.a.d.length!==0){s=A.f3(a,B.Bb,t.Uh) +s.toString +r=o.a.d +q=A.a2(r).i("ae<1,fp>") +p=A.a6(new A.ae(r,new A.ayS(s),q),q.i("ax.E")) +s=o.d +s===$&&A.a() +s.a17(o.a.c,p)}return B.ay}} +A.ayS.prototype={ +$1(a){return a.ns(0,this.a)}, +$S:524} +A.hc.prototype={ +giE(a){return null}, +gB(a){return B.IM.gB(this.giE(this))}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +s=b instanceof A.hc +if(s){b.giE(b) +r.giE(r)}return s}} +A.No.prototype={ +ns(a,b){return B.CG}} +A.Np.prototype={ +ns(a,b){return B.CH}} +A.Nz.prototype={ +ns(a,b){return B.CJ}} +A.NB.prototype={ +ns(a,b){return B.CK}} +A.Ny.prototype={ +ns(a,b){return new A.Nt("Look Up")}, +giE(){return null}} +A.NA.prototype={ +ns(a,b){return new A.Nv("Search Web")}, +giE(){return null}} +A.Nx.prototype={ +ns(a,b){return B.CI}} +A.VN.prototype={} +A.VO.prototype={} +A.RO.prototype={ +aG(a){var s=new A.CV(new A.Af(new WeakMap()),A.aP(t.Cn),A.w(t.X,t.hi),B.bY,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){}} +A.CV.prototype={ +Cv(a){var s +this.dt.F(0,a) +s=this.bN +s.h(0,a.f2).F(0,a) +if(s.h(0,a.f2).a===0)s.F(0,a.f2)}, +cp(a,b){var s,r,q=this +if(!q.gt(0).p(0,b))return!1 +s=q.cz(a,b)||q.A===B.aH +if(s){r=new A.pw(b,q) +q.cv.m(0,r,a) +a.E(0,r)}return s}, +kF(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=t.pY.b(a) +if(!i&&!t.oN.b(a))return +s=j.dt +if(s.a===0)return +A.q2(b) +r=j.cv.a.get(b) +if(r==null)return +q=j.aaE(s,r.a) +p=t.Cn +o=A.aWW(q,q.gafH(),A.n(q).c,p).a7L() +p=A.aP(p) +for(q=o.gag(o),n=j.bN;q.u();){m=n.h(0,q.gN(q).f2) +m.toString +p.O(0,m)}l=s.fU(p) +for(s=l.gag(l),q=t.oN.b(a),k=!1;s.u();){n=s.gN(s) +if(i){m=n.dt +if(m!=null)m.$1(a)}else if(q){m=n.cn +if(m!=null)m.$1(a)}if(n.fY)k=!0}for(s=A.cl(p,p.r,p.$ti.c),q=s.$ti.c;s.u();){p=s.d +if(p==null)q.a(p)}if(k&&i){i=$.f1.ab$.zt(0,a.gbt(),new A.UZ()) +i.a.oa(i.b,i.c,B.bX)}}, +aaE(a,b){var s,r,q,p,o=A.aP(t.zE) +for(s=b.length,r=this.dt,q=0;q=0&&i==null))break +h=l.b=g.e5(s[j],a) +switch(h.a){case 2:case 3:case 4:i=h +break +case 0:if(k===!1){++j +i=B.P}else if(j===g.b.length-1)i=h +else{++j +k=!0}break +case 1:if(k===!0){--j +i=B.P}else if(j===0)i=h +else{--j +k=!1}break}}if(b)g.c=j +else g.d=j +g.Pg() +i.toString +return i}, +Nj(a7,a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=a2.at,a5=a8?a4.b!=null:a4.a!=null,a6=a8?a4.a!=null:a4.b!=null +$label0$0:{s=a3 +r=a3 +a4=!1 +if(a8){if(a5){a4=a6 +r=a4 +s=r}q=a5 +p=q +o=p +n=o}else{o=a3 +n=o +p=!1 +q=!1}m=0 +if(a4){a4=a2.c +break $label0$0}l=a3 +k=!1 +a4=!1 +if(a8)if(n){if(q)a4=r +else{a4=a6 +r=a4 +q=!0}l=!1===a4 +a4=l +k=!0}if(a4){a4=a2.c +break $label0$0}j=a3 +a4=!1 +if(a8){j=!1===o +i=j +if(i)if(p)a4=s +else{if(q)a4=r +else{a4=a6 +r=a4 +q=!0}s=!0===a4 +a4=s +p=!0}}if(a4){a4=a2.d +break $label0$0}a4=!1 +if(a8)if(j)if(k)a4=l +else{if(q)a4=r +else{a4=a6 +r=a4 +q=!0}l=!1===a4 +a4=l +k=!0}if(a4){a4=m +break $label0$0}h=!a8 +a4=h +i=!1 +if(a4){if(a8){a4=n +g=a8 +f=g}else{n=!0===a5 +a4=n +o=a5 +f=!0 +g=!0}if(a4)if(p)a4=s +else{if(q)a4=r +else{a4=a6 +r=a4 +q=!0}s=!0===a4 +a4=s +p=!0}else a4=i}else{a4=i +g=a8 +f=g}if(a4){a4=a2.d +break $label0$0}a4=!1 +if(h){if(f)i=n +else{if(g)i=o +else{i=a5 +o=i +g=!0}n=!0===i +i=n}if(i)if(k)a4=l +else{if(q)a4=r +else{a4=a6 +r=a4 +q=!0}l=!1===a4 +a4=l +k=!0}}if(a4){a4=a2.d +break $label0$0}a4=!1 +if(h){if(a8){i=j +e=a8}else{if(g)i=o +else{i=a5 +o=i +g=!0}j=!1===i +i=j +e=!0}if(i)if(p)a4=s +else{if(q)a4=r +else{a4=a6 +r=a4 +q=!0}s=!0===a4 +a4=s}}else e=a8 +if(a4){a4=a2.c +break $label0$0}a4=!1 +if(h){if(e)i=j +else{j=!1===(g?o:a5) +i=j}if(i)if(k)a4=l +else{l=!1===(q?r:a6) +a4=l}}if(a4){a4=m +break $label0$0}a4=a3}d=A.c9() +c=a3 +b=a4 +a=c +for(;;){a4=a2.b +if(!(b=0&&a==null))break +a0=d.b=a2.e5(a4[b],a7) +switch(a0.a){case 2:case 3:case 4:a=a0 +break +case 0:if(c===!1){++b +a=B.P}else if(b===a2.b.length-1)a=a0 +else{++b +c=!0}break +case 1:if(c===!0){--b +a=B.P}else if(b===0)a=a0 +else{--b +c=!1}break}}a4=a2.c +m=a2.d +a1=a4>=m +if(a8){if(c!=null)if(!(!a1&&c&&b>=m))m=a1&&!c&&b<=m +else m=!0 +else m=!1 +if(m)a2.d=a4 +a2.c=b}else{if(c!=null)if(!(!a1&&!c&&b<=a4))a4=a1&&c&&b>=a4 +else a4=!0 +else a4=!1 +if(a4)a2.c=m +a2.d=b}a2.Pg() +a.toString +return a}, +guX(){return A.b2G()}, +Pg(){var s,r,q,p=this,o=p.d,n=o===-1 +if(n&&p.c===-1)return +if(n||p.c===-1){if(n)o=p.c +n=p.b +new A.aY(n,new A.ayf(p,o),A.a2(n).i("aY<1>")).aj(0,new A.ayg(p)) +return}n=p.c +s=Math.min(o,n) +r=Math.max(o,n) +for(q=0;n=p.b,q=s&&q<=r)continue +p.e5(n[q],B.eI)}}, +kG(a){var s,r,q=this +if(a.c!==B.AR)return q.a3I(a) +s=a.b +r=a.a===B.cL +if(r)q.fx=s +else q.fr=s +if(r)return q.c===-1?q.QF(a,!0):q.Nj(a,!0) +return q.d===-1?q.QF(a,!1):q.Nj(a,!1)}, +VJ(a,b){return this.guX().$2(a,b)}} +A.ayf.prototype={ +$1(a){return a!==this.a.b[this.b]}, +$S:65} +A.ayg.prototype={ +$1(a){return this.a.e5(a,B.eI)}, +$S:34} +A.zR.prototype={} +A.Ml.prototype={} +A.pT.prototype={} +A.pV.prototype={} +A.pU.prototype={} +A.zK.prototype={} +A.lp.prototype={} +A.ls.prototype={} +A.q4.prototype={} +A.q0.prototype={} +A.q1.prototype={} +A.hI.prototype={} +A.nh.prototype={} +A.lt.prototype={} +A.lr.prototype={} +A.q3.prototype={} +A.lq.prototype={} +A.m3.prototype={} +A.m4.prototype={} +A.kb.prototype={} +A.lO.prototype={} +A.o4.prototype={} +A.jD.prototype={} +A.oz.prototype={} +A.iO.prototype={} +A.ow.prototype={} +A.kf.prototype={} +A.kg.prototype={} +A.fy.prototype={ +k(a){return this.xq(0)+"; shouldPaint="+this.e}} +A.amP.prototype={} +A.S1.prototype={ +GO(){var s=this,r=s.z&&s.b.bF.a +s.w.sq(0,r) +r=s.z&&s.b.ao.a +s.x.sq(0,r) +r=s.b +r=r.bF.a||r.ao.a +s.y.sq(0,r)}, +sXB(a){if(this.z===a)return +this.z=a +this.GO()}, +i4(){var s,r,q=this +q.oh() +s=q.f +if(s==null)return +r=q.e +r===$&&A.a() +r.Df(q.a,s) +return}, +cm(a,b){var s,r=this +if(r.r.j(0,b))return +r.r=b +r.oh() +s=r.e +s===$&&A.a() +s.cc()}, +oh(){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.e +h===$&&A.a() +s=j.b +r=s.aE +q=r.w +q.toString +h.sa1l(j.O3(q,B.iS,B.iT)) +q=j.d +p=q.a.c.a.a +if(r.gjZ()===p){o=j.r.b +o=o.gbG()&&o.a!==o.b}else o=!1 +if(o){o=j.r.b +n=B.c.a1(p,o.a,o.b) +o=(n.length===0?B.co:new A.f7(n)).ga3(0) +m=j.r.b.a +l=s.t2(new A.c4(m,m+o.length))}else l=i +o=l==null?i:l.d-l.b +if(o==null){o=r.cM() +o=o.gb4(o)}h.sasd(o) +o=r.w +o.toString +h.sap4(j.O3(o,B.iT,B.iS)) +p=q.a.c.a.a +if(r.gjZ()===p){q=j.r.b +q=q.gbG()&&q.a!==q.b}else q=!1 +if(q){q=j.r.b +n=B.c.a1(p,q.a,q.b) +q=(n.length===0?B.co:new A.f7(n)).gae(0) +o=j.r.b.b +k=s.t2(new A.c4(o-q.length,o))}else k=i +q=k==null?i:k.d-k.b +if(q==null){r=r.cM() +r=r.gb4(r)}else r=q +h.sasc(r) +h.sa0A(s.wV(j.r.b)) +h.savz(s.vA)}, +l(){var s,r,q,p=this,o=p.e +o===$&&A.a() +o.jO() +s=o.b +r=s.P$=$.aw() +s.M$=0 +s=p.b +q=p.gUt() +s.bF.J(0,q) +s.ao.J(0,q) +q=p.y +q.P$=r +q.M$=0 +q=p.w +q.P$=r +q.M$=0 +q=p.x +q.P$=r +q.M$=0 +o.h0()}, +kh(a,b,c){var s=c.t1(a),r=c.jo(new A.ao(s.c,B.j)),q=r.a,p=c.jo(new A.ao(s.d,B.ak)),o=p.a,n=A.rl(new A.j(q+(r.c-q)/2,r.b),new A.j(o+(p.c-o)/2,p.d)),m=t.Qv.a(A.P0(this.a,!0).c.gU()),l=c.aM(0,m),k=A.dK(l,n),j=A.dK(l,c.jo(a)),i=m==null?null:m.dQ(b) +if(i==null)i=b +r=c.gt(0) +return new A.lJ(i,k,j,A.dK(l,new A.x(0,0,0+r.a,0+r.b)))}, +ada(a){var s,r,q,p,o,n,m,l=this,k=l.b +if(k.y==null)return +s=a.a +r=s.b +l.Q=r +q=l.e +q===$&&A.a() +p=B.b.gae(q.dx) +o=k.aE.cM() +o=o.gb4(o) +n=A.bj(k.aM(0,null),new A.j(0,p.a.b-o/2)).b +l.as=n-r +m=k.fF(new A.j(s.a,n)) +if(A.aM()===B.L||A.aM()===B.aY)if(l.at==null)l.at=l.r.b +q.tc(l.kh(m,s,k))}, +Pu(a,b){var s=a-b,r=s<0?-1:1,q=this.b.aE,p=q.cM() +p=B.d.h_(Math.abs(s)/p.gb4(p)) +q=q.cM() +return b+r*p*q.gb4(q)}, +adc(a){var s,r,q,p,o,n,m,l=this,k=l.b +if(k.y==null)return +s=a.a +r=k.dQ(s) +q=l.Q +q===$&&A.a() +p=l.Pu(r.b,k.dQ(new A.j(0,q)).b) +q=A.bj(k.aM(0,null),new A.j(0,p)).b +l.Q=q +o=l.as +o===$&&A.a() +n=k.fF(new A.j(s.a,q+o)) +switch(A.aM().a){case 2:case 4:q=l.at +if(q.a===q.b){q=l.e +q===$&&A.a() +q.ps(l.kh(n,s,k)) +l.q4(A.ot(n)) +return}o=q.d +q=q.c +q=o>=q?q:o +m=A.c8(B.j,q,n.a,!1) +break +case 0:case 1:case 3:case 5:q=l.r.b +if(q.a===q.b){q=l.e +q===$&&A.a() +q.ps(l.kh(n,s,k)) +l.q4(A.ot(n)) +return}m=A.c8(B.j,q.c,n.a,!1) +if(m.c>=m.d)return +break +default:m=null}l.q4(m) +q=l.e +q===$&&A.a() +q.ps(l.kh(m.gdd(),s,k))}, +adh(a){var s,r,q,p,o,n,m,l=this,k=l.b +if(k.y==null)return +s=a.a +r=s.b +l.ax=r +q=l.e +q===$&&A.a() +p=B.b.ga3(q.dx) +o=k.aE.cM() +o=o.gb4(o) +n=A.bj(k.aM(0,null),new A.j(0,p.a.b-o/2)).b +l.ay=n-r +m=k.fF(new A.j(s.a,n)) +if(A.aM()===B.L||A.aM()===B.aY)if(l.at==null)l.at=l.r.b +q.tc(l.kh(m,s,k))}, +adj(a){var s,r,q,p,o,n,m,l=this,k=l.b +if(k.y==null)return +s=a.a +r=k.dQ(s) +q=l.ax +q===$&&A.a() +p=l.Pu(r.b,k.dQ(new A.j(0,q)).b) +q=A.bj(k.aM(0,null),new A.j(0,p)).b +l.ax=q +o=l.ay +o===$&&A.a() +n=k.fF(new A.j(s.a,q+o)) +switch(A.aM().a){case 2:case 4:q=l.at +if(q.a===q.b){q=l.e +q===$&&A.a() +q.ps(l.kh(n,s,k)) +l.q4(A.ot(n)) +return}o=q.d +q=q.c +if(o>=q)q=o +m=A.c8(B.j,q,n.a,!1) +break +case 0:case 1:case 3:case 5:q=l.r.b +if(q.a===q.b){q=l.e +q===$&&A.a() +q.ps(l.kh(n,s,k)) +l.q4(A.ot(n)) +return}m=A.c8(B.j,n.a,q.d,!1) +if(m.c>=m.d)return +break +default:m=null}q=l.e +q===$&&A.a() +q.ps(l.kh(m.gdd().an.at/2?(p.c-p.a)/2:(B.b.ga3(n.dx).a.a+B.b.gae(n.dx).a.a)/2 +return new A.p_(new A.e8(new A.ajD(n,p,new A.j(o,B.b.ga3(n.dx).a.b-n.f)),m),new A.j(-p.a,-p.b),n.fr,n.db,m)}, +ps(a){if(this.c.b==null)return +this.b.sq(0,a)}} +A.ajH.prototype={ +$1(a){return this.a}, +$S:17} +A.ajF.prototype={ +$1(a){var s,r,q=null,p=this.a,o=p.go +if(o!=null)s=p.e===B.cq&&p.ay +else s=!0 +if(s)r=B.ay +else{s=p.e +r=A.aLu(p.k1,p.fx,p.gadu(),p.gadw(),p.gady(),p.k2,p.f,o,s,p.x)}return new A.mo(this.b.a,A.RW(new A.ng(!0,r,q),q,B.c8,q,q),q)}, +$S:17} +A.ajG.prototype={ +$1(a){var s,r,q=null,p=this.a,o=p.go,n=!0 +if(o!=null){s=p.as===B.cq +if(!(s&&p.w))n=s&&!p.w&&!p.ay}if(n)r=B.ay +else{n=p.as +r=A.aLu(p.k1,p.fy,p.gabC(),p.gabE(),p.gabG(),p.k2,p.at,o,n,p.ch)}return new A.mo(this.b.a,A.RW(new A.ng(!0,r,q),q,B.c8,q,q),q)}, +$S:17} +A.ajI.prototype={ +$1(a){var s=this.a,r=A.bj(this.b.aM(0,null),B.i) +return new A.p_(this.c.$1(a),new A.j(-r.a,-r.b),s.fr,s.db,null)}, +$S:525} +A.ajE.prototype={ +$1(a){var s,r=this.a +r.p4=!1 +s=r.ok +if(s!=null)s.b.cc() +s=r.ok +if(s!=null)s.a.cc() +s=r.p1 +if(s!=null)s.cc() +s=$.li +if(s===r.p2){r=$.pN +if(r!=null)r.cc()}else if(s===r.p3){r=$.pN +if(r!=null)r.cc()}}, +$S:6} +A.ajD.prototype={ +$1(a){this.a.go.toString +return B.ay}, +$S:17} +A.p_.prototype={ +ac(){return new A.I8(null,null)}} +A.I8.prototype={ +aw(){var s,r=this +r.aK() +r.d=A.bK(null,B.dO,null,null,r) +r.Gr() +s=r.a.f +if(s!=null)s.Z(0,r.gzc())}, +aH(a){var s,r=this +r.b0(a) +s=a.f +if(s==r.a.f)return +if(s!=null)s.J(0,r.gzc()) +r.Gr() +s=r.a.f +if(s!=null)s.Z(0,r.gzc())}, +l(){var s=this,r=s.a.f +if(r!=null)r.J(0,s.gzc()) +r=s.d +r===$&&A.a() +r.l() +s.a5z()}, +Gr(){var s,r=this.a.f +r=r==null?null:r.a +if(r==null)r=!0 +s=this.d +if(r){s===$&&A.a() +s.bP(0)}else{s===$&&A.a() +s.dg(0)}}, +H(a){var s,r,q,p=null,o=this.c.ad(t.I).w,n=this.d +n===$&&A.a() +s=this.a +r=s.e +q=s.d +return A.RW(A.aHt(new A.d5(n,!1,A.aH8(s.c,r,q,!1),p),o),p,B.c8,p,p)}} +A.I4.prototype={ +ac(){return new A.I5(null,null)}} +A.I5.prototype={ +aw(){var s=this +s.aK() +s.d=A.bK(null,B.dO,null,null,s) +s.Fj() +s.a.x.Z(0,s.gFi())}, +Fj(){var s,r=this.a.x.a +if(r==null)r=!0 +s=this.d +if(r){s===$&&A.a() +s.bP(0)}else{s===$&&A.a() +s.dg(0)}}, +aH(a){var s,r=this +r.b0(a) +s=r.gFi() +a.x.J(0,s) +r.Fj() +r.a.x.Z(0,s)}, +l(){var s,r=this +r.a.x.J(0,r.gFi()) +s=r.d +s===$&&A.a() +s.l() +r.a5y()}, +H(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.a,e=f.y,d=f.w.t_(e) +e=0+d.a +f=0+d.b +s=new A.x(0,0,e,f) +r=s.fX(A.o3(s.gaV(),24)) +q=r.c-r.a +e=Math.max((q-e)/2,0) +p=r.d-r.b +f=Math.max((p-f)/2,0) +o=h.a +n=o.w.rZ(o.z,o.y) +o=h.a +m=o.z===B.cq&&A.aM()===B.L +o=o.c +l=new A.j(-n.a,-n.b).a0(0,new A.j(e,f)) +k=h.d +k===$&&A.a() +j=A.ab([B.iV,new A.cr(new A.ayh(h),new A.ayi(h,m),t.YC)],t.u,t.xR) +i=h.a +return A.aH8(new A.d5(k,!1,A.e1(new A.eH(B.dz,g,g,new A.iB(new A.bo(new A.az(e,f,e,f),i.w.zN(a,i.z,i.y,i.d),g),j,B.cI,!1,g),g),p,q),g),o,l,!1)}} +A.ayh.prototype={ +$0(){return A.aJk(this.a,A.cn([B.at,B.b4,B.bu],t.E))}, +$S:201} +A.ayi.prototype={ +$1(a){var s=this.a.a +a.at=s.Q +a.b=this.b?B.G2:null +a.ch=s.e +a.CW=s.f +a.cx=s.r}, +$S:202} +A.S0.prototype={ +ut(a){switch(A.aM().a){case 0:case 2:this.a.y.gL().tc(a) +break +case 1:case 3:case 4:case 5:break}}, +Qy(){if(!this.gQO())return +switch(A.aM().a){case 0:case 2:this.a.y.gL().vM() +break +case 1:case 3:case 4:case 5:break}}, +gaeM(){var s,r,q=this.a.y +q.gL().gal() +s=q.gL().gal() +r=q.gL().gal().vA +r.toString +s=s.fF(r).a +return q.gL().gal().A.a<=s&&q.gL().gal().A.b>=s}, +ahD(a){var s=this.a.y.gL().gal().A,r=a.a +return s.ar}, +ahE(a){var s=this.a.y.gL().gal().A,r=a.a +return s.a<=r&&s.b>=r}, +EK(a,b,c){var s=this.a.y,r=s.gL().gal().fF(a),q=c==null?s.gL().gal().A:c,p=r.a,o=q.c,n=q.d,m=q.qQ(Math.abs(p-o)") +s=A.eu(new A.bf(r,s),s.i("o.E")).kI(0,A.cn([B.cJ,B.d9],t.T)) +this.d=s.gbV(s)}, +atI(){this.d=!1}, +atG(a){var s,r,q,p=this,o=p.a +if(!(o.a.P&&o.gej()))return +o=o.y +s=o.gL().gal() +s=s.eP=a.a +r=a.c +p.c=p.b=r===B.at||r===B.b4 +q=p.d +if(q)o.gL().gal().A +switch(A.aM().a){case 0:o.gL().a.toString +$label0$1:{s=B.b4===r||B.c4===r +if(s){o.gL().a.toString +break $label0$1}break $label0$1}if(s)A.ajf().bo(new A.amR(p),t.P) +break +case 1:case 2:break +case 4:o.gL().h0() +if(q){p.EK(s,B.aJ,o.gL().gal().cb?null:B.mf) +return}o=o.gL().gal() +s=o.eP +s.toString +o.fG(B.aJ,s) +break +case 3:case 5:o.gL().h0() +if(q){p.q_(s,B.aJ) +return}o=o.gL().gal() +s=o.eP +s.toString +o.fG(B.aJ,s) +break}}, +ate(a){var s +this.b=!0 +s=this.a +if(!(s.a.P&&s.gej()))return +s=s.y +s.gL().gal().l7(B.fu,a.a) +s.gL().i4()}, +atc(a){var s=this.a.y +s.gL().gal().l7(B.fu,a.a) +if(this.b)s.gL().i4()}, +atD(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.a +if(!(g.a.P&&g.gej())){g.y.gL().Ch() +return}s=h.d +if(s)g.y.gL().gal().A +switch(A.aM().a){case 3:case 4:case 5:break +case 0:r=g.y +r.gL().jP(!1) +if(s){h.q_(a.a,B.aJ) +return}q=r.gL().gal() +p=q.eP +p.toString +q.fG(B.aJ,p) +r.gL().M6() +break +case 1:r=g.y +r.gL().jP(!1) +if(s){h.q_(a.a,B.aJ) +return}r=r.gL().gal() +q=r.eP +q.toString +r.fG(B.aJ,q) +break +case 2:if(s){o=g.y.gL().gal().cb?null:B.mf +h.EK(a.a,B.aJ,o) +return}switch(a.c.a){case 1:case 4:case 2:case 3:r=g.y +q=r.gL().gal() +p=q.eP +p.toString +q.fG(B.aJ,p) +r.gL().h0() +break +case 0:case 5:r=g.y +n=r.gL().gal().A +m=r.gL().gal().fF(a.a) +if(r.gL().apB(m.a)!=null){q=r.gL().gal() +p=q.eP +p.toString +q.l7(B.aJ,p) +if(!n.j(0,r.gL().a.c.a.b))r.gL().M6() +else r.gL().Cq(!1)}else{if(!(h.ahD(m)&&n.a!==n.b))q=h.ahE(m)&&n.a===n.b&&m.b===n.e&&!r.gL().gal().eq +else q=!0 +if(q&&r.gL().gal().cb)r.gL().Cq(!1) +else{q=r.gL().gal() +q.jA() +p=q.aE +l=q.eP +l.toString +k=p.di(q.dQ(l).a0(0,q.geW())) +j=p.b.a.c.h9(k) +i=A.c9() +p=j.a +if(k.a<=p)i.b=A.mf(B.j,p) +else i.b=A.mf(B.ak,j.b) +q.mx(i.aS(),B.aJ) +if(n.j(0,r.gL().a.c.a.b)&&r.gL().gal().cb&&!r.gL().gal().eq)r.gL().Cq(!1) +else r.gL().jP(!1)}}break}break}g.y.gL().Ch()}, +atB(){}, +atz(a){var s,r,q,p,o=this,n=o.a +if(!(n.a.P&&n.gej()))return +switch(A.aM().a){case 2:case 4:s=n.y +if(!s.gL().gal().cb){o.w=!0 +s=s.gL().gal() +r=s.eP +r.toString +s.l7(B.bv,r)}else if(s.gL().gal().eq){r=s.gL().gal() +q=r.eP +q.toString +r.l7(B.bv,q) +if(s.gL().c.e!=null){s=s.gL().c +s.toString +A.aD6(s)}}else{r=a.a +s.gL().gal().fG(B.bv,r) +r=s.gL().gal().dQ(r) +q=s.gL().a.c.a.b +p=s.gL().a.c.a.b +s.gL().Cy(new A.vz(B.i,new A.am(r,new A.ao(q.c,p.e)),B.oH))}break +case 0:case 1:case 3:case 5:s=n.y +r=s.gL().gal() +q=r.eP +q.toString +r.l7(B.bv,q) +if(s.gL().c.e!=null){s=s.gL().c +s.toString +A.aD6(s)}break}o.ut(a.a) +n=n.y.gL().gal().R.at +n.toString +o.f=n +o.e=o.gqi()}, +atx(a){var s,r,q,p,o,n=this,m=n.a +if(!(m.a.P&&m.gej()))return +m=m.y +if(m.gL().gal().an===1){s=m.gL().gal().R.at +s.toString +r=new A.j(s-n.f,0)}else{s=m.gL().gal().R.at +s.toString +r=new A.j(0,s-n.f)}s=n.gSs() +switch(A.b8(s==null?B.ba:s).a){case 0:s=new A.j(n.gqi()-n.e,0) +break +case 1:s=new A.j(0,n.gqi()-n.e) +break +default:s=null}switch(A.aM().a){case 2:case 4:q=n.w||m.gL().gal().eq +p=a.a +o=a.c +if(q)m.gL().gal().xc(B.bv,p.a0(0,o).a0(0,r).a0(0,s),p) +else{m.gL().gal().fG(B.bv,p) +m.gL().Cy(new A.vz(o,null,B.hF))}break +case 0:case 1:case 3:case 5:q=a.a +m.gL().gal().xc(B.bv,q.a0(0,a.c).a0(0,r).a0(0,s),q) +break}n.ut(a.a)}, +atv(a){this.Rn() +if(this.b)this.a.y.gL().i4()}, +att(){this.Rn()}, +ato(){var s,r,q=this.a +if(!(q.a.P&&q.gej()))return +switch(A.aM().a){case 2:case 4:if(!this.gaeM()||!q.y.gL().gal().cb){s=q.y.gL().gal() +r=s.eP +r.toString +s.l7(B.aJ,r)}if(this.b){q=q.y +q.gL().h0() +q.gL().i4()}break +case 0:case 1:case 3:case 5:q=q.y +if(!q.gL().gal().cb){s=q.gL().gal() +r=s.eP +r.toString +s.fG(B.aJ,r)}q.gL().a_f() +break}}, +atq(a){var s=this.a.y.gL().gal() +s.vA=s.eP=a.a +this.b=!0 +s=a.c +this.c=s==null||s===B.at||s===B.b4}, +at3(a){var s,r,q=this.a +if(q.a.P&&q.gej()){q=q.y +s=q.gL().gal() +r=s.eP +r.toString +s.l7(B.zG,r) +if(this.b)q.gL().i4()}}, +Rn(){var s,r,q=this +q.Qy() +q.w=!1 +q.e=q.f=0 +s=!1 +if(q.gQO())if(A.aM()===B.L){r=q.a +if(r.a.P&&r.gej()){s=r.y.gL().a.c.a.b +s=s.a===s.b}}if(s)q.a.y.gL().Cy(new A.vz(null,null,B.hG))}, +Gd(a,b,c){this.SB(new A.nR(this.a.y.gL().a.c.a.a),a,b,c)}, +aj8(a,b){return this.Gd(a,b,null)}, +SA(a,b,c){this.SB(new A.uX(this.a.y.gL().gal()),a,b,c)}, +aj7(a,b){return this.SA(a,b,null)}, +Ts(a,b){var s,r=a.a,q=this.a.y,p=b.eH(r===q.gL().a.c.a.a.length?r-1:r) +if(p==null)p=0 +s=b.eI(r) +return new A.c4(p,s==null?q.gL().a.c.a.a.length:s)}, +SB(a,b,c,d){var s=this.a.y,r=s.gL().gal().fF(c),q=this.Ts(r,a),p=d==null?r:s.gL().gal().fF(d),o=p.j(0,r)?q:this.Ts(p,a),n=q.a,m=o.b,l=n1)return +if(q.d){p.gL().gal() +r=p.gL().gal().A.gbG()}else r=!1 +if(r)switch(A.aM().a){case 2:case 4:q.a9E(a.a,B.aj) +break +case 0:case 1:case 3:case 5:q.q_(a.a,B.aj) +break}else switch(A.aM().a){case 2:switch(s){case B.bG:case B.bf:p.gL().gal().fG(B.aj,a.a) +break +case B.b4:case B.c4:case B.at:case B.bu:case null:case void 0:break}break +case 0:case 1:switch(s){case B.bG:case B.bf:p.gL().gal().fG(B.aj,a.a) +break +case B.b4:case B.c4:case B.at:case B.bu:if(p.gL().gal().cb){r=a.a +p.gL().gal().fG(B.aj,r) +q.ut(r)}break +case null:case void 0:break}break +case 3:case 4:case 5:p.gL().gal().fG(B.aj,a.a) +break}}, +at9(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.a +if(!(i.a.P&&i.gej()))return +if(!j.d){s=i.y +if(s.gL().gal().an===1){r=s.gL().gal().R.at +r.toString +q=new A.j(r-j.f,0)}else{r=s.gL().gal().R.at +r.toString +q=new A.j(0,r-j.f)}r=j.gSs() +switch(A.b8(r==null?B.ba:r).a){case 0:r=new A.j(j.gqi()-j.e,0) +break +case 1:r=new A.j(0,j.gqi()-j.e) +break +default:r=null}p=a.a +o=p.a0(0,a.r) +n=a.x +if(A.xM(n)===2){s.gL().gal().xc(B.aj,o.a0(0,q).a0(0,r),p) +switch(a.f){case B.b4:case B.c4:case B.at:case B.bu:return j.ut(p) +case B.bG:case B.bf:case null:case void 0:return}}if(A.xM(n)===3)switch(A.aM().a){case 0:case 1:case 2:switch(a.f){case B.bG:case B.bf:return j.Gd(B.aj,o.a0(0,q).a0(0,r),p) +case B.b4:case B.c4:case B.at:case B.bu:case null:case void 0:break}return +case 3:return j.SA(B.aj,o.a0(0,q).a0(0,r),p) +case 5:case 4:return j.Gd(B.aj,o.a0(0,q).a0(0,r),p)}switch(A.aM().a){case 2:switch(a.f){case B.bG:case B.bf:return s.gL().gal().xb(B.aj,o.a0(0,q).a0(0,r),p) +case B.b4:case B.c4:case B.at:case B.bu:case null:case void 0:break}return +case 0:case 1:switch(a.f){case B.bG:case B.bf:case B.b4:case B.c4:return s.gL().gal().xb(B.aj,o.a0(0,q).a0(0,r),p) +case B.at:case B.bu:if(s.gL().gal().cb){s.gL().gal().fG(B.aj,p) +return j.ut(p)}break +case null:case void 0:break}return +case 4:case 3:case 5:return s.gL().gal().xb(B.aj,o.a0(0,q).a0(0,r),p)}}s=j.r +if(s.a!==s.b)s=A.aM()!==B.L&&A.aM()!==B.aY +else s=!0 +if(s)return j.q_(a.a,B.aj) +i=i.y +m=i.gL().a.c.a.b +s=a.a +l=i.gL().gal().fF(s) +r=j.r +p=r.c +n=l.a +k=pp +if(k&&m.c===p){s=i.gL() +s.toString +s.h8(i.gL().a.c.a.io(A.c8(B.j,j.r.d,n,!1)),B.aj)}else if(!k&&n!==p&&m.c!==p){s=i.gL() +s.toString +s.h8(i.gL().a.c.a.io(A.c8(B.j,j.r.c,n,!1)),B.aj)}else j.q_(s,B.aj)}, +at5(a){var s=this +if(s.b&&A.xM(a.e)===2)s.a.y.gL().i4() +if(s.d)s.r=null +s.Qy()}} +A.amR.prototype={ +$1(a){var s,r +if(a){s=this.a.a.y.gL().gal() +r=s.eP +r.toString +s.fG(B.fv,r) +B.vP.iu("Scribe.startStylusHandwriting",t.H)}}, +$S:125} +A.Et.prototype={ +ac(){return new A.ID()}} +A.ID.prototype={ +adQ(){this.a.c.$0()}, +adP(){this.a.d.$0()}, +ak7(a){var s +this.a.e.$1(a) +s=a.d +if(A.xM(s)===2){s=this.a.ch.$1(a) +return s}if(A.xM(s)===3){s=this.a.CW.$1(a) +return s}}, +ak8(a){if(A.xM(a.d)===1){this.a.y.$1(a) +this.a.Q.$0()}else this.a.toString}, +ak6(){this.a.z.$0()}, +abx(a){this.a.cx.$1(a)}, +aby(a){this.a.cy.$1(a)}, +abu(a){this.a.db.$1(a)}, +aa0(a){var s=this.a.f +if(s!=null)s.$1(a)}, +a9Z(a){var s=this.a.r +if(s!=null)s.$1(a)}, +aci(a){this.a.as.$1(a)}, +acg(a){this.a.at.$1(a)}, +ace(a){this.a.ax.$1(a)}, +acc(){this.a.ay.$0()}, +H(a){var s,r,q=this,p=A.w(t.u,t.xR) +p.m(0,B.iW,new A.cr(new A.azi(q),new A.azj(q),t.UN)) +q.a.toString +p.m(0,B.mm,new A.cr(new A.azk(q),new A.azl(q),t.jn)) +q.a.toString +switch(A.aM().a){case 0:case 1:case 2:p.m(0,B.YM,new A.cr(new A.azm(q),new A.azn(q),t.hg)) +break +case 3:case 4:case 5:p.m(0,B.Yo,new A.cr(new A.azo(q),new A.azp(q),t.Qm)) +break}s=q.a +if(s.f!=null||s.r!=null)p.m(0,B.Y1,new A.cr(new A.azq(q),new A.azr(q),t.C1)) +s=q.a +r=s.dy +return new A.iB(s.fr,p,r,!0,null)}} +A.azi.prototype={ +$0(){return A.am3(this.a,-1,null)}, +$S:99} +A.azj.prototype={ +$1(a){var s=this.a.a +a.a9=s.w +a.ab=s.x}, +$S:97} +A.azk.prototype={ +$0(){return A.aby(this.a,A.cn([B.at],t.E))}, +$S:126} +A.azl.prototype={ +$1(a){var s=this.a +a.p3=s.gach() +a.p4=s.gacf() +a.RG=s.gacd() +a.p1=s.gacb()}, +$S:198} +A.azm.prototype={ +$0(){var s=null,r=t.S +return new A.kK(B.a9,B.fP,A.aP(r),s,s,0,s,s,s,s,s,s,A.w(r,t.g),A.dj(r),this.a,s,A.JW(),A.w(r,t.E))}, +$S:535} +A.azn.prototype={ +$1(a){var s +a.at=B.k4 +a.ch=A.aM()!==B.L +s=this.a +a.AL$=s.gQt() +a.AM$=s.gQs() +a.CW=s.gTq() +a.cy=s.gQ4() +a.db=s.gQ5() +a.dx=s.gQ3() +a.cx=s.gTr() +a.dy=s.gTp()}, +$S:536} +A.azo.prototype={ +$0(){var s=null,r=t.S +return new A.kL(B.a9,B.fP,A.aP(r),s,s,0,s,s,s,s,s,s,A.w(r,t.g),A.dj(r),this.a,s,A.JW(),A.w(r,t.E))}, +$S:537} +A.azp.prototype={ +$1(a){var s +a.at=B.k4 +s=this.a +a.AL$=s.gQt() +a.AM$=s.gQs() +a.CW=s.gTq() +a.cy=s.gQ4() +a.db=s.gQ5() +a.dx=s.gQ3() +a.cx=s.gTr() +a.dy=s.gTp()}, +$S:538} +A.azq.prototype={ +$0(){return A.aU5(this.a,null)}, +$S:539} +A.azr.prototype={ +$1(a){var s=this.a,r=s.a +a.at=r.f!=null?s.gaa_():null +a.ch=r.r!=null?s.ga9Y():null}, +$S:540} +A.zg.prototype={ +Z(a,b){var s=this +if(s.M$<=0)$.aa.c1$.push(s) +if(s.ay===B.jI)A.dc(null,t.H) +s.a1E(0,b)}, +J(a,b){var s=this +s.a1F(0,b) +if(!s.w&&s.M$<=0)$.aa.iC(s)}, +qX(a){switch(a.a){case 1:A.dc(null,t.H) +break +case 0:case 2:case 3:case 4:break}}, +l(){$.aa.iC(this) +this.w=!0 +this.cY()}} +A.uc.prototype={ +K(){return"ClipboardStatus."+this.b}} +A.jO.prototype={ +Ja(a){return this.aqp(a)}, +aqp(a){var s=0,r=A.H(t.H) +var $async$Ja=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:return A.F(null,r)}}) +return A.G($async$Ja,r)}} +A.TM.prototype={} +A.JE.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.JF.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.Ew.prototype={} +A.S3.prototype={ +pu(a){return new A.ak(0,a.b,0,a.d)}, +px(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.b.b>=b.b +s=o?p.b:p.c +r=A.aXG(s.a,b.a,a.a) +q=s.b +return new A.j(r,o?Math.max(0,q-b.b):q)}, +m6(a){return!this.b.j(0,a.b)||!this.c.j(0,a.c)||this.d!=a.d}} +A.wn.prototype={ +ac(){return new A.a_z(new A.ct(!0,$.aw()))}} +A.a_z.prototype={ +be(){var s,r=this +r.dc() +s=r.c +s.toString +r.d=A.aEa(s) +r.U_()}, +aH(a){this.b0(a) +this.U_()}, +l(){var s=this.e +s.P$=$.aw() +s.M$=0 +this.aD()}, +U_(){var s=this.d&&this.a.c +this.e.sq(0,s)}, +H(a){var s=this.e +return new A.G_(s.a,s,this.a.d,null)}} +A.G_.prototype={ +ce(a){return this.f!==a.f}} +A.f6.prototype={ +v5(a){var s,r=this +r.dV$=new A.wm(a) +r.cf() +r.hg() +s=r.dV$ +s.toString +return s}, +hg(){var s,r=this.dV$ +if(r==null)r=null +else{s=this.bq$ +s=!s.gq(s) +r.sK2(0,s) +r=s}return r}, +cf(){var s,r=this,q=r.c +q.toString +s=A.aKv(q) +q=r.bq$ +if(s===q)return +if(q!=null)q.J(0,r.ghf()) +s.Z(0,r.ghf()) +r.bq$=s}} +A.dC.prototype={ +v5(a){var s,r,q=this +if(q.aW$==null)q.cf() +if(q.de$==null)q.de$=A.aP(t.DH) +s=new A.a0p(q,a) +r=q.aW$ +s.sK2(0,!r.gq(r)) +q.de$.E(0,s) +return s}, +ey(){var s,r,q,p +if(this.de$!=null){s=this.aW$ +r=!s.gq(s) +for(s=this.de$,s=A.cl(s,s.r,A.n(s).c),q=s.$ti.c;s.u();){p=s.d;(p==null?q.a(p):p).sK2(0,r)}}}, +cf(){var s,r=this,q=r.c +q.toString +s=A.aKv(q) +q=r.aW$ +if(s===q)return +if(q!=null)q.J(0,r.gek()) +s.Z(0,r.gek()) +r.aW$=s}} +A.a0p.prototype={ +l(){this.w.de$.F(0,this) +this.MY()}} +A.Fw.prototype={ +Z(a,b){}, +J(a,b){}, +$iac:1, +gq(){return!0}} +A.Sa.prototype={ +H(a){A.alX(new A.a2U(this.c,this.d.C())) +return this.e}} +A.EE.prototype={ +akl(a){var s,r=this +r.giA() +r.T(new A.an2(r,a)) +s=r.AN$ +s===$&&A.a() +s.bP(0)}, +TA(a){var s,r=this +r.giA() +switch(r.gq(r)){case!1:r.giA().$1(!0) +break +case!0:s=r.giA() +r.ga_i() +s.$1(!1) +break +case null:case void 0:r.giA().$1(!1) +break}r.c.gU().ta(B.ma)}, +akj(){return this.TA(null)}, +Qq(a){var s,r=this +if(r.vx$!=null)r.T(new A.an3(r)) +s=r.AN$ +s===$&&A.a() +s.dg(0)}, +adL(){return this.Qq(null)}, +abQ(a){var s,r=this +if(a!==r.vy$){r.T(new A.an0(r,a)) +s=r.IU$ +if(a){s===$&&A.a() +s.bP(0)}else{s===$&&A.a() +s.dg(0)}}}, +ac_(a){var s,r=this +if(a!==r.vz$){r.T(new A.an1(r,a)) +s=r.IS$ +if(a){s===$&&A.a() +s.bP(0)}else{s===$&&A.a() +s.dg(0)}}}, +gkd(){var s,r=this,q=A.aP(t.l) +r.giA() +if(r.vz$)q.E(0,B.A) +if(r.vy$)q.E(0,B.E) +s=r.gq(r) +if(s)q.E(0,B.V) +return q}, +amq(a,b,c,d,e){var s,r,q,p=this,o=null,n=A.ip(o,o,o,d,e),m=p.IV$ +if(m===$){s=A.ab([B.mk,new A.d4(p.gTz(),new A.ba(A.b([],t.e),t.c),t.wY)],t.u,t.od) +p.IV$!==$&&A.aA() +p.IV$=s +m=s}p.giA() +r=c.a.$1(p.gkd()) +if(r==null)r=B.b5 +p.giA() +p.giA() +p.giA() +p.giA() +q=p.gadK() +p.giA() +p.giA() +return A.aHZ(m,!1,A.qf(o,A.bG(o,o,n,!1,o,!0,!1,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,B.z,o),B.a9,!1,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p.gTz(),q,p.gakk(),q,o,o,o),!0,b,r,o,p.gabP(),p.gabZ())}} +A.an2.prototype={ +$0(){this.a.vx$=this.b.b}, +$S:0} +A.an3.prototype={ +$0(){this.a.vx$=null}, +$S:0} +A.an0.prototype={ +$0(){this.a.vy$=this.b}, +$S:0} +A.an1.prototype={ +$0(){this.a.vz$=this.b}, +$S:0} +A.ED.prototype={ +sby(a,b){var s=this,r=s.a +if(b===r)return +if(r!=null)r.a.J(0,s.gcV()) +b.a.Z(0,s.gcV()) +s.a=b +s.ak()}, +saup(a){var s=this,r=s.b +if(a===r)return +if(r!=null)r.a.J(0,s.gcV()) +a.a.Z(0,s.gcV()) +s.b=a +s.ak()}, +saur(a){var s=this,r=s.c +if(a===r)return +if(r!=null)r.a.J(0,s.gcV()) +a.a.Z(0,s.gcV()) +s.c=a +s.ak()}, +saus(a){var s=this,r=s.d +if(a===r)return +if(r!=null)r.a.J(0,s.gcV()) +a.a.Z(0,s.gcV()) +s.d=a +s.ak()}, +salB(a){if(J.d(this.e,a))return +this.e=a +this.ak()}, +sark(a){if(J.d(this.f,a))return +this.f=a +this.ak()}, +sarl(a){if(a.j(0,this.r))return +this.r=a +this.ak()}, +sauq(a){if(a.j(0,this.w))return +this.w=a +this.ak()}, +sarf(a){if(a.j(0,this.x))return +this.x=a +this.ak()}, +sapH(a){if(a.j(0,this.y))return +this.y=a +this.ak()}, +snH(a){if(a===this.z)return +this.z=a +this.ak()}, +saoT(a){if(J.d(a,this.Q))return +this.Q=a +this.ak()}, +sp5(a){if(a===this.as)return +this.as=a +this.ak()}, +sarT(a){if(a===this.at)return +this.at=a +this.ak()}, +l(){var s=this,r=s.a +if(r!=null)r.a.J(0,s.gcV()) +r=s.b +if(r!=null)r.a.J(0,s.gcV()) +r=s.c +if(r!=null)r.a.J(0,s.gcV()) +r=s.d +if(r!=null)r.a.J(0,s.gcV()) +s.cY()}, +ew(a){return!0}, +vO(a){return null}, +gxe(){return null}, +Dc(a){return!1}, +k(a){return"#"+A.bi(this)}} +A.yt.prototype={ +ac(){return new A.F5()}, +glL(){return this.c}} +A.F5.prototype={ +aw(){this.aK() +this.a.glL().Z(0,this.gF6())}, +aH(a){var s,r=this +r.b0(a) +if(!r.a.glL().j(0,a.glL())){s=r.gF6() +a.glL().J(0,s) +r.a.glL().Z(0,s)}}, +l(){this.a.glL().J(0,this.gF6()) +this.aD()}, +ab6(){if(this.c==null)return +this.T(new A.aop())}, +H(a){return this.a.H(a)}} +A.aop.prototype={ +$0(){}, +$S:0} +A.Ra.prototype={ +H(a){var s=this,r=t.so.a(s.c),q=r.gq(r) +if(s.e===B.b_)q=new A.j(-q.a,q.b) +return A.aI2(s.r,s.f,q)}} +A.BC.prototype={ +H(a){var s=this,r=t.o.a(s.c),q=s.e.$1(r.gq(r)) +r=r.gje()?s.r:null +return A.EJ(s.f,s.w,r,q,!0)}} +A.Qn.prototype={} +A.Qh.prototype={} +A.R4.prototype={ +H(a){var s,r,q=this,p=null,o=q.e +switch(o.a){case 0:s=new A.ff(q.f,-1) +break +case 1:s=new A.ff(-1,q.f) +break +default:s=p}if(o===B.af){r=t.o.a(q.c) +r=Math.max(r.gq(r),0)}else r=p +if(o===B.b1){o=t.o.a(q.c) +o=Math.max(o.gq(o),0)}else o=p +return A.LB(new A.eH(s,o,r,q.w,p),B.B,p)}} +A.d5.prototype={ +aG(a){var s=null,r=new A.PG(s,s,s,s,s,new A.aO(),A.ah()) +r.aF() +r.saU(s) +r.scR(0,this.e) +r.szG(this.f) +return r}, +aP(a,b){b.scR(0,this.e) +b.szG(this.f)}} +A.M5.prototype={ +H(a){var s=this.e,r=s.a +return A.zD(this.r,s.b.a8(0,r.gq(r)),B.dM)}} +A.nH.prototype={ +glL(){return this.c}, +H(a){return this.mG(a,this.f)}, +mG(a,b){return this.e.$2(a,b)}} +A.Kw.prototype={ +glL(){return A.nH.prototype.glL.call(this)}, +gHx(){return this.e}, +mG(a,b){return this.gHx().$2(a,b)}} +A.ws.prototype={ +ac(){var s=this.$ti +return new A.wt(new A.a05(A.b([],s.i("D<1>")),s.i("a05<1>")),s.i("wt<1>"))}} +A.wt.prototype={ +gaka(){var s=this.e +s===$&&A.a() +return s}, +guA(){var s=this.a.w,r=this.x +if(r==null){s=$.aw() +s=new A.EP(new A.aS(s),new A.aS(s),B.YQ,s) +this.x=s}else s=r +return s}, +wI(){var s,r,q,p=this,o=p.d +if(o.gv6()==null)return +s=p.f +r=s==null +q=r?null:s.b!=null +if(q===!0){if(!r)s.aR(0) +p.Gw(0,o.gv6())}else p.Gw(0,o.wI()) +p.zi()}, +wu(){this.Gw(0,this.d.wu()) +this.zi()}, +zi(){var s=this.guA(),r=this.d,q=r.a,p=q.length!==0&&r.b>0 +s.sq(0,new A.wu(p,r.gVv())) +if(A.aM()!==B.L)return +s=$.a2c() +if(s.b===this){q=q.length!==0&&r.b>0 +r=r.gVv() +s=s.a +s===$&&A.a() +s.cJ("UndoManager.setUndoState",A.ab(["canUndo",q,"canRedo",r],t.N,t.y),t.H)}}, +akt(a){this.wI()}, +ahX(a){this.wu()}, +Gw(a,b){var s=this +if(b==null)return +if(J.d(b,s.w))return +s.w=b +s.r=!0 +try{s.a.f.$1(b)}finally{s.r=!1}}, +RL(){var s,r,q=this +if(J.d(q.a.c.a,q.w))return +if(q.r)return +s=q.a +s=s.d.$2(q.w,s.c.a) +if(!(s==null?!0:s))return +s=q.a +r=s.e.$1(s.c.a) +if(r==null)r=q.a.c.a +if(J.d(r,q.w))return +q.w=r +q.f=q.akb(r)}, +Q6(){var s,r=this +if(!r.a.r.gbQ()){s=$.a2c() +if(s.b===r)s.b=null +return}$.a2c().b=r +r.zi()}, +aqr(a){switch(a.a){case 0:this.wI() +break +case 1:this.wu() +break}}, +aw(){var s,r=this +r.aK() +s=A.b0q(B.d2,new A.anh(r),r.$ti.c) +r.e!==$&&A.bw() +r.e=s +r.RL() +r.a.c.Z(0,r.gFU()) +r.Q6() +r.a.r.Z(0,r.gF9()) +r.guA().w.Z(0,r.ga_j()) +r.guA().x.Z(0,r.gZB())}, +aH(a){var s,r,q=this +q.b0(a) +s=a.c +if(q.a.c!==s){r=q.d +B.b.a5(r.a) +r.b=-1 +r=q.gFU() +s.J(0,r) +q.a.c.Z(0,r)}s=a.r +if(q.a.r!==s){r=q.gF9() +s.J(0,r) +q.a.r.Z(0,r)}q.a.toString}, +l(){var s=this,r=$.a2c() +if(r.b===s)r.b=null +s.a.c.J(0,s.gFU()) +s.a.r.J(0,s.gF9()) +s.guA().w.J(0,s.ga_j()) +s.guA().x.J(0,s.gZB()) +r=s.x +if(r!=null)r.l() +r=s.f +if(r!=null)r.aR(0) +s.aD()}, +H(a){var s=t.e,r=t.c +return A.tH(A.ab([B.Yw,new A.d4(this.gaks(),new A.ba(A.b([],s),r),t._n).dk(a),B.Yh,new A.d4(this.gahW(),new A.ba(A.b([],s),r),t.fN).dk(a)],t.u,t.od),this.a.x)}, +akb(a){return this.gaka().$1(a)}} +A.anh.prototype={ +$1(a){var s=this.a +s.d.dn(a) +s.zi()}, +$S(){return this.a.$ti.i("~(1)")}} +A.wu.prototype={ +k(a){return"UndoHistoryValue(canUndo: "+this.a+", canRedo: "+this.b+")"}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.wu&&b.a===this.a&&b.b===this.b}, +gB(a){var s=this.a?519018:218159 +return A.T(s,this.b?519018:218159,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.EP.prototype={ +l(){var s=this.w,r=$.aw() +s.P$=r +s.M$=0 +s=this.x +s.P$=r +s.M$=0 +this.cY()}} +A.a05.prototype={ +gv6(){var s=this.a +return s.length===0?null:s[this.b]}, +gVv(){var s=this.a.length +return s!==0&&this.b"))}} +A.xT.prototype={ +aw(){var s=this +s.aK() +s.d=s.a.c.gq(0) +s.a.c.a.Z(0,s.gGU())}, +aH(a){var s,r,q=this +q.b0(a) +s=a.c +if(s!==q.a.c){r=q.gGU() +s.a.J(0,r) +q.d=q.a.c.gq(0) +q.a.c.a.Z(0,r)}}, +l(){this.a.c.a.J(0,this.gGU()) +this.aD()}, +alg(){this.T(new A.azY(this))}, +H(a){var s,r=this.a +r.toString +s=this.d +s===$&&A.a() +return r.d.$3(a,s,r.e)}} +A.azY.prototype={ +$0(){var s=this.a +s.d=s.a.c.gq(0)}, +$S:0} +A.EU.prototype={ +ac(){return new A.IZ(A.a8j(!0,null,!1),A.ahr())}} +A.IZ.prototype={ +aw(){var s=this +s.aK() +$.aa.c1$.push(s) +s.d.Z(0,s.gSr())}, +l(){var s,r=this +$.aa.iC(r) +s=r.d +s.J(0,r.gSr()) +s.l() +r.aD()}, +aiS(){var s,r=this.d +if(this.f===r.gbQ()||!r.gbQ())return +$.aa.toString +r=$.aR() +s=this.a.c +r.gzm().VA(s.a,B.ms)}, +Wq(a){var s,r,q=this,p=a.b.a +switch(p){case 1:s=a.a===q.a.c.a +break +case 0:s=!1 +break +default:s=null}q.f=s +if(a.a!==q.a.c.a)return +switch(p){case 1:switch(a.c.a){case 1:r=q.e.Pb(q.d,!0) +break +case 2:r=q.e.EN(q.d,!0,!0) +break +case 0:r=q.d +break +default:r=null}r.iD() +break +case 0:$.aa.an$.d.b.kj(!1) +break}}, +H(a){var s=this.a,r=s.c,q=s.e,p=s.f +return new A.PB(r,new A.GJ(r,A.aDa(A.aL7(s.d,this.d,!1),this.e),null),q,p,null)}} +A.PB.prototype={ +H(a){var s=this,r=s.c,q=s.e,p=s.f +return new A.Hg(r,new A.ahp(s),q,p,new A.FO(r,q,p,t.Q8))}} +A.ahp.prototype={ +$2(a,b){var s=this.a +return new A.tv(s.c,new A.H6(b,s.d,null),null)}, +$S:544} +A.Hg.prototype={ +bJ(a){return new A.Y8(this,B.Z)}, +aG(a){return this.f}} +A.Y8.prototype={ +glg(){var s=this.e +s.toString +t.bR.a(s) +return s.e}, +gU(){return t.Ju.a(A.b_.prototype.gU.call(this))}, +GV(){var s,r,q,p,o,n,m,l=this +try{n=l.e +n.toString +s=t.bR.a(n).d.$2(l,l.glg()) +l.a2=l.dD(l.a2,s,null)}catch(m){r=A.a1(m) +q=A.aH(m) +n=A.br("building "+l.k(0)) +p=new A.bO(r,q,"widgets library",n,null,!1) +A.d6(p) +o=A.Ac(p) +l.a2=l.dD(null,o,l.c)}}, +ea(a,b){var s,r=this +r.nR(a,b) +s=t.Ju +r.glg().sKP(s.a(A.b_.prototype.gU.call(r))) +r.Nx() +r.GV() +s.a(A.b_.prototype.gU.call(r)).Kw() +if(r.glg().at!=null)s.a(A.b_.prototype.gU.call(r)).x8()}, +Ny(a){var s,r,q,p=this +if(a==null)a=A.aKR(p) +s=p.glg() +a.CW.E(0,s) +r=a.cx +if(r!=null)s.av(r) +s=$.m1 +s.toString +r=t.Ju.a(A.b_.prototype.gU.call(p)) +q=r.fx +s.cx$.m(0,q.a,r) +r.sqN(A.aY5(q)) +p.S=a}, +Nx(){return this.Ny(null)}, +OC(){var s,r=this,q=r.S +if(q!=null){s=$.m1 +s.toString +s.cx$.F(0,t.Ju.a(A.b_.prototype.gU.call(r)).fx.a) +s=r.glg() +q.CW.F(0,s) +if(q.cx!=null)s.ai(0) +r.S=null}}, +be(){var s,r=this +r.Ds() +if(r.S==null)return +s=A.aKR(r) +if(s!==r.S){r.OC() +r.Ny(s)}}, +jj(){this.Dz() +this.GV()}, +bA(){var s=this +s.tl() +s.glg().sKP(t.Ju.a(A.b_.prototype.gU.call(s))) +s.Nx()}, +dJ(){this.OC() +this.glg().sKP(null) +this.MS()}, +cm(a,b){this.ma(0,b) +this.GV()}, +bg(a){var s=this.a2 +if(s!=null)a.$1(s)}, +ir(a){this.a2=null +this.jv(a)}, +jc(a,b){t.Ju.a(A.b_.prototype.gU.call(this)).saU(a)}, +jh(a,b,c){}, +k_(a,b){t.Ju.a(A.b_.prototype.gU.call(this)).saU(null)}, +l1(){var s=this,r=s.glg(),q=s.e +q.toString +if(r!==t.bR.a(q).e){r=s.glg() +q=r.at +if(q!=null)q.l() +r.at=null +B.b.a5(r.r) +B.b.a5(r.z) +B.b.a5(r.Q) +r.ch.a5(0)}s.MT()}} +A.tv.prototype={ +ce(a){return this.f!==a.f}} +A.H6.prototype={ +ce(a){return this.f!==a.f}} +A.FO.prototype={ +j(a,b){var s=this +if(b==null)return!1 +if(J.U(b)!==A.r(s))return!1 +return s.$ti.b(b)&&b.a===s.a&&b.b===s.b&&b.c===s.c}, +gB(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a){return"[_DeprecatedRawViewKey "+("#"+A.bi(this.a))+"]"}} +A.a1F.prototype={} +A.EX.prototype={ +aG(a){var s=this,r=s.e,q=A.anD(a,r),p=A.ah() +r=new A.CW(s.r,r,q,s.w,250,B.jF,s.Q,s.as,p,0,null,null,new A.aO(),A.ah()) +r.aF() +r.O(0,null) +q=r.a4$ +if(q!=null)r.du=q +return r}, +aP(a,b){var s=this,r=s.e +b.shi(r) +r=A.anD(a,r) +b.sWd(r) +b.salV(s.r) +b.sck(0,s.w) +b.samv(s.y) +b.samw(B.jF) +b.sZ9(s.Q) +b.sjH(s.as)}, +bJ(a){return new A.a0i(A.dj(t.h),this,B.Z)}} +A.a0i.prototype={ +gU(){return t.E1.a(A.hW.prototype.gU.call(this))}, +ea(a,b){var s=this +s.S=!0 +s.a2p(a,b) +s.TN() +s.S=!1}, +cm(a,b){var s=this +s.S=!0 +s.a2r(0,b) +s.TN() +s.S=!1}, +TN(){var s=this,r=s.e +r.toString +t.Dg.a(r) +r=t.E1 +if(!s.gim(0).ga7(0)){r.a(A.hW.prototype.gU.call(s)).saV(t.IT.a(s.gim(0).ga3(0).gU())) +s.a9=0}else{r.a(A.hW.prototype.gU.call(s)).saV(null) +s.a9=null}}, +jc(a,b){var s=this +s.Mx(a,b) +if(!s.S&&b.b===s.a9)t.E1.a(A.hW.prototype.gU.call(s)).saV(t.IT.a(a))}, +jh(a,b,c){this.My(a,b,c)}, +k_(a,b){var s=this +s.a2q(a,b) +if(!s.S&&t.E1.a(A.hW.prototype.gU.call(s)).du===a)t.E1.a(A.hW.prototype.gU.call(s)).saV(null)}} +A.QY.prototype={ +aG(a){var s=this,r=s.e,q=A.anD(a,r),p=A.ah() +r=new A.Q2(r,q,s.r,250,B.jF,s.w,s.x,p,0,null,null,new A.aO(),A.ah()) +r.aF() +r.O(0,null) +return r}, +aP(a,b){var s=this,r=s.e +b.shi(r) +r=A.anD(a,r) +b.sWd(r) +b.sck(0,s.r) +b.sZ9(s.w) +b.sjH(s.x)}} +A.a1G.prototype={} +A.a1H.prototype={} +A.Sz.prototype={ +H(a){var s=null,r=this.e,q=new A.a0j(r,!1,A.kn(new A.MK(!r,this.c,s),!1,s),s) +return new A.J_(r,q,s)}} +A.anE.prototype={ +$1(a){this.a.a=a +return!1}, +$S:22} +A.J_.prototype={ +ce(a){return this.f!==a.f}} +A.a0j.prototype={ +aG(a){var s=new A.YO(this.e,!1,null,new A.aO(),A.ah()) +s.aF() +s.saU(null) +return s}, +aP(a,b){b.savU(0,this.e) +b.sasw(!1)}} +A.YO.prototype={ +savU(a,b){if(b===this.A)return +this.A=b +this.aC()}, +sasw(a){return}, +eS(a){var s=this.A +if(s)this.nQ(a)}, +aA(a,b){if(!this.A)return +this.i6(a,b)}} +A.wA.prototype={ +zM(a,b,c){var s,r=this.a,q=r!=null +if(q)a.rD(r.x_(c)) +b.toString +s=b[a.gZe()] +r=s.a +a.zz(r.a,r.b,this.b,s.d,s.c) +if(q)a.dB()}, +bg(a){return a.$1(this)}, +a_t(a){return!0}, +LD(a,b){var s=b.a +if(a.a===s)return this +b.a=s+1 +return null}, +VI(a,b){var s=b.a +b.a=s+1 +return a-s===0?65532:null}, +b5(a,b){var s,r,q,p,o,n=this +if(n===b)return B.cl +if(A.r(b)!==A.r(n))return B.bo +s=n.a +r=s==null +q=b.a +if(r!==(q==null))return B.bo +t.a7.a(b) +if(!n.e.pO(0,b.e)||n.b!==b.b)return B.bo +if(!r){q.toString +p=s.b5(0,q) +o=p.a>0?p:B.cl +if(o===B.bo)return o}else o=B.cl +return o}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.U(b)!==A.r(r))return!1 +if(!r.Mv(0,b))return!1 +s=!1 +if(b instanceof A.mB)if(b.e.pO(0,r.e))s=b.b===r.b +return s}, +gB(a){var s=this +return A.T(A.hd.prototype.gB.call(s,0),s.e,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.anM.prototype={ +$1(a){var s,r,q,p,o=this,n=null,m=a.a,l=m==null?n:m.r +$label0$0:{if(typeof l=="number"){m=l!==B.b.gae(o.b) +s=l}else{s=n +m=!1}if(m){m=s +break $label0$0}m=n +break $label0$0}r=m!=null +if(r)o.b.push(m) +if(a instanceof A.mB){q=B.b.gae(o.b) +p=q===0?0:o.c.aJ(0,q)/q +m=o.a.a++ +o.d.push(new A.a0m(a,A.bG(n,n,new A.Tm(a,p,a.e,n),!1,n,n,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,new A.lR(m,"PlaceholderSpanIndexSemanticsTag("+m+")"),n,n,B.z,n),n))}a.a_t(o) +if(r)o.b.pop() +return!0}, +$S:94} +A.a0m.prototype={ +qA(a){var s=a.b +s.toString +t.ot.a(s).b=this.f}} +A.Tm.prototype={ +aG(a){var s=this.e +s=new A.HE(this.f,s.b,s.c,null,new A.aO(),A.ah()) +s.aF() +return s}, +aP(a,b){var s=this.e +b.sfO(s.b) +b.sks(s.c) +b.sCV(0,this.f)}} +A.HE.prototype={ +sCV(a,b){if(b===this.n)return +this.n=b +this.a_()}, +sfO(a){if(this.I===a)return +this.I=a +this.a_()}, +sks(a){return}, +b6(a){var s=this.D$ +s=s==null?null:s.ap(B.b8,a/this.n,s.gbL()) +if(s==null)s=0 +return s*this.n}, +b7(a){var s=this.D$ +s=s==null?null:s.ap(B.ab,a/this.n,s.gbj()) +if(s==null)s=0 +return s*this.n}, +ba(a){var s=this.D$ +s=s==null?null:s.ap(B.aL,a/this.n,s.gbD()) +if(s==null)s=0 +return s*this.n}, +bb(a){var s=this.D$ +s=s==null?null:s.ap(B.aK,a/this.n,s.gbE()) +if(s==null)s=0 +return s*this.n}, +fk(a){var s=this.D$,r=s==null?null:s.k9(a) +$label0$0:{if(r==null){s=this.Dx(a) +break $label0$0}s=this.n*r +break $label0$0}return s}, +ds(a,b){var s=this.D$,r=s==null?null:s.eU(new A.ak(0,a.b/this.n,0,1/0),b) +return r==null?null:this.n*r}, +cE(a){var s=this.D$,r=s==null?null:s.ap(B.R,new A.ak(0,a.b/this.n,0,1/0),s.gc8()) +if(r==null)r=B.I +return a.b3(r.a6(0,this.n))}, +bx(){var s,r=this,q=r.D$ +if(q==null)return +s=t.k +q.c3(new A.ak(0,s.a(A.t.prototype.gW.call(r)).b/r.n,0,1/0),!0) +r.fy=s.a(A.t.prototype.gW.call(r)).b3(q.gt(0).a6(0,r.n))}, +cP(a,b){var s=this.n +b.nz(s,s,s,1)}, +aA(a,b){var s,r,q,p=this,o=p.D$ +if(o==null){p.ch.saB(0,null) +return}s=p.n +if(s===1){a.dm(o,b) +p.ch.saB(0,null) +return}r=p.cx +r===$&&A.a() +q=p.ch +q.saB(0,a.wr(r,b,A.qQ(s,s,1),new A.axi(o),t.zV.a(q.a)))}, +cz(a,b){var s,r=this.D$ +if(r==null)return!1 +s=this.n +return a.H7(new A.axh(r),b,A.qQ(s,s,1))}} +A.axi.prototype={ +$2(a,b){return a.dm(this.a,b)}, +$S:15} +A.axh.prototype={ +$2(a,b){return this.a.cp(a,b)}, +$S:18} +A.a15.prototype={ +av(a){var s +this.e1(a) +s=this.D$ +if(s!=null)s.av(a)}, +ai(a){var s +this.e2(0) +s=this.D$ +if(s!=null)s.ai(0)}} +A.T9.prototype={ +Yq(a){return!0}, +k(a){return"WidgetState.any"}, +$iSH:1} +A.bY.prototype={ +K(){return"WidgetState."+this.b}, +Yq(a){return a.p(0,this)}, +$iSH:1} +A.oC.prototype={$ibM:1} +A.tx.prototype={ +Y(a){return this.z.$1(a)}} +A.SF.prototype={ +A9(a){return this.Y(B.aO).A9(a)}, +$ibM:1} +A.J1.prototype={ +Y(a){return this.a.$1(a)}, +gAe(){return this.b}} +A.SE.prototype={$ibM:1} +A.We.prototype={ +Y(a){var s,r=this,q=r.a,p=q==null?null:q.Y(a) +q=r.b +s=q==null?null:q.Y(a) +q=p==null +if(q&&s==null)return null +if(q)return A.aX(new A.aW(s.a.dh(0),0,B.v,-1),s,r.c) +if(s==null)return A.aX(p,new A.aW(p.a.dh(0),0,B.v,-1),r.c) +return A.aX(p,s,r.c)}, +$ibM:1} +A.ib.prototype={ +Y(a){return this.x.$1(a)}} +A.SG.prototype={$ibM:1} +A.a0o.prototype={ +Y(a){return this.a2.$1(a)}} +A.bM.prototype={} +A.Gw.prototype={ +Y(a){var s,r=this,q=r.a,p=q==null?null:q.Y(a) +q=r.b +s=q==null?null:q.Y(a) +return r.d.$3(p,s,r.c)}, +$ibM:1} +A.bh.prototype={ +Y(a){return this.a.$1(a)}, +$ibM:1} +A.fV.prototype={ +Y(a){var s,r,q +for(s=this.a,s=new A.et(s,A.n(s).i("et<1,2>")).gag(0);s.u();){r=s.d +if(r.a.Yq(a))return r.b}try{this.$ti.c.a(null) +return null}catch(q){if(t.ns.b(A.a1(q))){s=this.$ti.c +throw A.e(A.bF("The current set of widget states is "+a.k(0)+'.\nNone of the provided map keys matched this set, and the type "'+A.bZ(s).k(0)+'" is non-nullable.\nConsider using "WidgetStateMapper<'+A.bZ(s).k(0)+'?>()", or adding the "WidgetState.any" key to this map.',null))}else throw q}}, +j(a,b){if(b==null)return!1 +return this.$ti.b(b)&&A.JR(this.a,b.a)}, +gB(a){return new A.qH(B.ne,B.ne,t.S6.bR(this.$ti.c).i("qH<1,2>")).it(0,this.a)}, +k(a){return"WidgetStateMapper<"+A.bZ(this.$ti.c).k(0)+">("+this.a.k(0)+")"}, +G(a,b){throw A.e(A.nk(A.b([A.kh('There was an attempt to access the "'+b.gYO().k(0)+'" field of a WidgetStateMapper<'+A.bZ(this.$ti.c).k(0)+"> object."),A.br(this.k(0)),A.br("WidgetStateProperty objects should only be used in places that document their support."),A.Ab('Double-check whether the map was used in a place that documents support for WidgetStateProperty objects. If so, please file a bug report. (The https://pub.dev/ page for a package contains a link to "View/report issues".)')],t.D)))}, +$ibM:1} +A.b2.prototype={ +Y(a){return this.a}, +k(a){var s="WidgetStatePropertyAll(",r=this.a +if(typeof r=="number")return s+A.j0(r)+")" +else return s+A.k(r)+")"}, +j(a,b){if(b==null)return!1 +return this.$ti.b(b)&&A.r(b)===A.r(this)&&J.d(b.a,this.a)}, +gB(a){return J.C(this.a)}, +$ibM:1} +A.SI.prototype={ +d7(a,b,c){var s=this.a +if(c?J.fF(s,b):J.mS(s,b))this.ak()}} +A.a0n.prototype={} +A.F0.prototype={ +ac(){return new A.a0r()}} +A.a0r.prototype={ +be(){var s,r=this +r.dc() +r.a.toString +s=r.c +s.toString +r.d=A.vb(s,null,t.X) +r.a.toString}, +aH(a){this.b0(a) +this.a.toString}, +l(){this.a.toString +this.aD()}, +H(a){return this.a.c}} +A.a3E.prototype={ +a5H(a){var s=A.lI(null,t.ax) +this.c!==$&&A.bw() +this.c=new A.anH(this.b,a.f,A.w(t.N,t.UL),s)}, +o6(a,b,c,d,e){return this.ahM(a,b,c,d,!0)}, +ahM(a2,a3,a4,a5,a6){var s=0,r=A.H(t.H),q=1,p=[],o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 +var $async$o6=A.B(function(a7,a8){if(a7===1){p.push(a8) +s=q}for(;;)switch(s){case 0:a4=a4 +a6=a6 +if(a4==null)a4=a3 +m=null +q=3 +s=6 +return A.v(n.b.rY(0,a4,!1),$async$o6) +case 6:m=a8 +if(m!=null){a2.E(0,m) +a6=!1}q=1 +s=5 +break +case 3:q=2 +a0=p.pop() +l=A.a1(a0) +$.a2i() +A.k(l) +s=5 +break +case 2:s=1 +break +case 5:s=m==null||m.d.JD(new A.ep(Date.now(),0,!1))?7:8 +break +case 7:q=10 +h=n.c +h===$&&A.a() +g=a4 +f=h.c +e=f.h(0,g) +if(e==null){d=t.cL +c=new A.kS(null,null,t.jx) +b=new A.a0t(B.nu) +e=new A.yJ(b,c,A.aSI(A.aRz(b,c,!1,d),!0,d),t.UL) +f.m(0,g,e) +h.o_(a3,g,a5)}h=new A.p1(A.mK(new A.oF(e,e.$ti.i("oF<1>")),"stream",t.K)) +q=13 +case 16:s=18 +return A.v(h.u(),$async$o6) +case 18:if(!a8){s=17 +break}k=h.gN(0) +if(k instanceof A.uw&&a6){g=k +f=a2.b +if(f>=4)A.a0(a2.jx()) +if((f&1)!==0)a2.iN(g) +else if((f&3)===0){f=a2.tJ() +g=new A.mq(g) +a=f.c +if(a==null)f.b=f.c=g +else{a.slN(0,g) +f.c=g}}}if(k instanceof A.nj){g=k +f=a2.b +if(f>=4)A.a0(a2.jx()) +if((f&1)!==0)a2.iN(g) +else if((f&3)===0){f=a2.tJ() +g=new A.mq(g) +a=f.c +if(a==null)f.b=f.c=g +else{a.slN(0,g) +f.c=g}}}s=16 +break +case 17:o.push(15) +s=14 +break +case 13:o=[10] +case 14:q=10 +s=19 +return A.v(h.aR(0),$async$o6) +case 19:s=o.pop() +break +case 15:q=1 +s=12 +break +case 10:q=9 +a1=p.pop() +j=A.a1(a1) +$.a2i() +A.k(j) +if(m==null&&(a2.b&1)!==0)a2.UQ(j) +s=m!=null&&j instanceof A.AN&&j.c===404?20:21 +break +case 20:if((a2.b&1)!==0)a2.UQ(j) +s=22 +return A.v(n.Cf(a4),$async$o6) +case 22:case 21:s=12 +break +case 9:s=1 +break +case 12:case 8:a2.aO(0) +return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$o6,r)}, +Cf(a){return this.auM(a)}, +auM(a){var s=0,r=A.H(t.H),q=this +var $async$Cf=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=2 +return A.v(q.b.a__(a),$async$Cf) +case 2:return A.F(null,r)}}) +return A.G($async$Cf,r)}} +A.a5r.prototype={} +A.Ux.prototype={} +A.aab.prototype={} +A.a3F.prototype={ +rY(a,b,c){return this.a_U(0,b,!1)}, +a_U(a,b,c){var s=0,r=A.H(t.Zx),q,p=this,o,n +var $async$rY=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:s=3 +return A.v(p.wB(b,!1),$async$rY) +case 3:n=e +if(n==null){q=null +s=1 +break}s=4 +return A.v(p.d.mJ(0,n.d),$async$rY) +case 4:o=e +$.a2i() +q=new A.nj(o,n.e) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$rY,r)}, +C4(a){return this.auj(a)}, +auj(a){var s=0,r=A.H(t.H),q=this +var $async$C4=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:q.c.m(0,a.c,a) +s=2 +return A.v(q.uB(a),$async$C4) +case 2:return A.F(null,r)}}) +return A.G($async$C4,r)}, +wB(a,b){return this.av4(a,!1)}, +a__(a){return this.wB(a,!1)}, +av4(a,b){var s=0,r=A.H(t.Cq),q,p=this,o,n +var $async$wB=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:o=p.c +n=o.az(0,a) +s=n?3:4 +break +case 3:s=5 +return A.v(p.tM(o.h(0,a)),$async$wB) +case 5:if(d){q=o.h(0,a) +s=1 +break}case 4:o=p.b +if(!o.az(0,a)){n=new A.au($.aq,t.ET) +p.q2(a).bo(new A.a3I(p,a,new A.bB(n,t.It)),t.P) +o.m(0,a,n)}q=o.h(0,a) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$wB,r)}, +tM(a){return this.a9J(a)}, +a9J(a){var s=0,r=A.H(t.y),q,p=this +var $async$tM=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:if(a==null){q=!1 +s=1 +break}s=3 +return A.v(p.d.mJ(0,a.d),$async$tM) +case 3:q=c.Ay() +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$tM,r)}, +q2(a){return this.aaa(a)}, +aaa(a){var s=0,r=A.H(t.Cq),q,p=this,o +var $async$q2=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=3 +return A.v(p.f,$async$q2) +case 3:s=4 +return A.v(A.dc(null,t.Cq),$async$q2) +case 4:o=c +s=5 +return A.v(p.tM(o),$async$q2) +case 5:if(c){o.toString +p.uB(o)}p.aiH() +q=o +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$q2,r)}, +aiH(){if(this.w!=null)return +this.w=A.co(B.Gh,new A.a3G(this))}, +uB(a){return this.akC(a)}, +akC(a){var s=0,r=A.H(t.z),q,p=this +var $async$uB=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=3 +return A.v(p.f,$async$uB) +case 3:q=A.dc(null,t.z) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$uB,r)}, +nX(){var s=0,r=A.H(t.H),q=this,p,o,n,m,l +var $async$nX=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:m=A.b([],t.t) +s=2 +return A.v(q.f,$async$nX) +case 2:p=t.Cs +o=t.a6 +l=J +s=3 +return A.v(A.dc(A.b([],p),o),$async$nX) +case 3:n=l.bb(b) +case 4:if(!n.u()){s=5 +break}q.qd(n.gN(n),m) +s=4 +break +case 5:l=J +s=6 +return A.v(A.dc(A.b([],p),o),$async$nX) +case 6:p=l.bb(b) +case 7:if(!p.u()){s=8 +break}q.qd(p.gN(p),m) +s=7 +break +case 8:s=9 +return A.v(A.dc(m.length,t.S),$async$nX) +case 9:return A.F(null,r)}}) +return A.G($async$nX,r)}, +qd(a,b){return this.ai2(a,b)}, +ai2(a,b){var s=0,r=A.H(t.H),q,p=2,o=[],n=this,m,l,k,j,i +var $async$qd=A.B(function(c,d){if(c===1){o.push(d) +s=p}for(;;)switch(s){case 0:j=a.a +if(B.b.p(b,j)){s=1 +break}j.toString +b.push(j) +j=n.c +l=a.c +if(j.az(0,l))j.F(0,l) +j=n.b +s=j.az(0,l)?3:4 +break +case 3:j=j.F(0,l) +s=5 +return A.v(t.lC.b(j)?j:A.iS(j,t.Cq),$async$qd) +case 5:case 4:m=A.aTP(a.d) +s=m.Az()?6:7 +break +case 6:p=9 +s=12 +return A.v(J.aR_(m),$async$qd) +case 12:p=2 +s=11 +break +case 9:p=8 +i=o.pop() +if(!(A.a1(i) instanceof A.vp))throw i +s=11 +break +case 8:s=2 +break +case 11:case 7:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$qd,r)}} +A.a3H.prototype={ +$1(a){return this.a.a}, +$S:545} +A.a3I.prototype={ +$1(a){return this.a_B(a)}, +a_B(a){var s=0,r=A.H(t.P),q=this,p,o,n +var $async$$1=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=q.a +o=q.b +n=p.c +if(a==null)n.F(0,o) +else n.m(0,o,a) +q.c.hL(0,a) +p.b.F(0,o) +return A.F(null,r)}}) +return A.G($async$$1,r)}, +$S:546} +A.a3G.prototype={ +$0(){var s=this.a +s.w=null +s.nX()}, +$S:0} +A.a4O.prototype={} +A.a3D.prototype={} +A.uw.prototype={} +A.nj.prototype={} +A.jd.prototype={} +A.OI.prototype={ +wi(a){var s=0,r=A.H(t.y),q +var $async$wi=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:q=!0 +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$wi,r)}, +$ia3C:1} +A.il.prototype={ +I_(a,b,c,d,e,f){var s=this,r=e==null?s.b:e,q=d==null?s.d:d,p=f==null?s.e:f,o=a==null?s.f:a,n=c==null?s.r:c +return A.aGS(r,o,s.a,s.c,n,q,s.w,p)}, +anP(a){var s=null +return this.I_(s,s,s,s,a,s)}, +ao4(a,b,c){return this.I_(a,null,null,b,null,c)}, +anG(a){var s=null +return this.I_(s,s,a,s,s,s)}, +gv(a){return this.r}} +A.aeq.prototype={ +mJ(a,b){return this.aoe(0,b)}, +aoe(a,b){var s=0,r=A.H(t.hS),q,p=this,o,n +var $async$mJ=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:s=3 +return A.v(p.a,$async$mJ) +case 3:o=d +n=o.a +q=new A.BG(n,n.LA(n.c.JM(0,o.b,b))) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$mJ,r)}} +A.a7T.prototype={} +A.a9Y.prototype={ +wP(a,b,c){return this.a_L(0,b,c)}, +a_L(a,b,c){var s=0,r=A.H(t.nZ),q,p=this,o,n +var $async$wP=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:n=A.aJO("GET",A.d3(b)) +n.r.O(0,c) +s=3 +return A.v(p.b.ha(0,n),$async$wP) +case 3:o=e +A.aMQ() +q=new A.Nm(A.aFy(),o) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$wP,r)}} +A.Nm.prototype={ +gMg(a){return this.b.b}, +gavQ(){var s,r,q,p,o,n,m=this.b.e.h(0,"cache-control") +if(m!=null){s=m.split(",") +for(r=s.length,q=B.od,p=0;p0)q=new A.aZ(1e6*n)}}}else q=B.od +return this.a.Nd(q.a)}, +$iaHT:1} +A.Pu.prototype={} +A.anH.prototype={ +o_(a,b,c){return this.a9a(a,b,c)}, +a9a(a,a0,a1){var s=0,r=A.H(t.H),q,p=2,o=[],n=[],m=this,l,k,j,i,h,g,f,e,d,c,b +var $async$o_=A.B(function(a2,a3){if(a2===1){o.push(a3) +s=p}for(;;)switch(s){case 0:c=m.e +if(c>=10){m.d.fd(0,new A.Pu(a,a0,a1)) +s=1 +break}$.a2i() +m.e=c+1 +c=m.c +h=c.h(0,a0) +h.toString +l=h +p=4 +h=new A.p1(A.mK(m.qt(a,a0,a1),"stream",t.K)) +p=7 +case 10:s=12 +return A.v(h.u(),$async$o_) +case 12:if(!a3){s=11 +break}k=h.gN(0) +g=l +f=k +if(g.c)A.a0(A.a5(u.k)) +e=g.b +if((e.c&4)===0){g=g.e +g.b=f +g.a=!0}if(!e.go4())A.a0(e.nU()) +e.iN(f) +s=10 +break +case 11:n.push(9) +s=8 +break +case 7:n=[4] +case 8:p=4 +s=13 +return A.v(h.aR(0),$async$o_) +case 13:s=n.pop() +break +case 9:n.push(6) +s=5 +break +case 4:p=3 +b=o.pop() +j=A.a1(b) +i=A.aH(b) +l.hh(j,i) +n.push(6) +s=5 +break +case 3:n=[2] +case 5:p=2;--m.e +s=14 +return A.v(J.aCp(l),$async$o_) +case 14:c.F(0,a0) +m.a7A() +s=n.pop() +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$o_,r)}, +a7A(){var s,r=this.d +if(r.b===r.c)return +s=r.po() +this.o_(s.a,s.b,s.c)}, +qt(a,b,c){return this.akJ(a,b,c)}, +akJ(a,b,c){var $async$qt=A.B(function(d,e){switch(d){case 2:n=q +s=n.pop() +break +case 1:o.push(e) +s=p}for(;;)switch(s){case 0:s=3 +return A.k_(m.a.a__(b),$async$qt,r) +case 3:k=e +if(k==null){A.aMQ() +l=A.aFy() +k=A.aGS(a,null,null,b,null,B.nt.a_r()+".file",null,l)}else k=k.anP(a) +l=t.N +j=k +s=5 +return A.k_(m.b.wP(0,k.b,A.w(l,l)),$async$qt,r) +case 5:s=4 +q=[1] +return A.k_(A.aYG(m.mq(j,e)),$async$qt,r) +case 4:case 1:return A.k_(null,0,r) +case 2:return A.k_(o.at(-1),1,r)}}) +var s=0,r=A.aMk($async$qt,t.cL),q,p=2,o=[],n=[],m=this,l,k,j +return A.aMG(r)}, +mq(a,b){return this.af9(a,b)}, +af9(a6,a7){var $async$mq=A.B(function(a8,a9){switch(a8){case 2:n=q +s=n.pop() +break +case 1:o.push(a9) +s=p}for(;;)switch(s){case 0:a0={} +a1=a7.b +a2=a1.b +a3=B.b.p(B.pl,a2) +a4=B.b.p(B.pn,a2) +if(!a3&&!a4)throw A.e(new A.AN(a7.gMg(0),"Invalid statusCode: "+a7.gMg(0),A.d3(a6.b))) +j=a1.e +i=j.h(0,"content-type") +if(i!=null){h=new A.aqq("",A.w(t.N,t.ob)) +h.ah2(i,59,-1,!1) +g=h.a +f=B.c.hR(g,"/") +if(f<0||f===g.length-1)e=h.d=B.c.dq(g).toLowerCase() +else{e=h.d=B.c.dq(B.c.a1(g,0,f)).toLowerCase() +h.e=B.c.dq(B.c.bZ(g,f+1)).toLowerCase()}d=B.MF.h(0,e+"/"+h.e) +if(d==null)d="."+h.e}else d="" +c=a6.d +if(!B.b.p(B.pn,a2)){if(!B.c.lx(c,d))m.o8(c) +c=B.nt.a_r()+d}e=a7.gavQ() +b=a0.a=a6.ao4(j.h(0,"etag"),c,e) +s=B.b.p(B.pl,a2)?3:5 +break +case 3:l=0 +a=A.rP(null,null,null,!1,t.S) +m.qg(a,b,a7) +a2=new A.p1(A.mK(new A.df(a,A.n(a).i("df<1>")),"stream",t.K)) +p=6 +a1=a1.d +case 9:s=11 +return A.k_(a2.u(),$async$mq,r) +case 11:if(!a9){s=10 +break}k=a2.gN(0) +l=k +s=12 +q=[1,7] +return A.k_(A.aLe(new A.uw(a1,k)),$async$mq,r) +case 12:s=9 +break +case 10:n.push(8) +s=7 +break +case 6:n=[2] +case 7:p=2 +s=13 +return A.k_(a2.aR(0),$async$mq,r) +case 13:s=n.pop() +break +case 8:a1=a0.a=a0.a.anG(l) +s=4 +break +case 5:a1=b +case 4:a2=m.a +a2.C4(a1).bo(new A.anI(a0,m,a6),t.P) +a5=A +s=15 +return A.k_(a2.d.mJ(0,a0.a.d),$async$mq,r) +case 15:s=14 +q=[1] +return A.k_(A.aLe(new a5.nj(a9,a0.a.e)),$async$mq,r) +case 14:case 1:return A.k_(null,0,r) +case 2:return A.k_(o.at(-1),1,r)}}) +var s=0,r=A.aMk($async$mq,t.cL),q,p=2,o=[],n=[],m=this,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5 +return A.aMG(r)}, +qg(a,b,c){return this.aiD(a,b,c)}, +aiD(a,b,c){var s=0,r=A.H(t.H),q=1,p=[],o=this,n,m,l,k,j,i,h,g +var $async$qg=A.B(function(d,e){if(d===1){p.push(e) +s=q}for(;;)switch(s){case 0:s=2 +return A.v(o.a.d.mJ(0,b.d),$async$qg) +case 2:h=e +q=4 +k={} +k.a=0 +j=h +j.a.d.$2(j.b,B.H9) +n=A.aYu(j,B.ni,B.a5) +j=c.b.w +s=7 +return A.v(new A.GE(new A.anJ(k,a),j,A.n(j).i("GE>")).au3(n),$async$qg) +case 7:q=1 +s=6 +break +case 4:q=3 +g=p.pop() +m=A.a1(g) +l=A.aH(g) +a.hh(m,l) +s=6 +break +case 3:s=1 +break +case 6:s=8 +return A.v(a.aO(0),$async$qg) +case 8:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$qg,r)}, +o8(a){return this.ai6(a)}, +ai6(a){var s=0,r=A.H(t.H),q=this,p +var $async$o8=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=2 +return A.v(q.a.d.mJ(0,a),$async$o8) +case 2:p=c +s=5 +return A.v(p.Ay(),$async$o8) +case 5:s=c?3:4 +break +case 3:s=6 +return A.v(p.Ia(0),$async$o8) +case 6:case 4:return A.F(null,r)}}) +return A.G($async$o8,r)}} +A.anI.prototype={ +$1(a){var s=this.c.d +if(this.a.a.d!==s)this.b.o8(s)}, +$S:28} +A.anJ.prototype={ +$1(a){var s=this.a,r=s.a+J.cg(a) +s.a=r +this.b.E(0,r) +return a}, +$S:547} +A.AN.prototype={} +A.PE.prototype={ +B1(a,b,c){return this.aqb(a,b,c)}, +aqb(a,b,c){var s=0,r=A.H(t.H),q=1,p=[],o=[],n=this,m,l,k,j,i,h,g +var $async$B1=A.B(function(d,e){if(d===1){p.push(e) +s=q}for(;;)switch(s){case 0:h=null +q=3 +m=n.a.h(0,a) +s=m!=null?6:7 +break +case 6:j=m.$1(b) +s=8 +return A.v(t.T8.b(j)?j:A.iS(j,t.CD),$async$B1) +case 8:h=e +case 7:o.push(5) +s=4 +break +case 3:q=2 +g=p.pop() +l=A.a1(g) +k=A.aH(g) +j=A.br("during a framework-to-plugin message") +A.d6(new A.bO(l,k,"flutter web plugins",j,null,!1)) +o.push(5) +s=4 +break +case 2:o=[1] +case 4:q=1 +if(c!=null)c.$1(h) +s=o.pop() +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$B1,r)}} +A.agy.prototype={} +A.aBA.prototype={ +$1(a){return a.ajd("GET",this.a,this.b)}, +$S:222} +A.aBU.prototype={ +$1(a){var s=this +return a.ur("POST",s.a,s.b,s.c,s.d)}, +$S:222} +A.Q8.prototype={} +A.KV.prototype={ +ur(a,b,c,d,e){return this.aje(a,b,c,d,e)}, +ajd(a,b,c){return this.ur(a,b,c,null,null)}, +aje(a,b,c,d,e){var s=0,r=A.H(t.Wd),q,p=this,o,n +var $async$ur=A.B(function(f,g){if(f===1)return A.E(g,r) +for(;;)switch(s){case 0:o=A.aJO(a,b) +if(c!=null)o.r.O(0,c) +if(d!=null)o.samj(0,d) +n=A +s=3 +return A.v(p.ha(0,o),$async$ur) +case 3:q=n.aiB(g) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$ur,r)}, +$ia4n:1} +A.KW.prototype={ +apw(){if(this.w)throw A.e(A.a5("Can't finalize a finalized Request.")) +this.w=!0 +return B.Cl}, +k(a){return this.a+" "+this.b.k(0)}} +A.a36.prototype={ +$2(a,b){return a.toLowerCase()===b.toLowerCase()}, +$S:550} +A.a37.prototype={ +$1(a){return B.c.gB(a.toLowerCase())}, +$S:551} +A.a38.prototype={ +N5(a,b,c,d,e,f,g){var s=this.b +if(s<100)throw A.e(A.bF("Invalid status code "+s+".",null)) +else{s=this.d +if(s!=null&&s<0)throw A.e(A.bF("Invalid content length "+A.k(s)+".",null))}}} +A.yU.prototype={ +ha(a,b){return this.a0D(0,b)}, +a0D(b5,b6){var s=0,r=A.H(t.kj),q,p=2,o=[],n=[],m=this,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4 +var $async$ha=A.B(function(b7,b8){if(b7===1){o.push(b8) +s=p}for(;;)switch(s){case 0:if(m.b)throw A.e(A.aGX("HTTP request failed. Client is already closed.",b6.b)) +a4=v.G +l=new a4.AbortController() +a5=m.c +a5.push(l) +b6.a1x() +a6=t.zb +a7=new A.iP(null,null,null,null,a6) +a7.i7(0,b6.y) +a7.tB() +s=3 +return A.v(new A.tX(new A.df(a7,a6.i("df<1>"))).a_8(),$async$ha) +case 3:k=b8 +p=5 +j=b6 +i=null +h=!1 +g=null +a6=b6.b +a8=a6.k(0) +a7=!J.eW(k)?k:null +a9=t.N +f=A.w(a9,t.K) +e=b6.y.length +d=null +if(e!=null){d=e +J.dR(f,"content-length",d)}for(b0=b6.r,b0=new A.et(b0,A.n(b0).i("et<1,2>")).gag(0);b0.u();){b1=b0.d +b1.toString +c=b1 +J.dR(f,c.a,c.b)}f=A.ad(f) +f.toString +A.dP(f) +b0=l.signal +s=8 +return A.v(A.eV(a4.fetch(a8,{method:b6.a,headers:f,body:a7,credentials:"same-origin",redirect:"follow",signal:b0}),t.m),$async$ha) +case 8:b=b8 +a=b.headers.get("content-length") +a0=a!=null?A.ri(a,null):null +if(a0==null&&a!=null){f=A.aGX("Invalid content-length header ["+a+"].",a6) +throw A.e(f)}a1=A.w(a9,a9) +f=b.headers +a4=new A.a3p(a1) +if(typeof a4=="function")A.a0(A.bF("Attempting to rewrap a JS function.",null)) +b2=function(b9,c0){return function(c1,c2,c3){return b9(c0,c1,c2,c3,arguments.length)}}(A.aZV,a4) +b2[$.K_()]=a4 +f.forEach(b2) +f=A.aZL(b6,b) +a4=b.status +a6=a1 +a7=a0 +A.d3(b.url) +a9=b.statusText +f=new A.RF(A.b2L(f),b6,a4,a9,a7,a6,!1,!0) +f.N5(a4,a7,a6,!1,!0,a9,b6) +q=f +n=[1] +s=6 +break +n.push(7) +s=6 +break +case 5:p=4 +b4=o.pop() +a2=A.a1(b4) +a3=A.aH(b4) +A.aMv(a2,a3,b6) +n.push(7) +s=6 +break +case 4:n=[2] +case 6:p=2 +B.b.F(a5,l) +s=n.pop() +break +case 7:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$ha,r)}, +aO(a){var s,r,q +for(s=this.c,r=s.length,q=0;q>") +k=A.a6(new A.ae(k,new A.a41(),j),j.i("ax.E")) +m=B.a4.hl(k) +s=7 +return A.v(n.us("String","cart_items",m),$async$oc) +case 7:q=1 +s=5 +break +case 3:q=2 +h=p.pop() +l=A.a1(h) +A.ie("Fehler beim Speichern des Warenkorbs: "+A.k(l)) +s=5 +break +case 2:s=1 +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$oc,r)}, +H1(a){var s=this.a,r=B.b.Jv(s,new A.a42(a)) +if(r>=0)++s[r].b +else s.push(new A.en(a,1)) +this.ak() +this.oc()}, +ZI(a,b){var s,r,q=this.a,p=B.b.Jv(q,new A.a45(b)) +if(p>=0){s=q[p] +r=s.b +if(r>1)s.b=r-1 +else B.b.hr(q,p) +this.ak() +this.oc()}}, +auO(a){B.b.k0(this.a,new A.a44(a)) +this.ak() +this.oc()}} +A.a43.prototype={ +$2(a,b){return a+b.b}, +$S:559} +A.a46.prototype={ +$2(a,b){return a+b.a.gZo()*b.b}, +$S:560} +A.a40.prototype={ +$1(a){var s=J.aE(a),r=A.aDN(s.h(a,"product")) +s=s.h(a,"quantity") +return new A.en(r,s==null?1:s)}, +$S:561} +A.a41.prototype={ +$1(a){return a.fB()}, +$S:562} +A.a42.prototype={ +$1(a){return a.a.a===this.a.a}, +$S:72} +A.a45.prototype={ +$1(a){return a.a.a===this.a.a}, +$S:72} +A.a44.prototype={ +$1(a){return a.a.a===this.a.a}, +$S:72} +A.fz.prototype={ +uf(){var s=0,r=A.H(t.H),q=1,p=[],o=[],n=this,m,l,k +var $async$uf=A.B(function(a,b){if(a===1){p.push(b) +s=q}for(;;)switch(s){case 0:n.c=!0 +n.ak() +q=3 +s=6 +return A.v(n.a.wZ(),$async$uf) +case 6:n.b=b +o.push(5) +s=4 +break +case 3:q=2 +k=p.pop() +m=A.a1(k) +A.ie("Fehler beim Laden des Benutzers: "+A.k(m)) +o.push(5) +s=4 +break +case 2:o=[1] +case 4:q=1 +n.c=!1 +n.ak() +s=o.pop() +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$uf,r)}, +hU(a,b){return this.asq(a,b)}, +asq(a,b){var s=0,r=A.H(t.y),q,p=2,o=[],n=this,m,l,k,j +var $async$hU=A.B(function(c,d){if(c===1){o.push(d) +s=p}for(;;)switch(s){case 0:n.c=!0 +n.ak() +p=4 +s=7 +return A.v(n.a.hU(a,b),$async$hU) +case 7:m=d +if(m!=null){n.b=m +n.c=!1 +n.ak() +q=!0 +s=1 +break}p=2 +s=6 +break +case 4:p=3 +j=o.pop() +l=A.a1(j) +A.ie("Login-Fehler: "+A.k(l)) +s=6 +break +case 3:s=2 +break +case 6:n.c=!1 +n.ak() +q=!1 +s=1 +break +case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$hU,r)}, +hV(){var s=0,r=A.H(t.H),q=this +var $async$hV=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=2 +return A.v(q.a.hV(),$async$hV) +case 2:q.b=null +q.ak() +return A.F(null,r)}}) +return A.G($async$hV,r)}, +Cb(){var s=0,r=A.H(t.H),q=this +var $async$Cb=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=2 +return A.v(q.uf(),$async$Cb) +case 2:return A.F(null,r)}}) +return A.G($async$Cb,r)}} +A.Fj.prototype={ +l(){var s=this.e +s.P$=$.aw() +s.M$=0 +this.aD()}, +xH(){var s=0,r=A.H(t.H),q,p=this,o,n,m +var $async$xH=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:m=p.e +if(B.c.dq(m.a.a).length===0){s=1 +break}p.T(new A.apE(p)) +s=3 +return A.v(p.d.CA(B.c.dq(m.a.a)),$async$xH) +case 3:o=b +p.T(new A.apF(p,o)) +if(!o.e){m=p.c +if(m!=null){m=m.ad(t.d).f +n=o.f +m.jq(A.w0(null,null,null,B.aV,null,B.B,null,A.ai(n==null?"Ung\xfcltiger Gutschein-Code":n,null,null,null,null,null,null),null,B.bW,null,null,null,null,null,null,null,null,null,null))}}case 1:return A.F(q,r)}}) +return A.G($async$xH,r)}, +ai5(){this.T(new A.apG(this))}, +H(a){return A.i_(A.ih(null,null,B.Xh),A.zm(new A.apR(this),t.BW),null)}} +A.apE.prototype={ +$0(){this.a.r=!0}, +$S:0} +A.apF.prototype={ +$0(){var s=this.a,r=this.b +s.f=r.e?r:null +s.r=!1}, +$S:0} +A.apG.prototype={ +$0(){var s=this.a +s.f=null +s.e.nS(0,B.AQ)}, +$S:0} +A.apR.prototype={ +$3(a,b,c){var s,r,q,p,o,n,m,l=null,k=b.a.length +if(k===0){k=A.dX(B.oT,B.dJ,l,64) +s=A.J(a).ok.r +s=A.ai("Dein Warenkorb ist leer",l,l,l,s==null?l:s.b1(B.ar),l,l) +r=A.J(a).ok.z +return A.dG(A.bS(A.b([k,B.K,s,B.aX,A.ai("F\xfcge Produkte hinzu, um zu beginnen",l,l,l,r==null?l:r.b1(B.eR),l,l)],t.p),B.w,B.b3,B.t),l,l)}k=A.ec(A.aDx(new A.apP(b),k,B.aG,B.af),1) +s=A.b([new A.dU(0,B.dB,A.aC(B.d.aI(25.5),B.l.C()>>>16&255,B.l.C()>>>8&255,B.l.C()&255),B.vJ,4)],t.sq) +r=A.ch(8) +q=this.a +p=A.jk(l,B.mH,l,l,l,l,l,l,!0,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,"Gutschein-Code",l,l,l,l,l,!0,l,l,l,!0,!0,l,l,l,l,l,l,l,l,l,l,l,l,l,l) +o=!q.r&&q.f==null +n=t.p +o=A.b([A.ec(A.El(l,B.ci,!1,l,!0,B.B,l,A.a23(),q.e,l,l,l,l,l,2,p,B.a9,!0,l,!0,o,!1,l,B.c8,l,l,l,l,l,l,l,l,1,l,l,!1,"\u2022",l,l,l,l,l,!1,l,l,!1,l,!0,l,B.dQ,l,l,l,l,l,l,l,l,l,l,l,l,!0,B.az,l,B.em,l,l,l,l),1)],n) +if(q.f!=null)o.push(A.eJ(l,l,B.I3,l,l,q.gai4(),l,l,l)) +else{p=q.r +m=p?B.RO:B.I8 +o.push(A.eJ(l,l,m,l,l,p?l:q.ga6K(),l,l,l))}r=A.b([A.c_(l,A.cR(o,B.w,B.x,B.t,0),B.n,l,l,new A.cX(B.eP,l,l,r,l,l,B.aq),l,l,l,B.cH,l,l,l)],n) +p=q.f +if(p!=null){p=A.ai("Rabatt ("+p.a+"):",l,l,l,A.J(a).ok.z,l,l) +o=q.f +o.toString +o=B.d.ah(q.d.Vt(o,b.gKX()),2) +m=A.J(a).ok.z +m=m==null?l:m.iZ(B.br,B.H) +B.b.O(r,A.b([B.aX,A.cR(A.b([p,A.ai("-"+o+" \u20ac",l,l,l,m,l,l)],n),B.w,B.cj,B.t,0)],n))}r.push(B.cN) +p=A.J(a).ok.r +p=A.ai("Gesamtsumme:",l,l,l,p==null?l:p.e4(B.H),l,l) +o=b.gKX() +m=q.f +q=B.d.ah(o-(m!=null?q.d.Vt(m,b.gKX()):0),2) +o=A.J(a).ok.f +o=o==null?l:o.iZ(B.a7,B.H) +r.push(A.cR(A.b([p,A.ai(q+" \u20ac",l,l,l,o,l,l)],n),B.w,B.cj,B.t,0)) +r.push(B.K) +r.push(A.e1(A.jc(!1,B.Xw,l,l,l,l,l,l,new A.apQ(a),l,A.A4(l,l,B.a7,l,l,l,l,l,l,B.k,l,l,B.dP,l,new A.cz(A.ch(8),B.q),l,l,l,l,l)),l,1/0)) +return A.bS(A.b([k,A.c_(l,A.bS(r,B.w,B.x,B.t),B.n,l,l,new A.cX(B.k,l,l,l,s,l,B.aq),l,l,l,B.aG,l,l,l)],n),B.w,B.x,B.t)}, +$S:564} +A.apP.prototype={ +$2(a,b){var s,r=null,q=this.a,p=q.a[b],o=t.p,n=A.b([],o),m=p.a,l=m.r +if(l!=null)n.push(A.a4v(A.ch(8),A.tY(new A.apJ(),B.cU,80,l,new A.apK(),80))) +else n.push(A.c_(r,B.f4,B.n,B.aN,r,r,r,80,r,r,r,r,80)) +n.push(B.fE) +l=A.J(a).ok.w +l=l==null?r:l.e4(B.H) +l=A.ai(m.b,2,B.aA,r,l,r,r) +s=A.J(a).ok.y +s=s==null?r:s.iZ(B.a7,B.H) +n.push(A.ec(A.bS(A.b([l,B.fG,A.ai(m.d+" \u20ac",r,r,r,s,r,r)],o),B.an,B.x,B.t),1)) +s=A.cR(A.b([A.eJ(r,r,B.oW,r,r,new A.apL(q,p),r,r,r),A.ai(""+p.b,r,r,r,A.J(a).ok.w,r,r),A.eJ(r,r,B.oV,r,r,new A.apM(q,p),r,r,r)],o),B.w,B.x,B.c1,0) +m=B.d.ah(m.gZo()*p.b,2) +l=A.J(a).ok.z +l=l==null?r:l.e4(B.H) +n.push(A.bS(A.b([s,A.ai(m+" \u20ac",r,r,r,l,r,r)],o),B.w,B.x,B.t)) +n.push(A.eJ(B.aV,r,B.I7,r,r,new A.apN(q,p,a),r,r,r)) +return A.k8(A.uO(!1,r,!0,new A.bo(B.cH,A.cR(n,B.w,B.x,B.t,0),r),r,!0,r,r,r,r,r,r,r,r,new A.apO(a,p),r,r,r,r),r,B.oh)}, +$S:565} +A.apO.prototype={ +$0(){var s=A.dY(new A.apH(this.b),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.apH.prototype={ +$1(a){return new A.lY(this.a.a,null)}, +$S:71} +A.apK.prototype={ +$2(a,b){var s=null +return A.c_(s,B.cc,B.n,B.aN,s,s,s,80,s,s,s,s,80)}, +$S:75} +A.apJ.prototype={ +$3(a,b,c){var s=null +return A.c_(s,B.f4,B.n,B.aN,s,s,s,80,s,s,s,s,80)}, +$S:52} +A.apL.prototype={ +$0(){return this.a.ZI(0,this.b.a)}, +$S:0} +A.apM.prototype={ +$0(){return this.a.H1(this.b.a)}, +$S:0} +A.apN.prototype={ +$0(){var s=null,r=this.b.a +this.a.auO(r) +this.c.ad(t.d).f.jq(A.w0(s,s,s,s,s,B.B,s,A.ai(r.b+" entfernt",s,s,s,s,s,s),s,B.bW,s,s,s,s,s,s,s,s,s,s))}, +$S:0} +A.apQ.prototype={ +$0(){var s=A.dY(new A.apI(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.apI.prototype={ +$1(a){return B.DJ}, +$S:569} +A.pA.prototype={ +ac(){return new A.Fj(new A.a4W(),new A.f9(B.bH,$.aw()))}} +A.pF.prototype={ +ac(){return new A.Fl(new A.wB(),A.b([],t.vN))}} +A.Fl.prototype={ +aw(){this.aK() +this.u9()}, +u9(){var s=0,r=A.H(t.H),q=1,p=[],o=this,n,m,l,k,j +var $async$u9=A.B(function(a,b){if(a===1){p.push(b) +s=q}for(;;)switch(s){case 0:o.T(new A.apX(o)) +q=3 +s=6 +return A.v(o.d.wS(),$async$u9) +case 6:n=b +o.T(new A.apY(o,n)) +q=1 +s=5 +break +case 3:q=2 +j=p.pop() +m=A.a1(j) +o.T(new A.apZ(o,m)) +k=o.c +k.toString +A.MG(k,m) +s=5 +break +case 2:s=1 +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$u9,r)}, +H(a){var s,r=this,q=null,p=A.ih(q,q,B.Xr) +if(r.f)s=B.pB +else if(r.r!=null)s=A.aJP("Fehler beim Laden der Kategorien",r.gQY()) +else if(J.eW(r.e)){s=A.J(a).ok.r +s=A.dG(A.ai("Keine Kategorien verf\xfcgbar",q,q,q,s==null?q:s.b1(B.ar),q,q),q,q)}else s=A.aDR(A.a9h(q,B.RS,new A.aq_(r),J.cg(r.e),B.aG,q,!1),r.gQY()) +return A.i_(p,s,q)}, +a6X(a){var s,r,q,p,o=null,n=a.r +n=A.ec(n!=null?A.tY(new A.apU(),B.cU,o,n,new A.apV(),o):A.c_(o,B.p_,B.n,B.aN,o,o,o,o,o,o,o,o,o),3) +s=this.c +s.toString +s=A.J(s).ok.w +s=s==null?o:s.e4(B.H) +r=t.p +s=A.b([A.ai(a.b,2,B.aA,o,s,o,o)],r) +q=a.f +if(q>0){p=this.c +p.toString +p=A.J(p).ok.Q +p=p==null?o:p.b1(B.ar) +B.b.O(s,A.b([B.fG,A.ai(""+q+" Produkte",o,o,o,p,o,o)],r))}return A.k8(A.uO(!1,o,!0,A.bS(A.b([n,A.ec(new A.bo(B.cH,A.bS(s,B.an,B.x,B.t),o),2)],r),B.ce,B.x,B.t),o,!0,o,o,o,o,o,o,o,o,new A.apW(this,a),o,o,o,o),B.bN,o)}} +A.apX.prototype={ +$0(){var s=this.a +s.f=!0 +s.r=null}, +$S:0} +A.apY.prototype={ +$0(){var s=this.a +s.e=this.b +s.f=!1}, +$S:0} +A.apZ.prototype={ +$0(){var s=this.a +s.r=J.dr(this.b) +s.f=!1}, +$S:0} +A.aq_.prototype={ +$2(a,b){var s=this.a +return s.a6X(J.aK(s.e,b))}, +$S:117} +A.apW.prototype={ +$0(){var s,r=this.b +A.a2G(r.b) +s=this.a.c +s.toString +r=A.dY(new A.apT(r),null,t.z) +A.c3(s,!1).dn(r)}, +$S:0} +A.apT.prototype={ +$1(a){var s=this.a +return new A.o0(B.f.k(s.a),s.b,null)}, +$S:225} +A.apV.prototype={ +$2(a,b){var s=null +return A.c_(s,B.cc,B.n,B.aN,s,s,s,s,s,s,s,s,s)}, +$S:75} +A.apU.prototype={ +$3(a,b,c){var s=null +return A.c_(s,B.p_,B.n,B.aN,s,s,s,s,s,s,s,s,s)}, +$S:52} +A.pG.prototype={ +ac(){return new A.TK()}} +A.TK.prototype={ +aw(){this.aK() +this.QH()}, +QH(){var s=this.c +s.toString +this.a6Y(A.Co(s,!1,t.BW)) +A.aY8().M_(B.IO)}, +a6Y(a){if(a.a.length===0)return"https://hyggecraftery.com/checkout/" +return"https://hyggecraftery.com/cart/"}, +H(a){var s,r,q=this,p=null,o=A.ih(p,A.eJ(p,p,B.I1,p,p,new A.aqc(a),p,p,p),B.X_),n=t.p,m=A.b([],n) +if(q.f!=null){s=A.ai("Fehler",p,p,p,A.J(a).ok.r,p,p) +r=q.f +r.toString +m.push(A.dG(A.bS(A.b([B.hP,B.K,s,B.aX,new A.bo(B.k9,A.ai(r,p,p,p,A.J(a).ok.z,B.aZ,p),p),B.K,A.jc(!1,B.fN,p,p,p,p,p,p,new A.aqd(q),p,p)],n),B.w,B.b3,B.t),p,p))}else{n=q.d +n===$&&A.a() +m.push(new A.SD(A.aVD(new A.agx(n.a)),p))}if(q.e&&q.f==null)m.push(A.c_(p,B.DF,B.n,B.k,p,p,p,p,p,p,p,p,p)) +return A.i_(o,A.hp(B.bA,m,B.B,B.bp,p),p)}} +A.aqc.prototype={ +$0(){A.aFw(!0,new A.aqb(),this.a,t.z)}, +$S:0} +A.aqb.prototype={ +$1(a){return A.aCv(A.b([A.kM(B.Xc,new A.aq9(a),null),A.kM(B.B_,new A.aqa(a),null)],t.p),B.Xd,B.Xg)}, +$S:226} +A.aq9.prototype={ +$0(){return A.c3(this.a,!1).dB()}, +$S:0} +A.aqa.prototype={ +$0(){var s=this.a +A.c3(s,!1).dB() +A.c3(s,!1).dB()}, +$S:0} +A.aqd.prototype={ +$0(){this.a.QH()}, +$S:0} +A.AL.prototype={ +ac(){return new A.Gj(new A.wB(),A.b([],t._V))}} +A.Gj.prototype={ +aw(){this.aK() +this.q5()}, +q5(){var s=0,r=A.H(t.H),q=1,p=[],o=this,n,m,l,k,j,i +var $async$q5=A.B(function(a,b){if(a===1){p.push(b) +s=q}for(;;)switch(s){case 0:q=3 +o.T(new A.asT(o)) +k=o.d +s=6 +return A.v(k.wW(6),$async$q5) +case 6:n=b +s=J.eW(n)?7:9 +break +case 7:s=10 +return A.v(k.a06(6),$async$q5) +case 10:m=b +o.T(new A.asU(o,m)) +s=8 +break +case 9:o.T(new A.asV(o,n)) +case 8:q=1 +s=5 +break +case 3:q=2 +i=p.pop() +l=A.a1(i) +o.T(new A.asW(o,l)) +s=5 +break +case 2:s=1 +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$q5,r)}, +H(a){var s=null +return A.i_(A.ih(A.b([A.eJ(s,s,B.p2,s,s,new A.at6(a),s,s,s),A.eJ(s,s,B.oZ,s,s,new A.at7(a),s,s,s),A.zm(new A.at8(this),t.nj),A.zm(new A.at9(),t.BW)],t.p),s,B.X3),this.a7_(),s)}, +a7_(){var s,r,q,p,o,n=this,m=null +if(n.f)return B.cc +if(n.r!=null){s=n.c +s.toString +s=A.ai("Fehler beim Laden der Produkte",m,m,m,A.J(s).ok.r,m,m) +r=n.r +r.toString +q=n.c +q.toString +return A.dG(A.bS(A.b([B.hP,B.K,s,B.aX,A.ai(r,m,m,m,A.J(q).ok.z,B.aZ,m),B.K,A.jc(!1,B.fN,m,m,m,m,m,m,n.gaeY(),m,m)],t.p),B.w,B.b3,B.t),m,m)}s=A.b([A.aC(204,B.a7.C()>>>16&255,B.a7.C()>>>8&255,B.a7.C()&255),A.aC(204,B.hd.C()>>>16&255,B.hd.C()>>>8&255,B.hd.C()&255)],t.t_) +r=A.ch(16) +q=n.c +q.toString +q=A.J(q).ok.f +q=A.ai("Willkommen bei HyggeCraftery",m,m,m,q==null?m:q.iZ(B.k,B.H),m,m) +p=n.c +p.toString +p=A.J(p).ok.y +o=t.p +s=A.c_(m,A.bS(A.b([q,B.aX,A.ai("Entdecke unsere gem\xfctlichen Handwerksprodukte",m,m,m,p==null?m:p.b1(A.aC(B.d.aI(229.5),B.k.C()>>>16&255,B.k.C()>>>8&255,B.k.C()&255)),m,m)],o),B.an,B.x,B.t),B.n,m,m,new A.cX(m,m,m,r,m,new A.uY(B.dz,B.BG,B.ep,s,m,m),B.aq),m,m,m,B.eZ,m,m,1/0) +r=n.c +r.toString +r=A.ec(n.NI(r,B.fm,B.kU,new A.asP(n),"Suchen"),1) +p=n.c +p.toString +p=A.cR(A.b([r,B.fE,A.ec(n.NI(p,B.br,B.kR,new A.asQ(n),"Kategorien"),1)],o),B.w,B.x,B.t,0) +r=n.c +r.toString +r=A.J(r).ok.f +s=A.b([s,B.fF,p,B.fF,A.cR(A.b([A.ai("Ausgew\xe4hlte Produkte",m,m,m,r==null?m:r.iZ(B.a7,B.H),m,m),A.kM(B.Xq,new A.asR(n),m)],o),B.w,B.cj,B.t,0),B.K],o) +if(J.eW(n.e))s.push(B.DH) +else s.push(A.a9h(m,B.m6,new A.asS(n),J.cg(n.e),m,B.Nl,!0)) +return A.om(A.bS(s,B.an,B.x,B.t),B.aG)}, +ajA(a,b){var s,r,q,p,o,n,m,l,k,j,i=null,h=A.c3(a,!1) +A.f3(a,B.b6,t.C).toString +s=h.c +s.toString +s=A.NK(a,s) +r=A.J(a) +q=$.aw() +p=A.b([],t.Zt) +o=$.aq +n=t.LR +m=t.zh +l=A.kB(B.ca) +k=A.b([],t.wi) +j=$.aq +h.dn(new A.BK(new A.at_(b),s,!1,0.5625,i,i,i,i,i,r.ry.e,!0,!0,i,i,i,!1,i,"Close Bottom Sheet",new A.ct(B.as,q),"Scrim",i,i,i,p,A.aP(t.f9),new A.bu(i,t.Ts),new A.bu(i,t.A),new A.Cd(),i,0,new A.bB(new A.au(o,n),m),l,k,i,B.lE,new A.ct(i,q),new A.bB(new A.au(j,n),m),new A.bB(new A.au(j,n),m),t.Fu))}, +NI(a,b,c,d,e){var s=null,r=A.ch(12),q=A.dX(c,b,s,32),p=A.J(a).ok.z +return A.k8(A.uO(!1,r,!0,new A.bo(B.aG,A.bS(A.b([q,B.aX,A.ai(e,s,s,s,p==null?s:p.e4(B.H),s,s)],t.p),B.w,B.x,B.t),s),s,!0,s,s,s,s,s,s,s,s,d,s,s,s,s),s,s)}} +A.asT.prototype={ +$0(){var s=this.a +s.f=!0 +s.r=null}, +$S:0} +A.asU.prototype={ +$0(){var s=this.a +s.e=this.b +s.f=!1}, +$S:0} +A.asV.prototype={ +$0(){var s=this.a +s.e=this.b +s.f=!1}, +$S:0} +A.asW.prototype={ +$0(){var s=this.a +s.r=J.dr(this.b) +s.f=!1}, +$S:0} +A.at6.prototype={ +$0(){var s=A.dY(new A.at5(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.at5.prototype={ +$1(a){return B.zF}, +$S:227} +A.at7.prototype={ +$0(){var s=A.dY(new A.at4(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.at4.prototype={ +$1(a){return B.jG}, +$S:228} +A.at8.prototype={ +$3(a,b,c){var s=null +return A.eJ(s,s,A.dX(b.b!=null?B.f3:B.oR,s,s,s),s,s,new A.at3(this.a,b,a),s,s,s)}, +$S:575} +A.at3.prototype={ +$0(){var s=this.b,r=this.c +if(s.b!=null)this.a.ajA(r,s) +else{s=A.dY(new A.at1(),null,t.z) +A.c3(r,!1).dn(s)}}, +$S:0} +A.at1.prototype={ +$1(a){return B.i3}, +$S:76} +A.at9.prototype={ +$3(a,b,c){var s=null,r=A.b([A.eJ(s,s,B.p0,s,s,new A.at2(a),s,s,s)],t.p) +if(b.grm()>0)r.push(A.rf(s,A.c_(s,A.ai(""+b.grm(),s,s,s,B.UH,B.aZ,s),B.n,s,B.jy,B.jA,s,s,s,B.f_,s,s,s),s,s,s,8,8,s)) +return A.hp(B.bA,r,B.B,B.bp,s)}, +$S:577} +A.at2.prototype={ +$0(){var s=A.dY(new A.at0(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.at0.prototype={ +$1(a){return B.nv}, +$S:578} +A.asP.prototype={ +$0(){var s,r=this.a.c +r.toString +s=A.dY(new A.asO(),null,t.z) +A.c3(r,!1).dn(s)}, +$S:0} +A.asO.prototype={ +$1(a){return B.zF}, +$S:227} +A.asQ.prototype={ +$0(){var s,r=this.a.c +r.toString +s=A.dY(new A.asN(),null,t.z) +A.c3(r,!1).dn(s)}, +$S:0} +A.asN.prototype={ +$1(a){return B.jG}, +$S:228} +A.asR.prototype={ +$0(){var s,r=this.a.c +r.toString +s=A.dY(new A.asM(),null,t.z) +A.c3(r,!1).dn(s)}, +$S:0} +A.asM.prototype={ +$1(a){return B.Pb}, +$S:225} +A.asS.prototype={ +$2(a,b){var s=this.a +return new A.o_(J.aK(s.e,b),new A.asL(s,a,b),null)}, +$S:230} +A.asL.prototype={ +$0(){var s=A.dY(new A.asK(this.a,this.c),null,t.z) +A.c3(this.b,!1).dn(s)}, +$S:0} +A.asK.prototype={ +$1(a){return new A.lY(J.aK(this.a.e,this.b),null)}, +$S:71} +A.at_.prototype={ +$1(a){var s=null,r=t.p,q=A.b([],r),p=this.a,o=p.b +if(o!=null){o=A.ai(o.gJ0(),s,s,s,s,s,s) +B.b.O(q,A.b([A.uZ(B.hO,s,A.ai(p.b.b,s,s,s,s,s,s),o,s),B.oa],r))}q.push(A.uZ(B.p1,new A.asY(a),s,B.mh,s)) +q.push(B.oa) +q.push(A.uZ(B.oY,new A.asZ(p,a),s,B.B2,s)) +return A.c_(s,A.bS(q,B.w,B.x,B.c1),B.n,s,s,s,s,s,s,B.aG,s,s,s)}, +$S:128} +A.asY.prototype={ +$0(){var s,r=this.a +A.c3(r,!1).nd(null) +s=A.dY(new A.asX(),null,t.z) +A.c3(r,!1).dn(s)}, +$S:0} +A.asX.prototype={ +$1(a){return B.vS}, +$S:231} +A.asZ.prototype={ +$0(){var s=0,r=A.H(t.H),q=this,p +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=2 +return A.v(q.a.hV(),$async$$0) +case 2:p=q.b +A.c3(p,!1).nd(null) +p.ad(t.d).f.jq(B.S3) +return A.F(null,r)}}) +return A.G($async$$0,r)}, +$S:9} +A.qF.prototype={ +ac(){var s=$.aw() +return new A.GB(new A.bu(null,t.am),new A.f9(B.bH,s),new A.f9(B.bH,s))}} +A.GB.prototype={ +l(){var s=this.e,r=$.aw() +s.P$=r +s.M$=0 +s=this.f +s.P$=r +s.M$=0 +this.aD()}, +tW(){var s=0,r=A.H(t.H),q,p=this,o +var $async$tW=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:if(!p.d.gL().rV()){s=1 +break}p.T(new A.au8(p)) +o=p.c +o.toString +s=3 +return A.v(A.Co(o,!1,t.nj).hU(B.c.dq(p.e.a.a),p.f.a.a),$async$tW) +case 3:if(b){o=p.c +if(o!=null){A.c3(o,!1).dB() +p.c.ad(t.d).f.jq(B.S1)}}else p.T(new A.au9(p)) +case 1:return A.F(q,r)}}) +return A.G($async$tW,r)}, +H(a){var s,r,q,p=this,o=null,n=A.ih(o,o,B.B0),m=A.dX(B.f3,A.J(a).dx,o,80),l=A.J(a).ok.f +l=A.ai("Willkommen zur\xfcck",o,o,o,l==null?o:l.e4(B.H),B.aZ,o) +s=A.J(a).ok.z +r=t.p +s=A.b([B.fF,m,B.K,l,B.aX,A.ai("Melde dich an, um deine Bestellungen zu sehen",o,o,o,s==null?o:s.b1(B.ar),B.aZ,o),B.RP],r) +m=p.w +if(m!=null){l=A.ch(8) +q=A.aCA(B.nV) +s.push(A.c_(o,A.cR(A.b([A.dX(B.kT,B.h6,o,o),B.iO,A.ec(A.ai(m,o,o,o,A.iL(o,o,B.h6,o,o,o,o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o),1)],r),B.w,B.x,B.t,0),B.n,o,o,new A.cX(B.nQ,o,q,l,o,o,B.aq),o,o,B.GF,B.cH,o,o,o))}s.push(A.os(p.e,A.jk(o,new A.dL(4,A.ch(8),B.bC),o,o,o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,"Benutzername oder E-Mail",!0,!0,o,B.hO,o,o,o,o,o,o,o,o,o,o,o,o),B.fK,!1,o,B.dp,new A.aud())) +s.push(B.K) +m=p.r +l=A.eJ(o,o,A.dX(m?B.kV:B.kW,o,o,o),o,o,new A.aue(p),o,o,o) +s.push(A.os(p.f,A.jk(o,new A.dL(4,A.ch(8),B.bC),o,o,o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,"Passwort",!0,!0,o,B.oX,o,o,o,o,o,o,l,o,o,o,o,o),o,m,new A.auf(p),B.fJ,new A.aug())) +s.push(B.c5) +s.push(A.zm(new A.auh(p),t.nj)) +s.push(B.aX) +s.push(new A.eH(B.mW,o,o,A.kM(B.X1,new A.aui(a),o),o)) +s.push(B.K) +s.push(A.cR(A.b([B.Xe,A.kM(B.Xn,new A.auj(a),o)],r),B.w,B.b3,B.t,0)) +return A.i_(n,A.oc(!0,A.om(A.aDf(A.bS(s,B.ce,B.x,B.t),p.d),B.eZ),!1,B.as,!0),o)}} +A.au8.prototype={ +$0(){this.a.w=null}, +$S:0} +A.au9.prototype={ +$0(){this.a.w="Ung\xfcltige Anmeldedaten. Bitte versuche es erneut."}, +$S:0} +A.aud.prototype={ +$1(a){if(a.length===0)return"Bitte gib deinen Benutzernamen oder E-Mail ein" +return null}, +$S:41} +A.aue.prototype={ +$0(){var s=this.a +s.T(new A.auc(s))}, +$S:0} +A.auc.prototype={ +$0(){var s=this.a +s.r=!s.r}, +$S:0} +A.auf.prototype={ +$1(a){return this.a.tW()}, +$S:37} +A.aug.prototype={ +$1(a){if(a.length===0)return"Bitte gib dein Passwort ein" +return null}, +$S:41} +A.auh.prototype={ +$3(a,b,c){var s=null,r=b.c?s:this.a.gac8(),q=A.A4(s,s,B.a7,s,s,s,s,s,s,B.k,s,s,B.dP,s,new A.cz(A.ch(8),B.q),s,s,s,s,s) +return A.jc(!1,b.c?B.m5:B.Xm,s,s,s,s,s,s,r,s,q)}, +$S:582} +A.aui.prototype={ +$0(){var s=A.dY(new A.aub(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.aub.prototype={ +$1(a){return B.Op}, +$S:583} +A.auj.prototype={ +$0(){var s=A.dY(new A.aua(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.aua.prototype={ +$1(a){return B.PN}, +$S:584} +A.Bu.prototype={ +ac(){return new A.GC(A.b([B.Hk,B.jG,B.nv,B.Pc],t.p))}} +A.GC.prototype={ +aw(){this.aK() +A.pp("/home")}, +agp(a){this.T(new A.auk(this,a)) +switch(a){case 0:A.pp("/home") +break +case 1:A.pp("/categories") +break +case 2:A.pp("/cart") +break +case 3:A.pp("/profile") +break}}, +H(a){var s=null +return A.i_(s,new A.NI(this.d,this.e,s),new A.zn(new A.aul(this),s,s,t.ve))}} +A.auk.prototype={ +$0(){this.a.d=this.b}, +$S:0} +A.aul.prototype={ +$4(a,b,c,d){var s,r,q,p=null,o=this.a,n=o.d,m=t.p,l=A.b([B.HU],m) +if(b.grm()>0)l.push(A.rf(p,A.c_(p,A.ai(""+b.grm(),p,p,p,B.AW,B.aZ,p),B.n,p,B.jy,B.jA,p,p,p,B.f_,p,p,p),p,p,p,0,0,p)) +l=A.hp(B.bA,l,B.B,B.bp,p) +s=A.b([B.p0],m) +if(b.grm()>0)s.push(A.rf(p,A.c_(p,A.ai(""+b.grm(),p,p,p,B.AW,B.aZ,p),B.n,p,B.jy,B.jA,p,p,p,B.f_,p,p,p),p,p,p,0,0,p)) +l=A.aJ5(l,"Warenkorb",A.hp(B.bA,s,B.B,B.bp,p)) +s=c.b!=null +r=A.dX(s?B.HM:B.HP,p,p,p) +q=A.dX(s?B.f3:B.oR,p,p,p) +return new A.vg(n,A.b([B.Ng,B.Nh,l,A.aJ5(r,s?"Profil":"Anmelden",q)],m),o.gago(),p)}, +$S:585} +A.vl.prototype={ +H(a){var s,r=this,q=null,p=A.aHj("dd.MM.yyyy HH:mm"),o=r.c,n=r.agL(o.b),m=A.ih(q,q,A.ai("Bestellung #"+o.a,q,q,q,q,q,q)),l=B.d.aI(25.5),k=A.aC(l,n.C()>>>16&255,n.C()>>>8&255,n.C()&255),j=A.ch(12),i=A.aCA(n),h=A.dX(B.Hx,n,q,q),g=A.J(a).ok.Q,f=t.p +j=A.c_(q,A.cR(A.b([h,B.fE,A.ec(A.bS(A.b([A.ai("Status",q,q,q,g==null?q:g.b1(B.ar),q,q),A.ai(o.gMh(),q,q,q,A.iL(q,q,n,q,q,q,q,q,q,q,q,16,q,q,B.H,q,q,!0,q,q,q,q,q,q,q,q),q,q)],f),B.an,B.x,B.t),1)],f),B.w,B.x,B.t,0),B.n,q,q,new A.cX(k,q,i,j,q,q,B.aq),q,q,q,B.aG,q,q,q) +i=r.NH(a,"Bestelldatum",p.vG(o.e),B.Hp) +k=A.J(a).ok.r +k=A.b([j,B.K,i,B.K,A.ai("Produkte",q,q,q,k==null?q:k.e4(B.H),q,q),B.cN],f) +j=o.f +B.b.O(k,new A.ae(j,new A.afP(r,a),A.a2(j).i("ae<1,f>"))) +k.push(B.K) +j=o.y +if(j!=null)B.b.O(k,A.b([r.NH(a,"Zahlungsmethode",j,B.HD),B.K],f)) +j=o.r +if(j!=null){i=A.J(a).ok.r +i=A.ai("Rechnungsadresse",q,q,q,i==null?q:i.e4(B.H),q,q) +h=A.ch(8) +s=A.b([],t.s) +g=j.d +if(g!=null&&g.length!==0)s.push(g) +g=j.e +if(g!=null&&g.length!==0)s.push(g) +g=j.w +if(g!=null&&g.length!==0)s.push(g) +g=j.f +if(g!=null&&g.length!==0)s.push(g) +j=j.x +if(j!=null&&j.length!==0)s.push(j) +B.b.O(k,A.b([i,B.aX,A.c_(q,A.ai(B.b.bn(s,", "),q,q,q,A.J(a).ok.z,q,q),B.n,q,q,new A.cX(B.eP,q,q,h,q,q,B.aq),q,q,q,B.cH,q,q,q),B.K],f))}j=o.w +if(j!=null){i=A.J(a).ok.r +i=A.ai("Lieferadresse",q,q,q,i==null?q:i.e4(B.H),q,q) +h=A.ch(8) +s=A.b([],t.s) +g=j.d +if(g!=null&&g.length!==0)s.push(g) +g=j.e +if(g!=null&&g.length!==0)s.push(g) +g=j.w +if(g!=null&&g.length!==0)s.push(g) +g=j.f +if(g!=null&&g.length!==0)s.push(g) +j=j.x +if(j!=null&&j.length!==0)s.push(j) +B.b.O(k,A.b([i,B.aX,A.c_(q,A.ai(B.b.bn(s,", "),q,q,q,A.J(a).ok.z,q,q),B.n,q,q,new A.cX(B.eP,q,q,h,q,q,B.aq),q,q,q,B.cH,q,q,q),B.K],f))}l=A.aC(l,B.a7.C()>>>16&255,B.a7.C()>>>8&255,B.a7.C()&255) +j=A.ch(12) +i=A.J(a).ok.r +i=A.ai("Gesamtsumme:",q,q,q,i==null?q:i.e4(B.H),q,q) +h=A.J(a).ok.f +h=h==null?q:h.iZ(B.a7,B.H) +k.push(A.c_(q,A.cR(A.b([i,A.ai(o.c+" "+o.d,q,q,q,h,q,q)],f),B.w,B.cj,B.t,0),B.n,q,q,new A.cX(l,q,q,j,q,q,B.aq),q,q,q,B.aG,q,q,q)) +return A.i_(m,A.om(A.bS(k,B.an,B.x,B.t),B.aG),q)}, +NH(a,b,c,d){var s,r,q=null,p=A.dX(d,B.ar,q,20),o=A.J(a).ok.Q +o=A.ai(b,q,q,q,o==null?q:o.b1(B.ar),q,q) +s=A.J(a).ok.z +r=t.p +return A.cR(A.b([p,B.fE,A.ec(A.bS(A.b([o,A.ai(c,q,q,q,s==null?q:s.e4(B.a8),q,q)],r),B.an,B.x,B.t),1)],r),B.w,B.x,B.t,0)}, +a75(a,b){var s,r=null,q=t.p,p=A.b([],q),o=b.e +if(o!=null)p.push(A.a4v(A.ch(8),A.tY(new A.afO(),B.cU,60,o,r,60))) +else p.push(A.c_(r,B.f4,B.n,B.aN,r,r,r,60,r,r,r,r,60)) +p.push(B.fE) +o=A.J(a).ok.z +o=o==null?r:o.e4(B.H) +o=A.ai(b.b,r,r,r,o,r,r) +s=A.J(a).ok.Q +s=s==null?r:s.b1(B.ar) +p.push(A.ec(A.bS(A.b([o,B.fG,A.ai("Menge: "+b.c,r,r,r,s,r,r)],q),B.an,B.x,B.t),1)) +q=A.J(a).ok.x +q=q==null?r:q.iZ(B.a7,B.H) +p.push(A.ai(b.d+" \u20ac",r,r,r,q,r,r)) +return A.k8(new A.bo(B.cH,A.cR(p,B.w,B.x,B.t,0),r),r,B.GG)}, +agL(a){switch(a){case"completed":return B.br +case"processing":return B.fm +case"pending":return B.lj +case"on-hold":return B.vE +case"cancelled":return B.aV +case"refunded":return B.vD +case"failed":return B.aV +default:return B.e2}}} +A.afP.prototype={ +$1(a){return this.a.a75(this.b,a)}, +$S:586} +A.afO.prototype={ +$3(a,b,c){var s=null +return A.c_(s,B.f4,B.n,B.aN,s,s,s,60,s,s,s,s,60)}, +$S:52} +A.r_.prototype={ +ac(){return new A.GZ(new A.OU(new A.mW()),A.b([],t.EI))}} +A.GZ.prototype={ +aw(){this.aK() +this.ud()}, +ud(){var s=0,r=A.H(t.H),q=1,p=[],o=this,n,m,l,k +var $async$ud=A.B(function(a,b){if(a===1){p.push(b) +s=q}for(;;)switch(s){case 0:o.T(new A.av8(o)) +q=3 +s=6 +return A.v(o.d.a02(),$async$ud) +case 6:n=b +o.T(new A.av9(o,n)) +q=1 +s=5 +break +case 3:q=2 +k=p.pop() +m=A.a1(k) +o.T(new A.ava(o,m)) +s=5 +break +case 2:s=1 +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$ud,r)}, +H(a){var s,r,q,p=this,o=null,n=A.ih(o,o,B.mh) +if(p.f)s=B.cc +else if(p.r!=null){s=A.ai("Fehler beim Laden der Bestellungen",o,o,o,A.J(a).ok.r,o,o) +r=p.r +r.toString +r=A.dG(A.bS(A.b([B.hP,B.K,s,B.aX,new A.bo(B.k9,A.ai(r,o,o,o,A.J(a).ok.z,B.aZ,o),o),B.K,A.jc(!1,B.fN,o,o,o,o,o,o,p.gQZ(),o,o)],t.p),B.w,B.b3,B.t),o,o) +s=r}else if(J.eW(p.e)){s=A.dX(B.HQ,B.dJ,o,64) +r=A.J(a).ok.r +r=A.ai("Noch keine Bestellungen",o,o,o,r==null?o:r.b1(B.ar),o,o) +q=A.J(a).ok.z +s=A.dG(A.bS(A.b([s,B.K,r,B.aX,A.ai("Deine Bestellungen werden hier angezeigt",o,o,o,q==null?o:q.b1(B.eR),o,o)],t.p),B.w,B.b3,B.t),o,o)}else s=A.aDR(A.aDx(new A.avb(p),J.cg(p.e),B.aG,B.af),p.gQZ()) +return A.i_(n,s,o)}, +a74(a){var s,r,q,p,o=this,n=null,m=A.aHj("dd.MM.yyyy"),l=o.aaJ(a.b),k=o.c +k.toString +k=A.J(k).ok.w +k=k==null?n:k.e4(B.H) +k=A.ai("Bestellung #"+a.a,n,n,n,k,n,n) +s=m.vG(a.e) +r=o.c +r.toString +r=A.J(r).ok.Q +q=t.p +r=A.bS(A.b([k,B.fG,A.ai(s,n,n,n,r==null?n:r.b1(B.ar),n,n)],q),B.an,B.x,B.t) +s=A.aC(B.d.aI(25.5),l.C()>>>16&255,l.C()>>>8&255,l.C()&255) +k=A.ch(12) +p=A.aCA(l) +k=A.b([A.cR(A.b([r,A.c_(n,A.ai(a.gMh(),n,n,n,A.iL(n,n,l,n,n,n,n,n,n,n,n,12,n,n,B.H,n,n,!0,n,n,n,n,n,n,n,n),n,n),B.n,n,n,new A.cX(s,n,p,k,n,n,B.aq),n,n,n,B.GM,n,n,n)],q),B.w,B.cj,B.t,0),B.cN],q) +s=a.f +if(s.length!==0){r=A.b([],q) +p=s[0].e +if(p!=null)r.push(A.a4v(A.ch(4),A.tY(new A.av6(),B.cU,40,p,n,40))) +r.push(B.iO) +p=s.length +s=p===1?s[0].b:s[0].b+" + "+(p-1)+" weitere" +p=o.c +p.toString +r.push(A.ec(A.ai(s,1,B.aA,n,A.J(p).ok.z,n,n),1)) +B.b.O(k,A.b([A.cR(r,B.w,B.x,B.t,0),B.cN],q))}s=o.c +s.toString +s=A.ai("Gesamtsumme:",n,n,n,A.J(s).ok.z,n,n) +r=o.c +r.toString +r=A.J(r).ok.w +r=r==null?n:r.iZ(B.a7,B.H) +k.push(A.cR(A.b([s,A.ai(a.c+" "+a.d,n,n,n,r,n,n)],q),B.w,B.cj,B.t,0)) +return A.k8(A.uO(!1,n,!0,new A.bo(B.aG,A.bS(k,B.an,B.x,B.t),n),n,!0,n,n,n,n,n,n,n,n,new A.av7(o,a),n,n,n,n),n,B.oh)}, +aaJ(a){switch(a){case"completed":return B.br +case"processing":return B.fm +case"pending":return B.lj +case"on-hold":return B.vE +case"cancelled":return B.aV +case"refunded":return B.vD +case"failed":return B.aV +default:return B.e2}}} +A.av8.prototype={ +$0(){var s=this.a +s.f=!0 +s.r=null}, +$S:0} +A.av9.prototype={ +$0(){var s=this.a +s.e=this.b +s.f=!1}, +$S:0} +A.ava.prototype={ +$0(){var s=this.a +s.r=J.dr(this.b) +s.f=!1}, +$S:0} +A.avb.prototype={ +$2(a,b){var s=this.a +return s.a74(J.aK(s.e,b))}, +$S:117} +A.av7.prototype={ +$0(){var s,r=this.a.c +r.toString +s=A.dY(new A.av5(this.b),null,t.z) +A.c3(r,!1).dn(s)}, +$S:0} +A.av5.prototype={ +$1(a){return new A.vl(this.a,null)}, +$S:587} +A.av6.prototype={ +$3(a,b,c){var s=null +return A.c_(s,B.I2,B.n,B.aN,s,s,s,40,s,s,s,s,40)}, +$S:52} +A.r4.prototype={ +ac(){return new A.H5(new A.bu(null,t.am),new A.f9(B.bH,$.aw()))}} +A.H5.prototype={ +l(){var s=this.e +s.P$=$.aw() +s.M$=0 +this.aD()}, +tY(){var s=0,r=A.H(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g +var $async$tY=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:if(!n.d.gL().rV()){s=1 +break}n.T(new A.avr(n)) +p=4 +m=new A.mW() +s=7 +return A.v(m.wy(B.c.dq(n.e.a.a)),$async$tY) +case 7:l=b +if(n.c!=null){n.T(new A.avs(n,l)) +j=n.c.ad(t.d).f +i=J.aK(l,"message") +i=A.ai(i==null?"E-Mail wurde gesendet":i,null,null,null,null,null,null) +j.jq(A.w0(null,null,null,J.d(J.aK(l,"success"),!0)?B.br:B.lj,null,B.B,null,i,null,B.bW,null,null,null,null,null,null,null,null,null,null))}p=2 +s=6 +break +case 4:p=3 +g=o.pop() +k=A.a1(g) +if(n.c!=null){n.T(new A.avt(n)) +j=n.c +j.toString +A.MG(j,k)}s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$tY,r)}, +H(a){var s,r,q=this,p=null,o=A.ih(p,p,B.Xu),n=A.dX(B.HR,A.J(a).dx,p,80),m=q.r?"E-Mail gesendet":"Passwort zur\xfccksetzen",l=A.J(a).ok.f +m=A.ai(m,p,p,p,l==null?p:l.e4(B.H),B.aZ,p) +l=q.r?"Wir haben dir eine E-Mail mit Anweisungen zum Zur\xfccksetzen deines Passworts gesendet.":"Gib deine E-Mail-Adresse ein und wir senden dir einen Link zum Zur\xfccksetzen deines Passworts." +s=A.J(a).ok.z +r=t.p +s=A.b([n,B.K,m,B.aX,A.ai(l,p,p,p,s==null?p:s.b1(B.ar),B.aZ,p),B.fF],r) +if(!q.r){n=A.os(q.e,A.jk(p,new A.dL(4,A.ch(8),B.bC),p,p,p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,"E-Mail",!0,!0,p,B.p3,p,p,p,p,p,p,p,p,p,p,p,p),B.fK,!1,new A.avu(q),B.fJ,new A.avv()) +m=q.f?p:q.gacy() +l=A.A4(p,p,B.a7,p,p,p,p,p,p,B.k,p,p,B.dP,p,new A.cz(A.ch(8),B.q),p,p,p,p,p) +B.b.O(s,A.b([n,B.c5,A.jc(!1,q.f?B.m5:B.Xs,p,p,p,p,p,p,m,p,l)],r))}else B.b.O(s,A.b([A.dX(B.kS,B.br,p,64),B.K,A.jc(!1,B.X6,p,p,p,p,p,p,new A.avw(a),p,p)],r)) +return A.i_(o,A.oc(!0,A.om(A.aDf(A.bS(s,B.ce,B.x,B.t),q.d),B.eZ),!1,B.as,!0),p)}} +A.avr.prototype={ +$0(){this.a.f=!0}, +$S:0} +A.avs.prototype={ +$0(){var s=this.a +s.f=!1 +s.r=J.d(J.aK(this.b,"success"),!0)}, +$S:0} +A.avt.prototype={ +$0(){this.a.f=!1}, +$S:0} +A.avu.prototype={ +$1(a){return this.a.tY()}, +$S:37} +A.avv.prototype={ +$1(a){if(a.length===0)return"Bitte gib deine E-Mail ein" +if(!A.aHO(a))return"Bitte gib eine g\xfcltige E-Mail ein" +return null}, +$S:41} +A.avw.prototype={ +$0(){A.c3(this.a,!1).dB()}, +$S:0} +A.lY.prototype={ +H(a){var s,r,q,p,o=null,n=this.c,m=n.b,l=A.ih(o,o,A.ai(m,o,o,o,o,o,o)),k=t.p,j=A.b([],k),i=n.r +if(i!=null)j.push(A.e1(A.tY(new A.ah3(),B.cU,o,i,new A.ah4(),o),300,1/0)) +else j.push(A.c_(o,B.p6,B.n,B.aN,o,o,o,300,o,o,o,o,1/0)) +i=A.J(a).ok.f +m=A.ai(m,o,o,o,i==null?o:i.e4(B.H),o,o) +i=A.b([],k) +s=n.f +if(s!=null&&s.length!==0){s=A.J(a).ok.w +s=s==null?o:s.W2(B.e2,B.AP) +s=A.ai(A.k(n.e)+" \u20ac",o,o,o,s,o,o) +r=A.ch(4) +q=A.J(a).ok.Q +B.b.O(i,A.b([s,B.iO,A.c_(o,A.ai("Sale",o,o,o,q==null?o:q.iZ(B.k,B.H),o,o),B.n,o,o,new A.cX(B.aV,o,o,r,o,o,B.aq),o,o,o,B.ka,o,o,o)],k))}i.push(B.Aw) +s=A.J(a).ok.e +s=s==null?o:s.iZ(B.a7,B.H) +i.push(A.ai(n.d+" \u20ac",o,o,o,s,o,o)) +i=A.cR(i,B.w,B.x,B.t,0) +s=n.x +r=s?B.kS:B.Hq +r=A.dX(r,s?B.br:B.aV,o,20) +q=s?"Auf Lager":"Nicht verf\xfcgbar" +p=A.J(a).ok.z +if(p==null)s=o +else{p=p.b1(s?B.br:B.aV) +s=p}s=A.b([m,B.K,i,B.K,A.cR(A.b([r,B.iO,A.ai(q,o,o,o,s,o,o)],k),B.w,B.x,B.t,0),B.c5],k) +m=n.c +if(m.length!==0){i=A.J(a).ok.r +i=A.ai("Beschreibung",o,o,o,i==null?o:i.e4(B.H),o,o) +r=A.ck("<[^>]*>",!0,!1) +B.b.O(s,A.b([i,B.aX,A.ai(A.mP(m,r,""),o,o,o,A.J(a).ok.z,o,o),B.c5],k))}n=n.w +if(n.length>1){m=A.J(a).ok.r +B.b.O(s,A.b([A.ai("Weitere Bilder",o,o,o,m==null?o:m.e4(B.H),o,o),B.aX,A.e1(A.aDx(new A.ah5(this),n.length,o,B.b1),100,o),B.c5],k))}j.push(new A.bo(B.aG,A.bS(s,B.an,B.x,B.t),o)) +n=A.om(A.bS(j,B.an,B.x,B.t),o) +m=A.b([new A.dU(0,B.dB,A.aC(B.d.aI(25.5),B.l.C()>>>16&255,B.l.C()>>>8&255,B.l.C()&255),B.vJ,4)],t.sq) +return A.i_(l,n,A.c_(o,A.zm(new A.ah6(this),t.BW),B.n,o,o,new A.cX(B.k,o,o,o,m,o,B.aq),o,o,o,B.aG,o,o,o))}} +A.ah4.prototype={ +$2(a,b){return B.cc}, +$S:588} +A.ah3.prototype={ +$3(a,b,c){var s=null +return A.c_(s,B.p6,B.n,B.aN,s,s,s,s,s,s,s,s,s)}, +$S:52} +A.ah5.prototype={ +$2(a,b){return new A.bo(B.GH,A.tY(new A.ah1(),B.cU,null,this.a.c.w[b],new A.ah2(),100),null)}, +$S:589} +A.ah2.prototype={ +$2(a,b){var s=null +return A.c_(s,B.cc,B.n,B.aN,s,s,s,s,s,s,s,s,100)}, +$S:75} +A.ah1.prototype={ +$3(a,b,c){var s=null +return A.c_(s,B.f4,B.n,B.aN,s,s,s,s,s,s,s,s,100)}, +$S:52} +A.ah6.prototype={ +$3(a,b,c){var s=null,r=this.a,q=B.b.vC(b.a,new A.agX(r),new A.agY(r)),p=t.p,o=A.b([],p),n=q.b +if(n>0)B.b.O(o,A.b([A.eJ(s,s,B.oW,s,s,new A.agZ(r,b),s,s,s),A.ai(""+n,s,s,s,A.J(a).ok.r,s,s),A.eJ(s,s,B.oV,s,s,new A.ah_(r,b),s,s,s)],p)) +else{p=r.c.x +r=p?new A.ah0(r,b,a):s +n=A.A4(s,s,B.a7,s,s,s,s,s,s,B.k,s,s,B.dP,s,new A.cz(A.ch(8),B.q),s,s,s,s,s) +o.push(A.ec(A.jc(!1,A.ai(p?"Zum Warenkorb hinzuf\xfcgen":"Nicht verf\xfcgbar",s,s,s,B.fM,s,s),s,s,s,s,s,s,r,s,n),1))}return A.cR(o,B.w,B.x,B.t,0)}, +$S:590} +A.agX.prototype={ +$1(a){return a.a.a===this.a.c.a}, +$S:72} +A.agY.prototype={ +$0(){return new A.en(this.a.c,0)}, +$S:591} +A.agZ.prototype={ +$0(){return this.b.ZI(0,this.a.c)}, +$S:0} +A.ah_.prototype={ +$0(){return this.b.H1(this.a.c)}, +$S:0} +A.ah0.prototype={ +$0(){var s=null,r=this.a.c +this.b.H1(r) +this.c.ad(t.d).f.jq(A.w0(s,s,s,s,s,B.B,s,A.ai(r.b+" zum Warenkorb hinzugef\xfcgt",s,s,s,s,s,s),s,B.hr,s,s,s,s,s,s,s,s,s,s))}, +$S:0} +A.o0.prototype={ +ac(){return new A.Hb(new A.wB(),A.b([],t._V),A.Qz())}} +A.Hb.prototype={ +aw(){var s=this +s.aK() +s.ue() +s.Q.Z(0,s.gagi())}, +l(){this.Q.l() +this.aD()}, +agj(){var s=this,r=s.Q.f,q=B.b.gc7(r).at +q.toString +r=B.b.gc7(r).Q +r.toString +if(q>=r*0.9)if(!s.r&&s.z)s.yq()}, +ue(){var s=0,r=A.H(t.H),q=1,p=[],o=this,n,m,l,k +var $async$ue=A.B(function(a,b){if(a===1){p.push(b) +s=q}for(;;)switch(s){case 0:q=3 +o.T(new A.avU(o)) +s=6 +return A.v(o.d.a09(o.a.c,1,20),$async$ue) +case 6:n=b +o.T(new A.avV(o,n)) +q=1 +s=5 +break +case 3:q=2 +k=p.pop() +m=A.a1(k) +o.T(new A.avW(o,m)) +s=5 +break +case 2:s=1 +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$ue,r)}, +yq(){var s=0,r=A.H(t.H),q,p=2,o=[],n=this,m,l,k,j +var $async$yq=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:if(n.r||!n.z){s=1 +break}p=4 +n.T(new A.avR(n)) +m=n.x+1 +s=7 +return A.v(n.d.a07(m,20),$async$yq) +case 7:l=b +n.T(new A.avS(n,l,m)) +p=2 +s=6 +break +case 4:p=3 +j=o.pop() +n.T(new A.avT(n)) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$yq,r)}, +H(a){var s=null,r=this.a.d +return A.i_(A.ih(s,s,A.ai(r==null?"Alle Produkte":r,s,s,s,s,s,s)),this.a6W(),s)}, +a6W(){var s,r,q,p=this,o=null +if(p.f)return B.cc +if(p.w!=null){s=p.c +s.toString +s=A.ai("Fehler beim Laden der Produkte",o,o,o,A.J(s).ok.r,o,o) +r=p.w +r.toString +q=p.c +q.toString +return A.dG(A.bS(A.b([B.hP,B.K,s,B.aX,new A.bo(B.k9,A.ai(r,o,o,o,A.J(q).ok.z,B.aZ,o),o),B.K,A.jc(!1,B.fN,o,o,o,o,o,o,p.gR_(),o,o)],t.p),B.w,B.b3,B.t),o,o)}if(J.eW(p.e))return B.DG +s=J.cg(p.e) +r=p.r?1:0 +return A.aDR(A.a9h(p.Q,B.m6,new A.avQ(p),s+r,B.aG,o,!1),p.gR_())}} +A.avU.prototype={ +$0(){var s=this.a +s.f=!0 +s.w=null}, +$S:0} +A.avV.prototype={ +$0(){var s=this.a,r=this.b +s.e=r +s.f=!1 +s.x=1 +s.z=J.cg(r)===20}, +$S:0} +A.avW.prototype={ +$0(){var s=this.a +s.w=J.dr(this.b) +s.f=!1}, +$S:0} +A.avR.prototype={ +$0(){this.a.r=!0}, +$S:0} +A.avS.prototype={ +$0(){var s=this.b,r=J.aE(s),q=this.a +if(r.ga7(s))q.z=!1 +else{J.aCn(q.e,s) +q.x=this.c +q.z=r.gv(s)===20}q.r=!1}, +$S:0} +A.avT.prototype={ +$0(){this.a.r=!1}, +$S:0} +A.avQ.prototype={ +$2(a,b){var s=this.a +if(b===J.cg(s.e))return B.cc +return new A.o_(J.aK(s.e,b),new A.avP(s,a,b),null)}, +$S:117} +A.avP.prototype={ +$0(){var s=A.dY(new A.avO(this.a,this.c),null,t.z) +A.c3(this.b,!1).dn(s)}, +$S:0} +A.avO.prototype={ +$1(a){return new A.lY(J.aK(this.a.e,this.b),null)}, +$S:71} +A.Cn.prototype={ +ac(){return new A.Hc(new A.mW(),new A.OU(new A.mW()))}} +A.Hc.prototype={ +aw(){this.aK() +this.yo()}, +a89(a){if(a==null)return null +return new A.Ks(a.a,a.b,a.c,a.d,a.e,a.f,a.r,a.w,a.x,a.y,a.z)}, +a8e(a){if(a==null)return null +return new A.Ks(a.a,a.b,a.c,a.d,a.e,a.f,a.r,a.w,a.x,null,null)}, +yo(){var s=0,r=A.H(t.H),q=1,p=[],o=[],n=this,m,l,k +var $async$yo=A.B(function(a,b){if(a===1){p.push(b) +s=q}for(;;)switch(s){case 0:n.T(new A.avZ(n)) +q=3 +s=6 +return A.v(n.e.nv(1),$async$yo) +case 6:m=b +if(J.mR(m))n.T(new A.aw_(n,m)) +o.push(5) +s=4 +break +case 3:q=2 +k=p.pop() +o.push(5) +s=4 +break +case 2:o=[1] +case 4:q=1 +n.T(new A.aw0(n)) +s=o.pop() +break +case 5:return A.F(null,r) +case 1:return A.E(p.at(-1),r)}}) +return A.G($async$yo,r)}, +GH(){var s=0,r=A.H(t.H),q,p=this,o,n,m,l +var $async$GH=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:l=p.c +l.toString +o=A.Co(l,!1,t.nj) +l=o.b +if(l==null){s=1 +break}n=l.d +if(n==null)n="" +m=l.e +if(m==null)m="" +l=p.c +l.toString +A.aFw(!0,new A.aw4(p,n,m,o),l,t.z) +case 1:return A.F(q,r)}}) +return A.G($async$GH,r)}, +H(a){var s=null +return A.i_(A.ih(A.b([A.eJ(s,s,B.I5,s,s,this.gUe(),s,s,s)],t.p),s,B.Xj),A.zm(new A.awe(this),t.nj),s)}, +SZ(a,b){var s=this.c +s.toString +A.aFw(!0,new A.aw2(a,b),s,t.z)}} +A.avZ.prototype={ +$0(){this.a.w=!0}, +$S:0} +A.aw_.prototype={ +$0(){var s=this.a,r=this.b,q=J.aE(r) +s.f=s.a89(q.h(r,0).r) +s.r=s.a8e(q.h(r,0).w)}, +$S:0} +A.aw0.prototype={ +$0(){this.a.w=!1}, +$S:0} +A.aw4.prototype={ +$1(a){var s=this,r=s.d +return new A.tm(s.b,s.c,r.b.b,new A.aw3(s.a,r,a),null)}, +$S:592} +A.aw3.prototype={ +$3(a,b,c){return this.a_H(a,b,c)}, +a_H(a,b,c){var s=0,r=A.H(t.P),q=this,p +var $async$$3=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:p=q.a +s=5 +return A.v(p.d.rT(c,a,b),$async$$3) +case 5:s=e!=null&&p.c!=null?2:4 +break +case 2:s=6 +return A.v(q.b.Cb(),$async$$3) +case 6:p=q.c +A.c3(p,!1).nd(null) +p.ad(t.d).f.jq(B.S4) +s=3 +break +case 4:if(p.c!=null){p=q.c +A.c3(p,!1).nd(null) +A.MG(p,"Fehler beim Aktualisieren des Profils")}case 3:return A.F(null,r)}}) +return A.G($async$$3,r)}, +$S:593} +A.awe.prototype={ +$3(a,b,c){var s,r,q,p,o,n=null,m=b.b +if(m==null)return A.dG(A.bS(A.b([B.HX,B.K,B.X0,B.K,A.jc(!1,B.B0,n,n,n,n,n,n,new A.aw9(a),n,n)],t.p),B.w,B.b3,B.t),n,n) +s=A.ai(m.gJ0()[0].toUpperCase(),n,n,n,B.Va,n,n) +r=m.gJ0() +q=A.J(a).ok.r +r=A.ai(r,n,n,n,q==null?n:q.e4(B.H),n,n) +m=m.b +q=A.J(a).ok.z +p=t.p +q=A.k8(new A.bo(B.aG,A.cR(A.b([new A.Li(s,B.a7,40,n),B.RN,A.ec(A.bS(A.b([r,B.fG,A.ai(m,n,n,n,q==null?n:q.b1(B.ar),n,n)],p),B.an,B.x,B.t),1)],p),B.w,B.x,B.t,0),n),n,n) +m=A.J(a).ok.w +m=A.ai("Konto",n,n,n,m==null?n:m.e4(B.H),n,n) +s=this.a +r=A.k8(A.bS(A.b([A.uZ(B.p1,new A.awa(a),n,B.mh,B.hN),B.Gd,A.uZ(B.hO,s.gUe(),n,B.AZ,B.hN)],p),B.w,B.x,B.t),n,n) +o=A.J(a).ok.w +m=A.b([q,B.c5,m,B.cN,r,B.c5,A.ai("Adressen",n,n,n,o==null?n:o.e4(B.H),n,n),B.cN],p) +if(s.w)m.push(B.pB) +else{r=A.b([],p) +q=s.f +if(q!=null&&!q.ga7(0))r.push(A.k8(A.uZ(B.p5,new A.awb(s),A.ai(q.gJ_(),n,n,n,n,n,n),B.X2,B.hN),n,n)) +q=s.r +if(q!=null&&!q.ga7(0))r.push(A.k8(A.uZ(B.HY,new A.awc(s),A.ai(q.gJ_(),n,n,n,n,n,n),B.Xt,B.hN),n,B.GL)) +q=s.f +if(q==null||q.ga7(0)){q=s.r +q=q==null||q.ga7(0)}else q=!1 +if(q)r.push(A.k8(B.Om,n,n)) +B.b.O(m,r)}m.push(B.c5) +r=A.aVx(n,n,n,n,n,n,n,n,n,n,n,n,B.dP,n,n,n,n,n,n,n) +m.push(A.e1(new A.OX(!0,new A.awd(s,b,a),n,n,n,r,n,n,!1,n,!0,n,new A.Xc(B.B2,B.oY,r,n,n),n),n,1/0)) +return A.om(A.bS(m,B.an,B.x,B.t),B.aG)}, +$S:594} +A.aw9.prototype={ +$0(){var s=A.dY(new A.aw8(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.aw8.prototype={ +$1(a){return B.i3}, +$S:76} +A.awa.prototype={ +$0(){var s=A.dY(new A.aw7(),null,t.z) +A.c3(this.a,!1).dn(s)}, +$S:0} +A.aw7.prototype={ +$1(a){return B.vS}, +$S:231} +A.awb.prototype={ +$0(){var s=this.a,r=s.f +r.toString +s.SZ("Rechnungsadresse",r)}, +$S:0} +A.awc.prototype={ +$0(){var s=this.a,r=s.r +r.toString +s.SZ("Lieferadresse",r)}, +$S:0} +A.awd.prototype={ +$0(){var s=0,r=A.H(t.H),q=this +var $async$$0=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=2 +return A.v(q.b.hV(),$async$$0) +case 2:if(q.a.c!=null)A.c3(q.c,!1).ahL(A.axH(A.dY(new A.aw5(),null,t.z),B.mJ,!1,null),new A.aw6()) +return A.F(null,r)}}) +return A.G($async$$0,r)}, +$S:9} +A.aw5.prototype={ +$1(a){return B.i3}, +$S:76} +A.aw6.prototype={ +$1(a){return!1}, +$S:595} +A.aw2.prototype={ +$1(a){var s=null,r=A.ai(this.a,s,s,s,s,s,s),q=A.om(A.ai(this.b.gJ_(),s,s,s,s,s,s),s) +return A.aCv(A.b([A.kM(B.Xo,new A.aw1(a),s)],t.p),q,r)}, +$S:226} +A.aw1.prototype={ +$0(){A.c3(this.a,!1).nd(null) +return null}, +$S:0} +A.tm.prototype={ +ac(){return new A.XY()}, +atl(a,b,c){return this.f.$3(a,b,c)}} +A.XY.prototype={ +aw(){var s,r,q,p=this +p.aK() +s=p.a +r=s.c +q=$.aw() +p.d=new A.f9(new A.cA(r,B.en,B.bg),q) +r=s.d +p.e=new A.f9(new A.cA(r,B.en,B.bg),q) +s=s.e +p.f=new A.f9(new A.cA(s,B.en,B.bg),q)}, +l(){var s,r=this,q=r.d +q===$&&A.a() +s=q.P$=$.aw() +q.M$=0 +q=r.e +q===$&&A.a() +q.P$=s +q.M$=0 +q=r.f +q===$&&A.a() +q.P$=s +q.M$=0 +r.aD()}, +H(a){var s,r,q,p=this,o=null,n=p.d +n===$&&A.a() +n=A.El(o,B.ci,!1,o,!0,B.B,o,A.a23(),n,o,o,o,o,o,2,B.Iv,B.a9,!0,o,!0,o,!1,o,B.c8,o,o,o,o,o,o,o,o,1,o,o,!1,"\u2022",o,o,o,o,o,!1,o,o,!1,o,!0,o,B.dQ,o,o,o,o,o,o,o,o,o,o,o,o,!0,B.az,o,B.em,o,o,o,o) +s=p.e +s===$&&A.a() +s=A.El(o,B.ci,!1,o,!0,B.B,o,A.a23(),s,o,o,o,o,o,2,B.Ix,B.a9,!0,o,!0,o,!1,o,B.c8,o,o,o,o,o,o,o,o,1,o,o,!1,"\u2022",o,o,o,o,o,!1,o,o,!1,o,!0,o,B.dQ,o,o,o,o,o,o,o,o,o,o,o,o,!0,B.az,o,B.em,o,o,o,o) +r=p.f +r===$&&A.a() +q=t.p +r=A.om(A.bS(A.b([n,B.cN,s,B.cN,A.El(o,B.ci,!1,o,!0,B.B,o,A.a23(),r,o,o,o,o,o,2,B.Iw,B.a9,!0,o,!0,o,!1,o,B.c8,o,o,o,o,B.fK,o,o,o,1,o,o,!1,"\u2022",o,o,o,o,o,!1,o,o,!1,o,!0,o,B.dQ,o,o,o,o,o,o,o,o,o,o,o,o,!0,B.az,o,B.em,o,o,o,o)],q),B.w,B.x,B.c1),o) +return A.aCv(A.b([A.kM(B.B_,new A.avX(a),o),A.jc(!1,B.Xp,o,o,o,o,o,o,new A.avY(p),o,o)],q),r,B.AZ)}} +A.avX.prototype={ +$0(){A.c3(this.a,!1).nd(null) +return null}, +$S:0} +A.avY.prototype={ +$0(){var s,r,q=this.a,p=q.a +p.toString +s=q.d +s===$&&A.a() +s=B.c.dq(s.a.a) +r=q.e +r===$&&A.a() +r=B.c.dq(r.a.a) +q=q.f +q===$&&A.a() +p.atl(s,r,B.c.dq(q.a.a))}, +$S:0} +A.rm.prototype={ +ac(){var s=$.aw() +return new A.Hn(new A.bu(null,t.am),new A.f9(B.bH,s),new A.f9(B.bH,s),new A.f9(B.bH,s),new A.f9(B.bH,s),new A.f9(B.bH,s),new A.f9(B.bH,s))}} +A.Hn.prototype={ +l(){var s=this,r=s.e,q=r.P$=$.aw() +r.M$=0 +r=s.f +r.P$=q +r.M$=0 +r=s.r +r.P$=q +r.M$=0 +r=s.w +r.P$=q +r.M$=0 +r=s.x +r.P$=q +r.M$=0 +r=s.y +r.P$=q +r.M$=0 +s.aD()}, +tZ(){var s=0,r=A.H(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f +var $async$tZ=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:if(!n.d.gL().rV()){s=1 +break}if(!n.at){n.c.ad(t.d).f.jq(B.S2) +s=1 +break}n.T(new A.aws(n)) +p=4 +m=new A.mW() +j=B.c.dq(n.e.a.a) +i=B.c.dq(n.f.a.a) +h=n.r.a.a +s=7 +return A.v(J.aRi(m,j,B.c.dq(n.x.a.a),B.c.dq(n.y.a.a),h,i),$async$tZ) +case 7:l=b +if(n.c!=null){n.T(new A.awt(n)) +j=J.d(J.aK(l,"success"),!0) +i=t.d +h=n.c +if(j){h.ad(i).f.jq(B.S0) +j=n.c +j.toString +A.c3(j,!1).dB()}else{j=h.ad(i).f +i=J.aK(l,"message") +j.jq(A.w0(null,null,null,B.aV,null,B.B,null,A.ai(i==null?"Registrierung fehlgeschlagen":i,null,null,null,null,null,null),null,B.bW,null,null,null,null,null,null,null,null,null,null))}}p=2 +s=6 +break +case 4:p=3 +f=o.pop() +k=A.a1(f) +if(n.c!=null){n.T(new A.awu(n)) +j=n.c +j.toString +A.MG(j,k)}s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$tZ,r)}, +H(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=A.ih(h,h,B.X9),f=A.dX(B.HF,A.J(a).dx,h,80),e=A.J(a).ok.f +e=A.ai("Account erstellen",h,h,h,e==null?h:e.e4(B.H),B.aZ,h) +s=A.os(i.x,A.jk(h,new A.dL(4,A.ch(8),B.bC),h,h,h,h,h,h,!0,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,"Vorname",!0,!0,h,B.hO,h,h,h,h,h,h,h,h,h,h,h,h),h,!1,h,B.dp,h) +r=A.os(i.y,A.jk(h,new A.dL(4,A.ch(8),B.bC),h,h,h,h,h,h,!0,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,"Nachname",!0,!0,h,B.I0,h,h,h,h,h,h,h,h,h,h,h,h),h,!1,h,B.dp,h) +q=A.os(i.e,A.jk(h,new A.dL(4,A.ch(8),B.bC),h,h,h,h,h,h,!0,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,"E-Mail",!0,!0,h,B.p3,h,h,h,h,h,h,h,h,h,h,h,h),B.fK,!1,h,B.dp,new A.awA()) +p=A.os(i.f,A.jk(h,new A.dL(4,A.ch(8),B.bC),h,h,h,h,h,h,!0,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,"Benutzername",!0,!0,h,B.I4,h,h,h,h,h,h,h,h,h,h,h,h),h,!1,h,B.dp,new A.awB()) +o=i.z +n=A.eJ(h,h,A.dX(o?B.kV:B.kW,h,h,h),h,h,new A.awC(i),h,h,h) +o=A.os(i.r,A.jk(h,new A.dL(4,A.ch(8),B.bC),h,h,h,h,h,h,!0,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,"Passwort",!0,!0,h,B.oX,h,h,h,h,h,h,n,h,h,h,h,h),h,o,h,B.dp,new A.awD()) +n=i.Q +m=A.eJ(h,h,A.dX(n?B.kV:B.kW,h,h,h),h,h,new A.awE(i),h,h,h) +n=A.os(i.w,A.jk(h,new A.dL(4,A.ch(8),B.bC),h,h,h,h,h,h,!0,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,"Passwort best\xe4tigen",!0,!0,h,B.HV,h,h,h,h,h,h,m,h,h,h,h,h),h,n,new A.awF(i),B.fJ,new A.awG(i)) +m=t.p +l=A.cR(A.b([new A.z2(i.at,new A.awH(i),h),A.ec(A.qf(h,A.ai("Ich akzeptiere die Nutzungsbedingungen und Datenschutzerkl\xe4rung",h,h,h,A.J(a).ok.Q,h,h),B.a9,!1,h,h,h,h,h,h,h,h,h,h,h,h,h,h,new A.awI(i),h,h,h,h,h,h),1)],m),B.w,B.x,B.t,0) +k=i.as?h:i.gacW() +j=A.A4(h,h,B.a7,h,h,h,h,h,h,B.k,h,h,B.dP,h,new A.cz(A.ch(8),B.q),h,h,h,h,h) +return A.i_(g,A.oc(!0,A.om(A.aDf(A.bS(A.b([f,B.K,e,B.fF,s,B.K,r,B.K,q,B.K,p,B.K,o,B.K,n,B.K,l,B.c5,A.jc(!1,i.as?B.m5:B.Xi,h,h,h,h,h,h,k,h,j),B.K,A.cR(A.b([B.Xf,A.kM(B.X5,new A.awJ(a),h)],m),B.w,B.b3,B.t,0)],m),B.ce,B.x,B.t),i.d),B.eZ),!1,B.as,!0),h)}} +A.aws.prototype={ +$0(){this.a.as=!0}, +$S:0} +A.awt.prototype={ +$0(){this.a.as=!1}, +$S:0} +A.awu.prototype={ +$0(){this.a.as=!1}, +$S:0} +A.awA.prototype={ +$1(a){if(a.length===0)return"Bitte gib deine E-Mail ein" +if(!A.aHO(a))return"Bitte gib eine g\xfcltige E-Mail ein" +return null}, +$S:41} +A.awB.prototype={ +$1(a){var s=a.length +if(s===0)return"Bitte gib einen Benutzernamen ein" +if(s<3)return"Benutzername muss mindestens 3 Zeichen lang sein" +return null}, +$S:41} +A.awC.prototype={ +$0(){var s=this.a +s.T(new A.awz(s))}, +$S:0} +A.awz.prototype={ +$0(){var s=this.a +s.z=!s.z}, +$S:0} +A.awD.prototype={ +$1(a){var s=a.length +if(s===0)return"Bitte gib ein Passwort ein" +if(s<6)return"Passwort muss mindestens 6 Zeichen lang sein" +return null}, +$S:41} +A.awE.prototype={ +$0(){var s=this.a +s.T(new A.awy(s))}, +$S:0} +A.awy.prototype={ +$0(){var s=this.a +s.Q=!s.Q}, +$S:0} +A.awF.prototype={ +$1(a){return this.a.tZ()}, +$S:37} +A.awG.prototype={ +$1(a){if(a.length===0)return"Bitte best\xe4tige dein Passwort" +if(a!==this.a.r.a.a)return"Passw\xf6rter stimmen nicht \xfcberein" +return null}, +$S:41} +A.awH.prototype={ +$1(a){var s=this.a +s.T(new A.awx(s,a))}, +$S:596} +A.awx.prototype={ +$0(){this.a.at=this.b===!0}, +$S:0} +A.awI.prototype={ +$0(){var s=this.a +s.T(new A.aww(s))}, +$S:0} +A.aww.prototype={ +$0(){var s=this.a +s.at=!s.at}, +$S:0} +A.awJ.prototype={ +$0(){var s,r=A.dY(new A.awv(),null,t.z),q=A.c3(this.a,!1) +r=A.axH(r,B.mK,!1,null) +s=q.e +s.YC(0,A.k0()).VK(0,null,!0,!0) +s.a.push(r) +s.ak() +q.tP() +q.xL()}, +$S:0} +A.awv.prototype={ +$1(a){return B.i3}, +$S:76} +A.rD.prototype={ +ac(){return new A.I1(new A.wB(),new A.f9(B.bH,$.aw()),A.b([],t._V))}} +A.I1.prototype={ +l(){var s=this.e +s.P$=$.aw() +s.M$=0 +this.aD()}, +qa(a){return this.ahl(a)}, +ahl(a){var s=0,r=A.H(t.H),q,p=2,o=[],n=this,m,l,k,j,i +var $async$qa=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:if(B.c.dq(a).length===0){n.T(new A.ay4(n)) +s=1 +break}n.T(new A.ay5(n,a)) +A.a2I(a) +p=4 +s=7 +return A.v(n.d.a08(50,a),$async$qa) +case 7:m=c +n.T(new A.ay6(n,m)) +p=2 +s=6 +break +case 4:p=3 +i=o.pop() +l=A.a1(i) +n.T(new A.ay7(n,l)) +j=n.c +j.toString +A.MG(j,l) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$qa,r)}, +H(a){var s,r,q=this,p=null,o=A.ih(p,p,B.Xa),n=q.e,m=n.a.a.length!==0?A.eJ(p,p,B.HZ,p,p,new A.ayb(q),p,p,p):p +m=A.El(p,B.ci,!1,p,!0,B.B,p,A.a23(),n,p,p,p,p,p,2,A.jk(p,new A.dL(4,A.ch(12),B.bC),p,p,p,p,p,p,!0,p,p,p,p,p,p,B.eP,!0,p,p,p,p,p,p,p,p,p,p,p,p,p,p,"Produkte suchen...",p,p,p,p,p,p,p,p,p,!0,!0,p,B.p2,p,p,p,p,p,p,m,p,p,p,p,p),B.a9,!0,p,!0,p,!1,p,B.c8,p,p,p,p,p,p,p,p,1,p,p,!1,"\u2022",p,new A.ayc(q),p,q.gahk(),p,!1,p,p,!1,p,!0,p,B.dQ,p,p,p,p,p,p,p,p,p,p,p,p,!0,B.az,p,B.em,p,B.AU,p,p) +if(q.r)n=B.L3 +else if(q.w!=null)n=A.aJP("Fehler bei der Suche",new A.ayd(q)) +else if(J.eW(q.f)&&q.x.length!==0){n=A.dX(B.HJ,B.dJ,p,64) +s=A.J(a).ok.r +s=A.ai("Keine Ergebnisse gefunden",p,p,p,s==null?p:s.b1(B.ar),p,p) +r=A.J(a).ok.z +n=A.dG(A.bS(A.b([n,B.K,s,B.aX,A.ai("Versuche es mit anderen Suchbegriffen",p,p,p,r==null?p:r.b1(B.eR),p,p)],t.p),B.w,B.b3,B.t),p,p)}else if(J.eW(q.f)){n=A.dX(B.kU,B.dJ,p,64) +s=A.J(a).ok.r +n=A.dG(A.bS(A.b([n,B.K,A.ai("Suche nach Produkten",p,p,p,s==null?p:s.b1(B.ar),p,p)],t.p),B.w,B.b3,B.t),p,p)}else n=A.a9h(p,B.m6,new A.aye(q),J.cg(q.f),B.aG,p,!1) +return A.i_(o,A.bS(A.b([new A.bo(B.aG,m,p),A.ec(n,1)],t.p),B.w,B.x,B.t),p)}} +A.ay4.prototype={ +$0(){var s=this.a +s.f=A.b([],t._V) +s.w=null}, +$S:0} +A.ay5.prototype={ +$0(){var s=this.a +s.r=!0 +s.w=null +s.x=this.b}, +$S:0} +A.ay6.prototype={ +$0(){var s=this.a +s.f=this.b +s.r=!1}, +$S:0} +A.ay7.prototype={ +$0(){var s=this.a +s.w=J.dr(this.b) +s.r=!1}, +$S:0} +A.ayb.prototype={ +$0(){var s=this.a +s.e.nS(0,B.AQ) +s.qa("")}, +$S:0} +A.ayc.prototype={ +$1(a){this.a.T(new A.aya())}, +$S:37} +A.aya.prototype={ +$0(){}, +$S:0} +A.ayd.prototype={ +$0(){var s=this.a +return s.qa(s.x)}, +$S:0} +A.aye.prototype={ +$2(a,b){var s=this.a +return new A.o_(J.aK(s.f,b),new A.ay9(s,b,a),null)}, +$S:230} +A.ay9.prototype={ +$0(){var s=this.a,r=this.b +A.a2H(J.aK(s.f,r).a,J.aK(s.f,r).b) +r=A.dY(new A.ay8(s,r),null,t.z) +A.c3(this.c,!1).dn(r)}, +$S:0} +A.ay8.prototype={ +$1(a){return new A.lY(J.aK(this.a.f,this.b),null)}, +$S:71} +A.mW.prototype={ +hU(a,b){return this.asp(a,b)}, +asp(a,b){var s=0,r=A.H(t.op),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d +var $async$hU=A.B(function(c,a0){if(c===1){o.push(a0) +s=p}for(;;)switch(s){case 0:p=4 +m=A.d3("https://hyggecraftery.com/wp-json/jwt-auth/v1/token") +g=t.N +f=A.ab(["Content-Type","application/json"],g,g) +s=7 +return A.v(A.JU(m,B.a4.hl(A.ab(["username",a,"password",b],g,g)),f),$async$hU) +case 7:l=a0 +s=l.b===200?8:10 +break +case 8:g=l +k=B.a4.bM(0,A.j1(A.iY(g.e)).bM(0,g.w)) +s=J.aK(k,"token")!=null?11:12 +break +case 11:s=13 +return A.v(A.jG(),$async$hU) +case 13:j=a0 +s=14 +return A.v(j.us("String","auth_token",J.aK(k,"token")),$async$hU) +case 14:s=15 +return A.v(n.x0(J.aK(k,"token")),$async$hU) +case 15:i=a0 +s=i!=null?16:17 +break +case 16:s=18 +return A.v(n.ny(i),$async$hU) +case 18:q=i +s=1 +break +case 17:case 12:s=9 +break +case 10:s=l.b===403?19:20 +break +case 19:s=21 +return A.v(n.mp(a,b),$async$hU) +case 21:g=a0 +q=g +s=1 +break +case 20:case 9:q=null +s=1 +break +p=2 +s=6 +break +case 4:p=3 +d=o.pop() +h=A.a1(d) +A.ie("Login-Fehler: "+A.k(h)) +q=null +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$hU,r)}, +mp(a,b){return this.af5(a,b)}, +af5(a,b){var s=0,r=A.H(t.op),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c +var $async$mp=A.B(function(a0,a1){if(a0===1){o.push(a1) +s=p}for(;;)switch(s){case 0:p=4 +e=B.bD.d_(a+":"+b) +m=B.fY.gvn().d_(e) +l=A.d3(u.I) +e=t.N +s=7 +return A.v(A.pg(l,A.ab(["Authorization","Basic "+A.k(m)],e,e)),$async$mp) +case 7:k=a1 +s=k.b===200?8:9 +break +case 8:e=k +j=t.j.a(B.a4.bM(0,A.j1(A.iY(e.e)).bM(0,e.w))) +i=J.aGm(j,new A.a30(a),new A.a31()) +s=i!=null?10:11 +break +case 10:h=A.ano(i) +s=12 +return A.v(n.ny(h),$async$mp) +case 12:s=13 +return A.v(A.jG(),$async$mp) +case 13:g=a1 +s=14 +return A.v(g.us("String","username",a),$async$mp) +case 14:s=15 +return A.v(g.us("String","password",b),$async$mp) +case 15:q=h +s=1 +break +case 11:case 9:q=null +s=1 +break +p=2 +s=6 +break +case 4:p=3 +c=o.pop() +f=A.a1(c) +A.ie("Alternative Login-Fehler: "+A.k(f)) +q=null +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$mp,r)}, +x0(a){return this.a0h(a)}, +a0h(a){var s=0,r=A.H(t.op),q,p=2,o=[],n,m,l,k,j,i,h +var $async$x0=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:p=4 +n=A.d3(u.E) +j=t.N +s=7 +return A.v(A.pg(n,A.ab(["Authorization","Bearer "+a],j,j)),$async$x0) +case 7:m=c +if(m.b===200){j=m +l=B.a4.bM(0,A.j1(A.iY(j.e)).bM(0,j.w)) +j=A.ano(l) +q=j +s=1 +break}q=null +s=1 +break +p=2 +s=6 +break +case 4:p=3 +h=o.pop() +k=A.a1(h) +A.ie("Fehler beim Abrufen der Benutzerdaten: "+A.k(k)) +q=null +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$x0,r)}, +ny(a){return this.a0n(a)}, +a0n(a){var s=0,r=A.H(t.H) +var $async$ny=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:s=3 +return A.v(A.jG(),$async$ny) +case 3:s=2 +return A.v(c.us("String","user_data",B.a4.hl(a.fB())),$async$ny) +case 2:return A.F(null,r)}}) +return A.G($async$ny,r)}, +wZ(){var s=0,r=A.H(t.op),q,p=2,o=[],n,m,l,k,j,i,h +var $async$wZ=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:p=4 +s=7 +return A.v(A.jG(),$async$wZ) +case 7:n=b +m=A.cC(J.aK(n.a,"user_data")) +if(m!=null){l=B.a4.bM(0,m) +j=A.ano(l) +q=j +s=1 +break}q=null +s=1 +break +p=2 +s=6 +break +case 4:p=3 +h=o.pop() +k=A.a1(h) +A.ie("Fehler beim Laden des gespeicherten Benutzers: "+A.k(k)) +q=null +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$wZ,r)}, +hV(){var s=0,r=A.H(t.H),q +var $async$hV=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:s=2 +return A.v(A.jG(),$async$hV) +case 2:q=b +s=3 +return A.v(q.F(0,"user_data"),$async$hV) +case 3:s=4 +return A.v(q.F(0,"auth_token"),$async$hV) +case 4:s=5 +return A.v(q.F(0,"username"),$async$hV) +case 5:s=6 +return A.v(q.F(0,"password"),$async$hV) +case 6:return A.F(null,r)}}) +return A.G($async$hV,r)}, +t4(){var s=0,r=A.H(t.ob),q,p,o +var $async$t4=A.B(function(a,b){if(a===1)return A.E(b,r) +for(;;)switch(s){case 0:p=A +o=J +s=3 +return A.v(A.jG(),$async$t4) +case 3:q=p.cC(o.aK(b.a,"auth_token")) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$t4,r)}, +Cc(a,b,c,d,e,f){return this.auy(0,b,c,d,e,f)}, +auy(a,b,c,d,e,a0){var s=0,r=A.H(t.a),q,p=2,o=[],n,m,l,k,j,i,h,g,f +var $async$Cc=A.B(function(a1,a2){if(a1===1){o.push(a2) +s=p}for(;;)switch(s){case 0:p=4 +n=A.d3("https://hyggecraftery.com/wp-json/wp/v2/users") +i=t.N +h=A.ab(["Content-Type","application/json"],i,i) +s=7 +return A.v(A.JU(n,B.a4.hl(A.ab(["username",a0,"email",b,"password",e,"first_name",c,"last_name",d],i,i)),h),$async$Cc) +case 7:m=a2 +if(m.b===201){h=m +l=B.a4.bM(0,A.j1(A.iY(h.e)).bM(0,h.w)) +i=A.ab(["success",!0,"user_id",J.aK(l,"id")],i,t.z) +q=i +s=1 +break}else{h=m +k=B.a4.bM(0,A.j1(A.iY(h.e)).bM(0,h.w)) +h=J.aK(k,"message") +i=A.ab(["success",!1,"message",h==null?"Registrierung fehlgeschlagen":h],i,t.z) +q=i +s=1 +break}p=2 +s=6 +break +case 4:p=3 +f=o.pop() +j=A.a1(f) +i=A.ab(["success",!1,"message","Fehler bei der Registrierung: "+A.k(j)],t.N,t.z) +q=i +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$Cc,r)}, +wy(a){return this.av0(a)}, +av0(a){var s=0,r=A.H(t.a),q,p=2,o=[],n,m,l,k,j,i,h,g,f +var $async$wy=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:p=4 +n=A.d3("https://hyggecraftery.com/wp-json/bdpwr/v1/reset-password") +i=t.N +h=A.ab(["Content-Type","application/json"],i,i) +s=7 +return A.v(A.JU(n,B.a4.hl(A.ab(["email",a],i,i)),h),$async$wy) +case 7:m=c +h=t.z +s=m.b===200?8:10 +break +case 8:i=A.ab(["success",!0,"message","Reset-Link wurde per E-Mail gesendet"],i,h) +q=i +s=1 +break +s=9 +break +case 10:l=A.d3("https://hyggecraftery.com/wp-login.php?action=lostpassword") +s=11 +return A.v(A.JU(l,"user_login="+a,A.ab(["Content-Type","application/x-www-form-urlencoded"],i,i)),$async$wy) +case 11:k=c +i=A.ab(["success",k.b===200,"message","Bitte pr\xfcfe deine E-Mails f\xfcr den Reset-Link"],i,h) +q=i +s=1 +break +case 9:p=2 +s=6 +break +case 4:p=3 +f=o.pop() +j=A.a1(f) +i=A.ab(["success",!1,"message","Fehler beim Anfordern des Passwort-Resets: "+A.k(j)],t.N,t.z) +q=i +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$wy,r)}, +rT(a,b,c){var s=null +return this.avK(a,b,c)}, +avK(a,b,a0){var s=0,r=A.H(t.op),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c +var $async$rT=A.B(function(a1,a2){if(a1===1){o.push(a2) +s=p}for(;;)switch(s){case 0:d=null +p=4 +s=7 +return A.v(n.t4(),$async$rT) +case 7:m=a2 +if(m==null){q=null +s=1 +break}l=A.d3(u.E) +f=t.N +k=A.ab(["first_name",b,"last_name",a0],f,t.z) +J.dR(k,"email",a) +if(d!=null)J.dR(k,"name",d) +f=A.ab(["Authorization","Bearer "+m,"Content-Type","application/json"],f,f) +s=8 +return A.v(A.JU(l,B.a4.hl(k),f),$async$rT) +case 8:j=a2 +s=j.b===200?9:10 +break +case 9:f=j +i=B.a4.bM(0,A.j1(A.iY(f.e)).bM(0,f.w)) +h=A.ano(i) +s=11 +return A.v(n.ny(h),$async$rT) +case 11:q=h +s=1 +break +case 10:q=null +s=1 +break +p=2 +s=6 +break +case 4:p=3 +c=o.pop() +g=A.a1(c) +A.ie("Fehler beim Aktualisieren des Profils: "+A.k(g)) +q=null +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$rT,r)}} +A.a30.prototype={ +$1(a){var s=J.aE(a),r=this.a +return J.d(s.h(a,"email"),r)||J.d(s.h(a,"username"),r)}, +$S:233} +A.a31.prototype={ +$0(){return null}, +$S:13} +A.a4W.prototype={ +CA(a){return this.avR(a)}, +avR(a){var s=0,r=A.H(t.Hy),q,p=2,o=[],n,m,l,k,j,i,h,g,f,e +var $async$CA=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:p=4 +n=A.d3("https://hyggecraftery.com/wp-json/wc/v3/coupons").pp(0,A.ab(["code",a,"status","publish"],t.N,t.z)) +s=7 +return A.v(A.pg(n,null),$async$CA) +case 7:m=c +if(m.b===200){i=m +l=B.a4.bM(0,A.j1(A.iY(i.e)).bM(0,i.w)) +if(J.mR(l)){k=J.aK(l,0) +i=J.aK(k,"code") +if(i==null)i=a +J.aK(k,"description") +h=J.aK(k,"discount_type") +if(h==null)h="fixed_cart" +g=J.aK(k,"amount") +if(g==null)g="0" +q=new A.pP(i,h,g,!0,null) +s=1 +break}else{q=new A.pP(a,"fixed_cart","0",!1,"Gutschein-Code nicht gefunden") +s=1 +break}}else{q=new A.pP(a,"fixed_cart","0",!1,"Fehler beim Validieren des Gutscheins") +s=1 +break}p=2 +s=6 +break +case 4:p=3 +e=o.pop() +j=A.a1(e) +i=A.k(j) +q=new A.pP(a,"fixed_cart","0",!1,"Fehler: "+i) +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$CA,r)}, +Vt(a,b){var s +if(!a.e)return 0 +s=A.agT(a.d) +if(s==null)s=0 +switch(a.c){case"percent":case"percent_product":return b*s/100 +case"fixed_cart":case"fixed_product":return s +default:return 0}}} +A.OU.prototype={ +nv(a){var s=1 +return this.a03(a)}, +a02(){return this.nv(20)}, +a03(a){var s=0,r=A.H(t.zq),q,p=2,o=[],n=this,m,l,k,j,i,h +var $async$nv=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:i=1 +p=4 +s=7 +return A.v(n.a.t4(),$async$nv) +case 7:m=c +s=m!=null?8:9 +break +case 8:s=10 +return A.v(n.tT(m,a,i),$async$nv) +case 10:k=c +q=k +s=1 +break +case 9:s=11 +return A.v(n.o1(a,i),$async$nv) +case 11:k=c +q=k +s=1 +break +p=2 +s=6 +break +case 4:p=3 +h=o.pop() +l=A.a1(h) +k=A.cO("Fehler beim Abrufen der Bestellungen: "+A.k(l)) +throw A.e(k) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$nv,r)}, +tT(a,b,c){return this.aaz(a,b,c)}, +aaz(a,b,c){var s=0,r=A.H(t.zq),q,p=2,o=[],n=this,m,l,k,j,i,h +var $async$tT=A.B(function(d,e){if(d===1){o.push(e) +s=p}for(;;)switch(s){case 0:p=4 +j=t.N +m=A.d3(u.x).pp(0,A.ab(["per_page",B.f.k(b),"page",B.f.k(c),"customer","me"],j,t.z)) +s=7 +return A.v(A.pg(m,A.ab(["Authorization","Bearer "+a],j,j)),$async$tT) +case 7:l=e +if(l.b===200){j=l +k=B.a4.bM(0,A.j1(A.iY(j.e)).bM(0,j.w)) +j=J.h0(k,new A.afT(),t._5) +j=A.a6(j,j.$ti.i("ax.E")) +q=j +s=1 +break}else{j=A.cO("Fehler: "+l.b) +throw A.e(j)}p=2 +s=6 +break +case 4:p=3 +h=o.pop() +s=8 +return A.v(n.o1(b,c),$async$tT) +case 8:j=e +q=j +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$tT,r)}, +o1(a,b){return this.aay(a,b)}, +aay(a,a0){var s=0,r=A.H(t.zq),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b +var $async$o1=A.B(function(a1,a2){if(a1===1){o.push(a2) +s=p}for(;;)switch(s){case 0:p=4 +s=7 +return A.v(A.jG(),$async$o1) +case 7:m=a2 +l=A.cC(J.aK(m.a,"username")) +k=A.cC(J.aK(m.a,"password")) +if(l==null||k==null){d=A.cO("Nicht eingeloggt") +throw A.e(d)}s=8 +return A.v(n.y4(l,k),$async$o1) +case 8:j=a2 +if(j==null){d=A.cO("Kunde nicht gefunden") +throw A.e(d)}d=B.bD.d_(l+":"+k) +i=B.fY.gvn().d_(d) +d=t.N +h=A.d3(u.x).pp(0,A.ab(["per_page",B.f.k(a),"page",B.f.k(a0),"customer",B.f.k(j)],d,t.z)) +s=9 +return A.v(A.pg(h,A.ab(["Authorization","Basic "+A.k(i)],d,d)),$async$o1) +case 9:g=a2 +if(g.b===200){d=g +f=B.a4.bM(0,A.j1(A.iY(d.e)).bM(0,d.w)) +d=J.h0(f,new A.afS(),t._5) +d=A.a6(d,d.$ti.i("ax.E")) +q=d +s=1 +break}else{d=A.cO("Fehler: "+g.b) +throw A.e(d)}p=2 +s=6 +break +case 4:p=3 +b=o.pop() +e=A.a1(b) +d=A.cO("Fehler beim Abrufen der Bestellungen: "+A.k(e)) +throw A.e(d) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$o1,r)}, +y4(a,b){return this.aag(a,b)}, +aag(a,b){var s=0,r=A.H(t.bo),q,p=2,o=[],n,m,l,k,j,i,h,g,f +var $async$y4=A.B(function(c,d){if(c===1){o.push(d) +s=p}for(;;)switch(s){case 0:p=4 +h=B.bD.d_(a+":"+b) +n=B.fY.gvn().d_(h) +m=A.d3(u.I) +h=t.N +s=7 +return A.v(A.pg(m,A.ab(["Authorization","Basic "+A.k(n)],h,h)),$async$y4) +case 7:l=d +if(l.b===200){h=l +k=t.j.a(B.a4.bM(0,A.j1(A.iY(h.e)).bM(0,h.w))) +j=J.aGm(k,new A.afQ(a),new A.afR()) +h=j!=null?J.aK(j,"id"):null +q=h +s=1 +break}p=2 +s=6 +break +case 4:p=3 +f=o.pop() +i=A.a1(f) +A.ie("Fehler beim Abrufen der Customer ID: "+A.k(i)) +s=6 +break +case 3:s=2 +break +case 6:q=null +s=1 +break +case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$y4,r)}} +A.afT.prototype={ +$1(a){return A.aJd(a)}, +$S:234} +A.afS.prototype={ +$1(a){return A.aJd(a)}, +$S:234} +A.afQ.prototype={ +$1(a){var s=J.aE(a),r=this.a +return J.d(s.h(a,"email"),r)||J.d(s.h(a,"username"),r)}, +$S:233} +A.afR.prototype={ +$0(){return null}, +$S:13} +A.wB.prototype={ +nx(a,b,c,d){var s=null,r=null,q=null,p=null +return this.a0a(a,b,c,d)}, +a09(a,b,c){return this.nx(a,b,c,null)}, +a07(a,b){return this.nx(null,a,b,null)}, +a06(a){return this.nx(null,1,a,null)}, +a08(a,b){return this.nx(null,1,a,b)}, +a0a(a,b,a0,a1){var s=0,r=A.H(t.Xw),q,p=2,o=[],n,m,l,k,j,i,h,g,f,e,d,c +var $async$nx=A.B(function(a2,a3){if(a2===1){o.push(a3) +s=p}for(;;)switch(s){case 0:g=null +f=null +e=null +d=null +p=4 +i=t.N +n=A.ab(["per_page",B.f.k(a0),"page",B.f.k(b),"status","publish"],i,i) +if(a!=null)J.dR(n,"category",a) +if(a1!=null&&a1.length!==0)J.dR(n,"search",a1) +if(d!=null)J.dR(n,"orderby",d) +if(e!=null)J.dR(n,"order",e) +if(f!=null)J.dR(n,"min_price",B.d.k(f)) +if(g!=null)J.dR(n,"max_price",B.d.k(g)) +m=A.d3(u.v).pp(0,n) +s=7 +return A.v(A.pg(m,null),$async$nx) +case 7:l=a3 +if(l.b===200){i=l +k=B.a4.bM(0,A.j1(A.iY(i.e)).bM(0,i.w)) +i=J.h0(k,new A.anT(),t.U_) +i=A.a6(i,i.$ti.i("ax.E")) +q=i +s=1 +break}else{i=A.cO("Fehler beim Laden der Produkte: "+l.b) +throw A.e(i)}p=2 +s=6 +break +case 4:p=3 +c=o.pop() +j=A.a1(c) +i=A.cO("Fehler beim Abrufen der Produkte: "+A.k(j)) +throw A.e(i) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$nx,r)}, +wW(a){return this.a_T(a)}, +a_T(a){var s=0,r=A.H(t.Xw),q,p=2,o=[],n,m,l,k,j,i,h +var $async$wW=A.B(function(b,c){if(b===1){o.push(c) +s=p}for(;;)switch(s){case 0:p=4 +n=A.d3(u.v).pp(0,A.ab(["featured","true","per_page",B.f.k(a),"status","publish"],t.N,t.z)) +s=7 +return A.v(A.pg(n,null),$async$wW) +case 7:m=c +if(m.b===200){j=m +l=B.a4.bM(0,A.j1(A.iY(j.e)).bM(0,j.w)) +j=J.h0(l,new A.anS(),t.U_) +j=A.a6(j,j.$ti.i("ax.E")) +q=j +s=1 +break}else{j=A.cO("Fehler beim Laden der Featured Produkte: "+m.b) +throw A.e(j)}p=2 +s=6 +break +case 4:p=3 +h=o.pop() +k=A.a1(h) +j=A.cO("Fehler beim Abrufen der Featured Produkte: "+A.k(k)) +throw A.e(j) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$wW,r)}, +wS(){var s=null +return this.a_Q()}, +a_Q(){var s=0,r=A.H(t.Az),q,p=2,o=[],n,m,l,k,j,i,h,g,f +var $async$wS=A.B(function(a,b){if(a===1){o.push(b) +s=p}for(;;)switch(s){case 0:g=null +p=4 +i=t.N +n=A.ab(["per_page","100","hide_empty","false"],i,i) +if(g!=null)J.dR(n,"parent",B.f.k(g)) +m=A.d3("https://hyggecraftery.com/wp-json/wc/v3/products/categories").pp(0,n) +s=7 +return A.v(A.pg(m,null),$async$wS) +case 7:l=b +if(l.b===200){i=l +k=B.a4.bM(0,A.j1(A.iY(i.e)).bM(0,i.w)) +i=J.h0(k,new A.anR(),t.oo) +i=A.a6(i,i.$ti.i("ax.E")) +q=i +s=1 +break}else{i=A.cO("Fehler beim Laden der Kategorien: "+l.b) +throw A.e(i)}p=2 +s=6 +break +case 4:p=3 +f=o.pop() +j=A.a1(f) +i=A.cO("Fehler beim Abrufen der Kategorien: "+A.k(j)) +throw A.e(i) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.F(q,r) +case 2:return A.E(o.at(-1),r)}}) +return A.G($async$wS,r)}} +A.anT.prototype={ +$1(a){return A.aDN(a)}, +$S:235} +A.anS.prototype={ +$1(a){return A.aDN(a)}, +$S:235} +A.anR.prototype={ +$1(a){var s,r,q,p,o,n=J.aE(a),m=n.h(a,"id") +if(m==null)m=0 +s=n.h(a,"name") +if(s==null)s="" +r=n.h(a,"slug") +q=n.h(a,"description") +p=n.h(a,"parent") +o=n.h(a,"count") +if(o==null)o=0 +n=n.h(a,"image") +return new A.n2(m,s,r,q,p,o,n==null?null:J.aK(n,"src"))}, +$S:601} +A.a7M.prototype={ +$0(){}, +$S:0} +A.Bp.prototype={ +H(a){var s,r=null,q=t.p,p=A.b([B.DM],q),o=this.c +if(o!=null){s=A.J(a).ok.z +B.b.O(p,A.b([B.K,A.ai(o,r,r,r,s==null?r:s.b1(B.ar),r,r)],q))}return A.dG(A.bS(p,B.w,B.b3,B.t),r,r)}} +A.o_.prototype={ +H(a){var s,r,q,p=null,o=t.p,n=A.b([],o),m=this.c,l=m.r +if(l!=null)n.push(A.tY(new A.agV(),B.cU,p,l,new A.agW(),1/0)) +else n.push(A.c_(p,B.p4,B.n,B.aN,p,p,p,p,p,p,p,p,p)) +l=m.f +s=l!=null +if(s&&l.length!==0){r=A.ch(4) +q=A.J(a).ok.Q +n.push(A.rf(p,A.c_(p,A.ai("Sale",p,p,p,q==null?p:q.iZ(B.k,B.H),p,p),B.n,p,p,new A.cX(B.aV,p,p,r,p,p,B.aq),p,p,p,B.ka,p,p,p),p,p,p,8,8,p))}n=A.ec(A.hp(B.bA,n,B.B,B.bp,p),3) +r=A.J(a).ok.z +r=r==null?p:r.e4(B.H) +r=A.ai(m.b,2,B.aA,p,r,p,p) +q=A.b([],o) +if(s&&l.length!==0){l=A.J(a).ok.Q +l=l==null?p:l.W2(B.e2,B.AP) +B.b.O(q,A.b([A.ai(A.k(m.e)+" \u20ac",p,p,p,l,p,p)],o))}l=A.J(a).ok.x +l=l==null?p:l.iZ(B.a7,B.H) +q.push(A.ai(m.d+" \u20ac",p,p,p,l,p,p)) +return A.k8(A.uO(!1,p,!0,A.bS(A.b([n,A.ec(new A.bo(B.oi,A.bS(A.b([r,B.Aw,A.cR(q,B.w,B.cj,B.t,0)],o),B.an,B.x,B.t),p),2)],o),B.an,B.x,B.t),p,!0,p,p,p,p,p,p,p,p,this.d,p,p,p,p),B.bN,p)}} +A.agW.prototype={ +$2(a,b){var s=null +return A.c_(s,B.cc,B.n,B.aN,s,s,s,s,s,s,s,s,s)}, +$S:75} +A.agV.prototype={ +$3(a,b,c){var s=null +return A.c_(s,B.p4,B.n,B.aN,s,s,s,s,s,s,s,s,s)}, +$S:52} +A.Qd.prototype={ +H(a){var s=null,r=A.dX(B.kT,B.dJ,s,64),q=A.J(a).ok.w +q=q==null?s:q.b1(B.ar) +return A.dG(new A.bo(B.eZ,A.bS(A.b([r,B.K,A.ai(this.c,s,s,s,q,B.aZ,s),B.c5,A.aTr(B.HW,B.fN,this.d,A.A4(s,s,B.a7,s,s,s,s,s,s,B.k,s,s,s,s,s,s,s,s,s,s))],t.p),B.w,B.b3,B.t),s),s,s)}} +A.a5k.prototype={ +k(a){return this.a}} +A.kc.prototype={ +vG(a){var s,r,q,p=this,o=p.e +if(o==null){if(p.d==null){p.H4("yMMMMd") +p.H4("jms")}o=p.d +o.toString +o=p.Rz(o) +s=A.a2(o).i("cc<1>") +o=A.a6(new A.cc(o,s),s.i("ax.E")) +p.e=o}s=o.length +r=0 +q="" +for(;r=12&&s<24?1:0 +return n.b.gfS().CW[r] +case"c":return n.apU(a) +case"d":return n.b.fJ(B.c.eb(""+A.agP(a),l.length,m)) +case"D":return n.b.fJ(B.c.eb(""+A.b1m(A.jA(a),A.agP(a),A.jA(A.aHl(A.agR(a),2,29,0,0,0,0))===2),l.length,m)) +case"E":q=n.b +l=l.length>=4?q.gfS().y:q.gfS().Q +return l[B.f.bh(A.agQ(a),7)] +case"G":p=A.agR(a)>0?1:0 +q=n.b +return l.length>=4?q.gfS().c[p]:q.gfS().b[p] +case"h":s=A.rh(a) +if(A.rh(a)>12)s-=12 +return n.b.fJ(B.c.eb(""+(s===0?12:s),l.length,m)) +case"H":return n.b.fJ(B.c.eb(""+A.rh(a),l.length,m)) +case"K":return n.b.fJ(B.c.eb(""+B.f.bh(A.rh(a),12),l.length,m)) +case"k":return n.b.fJ(B.c.eb(""+(A.rh(a)===0?24:A.rh(a)),l.length,m)) +case"L":return n.apV(a) +case"M":return n.apS(a) +case"m":return n.b.fJ(B.c.eb(""+A.aJv(a),l.length,m)) +case"Q":return n.apT(a) +case"S":return n.apQ(a) +case"s":return n.b.fJ(B.c.eb(""+A.aJw(a),l.length,m)) +case"y":o=A.agR(a) +if(o<0)o=-o +l=l.length +q=n.b +return l===2?q.fJ(B.c.eb(""+B.f.bh(o,100),2,m)):q.fJ(B.c.eb(""+o,l,m)) +default:return""}}, +apS(a){var s=this.a.length,r=this.b +switch(s){case 5:return r.gfS().d[A.jA(a)-1] +case 4:return r.gfS().f[A.jA(a)-1] +case 3:return r.gfS().w[A.jA(a)-1] +default:return r.fJ(B.c.eb(""+A.jA(a),s,"0"))}}, +apQ(a){var s=this.b,r=s.fJ(B.c.eb(""+A.aJu(a),3,"0")),q=this.a.length-3 +if(q>0)return r+s.fJ(B.c.eb("0",q,"0")) +else return r}, +apU(a){var s=this.b +switch(this.a.length){case 5:return s.gfS().ax[B.f.bh(A.agQ(a),7)] +case 4:return s.gfS().z[B.f.bh(A.agQ(a),7)] +case 3:return s.gfS().as[B.f.bh(A.agQ(a),7)] +default:return s.fJ(B.c.eb(""+A.agP(a),1,"0"))}}, +apV(a){var s=this.a.length,r=this.b +switch(s){case 5:return r.gfS().e[A.jA(a)-1] +case 4:return r.gfS().r[A.jA(a)-1] +case 3:return r.gfS().x[A.jA(a)-1] +default:return r.fJ(B.c.eb(""+A.jA(a),s,"0"))}}, +apT(a){var s=B.d.h6((A.jA(a)-1)/3),r=this.a.length,q=this.b +switch(r){case 4:return q.gfS().ch[s] +case 3:return q.gfS().ay[s] +default:return q.fJ(B.c.eb(""+(s+1),r,"0"))}}} +A.Sk.prototype={ +h(a,b){return A.y6(b)==="en_US"?this.b:this.qq()}, +qq(){throw A.e(new A.Oe("Locale data has not been initialized, call "+this.a+"."))}} +A.Oe.prototype={ +k(a){return"LocaleDataException: "+this.a}, +$ibL:1} +A.zZ.prototype={ +bi(a){var s,r,q=this.x,p=q.h(0,a) +if(p!=null)return p +s=this.t5(a) +r=this.b.$1(a).bi(s) +if(q.a>4)q.a5(0) +q.m(0,a,r) +return r}, +t5(b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8=this,a9=b1.e,b0=a8.w +if(b0!=null){s=b0.$1(b1) +r=s.a +q=s.b +p=s.c +o=s.d +n=s.e +m=a8.e.$1(b1).t5(b1) +l=!0 +if(o!==B.cs)if(!(o===B.dq&&!b1.d)){b0=o===B.XC&&b1.d +l=b0}k=l?r:q +j=l?q:r +i=b1.d?1:-1 +h=k.r.hy(0,a9) +g=j.r.hy(0,a9) +f=k.c.$1(b1) +e=A.pO(m,f)>=h?f:A.A_(m,h) +d=j.c.$1(b1) +c=A.pO(m,d)>=g?d:A.A_(m,g) +if(!((c-e)*i>=p)){a9=p*i +c=A.aed(0,100,e+a9) +e=(c-e)*i>=p?e:A.aed(0,100,c-a9)}b=60 +if(50<=e&&e<60){a9=p*i +if(i>0){c=Math.max(c,60+a9) +e=b}else{c=Math.min(c,49+a9) +e=49}}else if(50<=c&&c<60)if(n){a9=p*i +if(i>0){c=Math.max(c,60+a9) +e=b}else{c=Math.min(c,49+a9) +e=49}}else c=i>0?60:49 +return a8.a===k.a?e:c}else{a=a8.c.$1(b1) +b0=a8.e +if(b0==null)return a +m=b0.$1(b1).t5(b1) +a0=a8.r.hy(0,a9) +a=A.pO(m,a)>=a0?a:A.A_(m,a0) +if(a8.d&&50<=a&&a<60)a=A.pO(49,m)>=a0?49:60 +a9=a8.f +if(a9!=null){a1=b0.$1(b1).t5(b1) +a2=a9.$1(b1).t5(b1) +a3=Math.max(a1,a2) +a4=Math.min(a1,a2) +if(A.pO(a3,a)>=a0&&A.pO(a4,a)>=a0)return a +a5=A.aHb(a0,a3) +a6=A.aHa(a0,a4) +a7=[] +if(a5!==-1)a7.push(a5) +if(a6!==-1)a7.push(a6) +if(B.d.aI(a1)<60||B.d.aI(a2)<60)return a5<0?100:a5 +if(a7.length===1)return a7[0] +return a6<0?0:a6}return a}}} +A.dV.prototype={} +A.abL.prototype={ +$1(a){return a.x}, +$S:4} +A.abM.prototype={ +$1(a){return a.d?6:98}, +$S:3} +A.ac3.prototype={ +$1(a){return a.x}, +$S:4} +A.ac4.prototype={ +$1(a){return a.d?90:10}, +$S:3} +A.ac2.prototype={ +$1(a){return $.aFN()}, +$S:5} +A.adS.prototype={ +$1(a){return a.x}, +$S:4} +A.adT.prototype={ +$1(a){return a.d?6:98}, +$S:3} +A.adO.prototype={ +$1(a){return a.x}, +$S:4} +A.adP.prototype={ +$1(a){return a.d?6:new A.h3(87,87,80,75).hy(0,a.e)}, +$S:3} +A.adC.prototype={ +$1(a){return a.x}, +$S:4} +A.adD.prototype={ +$1(a){return a.d?new A.h3(24,24,29,34).hy(0,a.e):98}, +$S:3} +A.adK.prototype={ +$1(a){return a.x}, +$S:4} +A.adL.prototype={ +$1(a){return a.d?new A.h3(4,4,2,0).hy(0,a.e):100}, +$S:3} +A.adI.prototype={ +$1(a){return a.x}, +$S:4} +A.adJ.prototype={ +$1(a){var s=a.e +return a.d?new A.h3(10,10,11,12).hy(0,s):new A.h3(96,96,96,95).hy(0,s)}, +$S:3} +A.adM.prototype={ +$1(a){return a.x}, +$S:4} +A.adN.prototype={ +$1(a){var s=a.e +return a.d?new A.h3(12,12,16,20).hy(0,s):new A.h3(94,94,92,90).hy(0,s)}, +$S:3} +A.adE.prototype={ +$1(a){return a.x}, +$S:4} +A.adF.prototype={ +$1(a){var s=a.e +return a.d?new A.h3(17,17,21,25).hy(0,s):new A.h3(92,92,88,85).hy(0,s)}, +$S:3} +A.adG.prototype={ +$1(a){return a.x}, +$S:4} +A.adH.prototype={ +$1(a){var s=a.e +return a.d?new A.h3(22,22,26,30).hy(0,s):new A.h3(90,90,84,80).hy(0,s)}, +$S:3} +A.acH.prototype={ +$1(a){return a.x}, +$S:4} +A.acI.prototype={ +$1(a){return a.d?90:10}, +$S:3} +A.acG.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adQ.prototype={ +$1(a){return a.y}, +$S:4} +A.adR.prototype={ +$1(a){return a.d?30:90}, +$S:3} +A.acE.prototype={ +$1(a){return a.y}, +$S:4} +A.acF.prototype={ +$1(a){return a.d?80:30}, +$S:3} +A.acD.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.ac0.prototype={ +$1(a){return a.x}, +$S:4} +A.ac1.prototype={ +$1(a){return a.d?90:20}, +$S:3} +A.abW.prototype={ +$1(a){return a.x}, +$S:4} +A.abX.prototype={ +$1(a){return a.d?20:95}, +$S:3} +A.abV.prototype={ +$1(a){return $.aC9()}, +$S:5} +A.ad0.prototype={ +$1(a){return a.y}, +$S:4} +A.ad1.prototype={ +$1(a){return a.d?60:50}, +$S:3} +A.ad_.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.acY.prototype={ +$1(a){return a.y}, +$S:4} +A.acZ.prototype={ +$1(a){return a.d?30:80}, +$S:3} +A.acX.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adA.prototype={ +$1(a){return a.x}, +$S:4} +A.adB.prototype={ +$1(a){return 0}, +$S:3} +A.adi.prototype={ +$1(a){return a.x}, +$S:4} +A.adj.prototype={ +$1(a){return 0}, +$S:3} +A.adf.prototype={ +$1(a){return a.f}, +$S:4} +A.adg.prototype={ +$1(a){if(a.c===B.ap)return a.d?100:0 +return a.d?80:40}, +$S:3} +A.ade.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adh.prototype={ +$1(a){return new A.eP($.K1(),$.K0(),10,B.cs,!1)}, +$S:20} +A.acn.prototype={ +$1(a){return a.f}, +$S:4} +A.aco.prototype={ +$1(a){if(a.c===B.ap)return a.d?10:90 +return a.d?20:100}, +$S:3} +A.acm.prototype={ +$1(a){return $.K0()}, +$S:5} +A.ad3.prototype={ +$1(a){return a.f}, +$S:4} +A.ad4.prototype={ +$1(a){var s=a.c +if(s===B.ds||s===B.dr){s=a.b.c +s===$&&A.a() +return s}if(s===B.ap)return a.d?85:25 +return a.d?30:90}, +$S:3} +A.ad2.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.ad5.prototype={ +$1(a){return new A.eP($.K1(),$.K0(),10,B.cs,!1)}, +$S:20} +A.acc.prototype={ +$1(a){return a.f}, +$S:4} +A.acd.prototype={ +$1(a){var s=a.c +if(s===B.ds||s===B.dr)return A.A_($.K1().c.$1(a),4.5) +if(s===B.ap)return a.d?0:100 +return a.d?90:10}, +$S:3} +A.acb.prototype={ +$1(a){return $.K1()}, +$S:5} +A.abZ.prototype={ +$1(a){return a.f}, +$S:4} +A.ac_.prototype={ +$1(a){return a.d?40:80}, +$S:3} +A.abY.prototype={ +$1(a){return $.aC9()}, +$S:5} +A.adx.prototype={ +$1(a){return a.r}, +$S:4} +A.ady.prototype={ +$1(a){return a.d?80:40}, +$S:3} +A.adw.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adz.prototype={ +$1(a){return new A.eP($.K4(),$.a27(),10,B.cs,!1)}, +$S:20} +A.acB.prototype={ +$1(a){return a.r}, +$S:4} +A.acC.prototype={ +$1(a){if(a.c===B.ap)return a.d?10:100 +else return a.d?20:100}, +$S:3} +A.acA.prototype={ +$1(a){return $.a27()}, +$S:5} +A.adl.prototype={ +$1(a){return a.r}, +$S:4} +A.adm.prototype={ +$1(a){var s=a.d,r=s?30:90,q=a.c +if(q===B.ap)return s?30:85 +if(!(q===B.ds||q===B.dr))return r +q=a.r +return A.aUW(q.a,q.b,r,!s)}, +$S:3} +A.adk.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adn.prototype={ +$1(a){return new A.eP($.K4(),$.a27(),10,B.cs,!1)}, +$S:20} +A.acq.prototype={ +$1(a){return a.r}, +$S:4} +A.acr.prototype={ +$1(a){var s=a.c +if(!(s===B.ds||s===B.dr))return a.d?90:10 +return A.A_($.K4().c.$1(a),4.5)}, +$S:3} +A.acp.prototype={ +$1(a){return $.K4()}, +$S:5} +A.ae6.prototype={ +$1(a){return a.w}, +$S:4} +A.ae7.prototype={ +$1(a){if(a.c===B.ap)return a.d?90:25 +return a.d?80:40}, +$S:3} +A.ae5.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.ae8.prototype={ +$1(a){return new A.eP($.K7(),$.a28(),10,B.cs,!1)}, +$S:20} +A.acV.prototype={ +$1(a){return a.w}, +$S:4} +A.acW.prototype={ +$1(a){if(a.c===B.ap)return a.d?10:90 +return a.d?20:100}, +$S:3} +A.acU.prototype={ +$1(a){return $.a28()}, +$S:5} +A.adV.prototype={ +$1(a){return a.w}, +$S:4} +A.adW.prototype={ +$1(a){var s=a.c +if(s===B.ap)return a.d?60:49 +if(!(s===B.ds||s===B.dr))return a.d?30:90 +s=a.b.c +s===$&&A.a() +s=A.aCZ(a.w.bi(s)).c +s===$&&A.a() +return s}, +$S:3} +A.adU.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adX.prototype={ +$1(a){return new A.eP($.K7(),$.a28(),10,B.cs,!1)}, +$S:20} +A.acK.prototype={ +$1(a){return a.w}, +$S:4} +A.acL.prototype={ +$1(a){var s=a.c +if(s===B.ap)return a.d?0:100 +if(!(s===B.ds||s===B.dr))return a.d?90:10 +return A.A_($.K7().c.$1(a),4.5)}, +$S:3} +A.acJ.prototype={ +$1(a){return $.K7()}, +$S:5} +A.abS.prototype={ +$1(a){return a.z}, +$S:4} +A.abT.prototype={ +$1(a){return a.d?80:40}, +$S:3} +A.abR.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.abU.prototype={ +$1(a){return new A.eP($.a26(),$.a25(),10,B.cs,!1)}, +$S:20} +A.ac9.prototype={ +$1(a){return a.z}, +$S:4} +A.aca.prototype={ +$1(a){return a.d?20:100}, +$S:3} +A.ac8.prototype={ +$1(a){return $.a25()}, +$S:5} +A.abO.prototype={ +$1(a){return a.z}, +$S:4} +A.abP.prototype={ +$1(a){return a.d?30:90}, +$S:3} +A.abN.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.abQ.prototype={ +$1(a){return new A.eP($.a26(),$.a25(),10,B.cs,!1)}, +$S:20} +A.ac6.prototype={ +$1(a){return a.z}, +$S:4} +A.ac7.prototype={ +$1(a){return a.d?90:10}, +$S:3} +A.ac5.prototype={ +$1(a){return $.a26()}, +$S:5} +A.adb.prototype={ +$1(a){return a.f}, +$S:4} +A.adc.prototype={ +$1(a){return a.c===B.ap?40:90}, +$S:3} +A.ada.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.add.prototype={ +$1(a){return new A.eP($.K2(),$.K3(),10,B.dq,!0)}, +$S:20} +A.ad7.prototype={ +$1(a){return a.f}, +$S:4} +A.ad8.prototype={ +$1(a){return a.c===B.ap?30:80}, +$S:3} +A.ad6.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.ad9.prototype={ +$1(a){return new A.eP($.K2(),$.K3(),10,B.dq,!0)}, +$S:20} +A.acj.prototype={ +$1(a){return a.f}, +$S:4} +A.acl.prototype={ +$1(a){return a.c===B.ap?100:10}, +$S:3} +A.aci.prototype={ +$1(a){return $.K3()}, +$S:5} +A.ack.prototype={ +$1(a){return $.K2()}, +$S:5} +A.acf.prototype={ +$1(a){return a.f}, +$S:4} +A.ach.prototype={ +$1(a){return a.c===B.ap?90:30}, +$S:3} +A.ace.prototype={ +$1(a){return $.K3()}, +$S:5} +A.acg.prototype={ +$1(a){return $.K2()}, +$S:5} +A.adt.prototype={ +$1(a){return a.r}, +$S:4} +A.adu.prototype={ +$1(a){return a.c===B.ap?80:90}, +$S:3} +A.ads.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adv.prototype={ +$1(a){return new A.eP($.K5(),$.K6(),10,B.dq,!0)}, +$S:20} +A.adp.prototype={ +$1(a){return a.r}, +$S:4} +A.adq.prototype={ +$1(a){return a.c===B.ap?70:80}, +$S:3} +A.ado.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.adr.prototype={ +$1(a){return new A.eP($.K5(),$.K6(),10,B.dq,!0)}, +$S:20} +A.acx.prototype={ +$1(a){return a.r}, +$S:4} +A.acz.prototype={ +$1(a){return 10}, +$S:3} +A.acw.prototype={ +$1(a){return $.K6()}, +$S:5} +A.acy.prototype={ +$1(a){return $.K5()}, +$S:5} +A.act.prototype={ +$1(a){return a.r}, +$S:4} +A.acv.prototype={ +$1(a){return a.c===B.ap?25:30}, +$S:3} +A.acs.prototype={ +$1(a){return $.K6()}, +$S:5} +A.acu.prototype={ +$1(a){return $.K5()}, +$S:5} +A.ae2.prototype={ +$1(a){return a.w}, +$S:4} +A.ae3.prototype={ +$1(a){return a.c===B.ap?40:90}, +$S:3} +A.ae1.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.ae4.prototype={ +$1(a){return new A.eP($.K8(),$.K9(),10,B.dq,!0)}, +$S:20} +A.adZ.prototype={ +$1(a){return a.w}, +$S:4} +A.ae_.prototype={ +$1(a){return a.c===B.ap?30:80}, +$S:3} +A.adY.prototype={ +$1(a){return a.d?$.eF():$.eG()}, +$S:5} +A.ae0.prototype={ +$1(a){return new A.eP($.K8(),$.K9(),10,B.dq,!0)}, +$S:20} +A.acR.prototype={ +$1(a){return a.w}, +$S:4} +A.acT.prototype={ +$1(a){return a.c===B.ap?100:10}, +$S:3} +A.acQ.prototype={ +$1(a){return $.K9()}, +$S:5} +A.acS.prototype={ +$1(a){return $.K8()}, +$S:5} +A.acN.prototype={ +$1(a){return a.w}, +$S:4} +A.acP.prototype={ +$1(a){return a.c===B.ap?90:30}, +$S:3} +A.acM.prototype={ +$1(a){return $.K9()}, +$S:5} +A.acO.prototype={ +$1(a){return $.K8()}, +$S:5} +A.h3.prototype={ +hy(a,b){var s,r=this +if(b<0.5)return A.aDA(r.b,r.c,b/0.5) +else{s=r.d +if(b<1)return A.aDA(r.c,s,(b-0.5)/0.5) +else return s}}} +A.EG.prototype={ +K(){return"TonePolarity."+this.b}} +A.eP.prototype={} +A.jQ.prototype={ +K(){return"Variant."+this.b}} +A.a3Q.prototype={} +A.ha.prototype={ +j(a,b){var s,r +if(b==null)return!1 +if(!(b instanceof A.ha))return!1 +s=b.d +s===$&&A.a() +r=this.d +r===$&&A.a() +return s===r}, +gB(a){var s=this.d +s===$&&A.a() +return B.f.gB(s)}, +k(a){var s,r,q=this.a +q===$&&A.a() +q=B.f.k(B.d.aI(q)) +s=this.b +s===$&&A.a() +s=B.d.aI(s) +r=this.c +r===$&&A.a() +return"H"+q+" C"+s+" T"+B.f.k(B.d.aI(r))}} +A.anC.prototype={} +A.rZ.prototype={ +bi(a){var s=this.d +if(s.az(0,a)){s=s.h(0,a) +s.toString +return A.hb(s)}else return A.hb(A.qk(this.a,this.b,a))}, +j(a,b){if(b==null)return!1 +if(b instanceof A.rZ)return this.a===b.a&&this.b===b.b +return!1}, +gB(a){var s=A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a) +return s}, +k(a){return"TonalPalette.of("+A.k(this.a)+", "+A.k(this.b)+")"}} +A.Qo.prototype={} +A.Qp.prototype={} +A.Qq.prototype={} +A.Qr.prototype={} +A.Qs.prototype={} +A.Qt.prototype={} +A.Qu.prototype={} +A.Qv.prototype={} +A.Qw.prototype={} +A.amc.prototype={ +alU(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=a.a,a1=a0.a +a1===$&&A.a() +s=B.d.aI(a1) +r=a.goW()[s] +q=a.Cd(r) +a1=t.DU +p=A.b([r],a1) +for(o=0,n=0;n<360;++n,q=l){m=B.f.bh(s+n,360) +l=a.Cd(a.goW()[m]) +o+=Math.abs(l-q)}k=o/a3 +q=a.Cd(r) +for(j=1,i=0;p.length=g*k +e=1 +for(;;){if(!(f&&g=(g+e)*k;++e}++j +if(j>360){while(p.length=a1?B.f.bh(b,a1):b])}for(a0=a2-c-1+1,n=1;n=a1?B.f.bh(b,a1):b])}return d}, +gamZ(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=d.f +if(c!=null)return c +c=B.b.ga3(d.glF()).a +c===$&&A.a() +s=d.gkX().h(0,B.b.ga3(d.glF())) +s.toString +r=B.b.gae(d.glF()).a +r===$&&A.a() +q=d.gkX().h(0,B.b.gae(d.glF())) +q.toString +p=q-s +q=d.a +o=q.a +o===$&&A.a() +n=A.aKj(c,o,r) +if(n)m=r +else m=c +if(n)l=c +else l=r +k=d.goW()[B.d.aI(q.a)] +j=1-d.garr() +for(i=1000,h=0;h<=360;++h){g=B.d.bh(m+h,360) +if(g<0)g+=360 +if(!A.aKj(m,g,l))continue +f=d.goW()[B.d.aI(g)] +c=d.d.h(0,f) +c.toString +e=Math.abs(j-(c-s)/p) +if(e=0)return p +p=q.gkX().h(0,B.b.ga3(q.glF())) +p.toString +s=q.gkX().h(0,B.b.gae(q.glF())) +s.toString +r=s-p +s=q.gkX().h(0,q.a) +s.toString +return q.e=r===0?0.5:(s-p)/r}, +glF(){var s,r=this,q=r.b +if(q.length!==0)return q +s=A.hU(r.goW(),!0,t.bq) +s.push(r.a) +B.b.fa(s,new A.amd(r.gkX())) +return r.b=s}, +gkX(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5=a4.d +if(a5.a!==0)return a5 +a5=t.bq +s=A.hU(a4.goW(),!0,a5) +s.push(a4.a) +a5=A.w(a5,t.i) +for(r=s.length,q=0;q>>16&255 +l=n>>>8&255 +k=n&255 +j=A.kt(A.b([A.cN(p),A.cN(l),A.cN(k)],r),$.j7) +i=A.a3R(j[0],j[1],j[2],o) +m.a=i.a +m.b=i.b +m.c=116*A.n6(A.kt(A.b([A.cN(p),A.cN(l),A.cN(k)],r),$.j7)[1]/100)-16 +s.push(m)}return this.c=A.hU(s,!1,t.bq)}} +A.amd.prototype={ +$2(a,b){var s=this.a,r=s.h(0,a) +r.toString +s=s.h(0,b) +s.toString +return B.d.b5(r,s)}, +$S:610} +A.vj.prototype={ +H(a){throw A.e(A.a5("implemented internally"))}, +bJ(a){return new A.WX(A.aP(t.ai),null,this,B.Z)}, +$ijI:1} +A.WX.prototype={ +gaa(){return t.SK.a(A.aB.prototype.gaa.call(this))}, +hj(){var s,r,q,p,o=this,n=o.lA$,m=n==null?null:n.n +if(m==null)m=t.SK.a(A.aB.prototype.gaa.call(o)).d +for(n=t.SK.a(A.aB.prototype.gaa.call(o)).c,s=A.a2(n).i("cc<1>"),n=new A.cc(n,s),n=new A.bd(n,n.gv(0),s.i("bd")),s=s.i("ax.E"),r=null;n.u();m=r){q=n.d +r=new A.oU(q==null?s.a(q):q,m,o,null)}if(r!=null)for(n=o.n,n=A.cl(n,n.r,A.n(n).c),s=n.$ti.c;n.u();){q=n.d +if(q==null)q=s.a(q) +p=r.c +if(!J.d(q.I,p)){q.I=p +q.cc()}r=r.d +q.sarq(r) +if(!(r instanceof A.oU))break}return m}} +A.oU.prototype={ +bJ(a){return new A.oV(this,B.Z)}, +H(a){return A.a0(A.a5("handled internally"))}} +A.oV.prototype={ +gaa(){return t.Fn.a(A.aB.prototype.gaa.call(this))}, +sarq(a){var s,r=this.n,q=!1 +if(a instanceof A.oU)if(r instanceof A.oU){q=a.c +s=r.c +q=A.r(q)===A.r(s)&&J.d(q.a,s.a)}if(q)return +if(!J.d(r,a)){this.n=a +this.bg(new A.av2())}}, +ea(a,b){var s=this,r=t.Fn +r.a(A.aB.prototype.gaa.call(s)).e.n.E(0,s) +s.I=r.a(A.aB.prototype.gaa.call(s)).c +s.n=r.a(A.aB.prototype.gaa.call(s)).d +s.xs(a,b)}, +l1(){t.Fn.a(A.aB.prototype.gaa.call(this)).e.n.F(0,this) +this.tm()}, +hj(){var s=this.I +s.toString +return s}} +A.av2.prototype={ +$1(a){return a.cc()}, +$S:11} +A.R0.prototype={} +A.ayw.prototype={ +$1(a){if(a instanceof A.oV)this.a.lA$=a +return!1}, +$S:22} +A.aAf.prototype={ +$1(a){if(a instanceof A.oV)this.a.lA$=a +return!1}, +$S:22} +A.jH.prototype={ +H(a){return this.uR(a,this.c)}, +bJ(a){return A.aX0(this)}, +$ijI:1} +A.DF.prototype={ +hj(){var s=this +if(s.lA$!=null)return t.k7.a(A.aB.prototype.gaa.call(s)).uR(s,s.lA$.n) +return s.a3G()}, +gaa(){return t.k7.a(A.aB.prototype.gaa.call(this))}} +A.QZ.prototype={ +uR(a,b){return this.e.$2(a,b)}} +A.ZD.prototype={ +ea(a,b){if(t.Ej.b(a))this.lA$=a +this.xs(a,b)}, +bA(){this.tl() +this.k8(new A.ayw(this))}} +A.a0O.prototype={ +ea(a,b){if(t.Ej.b(a))this.lA$=a +this.xs(a,b)}, +bA(){this.tl() +this.k8(new A.aAf(this))}} +A.Kz.prototype={ +K(){return"AnimationDirection."+this.b}} +A.ni.prototype={ +ac(){return new A.G2(null,null)}} +A.G2.prototype={ +H(a){var s=this.f +s===$&&A.a() +if(s)return B.ay +s=this.d +s===$&&A.a() +return new A.d5(s,!1,this.a.c,null)}, +aw(){var s,r,q,p,o=this,n=null +o.aK() +s=A.bK(n,o.a.d,n,n,o) +o.e=s +r=A.cw(o.a.f,s,n) +s=o.a.e===B.eA +q=s?0:1 +p=s?1:0 +s=t.Y +o.d=new A.al(r,new A.ay(q,p,s),s.i("al")) +o.e.bP(0) +o.f=!1 +s=o.a +if(s.e===B.fU){s=s.d +if(s.a===0)o.f=!0 +else o.d.a.el(o.gHc())}}, +aH(a){var s,r,q,p,o,n=this +n.b0(a) +s=a.c +r=n.a.c +if(A.r(s)===A.r(r)&&J.d(s.a,r.a))return +s=n.d +s===$&&A.a() +r=n.gHc() +s.a.cd(r) +s=n.e +s===$&&A.a() +s.e=n.a.d +s.sq(0,0) +s=n.e +q=A.cw(n.a.f,s,null) +s=n.a.e===B.eA +p=s?0:1 +o=s?1:0 +s=t.Y +n.d=new A.al(q,new A.ay(p,o,s),s.i("al")) +n.e.bP(0) +n.f=!1 +s=n.a +if(s.e===B.fU){s=s.d +if(s.a===0)n.f=!0 +else n.d.a.el(r)}}, +l(){var s=this,r=s.d +r===$&&A.a() +r.a.cd(s.gHc()) +r=s.e +r===$&&A.a() +r.l() +s.a5f()}, +alZ(a){this.T(new A.arA(this,a))}} +A.arA.prototype={ +$0(){var s=this.a +s.f=s.a.e===B.fU&&this.b===B.a2}, +$S:0} +A.Jq.prototype={ +l(){var s=this,r=s.bq$ +if(r!=null)r.J(0,s.ghf()) +s.bq$=null +s.aD()}, +bA(){this.cs() +this.cf() +this.hg()}} +A.C5.prototype={ +ac(){return new A.X8()}} +A.X8.prototype={ +aw(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d +this.aK() +s=this.a +r=s.c +q=s.d +p=s.e +o=s.f +n=s.r +m=s.w +l=s.x +k=s.y +j=s.z +i=s.Q +h=s.ax +g=s.as +f=s.at +e=s.ay +d=s.ch +this.e=A.aIg(e,!1,s.cx,s.cy,n,i,j,k,l,s.db,h,f,r,q,!1,p,m,o,d,g)}, +aH(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this +b.b0(a) +if(!a.c.j(0,b.a.c)){b.a.toString +b.d=null}s=b.a +r=s.c +q=s.d +p=b.d +o=p!=null +p=o?p.gVk():s.e +n=o?null:s.f +m=s.r +l=s.w +k=s.x +j=s.y +i=s.z +h=s.Q +g=s.ax +f=s.as +e=s.at +d=s.ay +c=s.ch +b.e=A.aIg(d,o,s.cx,s.cy,m,h,i,j,k,s.db,g,e,r,q,!1,p,l,n,c,f)}, +H(a){var s,r=this.a,q=r.as +r=r.at +s=this.e +s===$&&A.a() +return A.e1(s.H(a),r,q)}} +A.H7.prototype={ +K(){return"_PlaceholderType."+this.b}} +A.NE.prototype={ +arh(){var s=this,r=s.z +r===$&&A.a() +switch(r.a){case 0:return s.gaek() +case 1:return s.gahz() +case 2:return s.gahF()}}, +H(a){var s,r,q=this,p=q.a,o=q.z +o===$&&A.a() +o=o===B.Bs?q.gaf1():null +s=q.arh() +r=q.ax!=null?q.ga9v():null +return new A.AS(p,s,o,r,q.b,q.c,q.w,q.y,q.x,q.d,q.e,q.f,!1,new A.e3(p,t.xs))}, +T3(a,b){var s=this +return A.hp(B.a_,A.b([new A.ni(a,s.cx,B.eA,s.cy,null),new A.ni(b,s.ch,B.fU,s.CW,null)],t.p),B.B,B.Ax,null)}, +ael(a,b,c,d){if(c==null)return b +return this.u_(a,b)}, +ahA(a,b,c,d){var s,r=this +if(c==null){s=r.ay +if(s.a!==0)return new A.ni(r.FR(a),s,B.eA,r.cy,null) +else return r.FR(a)}if(d&&!r.db)return r.u_(a,b) +return r.T3(r.u_(a,b),r.FR(a))}, +ahG(a,b,c,d){this.dx=d +this.dy=c!=null +return b}, +af2(a,b,c){var s,r=this +if(r.dy){if(r.dx)return r.u_(a,b) +return r.T3(r.u_(a,b),r.FT(a,null))}s=r.ay +if(s.a!==0)return new A.ni(r.FT(a,c),s,B.eA,r.cy,null) +else return r.FT(a,c)}, +u_(a,b){var s=this.Q +if(s!=null)return s.$2(a,b) +else return b}, +a9w(a,b,c){var s=this.ax +if(s==null)throw A.e(A.a5("Try to build errorBuilder with errorBuilder null")) +return s.$3(a,b,c)}, +FT(a,b){var s=this.at +if(s==null)throw A.e(A.a5("Try to build progressIndicatorBuilder with progressIndicatorBuilder null")) +return s.$2(a,b)}, +FR(a){var s=null,r=this.as +if(r!=null)return r.$1(a) +return A.c_(s,s,B.n,s,s,s,s,s,s,s,s,s,s)}, +a8A(){if(this.as!=null)return B.a_c +if(this.at!=null)return B.Bs +return B.a_b}} +A.LN.prototype={ +alu(a,b){var s,r=null +A.aML("absolute",A.b([b,null,null,null,null,null,null,null,null,null,null,null,null,null,null],t._m)) +s=this.a +s=s.ht(b)>0&&!s.n3(b) +if(s)return b +s=this.b +return this.YA(0,s==null?A.aFd():s,b,r,r,r,r,r,r,r,r,r,r,r,r,r,r)}, +aoM(a){var s,r,q=A.r3(a,this.a) +q.wv() +s=q.d +r=s.length +if(r===0){s=q.b +return s==null?".":s}if(r===1){s=q.b +return s==null?".":s}B.b.hX(s) +q.e.pop() +q.wv() +return q.k(0)}, +YA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var s=A.b([b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q],t._m) +A.aML("join",s) +return this.as8(new A.cd(s,t.Ri))}, +JM(a,b,c){var s=null +return this.YA(0,b,c,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +as8(a){var s,r,q,p,o,n,m,l,k +for(s=a.gag(0),r=new A.oB(s,new A.a4U()),q=this.a,p=!1,o=!1,n="";r.u();){m=s.gN(0) +if(q.n3(m)&&o){l=A.r3(m,q) +k=n.charCodeAt(0)==0?n:n +n=B.c.a1(k,0,q.rL(k,!0)) +l.b=n +if(q.wd(n))l.e[0]=q.gnB() +n=l.k(0)}else if(q.ht(m)>0){o=!q.n3(m) +n=m}else{if(!(m.length!==0&&q.HR(m[0])))if(p)n+=q.gnB() +n+=m}p=q.wd(m)}return n.charCodeAt(0)==0?n:n}, +Md(a,b){var s=A.r3(b,this.a),r=s.d,q=A.a2(r).i("aY<1>") +r=A.a6(new A.aY(r,new A.a4V(),q),q.i("o.E")) +s.d=r +q=s.b +if(q!=null)B.b.rj(r,0,q) +return s.d}, +K3(a,b){var s +if(!this.afG(b))return b +s=A.r3(b,this.a) +s.we(0) +return s.k(0)}, +afG(a){var s,r,q,p,o,n,m,l=this.a,k=l.ht(a) +if(k!==0){if(l===$.a2b())for(s=0;s0)return o.K3(0,a) +if(m.ht(a)<=0||m.n3(a))a=o.alu(0,a) +if(m.ht(a)<=0&&m.ht(s)>0)throw A.e(A.aJm(n+a+'" from "'+s+'".')) +r=A.r3(s,m) +r.we(0) +q=A.r3(a,m) +q.we(0) +l=r.d +if(l.length!==0&&l[0]===".")return q.k(0) +l=r.b +p=q.b +if(l!=p)l=l==null||p==null||!m.Kr(l,p) +else l=!1 +if(l)return q.k(0) +for(;;){l=r.d +if(l.length!==0){p=q.d +l=p.length!==0&&m.Kr(l[0],p[0])}else l=!1 +if(!l)break +B.b.hr(r.d,0) +B.b.hr(r.e,1) +B.b.hr(q.d,0) +B.b.hr(q.e,1)}l=r.d +p=l.length +if(p!==0&&l[0]==="..")throw A.e(A.aJm(n+a+'" from "'+s+'".')) +l=t.N +B.b.rk(q.d,0,A.bz(p,"..",!1,l)) +p=q.e +p[0]="" +B.b.rk(p,1,A.bz(r.d.length,m.gnB(),!1,l)) +m=q.d +l=m.length +if(l===0)return"." +if(l>1&&B.b.gae(m)==="."){B.b.hX(q.d) +m=q.e +m.pop() +m.pop() +m.push("")}q.b="" +q.wv() +return q.k(0)}, +Zm(a){var s,r,q=this,p=A.aMr(a) +if(p.gf9()==="file"&&q.a===$.Kb())return p.k(0) +else if(p.gf9()!=="file"&&p.gf9()!==""&&q.a!==$.Kb())return p.k(0) +s=q.K3(0,q.a.Kq(A.aMr(p))) +r=q.auC(s) +return q.Md(0,r).length>q.Md(0,s).length?s:r}} +A.a4U.prototype={ +$1(a){return a!==""}, +$S:30} +A.a4V.prototype={ +$1(a){return a.length!==0}, +$S:30} +A.aBd.prototype={ +$1(a){return a==null?"null":'"'+a+'"'}, +$S:613} +A.aaN.prototype={ +a0b(a){var s=this.ht(a) +if(s>0)return B.c.a1(a,0,s) +return this.n3(a)?a[0]:null}, +Kr(a,b){return a===b}} +A.P6.prototype={ +gVi(){var s=this,r=t.N,q=new A.P6(s.a,s.b,s.c,A.hU(s.d,!0,r),A.hU(s.e,!0,r)) +q.wv() +r=q.d +if(r.length===0){r=s.b +return r==null?"":r}return B.b.gae(r)}, +wv(){var s,r,q=this +for(;;){s=q.d +if(!(s.length!==0&&B.b.gae(s)===""))break +B.b.hX(q.d) +q.e.pop()}s=q.e +r=s.length +if(r!==0)s[r-1]=""}, +we(a){var s,r,q,p,o,n=this,m=A.b([],t.s) +for(s=n.d,r=s.length,q=0,p=0;p0){s=B.c.jR(a,"\\",s+1) +if(s>0)return s}return r}if(r<3)return 0 +if(!A.aNh(a.charCodeAt(0)))return 0 +if(a.charCodeAt(1)!==58)return 0 +r=a.charCodeAt(2) +if(!(r===47||r===92))return 0 +return 3}, +ht(a){return this.rL(a,!1)}, +n3(a){return this.ht(a)===1}, +Kq(a){var s,r +if(a.gf9()!==""&&a.gf9()!=="file")throw A.e(A.bF("Uri "+a.k(0)+" must have scheme 'file:'.",null)) +s=a.geF(a) +if(a.goX(a)===""){if(s.length>=3&&B.c.bz(s,"/")&&A.aN3(s,1)!=null)s=B.c.ZR(s,"/","")}else s="\\\\"+a.goX(a)+s +r=A.mP(s,"/","\\") +return A.p6(r,0,r.length,B.a5,!1)}, +amU(a,b){var s +if(a===b)return!0 +if(a===47)return b===92 +if(a===92)return b===47 +if((a^b)!==32)return!1 +s=a|32 +return s>=97&&s<=122}, +Kr(a,b){var s,r +if(a===b)return!0 +s=a.length +if(s!==b.length)return!1 +for(r=0;r"))}, +a7e(a){return this.E_(a,null)}} +A.Gn.prototype={} +A.fb.prototype={ +ce(a){return!1}, +bJ(a){return new A.tc(A.h9(null,null,null,t.h,t.X),this,B.Z,this.$ti.i("tc<1>"))}} +A.tc.prototype={ +gtH(){var s,r=this,q=r.ep +if(q===$){s=new A.Fz(r.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(r)).f.e.$ti.i("Fz<1>")) +s.a=r +r.ep!==$&&A.aA() +r.ep=s +q=s}return q}, +fD(a){var s={} +s.a=null +this.k8(new A.atq(s,a)) +return s.a}, +ea(a,b){this.xs(a,b)}, +gaa(){return this.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(this))}, +L0(a,b){var s=this.n,r=s.h(0,a) +if(r!=null&&!this.$ti.i("aYs<1>").b(r))return +s.m(0,a,B.jB)}, +K4(a,b){var s,r,q,p,o=this.n.h(0,b),n=!1 +if(o!=null)if(this.$ti.i("aYs<1>").b(o)){if(b.as)return +for(r=o.c,q=r.length,p=0;p") +r.a(A.aB.prototype.gaa.call(s)) +s.gtH().Hu(s.cb) +s.cb=!1 +if(s.bK){s.bK=!1 +s.pe(r.a(A.aB.prototype.gaa.call(s)))}return s.MI()}, +l1(){var s,r,q,p=this.gtH() +p.a4_() +s=p.b +if(s!=null)s.$0() +if(p.c){s=p.a +s.toString +r=p.$ti +s=r.i("jU.D").a(s.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(s)).f.e) +q=p.a +q.toString +p=p.d +if(p==null)p=r.c.a(p) +s.f.$2(q,p)}this.tm()}, +asA(){if(!this.bW)return +this.cc() +this.bK=!0}, +mM(a,b){return this.xu(a,b)}, +vb(a){return this.mM(a,null)}, +$iNJ:1} +A.atq.prototype={ +$1(a){var s=this.b +if(A.r(a.gaa())===A.bZ(s)){this.a.a=t.IS.a(a) +return!1}this.a.a=a.fD(s) +return!1}, +$S:22} +A.UD.prototype={} +A.jU.prototype={ +l(){}, +Hu(a){}} +A.wL.prototype={} +A.Fz.prototype={ +gq(a){var s,r,q,p,o,n,m=this,l=null,k=m.c +if(k&&m.f!=null){k=A.bZ(m.$ti.c).k(0) +q=m.f +q=q==null?l:q.k(0) +throw A.e(A.a5("Tried to read a provider that threw during the creation of its value.\nThe exception occurred during the creation of type "+k+".\n\n"+A.k(q)))}if(!k){m.c=!0 +k=m.a +k.toString +q=m.$ti.i("jU.D") +q.a(k.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(k)).f.e) +try{k=m.a +k.toString +k=q.a(k.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(k)).f.e) +p=m.a +p.toString +m.d=k.a.$1(p)}catch(o){s=A.a1(o) +r=A.aH(o) +m.f=new A.bO(s,r,"provider",l,l,!1) +throw o}finally{}k=m.a +k.toString +q.a(k.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(k)).f.e)}k=m.a +k.bW=!1 +if(m.b==null){q=m.$ti +k=q.i("jU.D").a(A.n(k).i("fb<1>").a(A.aB.prototype.gaa.call(k)).f.e) +p=m.a +p.toString +n=m.d +q=n==null?q.c.a(n):n +q=k.e.$2(p,q) +k=q +m.b=k}m.a.bW=!0 +k=m.d +return k==null?m.$ti.c.a(k):k}, +Hu(a){var s,r=this +if(a)if(r.c){s=r.a +s.toString +r.$ti.i("jU.D").a(s.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(s)).f.e)}s=r.a +s.toString +r.e=r.$ti.i("jU.D").a(s.$ti.i("fb<1>").a(A.aB.prototype.gaa.call(s)).f.e) +return r.a3Z(a)}} +A.Ox.prototype={} +A.af8.prototype={ +$1(a){var s=this.a +return s.E_(a,s.a)}, +$S:237} +A.af9.prototype={ +$1(a){var s=this.b +return this.a.$1(s.E_(a,s.a))}, +$S:237} +A.afa.prototype={ +$2(a,b){return this.a.a.$1(b)}, +$S:44} +A.Pt.prototype={ +k(a){return"A provider for "+this.a.k(0)+" unexpectedly returned null."}, +$ibL:1} +A.Ps.prototype={ +k(a){return"Provider<"+this.a.k(0)+"> not found for "+this.b.k(0)}, +$ibL:1} +A.zF.prototype={ +giv(){return!0}, +d3(a,b,c,d){var s,r,q,p,o,n,m=null,l=null +try{l=this.a.$0()}catch(q){s=A.a1(q) +r=A.aH(q) +p=A.a1O(s,r) +o=this.$ti.i("iP<1>") +n=new A.iP(m,m,m,m,o) +n.hc(p.a,p.b) +n.tB() +return new A.df(n,o.i("df<1>")).d3(a,b,c,d)}return l.d3(a,b,c,d)}, +kK(a,b,c){return this.d3(a,null,b,c)}} +A.yJ.prototype={ +gpK(a){return new A.oF(this,this.$ti.i("oF<1>"))}} +A.a3h.prototype={ +$0(){var s,r,q=this,p=q.a,o=p.c +if(o!=null&&!p.a){p=q.b +return new A.RA(o.a,o.b,q.c.i("RA<0>")).Hq(new A.cT(p,A.n(p).i("cT<1>")))}s=p.b +if(s!==B.nu&&p.a){p=q.b +r=q.c +return new A.RB(r.a(s),r.i("RB<0>")).Hq(new A.cT(p,A.n(p).i("cT<1>")))}p=q.b +return new A.cT(p,A.n(p).i("cT<1>"))}, +$S(){return this.c.i("cs<0>()")}} +A.a0t.prototype={} +A.oF.prototype={ +giv(){return!0}, +gB(a){return(A.f5(this.a)^892482866)>>>0}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.oF&&b.a===this.a}, +d3(a,b,c,d){return this.a.d3(a,b,c,d)}, +kK(a,b,c){return this.d3(a,null,b,c)}} +A.w9.prototype={ +gpK(a){return new A.xJ(this,this.$ti.i("xJ<1>"))}, +hh(a,b){if(this.c)throw A.e(A.a5("You cannot add an error while items are being added from addStream")) +this.ak_(a,b)}, +ak_(a,b){var s,r=this.b +if((r.c&4)===0){s=this.e +s.c=new A.MF(a,b) +s.a=!1}r.hh(a,b)}, +E(a,b){if(this.c)throw A.e(A.a5(u.k)) +this.ajZ(0,b)}, +ajZ(a,b){var s,r=this.b +if((r.c&4)===0){s=this.e +s.b=b +s.a=!0}r.E(0,b)}, +aO(a){if(this.c)throw A.e(A.a5("You cannot close the subject while items are being added from addStream")) +return this.b.aO(0)}} +A.xJ.prototype={ +giv(){return!0}, +gB(a){return(A.f5(this.a)^892482866)>>>0}, +j(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.xJ&&b.a===this.a}, +d3(a,b,c,d){return this.a.d3(a,b,c,d)}, +kK(a,b,c){return this.d3(a,null,b,c)}} +A.xE.prototype={ +ru(a){return this.gm7().E(0,a)}, +Ke(a,b,c){return this.gm7().hh(b,c)}, +Kc(){return this.gm7().aO(0)}, +K7(a){}, +Ki(){this.gm7().E(0,this.c)}, +Z1(a){}, +Z4(a){}} +A.RB.prototype={ +Hq(a){var s=this.$ti.c +return A.aN7(a,new A.alF(this),s,s)}} +A.alF.prototype={ +$0(){return new A.xE(this.a.a)}, +$S(){return this.a.$ti.i("xE<1>()")}} +A.xD.prototype={ +ru(a){return this.gm7().E(0,a)}, +Ke(a,b,c){return this.gm7().hh(b,c)}, +Kc(){return this.gm7().aO(0)}, +K7(a){}, +Ki(){this.gm7().hh(this.c,this.d)}, +Z1(a){}, +Z4(a){}} +A.RA.prototype={ +Hq(a){var s=this.$ti.c +return A.aN7(a,new A.alE(this),s,s)}} +A.alE.prototype={ +$0(){var s=this.a +return new A.xD(s.a,s.b)}, +$S(){return this.a.$ti.i("xD<1>()")}} +A.art.prototype={ +k(a){return"<>"}} +A.MF.prototype={ +k(a){return"ErrorAndStackTrace{error: "+A.k(this.a)+", stackTrace: "+A.k(this.b)+"}"}, +j(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)s=b instanceof A.MF&&A.r(r)===A.r(b)&&J.d(r.a,b.a)&&r.b==b.b +else s=!0 +return s}, +gB(a){return(J.C(this.a)^J.C(this.b))>>>0}} +A.AC.prototype={ +gm7(){var s=this.a +return s==null?A.a0(A.a5("Must call setSink(sink) before accessing!")):s}} +A.aAC.prototype={ +$1(a){var s={},r=this.a.$0() +r.a=new A.WL(a) +s.a=null +s.b=!1 +r.Ki() +new A.aAD(s,this.b,r).$0() +a.r=new A.aAB(s,r)}, +$S(){return this.c.i("~(Oy<0>)")}} +A.aAD.prototype={ +$1(a){var s,r,q,p=this.a +if(p.b)return +s=this.c +r=s.gK9() +q=s.gKd(s) +p.a=this.b.kK(r,s.gKb(),q)}, +$0(){return this.$1(null)}, +$S:238} +A.aAB.prototype={ +$0(){var s,r,q=this.a +q.b=!0 +s=q.a +r=s==null?null:s.aR(0) +q.a=null +return A.aNI(r,this.b.K7(0))}, +$S:0} +A.aAG.prototype={ +$0(){return this.a.$0()}, +$S(){return this.b.i("@<0>").bR(this.c).i("AC<1,2>()")}} +A.aAH.prototype={ +$0(){var s=this,r=s.c,q=s.d +r.cD().a=new A.V9(q) +r.cD().Ki() +new A.aAJ(s.a,s.b,r,q).$0()}, +$S:0} +A.aAJ.prototype={ +$1(a){var s,r,q,p,o=this,n=o.a +if(n.b)return +s=o.b +r=o.c +q=r.cD().gK9() +p=J.aR5(r.cD()) +n.a=s.kK(q,r.cD().gKb(),p) +r.cD() +if(!s.giv()){s=o.d +s.sZ0(0,new A.aAE(n,r)) +s.sZ3(0,new A.aAF(n,r))}}, +$0(){return this.$1(null)}, +$S:238} +A.aAE.prototype={ +$0(){this.a.a.rz(0) +J.aRg(this.b.cD())}, +$S:0} +A.aAF.prototype={ +$0(){this.a.a.rK(0) +J.aRh(this.b.cD())}, +$S:0} +A.aAI.prototype={ +$0(){var s,r,q=this.a +q.b=!0 +s=q.a +r=s==null?null:s.aR(0) +q.a=null +q=this.b +q.cD() +return A.aNI(r,J.aRf(q.cD()))}, +$S:0} +A.WL.prototype={ +E(a,b){return this.a.alO(b)}, +hh(a,b){return this.a.alI(a,b)}, +aO(a){return this.a.VH()}} +A.V9.prototype={ +E(a,b){return this.a.E(0,b)}, +hh(a,b){return this.a.hh(a,b)}, +aO(a){return this.a.aO(0)}} +A.vV.prototype={ +F(a,b){J.mS(this.a,b) +return $.aCd().F(0,"flutter."+b)}, +us(a,b,c){A.pr(c,"value") +J.dR(this.a,b,c) +return $.aCd().nD(a,"flutter."+b,c)}} +A.aeF.prototype={ +F(a,b){return this.auF(0,b)}, +auF(a,b){var s=0,r=A.H(t.y),q,p +var $async$F=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:s=3 +return A.v(B.lm.mn("remove",A.ab(["key",b],t.N,t.z),!1,t.y),$async$F) +case 3:p=d +p.toString +q=p +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$F,r)}, +nD(a,b,c){return this.a0R(a,b,c)}, +a0R(a,b,c){var s=0,r=A.H(t.y),q,p +var $async$nD=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:s=3 +return A.v(B.lm.mn("set"+a,A.ab(["key",b,"value",c],t.N,t.z),!1,t.y),$async$nD) +case 3:p=e +p.toString +q=p +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$nD,r)}, +nq(a){var s=0,r=A.H(t.nf),q,p,o,n +var $async$nq=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:p=t.N +o=t.K +s=3 +return A.v(B.lm.Y9("getAll",p,o),$async$nq) +case 3:n=c +q=n==null?A.w(p,o):n +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$nq,r)}} +A.akX.prototype={} +A.agM.prototype={} +A.a9c.prototype={} +A.akV.prototype={ +nq(a){var s=0,r=A.H(t.nf),q,p=this +var $async$nq=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:q=p.CF(new A.a9c(new A.agM("flutter.",null))) +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$nq,r)}, +CF(a){return this.a_M(a)}, +a_M(a){var s=0,r=A.H(t.nf),q,p=this,o,n,m,l,k,j,i,h +var $async$CF=A.B(function(b,c){if(b===1)return A.E(c,r) +for(;;)switch(s){case 0:i=a.a +h=A.w(t.N,t.K) +for(o=p.aaC(i.a,i.b),n=J.bb(o.a),o=new A.oB(n,o.b),m=v.G;o.u();){l=n.gN(n) +k=m.window.localStorage.getItem(l) +k.toString +j=A.b_7(k) +if(j!=null)h.m(0,l,j)}q=h +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$CF,r)}, +F(a,b){return this.auG(0,b)}, +auG(a,b){var s=0,r=A.H(t.y),q +var $async$F=A.B(function(c,d){if(c===1)return A.E(d,r) +for(;;)switch(s){case 0:v.G.window.localStorage.removeItem(b) +q=!0 +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$F,r)}, +nD(a,b,c){return this.a0S(a,b,c)}, +a0S(a,b,c){var s=0,r=A.H(t.y),q +var $async$nD=A.B(function(d,e){if(d===1)return A.E(e,r) +for(;;)switch(s){case 0:v.G.window.localStorage.setItem(b,B.a4.hl(c)) +q=!0 +s=1 +break +case 1:return A.F(q,r)}}) +return A.G($async$nD,r)}, +aaC(a,b){var s=A.b_w(b) +return new A.aY(s,new A.akW(a),s.$ti.i("aY"))}} +A.akW.prototype={ +$1(a){return B.c.bz(a,this.a)}, +$S:30} +A.aAL.prototype={ +$1(a){return!0}, +$S:30} +A.als.prototype={ +gv(a){return this.c.length}, +gase(a){return this.b.length}, +a6_(a,b){var s,r,q,p,o,n +for(s=this.c,r=s.length,q=this.b,p=0;p=r||s[n]!==10)o=10}if(o===10)q.push(p+1)}}, +t0(a){var s,r=this +if(a<0)throw A.e(A.eM("Offset may not be negative, was "+a+".")) +else if(a>r.c.length)throw A.e(A.eM("Offset "+a+u.D+r.gv(0)+".")) +s=r.b +if(a=B.b.gae(s))return s.length-1 +if(r.aeE(a)){s=r.d +s.toString +return s}return r.d=r.a6M(a)-1}, +aeE(a){var s,r,q=this.d +if(q==null)return!1 +s=this.b +if(a=r-1||a=r-2||aa)p=r +else s=r+1}return p}, +CJ(a){var s,r,q=this +if(a<0)throw A.e(A.eM("Offset may not be negative, was "+a+".")) +else if(a>q.c.length)throw A.e(A.eM("Offset "+a+" must be not be greater than the number of characters in the file, "+q.gv(0)+".")) +s=q.t0(a) +r=q.b[s] +if(r>a)throw A.e(A.eM("Line "+s+" comes after offset "+a+".")) +return a-r}, +nu(a){var s,r,q,p +if(a<0)throw A.e(A.eM("Line may not be negative, was "+a+".")) +else{s=this.b +r=s.length +if(a>=r)throw A.e(A.eM("Line "+a+" must be less than the number of lines in the file, "+this.gase(0)+"."))}q=s[a] +if(q<=this.c.length){p=a+1 +s=p=s[p]}else s=!0 +if(s)throw A.e(A.eM("Line "+a+" doesn't have 0 columns.")) +return q}} +A.MO.prototype={ +gcX(){return this.a.a}, +gdw(a){return this.a.t0(this.b)}, +gem(){return this.a.CJ(this.b)}, +gck(a){return this.b}} +A.wW.prototype={ +gcX(){return this.a.a}, +gv(a){return this.c-this.b}, +gbI(a){return A.aD8(this.a,this.b)}, +gbv(a){return A.aD8(this.a,this.c)}, +gcW(a){return A.fR(B.ls.cr(this.a.c,this.b,this.c),0,null)}, +gfR(a){var s=this,r=s.a,q=s.c,p=r.t0(q) +if(r.CJ(q)===0&&p!==0){if(q-s.b===0)return p===r.b.length-1?"":A.fR(B.ls.cr(r.c,r.nu(p),r.nu(p+1)),0,null)}else q=p===r.b.length-1?r.c.length:r.nu(p+1) +return A.fR(B.ls.cr(r.c,r.nu(r.t0(s.b)),q),0,null)}, +b5(a,b){var s +if(!(b instanceof A.wW))return this.a3E(0,b) +s=B.f.b5(this.b,b.b) +return s===0?B.f.b5(this.c,b.c):s}, +j(a,b){var s=this +if(b==null)return!1 +if(!(b instanceof A.wW))return s.a3D(0,b) +return s.b===b.b&&s.c===b.c&&J.d(s.a.a,b.a.a)}, +gB(a){return A.T(this.b,this.c,this.a.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +$imb:1} +A.a9w.prototype={ +ar7(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.a +a1.UJ(B.b.ga3(a3).c) +s=a1.e +r=A.bz(s,a2,!1,t.Xk) +for(q=a1.r,s=s!==0,p=a1.b,o=0;o0){m=a3[o-1] +l=n.c +if(!J.d(m.c,l)){a1.zp("\u2575") +q.a+="\n" +a1.UJ(l)}else if(m.b+1!==n.b){a1.alr("...") +q.a+="\n"}}for(l=n.d,k=A.a2(l).i("cc<1>"),j=new A.cc(l,k),j=new A.bd(j,j.gv(0),k.i("bd")),k=k.i("ax.E"),i=n.b,h=n.a;j.u();){g=j.d +if(g==null)g=k.a(g) +f=g.a +e=f.gbI(f) +e=e.gdw(e) +d=f.gbv(f) +if(e!==d.gdw(d)){e=f.gbI(f) +f=e.gdw(e)===i&&a1.aeF(B.c.a1(h,0,f.gbI(f).gem()))}else f=!1 +if(f){c=B.b.hR(r,a2) +if(c<0)A.a0(A.bF(A.k(r)+" contains no null elements.",a2)) +r[c]=g}}a1.alq(i) +q.a+=" " +a1.alp(n,r) +if(s)q.a+=" " +b=B.b.Jv(l,new A.a9R()) +a=b===-1?a2:l[b] +k=a!=null +if(k){j=a.a +g=j.gbI(j) +g=g.gdw(g)===i?j.gbI(j).gem():0 +f=j.gbv(j) +a1.aln(h,g,f.gdw(f)===i?j.gbv(j).gem():h.length,p)}else a1.zr(h) +q.a+="\n" +if(k)a1.alo(n,a,r) +for(l=l.length,a0=0;a0")),q=this.r,r=r.i("a_.E");s.u();){p=s.d +if(p==null)p=r.a(p) +if(p===9)q.a+=B.c.a6(" ",4) +else{p=A.dn(p) +q.a+=p}}}, +zq(a,b,c){var s={} +s.a=c +if(b!=null)s.a=B.f.k(b+1) +this.iK(new A.a9P(s,this,a),"\x1b[34m")}, +zp(a){return this.zq(a,null,null)}, +alr(a){return this.zq(null,null,a)}, +alq(a){return this.zq(null,a,null)}, +GY(){return this.zq(null,null,null)}, +Er(a){var s,r,q,p +for(s=new A.fG(a),r=t.Hz,s=new A.bd(s,s.gv(0),r.i("bd")),r=r.i("a_.E"),q=0;s.u();){p=s.d +if((p==null?r.a(p):p)===9)++q}return q}, +aeF(a){var s,r,q +for(s=new A.fG(a),r=t.Hz,s=new A.bd(s,s.gv(0),r.i("bd")),r=r.i("a_.E");s.u();){q=s.d +if(q==null)q=r.a(q) +if(q!==32&&q!==9)return!1}return!0}, +a7Q(a,b){var s,r=this.b!=null +if(r&&b!=null)this.r.a+=b +s=a.$0() +if(r&&b!=null)this.r.a+="\x1b[0m" +return s}, +iK(a,b){return this.a7Q(a,b,t.z)}} +A.a9Q.prototype={ +$0(){return this.a}, +$S:616} +A.a9y.prototype={ +$1(a){var s=a.d +return new A.aY(s,new A.a9x(),A.a2(s).i("aY<1>")).gv(0)}, +$S:617} +A.a9x.prototype={ +$1(a){var s=a.a,r=s.gbI(s) +r=r.gdw(r) +s=s.gbv(s) +return r!==s.gdw(s)}, +$S:106} +A.a9z.prototype={ +$1(a){return a.c}, +$S:619} +A.a9B.prototype={ +$1(a){var s=a.a.gcX() +return s==null?new A.R():s}, +$S:620} +A.a9C.prototype={ +$2(a,b){return a.a.b5(0,b.a)}, +$S:621} +A.a9D.prototype={ +$1(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=a0.a,b=a0.b,a=A.b([],t.Kx) +for(s=J.cD(b),r=s.gag(b),q=t._Y;r.u();){p=r.gN(r).a +o=p.gfR(p) +n=A.aBy(o,p.gcW(p),p.gbI(p).gem()) +n.toString +m=B.c.qx("\n",B.c.a1(o,0,n)).gv(0) +p=p.gbI(p) +l=p.gdw(p)-m +for(p=o.split("\n"),n=p.length,k=0;kB.b.gae(a).b)a.push(new A.jV(j,l,c,A.b([],q)));++l}}i=A.b([],q) +for(r=a.length,h=i.$flags|0,g=0,k=0;k")),n=j.b,p=p.i("ax.E");q.u();){e=q.d +if(e==null)e=p.a(e) +d=e.a +d=d.gbI(d) +if(d.gdw(d)>n)break +i.push(e)}g+=i.length-f +B.b.O(j.d,i)}return a}, +$S:622} +A.a9A.prototype={ +$1(a){var s=a.a +s=s.gbv(s) +return s.gdw(s)" +return null}, +$S:0} +A.a9L.prototype={ +$0(){var s=this.a.r,r=this.b===this.c.b?"\u250c":"\u2514" +s.a+=r}, +$S:13} +A.a9M.prototype={ +$0(){var s=this.a.r,r=this.b==null?"\u2500":"\u253c" +s.a+=r}, +$S:13} +A.a9N.prototype={ +$0(){this.a.r.a+="\u2500" +return null}, +$S:0} +A.a9O.prototype={ +$0(){var s,r,q=this,p=q.a,o=p.a?"\u253c":"\u2502" +if(q.c!=null)q.b.r.a+=o +else{s=q.e +r=s.b +if(q.d===r){s=q.b +s.iK(new A.a9J(p,s),p.b) +p.a=!0 +if(p.b==null)p.b=s.b}else{if(q.r===r){r=q.f.a +s=r.gbv(r).gem()===s.a.length}else s=!1 +r=q.b +if(s)r.r.a+="\u2514" +else r.iK(new A.a9K(r,o),p.b)}}}, +$S:13} +A.a9J.prototype={ +$0(){var s=this.b.r,r=this.a.a?"\u252c":"\u250c" +s.a+=r}, +$S:13} +A.a9K.prototype={ +$0(){this.a.r.a+=this.b}, +$S:13} +A.a9F.prototype={ +$0(){var s=this +return s.a.zr(B.c.a1(s.b,s.c,s.d))}, +$S:0} +A.a9G.prototype={ +$0(){var s,r,q=this.a,p=q.r,o=p.a,n=this.c.a,m=n.gbI(n).gem(),l=n.gbv(n).gem() +n=this.b.a +s=q.Er(B.c.a1(n,0,m)) +r=q.Er(B.c.a1(n,m,l)) +m+=s*3 +n=(p.a+=B.c.a6(" ",m))+B.c.a6("^",Math.max(l+(s+r)*3-m,1)) +p.a=n +return n.length-o.length}, +$S:67} +A.a9H.prototype={ +$0(){var s=this.c.a +return this.a.alm(this.b,s.gbI(s).gem())}, +$S:0} +A.a9I.prototype={ +$0(){var s,r=this,q=r.a,p=q.r,o=p.a +if(r.b)p.a=o+B.c.a6("\u2500",3) +else{s=r.d.a +q.UI(r.c,Math.max(s.gbv(s).gem()-1,0),!1)}return p.a.length-o.length}, +$S:67} +A.a9P.prototype={ +$0(){var s=this.b,r=s.r,q=this.a.a +if(q==null)q="" +s=B.c.atV(q,s.d) +s=r.a+=s +q=this.c +r.a=s+(q==null?"\u2502":q)}, +$S:13} +A.fA.prototype={ +k(a){var s,r,q=this.a,p=q.gbI(q) +p=p.gdw(p) +s=q.gbI(q).gem() +r=q.gbv(q) +q="primary "+(""+p+":"+s+"-"+r.gdw(r)+":"+q.gbv(q).gem()) +return q.charCodeAt(0)==0?q:q}} +A.asI.prototype={ +$0(){var s,r,q,p,o=this.a +if(!(t.Bb.b(o)&&A.aBy(o.gfR(o),o.gcW(o),o.gbI(o).gem())!=null)){s=o.gbI(o) +s=A.Rq(s.gck(s),0,0,o.gcX()) +r=o.gbv(o) +r=r.gck(r) +q=o.gcX() +p=A.b1d(o.gcW(o),10) +o=A.alt(s,A.Rq(r,A.aLb(o.gcW(o)),p,q),o.gcW(o),o.gcW(o))}return A.aYD(A.aYF(A.aYE(o)))}, +$S:623} +A.jV.prototype={ +k(a){return""+this.b+': "'+this.a+'" ('+B.b.bn(this.d,", ")+")"}} +A.jL.prototype={ +Ip(a){var s=this.a +if(!J.d(s,a.gcX()))throw A.e(A.bF('Source URLs "'+A.k(s)+'" and "'+A.k(a.gcX())+"\" don't match.",null)) +return Math.abs(this.b-a.gck(a))}, +b5(a,b){var s=this.a +if(!J.d(s,b.gcX()))throw A.e(A.bF('Source URLs "'+A.k(s)+'" and "'+A.k(b.gcX())+"\" don't match.",null)) +return this.b-b.gck(b)}, +j(a,b){if(b==null)return!1 +return t.y3.b(b)&&J.d(this.a,b.gcX())&&this.b===b.gck(b)}, +gB(a){var s=this.a +s=s==null?null:s.gB(s) +if(s==null)s=0 +return s+this.b}, +k(a){var s=this,r=A.r(s).k(0),q=s.a +return"<"+r+": "+s.b+" "+(A.k(q==null?"unknown source":q)+":"+(s.c+1)+":"+(s.d+1))+">"}, +$ic5:1, +gcX(){return this.a}, +gck(a){return this.b}, +gdw(a){return this.c}, +gem(){return this.d}} +A.Rr.prototype={ +Ip(a){if(!J.d(this.a.a,a.gcX()))throw A.e(A.bF('Source URLs "'+A.k(this.gcX())+'" and "'+A.k(a.gcX())+"\" don't match.",null)) +return Math.abs(this.b-a.gck(a))}, +b5(a,b){if(!J.d(this.a.a,b.gcX()))throw A.e(A.bF('Source URLs "'+A.k(this.gcX())+'" and "'+A.k(b.gcX())+"\" don't match.",null)) +return this.b-b.gck(b)}, +j(a,b){if(b==null)return!1 +return t.y3.b(b)&&J.d(this.a.a,b.gcX())&&this.b===b.gck(b)}, +gB(a){var s=this.a.a +s=s==null?null:s.gB(s) +if(s==null)s=0 +return s+this.b}, +k(a){var s=A.r(this).k(0),r=this.b,q=this.a,p=q.a +return"<"+s+": "+r+" "+(A.k(p==null?"unknown source":p)+":"+(q.t0(r)+1)+":"+(q.CJ(r)+1))+">"}, +$ic5:1, +$ijL:1} +A.Rt.prototype={ +a60(a,b,c){var s,r=this.b,q=this.a +if(!J.d(r.gcX(),q.gcX()))throw A.e(A.bF('Source URLs "'+A.k(q.gcX())+'" and "'+A.k(r.gcX())+"\" don't match.",null)) +else if(r.gck(r)'}, +$ic5:1} +A.mb.prototype={ +gfR(a){return this.d}} +A.RI.prototype={ +gDh(a){return A.bt(this.c)}} +A.alS.prototype={ +gJO(){var s=this +if(s.c!==s.e)s.d=null +return s.d}, +CY(a){var s,r=this,q=r.d=J.aRe(a,r.b,r.c) +r.e=r.c +s=q!=null +if(s)r.e=r.c=q.gbv(q) +return s}, +WR(a,b){var s +if(this.CY(a))return +if(b==null)if(a instanceof A.nD)b="/"+a.a+"/" +else{s=J.dr(a) +s=A.mP(s,"\\","\\\\") +b='"'+A.mP(s,'"','\\"')+'"'}this.P6(b)}, +vq(a){return this.WR(a,null)}, +api(){if(this.c===this.b.length)return +this.P6("no more input")}, +apc(a,b,c,d){var s,r,q,p,o,n,m=this.b +if(d<0)A.a0(A.eM("position must be greater than or equal to 0.")) +else if(d>m.length)A.a0(A.eM("position must be less than or equal to the string length.")) +s=d+c>m.length +if(s)A.a0(A.eM("position plus length must not go beyond the end of the string.")) +s=this.a +r=new A.fG(m) +q=A.b([0],t.t) +p=new Uint32Array(A.ic(r.f8(r))) +o=new A.als(s,q,p) +o.a6_(r,s) +n=d+c +if(n>p.length)A.a0(A.eM("End "+n+u.D+o.gv(0)+".")) +else if(d<0)A.a0(A.eM("Start may not be negative, was "+d+".")) +throw A.e(new A.RI(m,b,new A.wW(o,d,n)))}, +P6(a){this.apc(0,"expected "+a+".",0,this.c)}} +A.ah7.prototype={} +A.a4X.prototype={ +aa4(){var s,r,q=new Uint8Array(16) +for(s=0;s<16;s+=4){r=$.aNN().asU(B.d.h6(Math.pow(2,32))) +q[s]=r +q[s+1]=B.f.eX(r,8) +q[s+2]=B.f.eX(r,16) +q[s+3]=B.f.eX(r,24)}return q}} +A.anp.prototype={ +a_r(){return new A.anq(null).a_J(null)}} +A.anq.prototype={ +alc(){if($.aKM)return +var s=$.aP8().aa4() +$.aKP=A.b([s[0]|1,s[1],s[2],s[3],s[4],s[5]],t.t) +$.aEg=(s[6]<<8|s[7])&262143 +$.aKM=!0}, +a_J(a){var s,r,q,p,o,n,m,l,k,j +this.alc() +s=new Uint8Array(16) +r=$.aEg +q=Date.now() +p=$.aKO +o=p+1 +n=$.aKN +p=q-n+(o-p)/1e4<0 +if(p)r=r+1&16383 +p=p||q>n +if(p)o=0 +if(o>=1e4)throw A.e(A.cO("uuid.v1(): Can't create more than 10M uuids/sec")) +$.aKN=q +$.aKO=o +$.aEg=r +q+=122192928e5 +m=((q&268435455)*1e4+o)%4294967296 +s[0]=m>>>24&255 +s[1]=m>>>16&255 +s[2]=m>>>8&255 +s[3]=m&255 +l=B.d.h_(q/4294967296*1e4)&268435455 +s[4]=l>>>8&255 +s[5]=l&255 +s[6]=l>>>24&255 +s[7]=l>>>16&255 +s[8]=r>>>8&63 +s[9]=r&255 +s[6]=s[6]&15|16 +s[8]=s[8]|128 +k=$.aKP +for(j=0;j<6;++j)s[10+j]=k[j] +p=$.aP7() +return p[s[0]]+p[s[1]]+p[s[2]]+p[s[3]]+"-"+p[s[4]]+p[s[5]]+"-"+p[s[6]]+p[s[7]]+"-"+p[s[8]]+p[s[9]]+"-"+p[s[10]]+p[s[11]]+p[s[12]]+p[s[13]]+p[s[14]]+p[s[15]]}} +A.qN.prototype={ +cB(a){var s=a.a,r=this.a,q=s[8] +r.$flags&2&&A.aI(r) +r[8]=q +r[7]=s[7] +r[6]=s[6] +r[5]=s[5] +r[4]=s[4] +r[3]=s[3] +r[2]=s[2] +r[1]=s[1] +r[0]=s[0]}, +k(a){return"[0] "+this.m1(0).k(0)+"\n[1] "+this.m1(1).k(0)+"\n[2] "+this.m1(2).k(0)+"\n"}, +h(a,b){return this.a[b]}, +j(a,b){var s,r,q +if(b==null)return!1 +if(b instanceof A.qN){s=this.a +r=s[0] +q=b.a +s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]}else s=!1 +return s}, +gB(a){return A.bI(this.a)}, +m1(a){var s=new Float64Array(3),r=this.a +s[0]=r[a] +s[1]=r[3+a] +s[2]=r[6+a] +return new A.eD(s)}, +a6(a,b){var s=new Float64Array(9),r=new A.qN(s) +r.cB(this) +s[0]=s[0]*b +s[1]=s[1]*b +s[2]=s[2]*b +s[3]=s[3]*b +s[4]=s[4]*b +s[5]=s[5]*b +s[6]=s[6]*b +s[7]=s[7]*b +s[8]=s[8]*b +return r}, +V(a,b){var s,r=new Float64Array(9),q=new A.qN(r) +q.cB(this) +s=b.a +r[0]=r[0]+s[0] +r[1]=r[1]+s[1] +r[2]=r[2]+s[2] +r[3]=r[3]+s[3] +r[4]=r[4]+s[4] +r[5]=r[5]+s[5] +r[6]=r[6]+s[6] +r[7]=r[7]+s[7] +r[8]=r[8]+s[8] +return q}, +a0(a,b){var s,r=new Float64Array(9),q=new A.qN(r) +q.cB(this) +s=b.a +r[0]=r[0]-s[0] +r[1]=r[1]-s[1] +r[2]=r[2]-s[2] +r[3]=r[3]-s[3] +r[4]=r[4]-s[4] +r[5]=r[5]-s[5] +r[6]=r[6]-s[6] +r[7]=r[7]-s[7] +r[8]=r[8]-s[8] +return q}} +A.b6.prototype={ +cB(a){var s=a.a,r=this.a,q=s[15] +r.$flags&2&&A.aI(r) +r[15]=q +r[14]=s[14] +r[13]=s[13] +r[12]=s[12] +r[11]=s[11] +r[10]=s[10] +r[9]=s[9] +r[8]=s[8] +r[7]=s[7] +r[6]=s[6] +r[5]=s[5] +r[4]=s[4] +r[3]=s[3] +r[2]=s[2] +r[1]=s[1] +r[0]=s[0]}, +k(a){var s=this +return"[0] "+s.m1(0).k(0)+"\n[1] "+s.m1(1).k(0)+"\n[2] "+s.m1(2).k(0)+"\n[3] "+s.m1(3).k(0)+"\n"}, +h(a,b){return this.a[b]}, +j(a,b){var s,r,q +if(b==null)return!1 +if(b instanceof A.b6){s=this.a +r=s[0] +q=b.a +s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}else s=!1 +return s}, +gB(a){return A.bI(this.a)}, +D8(a,b){var s=b.a,r=this.a,q=s[0] +r.$flags&2&&A.aI(r) +r[a]=q +r[4+a]=s[1] +r[8+a]=s[2] +r[12+a]=s[3]}, +m1(a){var s=new Float64Array(4),r=this.a +s[0]=r[a] +s[1]=r[4+a] +s[2]=r[8+a] +s[3]=r[12+a] +return new A.jR(s)}, +a6(a,b){var s=new A.b6(new Float64Array(16)) +s.cB(this) +s.nz(b,b,b,1) +return s}, +V(a,b){var s,r=new Float64Array(16),q=new A.b6(r) +q.cB(this) +s=b.a +r[0]=r[0]+s[0] +r[1]=r[1]+s[1] +r[2]=r[2]+s[2] +r[3]=r[3]+s[3] +r[4]=r[4]+s[4] +r[5]=r[5]+s[5] +r[6]=r[6]+s[6] +r[7]=r[7]+s[7] +r[8]=r[8]+s[8] +r[9]=r[9]+s[9] +r[10]=r[10]+s[10] +r[11]=r[11]+s[11] +r[12]=r[12]+s[12] +r[13]=r[13]+s[13] +r[14]=r[14]+s[14] +r[15]=r[15]+s[15] +return q}, +a0(a,b){var s,r=new Float64Array(16),q=new A.b6(r) +q.cB(this) +s=b.a +r[0]=r[0]-s[0] +r[1]=r[1]-s[1] +r[2]=r[2]-s[2] +r[3]=r[3]-s[3] +r[4]=r[4]-s[4] +r[5]=r[5]-s[5] +r[6]=r[6]-s[6] +r[7]=r[7]-s[7] +r[8]=r[8]-s[8] +r[9]=r[9]-s[9] +r[10]=r[10]-s[10] +r[11]=r[11]-s[11] +r[12]=r[12]-s[12] +r[13]=r[13]-s[13] +r[14]=r[14]-s[14] +r[15]=r[15]-s[15] +return q}, +dC(a,b,c,d){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12] +s.$flags&2&&A.aI(s) +s[12]=r*a+q*b+p*c+o*d +s[13]=s[1]*a+s[5]*b+s[9]*c+s[13]*d +s[14]=s[2]*a+s[6]*b+s[10]*c+s[14]*d +s[15]=s[3]*a+s[7]*b+s[11]*c+s[15]*d}, +a_3(a){var s=Math.cos(a),r=Math.sin(a),q=this.a,p=q[0],o=q[4],n=q[1],m=q[5],l=q[2],k=q[6],j=q[3],i=q[7],h=-r +q.$flags&2&&A.aI(q) +q[0]=p*s+o*r +q[1]=n*s+m*r +q[2]=l*s+k*r +q[3]=j*s+i*r +q[4]=p*h+o*s +q[5]=n*h+m*s +q[6]=l*h+k*s +q[7]=j*h+i*s}, +nz(a,b,c,d){var s=this.a,r=s[0] +s.$flags&2&&A.aI(s) +s[0]=r*a +s[1]=s[1]*a +s[2]=s[2]*a +s[3]=s[3]*a +s[4]=s[4]*b +s[5]=s[5]*b +s[6]=s[6]*b +s[7]=s[7]*b +s[8]=s[8]*c +s[9]=s[9]*c +s[10]=s[10]*c +s[11]=s[11]*c +s[12]=s[12]*d +s[13]=s[13]*d +s[14]=s[14]*d +s[15]=s[15]*d}, +D9(){var s=this.a +s.$flags&2&&A.aI(s) +s[0]=0 +s[1]=0 +s[2]=0 +s[3]=0 +s[4]=0 +s[5]=0 +s[6]=0 +s[7]=0 +s[8]=0 +s[9]=0 +s[10]=0 +s[11]=0 +s[12]=0 +s[13]=0 +s[14]=0 +s[15]=0}, +dF(){var s=this.a +s.$flags&2&&A.aI(s) +s[0]=1 +s[1]=0 +s[2]=0 +s[3]=0 +s[4]=0 +s[5]=1 +s[6]=0 +s[7]=0 +s[8]=0 +s[9]=0 +s[10]=1 +s[11]=0 +s[12]=0 +s[13]=0 +s[14]=0 +s[15]=1}, +Id(){var s=this.a,r=s[0],q=s[5],p=s[1],o=s[4],n=r*q-p*o,m=s[6],l=s[2],k=r*m-l*o,j=s[7],i=s[3],h=r*j-i*o,g=p*m-l*q,f=p*j-i*q,e=l*j-i*m +m=s[8] +i=s[9] +j=s[10] +l=s[11] +return-(i*e-j*f+l*g)*s[12]+(m*e-j*h+l*k)*s[13]-(m*f-i*h+l*n)*s[14]+(m*g-i*k+j*n)*s[15]}, +hM(b5){var s,r,q,p,o=b5.a,n=o[0],m=o[1],l=o[2],k=o[3],j=o[4],i=o[5],h=o[6],g=o[7],f=o[8],e=o[9],d=o[10],c=o[11],b=o[12],a=o[13],a0=o[14],a1=o[15],a2=n*i-m*j,a3=n*h-l*j,a4=n*g-k*j,a5=m*h-l*i,a6=m*g-k*i,a7=l*g-k*h,a8=f*a-e*b,a9=f*a0-d*b,b0=f*a1-c*b,b1=e*a0-d*a,b2=e*a1-c*a,b3=d*a1-c*a0,b4=a2*b3-a3*b2+a4*b1+a5*b0-a6*a9+a7*a8 +if(b4===0){this.cB(b5) +return 0}s=1/b4 +r=this.a +r.$flags&2&&A.aI(r) +r[0]=(i*b3-h*b2+g*b1)*s +r[1]=(-m*b3+l*b2-k*b1)*s +r[2]=(a*a7-a0*a6+a1*a5)*s +r[3]=(-e*a7+d*a6-c*a5)*s +q=-j +r[4]=(q*b3+h*b0-g*a9)*s +r[5]=(n*b3-l*b0+k*a9)*s +p=-b +r[6]=(p*a7+a0*a4-a1*a3)*s +r[7]=(f*a7-d*a4+c*a3)*s +r[8]=(j*b2-i*b0+g*a8)*s +r[9]=(-n*b2+m*b0-k*a8)*s +r[10]=(b*a6-a*a4+a1*a2)*s +r[11]=(-f*a6+e*a4-c*a2)*s +r[12]=(q*b1+i*a9-h*a8)*s +r[13]=(n*b1-m*a9+l*a8)*s +r[14]=(p*a5+a*a3-a0*a2)*s +r[15]=(f*a5-e*a3+d*a2)*s +return b4}, +dZ(b5,b6){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15],b=b6.a,a=b[0],a0=b[4],a1=b[8],a2=b[12],a3=b[1],a4=b[5],a5=b[9],a6=b[13],a7=b[2],a8=b[6],a9=b[10],b0=b[14],b1=b[3],b2=b[7],b3=b[11],b4=b[15] +s.$flags&2&&A.aI(s) +s[0]=r*a+q*a3+p*a7+o*b1 +s[4]=r*a0+q*a4+p*a8+o*b2 +s[8]=r*a1+q*a5+p*a9+o*b3 +s[12]=r*a2+q*a6+p*b0+o*b4 +s[1]=n*a+m*a3+l*a7+k*b1 +s[5]=n*a0+m*a4+l*a8+k*b2 +s[9]=n*a1+m*a5+l*a9+k*b3 +s[13]=n*a2+m*a6+l*b0+k*b4 +s[2]=j*a+i*a3+h*a7+g*b1 +s[6]=j*a0+i*a4+h*a8+g*b2 +s[10]=j*a1+i*a5+h*a9+g*b3 +s[14]=j*a2+i*a6+h*b0+g*b4 +s[3]=f*a+e*a3+d*a7+c*b1 +s[7]=f*a0+e*a4+d*a8+c*b2 +s[11]=f*a1+e*a5+d*a9+c*b3 +s[15]=f*a2+e*a6+d*b0+c*b4}, +asS(a){var s=new A.b6(new Float64Array(16)) +s.cB(this) +s.dZ(0,a) +return s}, +Wi(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=$.aIS +if(a==null)a=$.aIS=new A.eD(new Float64Array(3)) +s=this.a +a.l8(s[0],s[1],s[2]) +r=Math.sqrt(a.gw3()) +a.l8(s[4],s[5],s[6]) +q=Math.sqrt(a.gw3()) +a.l8(s[8],s[9],s[10]) +p=Math.sqrt(a.gw3()) +if(this.Id()<0)r=-r +o=a0.a +n=s[12] +o.$flags&2&&A.aI(o) +o[0]=n +o[1]=s[13] +o[2]=s[14] +m=1/r +l=1/q +k=1/p +j=$.aIQ +if(j==null)j=$.aIQ=new A.b6(new Float64Array(16)) +j.cB(this) +s=j.a +o=s[0] +s.$flags&2&&A.aI(s) +s[0]=o*m +s[1]=s[1]*m +s[2]=s[2]*m +s[4]=s[4]*l +s[5]=s[5]*l +s[6]=s[6]*l +s[8]=s[8]*k +s[9]=s[9]*k +s[10]=s[10]*k +i=$.aIR +if(i==null)i=$.aIR=new A.qN(new Float64Array(9)) +h=i.a +o=s[0] +h.$flags&2&&A.aI(h) +h[0]=o +h[1]=s[1] +h[2]=s[2] +h[3]=s[4] +h[4]=s[5] +h[5]=s[6] +h[6]=s[8] +h[7]=s[9] +h[8]=s[10] +s=h[0] +o=h[4] +n=h[8] +g=0+s+o+n +if(g>0){f=Math.sqrt(g+1) +s=a1.a +s.$flags&2&&A.aI(s) +s[3]=f*0.5 +f=0.5/f +s[0]=(h[5]-h[7])*f +s[1]=(h[6]-h[2])*f +s[2]=(h[1]-h[3])*f}else{if(s)","av<~>()","~(R?)","~(aB)","~(t)","bk()","l()","~(r2,j)","~(Q)","f(L)","Q(n0,j)","~(ux)","eP(dV)","O()","Q(aB)","~(bl)","~(m)","Q(R?)","~(hG)","~(l,@)","bk(~)","~(db?)","Q(l)","~(wc)","ay(@)","Q(d_)","~(ez)","~(fm)","~(R,cS)","~(l)","S(y)","Q(kk)","m(d_,d_)","l?(l?)","~(nX)","p(bg)","f(L,f?)","Q(lL)","bk(@)","kI(bg)","bk(R,cS)","Q(fN)","~(e_,~())","I(y,ak)","ka(L,l,R)","bk(W)","m(aEr)","Q(m)","~(@)","S(y,S)","~(nW)","~(dM)","Q(fJ)","~(~())","Q()","hr()","Q(ia)","Q(ez)","~(lT)","m()","u?(bg)","~(op)","l(m)","lY(L)","Q(en)","bM?(bx?)","~(qd)","ka(L,l)","qF(L)","aW(bg)","l(qJ)","m(R?)","m(t,t)","by(L)","f(L)?(tG?)","m(m)","dt(bg)","fj(@)","j(j)","~(qV)","av<@>(js)","Q(cM)","W(R?)","u(u)","~(Ea)","fw(fw)","Q(hd)","~(R?,R?)","f(L,f,m?,Q)","~(hq)","bk(R)","hq()","Q(q9)","~({curve:fk,descendant:t?,duration:aZ,rect:x?})","d5(L,bp,f?)","~(l,l)","av(oy)","ln(@)","Q(fA)","x()","~([b0?])","Q(rx)","m(cM,cM)","@(@)","bM?(bx?)","~(i7)","i7()","oh(L,f?)","Q(R?,R?)","f(L,m)","m(@,@)","W?(m)","~(S)","Q(he)","l(l)","W()","b6(S)","bk(Q)","jo()","qr()","ka(L)","W([W?])","~(hP)","~(O)","ew?(eq,l,ew?)","he()","av([W?])","aHx()","~(wy)","~(j3)","bk(l)","u?(u?)","O()","Ck?()","~(qg)","kr(d_,iv)","~(fN)","S()","Q(rK)","ep()","~(@,@)","bM?(bx?)","l(R?)","f(L,bg,f?)?(bx?)","S(bg)","x()?(y)","~(nm)","u3(O)","~(y?)","av()","l(S,S,l)","mg(L,f?)","S(I)","p8(L,bp,f?)","p9(L,bp,f?)","~(l,l?)","eH(L,S,f?)","m(ez,ez)","~(hO)","f(L,R,cS?)","~(lK)","~(aDZ)","S?(+(ak,oq))","@(l)","Q(t)","dE(dM)","~(l_)","+boundaryEnd,boundaryStart(ao,ao)(ao)","Q(n0)","~(m6)","S({from!S,to!S})","~(j,y)","I(y)","~(O)","~(oi)","~(cM)","O(jX)","av(db?)","av<~>(js)","~(dB)","aT()","bk(@,@)","Q(nM)","av<~>(@)","Q(a5T)","~([aZ?])","ao(ao,Q,hr)","~(S9)","m(e5,e5)","S?(y,ak,oq)","~(jo)","hN()","~(hN)","jz()","~(jz)","f(L,ne)","ay<@>?(ay<@>?,@,ay<@>(@))","mU(@)","@()","lk(@)","jr(L)","y(m)","jS(bl)","m(l?)","~(lm)","~(ft)","Q(ez,S)","~(Ed)","~(v2)","~(Bt)","~(v1)","~(Ec)","~(Ee)","~(Eb)","av(a4n)","l(qI)","av()","o0(L)","tK(L)","rD(L)","pF(L)","R?(R?)","o_(L,m)","r_(L)","mp()","Q(@)","nO(@)","nZ(@)","~(R?,l,l)","f(f?)","~([~])","f?(L,bp,bp,Q,f?)","S(y,ak)","~(R,cS?)","~(R,cS?)?(hP)","oh(L)","~(jd)","pK(W)","~(m,Q(kk))","Q(dp)","O()","av<+(l,fo?)>()","~(I?)","u?(u?,u?,u?[u?])","Y?(L,qG,ct)","Q(hS)","Q(m,m)","l(l,u)","rL(@)","tk(L,bp)","mc(L)","bo(L)","O()","oZ(L,f?)","d5(L,bp)","na(L,bp)","~(O_)","cP(bg)","bk(dI)","~(m,m)","qZ()","nq(L,bp,f?)","f(L,bp,bp,Q,f?)","kz?(fv)","f(L,mA,nY?,nY?)","bk(D,W)","Q(nQ)","va(L,f?)","la(L,f?)","l?(l)","Q(bg)","oC()","oC?()","~(j9)","~(~)","~(fT,iF?)","qs(L,f?)","t1(hL)","rX(@)","k2()","iM()","b1>(R,kN<@>)","Q(b1>)","f(L,+(I,b6,I))","Q(ov)","av(ns{allowUpscaling:Q,cacheHeight:m?,cacheWidth:m?})","av(ns{getTargetSize:aXs(m,m)?})","cY(cY,bX)","bX(bX)","Q(bX)","l(bX)","Q(S)","u(S)","xb()","~(ji?,Q)","av<~>(R,cS?)","m(W)","~(D,W)","av<~>(~)","~(hO)?(hP)","eq?(eq,Q)","P2(dU)","x(dU)","r5(dU)","Q(m,Q)","qj?()","@(@,l)","nG(nG)","hE(f)","lB(j,m)","I()","S?()","I(ak)","aB(m)","~(fT)","Q(lE)","x(x?,fw)","nc(dz)","ak(y)","dt(kv)","~(kv,b6)","Q(kv)","b1(b1)","agb(agc)","dt?(bx?)","bk(~())","qS()","~(O{isMergeUp:Q})","dM?(dE)","vD?(eq,Q)","O(O)","O(fX)","bg?(dE)","bg(bg)","uB(l)","Q(l_)","hJ()","+boundaryEnd,boundaryStart(ao,ao)(ao,l)","Q(vZ{crossAxisPosition!S,mainAxisPosition!S})","~(dz,m)","l(d7)","Q(y)","x1()","bk(@,cS)","Q(d1)","~(nV)","S?(m)","~(W,O)","~(m,x0)","Q(iA)","~(O)","e4?(iA)","cM(mF)","l(S)","~(m,@)","m(cM)","cM(m)","~(dp)","~(cL,~(R?))","db(db?)","cs()","av(l?)","au<@>?()","av<~>(db?,~(db?))","av>(@)","~(m_)","bg(h)","~(xK)","Ct()","aT<~(bl),b6?>()","~(~(bl),b6?)","wI()","O()","O(O)","S(ce)","O<@>(l)","O(rH)","aT(fp)","~(iJ)","~(R[cS?])","~(b9)","bk(fr,fr)","~({allowPlatformDefault:Q})","cJ<@>?(jE)","cJ<@>(jE)","qE(L,f?)","Q(uU)","av<@>(@)","u9(L)","wG()","av(js)","nb(L)","av<~>(ig)","xq()","x(a5T)","~(es)","n9(ds)","ur(ds)","~(@,cS)","~(ow)","~(jD)","~(m3)","~(ey)","~(a7N)","~(iO)","R?(h5)","cA(cA,rT)","pR(ds)","wj(L)","~(lW)","~(cA)","Q(cA?,cA)","cA(cA)","ug(L,i8)","Q(hM)","~([d_?])","bg<0^>()","Q(Bd)","~(wY)","Q(wS)","iJ()","Q(ox)","bg(e5)","v6(x?,x?)","O(L)","x(e5)","m(kX,kX)","O(e5,o)","Q(e5)","Q(hL<@>)","ke(aB)","aB?(aB)","R?(m,aB?)","ja()","~(ja)","~(hJ)","hf<0^>(jE,f(L))","hJ(hJ)","~(dI)","~(ew)","S(ms)","~(lV)","~(m0)","~(iI,R)","re(L,f?)","~(mw)","f(L,bp,uH,L,L)","Q(mw)","jr(L,f?)","qq(L)","~(ji,Q)","Q(aD1)","rn?(k7,l,l)","~(fm{isClosing:Q?})","ew?(eq,l,ew?,m,m)","~(I)","pv(@)","qP(@)","rV(@)","pu(@)","~(lh)","av<@>(xo)","aT(O<@>)","aT(aT)","bk(aT)","ro()","Q(R)","Q(cJ<@>?)","av(@)","Q(nP)","~(E6,@)","~(lL)","ia(cJ<@>)","b1>(@,@)","y?()","xk(L)","~(l?{wrapWidth:m?})","rY({from:S?})","~(ak)","ua(L,f?)","bk(dB?)","~(e_)","dw(Q)","Q(oS)","o8(L,f?)","la(L)","nq(L,f?)","qo(bl)","v3(bl)","0^?(0^?(bx?))","0&()","0^?(bM<0^>?(bx?))","f(L,i8)","bk(O<~>)","u?()","~(wD)","bM?(bx?)","~(j)","~(l,R?)","~(hF)","oN()","p7()","l1()","~(l1)","~(lU)","0&(l,m?)","x(x)","Q(x)","~(vW,b0)","O()","b0?()","L?()","b9?()","xC(L,i8)","~(y)","aB?()","fp(hc)","p_(L)","~(O)","qc(@)","u6()","bM?(bx?)","~(l,W)","bM?(bx?)","bM?(bx?)","dt?(bg)","~(jb?,wi?)","kK()","~(kK)","kL()","~(kL)","jf()","~(jf)","~([op?])","~(oz)","~(o4)","tv(L,lQ)","a3C(Q)","av(il?)","O(O)","av<~>(l,db?,~(db?)?)","~(l?)","Q(l,l)","m(l)","bk(l,l[R?])","~(Oy>)","BE()","u?(bx?)","fz(L)","fh(L)","lN(@)","m(m,en)","S(S,en)","en(@)","aT(en)","wT(R?)","as(L,fh,f?)","u_(L,m)","mm?(bx?)","mu(fn)","mu(R?)","pG(L)","uE(@)","qK?(bx?)","aZ?(bx?)","Q?(bx?)","h1?(bx?)","qp(L,fz,f?)","uP?(bx?)","mc(L,fh,f?)","pA(L)","av()","S(@)","~(O,W)","nf(L,fz,f?)","r4(L)","rm(L)","vg(L,fh,fz,f?)","f(lN)","vl(L)","hE(L,l)","bo(L,m)","vL(L,fh,f?)","en()","tm(L)","av(l,l,l)","f(L,fz,f?)","Q(cJ<@>)","~(Q?)","av<~>(l)","f(L,bp,bp)","av()","k7(R?)","n2(@)","ep(m,m,m,m,m,m,m,Q)","wQ(l,kc)","wP(l,kc)","wO(l,kc)","~({allowPlatformDefault!Q})","~(iN)","av<~>([W?])","fr()","m(ha,ha)","aW?(bg)","f(L,f,hO?)","l(l?)","aUn?()","~(Ef)","l?()","m(jV)","~(R)","R(jV)","R(fA)","m(fA,fA)","O(b1>)","mb()","l(l,l)","W(m{params:R?})","av(l,aT)","m(c5<@>,c5<@>)","O()","O(l,O)","0^(0^,0^)","I?(I?,I?,S)","S?(ce?,ce?,S)","u?(u?,u?,S)","~(l,lu)","~(b0?)","f(L,j,j,f)","~(bO{forceReport:Q})","dJ(l)","jM?(l)","S(S,S,S)","f(L,bp,bp,f)","bk(R?)","~(y,j)","f(L,bp)","Q?(Q?,Q?,S)","Q(nu?)","f(L,f)","dm?(dm?,dm?,S)","cY?(cY?,cY?,S)","p?(p?,p?,S)","m(Iy<@>,Iy<@>)","Q({priority!m,scheduler!kE})","O(l)","~(d_{alignment:S?,alignmentPolicy:rz?,curve:fk?,duration:aZ?})","m(aB,aB)","cP(cP?,cP?,S)","f?(L,qG,ct)","O>(jv,l)","m(f,m)","u(oM)","Q(l?)","~(L,aS?)","~()(NJ,ac?)","tp()","~(m,m,m)"],interceptorsByTag:null,leafTags:null,arrayRti:Symbol("$ti"),rttc:{"2;":(a,b)=>c=>c instanceof A.am&&a.b(c.a)&&b.b(c.b),"2;boundaryEnd,boundaryStart":(a,b)=>c=>c instanceof A.Yd&&a.b(c.a)&&b.b(c.b),"2;end,start":(a,b)=>c=>c instanceof A.Ye&&a.b(c.a)&&b.b(c.b),"2;endGlyphHeight,startGlyphHeight":(a,b)=>c=>c instanceof A.Hh&&a.b(c.a)&&b.b(c.b),"2;key,value":(a,b)=>c=>c instanceof A.Yf&&a.b(c.a)&&b.b(c.b),"2;localPosition,paragraph":(a,b)=>c=>c instanceof A.Yg&&a.b(c.a)&&b.b(c.b),"2;representation,targetSize":(a,b)=>c=>c instanceof A.Yh&&a.b(c.a)&&b.b(c.b),"3;":(a,b,c)=>d=>d instanceof A.hx&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;ascent,bottomHeight,subtextHeight":(a,b,c)=>d=>d instanceof A.Yi&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;breaks,graphemes,words":(a,b,c)=>d=>d instanceof A.Yj&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;completer,recorder,scene":(a,b,c)=>d=>d instanceof A.Hi&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;data,event,timeStamp":(a,b,c)=>d=>d instanceof A.Hj&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;domSize,representation,targetSize":(a,b,c)=>d=>d instanceof A.Yk&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;large,medium,small":(a,b,c)=>d=>d instanceof A.Yl&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;textConstraints,tileSize,titleY":(a,b,c)=>d=>d instanceof A.Ym&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"4;domBlurListener,domFocusListener,element,semanticsNodeId":a=>b=>b instanceof A.Hk&&A.aFs(a,b.a),"4;height,width,x,y":a=>b=>b instanceof A.Yn&&A.aFs(a,b.a),"4;queue,started,target,timer":a=>b=>b instanceof A.Hl&&A.aFs(a,b.a)}} +A.aZr(v.typeUniverse,JSON.parse('{"fr":"nF","Pd":"nF","kP":"nF","b3_":"i","b3L":"i","b3K":"i","b31":"mY","b30":"a4","b4T":"a4","b5q":"a4","b4O":"aF","b32":"aL","b4Q":"aL","b3W":"bA","b3D":"bA","b5W":"fx","b37":"k9","b5B":"k9","b3X":"qn","b3e":"cv","b3g":"j8","b3i":"fu","b3j":"fI","b3f":"fI","b3h":"fI","b4R":"ve","z7":{"dI":[]},"n3":{"aId":[]},"z4":{"dI":[]},"qS":{"wz":[]},"qZ":{"wz":[]},"u6":{"r5":[]},"iJ":{"nc":[]},"dz":{"n8":[]},"lg":{"n8":[]},"ro":{"nc":[]},"fo":{"cm":[]},"aK_":{"f2":[]},"lP":{"f2":[]},"abh":{"agc":[]},"aHx":{"r5":[]},"lo":{"a8c":[]},"Ll":{"O_":[]},"Lm":{"hR":[]},"u5":{"hR":[]},"Lp":{"hR":[]},"Lu":{"hR":[]},"u4":{"hR":[]},"Lt":{"dI":[]},"Ln":{"dI":[]},"Lo":{"hR":[]},"z5":{"hR":[]},"Fo":{"hR":[]},"Fq":{"hR":[]},"Fp":{"hR":[]},"Lj":{"dI":[]},"pH":{"P2":[]},"Ls":{"agb":[]},"lf":{"abh":[],"agc":[]},"z8":{"nG":[]},"Ld":{"cm":[]},"A8":{"hR":[]},"Nl":{"aIa":[]},"Nk":{"bL":[]},"AO":{"bL":[]},"wU":{"o":["1"],"o.E":"1"},"N0":{"fo":[],"cm":[]},"Ax":{"fo":[],"cm":[]},"Ay":{"fo":[],"cm":[]},"Nj":{"dI":[]},"Ni":{"dI":[]},"R1":{"a8G":[]},"L9":{"dI":[]},"tM":{"a8G":[]},"Qb":{"dI":[]},"uK":{"bL":[]},"zp":{"f2":[]},"Qf":{"f2":[]},"KS":{"f2":[],"aGE":[]},"Ly":{"f2":[],"aGY":[]},"LC":{"f2":[],"aH_":[]},"LA":{"f2":[],"aGZ":[]},"OS":{"f2":[],"aJc":[]},"EK":{"f2":[],"aEe":[]},"C6":{"f2":[],"aEe":[],"aJa":[]},"ND":{"f2":[],"aIe":[]},"eL":{"du":[]},"cb":{"du":[]},"LT":{"du":[]},"KC":{"du":[]},"KD":{"du":[]},"fe":{"du":[]},"lc":{"du":[]},"mT":{"du":[]},"em":{"du":[]},"tJ":{"du":[]},"Kr":{"du":[]},"pJ":{"du":[]},"qy":{"r5":[],"aH1":[]},"vd":{"o":["ju"],"o.E":"ju"},"Ci":{"Dc":[]},"QI":{"hj":[]},"z1":{"hj":[]},"tZ":{"hj":[]},"ML":{"hj":[]},"q8":{"hj":[]},"NW":{"hj":[]},"nI":{"hj":[]},"Qa":{"hj":[]},"QQ":{"og":[]},"QN":{"og":[]},"QM":{"og":[]},"rv":{"hj":[]},"QX":{"aDZ":[]},"RP":{"hj":[]},"xQ":{"a_":["1"],"O":["1"],"a8":["1"],"o":["1"]},"W2":{"xQ":["m"],"a_":["m"],"O":["m"],"a8":["m"],"o":["m"]},"Sf":{"xQ":["m"],"a_":["m"],"O":["m"],"a8":["m"],"o":["m"],"a_.E":"m","o.E":"m"},"A9":{"nG":[]},"V8":{"lo":[],"a8c":[]},"uA":{"lo":[],"a8c":[]},"AM":{"bL":[]},"D":{"O":["1"],"a8":["1"],"W":[],"o":["1"],"o.E":"1"},"B5":{"Q":[],"cB":[]},"uT":{"bk":[],"cB":[]},"i":{"W":[]},"nF":{"W":[]},"NO":{"D6":[]},"aaS":{"D":["1"],"O":["1"],"a8":["1"],"W":[],"o":["1"],"o.E":"1"},"nC":{"S":[],"ce":[],"c5":["ce"]},"uS":{"S":[],"m":[],"ce":[],"c5":["ce"],"cB":[]},"B7":{"S":[],"ce":[],"c5":["ce"],"cB":[]},"lF":{"l":[],"c5":["l"],"cB":[]},"kT":{"o":["2"]},"pB":{"kT":["1","2"],"o":["2"],"o.E":"2"},"G0":{"pB":["1","2"],"kT":["1","2"],"a8":["2"],"o":["2"],"o.E":"2"},"Fk":{"a_":["2"],"O":["2"],"kT":["1","2"],"a8":["2"],"o":["2"]},"eY":{"Fk":["1","2"],"a_":["2"],"O":["2"],"kT":["1","2"],"a8":["2"],"o":["2"],"a_.E":"2","o.E":"2"},"pE":{"bg":["2"],"kT":["1","2"],"a8":["2"],"o":["2"],"o.E":"2"},"pD":{"aU":["3","4"],"aT":["3","4"],"aU.V":"4","aU.K":"3"},"jn":{"cm":[]},"fG":{"a_":["m"],"O":["m"],"a8":["m"],"o":["m"],"a_.E":"m","o.E":"m"},"a8":{"o":["1"]},"ax":{"a8":["1"],"o":["1"]},"i2":{"ax":["1"],"a8":["1"],"o":["1"],"o.E":"1","ax.E":"1"},"f4":{"o":["2"],"o.E":"2"},"pX":{"f4":["1","2"],"a8":["2"],"o":["2"],"o.E":"2"},"ae":{"ax":["2"],"a8":["2"],"o":["2"],"o.E":"2","ax.E":"2"},"aY":{"o":["1"],"o.E":"1"},"f0":{"o":["2"],"o.E":"2"},"rR":{"o":["1"],"o.E":"1"},"A2":{"rR":["1"],"a8":["1"],"o":["1"],"o.E":"1"},"m5":{"o":["1"],"o.E":"1"},"uz":{"m5":["1"],"a8":["1"],"o":["1"],"o.E":"1"},"DJ":{"o":["1"],"o.E":"1"},"hH":{"a8":["1"],"o":["1"],"o.E":"1"},"qa":{"o":["1"],"o.E":"1"},"cd":{"o":["1"],"o.E":"1"},"wv":{"a_":["1"],"O":["1"],"a8":["1"],"o":["1"]},"cc":{"ax":["1"],"a8":["1"],"o":["1"],"o.E":"1","ax.E":"1"},"f8":{"E6":[]},"pM":{"mk":["1","2"],"aT":["1","2"]},"uj":{"aT":["1","2"]},"bT":{"uj":["1","2"],"aT":["1","2"]},"tf":{"o":["1"],"o.E":"1"},"d0":{"uj":["1","2"],"aT":["1","2"]},"zk":{"iH":["1"],"bg":["1"],"a8":["1"],"o":["1"]},"fH":{"iH":["1"],"bg":["1"],"a8":["1"],"o":["1"],"o.E":"1"},"dW":{"iH":["1"],"bg":["1"],"a8":["1"],"o":["1"],"o.E":"1"},"NM":{"lz":[]},"nw":{"lz":[]},"C3":{"mi":[],"cm":[]},"NP":{"cm":[]},"Sl":{"cm":[]},"OL":{"bL":[]},"Iq":{"cS":[]},"n4":{"lz":[]},"LG":{"lz":[]},"LH":{"lz":[]},"RQ":{"lz":[]},"RC":{"lz":[]},"tV":{"lz":[]},"Qk":{"cm":[]},"fs":{"aU":["1","2"],"aT":["1","2"],"aU.V":"2","aU.K":"1"},"bs":{"a8":["1"],"o":["1"],"o.E":"1"},"bf":{"a8":["1"],"o":["1"],"o.E":"1"},"et":{"a8":["b1<1,2>"],"o":["b1<1,2>"],"o.E":"b1<1,2>"},"B8":{"fs":["1","2"],"aU":["1","2"],"aT":["1","2"],"aU.V":"2","aU.K":"1"},"qv":{"fs":["1","2"],"aU":["1","2"],"aT":["1","2"],"aU.V":"2","aU.K":"1"},"nD":{"aJF":[]},"xd":{"PD":[],"qI":[]},"SU":{"o":["PD"],"o.E":"PD"},"w8":{"qI":[]},"ZT":{"o":["qI"],"o.E":"qI"},"lK":{"hX":[],"oy":[],"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"],"cB":[],"a_.E":"m","o.E":"m"},"ve":{"W":[],"k7":[],"cB":[]},"qU":{"W":[],"k7":[],"cB":[]},"BV":{"W":[]},"a0b":{"k7":[]},"BQ":{"db":[],"W":[],"cB":[]},"vf":{"bE":["1"],"W":[]},"BU":{"a_":["S"],"O":["S"],"bE":["S"],"a8":["S"],"W":[],"o":["S"]},"hX":{"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"]},"BR":{"a8_":[],"a_":["S"],"O":["S"],"bE":["S"],"a8":["S"],"W":[],"o":["S"],"cB":[],"a_.E":"S","o.E":"S"},"BS":{"a80":[],"a_":["S"],"O":["S"],"bE":["S"],"a8":["S"],"W":[],"o":["S"],"cB":[],"a_.E":"S","o.E":"S"},"OA":{"hX":[],"aaK":[],"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"],"cB":[],"a_.E":"m","o.E":"m"},"BT":{"hX":[],"aaL":[],"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"],"cB":[],"a_.E":"m","o.E":"m"},"OB":{"hX":[],"aaM":[],"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"],"cB":[],"a_.E":"m","o.E":"m"},"BW":{"hX":[],"anf":[],"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"],"cB":[],"a_.E":"m","o.E":"m"},"BX":{"hX":[],"wr":[],"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"],"cB":[],"a_.E":"m","o.E":"m"},"BY":{"hX":[],"ang":[],"a_":["m"],"O":["m"],"bE":["m"],"a8":["m"],"W":[],"o":["m"],"cB":[],"a_.E":"m","o.E":"m"},"IM":{"i5":[]},"Va":{"cm":[]},"IN":{"mi":[],"cm":[]},"au":{"av":["1"]},"iQ":{"w7":["1"]},"IJ":{"S9":[]},"jZ":{"o":["1"],"o.E":"1"},"da":{"cm":[]},"cT":{"df":["1"],"xG":["1"],"cs":["1"],"cs.T":"1"},"t5":{"oI":["1"],"iQ":["1"],"w7":["1"]},"l0":{"oG":["1"]},"kS":{"oG":["1"]},"bB":{"Fs":["1"]},"DX":{"cs":["1"]},"iP":{"ts":["1"]},"p2":{"ts":["1"]},"df":{"xG":["1"],"cs":["1"],"cs.T":"1"},"oI":{"iQ":["1"],"w7":["1"]},"xG":{"cs":["1"]},"wV":{"w7":["1"]},"G1":{"cs":["1"],"cs.T":"1"},"tj":{"cs":["1"],"cs.T":"1"},"GN":{"iP":["1"],"ts":["1"],"Oy":["1"]},"Ga":{"cs":["2"]},"x_":{"iQ":["2"],"w7":["2"]},"GE":{"Ga":["1","2"],"cs":["2"],"cs.T":"2"},"mv":{"aU":["1","2"],"aT":["1","2"],"aU.V":"2","aU.K":"1"},"oO":{"mv":["1","2"],"aU":["1","2"],"aT":["1","2"],"aU.V":"2","aU.K":"1"},"FL":{"mv":["1","2"],"aU":["1","2"],"aT":["1","2"],"aU.V":"2","aU.K":"1"},"tb":{"a8":["1"],"o":["1"],"o.E":"1"},"Gz":{"fs":["1","2"],"aU":["1","2"],"aT":["1","2"],"aU.V":"2","aU.K":"1"},"oL":{"xB":["1"],"iH":["1"],"bg":["1"],"a8":["1"],"o":["1"],"o.E":"1"},"hw":{"xB":["1"],"iH":["1"],"aUH":["1"],"bg":["1"],"a8":["1"],"o":["1"],"o.E":"1"},"qB":{"o":["1"],"o.E":"1"},"a_":{"O":["1"],"a8":["1"],"o":["1"]},"aU":{"aT":["1","2"]},"GD":{"a8":["2"],"o":["2"],"o.E":"2"},"Bv":{"aT":["1","2"]},"mk":{"aT":["1","2"]},"FR":{"FS":["1"],"aHD":["1"]},"FT":{"FS":["1"]},"zV":{"a8":["1"],"o":["1"],"o.E":"1"},"Bm":{"ax":["1"],"a8":["1"],"o":["1"],"o.E":"1","ax.E":"1"},"iH":{"bg":["1"],"a8":["1"],"o":["1"]},"xB":{"iH":["1"],"bg":["1"],"a8":["1"],"o":["1"]},"DR":{"aU":["1","2"],"p0":["1","fY<1,2>"],"aT":["1","2"],"aU.V":"2","aU.K":"1","p0.K":"1"},"mC":{"a8":["1"],"o":["1"],"o.E":"1"},"tr":{"a8":["2"],"o":["2"],"o.E":"2"},"Ij":{"a8":["b1<1,2>"],"o":["b1<1,2>"],"o.E":"b1<1,2>"},"mD":{"jY":["1","2","1"],"jY.T":"1"},"Io":{"jY":["1","fY<1,2>","2"],"jY.T":"2"},"tq":{"jY":["1","fY<1,2>","b1<1,2>"],"jY.T":"b1<1,2>"},"w4":{"iH":["1"],"bg":["1"],"a8":["1"],"p0":["1","fZ<1>"],"o":["1"],"o.E":"1","p0.K":"1"},"W5":{"aU":["l","@"],"aT":["l","@"],"aU.V":"@","aU.K":"l"},"W6":{"ax":["l"],"a8":["l"],"o":["l"],"o.E":"l","ax.E":"l"},"x8":{"kH":[]},"KF":{"pZ":[]},"a08":{"c7":["l","O"]},"KH":{"c7":["l","O"],"c7.S":"l","c7.T":"O"},"a09":{"kH":[]},"a07":{"c7":["O","l"]},"KG":{"c7":["O","l"],"c7.S":"O","c7.T":"l"},"KU":{"c7":["O","l"],"c7.S":"O","c7.T":"l"},"Gb":{"c7":["1","3"],"c7.S":"1","c7.T":"3"},"B9":{"cm":[]},"NQ":{"cm":[]},"NS":{"c7":["R?","l"],"c7.S":"R?","c7.T":"l"},"NR":{"c7":["l","R?"],"c7.S":"l","c7.T":"R?"},"NX":{"pZ":[]},"NZ":{"c7":["l","O"],"c7.S":"l","c7.T":"O"},"NY":{"c7":["O","l"],"c7.S":"O","c7.T":"l"},"xI":{"kH":[]},"tt":{"kH":[]},"Ss":{"pZ":[]},"St":{"c7":["l","O"],"c7.S":"l","c7.T":"O"},"a0g":{"kH":[]},"ET":{"c7":["O","l"],"c7.S":"O","c7.T":"l"},"ep":{"c5":["ep"]},"S":{"ce":[],"c5":["ce"]},"aZ":{"c5":["aZ"]},"m":{"ce":[],"c5":["ce"]},"O":{"a8":["1"],"o":["1"]},"ce":{"c5":["ce"]},"PD":{"qI":[]},"bg":{"a8":["1"],"o":["1"]},"l":{"c5":["l"]},"ps":{"cm":[]},"mi":{"cm":[]},"ii":{"cm":[]},"vx":{"cm":[]},"AV":{"cm":[]},"OH":{"cm":[]},"ES":{"cm":[]},"Sj":{"cm":[]},"fQ":{"cm":[]},"LM":{"cm":[]},"OW":{"cm":[]},"DU":{"cm":[]},"Vb":{"bL":[]},"eI":{"bL":[]},"Gc":{"ax":["1"],"a8":["1"],"o":["1"],"o.E":"1","ax.E":"1"},"ZX":{"cS":[]},"IW":{"Sn":[]},"iW":{"Sn":[]},"Uq":{"Sn":[]},"cv":{"W":[]},"h6":{"W":[]},"h8":{"W":[]},"hg":{"W":[]},"bA":{"W":[]},"hh":{"W":[]},"hm":{"W":[]},"hn":{"W":[]},"ho":{"W":[]},"fu":{"W":[]},"hs":{"W":[]},"fx":{"W":[]},"ht":{"W":[]},"aL":{"bA":[],"W":[]},"Kn":{"W":[]},"Kv":{"bA":[],"W":[]},"KE":{"bA":[],"W":[]},"yM":{"W":[]},"k9":{"bA":[],"W":[]},"LQ":{"W":[]},"uk":{"W":[]},"fI":{"W":[]},"j8":{"W":[]},"LR":{"W":[]},"LS":{"W":[]},"M1":{"W":[]},"Mq":{"W":[]},"zT":{"a_":["iC"],"b4":["iC"],"O":["iC"],"bE":["iC"],"a8":["iC"],"W":[],"o":["iC"],"b4.E":"iC","a_.E":"iC","o.E":"iC"},"zU":{"iC":["ce"],"W":[]},"Ms":{"a_":["l"],"b4":["l"],"O":["l"],"bE":["l"],"a8":["l"],"W":[],"o":["l"],"b4.E":"l","a_.E":"l","o.E":"l"},"Mu":{"W":[]},"aF":{"bA":[],"W":[]},"a4":{"W":[]},"MN":{"a_":["h6"],"b4":["h6"],"O":["h6"],"bE":["h6"],"a8":["h6"],"W":[],"o":["h6"],"b4.E":"h6","a_.E":"h6","o.E":"h6"},"MQ":{"W":[]},"N1":{"bA":[],"W":[]},"Nh":{"W":[]},"qn":{"a_":["bA"],"b4":["bA"],"O":["bA"],"bE":["bA"],"a8":["bA"],"W":[],"o":["bA"],"b4.E":"bA","a_.E":"bA","o.E":"bA"},"Of":{"W":[]},"Oo":{"W":[]},"Os":{"aU":["l","@"],"W":[],"aT":["l","@"],"aU.V":"@","aU.K":"l"},"Ot":{"aU":["l","@"],"W":[],"aT":["l","@"],"aU.V":"@","aU.K":"l"},"Ou":{"a_":["hg"],"b4":["hg"],"O":["hg"],"bE":["hg"],"a8":["hg"],"W":[],"o":["hg"],"b4.E":"hg","a_.E":"hg","o.E":"hg"},"C1":{"a_":["bA"],"b4":["bA"],"O":["bA"],"bE":["bA"],"a8":["bA"],"W":[],"o":["bA"],"b4.E":"bA","a_.E":"bA","o.E":"bA"},"Pg":{"a_":["hh"],"b4":["hh"],"O":["hh"],"bE":["hh"],"a8":["hh"],"W":[],"o":["hh"],"b4.E":"hh","a_.E":"hh","o.E":"hh"},"Qj":{"aU":["l","@"],"W":[],"aT":["l","@"],"aU.V":"@","aU.K":"l"},"QH":{"bA":[],"W":[]},"Rp":{"a_":["hm"],"b4":["hm"],"O":["hm"],"bE":["hm"],"a8":["hm"],"W":[],"o":["hm"],"b4.E":"hm","a_.E":"hm","o.E":"hm"},"Rw":{"a_":["hn"],"b4":["hn"],"O":["hn"],"bE":["hn"],"a8":["hn"],"W":[],"o":["hn"],"b4.E":"hn","a_.E":"hn","o.E":"hn"},"RD":{"aU":["l","l"],"W":[],"aT":["l","l"],"aU.V":"l","aU.K":"l"},"S5":{"a_":["fx"],"b4":["fx"],"O":["fx"],"bE":["fx"],"a8":["fx"],"W":[],"o":["fx"],"b4.E":"fx","a_.E":"fx","o.E":"fx"},"S6":{"a_":["hs"],"b4":["hs"],"O":["hs"],"bE":["hs"],"a8":["hs"],"W":[],"o":["hs"],"b4.E":"hs","a_.E":"hs","o.E":"hs"},"S8":{"W":[]},"Sb":{"a_":["ht"],"b4":["ht"],"O":["ht"],"bE":["ht"],"a8":["ht"],"W":[],"o":["ht"],"b4.E":"ht","a_.E":"ht","o.E":"ht"},"Sc":{"W":[]},"Sp":{"W":[]},"Su":{"W":[]},"U6":{"a_":["cv"],"b4":["cv"],"O":["cv"],"bE":["cv"],"a8":["cv"],"W":[],"o":["cv"],"b4.E":"cv","a_.E":"cv","o.E":"cv"},"FQ":{"iC":["ce"],"W":[]},"VC":{"a_":["h8?"],"b4":["h8?"],"O":["h8?"],"bE":["h8?"],"a8":["h8?"],"W":[],"o":["h8?"],"b4.E":"h8?","a_.E":"h8?","o.E":"h8?"},"GO":{"a_":["bA"],"b4":["bA"],"O":["bA"],"bE":["bA"],"a8":["bA"],"W":[],"o":["bA"],"b4.E":"bA","a_.E":"bA","o.E":"bA"},"ZO":{"a_":["ho"],"b4":["ho"],"O":["ho"],"bE":["ho"],"a8":["ho"],"W":[],"o":["ho"],"b4.E":"ho","a_.E":"ho","o.E":"ho"},"ZZ":{"a_":["fu"],"b4":["fu"],"O":["fu"],"bE":["fu"],"a8":["fu"],"W":[],"o":["fu"],"b4.E":"fu","a_.E":"fu","o.E":"fu"},"zM":{"fn":[]},"wT":{"zM":[],"fn":[]},"Aj":{"fn":[]},"mu":{"Aj":[],"fn":[]},"nN":{"bL":[]},"hK":{"bL":[]},"Cf":{"bL":[]},"Cg":{"bL":[]},"vp":{"bL":[]},"OK":{"bL":[]},"iC":{"b6l":["1"]},"hT":{"W":[]},"hY":{"W":[]},"i4":{"W":[]},"O5":{"a_":["hT"],"b4":["hT"],"O":["hT"],"a8":["hT"],"W":[],"o":["hT"],"b4.E":"hT","a_.E":"hT","o.E":"hT"},"OM":{"a_":["hY"],"b4":["hY"],"O":["hY"],"a8":["hY"],"W":[],"o":["hY"],"b4.E":"hY","a_.E":"hY","o.E":"hY"},"Ph":{"W":[]},"RH":{"a_":["l"],"b4":["l"],"O":["l"],"a8":["l"],"W":[],"o":["l"],"b4.E":"l","a_.E":"l","o.E":"l"},"Sd":{"a_":["i4"],"b4":["i4"],"O":["i4"],"a8":["i4"],"W":[],"o":["i4"],"b4.E":"i4","a_.E":"i4","o.E":"i4"},"aaM":{"O":["m"],"a8":["m"],"o":["m"]},"oy":{"O":["m"],"a8":["m"],"o":["m"]},"ang":{"O":["m"],"a8":["m"],"o":["m"]},"aaK":{"O":["m"],"a8":["m"],"o":["m"]},"anf":{"O":["m"],"a8":["m"],"o":["m"]},"aaL":{"O":["m"],"a8":["m"],"o":["m"]},"wr":{"O":["m"],"a8":["m"],"o":["m"]},"a8_":{"O":["S"],"a8":["S"],"o":["S"]},"a80":{"O":["S"],"a8":["S"],"o":["S"]},"jB":{"xr":["jB"]},"rk":{"xr":["rk"]},"KK":{"W":[]},"KL":{"aU":["l","@"],"W":[],"aT":["l","@"],"aU.V":"@","aU.K":"l"},"KM":{"W":[]},"mY":{"W":[]},"OP":{"W":[]},"yY":{"aj":[],"f":[]},"n1":{"jj":["n1"],"jj.T":"n1"},"f7":{"o":["l"],"o.E":"l"},"bN":{"aT":["2","3"]},"ww":{"p4":["1","o<1>"],"p4.E":"1"},"vU":{"p4":["1","bg<1>"],"p4.E":"1"},"BF":{"aCY":[],"uC":[],"zM":[],"fn":[]},"BG":{"aD7":[],"uC":[],"Aj":[],"fn":[]},"BH":{"uC":[],"fn":[]},"vD":{"ew":[]},"eq":{"ew":[]},"hJ":{"ew":[]},"aUG":{"ew":[]},"Qg":{"eq":[],"ew":[]},"Wf":{"aEr":[]},"bp":{"ac":[]},"tO":{"bp":["S"],"ac":[]},"SV":{"bp":["S"],"ac":[]},"SW":{"bp":["S"],"ac":[]},"po":{"bp":["1"],"ac":[]},"rj":{"bp":["S"],"ac":[]},"hi":{"bp":["S"],"ac":[]},"zx":{"bp":["S"],"ac":[]},"t0":{"bp":["S"],"ac":[]},"ui":{"bp":["1"],"ac":[]},"yw":{"bp":["1"],"ac":[]},"Gy":{"fk":[]},"D7":{"fk":[]},"ed":{"fk":[]},"Ry":{"fk":[]},"Ey":{"fk":[]},"eo":{"fk":[]},"Ex":{"fk":[]},"lv":{"fk":[]},"Us":{"fk":[]},"ay":{"an":["1"],"ay.T":"1","an.T":"1"},"fj":{"ay":["u?"],"an":["u?"],"ay.T":"u?","an.T":"u?"},"al":{"bp":["1"],"ac":[]},"fa":{"an":["1"],"an.T":"1"},"D1":{"ay":["1"],"an":["1"],"ay.T":"1","an.T":"1"},"R5":{"ay":["I?"],"an":["I?"],"ay.T":"I?","an.T":"I?"},"Cv":{"ay":["x?"],"an":["x?"],"ay.T":"x?","an.T":"x?"},"nx":{"ay":["m"],"an":["m"],"ay.T":"m","an.T":"m"},"fl":{"an":["S"],"an.T":"S"},"EO":{"an":["1"],"an.T":"1"},"zq":{"Y":[],"f":[]},"U9":{"X":["zq"]},"U8":{"ac":[]},"zr":{"Y":[],"f":[]},"FB":{"X":["zr"]},"cH":{"u":[]},"Ub":{"jO":[]},"LU":{"aj":[],"f":[]},"pR":{"Y":[],"f":[]},"FC":{"X":["pR"]},"LV":{"cP":[]},"aSs":{"b5":[],"aQ":[],"f":[]},"Ue":{"fL":["zs"],"fL.T":"zs"},"M8":{"zs":[]},"zu":{"Y":[],"f":[]},"FE":{"X":["zu"]},"LW":{"aj":[],"f":[]},"zt":{"Y":[],"f":[]},"wM":{"Y":[],"f":[]},"Uf":{"X":["zt"]},"wN":{"X":["wM<1>"]},"jT":{"iq":[]},"um":{"Y":[],"f":[]},"FD":{"kC":["um"],"X":["um"]},"Uh":{"ac":[]},"LY":{"jO":[]},"FG":{"Y":[],"f":[]},"LZ":{"aj":[],"f":[]},"Uj":{"b7":[],"as":[],"f":[]},"Yt":{"y":[],"aN":["y"],"t":[],"ar":[]},"FH":{"X":["FG"]},"Wb":{"ac":[]},"YZ":{"ac":[]},"Ua":{"ac":[]},"FI":{"as":[],"f":[]},"Ui":{"b_":[],"aB":[],"L":[]},"tn":{"d9":["y","fy"],"y":[],"a9":["y","fy"],"t":[],"ar":[],"a9.1":"fy","d9.1":"fy","a9.0":"y"},"n9":{"Y":[],"f":[]},"FF":{"X":["n9"]},"Wj":{"ac":[]},"AW":{"cQ":[],"b5":[],"aQ":[],"f":[]},"zw":{"aj":[],"f":[]},"oK":{"dJ":[]},"uB":{"oK":[],"dJ":[]},"MI":{"oK":[],"dJ":[]},"MH":{"oK":[],"dJ":[]},"uD":{"ps":[],"cm":[]},"Mi":{"dJ":[]},"Vo":{"dJ":[]},"aS":{"ac":[]},"ct":{"aS":[],"ac":[]},"tg":{"ac":[]},"ke":{"dJ":[]},"zH":{"dJ":[]},"Mh":{"dJ":[]},"zI":{"dJ":[]},"e3":{"fK":[],"e3.T":"1"},"Od":{"fK":[]},"kO":{"fK":[]},"Bk":{"iw":[]},"ba":{"o":["1"],"o.E":"1"},"er":{"o":["1"],"o.E":"1"},"dw":{"av":["1"]},"As":{"bO":[]},"e4":{"bl":[]},"lU":{"bl":[]},"nW":{"bl":[]},"nX":{"bl":[]},"lT":{"bl":[]},"lW":{"bl":[]},"ft":{"bl":[]},"lV":{"bl":[]},"SO":{"bl":[]},"a_R":{"bl":[]},"r6":{"bl":[]},"a_N":{"r6":[],"bl":[]},"rb":{"bl":[]},"a_Y":{"rb":[],"bl":[]},"a_T":{"lU":[],"bl":[]},"a_Q":{"nW":[],"bl":[]},"a_S":{"nX":[],"bl":[]},"a_P":{"lT":[],"bl":[]},"r8":{"bl":[]},"a_U":{"r8":[],"bl":[]},"a01":{"lW":[],"bl":[]},"rc":{"ft":[],"bl":[]},"a0_":{"rc":[],"ft":[],"bl":[]},"rd":{"ft":[],"bl":[]},"a00":{"rd":[],"ft":[],"bl":[]},"Pi":{"ft":[],"bl":[]},"a_Z":{"ft":[],"bl":[]},"a_W":{"lV":[],"bl":[]},"ra":{"bl":[]},"a_X":{"ra":[],"bl":[]},"r9":{"bl":[]},"a_V":{"r9":[],"bl":[]},"r7":{"bl":[]},"a_O":{"r7":[],"bl":[]},"jf":{"d8":[],"d7":[]},"GI":{"xP":[]},"xj":{"xP":[]},"jo":{"d8":[],"d7":[]},"hF":{"d8":[],"d7":[]},"i7":{"hF":[],"d8":[],"d7":[]},"hN":{"hF":[],"d8":[],"d7":[]},"jz":{"hF":[],"d8":[],"d7":[]},"ja":{"d8":[],"d7":[]},"d8":{"d7":[]},"C8":{"d8":[],"d7":[]},"vt":{"d8":[],"d7":[]},"hq":{"d8":[],"d7":[]},"KX":{"d8":[],"d7":[]},"kK":{"d8":[],"d7":[]},"kL":{"d8":[],"d7":[]},"yI":{"d8":[],"d7":[]},"wI":{"d7":[]},"aql":{"uG":[]},"qo":{"jS":[]},"v3":{"jS":[]},"SP":{"aj":[],"f":[]},"t4":{"aj":[],"f":[]},"KQ":{"aj":[],"f":[]},"KP":{"aj":[],"f":[]},"LF":{"aj":[],"f":[]},"LE":{"aj":[],"f":[]},"Mx":{"aj":[],"f":[]},"Mw":{"aj":[],"f":[]},"MB":{"aj":[],"f":[]},"MA":{"aj":[],"f":[]},"aRn":{"cQ":[],"b5":[],"aQ":[],"f":[]},"Kq":{"aj":[],"f":[]},"By":{"Y":[],"f":[]},"GF":{"X":["By"]},"yB":{"Y":[],"f":[]},"XX":{"I":[]},"F7":{"X":["yB"]},"Td":{"b7":[],"as":[],"f":[]},"Yr":{"y":[],"aN":["y"],"t":[],"ar":[]},"Ta":{"k2":[]},"tP":{"cQ":[],"b5":[],"aQ":[],"f":[]},"v6":{"ay":["x?"],"an":["x?"],"ay.T":"x?","an.T":"x?"},"BA":{"ay":["j"],"an":["j"],"ay.T":"j","an.T":"j"},"aUU":{"cQ":[],"b5":[],"aQ":[],"f":[]},"yQ":{"Y":[],"f":[]},"th":{"Y":[],"f":[]},"Ff":{"X":["yQ"]},"UU":{"aj":[],"f":[]},"Tv":{"b7":[],"as":[],"f":[]},"Ho":{"y":[],"aN":["y"],"t":[],"ar":[]},"xf":{"X":["th<1>"]},"BK":{"ee":["1"],"eh":["1"],"cJ":["1"]},"Fe":{"aj":[],"f":[]},"yX":{"Y":[],"f":[]},"Fg":{"X":["yX"]},"WH":{"dt":[],"bM":["dt"]},"W1":{"b7":[],"as":[],"f":[]},"Hw":{"y":[],"aN":["y"],"t":[],"ar":[]},"u_":{"aj":[],"f":[]},"aRO":{"b5":[],"aQ":[],"f":[]},"z2":{"Y":[],"f":[]},"TI":{"X":["z2"]},"TH":{"aS":[],"ac":[]},"aRT":{"b5":[],"aQ":[],"f":[]},"Li":{"aj":[],"f":[]},"jq":{"n5":["m"],"u":[],"n5.T":"m"},"UE":{"jO":[]},"Mf":{"aj":[],"f":[]},"ur":{"aj":[],"f":[]},"tK":{"aj":[],"f":[]},"Mj":{"aj":[],"f":[]},"zJ":{"ee":["1"],"eh":["1"],"cJ":["1"]},"aSP":{"cQ":[],"b5":[],"aQ":[],"f":[]},"zP":{"aj":[],"f":[]},"aSX":{"cQ":[],"b5":[],"aQ":[],"f":[]},"nf":{"Y":[],"f":[]},"V6":{"Y":[],"f":[]},"V7":{"aj":[],"f":[]},"V4":{"bx":[]},"aTp":{"cQ":[],"b5":[],"aQ":[],"f":[]},"Ao":{"b5":[],"aQ":[],"f":[]},"F6":{"bp":["1"],"ac":[]},"qp":{"aj":[],"f":[]},"I2":{"Y":[],"f":[]},"Zh":{"X":["I2"]},"VQ":{"Y":[],"f":[]},"VP":{"bx":[]},"Vk":{"bx":[]},"Vl":{"bx":[]},"Xd":{"bx":[]},"AP":{"cQ":[],"b5":[],"aQ":[],"f":[]},"AY":{"Y":[],"f":[]},"Gr":{"X":["AY"]},"AZ":{"kq":[]},"nu":{"ny":[],"kq":[]},"B0":{"ny":[],"kq":[]},"B1":{"ny":[],"kq":[]},"ny":{"kq":[]},"H4":{"b5":[],"aQ":[],"f":[]},"Gq":{"Y":[],"f":[]},"B_":{"aj":[],"f":[]},"Gp":{"X":["Gq"],"aEA":[]},"NL":{"aj":[],"f":[]},"hQ":{"bX":[]},"WZ":{"hQ":[],"bX":[]},"jP":{"hQ":[],"bX":[]},"dL":{"hQ":[],"bX":[]},"Fd":{"Y":[],"f":[]},"Gg":{"Y":[],"f":[]},"qs":{"Y":[],"f":[]},"aUu":{"cQ":[],"b5":[],"aQ":[],"f":[]},"Gs":{"aS":[],"ac":[]},"Gt":{"ay":["hQ"],"an":["hQ"],"ay.T":"hQ","an.T":"hQ"},"W_":{"ac":[]},"Tr":{"X":["Fd"]},"Gh":{"X":["Gg"]},"Hr":{"y":[],"kG":["eR","y"],"t":[],"ar":[]},"Uw":{"hl":["eR","y"],"as":[],"f":[],"hl.0":"eR","hl.1":"y"},"Gu":{"X":["qs"]},"O8":{"aj":[],"f":[]},"VY":{"bM":["u?"]},"Wh":{"hl":["jW","y"],"as":[],"f":[],"hl.0":"jW","hl.1":"y"},"Hz":{"y":[],"kG":["jW","y"],"t":[],"ar":[]},"aUK":{"cQ":[],"b5":[],"aQ":[],"f":[]},"Ep":{"Y":[],"f":[]},"IB":{"X":["Ep"]},"Oh":{"aj":[],"f":[]},"Bx":{"Y":[],"f":[]},"Hv":{"y":[],"aN":["y"],"t":[],"ar":[]},"rL":{"ay":["bX?"],"an":["bX?"],"ay.T":"bX?","an.T":"bX?"},"GG":{"Y":[],"f":[]},"Wv":{"X":["Bx"]},"VZ":{"b7":[],"as":[],"f":[]},"Ws":{"X":["GG"]},"Ia":{"aj":[],"f":[]},"Ib":{"ac":[]},"Wt":{"fL":["qJ"],"fL.T":"qJ"},"Ma":{"qJ":[]},"vg":{"aj":[],"f":[]},"GT":{"Y":[],"f":[]},"tk":{"b5":[],"aQ":[],"f":[]},"oZ":{"Y":[],"f":[]},"FJ":{"Y":[],"f":[]},"vi":{"aj":[],"f":[]},"WT":{"X":["GT"]},"Gm":{"aj":[],"f":[]},"OC":{"aj":[],"f":[]},"WP":{"aj":[],"f":[]},"UF":{"aj":[],"f":[]},"WQ":{"aj":[],"f":[]},"WR":{"aj":[],"f":[]},"xF":{"Y":[],"f":[]},"Zg":{"X":["oZ"]},"FK":{"X":["FJ"]},"aVo":{"cQ":[],"b5":[],"aQ":[],"f":[]},"OX":{"Y":[],"f":[]},"Xc":{"aj":[],"f":[]},"Xa":{"bx":[]},"aVv":{"cQ":[],"b5":[],"aQ":[],"f":[]},"hf":{"Ol":["1"],"Cc":["1"],"ee":["1"],"eh":["1"],"cJ":["1"]},"p8":{"Y":[],"f":[]},"p9":{"Y":[],"f":[]},"xn":{"Y":[],"f":[]},"a0w":{"aj":[],"f":[]},"a0u":{"X":["p8"]},"a0v":{"X":["p9"]},"Ve":{"aj":[],"f":[]},"SM":{"kz":[]},"LX":{"kz":[]},"H3":{"X":["xn<1>"]},"Jb":{"aS":[],"ac":[]},"Jc":{"aS":[],"ac":[]},"H9":{"Y":[],"f":[]},"Ha":{"Y":[],"f":[]},"Pk":{"kz":[]},"XV":{"X":["H9"],"de":[]},"XW":{"X":["Ha"]},"im":{"Y":[],"f":[]},"Pr":{"Y":[],"f":[]},"wH":{"ac":[]},"Fn":{"X":["im"]},"Yo":{"ac":[]},"Cy":{"Y":[],"f":[]},"Yp":{"X":["im"]},"aW4":{"cQ":[],"b5":[],"aQ":[],"f":[]},"Cw":{"Y":[],"f":[]},"Cx":{"X":["Cw"]},"Da":{"Y":[],"f":[]},"HP":{"b5":[],"aQ":[],"f":[]},"G4":{"Y":[],"f":[]},"D8":{"Y":[],"f":[]},"vN":{"X":["D8"]},"aZd":{"Y":[],"f":[]},"Db":{"X":["Da"]},"Z5":{"aS":[],"ac":[]},"Fc":{"ak":[],"lh":[]},"Tq":{"aj":[],"f":[]},"G5":{"X":["G4"]},"UJ":{"b9":["h5"],"b9.T":"h5"},"Z6":{"b5":[],"aQ":[],"f":[]},"xe":{"Y":[],"f":[]},"QG":{"aj":[],"f":[]},"Wu":{"kC":["xe"],"X":["xe"]},"aWH":{"cQ":[],"b5":[],"aQ":[],"f":[]},"DN":{"Y":[],"f":[]},"jJ":{"Y":[],"f":[]},"If":{"X":["DN"]},"Ig":{"X":["jJ"]},"RS":{"Y":[],"f":[]},"a_f":{"bx":[]},"Eh":{"cQ":[],"b5":[],"aQ":[],"f":[]},"Ek":{"Y":[],"f":[]},"Iz":{"X":["Ek"]},"Em":{"lx":["l"],"Y":[],"f":[],"lx.T":"l"},"xL":{"hL":["l"],"X":["lx"]},"Om":{"jO":[]},"a_k":{"ac":[]},"aXC":{"cQ":[],"b5":[],"aQ":[],"f":[]},"IE":{"Y":[],"f":[]},"S2":{"aj":[],"f":[]},"a_q":{"X":["IE"]},"a_r":{"b7":[],"as":[],"f":[]},"a_s":{"y":[],"aN":["y"],"t":[],"ar":[]},"a_n":{"ev":[],"as":[],"f":[]},"a_o":{"b_":[],"aB":[],"L":[]},"YM":{"y":[],"a9":["y","fy"],"t":[],"ar":[],"a9.1":"fy","a9.0":"y"},"a_m":{"aj":[],"f":[]},"a_p":{"aj":[],"f":[]},"S4":{"aj":[],"f":[]},"rW":{"aj":[],"f":[]},"Go":{"cQ":[],"b5":[],"aQ":[],"f":[]},"rX":{"ay":["iM"],"an":["iM"],"ay.T":"iM","an.T":"iM"},"ys":{"Y":[],"f":[]},"T4":{"X":["ys"]},"EH":{"Y":[],"f":[]},"ov":{"X":["EH"]},"Vc":{"b7":[],"as":[],"f":[]},"Yx":{"y":[],"aN":["y"],"t":[],"kv":[],"ar":[]},"a_C":{"aj":[],"f":[]},"aXW":{"cQ":[],"b5":[],"aQ":[],"f":[]},"dS":{"h1":[]},"ff":{"h1":[]},"GK":{"h1":[]},"a_4":{"ac":[]},"dm":{"bX":[]},"iR":{"bX":[]},"L3":{"bX":[]},"dT":{"bX":[]},"eX":{"bX":[]},"cX":{"iq":[]},"dU":{"ok":[]},"dH":{"dm":[],"bX":[]},"n5":{"u":[]},"az":{"cY":[]},"di":{"cY":[]},"oR":{"cY":[]},"Pc":{"hd":[]},"cz":{"dm":[],"bX":[]},"kD":{"dm":[],"bX":[]},"xy":{"eS":["cz"],"dm":[],"bX":[],"eS.T":"cz"},"xz":{"eS":["kD"],"dm":[],"bX":[],"eS.T":"kD"},"eS":{"dm":[],"bX":[]},"i1":{"iq":[]},"fP":{"dm":[],"bX":[]},"fB":{"dm":[],"bX":[]},"fC":{"dm":[],"bX":[]},"wC":{"hr":[]},"a0c":{"hr":[]},"ou":{"hd":[],"kv":[],"ar":[]},"CC":{"y":[],"aN":["y"],"t":[],"ar":[]},"Fb":{"aS":[],"ac":[]},"Uy":{"lQ":[]},"YV":{"rt":[],"aN":["y"],"t":[],"ar":[]},"ak":{"lh":[]},"n0":{"lB":[]},"y":{"t":[],"ar":[]},"pw":{"hM":["y"]},"fg":{"cx":[]},"zo":{"fg":[],"dA":["1"],"cx":[]},"iz":{"fg":[],"dA":["y"],"cx":[]},"CG":{"d9":["y","iz"],"y":[],"a9":["y","iz"],"t":[],"ar":[],"a9.1":"iz","d9.1":"iz","a9.0":"y"},"M0":{"ac":[]},"CH":{"y":[],"aN":["y"],"t":[],"ar":[]},"o6":{"aS":[],"ac":[]},"rp":{"y":[],"a9":["y","iK"],"t":[],"ar":[],"a9.1":"iK","a9.0":"y"},"Yv":{"y":[],"t":[],"ar":[]},"IA":{"o6":[],"aS":[],"ac":[]},"Fi":{"o6":[],"aS":[],"ac":[]},"wJ":{"o6":[],"aS":[],"ac":[]},"CJ":{"y":[],"t":[],"ar":[]},"h7":{"fg":[],"dA":["y"],"cx":[]},"CK":{"d9":["y","h7"],"y":[],"a9":["y","h7"],"t":[],"ar":[],"a9.1":"h7","d9.1":"h7","a9.0":"y"},"CM":{"y":[],"t":[],"ar":[]},"f_":{"es":[]},"ze":{"f_":[],"es":[]},"zc":{"f_":[],"es":[]},"wp":{"jw":[],"f_":[],"es":[]},"OT":{"jw":[],"f_":[],"es":[]},"Bj":{"f_":[],"es":[]},"yz":{"f_":[],"es":[]},"Pb":{"es":[]},"jw":{"f_":[],"es":[]},"zd":{"f_":[],"es":[]},"AU":{"jw":[],"f_":[],"es":[]},"yG":{"f_":[],"es":[]},"Aw":{"f_":[],"es":[]},"Ov":{"aS":[],"ac":[]},"t":{"ar":[]},"dA":{"cx":[]},"fX":{"dE":[]},"Gl":{"dE":[]},"lR":{"dp":[]},"iK":{"dA":["y"],"cx":[]},"l_":{"ez":[],"aS":[],"ac":[]},"o7":{"y":[],"a9":["y","iK"],"t":[],"ar":[],"a9.1":"iK","a9.0":"y"},"ol":{"ac":[]},"Cz":{"y":[],"aN":["y"],"t":[],"ar":[]},"m0":{"y":[],"aN":["y"],"t":[],"ar":[]},"PZ":{"y":[],"aN":["y"],"t":[],"ar":[]},"CT":{"y":[],"aN":["y"],"t":[],"ar":[]},"CF":{"y":[],"aN":["y"],"t":[],"ar":[]},"PT":{"y":[],"aN":["y"],"t":[],"ar":[]},"CO":{"y":[],"aN":["y"],"t":[],"ar":[]},"PV":{"y":[],"aN":["y"],"t":[],"ar":[]},"PG":{"y":[],"aN":["y"],"t":[],"ar":[]},"PH":{"y":[],"aN":["y"],"t":[],"ar":[]},"zy":{"ac":[]},"xt":{"y":[],"aN":["y"],"t":[],"ar":[]},"PL":{"y":[],"aN":["y"],"t":[],"ar":[]},"PK":{"y":[],"aN":["y"],"t":[],"ar":[]},"PJ":{"y":[],"aN":["y"],"t":[],"ar":[]},"HB":{"y":[],"aN":["y"],"t":[],"ar":[]},"PW":{"y":[],"aN":["y"],"t":[],"ar":[]},"PX":{"y":[],"aN":["y"],"t":[],"ar":[]},"PM":{"y":[],"aN":["y"],"t":[],"ar":[]},"Q6":{"y":[],"aN":["y"],"t":[],"ar":[]},"PP":{"y":[],"aN":["y"],"t":[],"ar":[]},"PY":{"y":[],"aN":["y"],"t":[],"ar":[]},"CP":{"y":[],"aN":["y"],"t":[],"kv":[],"ar":[]},"Q0":{"y":[],"aN":["y"],"t":[],"ar":[]},"CL":{"y":[],"aN":["y"],"t":[],"ar":[]},"CQ":{"y":[],"aN":["y"],"t":[],"ar":[]},"Q1":{"y":[],"aN":["y"],"t":[],"ar":[]},"PI":{"y":[],"aN":["y"],"t":[],"ar":[]},"PU":{"y":[],"aN":["y"],"t":[],"ar":[]},"PN":{"y":[],"aN":["y"],"t":[],"ar":[]},"PQ":{"y":[],"aN":["y"],"t":[],"ar":[]},"PS":{"y":[],"aN":["y"],"t":[],"ar":[]},"PO":{"y":[],"aN":["y"],"t":[],"ar":[]},"CD":{"y":[],"aN":["y"],"t":[],"ar":[]},"ez":{"ac":[]},"rq":{"y":[],"aN":["y"],"t":[],"ar":[]},"CR":{"y":[],"aN":["y"],"t":[],"ar":[]},"PF":{"y":[],"aN":["y"],"t":[],"ar":[]},"CS":{"y":[],"aN":["y"],"t":[],"ar":[]},"CI":{"y":[],"aN":["y"],"t":[],"ar":[]},"m6":{"lh":[]},"vZ":{"lB":[]},"m8":{"m9":[],"dA":["d1"],"cx":[]},"ma":{"oo":[],"dA":["d1"],"cx":[]},"d1":{"t":[],"ar":[]},"Rf":{"hM":["d1"]},"m9":{"cx":[]},"oo":{"cx":[]},"vY":{"fO":[],"m9":[],"dA":["y"],"jm":[],"cx":[]},"Q3":{"rr":[],"d1":[],"a9":["y","fO"],"t":[],"ar":[],"a9.1":"fO","a9.0":"y"},"Q4":{"rr":[],"d1":[],"a9":["y","fO"],"t":[],"ar":[],"a9.1":"fO","a9.0":"y"},"jm":{"cx":[]},"fO":{"m9":[],"dA":["y"],"jm":[],"cx":[]},"rr":{"d1":[],"a9":["y","fO"],"t":[],"ar":[]},"CU":{"d1":[],"aN":["d1"],"t":[],"ar":[]},"Q5":{"d1":[],"aN":["d1"],"t":[],"ar":[]},"dN":{"fg":[],"dA":["y"],"cx":[]},"vG":{"d9":["y","dN"],"y":[],"a9":["y","dN"],"t":[],"ar":[],"a9.1":"dN","d9.1":"dN","a9.0":"y"},"CN":{"d9":["y","dN"],"y":[],"a9":["y","dN"],"t":[],"ar":[],"a9.1":"dN","d9.1":"dN","a9.0":"y"},"mU":{"ay":["h1?"],"an":["h1?"],"ay.T":"h1?","an.T":"h1?"},"rt":{"aN":["y"],"t":[],"ar":[]},"vI":{"iV":["1"],"y":[],"a9":["d1","1"],"CA":[],"t":[],"ar":[]},"CW":{"iV":["ma"],"y":[],"a9":["d1","ma"],"CA":[],"t":[],"ar":[],"a9.1":"ma","iV.0":"ma","a9.0":"d1"},"Q2":{"iV":["m8"],"y":[],"a9":["d1","m8"],"CA":[],"t":[],"ar":[],"a9.1":"m8","iV.0":"m8","a9.0":"d1"},"i8":{"aS":[],"ac":[]},"kR":{"fg":[],"dA":["y"],"cx":[]},"CX":{"d9":["y","kR"],"y":[],"a9":["y","kR"],"t":[],"ar":[],"a9.1":"kR","d9.1":"kR","a9.0":"y"},"rY":{"av":["~"]},"Ez":{"bL":[]},"mn":{"c5":["mn"]},"jX":{"c5":["jX"]},"mF":{"c5":["mF"]},"vT":{"c5":["vT"]},"Zq":{"dJ":[]},"Dy":{"aS":[],"ac":[]},"r0":{"c5":["vT"]},"lG":{"iv":[]},"qw":{"iv":[]},"uV":{"iv":[]},"Cj":{"bL":[]},"BJ":{"bL":[]},"kI":{"dt":[]},"UB":{"dt":[]},"a_5":{"BL":[]},"o2":{"m_":[]},"vB":{"m_":[]},"D0":{"aS":[],"ac":[]},"u0":{"hr":[]},"uX":{"hr":[]},"nR":{"hr":[]},"pW":{"hr":[]},"RU":{"or":[]},"RT":{"or":[]},"RV":{"or":[]},"wh":{"or":[]},"MR":{"rT":[]},"Xl":{"Eo":[]},"Nq":{"fp":[]},"Nr":{"fp":[]},"Nu":{"fp":[]},"Nw":{"fp":[]},"Nt":{"fp":[]},"Nv":{"fp":[]},"Ns":{"fp":[]},"la":{"Y":[],"f":[]},"F2":{"b5":[],"aQ":[],"f":[]},"q9":{"Y":[],"f":[]},"aEi":{"b0":[]},"aT0":{"b0":[]},"aT_":{"b0":[]},"tI":{"b0":[]},"tW":{"b0":[]},"h5":{"b0":[]},"lX":{"b0":[]},"cG":{"b9":["1"]},"d4":{"b9":["1"],"b9.T":"1"},"F3":{"X":["la"]},"G8":{"X":["q9"]},"SA":{"b9":["aEi"],"b9.T":"aEi"},"zQ":{"b9":["b0"],"b9.T":"b0"},"Mm":{"b9":["h5"]},"Pq":{"cG":["lX"],"b9":["lX"],"b9.T":"lX","cG.T":"lX"},"H0":{"cG":["1"],"xm":["1"],"b9":["1"],"b9.T":"1","cG.T":"1"},"H1":{"cG":["1"],"xm":["1"],"b9":["1"],"b9.T":"1","cG.T":"1"},"Fy":{"b9":["1"],"b9.T":"1"},"yr":{"Y":[],"f":[]},"T3":{"X":["yr"]},"T2":{"b7":[],"as":[],"f":[]},"yy":{"b7":[],"as":[],"f":[]},"EZ":{"Y":[],"f":[]},"J3":{"X":["EZ"],"de":[]},"KB":{"de":[]},"yF":{"Y":[],"f":[]},"F8":{"X":["yF"]},"Bb":{"aS":[],"ac":[]},"X2":{"aj":[],"f":[]},"is":{"b5":[],"aQ":[],"f":[]},"ua":{"b7":[],"as":[],"f":[]},"u9":{"b7":[],"as":[],"f":[]},"mg":{"b7":[],"as":[],"f":[]},"ug":{"b7":[],"as":[],"f":[]},"bo":{"b7":[],"as":[],"f":[]},"eH":{"b7":[],"as":[],"f":[]},"hE":{"b7":[],"as":[],"f":[]},"Bh":{"ef":["iz"],"aQ":[],"f":[],"ef.T":"iz"},"na":{"ev":[],"as":[],"f":[]},"mc":{"ev":[],"as":[],"f":[]},"re":{"ef":["dN"],"aQ":[],"f":[],"ef.T":"dN"},"vL":{"ev":[],"as":[],"f":[]},"aSE":{"b5":[],"aQ":[],"f":[]},"nq":{"b7":[],"as":[],"f":[]},"oh":{"b7":[],"as":[],"f":[]},"a03":{"fJ":[],"aB":[],"L":[]},"a04":{"b5":[],"aQ":[],"f":[]},"OR":{"b7":[],"as":[],"f":[]},"KR":{"b7":[],"as":[],"f":[]},"zz":{"b7":[],"as":[],"f":[]},"Lz":{"b7":[],"as":[],"f":[]},"P9":{"b7":[],"as":[],"f":[]},"Pa":{"b7":[],"as":[],"f":[]},"LJ":{"b7":[],"as":[],"f":[]},"N3":{"b7":[],"as":[],"f":[]},"lj":{"b7":[],"as":[],"f":[]},"eB":{"b7":[],"as":[],"f":[]},"eZ":{"b7":[],"as":[],"f":[]},"O6":{"b7":[],"as":[],"f":[]},"C7":{"b7":[],"as":[],"f":[]},"X9":{"b_":[],"aB":[],"L":[]},"NN":{"b7":[],"as":[],"f":[]},"Rh":{"b7":[],"as":[],"f":[]},"Zn":{"b7":[],"as":[],"f":[]},"NI":{"aj":[],"f":[]},"Hf":{"ev":[],"as":[],"f":[]},"VX":{"b_":[],"aB":[],"L":[]},"Pj":{"aj":[],"f":[]},"MU":{"ev":[],"as":[],"f":[]},"zi":{"ev":[],"as":[],"f":[]},"q6":{"ef":["h7"],"aQ":[],"f":[],"ef.T":"h7"},"Ae":{"ef":["h7"],"aQ":[],"f":[],"ef.T":"h7"},"SL":{"ev":[],"as":[],"f":[]},"Qe":{"ev":[],"as":[],"f":[]},"Px":{"as":[],"f":[]},"Ob":{"b7":[],"as":[],"f":[]},"BM":{"b7":[],"as":[],"f":[]},"jC":{"b7":[],"as":[],"f":[]},"Km":{"b7":[],"as":[],"f":[]},"Or":{"b7":[],"as":[],"f":[]},"L_":{"b7":[],"as":[],"f":[]},"ng":{"b7":[],"as":[],"f":[]},"NH":{"b7":[],"as":[],"f":[]},"nE":{"aj":[],"f":[]},"e8":{"aj":[],"f":[]},"n7":{"b7":[],"as":[],"f":[]},"Hp":{"y":[],"aN":["y"],"t":[],"ar":[]},"D4":{"f":[]},"D2":{"aB":[],"L":[]},"SK":{"kE":[],"ar":[]},"ka":{"aj":[],"f":[]},"M4":{"b7":[],"as":[],"f":[]},"Uu":{"ac":[]},"nb":{"cQ":[],"b5":[],"aQ":[],"f":[]},"X3":{"aj":[],"f":[]},"Mc":{"aj":[],"f":[]},"zN":{"Y":[],"f":[]},"FP":{"X":["zN"]},"zO":{"aj":[],"f":[]},"nd":{"Y":[],"f":[]},"FW":{"X":["nd"]},"uy":{"Y":[],"f":[]},"ne":{"X":["uy"],"de":[]},"HT":{"Y":[],"f":[]},"mB":{"wA":[],"hd":[]},"TP":{"b7":[],"as":[],"f":[]},"Ys":{"y":[],"aN":["y"],"t":[],"ar":[]},"f9":{"ct":["cA"],"aS":[],"ac":[]},"FX":{"ev":[],"as":[],"f":[]},"Z7":{"X":["HT"],"aJV":[]},"TN":{"hr":[]},"mr":{"cG":["1"],"b9":["1"],"b9.T":"1","cG.T":"1"},"IU":{"cG":["1"],"b9":["1"],"b9.T":"1","cG.T":"1"},"IV":{"cG":["1"],"b9":["1"],"b9.T":"1","cG.T":"1"},"J0":{"d4":["1"],"b9":["1"],"b9.T":"1"},"Zf":{"cG":["m4"],"b9":["m4"],"b9.T":"m4","cG.T":"m4"},"U4":{"cG":["kb"],"b9":["kb"],"b9.T":"kb","cG.T":"kb"},"Xi":{"cG":["lO"],"b9":["lO"],"b9.T":"lO","cG.T":"lO"},"a0l":{"ct":["uc"],"aS":[],"ac":[],"de":[]},"V2":{"cG":["kf"],"b9":["kf"],"b9.T":"kf","cG.T":"kf"},"V3":{"cG":["kg"],"b9":["kg"],"b9.T":"kg","cG.T":"kg"},"d_":{"aS":[],"ac":[]},"lw":{"d_":[],"aS":[],"ac":[]},"Te":{"de":[]},"At":{"aS":[],"ac":[]},"q7":{"Y":[],"f":[]},"G6":{"kp":["d_"],"b5":[],"aQ":[],"f":[],"kp.T":"d_"},"wX":{"X":["q7"]},"Au":{"Y":[],"f":[]},"Vw":{"Y":[],"f":[]},"Vv":{"X":["q7"]},"MK":{"aj":[],"f":[]},"Av":{"Y":[],"f":[]},"aDS":{"b0":[]},"qW":{"b0":[]},"rg":{"b0":[]},"aCV":{"b0":[]},"G7":{"d_":[],"aS":[],"ac":[]},"Vx":{"X":["Av"]},"Q9":{"b9":["aDS"],"b9.T":"aDS"},"OG":{"b9":["qW"],"b9.T":"qW"},"Pm":{"b9":["rg"],"b9.T":"rg"},"zL":{"b9":["aCV"],"b9.T":"aCV"},"AA":{"Y":[],"f":[]},"AB":{"X":["AA"]},"G9":{"b5":[],"aQ":[],"f":[]},"lx":{"Y":[],"f":[]},"hL":{"X":["lx<1>"]},"jg":{"fK":[]},"bu":{"jg":["1"],"fK":[]},"Y":{"f":[]},"as":{"f":[]},"aB":{"L":[]},"iI":{"aB":[],"L":[]},"nT":{"aB":[],"L":[]},"fJ":{"aB":[],"L":[]},"qi":{"jg":["1"],"fK":[]},"aj":{"f":[]},"aQ":{"f":[]},"ef":{"aQ":[],"f":[]},"b5":{"aQ":[],"f":[]},"O3":{"as":[],"f":[]},"b7":{"as":[],"f":[]},"ev":{"as":[],"f":[]},"MJ":{"as":[],"f":[]},"zj":{"aB":[],"L":[]},"w5":{"aB":[],"L":[]},"Cp":{"aB":[],"L":[]},"b_":{"aB":[],"L":[]},"O2":{"b_":[],"aB":[],"L":[]},"DE":{"b_":[],"aB":[],"L":[]},"hW":{"b_":[],"aB":[],"L":[]},"Q7":{"b_":[],"aB":[],"L":[]},"X1":{"aB":[],"L":[]},"X4":{"f":[]},"iB":{"Y":[],"f":[]},"vA":{"X":["iB"]},"cr":{"qh":["1"]},"N7":{"aj":[],"f":[]},"VE":{"b7":[],"as":[],"f":[]},"ql":{"Y":[],"f":[]},"x4":{"X":["ql"]},"AJ":{"qV":[]},"ca":{"aj":[],"f":[]},"qq":{"cQ":[],"b5":[],"aQ":[],"f":[]},"AS":{"Y":[],"f":[]},"Gk":{"X":["AS"],"de":[]},"pv":{"ay":["ak"],"an":["ak"],"ay.T":"ak","an.T":"ak"},"lk":{"ay":["iq"],"an":["iq"],"ay.T":"iq","an.T":"iq"},"ln":{"ay":["cY"],"an":["cY"],"ay.T":"cY","an.T":"cY"},"pu":{"ay":["cF?"],"an":["cF?"],"ay.T":"cF?","an.T":"cF?"},"qP":{"ay":["b6"],"an":["b6"],"ay.T":"b6","an.T":"b6"},"rV":{"ay":["p"],"an":["p"],"ay.T":"p","an.T":"p"},"yk":{"Y":[],"f":[]},"yo":{"Y":[],"f":[]},"yq":{"Y":[],"f":[]},"yn":{"Y":[],"f":[]},"yl":{"Y":[],"f":[]},"yp":{"Y":[],"f":[]},"A0":{"ay":["az"],"an":["az"],"ay.T":"az","an.T":"az"},"NG":{"Y":[],"f":[]},"uM":{"X":["1"]},"tN":{"X":["1"]},"SX":{"X":["yk"]},"T_":{"X":["yo"]},"T1":{"X":["yq"]},"SZ":{"X":["yn"]},"SY":{"X":["yl"]},"T0":{"X":["yp"]},"iu":{"b5":[],"aQ":[],"f":[]},"AX":{"fJ":[],"aB":[],"L":[]},"kp":{"b5":[],"aQ":[],"f":[]},"x7":{"fJ":[],"aB":[],"L":[]},"cQ":{"b5":[],"aQ":[],"f":[]},"mo":{"aj":[],"f":[]},"l9":{"as":[],"f":[]},"x9":{"b_":[],"aB":[],"L":[]},"GA":{"b5":[],"aQ":[],"f":[]},"qE":{"Y":[],"f":[]},"v0":{"aS":[],"ac":[],"de":[]},"a0q":{"fL":["F_"],"fL.T":"F_"},"Me":{"F_":[]},"Wl":{"X":["qE"]},"aIM":{"b5":[],"aQ":[],"f":[]},"PA":{"aj":[],"f":[]},"WW":{"ac":[]},"Wp":{"b7":[],"as":[],"f":[]},"YA":{"y":[],"aN":["y"],"t":[],"ar":[]},"jr":{"iu":["dD"],"b5":[],"aQ":[],"f":[],"iu.T":"dD"},"GJ":{"Y":[],"f":[]},"Wx":{"X":["GJ"],"de":[]},"va":{"aj":[],"f":[]},"wE":{"d8":[],"d7":[]},"Zo":{"b7":[],"as":[],"f":[]},"YF":{"y":[],"aN":["y"],"t":[],"ar":[]},"Kx":{"Y":[],"f":[]},"T8":{"qh":["wE"]},"WG":{"aj":[],"f":[]},"OE":{"aj":[],"f":[]},"aJf":{"jE":[]},"qm":{"b5":[],"aQ":[],"f":[]},"C0":{"Y":[],"f":[]},"jv":{"X":["C0"]},"xi":{"oT":[]},"xh":{"oT":[]},"GU":{"oT":[]},"GV":{"oT":[]},"VH":{"aS":[],"o":["ia"],"ac":[],"o.E":"ia"},"VI":{"e_":["aT>?"],"aS":[],"ac":[]},"dd":{"aQ":[],"f":[]},"GY":{"aB":[],"L":[]},"kW":{"fg":[],"dA":["y"],"cx":[]},"OY":{"ev":[],"as":[],"f":[]},"xw":{"d9":["y","kW"],"y":[],"a9":["y","kW"],"t":[],"ar":[],"a9.1":"kW","d9.1":"kW","a9.0":"y"},"nP":{"ac":[]},"mz":{"Y":[],"f":[]},"H_":{"X":["mz"]},"vm":{"Y":[],"f":[]},"Cb":{"X":["vm"]},"to":{"y":[],"a9":["y","dN"],"t":[],"ar":[],"a9.1":"dN","a9.0":"y"},"Ca":{"Y":[],"f":[]},"oW":{"ix":["oW"],"ix.E":"oW"},"tp":{"b5":[],"aQ":[],"f":[]},"kY":{"y":[],"aN":["y"],"t":[],"ar":[],"ix":["kY"],"ix.E":"kY"},"Hy":{"y":[],"aN":["y"],"t":[],"ar":[]},"xk":{"l9":["+(I,b6,I)"],"as":[],"f":[],"l9.0":"+(I,b6,I)"},"II":{"ev":[],"as":[],"f":[]},"a_x":{"b_":[],"aB":[],"L":[]},"xO":{"dN":[],"fg":[],"dA":["y"],"cx":[]},"Xf":{"X":["Ca"]},"xl":{"as":[],"f":[]},"Xe":{"b_":[],"aB":[],"L":[]},"UA":{"b7":[],"as":[],"f":[]},"Hx":{"eN":["+(I,b6,I)","y"],"y":[],"aN":["y"],"t":[],"ar":[],"eN.0":"+(I,b6,I)"},"AG":{"Y":[],"f":[]},"DZ":{"Y":[],"f":[]},"nQ":{"fU":[]},"Ge":{"X":["AG"]},"Gd":{"aS":[],"ac":[]},"VF":{"ac":[]},"Iw":{"X":["DZ"]},"Iv":{"aS":[],"ac":[]},"aJh":{"e3":["1"],"fK":[]},"vo":{"aj":[],"f":[]},"Cc":{"ee":["1"],"eh":["1"],"cJ":["1"]},"vu":{"b5":[],"aQ":[],"f":[]},"o8":{"Y":[],"f":[]},"t1":{"b5":[],"aQ":[],"f":[]},"D3":{"Y":[],"f":[]},"e_":{"aS":[],"ac":[]},"YU":{"X":["o8"]},"HM":{"X":["D3"]},"bJ":{"e_":["1"],"aS":[],"ac":[]},"i9":{"bJ":["1"],"e_":["1"],"aS":[],"ac":[]},"HK":{"i9":["1"],"bJ":["1"],"e_":["1"],"aS":[],"ac":[]},"D_":{"i9":["1"],"bJ":["1"],"e_":["1"],"aS":[],"ac":[],"bJ.T":"1","i9.T":"1"},"ru":{"i9":["Q"],"bJ":["Q"],"e_":["Q"],"aS":[],"ac":[],"bJ.T":"Q","i9.T":"Q"},"Qc":{"i9":["l?"],"bJ":["l?"],"e_":["l?"],"aS":[],"ac":[],"bJ.T":"l?","i9.T":"l?"},"Qi":{"Y":[],"f":[]},"b3a":{"b63":["av"]},"xA":{"X":["Qi<1>"]},"Z2":{"b5":[],"aQ":[],"f":[]},"YR":{"bJ":["ob?"],"e_":["ob?"],"aS":[],"ac":[],"bJ.T":"ob?"},"GM":{"iu":["oS"],"b5":[],"aQ":[],"f":[],"iu.T":"oS"},"xg":{"Y":[],"f":[]},"my":{"X":["xg<1>"]},"vn":{"cJ":["1"]},"eh":{"cJ":["1"]},"UK":{"b9":["h5"],"b9.T":"h5"},"ee":{"eh":["1"],"cJ":["1"]},"Cm":{"ee":["1"],"eh":["1"],"cJ":["1"]},"vy":{"ee":["1"],"eh":["1"],"cJ":["1"]},"Ql":{"aj":[],"f":[]},"De":{"jj":["1"],"jj.T":"1"},"Df":{"b5":[],"aQ":[],"f":[]},"Dg":{"aS":[],"ac":[]},"I6":{"Y":[],"f":[]},"Z4":{"e3":["fK"],"fK":[],"e3.T":"fK"},"I7":{"X":["I6"]},"fN":{"hS":[],"fU":[]},"rB":{"fN":[],"hS":[],"fU":[]},"kF":{"fN":[],"hS":[],"fU":[]},"jx":{"fN":[],"hS":[],"fU":[]},"iE":{"fN":[],"hS":[],"fU":[]},"Sr":{"fN":[],"hS":[],"fU":[]},"HV":{"b5":[],"aQ":[],"f":[]},"mx":{"ix":["mx"],"ix.E":"mx"},"Di":{"Y":[],"f":[]},"QD":{"X":["Di"]},"m2":{"i8":[],"aS":[],"ac":[]},"rx":{"fU":[]},"Dj":{"m2":[],"i8":[],"aS":[],"ac":[]},"QE":{"aj":[],"f":[]},"L5":{"aj":[],"f":[]},"O9":{"aj":[],"f":[]},"Nb":{"aj":[],"f":[]},"Dk":{"Y":[],"f":[]},"HX":{"b5":[],"aQ":[],"f":[]},"rC":{"X":["Dk"]},"HZ":{"Y":[],"f":[]},"Za":{"X":["HZ"]},"HY":{"aS":[],"ac":[]},"Z9":{"b7":[],"as":[],"f":[]},"HF":{"y":[],"aN":["y"],"t":[],"ar":[]},"YS":{"bJ":["S?"],"e_":["S?"],"aS":[],"ac":[],"bJ.T":"S?"},"ey":{"b0":[]},"Dd":{"cG":["ey"],"b9":["ey"],"b9.T":"ey","cG.T":"ey"},"vC":{"Y":[],"f":[]},"l1":{"hq":[],"d8":[],"d7":[]},"p7":{"i7":[],"hF":[],"d8":[],"d7":[]},"oN":{"hN":[],"hF":[],"d8":[],"d7":[]},"vP":{"aS":[],"ac":[]},"kC":{"X":["1"]},"w6":{"aS":[],"ac":[]},"vc":{"aS":[],"ac":[]},"rE":{"Y":[],"f":[]},"vR":{"b5":[],"aQ":[],"f":[]},"Zk":{"ez":[],"X":["rE"],"ac":[]},"QJ":{"ac":[]},"DB":{"Y":[],"f":[]},"Zu":{"X":["DB"]},"Zv":{"iu":["R"],"b5":[],"aQ":[],"f":[],"iu.T":"R"},"ag":{"vW":[]},"rM":{"Y":[],"f":[]},"DC":{"Y":[],"f":[]},"vX":{"aS":[],"ac":[]},"Id":{"X":["rM"]},"DD":{"aS":[],"ac":[]},"Ic":{"X":["DC"]},"Zy":{"b5":[],"aQ":[],"f":[]},"xC":{"b7":[],"as":[],"f":[]},"R_":{"aj":[],"f":[]},"ZE":{"b_":[],"aB":[],"L":[]},"HH":{"y":[],"aN":["y"],"CA":[],"t":[],"ar":[]},"R2":{"hS":[]},"R3":{"b7":[],"as":[],"f":[]},"YG":{"y":[],"aN":["y"],"t":[],"ar":[]},"Ri":{"as":[],"f":[]},"on":{"as":[],"f":[]},"Rg":{"on":[],"as":[],"f":[]},"Rd":{"on":[],"as":[],"f":[]},"w_":{"b_":[],"aB":[],"L":[]},"Ba":{"ef":["jm"],"aQ":[],"f":[],"ef.T":"jm"},"DL":{"hl":["1","2"],"as":[],"f":[]},"DM":{"b_":[],"aB":[],"L":[]},"DO":{"aS":[],"ac":[]},"Rn":{"b7":[],"as":[],"f":[]},"xx":{"y":[],"aN":["y"],"t":[],"ar":[]},"Rm":{"aS":[],"ac":[]},"FN":{"aS":[],"ac":[]},"Rv":{"aj":[],"f":[]},"DV":{"Y":[],"f":[]},"Is":{"X":["DV"]},"RG":{"aj":[],"f":[]},"E7":{"Y":[],"f":[]},"a_3":{"X":["E7"]},"No":{"hc":[]},"Np":{"hc":[]},"Nz":{"hc":[]},"NB":{"hc":[]},"Ny":{"hc":[]},"NA":{"hc":[]},"Nx":{"hc":[]},"CV":{"y":[],"aN":["y"],"t":[],"ar":[]},"vH":{"y":[],"aN":["y"],"t":[],"ar":[]},"wj":{"b7":[],"as":[],"f":[]},"RO":{"b7":[],"as":[],"f":[]},"UZ":{"d7":[]},"RN":{"b7":[],"as":[],"f":[]},"uq":{"cQ":[],"b5":[],"aQ":[],"f":[]},"aSH":{"cQ":[],"b5":[],"aQ":[],"f":[]},"I3":{"Y":[],"f":[]},"X5":{"aj":[],"f":[]},"bH":{"aj":[],"f":[]},"Zj":{"X":["I3"]},"YY":{"aj":[],"f":[]},"Zi":{"aS":[],"ac":[]},"zR":{"b0":[]},"pT":{"b0":[]},"pV":{"b0":[]},"pU":{"b0":[]},"zK":{"b0":[]},"lp":{"b0":[]},"ls":{"b0":[]},"q4":{"b0":[]},"q0":{"b0":[]},"q1":{"b0":[]},"hI":{"b0":[]},"nh":{"b0":[]},"lt":{"b0":[]},"lr":{"b0":[]},"q3":{"b0":[]},"lq":{"b0":[]},"m3":{"b0":[]},"a7N":{"b0":[]},"m4":{"b0":[]},"kb":{"b0":[]},"lO":{"b0":[]},"o4":{"b0":[]},"jD":{"b0":[]},"oz":{"b0":[]},"iO":{"b0":[]},"ow":{"b0":[]},"kf":{"b0":[]},"kg":{"b0":[]},"Ml":{"b0":[]},"fy":{"fg":[],"dA":["y"],"cx":[]},"p_":{"Y":[],"f":[]},"I4":{"Y":[],"f":[]},"Et":{"Y":[],"f":[]},"I8":{"X":["p_"]},"I5":{"X":["I4"]},"ID":{"X":["Et"]},"zg":{"ct":["uc"],"aS":[],"ac":[],"de":[]},"wn":{"Y":[],"f":[]},"G_":{"b5":[],"aQ":[],"f":[]},"a_z":{"X":["wn"]},"Fw":{"ac":[]},"Sa":{"aj":[],"f":[]},"ED":{"aS":[],"ac":[]},"yt":{"Y":[],"f":[]},"d5":{"b7":[],"as":[],"f":[]},"F5":{"X":["yt"]},"Ra":{"Y":[],"f":[]},"BC":{"Y":[],"f":[]},"Qn":{"Y":[],"f":[]},"Qh":{"Y":[],"f":[]},"R4":{"Y":[],"f":[]},"M5":{"Y":[],"f":[]},"nH":{"Y":[],"f":[]},"Kw":{"Y":[],"f":[]},"ws":{"Y":[],"f":[]},"wt":{"X":["ws<1>"]},"EP":{"ct":["wu"],"aS":[],"ac":[]},"t2":{"Y":[],"f":[]},"xT":{"X":["t2<1>"]},"EU":{"Y":[],"f":[]},"tv":{"b5":[],"aQ":[],"f":[]},"H6":{"b5":[],"aQ":[],"f":[]},"IZ":{"X":["EU"],"de":[]},"PB":{"aj":[],"f":[]},"Hg":{"as":[],"f":[]},"Y8":{"b_":[],"aB":[],"L":[]},"FO":{"jg":["1"],"fK":[]},"EX":{"ev":[],"as":[],"f":[]},"a0i":{"b_":[],"aB":[],"L":[]},"QY":{"ev":[],"as":[],"f":[]},"J_":{"b5":[],"aQ":[],"f":[]},"Sz":{"aj":[],"f":[]},"a0j":{"b7":[],"as":[],"f":[]},"YO":{"y":[],"aN":["y"],"t":[],"ar":[]},"wA":{"hd":[]},"a0m":{"ef":["iK"],"aQ":[],"f":[],"ef.T":"iK"},"Tm":{"b7":[],"as":[],"f":[]},"HE":{"y":[],"aN":["y"],"t":[],"ar":[]},"bY":{"SH":[]},"oC":{"u":[],"bM":["u"]},"T9":{"SH":[]},"tx":{"u":[],"bM":["u"]},"SF":{"dt":[],"bM":["dt"]},"J1":{"dt":[],"bM":["dt"]},"SE":{"aW":[],"bM":["aW?"]},"We":{"bM":["aW?"]},"ib":{"aW":[],"bM":["aW?"]},"SG":{"p":[],"bM":["p"]},"a0o":{"p":[],"bM":["p"]},"Gw":{"bM":["1?"]},"bh":{"bM":["1"]},"fV":{"bM":["1"]},"b2":{"bM":["1"]},"SI":{"ct":["bg"],"aS":[],"ac":[]},"F0":{"Y":[],"f":[]},"a0r":{"X":["F0"]},"uw":{"jd":[]},"nj":{"jd":[]},"OI":{"a3C":[]},"Nm":{"aHT":[]},"AN":{"bL":[]},"Q8":{"bL":[]},"KV":{"a4n":[]},"yU":{"a4n":[]},"tX":{"cs":["O"],"cs.T":"O"},"pI":{"bL":[]},"RF":{"DY":[]},"z_":{"bN":["l","l","1"],"aT":["l","1"],"bN.V":"1","bN.K":"l","bN.C":"l"},"Nn":{"aj":[],"f":[]},"fh":{"aS":[],"ac":[]},"fz":{"aS":[],"ac":[]},"pA":{"Y":[],"f":[]},"Fj":{"X":["pA"]},"pF":{"Y":[],"f":[]},"Fl":{"X":["pF"]},"pG":{"Y":[],"f":[]},"TK":{"X":["pG"]},"AL":{"Y":[],"f":[]},"Gj":{"X":["AL"]},"qF":{"Y":[],"f":[]},"GB":{"X":["qF"]},"Bu":{"Y":[],"f":[]},"GC":{"X":["Bu"]},"vl":{"aj":[],"f":[]},"r_":{"Y":[],"f":[]},"GZ":{"X":["r_"]},"r4":{"Y":[],"f":[]},"H5":{"X":["r4"]},"lY":{"aj":[],"f":[]},"o0":{"Y":[],"f":[]},"Hb":{"X":["o0"]},"Cn":{"Y":[],"f":[]},"tm":{"Y":[],"f":[]},"Hc":{"X":["Cn"]},"XY":{"X":["tm"]},"rm":{"Y":[],"f":[]},"Hn":{"X":["rm"]},"rD":{"Y":[],"f":[]},"I1":{"X":["rD"]},"Bp":{"aj":[],"f":[]},"o_":{"aj":[],"f":[]},"Qd":{"aj":[],"f":[]},"wO":{"oJ":[]},"wQ":{"oJ":[]},"wP":{"oJ":[]},"Oe":{"bL":[]},"Qo":{"dV":[]},"Qp":{"dV":[]},"Qq":{"dV":[]},"Qr":{"dV":[]},"Qs":{"dV":[]},"Qt":{"dV":[]},"Qu":{"dV":[]},"Qv":{"dV":[]},"Qw":{"dV":[]},"oV":{"aB":[],"L":[]},"jI":{"f":[]},"vj":{"aj":[],"jI":[],"f":[]},"WX":{"aB":[],"L":[]},"oU":{"aj":[],"f":[]},"jH":{"aj":[],"jI":[],"f":[]},"DF":{"aB":[],"L":[]},"QZ":{"jH":[],"aj":[],"jI":[],"f":[]},"ni":{"Y":[],"f":[]},"G2":{"X":["ni"]},"C5":{"Y":[],"f":[]},"X8":{"X":["C5"]},"P7":{"bL":[]},"z0":{"uN":["1"],"jH":[],"aj":[],"jI":[],"f":[]},"zl":{"jH":[],"aj":[],"jI":[],"f":[]},"zn":{"jH":[],"aj":[],"jI":[],"f":[]},"Bn":{"uN":["1"],"jH":[],"aj":[],"jI":[],"f":[]},"NJ":{"L":[]},"fb":{"b5":[],"aQ":[],"f":[]},"uN":{"jH":[],"aj":[],"jI":[],"f":[]},"Gn":{"aB":[],"L":[]},"tc":{"fJ":[],"aB":[],"NJ":["1"],"L":[]},"Fz":{"jU":["1","wL<1>"],"jU.D":"wL<1>"},"Ox":{"vj":[],"aj":[],"jI":[],"f":[]},"Pt":{"bL":[]},"Ps":{"bL":[]},"zF":{"cs":["1"],"cs.T":"1"},"yJ":{"w9":["1"],"cs":["1"],"cs.T":"1"},"oF":{"cs":["1"],"cs.T":"1"},"w9":{"cs":["1"]},"xJ":{"cs":["1"],"cs.T":"1"},"MO":{"jL":[],"c5":["jL"]},"wW":{"mb":[],"c5":["Rs"]},"jL":{"c5":["jL"]},"Rr":{"jL":[],"c5":["jL"]},"Rs":{"c5":["Rs"]},"Rt":{"c5":["Rs"]},"Ru":{"bL":[]},"w2":{"eI":[],"bL":[]},"w3":{"c5":["Rs"]},"mb":{"c5":["Rs"]},"RI":{"eI":[],"bL":[]},"SD":{"aj":[],"f":[]},"aCY":{"uC":[],"zM":[],"fn":[]},"aD7":{"uC":[],"Aj":[],"fn":[]},"uC":{"fn":[]},"aUT":{"Y":[],"f":[]},"aTc":{"Y":[],"f":[]},"aTd":{"X":["aTc"]},"aZi":{"b5":[],"aQ":[],"f":[]},"aYi":{"b5":[],"aQ":[],"f":[]},"aD1":{"fU":[]}}')) +A.aZq(v.typeUniverse,JSON.parse('{"O1":1,"oB":1,"R8":1,"R9":1,"Mz":1,"N_":1,"An":1,"Sm":1,"wv":1,"Jg":2,"zk":1,"eK":1,"dl":1,"vf":1,"Oy":1,"mE":1,"DX":1,"RE":2,"a_0":1,"Tk":1,"ST":1,"ZR":1,"UC":1,"mq":1,"xp":1,"p1":1,"a0a":2,"Bv":2,"Il":2,"Ik":2,"Im":1,"In":1,"IT":2,"Lh":1,"LI":2,"xI":1,"c5":1,"tw":1,"Af":1,"M9":1,"yx":1,"ui":1,"Ft":1,"Fu":1,"Fv":1,"Ce":1,"Jd":1,"FA":1,"ct":1,"ke":1,"zH":1,"Ch":2,"GH":1,"xV":1,"zo":1,"Fx":1,"O0":1,"dA":1,"eO":1,"CB":1,"zy":1,"xt":1,"HB":1,"vI":1,"Iy":1,"Jw":1,"Jx":1,"mX":1,"Mp":1,"wZ":1,"uM":1,"tN":1,"x6":1,"Se":1,"Md":1,"aJh":1,"e_":1,"iD":1,"HK":1,"xW":1,"aVV":1,"vn":1,"Oc":1,"Cm":1,"vy":1,"ti":1,"xs":1,"DL":2,"Ie":2,"f6":1,"dC":1,"Fw":1,"EE":1,"IO":1,"Sk":1,"Bn":1,"NJ":1,"Gn":1,"UD":1,"a0t":1,"xE":1,"xD":1,"AC":2,"WL":1,"V9":1}')) +var u={S:"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\u03f6\x00\u0404\u03f4 \u03f4\u03f6\u01f6\u01f6\u03f6\u03fc\u01f4\u03ff\u03ff\u0584\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u05d4\u01f4\x00\u01f4\x00\u0504\u05c4\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u0400\x00\u0400\u0200\u03f7\u0200\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u0200\u0200\u0200\u03f7\x00",t:"\x01\x01)==\xb5\x8d\x15)QeyQQ\xc9===\xf1\xf0\x00\x01)==\xb5\x8d\x15)QeyQQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QeyQQ\xc9===\xf1\xf0\x01\x01(<<\xb4\x8c\x15(PdxPP\xc8<<<\xf1\xf0\x01\x01)==\xb5\x8d\x15(PeyQQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(PdyPQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QdxPP\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QeyQQ\xc9\u011a==\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xdc\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\x01\x01)==\u0156\x8d\x15(QeyQQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QeyQQ\xc9\u012e\u012e\u0142\xf1\xf0\x01\x01)==\xa1\x8d\x15(QeyQQ\xc9===\xf1\xf0\x00\x00(<<\xb4\x8c\x14(PdxPP\xc8<<<\xf0\xf0\x01\x01)==\xb5\x8d\x15)QeyQQ\xc9===\xf0\xf0??)\u0118=\xb5\x8c?)QeyQQ\xc9=\u0118\u0118?\xf0??)==\xb5\x8d?)QeyQQ\xc9\u012c\u012c\u0140?\xf0??)==\xb5\x8d?)QeyQQ\xc8\u0140\u0140\u0140?\xf0\xdc\xdc\xdc\xdc\xdc\u0168\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\x00\xa1\xa1\xa1\xa1\xa1\u0154\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\x00",e:"\x10\x10\b\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x10\x10\x10\x10\x10\x02\x02\x02\x04\x04\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x02\x02\x02\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x10\x04\x10\x04\x04\x02\x10\x10\x10\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x06\x02\x02\x02\x02\x06\x02\x06\x02\x02\x02\x02\x06\x06\x06\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x10\x10\x10\x02\x02\x04\x04\x02\x02\x04\x04\x11\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x0e\x0e\x02\x0e\x10\x04\x04\x04\x04\x02\x10\x10\x10\x02\x10\x10\x10\x11\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x0e\x0e\x0e\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x04\x10\x10\x10\x10\x10\x10\x02\x10\x10\x04\x04\x10\x10\x02\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x10\x10\x10\x02\x10\x10\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x04\x10\x02\x02\x02\x02\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x04\x11\x04\x04\x02\x10\x10\x10\x10\x10\x10\x10\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\f\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\f\r\r\r\r\r\r\r\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\x02\x02\x02\x02\x04\x10\x10\x10\x10\x02\x04\x04\x04\x02\x04\x04\x04\x11\b\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x01\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x10\x10\x10\x10\x10\x10\x01\x01\x01\x01\x01\x01\x01\x01\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x06\x06\x06\x02\x02\x02\x02\x02\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\x02\x02\x02\x04\x04\x10\x04\x04\x10\x04\x04\x02\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x04\x04\x10\x10\x10\x10\x02\x02\x04\x04\x02\x02\x04\x04\x11\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x02\x02\x02\x0e\x0e\x02\x0e\n\n\n\n\n\n\n\x02\x02\x02\x02\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\x10\x10\b\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x04\x10\x10\x10\x10\x10\x10\x10\x04\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x02\x02\x02\x10\x02\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\b\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x04\x04\x02\x10\x10\x02\x04\x04\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x04\x04\x04\x02\x04\x04\x02\x02\x10\x10\x10\x10\b\x04\b\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x02\x02\x10\x10\x04\x04\x04\x04\x10\x02\x02\x02\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x07\x01\x01\x00\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x04\x04\x10\x10\x04\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\b\x02\x10\x10\x10\x10\x02\x10\x10\x10\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x04\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x10\x02\x02\x04\x10\x10\x02\x02\x02\x02\x02\x02\x10\x04\x10\x10\x04\x04\x04\x10\x04\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x03\x0f\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x04\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x01\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x10\x10\x10\x02\x02\x10\x10\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x10\x10\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x02\x10\x02\x04\x04\x04\x04\x04\x04\x04\x10\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x04\x10\x10\x10\x10\x04\x04\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x04\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x02\b\b\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x10\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\b\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x10\x10\x02\x10\x04\x04\x02\x02\x02\x04\x04\x04\x02\x04\x04\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x04\x04\x10\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x10\x04\x10\x04\x04\x04\x04\x02\x02\x04\x04\x02\x02\x04\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x10\x10\x02\x10\x02\x02\x10\x02\x10\x10\x10\x04\x02\x04\x04\x10\x10\x10\b\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x10\x10\x02\x02\x02\x02\x10\x10\x02\x02\x10\x10\x10\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x10\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x04\x10\x10\x04\x04\x04\x02\x02\x02\x02\x04\x04\x10\x04\x04\x04\x04\x04\x04\x10\x10\x10\x02\x02\x02\x02\x10\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x10\x04\x10\x02\x04\x04\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x04\x04\x10\x10\x02\x02\b\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x10\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x02\x02\x04\x04\x04\x04\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x10\x02\x02\x10\x10\x10\x10\x04\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x10\x10\x04\x10\x04\x04\x10\x04\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x04\x04\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x10\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\b\b\b\b\b\b\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x01\x02\x02\x02\x10\x10\x02\x10\x10\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x06\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x04\b\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\b\b\b\b\b\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\n\x02\x02\x02\n\n\n\n\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x02\x06\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x10\x02\x10\x02\x02\x02\x02\x04\x04\x04\x04\x04\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x04\x10\x10\x10\x10\x10\x02\x10\x10\x04\x02\x04\x04\x11\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x10\x04\x04\x02\x02\x02\x02\x02\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02",U:"\x15\x01)))\xb5\x8d\x01=Qeyey\xc9)))\xf1\xf0\x15\x01)))\xb5\x8d\x00=Qeyey\xc9)))\xf1\xf0\x15\x01)((\xb5\x8d\x01=Qeyey\xc9(((\xf1\xf0\x15\x01(((\xb4\x8c\x01"),vH:s("aRn"),od:s("b9"),gj:s("aRq"),pC:s("h1"),ZU:s("po"),so:s("bp"),o:s("bp"),Bs:s("bp"),ph:s("yy"),qH:s("tP"),s1:s("yC"),vp:s("ps"),S7:s("yE"),M1:s("KN"),Al:s("mZ"),UL:s("yJ"),m_:s("cF"),k:s("ak"),q:s("fg"),pI:s("k7"),V4:s("db"),Pt:s("a3C"),LE:s("il"),wY:s("d4"),nz:s("d4"),OX:s("d4
"),vr:s("d4"),fN:s("d4"),Tx:s("d4"),fn:s("d4"),j5:s("d4"),_n:s("d4"),ZQ:s("d4"),Am:s("aRO"),yQ:s("en"),BW:s("fh"),WG:s("z_"),d0:s("eY?,cJ<@>>"),oo:s("n2"),ES:s("aRT"),Lh:s("z4"),XY:s("n3"),PO:s("z7"),m6:s("z9"),S3:s("za"),BQ:s("u7"),nR:s("zb"),Hz:s("fG"),hP:s("dI"),G:s("u"),IC:s("fj"),b8:s("c5<@>"),Ss:s("dz"),id:s("n8"),qO:s("pM"),li:s("bT"),eL:s("bT"),fF:s("fH"),Nq:s("lh"),ve:s("zn"),vn:s("zp"),pU:s("a9>"),pz:s("LP"),Hy:s("pP"),ho:s("zs"),H5:s("aSs"),HY:s("fl"),ip:s("zz"),I7:s("up"),Hw:s("iq"),l4:s("aSE"),Uf:s("nb"),XP:s("aSH"),yS:s("uq"),Je:s("b3A"),EX:s("dJ"),jh:s("aSP"),I:s("is"),ra:s("b3B"),Db:s("zM"),Tg:s("eq"),m3:s("aCY"),xm:s("h5"),Jj:s("aSX"),YH:s("Mr"),uL:s("hG"),zk:s("ux"),Tu:s("aZ"),ML:s("dV"),A0:s("cY"),Zi:s("kf"),Rz:s("kg"),Ee:s("a8<@>"),h:s("aB"),dq:s("aTp"),GB:s("b3F"),lz:s("lo"),Lt:s("cm"),VI:s("bL"),IX:s("f0"),bh:s("q0"),oB:s("q1"),_w:s("lp"),HH:s("lq"),OO:s("hI"),cP:s("lr"),b5:s("q3"),P9:s("ls"),eI:s("q4"),Ie:s("Ai"),rq:s("Aj"),x8:s("hJ"),cL:s("jd"),nZ:s("aHT"),vi:s("uC"),hS:s("aD7"),US:s("h7"),N8:s("Ao"),s4:s("a8_"),OE:s("a80"),Kw:s("a8c"),mx:s("d_"),l5:s("lw"),vb:s("uE"),ia:s("qb"),VW:s("qc"),FK:s("fo"),jT:s("Az"),c4:s("kl"),gx:s("hL<@>"),bE:s("eI"),Uy:s("a8G"),_8:s("lz"),Z9:s("av"),Ev:s("av()"),L0:s("av<@>"),T8:s("av"),lC:s("av"),uz:s("av<~>"),Fp:s("d0"),pl:s("d0"),Lu:s("dW"),MA:s("dW"),El:s("dW"),Ih:s("dW"),g:s("uG"),cD:s("d8"),uA:s("cr"),C1:s("cr"),Uv:s("cr"),jn:s("cr"),YC:s("cr"),hg:s("cr"),Qm:s("cr"),UN:s("cr"),ok:s("cr"),lh:s("cr"),Bk:s("cr"),Pw:s("cr"),xR:s("qh"),yi:s("jg>"),TX:s("qi"),bT:s("qi>"),rQ:s("b3U"),GF:s("er"),PD:s("er<~()>"),t6:s("er<~(nm)>"),bq:s("ha"),G7:s("Nf>"),rA:s("ql"),mS:s("qm"),AL:s("hM"),YX:s("lB"),zE:s("ar"),Lk:s("aIa"),g5:s("AP"),Oh:s("qq"),lu:s("aId"),oA:s("hO"),dW:s("hP"),SG:s("ns"),Bc:s("nt"),ri:s("AW"),IS:s("fJ"),og:s("cQ"),WB:s("b5"),U1:s("hQ"),lA:s("aUu"),JZ:s("aaK"),XO:s("aaL"),pT:s("aaM"),gD:s("nx"),J:s("b0"),nQ:s("ny"),Ya:s("uP"),JY:s("o<@>"),lY:s("D>"),QP:s("D"),NS:s("D"),tM:s("D"),sq:s("D"),gb:s("D"),Cs:s("D"),y6:s("D"),vN:s("D"),AT:s("D"),rg:s("D"),s8:s("D"),t_:s("D"),EV:s("D"),KV:s("D"),ZD:s("D"),D:s("D"),vl:s("D"),Up:s("D"),lX:s("D"),Di:s("D"),RN:s("D"),XS:s("D"),bp:s("D"),z8:s("D"),Wq:s("D"),uf:s("D"),no:s("D"),wQ:s("D>"),Rh:s("D>"),mo:s("D>"),iQ:s("D"),DU:s("D"),om:s("D>"),kr:s("D"),XZ:s("D"),Fa:s("D"),fJ:s("D"),VB:s("D"),VO:s("D"),O_:s("D"),O:s("D"),K0:s("D"),CE:s("D"),k5:s("D"),k_:s("D"),HU:s("D
"),xj:s("D"),s9:s("D"),Y4:s("D"),_f:s("D"),ER:s("D"),X_:s("D>"),fQ:s("D>"),zg:s("D>"),Eo:s("D"),H8:s("D"),ss:s("D"),a9:s("D>"),IO:s("D>"),en:s("D"),H7:s("D>"),n4:s("D>"),Xr:s("D"),YE:s("D"),tc:s("D"),Qg:s("D"),jl:s("D"),EI:s("D"),n3:s("D"),wi:s("D"),g8:s("D>"),OM:s("D>"),H9:s("D"),RR:s("D"),tZ:s("D"),D9:s("D"),RW:s("D"),_V:s("D"),L7:s("D<+representation,targetSize(DI,I)>"),Co:s("D<+(l,ER)>"),lN:s("D<+data,event,timeStamp(O,W,aZ)>"),Nt:s("D<+domSize,representation,targetSize(I,DI,I)>"),AO:s("D"),Pc:s("D"),Ik:s("D"),xT:s("D"),TT:s("D"),Ry:s("D"),QT:s("D"),y8:s("D"),ZP:s("D"),D1:s("D"),u1:s("D"),JO:s("D"),q1:s("D"),QF:s("D"),o4:s("D"),Qo:s("D"),Ay:s("D"),kO:s("D"),N_:s("D"),Ds:s("D"),Gl:s("D>"),s:s("D"),oU:s("D"),OI:s("D"),bt:s("D"),Lx:s("D"),sD:s("D"),VS:s("D"),zs:s("D"),fm:s("D"),Ne:s("D"),FO:s("D>>"),x0:s("D>"),LX:s("D"),IH:s("D"),p:s("D"),GA:s("D"),Na:s("D"),SW:s("D"),TV:s("D"),r_:s("D"),Kj:s("D"),_Y:s("D"),mz:s("D"),Kx:s("D"),zj:s("D"),IR:s("D"),m4:s("D"),jE:s("D"),qi:s("D"),z_:s("D"),uD:s("D"),M6:s("D"),s6:s("D"),lb:s("D"),bd:s("D"),YK:s("D"),Z4:s("D"),cR:s("D"),NM:s("D"),HZ:s("D"),n:s("D"),ee:s("D<@>"),t:s("D"),L:s("D"),ef:s("D"),iG:s("D"),ny:s("D?>"),Fi:s("D"),_m:s("D"),Z:s("D"),a0:s("D"),Zt:s("D()>"),iL:s("D()>"),xf:s("D"),sA:s("D"),qj:s("D<~()>"),SM:s("D<~(R,cS?)>"),e:s("D<~(b9)>"),F:s("D<~(ig)>"),LY:s("D<~(j3)>"),j1:s("D<~(aZ)>"),s2:s("D<~(qg)>"),Jh:s("D<~(O)>"),hh:s("D<~(oi)>"),bz:s("uT"),m:s("W"),lT:s("fr"),dC:s("bE<@>"),Hf:s("fs"),Cl:s("jm"),D2:s("fK"),XU:s("kr(iv)"),SQ:s("uW"),Dj:s("qx"),jk:s("bu"),NE:s("bu"),am:s("bu"),ku:s("bu"),hA:s("bu"),A:s("bu>"),Ts:s("bu>"),af:s("bu"),E9:s("O_"),Cc:s("abh"),gN:s("qy"),rf:s("Bj"),hz:s("iw"),C5:s("aUG"),JB:s("ix<@>"),y4:s("qB"),oM:s("qB"),NJ:s("aUK"),a6:s("O"),Az:s("O"),Lc:s("O"),qC:s("O"),UX:s("O"),zq:s("O"),gm:s("O"),jQ:s("O"),Xw:s("O"),I1:s("O"),lD:s("O"),V1:s("O"),yp:s("O"),JF:s("O"),Ho:s("O"),j:s("O<@>"),Dn:s("O"),I_:s("ac"),da:s("qD"),T:s("h"),bS:s("aIM"),tO:s("b1"),mT:s("b1"),UH:s("b1"),DC:s("b1"),q9:s("b1"),sw:s("b1>"),qE:s("b1>"),Dx:s("qH<@,@>"),bU:s("aT"),nf:s("aT"),GU:s("aT"),a:s("aT"),_P:s("aT"),e3:s("aT"),f:s("aT<@,@>"),xE:s("aT"),pE:s("aT"),rr:s("aT<~(bl),b6?>"),C9:s("f4"),Gf:s("ae"),rB:s("ae"),qn:s("ae"),gn:s("ae"),Tr:s("ae"),iB:s("aUU"),C:s("qJ"),i1:s("qK"),xV:s("b6"),w:s("jr"),Fu:s("BK<@>"),xS:s("hV"),Pb:s("dt"),ZA:s("BL"),_h:s("kv"),Wz:s("iz"),Lb:s("ev"),Es:s("qS"),LZ:s("qU"),A3:s("hX"),u9:s("lK"),XD:s("aVo"),uK:s("jv"),SK:s("vj"),_A:s("ew"),K3:s("dd"),Jc:s("dd"),Tm:s("dd"),w3:s("dd"),eq:s("dd"),ji:s("dd"),WA:s("dd"),Te:s("lL"),P:s("bk"),K:s("R"),xA:s("R(m)"),_a:s("R(m{params:R?})"),yw:s("ba"),c:s("ba<~(b9)>"),R:s("ba<~(ig)>"),Xx:s("ba<~(oi)>"),pw:s("qZ"),v:s("j"),gY:s("jw"),_5:s("nO"),L_:s("lN"),BR:s("aVv"),Ms:s("nP"),Mf:s("vo"),sd:s("aJf"),Q2:s("P2"),Fw:s("ef"),IL:s("ef"),ke:s("r5"),Ud:s("du"),v3:s("q"),sT:s("lP"),sv:s("lQ"),qa:s("b4V"),ge:s("r6"),Ko:s("r7"),E:s("kA"),pY:s("lT"),qL:s("bl"),GG:s("b54"),XA:s("lU"),n2:s("r8"),WQ:s("r9"),w5:s("lV"),DB:s("ra"),PB:s("rb"),Mj:s("rc"),xb:s("rd"),ks:s("ft"),oN:s("lW"),f9:s("aVV"),bb:s("vu"),U_:s("nZ"),C0:s("aW4"),yH:s("aQ"),ax:s("Pu"),jU:s("vC"),pK:s("b5a"),Rp:s("+()"),BZ:s("+(l,fo?)"),Yr:s("+(te,S)"),mi:s("+(R?,R?)"),YT:s("x"),Gb:s("iC<@>"),nP:s("Cy"),Qz:s("PD"),CZ:s("Cz"),NW:s("CA"),x:s("y"),vz:s("ro"),DW:s("rp"),f1:s("CL"),I9:s("t"),F5:s("as"),GM:s("aN"),Wx:s("m0"),nl:s("d1"),kl:s("rr"),Cn:s("vH"),dw:s("CV"),Ju:s("rt"),E1:s("CW"),UM:s("jD"),Wd:s("vJ"),dZ:s("D_"),yb:s("e_"),z4:s("dB"),k2:s("D1"),hF:s("cc"),MV:s("cc"),o_:s("cc"),ad:s("D4"),oj:s("vK"),pO:s("cJ<@>(L,R?)"),nY:s("D9"),BL:s("D9"),Np:s("vN"),JE:s("De"),Cy:s("Df"),gt:s("m2"),Lm:s("rC"),sm:s("vP"),NF:s("aWH"),qd:s("b5j"),NU:s("b5k"),hI:s("b5l"),x9:s("ez"),mb:s("Dq"),Wu:s("vR"),iN:s("og"),_S:s("cL"),VP:s("dM"),bu:s("cM"),UF:s("rK"),g3:s("dp"),HS:s("oj"),n5:s("vU<@>"),hi:s("bg"),Ro:s("bg<@>"),uy:s("aK_"),RY:s("bX"),jH:s("ol"),cZ:s("vV"),Vz:s("vW"),yE:s("b5s"),Mp:s("b7"),k7:s("jH"),FW:s("I"),Vr:s("R7"),Ws:s("DJ"),r:s("m6"),h5:s("vY"),Xp:s("m9"),Gt:s("w_"),U:s("fO"),M0:s("on"),jB:s("oo"),y3:s("jL"),Bb:s("mb"),B:s("dN"),Km:s("cS"),MF:s("iI"),d1:s("Y"),Iz:s("aj"),kj:s("DY"),N:s("l"),Vc:s("aXi"),NC:s("kH"),Oz:s("iJ"),FB:s("dw"),u4:s("dw"),re:s("dw>"),az:s("dw"),E8:s("dw"),d9:s("dw"),hr:s("dw"),b6:s("dw<~>"),ZC:s("kI"),ev:s("kJ"),if:s("Eh"),mr:s("Em"),iy:s("Er"),ot:s("iK"),qY:s("jO"),bZ:s("aXC"),AS:s("ou"),em:s("p"),nH:s("rW"),we:s("iM"),ZM:s("rX"),ZF:s("kN>"),zo:s("kN<@>"),qe:s("S9"),V:s("fy"),U2:s("aXW"),zW:s("cB"),Ns:s("mh"),Ni:s("ay"),Y:s("ay"),u:s("i5"),ns:s("mi"),w7:s("anf"),rd:s("wr"),Po:s("ang"),H3:s("oy"),pm:s("ws"),Pj:s("iN"),kk:s("kP"),lQ:s("t1"),G5:s("mk"),N2:s("ww<@>"),gU:s("iO"),Xu:s("Sn"),nj:s("fz"),xs:s("e3>"),xc:s("e3"),A9:s("e3"),j3:s("t2"),GY:s("jS"),JH:s("b5T"),Dg:s("EX"),rS:s("fU"),X3:s("mm"),v6:s("EY"),Vu:s("t3"),Hd:s("aY"),SF:s("cd"),FI:s("cd"),t5:s("cd"),Hx:s("cd>"),ZK:s("cd"),Ri:s("cd"),ow:s("cd"),b7:s("cd"),kE:s("cd<~(R,cS?)>"),r7:s("cd<~(hO)>"),Pi:s("kQ"),Zw:s("kQ"),l7:s("f"),a7:s("wA"),l:s("bY"),JI:s("fV"),GC:s("fV"),ZX:s("fV"),y2:s("b2"),De:s("b2"),mD:s("b2"),dy:s("b2"),W7:s("b2"),uE:s("b2

"),XR:s("b2"),rc:s("b2"),RP:s("b2"),Ag:s("SH"),QN:s("f(L,bg,f?)"),X5:s("de"),Uh:s("F_"),Qy:s("kR"),L1:s("F2"),JX:s("oE"),jx:s("kS"),Tv:s("kS"),Iy:s("bB"),fO:s("bB"),gI:s("bB"),zh:s("bB<@>"),yB:s("bB"),It:s("bB"),EZ:s("bB"),Q:s("bB<~>"),zb:s("iP>"),BY:s("aYi"),ZW:s("wG"),B6:s("Fh"),bY:s("FI"),TC:s("t6"),uC:s("eR"),dA:s("mr"),Fb:s("mr"),Uz:s("mr"),Q8:s("FO>"),UJ:s("UI"),rM:s("t7"),s5:s("wU"),l3:s("G_"),Eh:s("G6"),fk:s("wY"),Jp:s("G9"),h1:s("x0"),cN:s("au"),dH:s("au"),aP:s("au"),tq:s("au"),LR:s("au<@>"),wJ:s("au"),gg:s("au"),ET:s("au"),X6:s("au"),W:s("au<~>"),cK:s("x1"),Qu:s("mw"),U3:s("x4"),UR:s("fA"),R9:s("oM"),Fy:s("oO"),Nr:s("Go"),cA:s("jW"),Sx:s("mx"),pt:s("xb"),Gk:s("GA"),PJ:s("xc"),Fe:s("GM"),xg:s("WJ"),pA:s("tj>"),kY:s("tk"),Tp:s("oT"),Fn:s("oU"),ai:s("oV"),pi:s("kW"),Vl:s("oW"),KJ:s("mz"),eU:s("xl"),sZ:s("H4"),Sc:s("Xj"),Li:s("H6"),c_:s("Hf"),bR:s("Hg"),h7:s("kX"),zP:s("e5"),rj:s("Hp"),l0:s("tn"),Lj:s("kY"),zd:s("Hv"),SN:s("Hy"),ju:s("fX"),Eg:s("xw"),xL:s("xx"),im:s("to"),pR:s("tp"),Ez:s("ia"),d:s("HP"),yd:s("HV"),jF:s("HX"),vC:s("dE"),kS:s("ZA"),S8:s("Iu"),mm:s("l0"),bm:s("jZ"),dQ:s("jZ"),HE:s("xK"),S0:s("xL"),f2:s("II"),i9:s("xO"),tH:s("aZi"),Wp:s("IV"),_l:s("tv"),ps:s("J_"),px:s("J0"),GD:s("bh"),mN:s("bh"),tR:s("bh

"),Dm:s("bh"),N5:s("bh"),jY:s("bh"),b:s("bh"),uc:s("bh"),B_:s("bh"),HA:s("bh"),DH:s("a0p"),y:s("Q"),i:s("S"),z:s("@"),C_:s("@(R)"),Hg:s("@(R,cS)"),S:s("m"),VA:s("mU?"),Q6:s("k2?"),tX:s("aGE?"),m2:s("yG?"),Vx:s("dT?"),sa:s("eX?"),eJ:s("pu?"),oI:s("aW?"),YY:s("pv?"),CD:s("db?"),Cq:s("il?"),L5:s("aGY?"),JG:s("zc?"),cW:s("aGZ?"),eG:s("zd?"),e4:s("aH_?"),EM:s("ze?"),VC:s("ub?"),_:s("u?"),YJ:s("fj?"),xG:s("lk?"),V2:s("is?"),y9:s("eq?"),pc:s("cY?"),Om:s("ln?"),Dv:s("aB?"),e8:s("uA?"),Zx:s("nj?"),pk:s("d_?"),RC:s("Aw?"),U5:s("fo?"),uZ:s("av?"),_I:s("qm?"),GK:s("hN?"),lF:s("cP?"),C6:s("aIe?"),Pr:s("nu?"),Ef:s("hQ?"),NX:s("W?"),kc:s("O<@>?"),wh:s("O?"),oC:s("h?"),qA:s("jo?"),nA:s("aT?"),Xy:s("aT<@,@>?"),J1:s("aT?"),iD:s("b6?"),ka:s("qP?"),WV:s("dt?"),X:s("R?"),Ff:s("aJa?"),dJ:s("jw?"),Zr:s("aJc?"),KX:s("dm?"),uR:s("jz?"),xO:s("nT?"),Qv:s("y?"),xP:s("y?(y)"),CA:s("rp?"),p2:s("b_?"),ym:s("m0?"),IT:s("d1?"),_N:s("rC?"),LQ:s("cM?"),wW:s("bg?"),TZ:s("rL?"),pg:s("i1?"),tW:s("I?"),MR:s("fO?"),lE:s("iI?"),ob:s("l?"),f3:s("hq?"),p8:s("p?"),Dh:s("rV?"),qf:s("aEe?"),zV:s("wp?"),ir:s("ay?"),nc:s("oy?"),op:s("Sq?"),Wn:s("i7?"),Xk:s("fA?"),Ej:s("oV?"),av:s("H8?"),Kp:s("kY?"),tC:s("Iy<@>?"),X7:s("Q?"),PM:s("S?"),bo:s("m?"),R7:s("ce?"),Nw:s("~()?"),Ci:s("ce"),H:s("~"),M:s("~()"),CF:s("~(R,cS?)"),zv:s("~(aZ)"),Su:s("~(nm)"),xt:s("~(O)"),mX:s("~(R)"),hK:s("~(R,cS)"),Ld:s("~(bl)"),iS:s("~(m_)"),HT:s("~(R?)")}})();(function constants(){var s=hunkHelpers.makeConstList +B.Iy=J.uQ.prototype +B.b=J.D.prototype +B.e0=J.B5.prototype +B.f=J.uS.prototype +B.IM=J.uT.prototype +B.d=J.nC.prototype +B.c=J.lF.prototype +B.IN=J.fr.prototype +B.IP=J.i.prototype +B.Nb=A.qU.prototype +B.ax=A.BQ.prototype +B.Nc=A.BR.prototype +B.vG=A.BS.prototype +B.bR=A.BT.prototype +B.Nd=A.BW.prototype +B.ls=A.BX.prototype +B.O=A.lK.prototype +B.zp=J.Pd.prototype +B.mq=J.kP.prototype +B.dy=new A.tF(0,"nothing") +B.jn=new A.tF(1,"requestedFocus") +B.BC=new A.tF(2,"receivedDomFocus") +B.BD=new A.tF(3,"receivedDomBlur") +B.a_w=new A.a2v(0,"unknown") +B.BE=new A.ff(0,1) +B.BF=new A.ff(0,-1) +B.mU=new A.ff(1,0) +B.jo=new A.ff(-1,0) +B.bA=new A.ff(-1,-1) +B.a_=new A.dS(0,0) +B.mV=new A.dS(0,1) +B.jp=new A.dS(0,-1) +B.mW=new A.dS(1,0) +B.BG=new A.dS(1,1) +B.mX=new A.dS(-1,0) +B.BH=new A.dS(-1,1) +B.dz=new A.dS(-1,-1) +B.mY=new A.Ku(null) +B.jq=new A.Ky(0,"normal") +B.jr=new A.Ky(1,"preserve") +B.eA=new A.Kz(0,"forward") +B.fU=new A.Kz(1,"reverse") +B.Q=new A.ig(0,"dismissed") +B.bB=new A.ig(1,"forward") +B.b9=new A.ig(2,"reverse") +B.a2=new A.ig(3,"completed") +B.BK=new A.k2(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.e=new A.a4L(0,"sRGB") +B.a7=new A.u(1,0.5450980392156862,0.43529411764705883,0.2784313725490196,B.e) +B.k=new A.u(1,1,1,1,B.e) +B.RQ=new A.eB(null,null,null,null) +B.BL=new A.tP(null,B.a7,B.k,0,B.RQ,null) +B.js=new A.yC(0,"exit") +B.mZ=new A.yC(1,"cancel") +B.cT=new A.j3(0,"detached") +B.cz=new A.j3(1,"resumed") +B.fV=new A.j3(2,"inactive") +B.fW=new A.j3(3,"hidden") +B.jt=new A.j3(4,"paused") +B.BM=new A.KG(!1,127) +B.BN=new A.KH(127) +B.ju=new A.yD(0,"polite") +B.BO=new A.KI(0,"polite") +B.jv=new A.yD(1,"assertive") +B.n_=new A.KI(1,"assertive") +B.ci=s([],t.s) +B.j=new A.Eg(1,"downstream") +B.en=new A.fT(-1,-1,B.j,!1,-1,-1) +B.bg=new A.c4(-1,-1) +B.bH=new A.cA("",B.en,B.bg) +B.n0=new A.tQ(!1,"",B.ci,B.bH,null) +B.jw=new A.tR(0,"disabled") +B.n1=new A.tR(1,"always") +B.BP=new A.tR(2,"onUserInteraction") +B.jx=new A.tR(3,"onUnfocus") +B.aR=new A.tS(0,"up") +B.bU=new A.tS(1,"right") +B.aC=new A.tS(2,"down") +B.ba=new A.tS(3,"left") +B.b1=new A.KO(0,"horizontal") +B.af=new A.KO(1,"vertical") +B.Az=new A.rO(0,"backButton") +B.BQ=new A.KQ(null) +B.Zv=new A.atd(0,"standard") +B.BR=new A.KP(B.Az,null,null,B.BQ,null,null,null,null,null,null) +B.BS=new A.yH(null,null,null,null,null,null,null,null) +B.cX=new A.aaP() +B.BT=new A.mZ("flutter/keyevent",B.cX,t.Al) +B.jC=new A.alR() +B.BU=new A.mZ("flutter/lifecycle",B.jC,A.aD("mZ")) +B.BV=new A.mZ("flutter/system",B.cX,t.Al) +B.aS=new A.alz() +B.dA=new A.mZ("flutter/accessibility",B.aS,t.Al) +B.n2=new A.k3(0,0) +B.BW=new A.k3(1,1) +B.BX=new A.yL(12,"plus") +B.BY=new A.yL(13,"modulate") +B.cA=new A.yL(3,"srcOver") +B.dB=new A.L0(0,"normal") +B.ei=new A.aG(8,8) +B.n3=new A.cF(B.ei,B.ei,B.ei,B.ei) +B.ik=new A.aG(40,40) +B.C_=new A.cF(B.ik,B.ik,B.ik,B.ik) +B.ii=new A.aG(16,16) +B.a_x=new A.cF(B.ii,B.ii,B.ii,B.ii) +B.il=new A.aG(60,50) +B.C0=new A.cF(B.il,B.il,B.il,B.il) +B.di=new A.aG(4,4) +B.C=new A.aG(0,0) +B.n4=new A.cF(B.di,B.di,B.C,B.C) +B.ij=new A.aG(22,22) +B.C1=new A.cF(B.ij,B.ij,B.ij,B.ij) +B.eB=new A.cF(B.di,B.di,B.di,B.di) +B.ac=new A.cF(B.C,B.C,B.C,B.C) +B.im=new A.aG(7,7) +B.C6=new A.cF(B.im,B.im,B.im,B.im) +B.y=new A.u(0,0,0,0,B.e) +B.v=new A.L2(1,"solid") +B.C7=new A.aW(B.y,0,B.v,-1) +B.l=new A.u(1,0,0,0,B.e) +B.aD=new A.L2(0,"none") +B.q=new A.aW(B.l,0,B.aD,-1) +B.bC=new A.aW(B.l,1,B.v,-1) +B.C8=new A.aW(B.y,2,B.v,-1) +B.n5=new A.dT(B.q,B.q,B.q,B.q) +B.C9=new A.yO(null,null,null,null,null,null,null) +B.Ca=new A.yP(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Cb=new A.tU(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.PY=new A.QA(0,"normal") +B.lz=new A.Pw(null) +B.Cc=new A.yR(B.PY,B.lz) +B.zz=new A.QA(1,"fast") +B.Cd=new A.yR(B.zz,B.lz) +B.n6=new A.ak(48,1/0,48,1/0) +B.n7=new A.ak(0,640,0,1/0) +B.Ce=new A.ak(280,1/0,0,1/0) +B.jy=new A.ak(16,1/0,16,1/0) +B.n8=new A.ak(36,1/0,36,1/0) +B.jz=new A.ak(1/0,1/0,1/0,1/0) +B.nQ=new A.u(1,1,0.9215686274509803,0.9333333333333333,B.e) +B.En=new A.u(1,1,0.803921568627451,0.8235294117647058,B.e) +B.Ea=new A.u(1,0.9372549019607843,0.6039215686274509,0.6039215686274509,B.e) +B.nV=new A.u(1,0.8980392156862745,0.45098039215686275,0.45098039215686275,B.e) +B.Fx=new A.u(1,0.9372549019607843,0.3254901960784314,0.3137254901960784,B.e) +B.Fn=new A.u(1,0.9568627450980393,0.2627450980392157,0.21176470588235294,B.e) +B.ET=new A.u(1,0.8980392156862745,0.2235294117647059,0.20784313725490197,B.e) +B.h6=new A.u(1,0.8274509803921568,0.1843137254901961,0.1843137254901961,B.e) +B.F_=new A.u(1,0.7764705882352941,0.1568627450980392,0.1568627450980392,B.e) +B.F9=new A.u(1,0.7176470588235294,0.10980392156862745,0.10980392156862745,B.e) +B.MO=new A.d0([50,B.nQ,100,B.En,200,B.Ea,300,B.nV,400,B.Fx,500,B.Fn,600,B.ET,700,B.h6,800,B.F_,900,B.F9],t.pl) +B.aV=new A.jq(B.MO,1,0.9568627450980393,0.2627450980392157,0.21176470588235294,B.e) +B.eC=new A.L6(1,"circle") +B.jA=new A.cX(B.aV,null,null,null,null,null,B.eC) +B.cU=new A.a3n(2,"cover") +B.fX=new A.yT(0,"tight") +B.n9=new A.yT(1,"max") +B.na=new A.yT(5,"strut") +B.aq=new A.L6(0,"rectangle") +B.cV=new A.L7(0,"tight") +B.Ci=new A.L7(1,"max") +B.am=new A.L8(0,"dark") +B.ag=new A.L8(1,"light") +B.cB=new A.yV(0,"blink") +B.bq=new A.yV(1,"webkit") +B.cW=new A.yV(2,"firefox") +B.Cj=new A.yW(null,null,null,null,null,null,null,null,null) +B.Ck=new A.a3y(0,"normal") +B.Dq=new A.G1(A.aD("G1>")) +B.Cl=new A.tX(B.Dq) +B.nb=new A.nw(A.aNl(),A.aD("nw")) +B.Cm=new A.nw(A.aNl(),A.aD("nw")) +B.Cn=new A.a2w() +B.bL=new A.KF() +B.Cp=new A.KU() +B.fY=new A.a35() +B.nc=new A.a3t() +B.Cq=new A.Lp() +B.Cr=new A.Lu() +B.Cs=new A.a4D() +B.fZ=new A.LX() +B.Ct=new A.a5p() +B.ne=new A.M9() +B.a_y=new A.M7() +B.Cu=new A.M8() +B.Cv=new A.Ma() +B.a_z=new A.Md() +B.Cw=new A.Me() +B.p=new A.zR() +B.Cx=new A.a63() +B.Cy=new A.a7c() +B.nh=new A.hH(A.aD("hH")) +B.ng=new A.hH(A.aD("hH")) +B.eD=new A.Mz() +B.Cz=new A.MC() +B.aM=new A.MC() +B.CA=new A.a7F() +B.ni=new A.MP() +B.CB=new A.MP() +B.nj=new A.MW() +B.a_A=new A.N9() +B.CC=new A.a9e() +B.CD=new A.Ne() +B.CE=new A.No() +B.CF=new A.Np() +B.CG=new A.Nq() +B.CH=new A.Nr() +B.CI=new A.Ns() +B.CJ=new A.Nu() +B.CK=new A.Nw() +B.CL=new A.Nx() +B.CM=new A.Ny() +B.CN=new A.Nz() +B.CO=new A.NA() +B.CP=new A.NB() +B.a6=new A.aaO() +B.bl=new A.aaQ() +B.nk=function getTagFallback(o) { + var s = Object.prototype.toString.call(o); + return s.substring(8, s.length - 1); +} +B.CQ=function() { + var toStringFunction = Object.prototype.toString; + function getTag(o) { + var s = toStringFunction.call(o); + return s.substring(8, s.length - 1); + } + function getUnknownTag(object, tag) { + if (/^HTML[A-Z].*Element$/.test(tag)) { + var name = toStringFunction.call(object); + if (name == "[object Object]") return null; + return "HTMLElement"; + } + } + function getUnknownTagGenericBrowser(object, tag) { + if (object instanceof HTMLElement) return "HTMLElement"; + return getUnknownTag(object, tag); + } + function prototypeForTag(tag) { + if (typeof window == "undefined") return null; + if (typeof window[tag] == "undefined") return null; + var constructor = window[tag]; + if (typeof constructor != "function") return null; + return constructor.prototype; + } + function discriminator(tag) { return null; } + var isBrowser = typeof HTMLElement == "function"; + return { + getTag: getTag, + getUnknownTag: isBrowser ? getUnknownTagGenericBrowser : getUnknownTag, + prototypeForTag: prototypeForTag, + discriminator: discriminator }; +} +B.CV=function(getTagFallback) { + return function(hooks) { + if (typeof navigator != "object") return hooks; + var userAgent = navigator.userAgent; + if (typeof userAgent != "string") return hooks; + if (userAgent.indexOf("DumpRenderTree") >= 0) return hooks; + if (userAgent.indexOf("Chrome") >= 0) { + function confirm(p) { + return typeof window == "object" && window[p] && window[p].name == p; + } + if (confirm("Window") && confirm("HTMLElement")) return hooks; + } + hooks.getTag = getTagFallback; + }; +} +B.CR=function(hooks) { + if (typeof dartExperimentalFixupGetTag != "function") return hooks; + hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); +} +B.CU=function(hooks) { + if (typeof navigator != "object") return hooks; + var userAgent = navigator.userAgent; + if (typeof userAgent != "string") return hooks; + if (userAgent.indexOf("Firefox") == -1) return hooks; + var getTag = hooks.getTag; + var quickMap = { + "BeforeUnloadEvent": "Event", + "DataTransfer": "Clipboard", + "GeoGeolocation": "Geolocation", + "Location": "!Location", + "WorkerMessageEvent": "MessageEvent", + "XMLDocument": "!Document"}; + function getTagFirefox(o) { + var tag = getTag(o); + return quickMap[tag] || tag; + } + hooks.getTag = getTagFirefox; +} +B.CT=function(hooks) { + if (typeof navigator != "object") return hooks; + var userAgent = navigator.userAgent; + if (typeof userAgent != "string") return hooks; + if (userAgent.indexOf("Trident/") == -1) return hooks; + var getTag = hooks.getTag; + var quickMap = { + "BeforeUnloadEvent": "Event", + "DataTransfer": "Clipboard", + "HTMLDDElement": "HTMLElement", + "HTMLDTElement": "HTMLElement", + "HTMLPhraseElement": "HTMLElement", + "Position": "Geoposition" + }; + function getTagIE(o) { + var tag = getTag(o); + var newTag = quickMap[tag]; + if (newTag) return newTag; + if (tag == "Object") { + if (window.DataView && (o instanceof window.DataView)) return "DataView"; + } + return tag; + } + function prototypeForTagIE(tag) { + var constructor = window[tag]; + if (constructor == null) return null; + return constructor.prototype; + } + hooks.getTag = getTagIE; + hooks.prototypeForTag = prototypeForTagIE; +} +B.CS=function(hooks) { + var getTag = hooks.getTag; + var prototypeForTag = hooks.prototypeForTag; + function getTagFixed(o) { + var tag = getTag(o); + if (tag == "Document") { + if (!!o.xmlVersion) return "!Document"; + return "!HTMLDocument"; + } + return tag; + } + function prototypeForTagFixed(tag) { + if (tag == "Document") return null; + return prototypeForTag(tag); + } + hooks.getTag = getTagFixed; + hooks.prototypeForTag = prototypeForTagFixed; +} +B.nl=function(hooks) { return hooks; } + +B.a4=new A.aaW() +B.bM=new A.NX() +B.CW=new A.aeb() +B.CX=new A.BO() +B.CY=new A.afm() +B.CZ=new A.afE() +B.D_=new A.afG() +B.D0=new A.afI() +B.D1=new A.afJ() +B.jB=new A.R() +B.D2=new A.OW() +B.ad=new A.fv(0,"android") +B.L=new A.fv(2,"iOS") +B.aY=new A.fv(4,"macOS") +B.by=new A.fv(5,"windows") +B.bx=new A.fv(3,"linux") +B.D6=new A.Pk() +B.eF=new A.SM() +B.i5=new A.d0([B.ad,B.D6,B.L,B.fZ,B.aY,B.fZ,B.by,B.eF,B.bx,B.eF],A.aD("d0")) +B.D3=new A.P1() +B.ah=new A.iF(4,"keyboard") +B.nn=new A.lO() +B.D4=new A.aga() +B.D5=new A.agw() +B.a_B=new A.agI() +B.D7=new A.agN() +B.np=new A.o4() +B.D9=new A.aje() +B.Da=new A.Qy() +B.Db=new A.ajz() +B.nq=new A.m4() +B.Dc=new A.akQ() +B.a=new A.akR() +B.Dd=new A.R2() +B.c9=new A.aly() +B.dC=new A.alC() +B.cY=new A.ame() +B.De=new A.amn() +B.Df=new A.ams() +B.Dg=new A.amt() +B.Dh=new A.amu() +B.Di=new A.amy() +B.Dj=new A.amA() +B.Dk=new A.amB() +B.Dl=new A.amC() +B.nr=new A.ow() +B.ns=new A.oz() +B.Dm=new A.anm() +B.a5=new A.Ss() +B.bD=new A.St() +B.nt=new A.anp() +B.er=new A.Sx(0,0,0,0) +B.KA=s([],A.aD("D")) +B.a_C=new A.anw() +B.dD=new A.SV() +B.ca=new A.SW() +B.eG=new A.T9() +B.eH=new A.aoP() +B.Dn=new A.Fw() +B.Do=new A.Ue() +B.dE=new A.Us() +B.Dp=new A.aqZ() +B.a_D=new A.FN() +B.bV=new A.UB() +B.h_=new A.arb() +B.R=new A.arl() +B.nu=new A.art() +B.jD=new A.aru() +B.Dr=new A.atz() +B.Ds=new A.atA() +B.U=new A.Gy() +B.Dt=new A.Wf() +B.Du=new A.Wt() +B.bb=new A.av3() +B.jE=new A.avJ() +B.Dv=new A.awp() +B.aE=new A.axC() +B.cb=new A.Z1() +B.Dw=new A.axY() +B.dF=new A.ZX() +B.h0=new A.azK() +B.Dx=new A.azL() +B.Dy=new A.azM() +B.Dz=new A.a0q() +B.jF=new A.a3B(0,"pixel") +B.cD=new A.py(3,"experimentalWebParagraph") +B.DD=new A.pz(null,null,null,null,null,null,null) +B.DE=new A.yZ(null,null,null,null,null,null) +B.nv=new A.pA(null) +B.jG=new A.pF(null) +B.b3=new A.nJ(2,"center") +B.t=new A.Oi(1,"max") +B.w=new A.pQ(2,"center") +B.cx=new A.anu(1,"down") +B.n=new A.u8(0,"none") +B.a_T=new A.ao1(0,"material") +B.nx=new A.im(null,null,null,null,null,null,null,null,null,null) +B.K=new A.eB(null,16,null,null) +B.Xk=new A.bH("Checkout wird geladen...",null,null,null,null,null,null,null,null) +B.K0=s([B.nx,B.K,B.Xk],t.p) +B.FB=new A.zi(B.af,B.b3,B.t,B.w,null,B.cx,null,0,B.K0,null) +B.DF=new A.hE(B.a_,null,null,B.FB,null) +B.B1=new A.bH("Keine Produkte verf\xfcgbar",null,null,null,null,null,null,null,null) +B.DG=new A.hE(B.a_,null,null,B.B1,null) +B.cc=new A.hE(B.a_,null,null,B.nx,null) +B.GU=new A.az(32,32,32,32) +B.On=new A.bo(B.GU,B.B1,null) +B.DH=new A.hE(B.a_,null,null,B.On,null) +B.DI=new A.u1(null,null,null,null,null,null,null,null,null) +B.dG=new A.u2(0,"none") +B.cZ=new A.u2(1,"isTrue") +B.h1=new A.u2(2,"isFalse") +B.dH=new A.u2(3,"mixed") +B.DJ=new A.pG(null) +B.DK=new A.z3(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.nw=new A.dH(0,B.q) +B.BJ=new A.po(B.a7,t.ZU) +B.DM=new A.im(null,null,null,null,null,null,B.BJ,null,null,null) +B.DO=new A.Lw(B.lz) +B.Q8=new A.rF(2,"clear") +B.eI=new A.zb(B.Q8) +B.ny=new A.a4s(1,"intersect") +B.B=new A.u8(1,"hardEdge") +B.bN=new A.u8(2,"antiAlias") +B.cd=new A.u8(3,"antiAliasWithSaveLayer") +B.jH=new A.uc(0,"pasteable") +B.jI=new A.uc(1,"unknown") +B.Sc=new A.rO(1,"closeButton") +B.DP=new A.LF(null) +B.DQ=new A.LE(B.Sc,null,null,B.DP,null,null,null,null,null,null) +B.DR=new A.a4J(1,"matrix") +B.jP=new A.u(1,0.403921568627451,0.3137254901960784,0.6431372549019608,B.e) +B.h9=new A.u(1,0.9176470588235294,0.8666666666666667,1,B.e) +B.hh=new A.u(1,0.30980392156862746,0.21568627450980393,0.5450980392156862,B.e) +B.eL=new A.u(1,0.8156862745098039,0.7372549019607844,1,B.e) +B.nU=new A.u(1,0.12941176470588237,0,0.36470588235294116,B.e) +B.DU=new A.u(1,0.3843137254901961,0.3568627450980392,0.44313725490196076,B.e) +B.hf=new A.u(1,0.9098039215686274,0.8705882352941177,0.9725490196078431,B.e) +B.he=new A.u(1,0.2901960784313726,0.26666666666666666,0.34509803921568627,B.e) +B.jN=new A.u(1,0.8,0.7607843137254902,0.8627450980392157,B.e) +B.nE=new A.u(1,0.11372549019607843,0.09803921568627451,0.16862745098039217,B.e) +B.EA=new A.u(1,0.49019607843137253,0.3215686274509804,0.3764705882352941,B.e) +B.h5=new A.u(1,1,0.8470588235294118,0.8941176470588236,B.e) +B.h4=new A.u(1,0.38823529411764707,0.23137254901960785,0.2823529411764706,B.e) +B.jL=new A.u(1,0.9372549019607843,0.7215686274509804,0.7843137254901961,B.e) +B.nJ=new A.u(1,0.19215686274509805,0.06666666666666667,0.11372549019607843,B.e) +B.EE=new A.u(1,0.7019607843137254,0.14901960784313725,0.11764705882352941,B.e) +B.nG=new A.u(1,0.9764705882352941,0.8705882352941177,0.8627450980392157,B.e) +B.nR=new A.u(1,0.5490196078431373,0.11372549019607843,0.09411764705882353,B.e) +B.jT=new A.u(1,0.996078431372549,0.9686274509803922,1,B.e) +B.jJ=new A.u(1,0.11372549019607843,0.10588235294117647,0.12549019607843137,B.e) +B.EC=new A.u(1,0.9058823529411765,0.8784313725490196,0.9254901960784314,B.e) +B.DW=new A.u(1,0.8705882352941177,0.8470588235294118,0.8823529411764706,B.e) +B.F3=new A.u(1,0.9686274509803922,0.9490196078431372,0.9803921568627451,B.e) +B.Eq=new A.u(1,0.9529411764705882,0.9294117647058824,0.9686274509803922,B.e) +B.Eg=new A.u(1,0.9254901960784314,0.9019607843137255,0.9411764705882353,B.e) +B.ha=new A.u(1,0.9019607843137255,0.8784313725490196,0.9137254901960784,B.e) +B.jM=new A.u(1,0.28627450980392155,0.27058823529411763,0.30980392156862746,B.e) +B.E1=new A.u(1,0.4745098039215686,0.4549019607843137,0.49411764705882355,B.e) +B.nB=new A.u(1,0.792156862745098,0.7686274509803922,0.8156862745098039,B.e) +B.nW=new A.u(1,0.19607843137254902,0.1843137254901961,0.20784313725490197,B.e) +B.Ev=new A.u(1,0.9607843137254902,0.9372549019607843,0.9686274509803922,B.e) +B.DS=new A.ud(B.ag,B.jP,B.k,B.h9,B.hh,B.h9,B.eL,B.nU,B.hh,B.DU,B.k,B.hf,B.he,B.hf,B.jN,B.nE,B.he,B.EA,B.k,B.h5,B.h4,B.h5,B.jL,B.nJ,B.h4,B.EE,B.k,B.nG,B.nR,B.jT,B.jJ,B.EC,B.DW,B.jT,B.k,B.F3,B.Eq,B.Eg,B.ha,B.jM,B.E1,B.nB,B.l,B.l,B.nW,B.Ev,B.eL,B.jP,B.jT,B.jJ) +B.Eo=new A.u(1,0.2196078431372549,0.11764705882352941,0.4470588235294118,B.e) +B.Ew=new A.u(1,0.2,0.17647058823529413,0.2549019607843137,B.e) +B.E3=new A.u(1,0.28627450980392155,0.1450980392156863,0.19607843137254902,B.e) +B.E0=new A.u(1,0.9490196078431372,0.7215686274509804,0.7098039215686275,B.e) +B.F1=new A.u(1,0.3764705882352941,0.0784313725490196,0.06274509803921569,B.e) +B.jR=new A.u(1,0.0784313725490196,0.07058823529411765,0.09411764705882353,B.e) +B.Er=new A.u(1,0.23137254901960785,0.2196078431372549,0.24313725490196078,B.e) +B.EV=new A.u(1,0.058823529411764705,0.050980392156862744,0.07450980392156863,B.e) +B.DV=new A.u(1,0.12941176470588237,0.12156862745098039,0.14901960784313725,B.e) +B.Fl=new A.u(1,0.16862745098039217,0.1607843137254902,0.18823529411764706,B.e) +B.E7=new A.u(1,0.21176470588235294,0.20392156862745098,0.23137254901960785,B.e) +B.DX=new A.u(1,0.5764705882352941,0.5607843137254902,0.6,B.e) +B.DT=new A.ud(B.am,B.eL,B.Eo,B.hh,B.h9,B.h9,B.eL,B.nU,B.hh,B.jN,B.Ew,B.he,B.hf,B.hf,B.jN,B.nE,B.he,B.jL,B.E3,B.h4,B.h5,B.h5,B.jL,B.nJ,B.h4,B.E0,B.F1,B.nR,B.nG,B.jR,B.ha,B.jM,B.jR,B.Er,B.EV,B.jJ,B.DV,B.Fl,B.E7,B.nB,B.DX,B.jM,B.l,B.l,B.ha,B.nW,B.jP,B.eL,B.jR,B.ha) +B.dI=new A.u(1,0.3803921568627451,0.3803921568627451,0.3803921568627451,B.e) +B.E4=new A.u(1,0.9803921568627451,0.9686274509803922,0.9490196078431372,B.e) +B.E5=new A.u(0.4,0.7843137254901961,0.7843137254901961,0.7843137254901961,B.e) +B.dJ=new A.u(1,0.7411764705882353,0.7411764705882353,0.7411764705882353,B.e) +B.Ee=new A.u(1,0.39215686274509803,1,0.8549019607843137,B.e) +B.nA=new A.u(1,0.12941176470588237,0.12941176470588237,0.12941176470588237,B.e) +B.nC=new A.u(0,1,1,1,B.e) +B.Es=new A.u(0.03137254901960784,0,0,0,B.e) +B.cE=new A.u(1,0.25882352941176473,0.25882352941176473,0.25882352941176473,B.e) +B.S=new A.u(0.5411764705882353,0,0,0,B.e) +B.nI=new A.u(0.5019607843137255,0.5019607843137255,0.5019607843137255,0.5019607843137255,B.e) +B.W=new A.u(0.8666666666666667,0,0,0,B.e) +B.nM=new A.u(0.25098039215686274,0.8,0.8,0.8,B.e) +B.nO=new A.u(1,0.9803921568627451,0.9803921568627451,0.9803921568627451,B.e) +B.jO=new A.u(1,0.18823529411764706,0.18823529411764706,0.18823529411764706,B.e) +B.EU=new A.u(0.12156862745098039,0,0,0,B.e) +B.aN=new A.u(1,0.8784313725490196,0.8784313725490196,0.8784313725490196,B.e) +B.EY=new A.u(0.10196078431372549,0,0,0,B.e) +B.jQ=new A.u(0.4,0.7372549019607844,0.7372549019607844,0.7372549019607844,B.e) +B.eP=new A.u(1,0.9607843137254902,0.9607843137254902,0.9607843137254902,B.e) +B.F2=new A.u(0.3803921568627451,0,0,0,B.e) +B.ar=new A.u(1,0.4588235294117647,0.4588235294117647,0.4588235294117647,B.e) +B.F8=new A.u(0.12156862745098039,1,1,1,B.e) +B.Fb=new A.u(0.3843137254901961,1,1,1,B.e) +B.Ff=new A.u(0.6,1,1,1,B.e) +B.Y=new A.u(0.7019607843137254,1,1,1,B.e) +B.eR=new A.u(1,0.6196078431372549,0.6196078431372549,0.6196078431372549,B.e) +B.hd=new A.u(1,0.8313725490196079,0.6470588235294118,0.4549019607843137,B.e) +B.Fo=new A.u(0.03137254901960784,0.6196078431372549,0.6196078431372549,0.6196078431372549,B.e) +B.Fw=new A.u(0.9411764705882353,0.7529411764705882,0.7529411764705882,0.7529411764705882,B.e) +B.hi=new A.io(0,"cut") +B.hj=new A.io(1,"copy") +B.hk=new A.io(2,"paste") +B.hl=new A.io(3,"selectAll") +B.nX=new A.io(4,"delete") +B.jV=new A.io(5,"lookUp") +B.jW=new A.io(6,"searchWeb") +B.hm=new A.io(7,"share") +B.jX=new A.io(8,"liveTextInput") +B.jY=new A.io(9,"custom") +B.nY=new A.kb(!1) +B.nZ=new A.kb(!0) +B.an=new A.pQ(0,"start") +B.eU=new A.pQ(1,"end") +B.ce=new A.pQ(3,"stretch") +B.hn=new A.pQ(4,"baseline") +B.o_=new A.eo(0,0,0.2,1) +B.FC=new A.eo(0.05,0,0.133333,0.06) +B.ao=new A.eo(0.4,0,0.2,1) +B.FD=new A.eo(0.215,0.61,0.355,1) +B.jZ=new A.eo(0.35,0.91,0.33,0.97) +B.dL=new A.eo(0.42,0,1,1) +B.FF=new A.eo(0.208333,0.82,0.25,1) +B.o0=new A.eo(0.42,0,0.58,1) +B.bc=new A.eo(0.25,0.1,0.25,1) +B.FG=new A.eo(0.77,0,0.175,1) +B.FH=new A.eo(0.075,0.82,0.165,1) +B.d_=new A.eo(0,0,0.58,1) +B.o1=new A.eo(0.67,0.03,0.65,0.09) +B.FI=new A.ul(0,"small") +B.FJ=new A.ul(1,"medium") +B.o2=new A.ul(2,"large") +B.eM=new A.u(0.34901960784313724,0,0,0,B.e) +B.h3=new A.u(0.5019607843137255,1,1,1,B.e) +B.FL=new A.cH(B.eM,null,null,B.eM,B.h3,B.eM,B.h3,B.eM,B.h3,B.eM,B.h3) +B.dK=new A.u(1,0.8392156862745098,0.8392156862745098,0.8392156862745098,B.e) +B.FM=new A.cH(B.dK,null,null,B.dK,B.cE,B.dK,B.cE,B.dK,B.cE,B.dK,B.cE) +B.eS=new A.u(0.6980392156862745,1,1,1,B.e) +B.h7=new A.u(0.6980392156862745,0.18823529411764706,0.18823529411764706,0.18823529411764706,B.e) +B.FO=new A.cH(B.eS,null,null,B.eS,B.h7,B.eS,B.h7,B.eS,B.h7,B.eS,B.h7) +B.eN=new A.u(0.06274509803921569,0,0,0,B.e) +B.h8=new A.u(0.06274509803921569,1,1,1,B.e) +B.FP=new A.cH(B.eN,null,null,B.eN,B.h8,B.eN,B.h8,B.eN,B.h8,B.eN,B.h8) +B.jU=new A.u(1,0,0.47843137254901963,1,B.e) +B.nN=new A.u(1,0.0392156862745098,0.5176470588235295,1,B.e) +B.nz=new A.u(1,0,0.25098039215686274,0.8666666666666667,B.e) +B.nF=new A.u(1,0.25098039215686274,0.611764705882353,1,B.e) +B.ho=new A.cH(B.jU,"systemBlue",null,B.jU,B.nN,B.nz,B.nF,B.jU,B.nN,B.nz,B.nF) +B.jS=new A.u(0.2980392156862745,0.23529411764705882,0.23529411764705882,0.2627450980392157,B.e) +B.nD=new A.u(0.2980392156862745,0.9215686274509803,0.9215686274509803,0.9607843137254902,B.e) +B.nT=new A.u(0.3764705882352941,0.23529411764705882,0.23529411764705882,0.2627450980392157,B.e) +B.nL=new A.u(0.3764705882352941,0.9215686274509803,0.9215686274509803,0.9607843137254902,B.e) +B.FQ=new A.cH(B.jS,"tertiaryLabel",null,B.jS,B.nD,B.nT,B.nL,B.jS,B.nD,B.nT,B.nL) +B.eJ=new A.u(1,0.9647058823529412,0.9647058823529412,0.9647058823529412,B.e) +B.hc=new A.u(1,0.13333333333333333,0.13333333333333333,0.13333333333333333,B.e) +B.FR=new A.cH(B.eJ,null,null,B.eJ,B.hc,B.eJ,B.hc,B.eJ,B.hc,B.eJ,B.hc) +B.hp=new A.cH(B.l,null,null,B.l,B.k,B.l,B.k,B.l,B.k,B.l,B.k) +B.eT=new A.u(1,0.7215686274509804,0.7215686274509804,0.7215686274509804,B.e) +B.hg=new A.u(1,0.3568627450980392,0.3568627450980392,0.3568627450980392,B.e) +B.FS=new A.cH(B.eT,null,null,B.eT,B.hg,B.eT,B.hg,B.eT,B.hg,B.eT,B.hg) +B.eK=new A.u(1,0.6,0.6,0.6,B.e) +B.eV=new A.cH(B.eK,"inactiveGray",null,B.eK,B.ar,B.eK,B.ar,B.eK,B.ar,B.eK,B.ar) +B.eO=new A.u(1,0.23529411764705882,0.23529411764705882,0.26666666666666666,B.e) +B.hb=new A.u(1,0.9215686274509803,0.9215686274509803,0.9607843137254902,B.e) +B.FT=new A.cH(B.eO,null,null,B.eO,B.hb,B.eO,B.hb,B.eO,B.hb,B.eO,B.hb) +B.jK=new A.u(0.0784313725490196,0.4549019607843137,0.4549019607843137,0.5019607843137255,B.e) +B.nP=new A.u(0.17647058823529413,0.4627450980392157,0.4627450980392157,0.5019607843137255,B.e) +B.nK=new A.u(0.1568627450980392,0.4549019607843137,0.4549019607843137,0.5019607843137255,B.e) +B.nS=new A.u(0.25882352941176473,0.4627450980392157,0.4627450980392157,0.5019607843137255,B.e) +B.FU=new A.cH(B.jK,"quaternarySystemFill",null,B.jK,B.nP,B.nK,B.nS,B.jK,B.nP,B.nK,B.nS) +B.eQ=new A.u(0.9411764705882353,0.9764705882352941,0.9764705882352941,0.9764705882352941,B.e) +B.h2=new A.u(0.9411764705882353,0.11372549019607843,0.11372549019607843,0.11372549019607843,B.e) +B.FK=new A.cH(B.eQ,null,null,B.eQ,B.h2,B.eQ,B.h2,B.eQ,B.h2,B.eQ,B.h2) +B.E9=new A.u(1,0.10980392156862745,0.10980392156862745,0.11764705882352941,B.e) +B.Fq=new A.u(1,0.1411764705882353,0.1411764705882353,0.14901960784313725,B.e) +B.FN=new A.cH(B.k,"systemBackground",null,B.k,B.l,B.k,B.l,B.k,B.E9,B.k,B.Fq) +B.o3=new A.cH(B.l,"label",null,B.l,B.k,B.l,B.k,B.l,B.k,B.l,B.k) +B.Zf=new A.Ul(B.o3,B.eV) +B.mz=new A.Un(null,B.ho,B.k,B.FK,B.FN,B.ho,!1,B.Zf) +B.cf=new A.un(B.mz,null,null,null,null,null,null,null,null) +B.aT=new A.M_(0,"base") +B.hq=new A.M_(1,"elevated") +B.FV=new A.a5f(1,"latency") +B.FW=new A.zA(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.FX=new A.zB(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.o4=new A.pS(0,"uninitialized") +B.FY=new A.pS(1,"initializingServices") +B.o5=new A.pS(2,"initializedServices") +B.FZ=new A.pS(3,"initializingUi") +B.G_=new A.pS(4,"initialized") +B.a_E=new A.a5o(1,"traversalOrder") +B.dM=new A.M6(0,"background") +B.o6=new A.M6(1,"foreground") +B.a_9=new A.X3(null) +B.dN=new A.nb(null,null,null,B.a_9,null) +B.eo=new A.p(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.c6=new A.Eq(0,"clip") +B.aP=new A.amS(0,"parent") +B.a_a=new A.X5(null) +B.G0=new A.uq(B.eo,null,!0,B.c6,null,B.aP,null,B.a_a,null) +B.k_=new A.pT(!1) +B.eW=new A.pT(!0) +B.k0=new A.pU(!1) +B.k1=new A.pU(!0) +B.k2=new A.pV(!1) +B.eX=new A.pV(!0) +B.G1=new A.us(0) +B.G2=new A.us(1) +B.aF=new A.zG(3,"info") +B.G3=new A.zG(5,"hint") +B.G4=new A.zG(6,"summary") +B.a_F=new A.ll(1,"sparse") +B.G5=new A.ll(10,"shallow") +B.G6=new A.ll(11,"truncateChildren") +B.G7=new A.ll(5,"error") +B.G8=new A.ll(6,"whitespace") +B.d0=new A.ll(8,"singleLine") +B.cg=new A.ll(9,"errorProperty") +B.G9=new A.ut(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Ga=new A.j9(1,"horizontal") +B.o7=new A.j9(2,"endToStart") +B.k3=new A.j9(3,"startToEnd") +B.Gb=new A.j9(4,"up") +B.o8=new A.j9(5,"down") +B.o9=new A.j9(6,"none") +B.Gc=new A.uu(null,null,null,null,null,null) +B.Gd=new A.zP(1,null) +B.oa=new A.zP(null,null) +B.k4=new A.Mv(0,"down") +B.a9=new A.Mv(1,"start") +B.Ge=new A.Mx(null) +B.Gf=new A.zX(null,null,null,null,null,null,null,null,null) +B.Gg=new A.zY(null,null,null,null) +B.F=new A.aZ(0) +B.bd=new A.aZ(1e5) +B.d1=new A.aZ(1e6) +B.Gh=new A.aZ(1e7) +B.Gi=new A.aZ(12e4) +B.Gj=new A.aZ(12e5) +B.k5=new A.aZ(125e3) +B.Gk=new A.aZ(14e4) +B.Gl=new A.aZ(15e3) +B.dO=new A.aZ(15e4) +B.Gm=new A.aZ(15e5) +B.Gn=new A.aZ(16667) +B.cF=new A.aZ(167e3) +B.Go=new A.aZ(18e4) +B.Gp=new A.aZ(2e4) +B.N=new A.aZ(2e5) +B.hr=new A.aZ(2e6) +B.Gq=new A.aZ(225e3) +B.hs=new A.aZ(25e4) +B.Gr=new A.aZ(2592e9) +B.Gs=new A.aZ(2961926e3) +B.cG=new A.aZ(3e5) +B.ob=new A.aZ(35e4) +B.oc=new A.aZ(375e3) +B.Gt=new A.aZ(4e4) +B.k6=new A.aZ(4e5) +B.bW=new A.aZ(4e6) +B.Gu=new A.aZ(45e3) +B.Gv=new A.aZ(45e4) +B.k7=new A.aZ(5e4) +B.d2=new A.aZ(5e5) +B.eY=new A.aZ(6e5) +B.od=new A.aZ(6048e8) +B.oe=new A.aZ(7e4) +B.k8=new A.aZ(75e3) +B.Gw=new A.aZ(-38e3) +B.Gx=new A.a6f(0,"tonalSpot") +B.Gy=new A.di(0,4,0,4) +B.Gz=new A.di(0,8,0,8) +B.GA=new A.di(12,16,12,8) +B.GB=new A.di(12,20,12,12) +B.GC=new A.di(12,4,12,4) +B.GD=new A.di(12,8,12,8) +B.ht=new A.di(16,0,24,0) +B.of=new A.di(4,0,6,0) +B.og=new A.di(8,0,12,0) +B.as=new A.az(0,0,0,0) +B.oh=new A.az(0,0,0,12) +B.GE=new A.az(0,0,0,14) +B.GF=new A.az(0,0,0,16) +B.GG=new A.az(0,0,0,8) +B.GH=new A.az(0,0,8,0) +B.GI=new A.az(0,14,0,14) +B.dP=new A.az(0,16,0,16) +B.GJ=new A.az(0,48,0,0) +B.GK=new A.az(0,4,0,0) +B.GL=new A.az(0,8,0,0) +B.cH=new A.az(12,12,12,12) +B.GM=new A.az(12,6,12,6) +B.GN=new A.az(12,8,12,8) +B.GO=new A.az(15,5,15,10) +B.GP=new A.az(16,0,16,0) +B.aG=new A.az(16,16,16,16) +B.GQ=new A.az(16,18,16,18) +B.GR=new A.az(16,4,16,4) +B.GS=new A.az(20,0,20,3) +B.dQ=new A.az(20,20,20,20) +B.GT=new A.az(24,0,24,24) +B.eZ=new A.az(24,24,24,24) +B.k9=new A.az(32,0,32,0) +B.GV=new A.az(40,24,40,24) +B.GW=new A.az(4,0,4,0) +B.f_=new A.az(4,4,4,4) +B.a_G=new A.az(4,4,4,5) +B.GX=new A.az(6,6,6,6) +B.GY=new A.az(8,0,8,0) +B.GZ=new A.az(8,2,8,5) +B.ka=new A.az(8,4,8,4) +B.oi=new A.az(8,8,8,8) +B.oj=new A.az(0.5,1,0.5,1) +B.H_=new A.A3(null) +B.H0=new A.A6(0,"noOpinion") +B.H1=new A.A6(1,"enabled") +B.f0=new A.A6(2,"disabled") +B.H2=new A.MB(null) +B.ok=new A.c2(0,"incrementable") +B.kb=new A.c2(1,"scrollable") +B.kc=new A.c2(10,"link") +B.kd=new A.c2(11,"header") +B.ke=new A.c2(12,"tab") +B.kf=new A.c2(13,"tabList") +B.kg=new A.c2(14,"tabPanel") +B.kh=new A.c2(15,"dialog") +B.ki=new A.c2(16,"alertDialog") +B.kj=new A.c2(17,"table") +B.kk=new A.c2(18,"cell") +B.kl=new A.c2(19,"row") +B.hu=new A.c2(2,"button") +B.km=new A.c2(20,"columnHeader") +B.kn=new A.c2(21,"status") +B.ko=new A.c2(22,"alert") +B.kp=new A.c2(23,"list") +B.kq=new A.c2(24,"listItem") +B.kr=new A.c2(25,"generic") +B.ks=new A.c2(26,"menu") +B.kt=new A.c2(27,"menuBar") +B.ku=new A.c2(28,"menuItem") +B.kv=new A.c2(29,"menuItemCheckbox") +B.ol=new A.c2(3,"textField") +B.kw=new A.c2(30,"menuItemRadio") +B.kx=new A.c2(31,"complementary") +B.ky=new A.c2(32,"contentInfo") +B.kz=new A.c2(33,"main") +B.kA=new A.c2(34,"navigation") +B.kB=new A.c2(35,"region") +B.kC=new A.c2(36,"form") +B.kD=new A.c2(4,"radioGroup") +B.kE=new A.c2(5,"checkable") +B.om=new A.c2(6,"heading") +B.on=new A.c2(7,"image") +B.kF=new A.c2(8,"route") +B.kG=new A.c2(9,"platformView") +B.kH=new A.q0(!1,!1,!1,!1) +B.kI=new A.q0(!1,!1,!1,!0) +B.oo=new A.q1(!1,!1,!1,!1) +B.op=new A.q1(!1,!1,!1,!0) +B.H3=new A.Ag(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.hv=new A.lp(!1,!1,!1,!1) +B.hw=new A.lp(!1,!1,!1,!0) +B.dR=new A.lp(!0,!1,!1,!1) +B.dS=new A.lp(!0,!1,!1,!0) +B.hx=new A.lq(!1,!1,!1,!1) +B.hy=new A.lq(!1,!1,!1,!0) +B.dT=new A.lq(!0,!1,!1,!1) +B.dU=new A.lq(!0,!1,!1,!0) +B.oq=new A.hI(!1,!1,!1,!1) +B.or=new A.hI(!1,!1,!1,!0) +B.os=new A.hI(!1,!1,!0,!1) +B.ot=new A.hI(!1,!1,!0,!0) +B.d3=new A.hI(!0,!1,!1,!1) +B.d4=new A.hI(!0,!1,!1,!0) +B.ou=new A.hI(!0,!1,!0,!1) +B.ov=new A.hI(!0,!1,!0,!0) +B.ow=new A.lr(!1,!1,!1,!1) +B.ox=new A.lr(!1,!1,!1,!0) +B.H4=new A.lr(!0,!1,!1,!1) +B.H5=new A.lr(!0,!1,!1,!0) +B.oy=new A.q3(!1,!0,!1,!1) +B.oz=new A.q3(!1,!0,!1,!0) +B.oA=new A.ls(!1,!1,!1,!1) +B.oB=new A.ls(!1,!1,!1,!0) +B.hz=new A.ls(!0,!1,!1,!1) +B.hA=new A.ls(!0,!1,!1,!0) +B.oC=new A.q4(!1,!0,!1,!1) +B.oD=new A.q4(!1,!0,!1,!0) +B.f1=new A.nh(!1,!1,!1,!1) +B.f2=new A.nh(!1,!1,!1,!0) +B.dV=new A.nh(!0,!1,!1,!1) +B.dW=new A.nh(!0,!1,!1,!0) +B.hB=new A.lt(!1,!1,!1,!1) +B.hC=new A.lt(!1,!1,!1,!0) +B.kJ=new A.lt(!0,!1,!1,!1) +B.kK=new A.lt(!0,!1,!1,!0) +B.dX=new A.Ak(0) +B.d5=new A.Ak(1) +B.hD=new A.Ak(2) +B.oE=new A.hK("All nodes must have a parent.","",null) +B.H6=new A.lu(0) +B.H7=new A.lu(2) +B.H8=new A.lu(3) +B.H9=new A.lu(4) +B.oF=new A.lu(6) +B.Ha=new A.Al(null) +B.dY=new A.q5(0,"none") +B.oG=new A.q5(1,"low") +B.hE=new A.q5(2,"medium") +B.kL=new A.q5(3,"high") +B.I=new A.I(0,0) +B.Hb=new A.MS(B.I,B.I) +B.kM=new A.MV(0,"tight") +B.kN=new A.MV(1,"loose") +B.Hc=new A.Ap(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.oH=new A.Aq(0,"Start") +B.hF=new A.Aq(1,"Update") +B.hG=new A.Aq(2,"End") +B.kO=new A.Ar(0,"never") +B.oI=new A.Ar(1,"auto") +B.hH=new A.Ar(2,"always") +B.oJ=new A.nm(0,"touch") +B.kP=new A.nm(1,"traditional") +B.a_H=new A.a8g(0,"automatic") +B.oK=new A.a8k("focus") +B.a8=new A.it(4) +B.H=new A.it(6) +B.oM=new A.eI("Invalid method call",null,null) +B.Hh=new A.eI("Invalid envelope",null,null) +B.Hi=new A.eI("Expected envelope, got nothing",null,null) +B.bE=new A.eI("Message corrupted",null,null) +B.hI=new A.AD(0) +B.bX=new A.N8(0,"accepted") +B.aw=new A.N8(1,"rejected") +B.oN=new A.qg(0,"pointerEvents") +B.hJ=new A.qg(1,"browserGestures") +B.d6=new A.AF(0,"ready") +B.hK=new A.AF(1,"possible") +B.Hj=new A.AF(2,"defunct") +B.hL=new A.Nc(0,"forward") +B.oO=new A.Nc(1,"reverse") +B.dZ=new A.uH(0,"push") +B.e_=new A.uH(1,"pop") +B.bY=new A.AK(0,"deferToChild") +B.aH=new A.AK(1,"opaque") +B.cI=new A.AK(2,"translucent") +B.Hk=new A.AL(null) +B.Hl=new A.Nn(null) +B.Hm=new A.km(null) +B.f3=new A.by(57411,"MaterialIcons",!1) +B.oP=new A.by(57490,"MaterialIcons",!0) +B.Hp=new A.by(57634,"MaterialIcons",!1) +B.Hq=new A.by(57657,"MaterialIcons",!1) +B.kR=new A.by(57672,"MaterialIcons",!1) +B.kS=new A.by(57689,"MaterialIcons",!1) +B.oQ=new A.by(57706,"MaterialIcons",!1) +B.kT=new A.by(57912,"MaterialIcons",!1) +B.Hx=new A.by(58173,"MaterialIcons",!1) +B.oR=new A.by(58290,"MaterialIcons",!1) +B.oS=new A.by(58332,"MaterialIcons",!1) +B.HC=new A.by(58372,"MaterialIcons",!1) +B.HD=new A.by(58497,"MaterialIcons",!1) +B.HF=new A.by(58514,"MaterialIcons",!1) +B.kU=new A.by(58727,"MaterialIcons",!1) +B.HJ=new A.by(58728,"MaterialIcons",!1) +B.kV=new A.by(59069,"MaterialIcons",!1) +B.kW=new A.by(59070,"MaterialIcons",!1) +B.HM=new A.by(60981,"MaterialIcons",!1) +B.HP=new A.by(61848,"MaterialIcons",!1) +B.HQ=new A.by(62333,"MaterialIcons",!1) +B.oT=new A.by(62335,"MaterialIcons",!1) +B.HR=new A.by(984374,"MaterialIcons",!1) +B.oU=new A.cP(24,0,400,0,48,B.l,1,null,!1) +B.HS=new A.cP(null,null,null,null,null,B.k,null,null,null) +B.HT=new A.cP(null,null,null,null,null,B.l,null,null,null) +B.HU=new A.ca(B.oT,null,null,null,null) +B.Ho=new A.by(57424,"MaterialIcons",!1) +B.oV=new A.ca(B.Ho,null,null,null,null) +B.HI=new A.by(58648,"MaterialIcons",!1) +B.oW=new A.ca(B.HI,null,null,null,null) +B.HA=new A.by(58289,"MaterialIcons",!1) +B.HV=new A.ca(B.HA,null,null,null,null) +B.Hz=new A.by(58286,"MaterialIcons",!1) +B.oX=new A.ca(B.Hz,null,null,null,null) +B.HB=new A.by(58291,"MaterialIcons",!1) +B.oY=new A.ca(B.HB,null,B.aV,null,null) +B.HH=new A.by(58644,"MaterialIcons",!1) +B.HW=new A.ca(B.HH,null,null,null,null) +B.oZ=new A.ca(B.kR,null,null,null,null) +B.EG=new A.u(1,0.9333333333333333,0.9333333333333333,0.9333333333333333,B.e) +B.MB=new A.d0([50,B.nO,100,B.eP,200,B.EG,300,B.aN,350,B.dK,400,B.dJ,500,B.eR,600,B.ar,700,B.dI,800,B.cE,850,B.jO,900,B.nA],t.pl) +B.e2=new A.jq(B.MB,1,0.6196078431372549,0.6196078431372549,0.6196078431372549,B.e) +B.HX=new A.ca(B.f3,64,B.e2,null,null) +B.p_=new A.ca(B.kR,48,null,null,null) +B.hM=new A.by(58164,"MaterialIcons",!1) +B.f4=new A.ca(B.hM,null,null,null,null) +B.HL=new A.by(58780,"MaterialIcons",!1) +B.p0=new A.ca(B.HL,null,null,null,null) +B.Hy=new A.by(58278,"MaterialIcons",!1) +B.HY=new A.ca(B.Hy,null,null,null,null) +B.Hs=new A.by(57704,"MaterialIcons",!1) +B.HZ=new A.ca(B.Hs,null,null,null,null) +B.Hr=new A.by(57695,"MaterialIcons",!0) +B.hN=new A.ca(B.Hr,null,null,null,null) +B.HG=new A.by(58519,"MaterialIcons",!1) +B.I0=new A.ca(B.HG,null,null,null,null) +B.I1=new A.ca(B.oQ,null,null,null,null) +B.I2=new A.ca(B.hM,20,null,null,null) +B.HK=new A.by(58778,"MaterialIcons",!1) +B.p1=new A.ca(B.HK,null,null,null,null) +B.HE=new A.by(58513,"MaterialIcons",!1) +B.hO=new A.ca(B.HE,null,null,null,null) +B.p2=new A.ca(B.kU,null,null,null,null) +B.Hv=new A.by(57898,"MaterialIcons",!1) +B.p3=new A.ca(B.Hv,null,null,null,null) +B.p4=new A.ca(B.hM,48,B.e2,null,null) +B.Ft=new A.u(1,0.9098039215686274,0.9607843137254902,0.9137254901960784,B.e) +B.Ek=new A.u(1,0.7843137254901961,0.9019607843137255,0.788235294117647,B.e) +B.Fi=new A.u(1,0.6470588235294118,0.8392156862745098,0.6549019607843137,B.e) +B.Fz=new A.u(1,0.5058823529411764,0.7803921568627451,0.5176470588235295,B.e) +B.EX=new A.u(1,0.4,0.7333333333333333,0.41568627450980394,B.e) +B.Fv=new A.u(1,0.2980392156862745,0.6862745098039216,0.3137254901960784,B.e) +B.Fy=new A.u(1,0.2627450980392157,0.6274509803921569,0.2784313725490196,B.e) +B.DY=new A.u(1,0.2196078431372549,0.5568627450980392,0.23529411764705882,B.e) +B.ED=new A.u(1,0.1803921568627451,0.49019607843137253,0.19607843137254902,B.e) +B.Ef=new A.u(1,0.10588235294117647,0.3686274509803922,0.12549019607843137,B.e) +B.MS=new A.d0([50,B.Ft,100,B.Ek,200,B.Fi,300,B.Fz,400,B.EX,500,B.Fv,600,B.Fy,700,B.DY,800,B.ED,900,B.Ef],t.pl) +B.br=new A.jq(B.MS,1,0.2980392156862745,0.6862745098039216,0.3137254901960784,B.e) +B.I3=new A.ca(B.kS,null,B.br,null,null) +B.I4=new A.ca(B.f3,null,null,null,null) +B.Hu=new A.by(57882,"MaterialIcons",!1) +B.I5=new A.ca(B.Hu,null,null,null,null) +B.Hw=new A.by(58136,"MaterialIcons",!1) +B.p5=new A.ca(B.Hw,null,null,null,null) +B.Ht=new A.by(57787,"MaterialIcons",!1) +B.I7=new A.ca(B.Ht,null,null,null,null) +B.hP=new A.ca(B.kT,64,B.aV,null,null) +B.Hn=new A.by(57415,"MaterialIcons",!1) +B.I8=new A.ca(B.Hn,null,null,null,null) +B.p6=new A.ca(B.hM,64,null,null,null) +B.Ij=new A.aaw(0,"HtmlImage") +B.Ik=new A.uL(0,"repeat") +B.Il=new A.uL(1,"repeatX") +B.Im=new A.uL(2,"repeatY") +B.f5=new A.uL(3,"noRepeat") +B.p8=new A.nr(3,"webp") +B.In=new A.ko(B.p8,!0,5,"animatedWebp") +B.Ii=new A.nr(5,"avif") +B.Ip=new A.ko(B.Ii,!1,7,"avif") +B.p7=new A.nr(1,"gif") +B.Ir=new A.ko(B.p7,!1,1,"gif") +B.p9=new A.ko(B.p8,!1,4,"webp") +B.hQ=new A.ko(B.p7,!0,2,"animatedGif") +B.aI=s([],t.oU) +B.It=new A.lE("\ufffc",null,null,null,!0,!0,B.aI) +B.Iu=new A.B2(null,null,null,null,null,null,null,null,null,B.oI,B.nj,!1,null,!1,null,null,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,!1,null,null) +B.lw=new A.dL(4,B.eB,B.bC) +B.Iv=new A.nv(null,null,null,"Vorname",null,null,null,null,null,null,null,null,null,null,null,null,!0,!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.lw,!0,null,null,null,null) +B.Iw=new A.nv(null,null,null,"E-Mail",null,null,null,null,null,null,null,null,null,null,null,null,!0,!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.lw,!0,null,null,null,null) +B.a_I=new A.nv(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null,null) +B.Ix=new A.nv(null,null,null,"Nachname",null,null,null,null,null,null,null,null,null,null,null,null,!0,!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.lw,!0,null,null,null,null) +B.NW=new A.j(0.05,0) +B.NY=new A.j(0.133333,0.06) +B.O4=new A.j(0.166666,0.4) +B.NQ=new A.j(0.208333,0.82) +B.O5=new A.j(0.25,1) +B.cr=new A.Ex(B.NW,B.NY,B.O4,B.NQ,B.O5) +B.pa=new A.ed(0,0.8888888888888888,B.cr) +B.pb=new A.ed(0.5,1,B.bc) +B.Iz=new A.ed(0,0.6666666666666666,B.U) +B.IA=new A.ed(0.6,1,B.U) +B.FE=new A.eo(0.6,0.04,0.98,0.335) +B.IB=new A.ed(0.4,0.6,B.FE) +B.IC=new A.ed(0.72,1,B.ao) +B.ID=new A.ed(0.2075,0.4175,B.U) +B.IE=new A.ed(0,0.1,B.U) +B.IF=new A.ed(0,0.75,B.U) +B.IG=new A.ed(0,0.25,B.U) +B.IH=new A.ed(0.0825,0.2075,B.U) +B.II=new A.ed(0.125,0.25,B.U) +B.IJ=new A.ed(0.5,1,B.ao) +B.IK=new A.ed(0,0.5,B.ao) +B.pc=new A.ed(0.1,0.33,B.U) +B.IL=new A.ed(0.4,1,B.U) +B.pd=new A.B3(0,"grapheme") +B.pe=new A.B3(1,"word") +B.IO=new A.aaT(1,"unrestricted") +B.pf=new A.NR(null) +B.IQ=new A.NS(null) +B.IR=new A.NT(0,"rawKeyData") +B.IS=new A.NT(1,"keyDataThenRawKeyData") +B.bZ=new A.Bc(0,"down") +B.kX=new A.aaY(0,"keyboard") +B.IT=new A.he(B.F,B.bZ,0,0,null,!1) +B.f6=new A.kr(0,"handled") +B.f7=new A.kr(1,"ignored") +B.hR=new A.kr(2,"skipRemainingHandlers") +B.bF=new A.Bc(1,"up") +B.IU=new A.Bc(2,"repeat") +B.i_=new A.h(4294967564) +B.IV=new A.uW(B.i_,1,"scrollLock") +B.fc=new A.h(4294967556) +B.IW=new A.uW(B.fc,2,"capsLock") +B.hZ=new A.h(4294967562) +B.kY=new A.uW(B.hZ,0,"numLock") +B.e1=new A.qx(0,"any") +B.ch=new A.qx(3,"all") +B.a3=new A.Be(0,"ariaLabel") +B.hU=new A.Be(1,"domText") +B.f8=new A.Be(2,"sizedSpan") +B.IX=new A.NY(!1,255) +B.IY=new A.NZ(255) +B.pg=new A.Bl(0,"opportunity") +B.kZ=new A.Bl(2,"mandatory") +B.ph=new A.Bl(3,"endOfText") +B.IZ=new A.v_(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.pi=new A.qC(0,"threeLine") +B.J_=new A.qC(1,"titleHeight") +B.J0=new A.qC(2,"top") +B.pj=new A.qC(3,"center") +B.J1=new A.qC(4,"bottom") +B.pk=s(["text","multiline","number","phone","datetime","emailAddress","url","visiblePassword","name","address","none","webSearch","twitter"],t.s) +B.pl=s([200,202],t.t) +B.J4=s([239,191,189],t.t) +B.pm=s(["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],t.s) +B.pn=s([304],t.t) +B.Js=s([4,9,14,19],t.t) +B.KV=s([137,80,78,71,13,10,26,10],t.Z) +B.If=new A.nr(0,"png") +B.Io=new A.ko(B.If,!1,0,"png") +B.Id=new A.lD(B.KV,B.Io,0,"png") +B.KW=s([71,73,70,56,55,97],t.Z) +B.Ic=new A.lD(B.KW,B.hQ,1,"gif87a") +B.Kn=s([71,73,70,56,57,97],t.Z) +B.Ib=new A.lD(B.Kn,B.hQ,2,"gif89a") +B.J5=s([255,216,255],t.Z) +B.Ig=new A.nr(2,"jpeg") +B.Is=new A.ko(B.Ig,!1,3,"jpeg") +B.Ie=new A.lD(B.J5,B.Is,3,"jpeg") +B.JN=s([82,73,70,70,null,null,null,null,87,69,66,80],t.Z) +B.Ia=new A.lD(B.JN,B.p9,4,"webp") +B.JH=s([66,77],t.Z) +B.Ih=new A.nr(4,"bmp") +B.Iq=new A.ko(B.Ih,!1,6,"bmp") +B.I9=new A.lD(B.JH,B.Iq,5,"bmp") +B.Ju=s([B.Id,B.Ic,B.Ib,B.Ie,B.Ia,B.I9],A.aD("D")) +B.mL=new A.HN(0,"named") +B.Bw=new A.HN(1,"anonymous") +B.JD=s([B.mL,B.Bw],A.aD("D")) +B.po=s(["January","February","March","April","May","June","July","August","September","October","November","December"],t.s) +B.pp=s([0,4,12,1,5,13,3,7,15],t.t) +B.JG=s([65533],t.t) +B.Zw=new A.hv(0,1) +B.ZB=new A.hv(0.5,1) +B.ZE=new A.hv(0.5375,0.75) +B.ZG=new A.hv(0.575,0.5) +B.ZC=new A.hv(0.6125,0.25) +B.ZA=new A.hv(0.65,0) +B.Zz=new A.hv(0.85,0) +B.ZF=new A.hv(0.8875,0.25) +B.ZD=new A.hv(0.925,0.5) +B.Zx=new A.hv(0.9625,0.75) +B.Zy=new A.hv(1,1) +B.JO=s([B.Zw,B.ZB,B.ZE,B.ZG,B.ZC,B.ZA,B.Zz,B.ZF,B.ZD,B.Zx,B.Zy],A.aD("D")) +B.dn=new A.md(0,"left") +B.el=new A.md(1,"right") +B.aZ=new A.md(2,"center") +B.fI=new A.md(3,"justify") +B.az=new A.md(4,"start") +B.iR=new A.md(5,"end") +B.JP=s([B.dn,B.el,B.aZ,B.fI,B.az,B.iR],A.aD("D")) +B.JY=s([2,1.13276676],t.n) +B.J7=s([2.18349805,1.20311921],t.n) +B.KM=s([2.33888662,1.28698796],t.n) +B.KO=s([2.48660575,1.36351941],t.n) +B.JT=s([2.62226596,1.44717976],t.n) +B.JW=s([2.7514899,1.53385819],t.n) +B.Kl=s([3.36298265,1.98288283],t.n) +B.K1=s([4.08649929,2.23811846],t.n) +B.Kc=s([4.85481134,2.47563463],t.n) +B.JV=s([5.62945551,2.72948597],t.n) +B.JZ=s([6.43023796,2.98020421],t.n) +B.pq=s([B.JY,B.J7,B.KM,B.KO,B.JT,B.JW,B.Kl,B.K1,B.Kc,B.JV,B.JZ],t.zg) +B.JQ=s(["AM","PM"],t.s) +B.pr=s(["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],t.s) +B.JS=s([B.ju,B.jv],A.aD("D")) +B.JU=s(["BC","AD"],t.s) +B.ps=s(["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],t.s) +B.aQ=new A.eR(0,"icon") +B.b7=new A.eR(1,"input") +B.ae=new A.eR(2,"label") +B.bi=new A.eR(3,"hint") +B.bj=new A.eR(4,"prefix") +B.bk=new A.eR(5,"suffix") +B.aa=new A.eR(6,"prefixIcon") +B.b0=new A.eR(7,"suffixIcon") +B.bS=new A.eR(8,"helperError") +B.bT=new A.eR(9,"counter") +B.cP=new A.eR(10,"container") +B.K_=s([B.aQ,B.b7,B.ae,B.bi,B.bj,B.bk,B.aa,B.b0,B.bS,B.bT,B.cP],A.aD("D")) +B.L4=new A.qD("en",null,"US") +B.pt=s([B.L4],t.ss) +B.Zl=new A.mt(0,0) +B.Zq=new A.mt(1,0.05) +B.Zo=new A.mt(3,0.08) +B.Zp=new A.mt(6,0.11) +B.Zn=new A.mt(8,0.12) +B.Zm=new A.mt(12,0.14) +B.pu=s([B.Zl,B.Zq,B.Zo,B.Zp,B.Zn,B.Zm],A.aD("D")) +B.K8=s(["Q1","Q2","Q3","Q4"],t.s) +B.K9=s([-1,0,0,1,0,0,-1,0,1,0,0,0,-1,1,0,1,1,1,1,0],t.n) +B.BZ=new A.L0(2,"outer") +B.nH=new A.u(0.09803921568627451,0,0,0,B.e) +B.i=new A.j(0,0) +B.Cg=new A.dU(0.2,B.BZ,B.nH,B.i,11) +B.Ka=s([B.Cg],t.sq) +B.AC=new A.E4(0,"left") +B.AD=new A.E4(1,"right") +B.Kb=s([B.AC,B.AD],A.aD("D")) +B.ak=new A.Eg(0,"upstream") +B.Kd=s([B.ak,B.j],A.aD("D")) +B.b_=new A.Ej(0,"rtl") +B.al=new A.Ej(1,"ltr") +B.l_=s([B.b_,B.al],A.aD("D")) +B.Ki=s(["file","directory","link","unixDomainSock","pipe","notFound"],t.s) +B.cQ=new A.jW(0,"leading") +B.bJ=new A.jW(1,"title") +B.cR=new A.jW(2,"subtitle") +B.ey=new A.jW(3,"trailing") +B.Kk=s([B.cQ,B.bJ,B.cR,B.ey],A.aD("D")) +B.DA=new A.py(0,"auto") +B.DB=new A.py(1,"full") +B.DC=new A.py(2,"chromium") +B.Km=s([B.DA,B.DB,B.DC,B.cD],A.aD("D")) +B.bw=new A.fv(1,"fuchsia") +B.Ko=s([B.ad,B.bw,B.L,B.bx,B.aY,B.by],A.aD("D")) +B.Be=new A.wK(0,"topLeft") +B.Bh=new A.wK(3,"bottomRight") +B.Zg=new A.ms(B.Be,B.Bh) +B.Zj=new A.ms(B.Bh,B.Be) +B.Bf=new A.wK(1,"topRight") +B.Bg=new A.wK(2,"bottomLeft") +B.Zh=new A.ms(B.Bf,B.Bg) +B.Zi=new A.ms(B.Bg,B.Bf) +B.Kp=s([B.Zg,B.Zj,B.Zh,B.Zi],A.aD("D")) +B.PF=new A.am(0.01339448,0.05994973) +B.PE=new A.am(0.13664115,0.13592082) +B.Pr=new A.am(0.24545546,0.14099516) +B.Pu=new A.am(0.32353151,0.12808021) +B.PD=new A.am(0.39093068,0.11726264) +B.Pk=new A.am(0.448478,0.10808278) +B.Pp=new A.am(0.49817452,0.10026175) +B.Ps=new A.am(0.54105583,0.09344429) +B.Pn=new A.am(0.57812578,0.08748984) +B.PA=new A.am(0.61050961,0.08224722) +B.PI=new A.am(0.63903989,0.07759639) +B.Po=new A.am(0.66416338,0.0734653) +B.Pl=new A.am(0.68675338,0.06974996) +B.PB=new A.am(0.70678034,0.06529512) +B.pv=s([B.PF,B.PE,B.Pr,B.Pu,B.PD,B.Pk,B.Pp,B.Ps,B.Pn,B.PA,B.PI,B.Po,B.Pl,B.PB],A.aD("D<+(S,S)>")) +B.Ks=s(["click","scroll"],t.s) +B.Co=new A.tI() +B.ft=new A.QB(1,"page") +B.it=new A.ey(B.aC,B.ft) +B.Kt=s([B.Co,B.it],A.aD("D")) +B.KB=s([],t.QP) +B.px=s([],A.aD("D")) +B.KG=s([],t.D) +B.KH=s([],t.fJ) +B.KE=s([],t.ER) +B.a_J=s([],t.ss) +B.Kx=s([],t.tc) +B.hV=s([],t.jl) +B.Kz=s([],t.wi) +B.Ky=s([],A.aD("D>")) +B.l1=s([],t.AO) +B.KD=s([],t.D1) +B.l0=s([],t.QF) +B.KC=s([],t.Lx) +B.Kw=s([],t.fm) +B.a_K=s([],t.p) +B.KI=s([],t.n) +B.Kv=s([],t.t) +B.pw=s([],t.ee) +B.KF=s([],t._m) +B.kQ=new A.it(0) +B.Hd=new A.it(1) +B.He=new A.it(2) +B.r=new A.it(3) +B.Hf=new A.it(5) +B.Hg=new A.it(7) +B.oL=new A.it(8) +B.py=s([B.kQ,B.Hd,B.He,B.r,B.a8,B.Hf,B.H,B.Hg,B.oL],A.aD("D")) +B.KJ=s(["S","M","T","W","T","F","S"],t.s) +B.pz=s(["J","F","M","A","M","J","J","A","S","O","N","D"],t.s) +B.NA=new A.j(0,2) +B.Cf=new A.dU(0.75,B.dB,B.nH,B.NA,1.5) +B.KP=s([B.Cf],t.sq) +B.KT=s([47,47,47,47,72,97,122,147],t.t) +B.f9=s([B.cT,B.cz,B.fV,B.fW,B.jt],t.QP) +B.e3=new A.hV(0,"controlModifier") +B.e4=new A.hV(1,"shiftModifier") +B.e5=new A.hV(2,"altModifier") +B.e6=new A.hV(3,"metaModifier") +B.ln=new A.hV(4,"capsLockModifier") +B.lo=new A.hV(5,"numLockModifier") +B.lp=new A.hV(6,"scrollLockModifier") +B.lq=new A.hV(7,"functionModifier") +B.vF=new A.hV(8,"symbolModifier") +B.pA=s([B.e3,B.e4,B.e5,B.e6,B.ln,B.lo,B.lp,B.lq,B.vF],A.aD("D")) +B.L_=s(["1st quarter","2nd quarter","3rd quarter","4th quarter"],t.s) +B.l2=s([!0,!1],t.HZ) +B.L1=s(["pointerdown","pointermove","pointerleave","pointerup","pointercancel","touchstart","touchend","touchmove","touchcancel","mousedown","mousemove","mouseleave","mouseup","wheel"],t.s) +B.L2=s(["Before Christ","Anno Domini"],t.s) +B.L3=new A.Bp("Suche l\xe4uft...",null) +B.pB=new A.Bp(null,null) +B.m=new A.Bs(0,"ignored") +B.b2=new A.h(4294967304) +B.fb=new A.h(4294967323) +B.aU=new A.h(4294967423) +B.l5=new A.h(4294967558) +B.ff=new A.h(8589934848) +B.i0=new A.h(8589934849) +B.cJ=new A.h(8589934850) +B.d9=new A.h(8589934851) +B.fg=new A.h(8589934852) +B.i1=new A.h(8589934853) +B.fh=new A.h(8589934854) +B.i2=new A.h(8589934855) +B.l8=new A.h(8589935088) +B.l9=new A.h(8589935090) +B.la=new A.h(8589935092) +B.lb=new A.h(8589935094) +B.i3=new A.qF(null) +B.Mv=new A.abC("longPress") +B.fs=new A.cz(B.ac,B.q) +B.a_L=new A.v4(1,null,B.fs) +B.a1=new A.x(0,0,0,0) +B.Mw=new A.lJ(B.i,B.a1,B.a1,B.a1) +B.x=new A.nJ(0,"start") +B.i4=new A.nJ(1,"end") +B.cj=new A.nJ(3,"spaceBetween") +B.vt=new A.nJ(4,"spaceAround") +B.vu=new A.nJ(5,"spaceEvenly") +B.c1=new A.Oi(0,"min") +B.Mx=new A.Bu(null) +B.Ns={in:0,iw:1,ji:2,jw:3,mo:4,aam:5,adp:6,aue:7,ayx:8,bgm:9,bjd:10,ccq:11,cjr:12,cka:13,cmk:14,coy:15,cqu:16,drh:17,drw:18,gav:19,gfx:20,ggn:21,gti:22,guv:23,hrr:24,ibi:25,ilw:26,jeg:27,kgc:28,kgh:29,koj:30,krm:31,ktr:32,kvs:33,kwq:34,kxe:35,kzj:36,kzt:37,lii:38,lmm:39,meg:40,mst:41,mwj:42,myt:43,nad:44,ncp:45,nnx:46,nts:47,oun:48,pcr:49,pmc:50,pmu:51,ppa:52,ppr:53,pry:54,puz:55,sca:56,skk:57,tdu:58,thc:59,thx:60,tie:61,tkk:62,tlw:63,tmp:64,tne:65,tnf:66,tsf:67,uok:68,xba:69,xia:70,xkh:71,xsj:72,ybd:73,yma:74,ymt:75,yos:76,yuu:77} +B.bQ=new A.bT(B.Ns,["id","he","yi","jv","ro","aas","dz","ktz","nun","bcg","drl","rki","mom","cmr","xch","pij","quh","khk","prs","dev","vaj","gvr","nyc","duz","jal","opa","gal","oyb","tdf","kml","kwv","bmf","dtp","gdj","yam","tvd","dtp","dtp","raq","rmx","cir","mry","vaj","mry","xny","kdz","ngv","pij","vaj","adx","huw","phr","bfy","lcq","prt","pub","hle","oyb","dtp","tpo","oyb","ras","twm","weo","tyj","kak","prs","taj","ema","cax","acn","waw","suj","rki","lrr","mtm","zom","yug"],t.li) +B.c_=new A.h(4294968065) +B.lU=new A.ag(B.c_,!1,!1,!0,!1,B.m) +B.bO=new A.h(4294968066) +B.lR=new A.ag(B.bO,!1,!1,!0,!1,B.m) +B.bP=new A.h(4294968067) +B.lS=new A.ag(B.bP,!1,!1,!0,!1,B.m) +B.c0=new A.h(4294968068) +B.lT=new A.ag(B.c0,!1,!1,!0,!1,B.m) +B.A6=new A.ag(B.c_,!1,!1,!1,!0,B.m) +B.A3=new A.ag(B.bO,!1,!1,!1,!0,B.m) +B.A4=new A.ag(B.bP,!1,!1,!1,!0,B.m) +B.A5=new A.ag(B.c0,!1,!1,!1,!0,B.m) +B.iM=new A.ag(B.c_,!1,!1,!1,!1,B.m) +B.iJ=new A.ag(B.bO,!1,!1,!1,!1,B.m) +B.iK=new A.ag(B.bP,!1,!1,!1,!1,B.m) +B.iL=new A.ag(B.c0,!1,!1,!1,!1,B.m) +B.A7=new A.ag(B.bO,!0,!1,!1,!1,B.m) +B.A8=new A.ag(B.bP,!0,!1,!1,!1,B.m) +B.Ab=new A.ag(B.bO,!0,!0,!1,!1,B.m) +B.Ac=new A.ag(B.bP,!0,!0,!1,!1,B.m) +B.pH=new A.h(32) +B.iF=new A.ag(B.pH,!1,!1,!1,!1,B.m) +B.hX=new A.h(4294967309) +B.iI=new A.ag(B.hX,!1,!1,!1,!1,B.m) +B.vv=new A.d0([B.lU,B.p,B.lR,B.p,B.lS,B.p,B.lT,B.p,B.A6,B.p,B.A3,B.p,B.A4,B.p,B.A5,B.p,B.iM,B.p,B.iJ,B.p,B.iK,B.p,B.iL,B.p,B.A7,B.p,B.A8,B.p,B.Ab,B.p,B.Ac,B.p,B.iF,B.p,B.iI,B.p],t.Fp) +B.Lo=new A.h(33) +B.Lp=new A.h(34) +B.Lq=new A.h(35) +B.Lr=new A.h(36) +B.Ls=new A.h(37) +B.Lt=new A.h(38) +B.Lu=new A.h(39) +B.Lv=new A.h(40) +B.Lw=new A.h(41) +B.pI=new A.h(42) +B.va=new A.h(43) +B.Lx=new A.h(44) +B.vb=new A.h(45) +B.vc=new A.h(46) +B.vd=new A.h(47) +B.ve=new A.h(48) +B.vf=new A.h(49) +B.vg=new A.h(50) +B.vh=new A.h(51) +B.vi=new A.h(52) +B.vj=new A.h(53) +B.vk=new A.h(54) +B.vl=new A.h(55) +B.vm=new A.h(56) +B.vn=new A.h(57) +B.Ly=new A.h(58) +B.Lz=new A.h(59) +B.LA=new A.h(60) +B.LB=new A.h(61) +B.LC=new A.h(62) +B.LD=new A.h(63) +B.LE=new A.h(64) +B.Mp=new A.h(91) +B.Mq=new A.h(92) +B.Mr=new A.h(93) +B.Ms=new A.h(94) +B.Mt=new A.h(95) +B.Mu=new A.h(96) +B.lf=new A.h(97) +B.vs=new A.h(98) +B.lg=new A.h(99) +B.L5=new A.h(100) +B.pC=new A.h(101) +B.pD=new A.h(102) +B.L6=new A.h(103) +B.L7=new A.h(104) +B.L8=new A.h(105) +B.L9=new A.h(106) +B.La=new A.h(107) +B.Lb=new A.h(108) +B.Lc=new A.h(109) +B.pE=new A.h(110) +B.Ld=new A.h(111) +B.pF=new A.h(112) +B.Le=new A.h(113) +B.Lf=new A.h(114) +B.Lg=new A.h(115) +B.pG=new A.h(116) +B.Lh=new A.h(117) +B.l3=new A.h(118) +B.Li=new A.h(119) +B.l4=new A.h(120) +B.Lj=new A.h(121) +B.fa=new A.h(122) +B.Lk=new A.h(123) +B.Ll=new A.h(124) +B.Lm=new A.h(125) +B.Ln=new A.h(126) +B.pJ=new A.h(4294967297) +B.hW=new A.h(4294967305) +B.pK=new A.h(4294967553) +B.hY=new A.h(4294967555) +B.pL=new A.h(4294967559) +B.pM=new A.h(4294967560) +B.pN=new A.h(4294967566) +B.pO=new A.h(4294967567) +B.pP=new A.h(4294967568) +B.pQ=new A.h(4294967569) +B.d7=new A.h(4294968069) +B.d8=new A.h(4294968070) +B.fd=new A.h(4294968071) +B.fe=new A.h(4294968072) +B.l6=new A.h(4294968321) +B.pR=new A.h(4294968322) +B.pS=new A.h(4294968323) +B.pT=new A.h(4294968324) +B.pU=new A.h(4294968325) +B.pV=new A.h(4294968326) +B.l7=new A.h(4294968327) +B.pW=new A.h(4294968328) +B.pX=new A.h(4294968329) +B.pY=new A.h(4294968330) +B.pZ=new A.h(4294968577) +B.q_=new A.h(4294968578) +B.q0=new A.h(4294968579) +B.q1=new A.h(4294968580) +B.q2=new A.h(4294968581) +B.q3=new A.h(4294968582) +B.q4=new A.h(4294968583) +B.q5=new A.h(4294968584) +B.q6=new A.h(4294968585) +B.q7=new A.h(4294968586) +B.q8=new A.h(4294968587) +B.q9=new A.h(4294968588) +B.qa=new A.h(4294968589) +B.qb=new A.h(4294968590) +B.qc=new A.h(4294968833) +B.qd=new A.h(4294968834) +B.qe=new A.h(4294968835) +B.qf=new A.h(4294968836) +B.qg=new A.h(4294968837) +B.qh=new A.h(4294968838) +B.qi=new A.h(4294968839) +B.qj=new A.h(4294968840) +B.qk=new A.h(4294968841) +B.ql=new A.h(4294968842) +B.qm=new A.h(4294968843) +B.qn=new A.h(4294969089) +B.qo=new A.h(4294969090) +B.qp=new A.h(4294969091) +B.qq=new A.h(4294969092) +B.qr=new A.h(4294969093) +B.qs=new A.h(4294969094) +B.qt=new A.h(4294969095) +B.qu=new A.h(4294969096) +B.qv=new A.h(4294969097) +B.qw=new A.h(4294969098) +B.qx=new A.h(4294969099) +B.qy=new A.h(4294969100) +B.qz=new A.h(4294969101) +B.qA=new A.h(4294969102) +B.qB=new A.h(4294969103) +B.qC=new A.h(4294969104) +B.qD=new A.h(4294969105) +B.qE=new A.h(4294969106) +B.qF=new A.h(4294969107) +B.qG=new A.h(4294969108) +B.qH=new A.h(4294969109) +B.qI=new A.h(4294969110) +B.qJ=new A.h(4294969111) +B.qK=new A.h(4294969112) +B.qL=new A.h(4294969113) +B.qM=new A.h(4294969114) +B.qN=new A.h(4294969115) +B.qO=new A.h(4294969116) +B.qP=new A.h(4294969117) +B.qQ=new A.h(4294969345) +B.qR=new A.h(4294969346) +B.qS=new A.h(4294969347) +B.qT=new A.h(4294969348) +B.qU=new A.h(4294969349) +B.qV=new A.h(4294969350) +B.qW=new A.h(4294969351) +B.qX=new A.h(4294969352) +B.qY=new A.h(4294969353) +B.qZ=new A.h(4294969354) +B.r_=new A.h(4294969355) +B.r0=new A.h(4294969356) +B.r1=new A.h(4294969357) +B.r2=new A.h(4294969358) +B.r3=new A.h(4294969359) +B.r4=new A.h(4294969360) +B.r5=new A.h(4294969361) +B.r6=new A.h(4294969362) +B.r7=new A.h(4294969363) +B.r8=new A.h(4294969364) +B.r9=new A.h(4294969365) +B.ra=new A.h(4294969366) +B.rb=new A.h(4294969367) +B.rc=new A.h(4294969368) +B.rd=new A.h(4294969601) +B.re=new A.h(4294969602) +B.rf=new A.h(4294969603) +B.rg=new A.h(4294969604) +B.rh=new A.h(4294969605) +B.ri=new A.h(4294969606) +B.rj=new A.h(4294969607) +B.rk=new A.h(4294969608) +B.rl=new A.h(4294969857) +B.rm=new A.h(4294969858) +B.rn=new A.h(4294969859) +B.ro=new A.h(4294969860) +B.rp=new A.h(4294969861) +B.rq=new A.h(4294969863) +B.rr=new A.h(4294969864) +B.rs=new A.h(4294969865) +B.rt=new A.h(4294969866) +B.ru=new A.h(4294969867) +B.rv=new A.h(4294969868) +B.rw=new A.h(4294969869) +B.rx=new A.h(4294969870) +B.ry=new A.h(4294969871) +B.rz=new A.h(4294969872) +B.rA=new A.h(4294969873) +B.rB=new A.h(4294970113) +B.rC=new A.h(4294970114) +B.rD=new A.h(4294970115) +B.rE=new A.h(4294970116) +B.rF=new A.h(4294970117) +B.rG=new A.h(4294970118) +B.rH=new A.h(4294970119) +B.rI=new A.h(4294970120) +B.rJ=new A.h(4294970121) +B.rK=new A.h(4294970122) +B.rL=new A.h(4294970123) +B.rM=new A.h(4294970124) +B.rN=new A.h(4294970125) +B.rO=new A.h(4294970126) +B.rP=new A.h(4294970127) +B.rQ=new A.h(4294970369) +B.rR=new A.h(4294970370) +B.rS=new A.h(4294970371) +B.rT=new A.h(4294970372) +B.rU=new A.h(4294970373) +B.rV=new A.h(4294970374) +B.rW=new A.h(4294970375) +B.rX=new A.h(4294970625) +B.rY=new A.h(4294970626) +B.rZ=new A.h(4294970627) +B.t_=new A.h(4294970628) +B.t0=new A.h(4294970629) +B.t1=new A.h(4294970630) +B.t2=new A.h(4294970631) +B.t3=new A.h(4294970632) +B.t4=new A.h(4294970633) +B.t5=new A.h(4294970634) +B.t6=new A.h(4294970635) +B.t7=new A.h(4294970636) +B.t8=new A.h(4294970637) +B.t9=new A.h(4294970638) +B.ta=new A.h(4294970639) +B.tb=new A.h(4294970640) +B.tc=new A.h(4294970641) +B.td=new A.h(4294970642) +B.te=new A.h(4294970643) +B.tf=new A.h(4294970644) +B.tg=new A.h(4294970645) +B.th=new A.h(4294970646) +B.ti=new A.h(4294970647) +B.tj=new A.h(4294970648) +B.tk=new A.h(4294970649) +B.tl=new A.h(4294970650) +B.tm=new A.h(4294970651) +B.tn=new A.h(4294970652) +B.to=new A.h(4294970653) +B.tp=new A.h(4294970654) +B.tq=new A.h(4294970655) +B.tr=new A.h(4294970656) +B.ts=new A.h(4294970657) +B.tt=new A.h(4294970658) +B.tu=new A.h(4294970659) +B.tv=new A.h(4294970660) +B.tw=new A.h(4294970661) +B.tx=new A.h(4294970662) +B.ty=new A.h(4294970663) +B.tz=new A.h(4294970664) +B.tA=new A.h(4294970665) +B.tB=new A.h(4294970666) +B.tC=new A.h(4294970667) +B.tD=new A.h(4294970668) +B.tE=new A.h(4294970669) +B.tF=new A.h(4294970670) +B.tG=new A.h(4294970671) +B.tH=new A.h(4294970672) +B.tI=new A.h(4294970673) +B.tJ=new A.h(4294970674) +B.tK=new A.h(4294970675) +B.tL=new A.h(4294970676) +B.tM=new A.h(4294970677) +B.tN=new A.h(4294970678) +B.tO=new A.h(4294970679) +B.tP=new A.h(4294970680) +B.tQ=new A.h(4294970681) +B.tR=new A.h(4294970682) +B.tS=new A.h(4294970683) +B.tT=new A.h(4294970684) +B.tU=new A.h(4294970685) +B.tV=new A.h(4294970686) +B.tW=new A.h(4294970687) +B.tX=new A.h(4294970688) +B.tY=new A.h(4294970689) +B.tZ=new A.h(4294970690) +B.u_=new A.h(4294970691) +B.u0=new A.h(4294970692) +B.u1=new A.h(4294970693) +B.u2=new A.h(4294970694) +B.u3=new A.h(4294970695) +B.u4=new A.h(4294970696) +B.u5=new A.h(4294970697) +B.u6=new A.h(4294970698) +B.u7=new A.h(4294970699) +B.u8=new A.h(4294970700) +B.u9=new A.h(4294970701) +B.ua=new A.h(4294970702) +B.ub=new A.h(4294970703) +B.uc=new A.h(4294970704) +B.ud=new A.h(4294970705) +B.ue=new A.h(4294970706) +B.uf=new A.h(4294970707) +B.ug=new A.h(4294970708) +B.uh=new A.h(4294970709) +B.ui=new A.h(4294970710) +B.uj=new A.h(4294970711) +B.uk=new A.h(4294970712) +B.ul=new A.h(4294970713) +B.um=new A.h(4294970714) +B.un=new A.h(4294970715) +B.uo=new A.h(4294970882) +B.up=new A.h(4294970884) +B.uq=new A.h(4294970885) +B.ur=new A.h(4294970886) +B.us=new A.h(4294970887) +B.ut=new A.h(4294970888) +B.uu=new A.h(4294970889) +B.uv=new A.h(4294971137) +B.uw=new A.h(4294971138) +B.ux=new A.h(4294971393) +B.uy=new A.h(4294971394) +B.uz=new A.h(4294971395) +B.uA=new A.h(4294971396) +B.uB=new A.h(4294971397) +B.uC=new A.h(4294971398) +B.uD=new A.h(4294971399) +B.uE=new A.h(4294971400) +B.uF=new A.h(4294971401) +B.uG=new A.h(4294971402) +B.uH=new A.h(4294971403) +B.uI=new A.h(4294971649) +B.uJ=new A.h(4294971650) +B.uK=new A.h(4294971651) +B.uL=new A.h(4294971652) +B.uM=new A.h(4294971653) +B.uN=new A.h(4294971654) +B.uO=new A.h(4294971655) +B.uP=new A.h(4294971656) +B.uQ=new A.h(4294971657) +B.uR=new A.h(4294971658) +B.uS=new A.h(4294971659) +B.uT=new A.h(4294971660) +B.uU=new A.h(4294971661) +B.uV=new A.h(4294971662) +B.uW=new A.h(4294971663) +B.uX=new A.h(4294971664) +B.uY=new A.h(4294971665) +B.uZ=new A.h(4294971666) +B.v_=new A.h(4294971667) +B.v0=new A.h(4294971668) +B.v1=new A.h(4294971669) +B.v2=new A.h(4294971670) +B.v3=new A.h(4294971671) +B.v4=new A.h(4294971672) +B.v5=new A.h(4294971673) +B.v6=new A.h(4294971674) +B.v7=new A.h(4294971675) +B.v8=new A.h(4294971905) +B.v9=new A.h(4294971906) +B.LF=new A.h(8589934592) +B.LG=new A.h(8589934593) +B.LH=new A.h(8589934594) +B.LI=new A.h(8589934595) +B.LJ=new A.h(8589934608) +B.LK=new A.h(8589934609) +B.LL=new A.h(8589934610) +B.LM=new A.h(8589934611) +B.LN=new A.h(8589934612) +B.LO=new A.h(8589934624) +B.LP=new A.h(8589934625) +B.LQ=new A.h(8589934626) +B.lc=new A.h(8589935117) +B.LR=new A.h(8589935144) +B.LS=new A.h(8589935145) +B.vo=new A.h(8589935146) +B.vp=new A.h(8589935147) +B.LT=new A.h(8589935148) +B.vq=new A.h(8589935149) +B.da=new A.h(8589935150) +B.vr=new A.h(8589935151) +B.ld=new A.h(8589935152) +B.fi=new A.h(8589935153) +B.db=new A.h(8589935154) +B.fj=new A.h(8589935155) +B.dc=new A.h(8589935156) +B.le=new A.h(8589935157) +B.dd=new A.h(8589935158) +B.fk=new A.h(8589935159) +B.de=new A.h(8589935160) +B.fl=new A.h(8589935161) +B.LU=new A.h(8589935165) +B.LV=new A.h(8589935361) +B.LW=new A.h(8589935362) +B.LX=new A.h(8589935363) +B.LY=new A.h(8589935364) +B.LZ=new A.h(8589935365) +B.M_=new A.h(8589935366) +B.M0=new A.h(8589935367) +B.M1=new A.h(8589935368) +B.M2=new A.h(8589935369) +B.M3=new A.h(8589935370) +B.M4=new A.h(8589935371) +B.M5=new A.h(8589935372) +B.M6=new A.h(8589935373) +B.M7=new A.h(8589935374) +B.M8=new A.h(8589935375) +B.M9=new A.h(8589935376) +B.Ma=new A.h(8589935377) +B.Mb=new A.h(8589935378) +B.Mc=new A.h(8589935379) +B.Md=new A.h(8589935380) +B.Me=new A.h(8589935381) +B.Mf=new A.h(8589935382) +B.Mg=new A.h(8589935383) +B.Mh=new A.h(8589935384) +B.Mi=new A.h(8589935385) +B.Mj=new A.h(8589935386) +B.Mk=new A.h(8589935387) +B.Ml=new A.h(8589935388) +B.Mm=new A.h(8589935389) +B.Mn=new A.h(8589935390) +B.Mo=new A.h(8589935391) +B.My=new A.d0([32,B.pH,33,B.Lo,34,B.Lp,35,B.Lq,36,B.Lr,37,B.Ls,38,B.Lt,39,B.Lu,40,B.Lv,41,B.Lw,42,B.pI,43,B.va,44,B.Lx,45,B.vb,46,B.vc,47,B.vd,48,B.ve,49,B.vf,50,B.vg,51,B.vh,52,B.vi,53,B.vj,54,B.vk,55,B.vl,56,B.vm,57,B.vn,58,B.Ly,59,B.Lz,60,B.LA,61,B.LB,62,B.LC,63,B.LD,64,B.LE,91,B.Mp,92,B.Mq,93,B.Mr,94,B.Ms,95,B.Mt,96,B.Mu,97,B.lf,98,B.vs,99,B.lg,100,B.L5,101,B.pC,102,B.pD,103,B.L6,104,B.L7,105,B.L8,106,B.L9,107,B.La,108,B.Lb,109,B.Lc,110,B.pE,111,B.Ld,112,B.pF,113,B.Le,114,B.Lf,115,B.Lg,116,B.pG,117,B.Lh,118,B.l3,119,B.Li,120,B.l4,121,B.Lj,122,B.fa,123,B.Lk,124,B.Ll,125,B.Lm,126,B.Ln,4294967297,B.pJ,4294967304,B.b2,4294967305,B.hW,4294967309,B.hX,4294967323,B.fb,4294967423,B.aU,4294967553,B.pK,4294967555,B.hY,4294967556,B.fc,4294967558,B.l5,4294967559,B.pL,4294967560,B.pM,4294967562,B.hZ,4294967564,B.i_,4294967566,B.pN,4294967567,B.pO,4294967568,B.pP,4294967569,B.pQ,4294968065,B.c_,4294968066,B.bO,4294968067,B.bP,4294968068,B.c0,4294968069,B.d7,4294968070,B.d8,4294968071,B.fd,4294968072,B.fe,4294968321,B.l6,4294968322,B.pR,4294968323,B.pS,4294968324,B.pT,4294968325,B.pU,4294968326,B.pV,4294968327,B.l7,4294968328,B.pW,4294968329,B.pX,4294968330,B.pY,4294968577,B.pZ,4294968578,B.q_,4294968579,B.q0,4294968580,B.q1,4294968581,B.q2,4294968582,B.q3,4294968583,B.q4,4294968584,B.q5,4294968585,B.q6,4294968586,B.q7,4294968587,B.q8,4294968588,B.q9,4294968589,B.qa,4294968590,B.qb,4294968833,B.qc,4294968834,B.qd,4294968835,B.qe,4294968836,B.qf,4294968837,B.qg,4294968838,B.qh,4294968839,B.qi,4294968840,B.qj,4294968841,B.qk,4294968842,B.ql,4294968843,B.qm,4294969089,B.qn,4294969090,B.qo,4294969091,B.qp,4294969092,B.qq,4294969093,B.qr,4294969094,B.qs,4294969095,B.qt,4294969096,B.qu,4294969097,B.qv,4294969098,B.qw,4294969099,B.qx,4294969100,B.qy,4294969101,B.qz,4294969102,B.qA,4294969103,B.qB,4294969104,B.qC,4294969105,B.qD,4294969106,B.qE,4294969107,B.qF,4294969108,B.qG,4294969109,B.qH,4294969110,B.qI,4294969111,B.qJ,4294969112,B.qK,4294969113,B.qL,4294969114,B.qM,4294969115,B.qN,4294969116,B.qO,4294969117,B.qP,4294969345,B.qQ,4294969346,B.qR,4294969347,B.qS,4294969348,B.qT,4294969349,B.qU,4294969350,B.qV,4294969351,B.qW,4294969352,B.qX,4294969353,B.qY,4294969354,B.qZ,4294969355,B.r_,4294969356,B.r0,4294969357,B.r1,4294969358,B.r2,4294969359,B.r3,4294969360,B.r4,4294969361,B.r5,4294969362,B.r6,4294969363,B.r7,4294969364,B.r8,4294969365,B.r9,4294969366,B.ra,4294969367,B.rb,4294969368,B.rc,4294969601,B.rd,4294969602,B.re,4294969603,B.rf,4294969604,B.rg,4294969605,B.rh,4294969606,B.ri,4294969607,B.rj,4294969608,B.rk,4294969857,B.rl,4294969858,B.rm,4294969859,B.rn,4294969860,B.ro,4294969861,B.rp,4294969863,B.rq,4294969864,B.rr,4294969865,B.rs,4294969866,B.rt,4294969867,B.ru,4294969868,B.rv,4294969869,B.rw,4294969870,B.rx,4294969871,B.ry,4294969872,B.rz,4294969873,B.rA,4294970113,B.rB,4294970114,B.rC,4294970115,B.rD,4294970116,B.rE,4294970117,B.rF,4294970118,B.rG,4294970119,B.rH,4294970120,B.rI,4294970121,B.rJ,4294970122,B.rK,4294970123,B.rL,4294970124,B.rM,4294970125,B.rN,4294970126,B.rO,4294970127,B.rP,4294970369,B.rQ,4294970370,B.rR,4294970371,B.rS,4294970372,B.rT,4294970373,B.rU,4294970374,B.rV,4294970375,B.rW,4294970625,B.rX,4294970626,B.rY,4294970627,B.rZ,4294970628,B.t_,4294970629,B.t0,4294970630,B.t1,4294970631,B.t2,4294970632,B.t3,4294970633,B.t4,4294970634,B.t5,4294970635,B.t6,4294970636,B.t7,4294970637,B.t8,4294970638,B.t9,4294970639,B.ta,4294970640,B.tb,4294970641,B.tc,4294970642,B.td,4294970643,B.te,4294970644,B.tf,4294970645,B.tg,4294970646,B.th,4294970647,B.ti,4294970648,B.tj,4294970649,B.tk,4294970650,B.tl,4294970651,B.tm,4294970652,B.tn,4294970653,B.to,4294970654,B.tp,4294970655,B.tq,4294970656,B.tr,4294970657,B.ts,4294970658,B.tt,4294970659,B.tu,4294970660,B.tv,4294970661,B.tw,4294970662,B.tx,4294970663,B.ty,4294970664,B.tz,4294970665,B.tA,4294970666,B.tB,4294970667,B.tC,4294970668,B.tD,4294970669,B.tE,4294970670,B.tF,4294970671,B.tG,4294970672,B.tH,4294970673,B.tI,4294970674,B.tJ,4294970675,B.tK,4294970676,B.tL,4294970677,B.tM,4294970678,B.tN,4294970679,B.tO,4294970680,B.tP,4294970681,B.tQ,4294970682,B.tR,4294970683,B.tS,4294970684,B.tT,4294970685,B.tU,4294970686,B.tV,4294970687,B.tW,4294970688,B.tX,4294970689,B.tY,4294970690,B.tZ,4294970691,B.u_,4294970692,B.u0,4294970693,B.u1,4294970694,B.u2,4294970695,B.u3,4294970696,B.u4,4294970697,B.u5,4294970698,B.u6,4294970699,B.u7,4294970700,B.u8,4294970701,B.u9,4294970702,B.ua,4294970703,B.ub,4294970704,B.uc,4294970705,B.ud,4294970706,B.ue,4294970707,B.uf,4294970708,B.ug,4294970709,B.uh,4294970710,B.ui,4294970711,B.uj,4294970712,B.uk,4294970713,B.ul,4294970714,B.um,4294970715,B.un,4294970882,B.uo,4294970884,B.up,4294970885,B.uq,4294970886,B.ur,4294970887,B.us,4294970888,B.ut,4294970889,B.uu,4294971137,B.uv,4294971138,B.uw,4294971393,B.ux,4294971394,B.uy,4294971395,B.uz,4294971396,B.uA,4294971397,B.uB,4294971398,B.uC,4294971399,B.uD,4294971400,B.uE,4294971401,B.uF,4294971402,B.uG,4294971403,B.uH,4294971649,B.uI,4294971650,B.uJ,4294971651,B.uK,4294971652,B.uL,4294971653,B.uM,4294971654,B.uN,4294971655,B.uO,4294971656,B.uP,4294971657,B.uQ,4294971658,B.uR,4294971659,B.uS,4294971660,B.uT,4294971661,B.uU,4294971662,B.uV,4294971663,B.uW,4294971664,B.uX,4294971665,B.uY,4294971666,B.uZ,4294971667,B.v_,4294971668,B.v0,4294971669,B.v1,4294971670,B.v2,4294971671,B.v3,4294971672,B.v4,4294971673,B.v5,4294971674,B.v6,4294971675,B.v7,4294971905,B.v8,4294971906,B.v9,8589934592,B.LF,8589934593,B.LG,8589934594,B.LH,8589934595,B.LI,8589934608,B.LJ,8589934609,B.LK,8589934610,B.LL,8589934611,B.LM,8589934612,B.LN,8589934624,B.LO,8589934625,B.LP,8589934626,B.LQ,8589934848,B.ff,8589934849,B.i0,8589934850,B.cJ,8589934851,B.d9,8589934852,B.fg,8589934853,B.i1,8589934854,B.fh,8589934855,B.i2,8589935088,B.l8,8589935090,B.l9,8589935092,B.la,8589935094,B.lb,8589935117,B.lc,8589935144,B.LR,8589935145,B.LS,8589935146,B.vo,8589935147,B.vp,8589935148,B.LT,8589935149,B.vq,8589935150,B.da,8589935151,B.vr,8589935152,B.ld,8589935153,B.fi,8589935154,B.db,8589935155,B.fj,8589935156,B.dc,8589935157,B.le,8589935158,B.dd,8589935159,B.fk,8589935160,B.de,8589935161,B.fl,8589935165,B.LU,8589935361,B.LV,8589935362,B.LW,8589935363,B.LX,8589935364,B.LY,8589935365,B.LZ,8589935366,B.M_,8589935367,B.M0,8589935368,B.M1,8589935369,B.M2,8589935370,B.M3,8589935371,B.M4,8589935372,B.M5,8589935373,B.M6,8589935374,B.M7,8589935375,B.M8,8589935376,B.M9,8589935377,B.Ma,8589935378,B.Mb,8589935379,B.Mc,8589935380,B.Md,8589935381,B.Me,8589935382,B.Mf,8589935383,B.Mg,8589935384,B.Mh,8589935385,B.Mi,8589935386,B.Mj,8589935387,B.Mk,8589935388,B.Ml,8589935389,B.Mm,8589935390,B.Mn,8589935391,B.Mo],A.aD("d0")) +B.Rf=new A.ag(B.lc,!1,!1,!1,!1,B.m) +B.Ad=new A.ag(B.fb,!1,!1,!1,!1,B.m) +B.Ae=new A.ag(B.hW,!1,!1,!1,!1,B.m) +B.A1=new A.ag(B.hW,!1,!0,!1,!1,B.m) +B.fy=new A.ag(B.fe,!1,!1,!1,!1,B.m) +B.fB=new A.ag(B.fd,!1,!1,!1,!1,B.m) +B.D8=new A.lX() +B.nd=new A.tW() +B.nf=new A.h5() +B.nm=new A.qW() +B.no=new A.rg() +B.is=new A.QB(0,"line") +B.Q_=new A.ey(B.aR,B.is) +B.PZ=new A.ey(B.aC,B.is) +B.Q1=new A.ey(B.ba,B.is) +B.Q0=new A.ey(B.bU,B.is) +B.lJ=new A.ey(B.aR,B.ft) +B.Mz=new A.d0([B.iF,B.D8,B.iI,B.nd,B.Rf,B.nd,B.Ad,B.nf,B.Ae,B.nm,B.A1,B.no,B.iL,B.Q_,B.iM,B.PZ,B.iJ,B.Q1,B.iK,B.Q0,B.fy,B.lJ,B.fB,B.it],t.Fp) +B.Nr={Abort:0,Again:1,AltLeft:2,AltRight:3,ArrowDown:4,ArrowLeft:5,ArrowRight:6,ArrowUp:7,AudioVolumeDown:8,AudioVolumeMute:9,AudioVolumeUp:10,Backquote:11,Backslash:12,Backspace:13,BracketLeft:14,BracketRight:15,BrightnessDown:16,BrightnessUp:17,BrowserBack:18,BrowserFavorites:19,BrowserForward:20,BrowserHome:21,BrowserRefresh:22,BrowserSearch:23,BrowserStop:24,CapsLock:25,Comma:26,ContextMenu:27,ControlLeft:28,ControlRight:29,Convert:30,Copy:31,Cut:32,Delete:33,Digit0:34,Digit1:35,Digit2:36,Digit3:37,Digit4:38,Digit5:39,Digit6:40,Digit7:41,Digit8:42,Digit9:43,DisplayToggleIntExt:44,Eject:45,End:46,Enter:47,Equal:48,Esc:49,Escape:50,F1:51,F10:52,F11:53,F12:54,F13:55,F14:56,F15:57,F16:58,F17:59,F18:60,F19:61,F2:62,F20:63,F21:64,F22:65,F23:66,F24:67,F3:68,F4:69,F5:70,F6:71,F7:72,F8:73,F9:74,Find:75,Fn:76,FnLock:77,GameButton1:78,GameButton10:79,GameButton11:80,GameButton12:81,GameButton13:82,GameButton14:83,GameButton15:84,GameButton16:85,GameButton2:86,GameButton3:87,GameButton4:88,GameButton5:89,GameButton6:90,GameButton7:91,GameButton8:92,GameButton9:93,GameButtonA:94,GameButtonB:95,GameButtonC:96,GameButtonLeft1:97,GameButtonLeft2:98,GameButtonMode:99,GameButtonRight1:100,GameButtonRight2:101,GameButtonSelect:102,GameButtonStart:103,GameButtonThumbLeft:104,GameButtonThumbRight:105,GameButtonX:106,GameButtonY:107,GameButtonZ:108,Help:109,Home:110,Hyper:111,Insert:112,IntlBackslash:113,IntlRo:114,IntlYen:115,KanaMode:116,KeyA:117,KeyB:118,KeyC:119,KeyD:120,KeyE:121,KeyF:122,KeyG:123,KeyH:124,KeyI:125,KeyJ:126,KeyK:127,KeyL:128,KeyM:129,KeyN:130,KeyO:131,KeyP:132,KeyQ:133,KeyR:134,KeyS:135,KeyT:136,KeyU:137,KeyV:138,KeyW:139,KeyX:140,KeyY:141,KeyZ:142,KeyboardLayoutSelect:143,Lang1:144,Lang2:145,Lang3:146,Lang4:147,Lang5:148,LaunchApp1:149,LaunchApp2:150,LaunchAssistant:151,LaunchControlPanel:152,LaunchMail:153,LaunchScreenSaver:154,MailForward:155,MailReply:156,MailSend:157,MediaFastForward:158,MediaPause:159,MediaPlay:160,MediaPlayPause:161,MediaRecord:162,MediaRewind:163,MediaSelect:164,MediaStop:165,MediaTrackNext:166,MediaTrackPrevious:167,MetaLeft:168,MetaRight:169,MicrophoneMuteToggle:170,Minus:171,NonConvert:172,NumLock:173,Numpad0:174,Numpad1:175,Numpad2:176,Numpad3:177,Numpad4:178,Numpad5:179,Numpad6:180,Numpad7:181,Numpad8:182,Numpad9:183,NumpadAdd:184,NumpadBackspace:185,NumpadClear:186,NumpadClearEntry:187,NumpadComma:188,NumpadDecimal:189,NumpadDivide:190,NumpadEnter:191,NumpadEqual:192,NumpadMemoryAdd:193,NumpadMemoryClear:194,NumpadMemoryRecall:195,NumpadMemoryStore:196,NumpadMemorySubtract:197,NumpadMultiply:198,NumpadParenLeft:199,NumpadParenRight:200,NumpadSubtract:201,Open:202,PageDown:203,PageUp:204,Paste:205,Pause:206,Period:207,Power:208,PrintScreen:209,PrivacyScreenToggle:210,Props:211,Quote:212,Resume:213,ScrollLock:214,Select:215,SelectTask:216,Semicolon:217,ShiftLeft:218,ShiftRight:219,ShowAllWindows:220,Slash:221,Sleep:222,Space:223,Super:224,Suspend:225,Tab:226,Turbo:227,Undo:228,WakeUp:229,ZoomToggle:230} +B.MA=new A.bT(B.Nr,[458907,458873,458978,458982,458833,458832,458831,458834,458881,458879,458880,458805,458801,458794,458799,458800,786544,786543,786980,786986,786981,786979,786983,786977,786982,458809,458806,458853,458976,458980,458890,458876,458875,458828,458791,458782,458783,458784,458785,458786,458787,458788,458789,458790,65717,786616,458829,458792,458798,458793,458793,458810,458819,458820,458821,458856,458857,458858,458859,458860,458861,458862,458811,458863,458864,458865,458866,458867,458812,458813,458814,458815,458816,458817,458818,458878,18,19,392961,392970,392971,392972,392973,392974,392975,392976,392962,392963,392964,392965,392966,392967,392968,392969,392977,392978,392979,392980,392981,392982,392983,392984,392985,392986,392987,392988,392989,392990,392991,458869,458826,16,458825,458852,458887,458889,458888,458756,458757,458758,458759,458760,458761,458762,458763,458764,458765,458766,458767,458768,458769,458770,458771,458772,458773,458774,458775,458776,458777,458778,458779,458780,458781,787101,458896,458897,458898,458899,458900,786836,786834,786891,786847,786826,786865,787083,787081,787084,786611,786609,786608,786637,786610,786612,786819,786615,786613,786614,458979,458983,24,458797,458891,458835,458850,458841,458842,458843,458844,458845,458846,458847,458848,458849,458839,458939,458968,458969,458885,458851,458836,458840,458855,458963,458962,458961,458960,458964,458837,458934,458935,458838,458868,458830,458827,458877,458824,458807,458854,458822,23,458915,458804,21,458823,458871,786850,458803,458977,458981,787103,458808,65666,458796,17,20,458795,22,458874,65667,786994],t.eL) +B.MC=new A.d0([0,"FontWeight.w100",1,"FontWeight.w200",2,"FontWeight.w300",3,"FontWeight.w400",4,"FontWeight.w500",5,"FontWeight.w600",6,"FontWeight.w700",7,"FontWeight.w800",8,"FontWeight.w900"],A.aD("d0")) +B.vH={AVRInput:0,AVRPower:1,Accel:2,Accept:3,Again:4,AllCandidates:5,Alphanumeric:6,AltGraph:7,AppSwitch:8,ArrowDown:9,ArrowLeft:10,ArrowRight:11,ArrowUp:12,Attn:13,AudioBalanceLeft:14,AudioBalanceRight:15,AudioBassBoostDown:16,AudioBassBoostToggle:17,AudioBassBoostUp:18,AudioFaderFront:19,AudioFaderRear:20,AudioSurroundModeNext:21,AudioTrebleDown:22,AudioTrebleUp:23,AudioVolumeDown:24,AudioVolumeMute:25,AudioVolumeUp:26,Backspace:27,BrightnessDown:28,BrightnessUp:29,BrowserBack:30,BrowserFavorites:31,BrowserForward:32,BrowserHome:33,BrowserRefresh:34,BrowserSearch:35,BrowserStop:36,Call:37,Camera:38,CameraFocus:39,Cancel:40,CapsLock:41,ChannelDown:42,ChannelUp:43,Clear:44,Close:45,ClosedCaptionToggle:46,CodeInput:47,ColorF0Red:48,ColorF1Green:49,ColorF2Yellow:50,ColorF3Blue:51,ColorF4Grey:52,ColorF5Brown:53,Compose:54,ContextMenu:55,Convert:56,Copy:57,CrSel:58,Cut:59,DVR:60,Delete:61,Dimmer:62,DisplaySwap:63,Eisu:64,Eject:65,End:66,EndCall:67,Enter:68,EraseEof:69,Esc:70,Escape:71,ExSel:72,Execute:73,Exit:74,F1:75,F10:76,F11:77,F12:78,F13:79,F14:80,F15:81,F16:82,F17:83,F18:84,F19:85,F2:86,F20:87,F21:88,F22:89,F23:90,F24:91,F3:92,F4:93,F5:94,F6:95,F7:96,F8:97,F9:98,FavoriteClear0:99,FavoriteClear1:100,FavoriteClear2:101,FavoriteClear3:102,FavoriteRecall0:103,FavoriteRecall1:104,FavoriteRecall2:105,FavoriteRecall3:106,FavoriteStore0:107,FavoriteStore1:108,FavoriteStore2:109,FavoriteStore3:110,FinalMode:111,Find:112,Fn:113,FnLock:114,GoBack:115,GoHome:116,GroupFirst:117,GroupLast:118,GroupNext:119,GroupPrevious:120,Guide:121,GuideNextDay:122,GuidePreviousDay:123,HangulMode:124,HanjaMode:125,Hankaku:126,HeadsetHook:127,Help:128,Hibernate:129,Hiragana:130,HiraganaKatakana:131,Home:132,Hyper:133,Info:134,Insert:135,InstantReplay:136,JunjaMode:137,KanaMode:138,KanjiMode:139,Katakana:140,Key11:141,Key12:142,LastNumberRedial:143,LaunchApplication1:144,LaunchApplication2:145,LaunchAssistant:146,LaunchCalendar:147,LaunchContacts:148,LaunchControlPanel:149,LaunchMail:150,LaunchMediaPlayer:151,LaunchMusicPlayer:152,LaunchPhone:153,LaunchScreenSaver:154,LaunchSpreadsheet:155,LaunchWebBrowser:156,LaunchWebCam:157,LaunchWordProcessor:158,Link:159,ListProgram:160,LiveContent:161,Lock:162,LogOff:163,MailForward:164,MailReply:165,MailSend:166,MannerMode:167,MediaApps:168,MediaAudioTrack:169,MediaClose:170,MediaFastForward:171,MediaLast:172,MediaPause:173,MediaPlay:174,MediaPlayPause:175,MediaRecord:176,MediaRewind:177,MediaSkip:178,MediaSkipBackward:179,MediaSkipForward:180,MediaStepBackward:181,MediaStepForward:182,MediaStop:183,MediaTopMenu:184,MediaTrackNext:185,MediaTrackPrevious:186,MicrophoneToggle:187,MicrophoneVolumeDown:188,MicrophoneVolumeMute:189,MicrophoneVolumeUp:190,ModeChange:191,NavigateIn:192,NavigateNext:193,NavigateOut:194,NavigatePrevious:195,New:196,NextCandidate:197,NextFavoriteChannel:198,NextUserProfile:199,NonConvert:200,Notification:201,NumLock:202,OnDemand:203,Open:204,PageDown:205,PageUp:206,Pairing:207,Paste:208,Pause:209,PinPDown:210,PinPMove:211,PinPToggle:212,PinPUp:213,Play:214,PlaySpeedDown:215,PlaySpeedReset:216,PlaySpeedUp:217,Power:218,PowerOff:219,PreviousCandidate:220,Print:221,PrintScreen:222,Process:223,Props:224,RandomToggle:225,RcLowBattery:226,RecordSpeedNext:227,Redo:228,RfBypass:229,Romaji:230,STBInput:231,STBPower:232,Save:233,ScanChannelsToggle:234,ScreenModeNext:235,ScrollLock:236,Select:237,Settings:238,ShiftLevel5:239,SingleCandidate:240,Soft1:241,Soft2:242,Soft3:243,Soft4:244,Soft5:245,Soft6:246,Soft7:247,Soft8:248,SpeechCorrectionList:249,SpeechInputToggle:250,SpellCheck:251,SplitScreenToggle:252,Standby:253,Subtitle:254,Super:255,Symbol:256,SymbolLock:257,TV:258,TV3DMode:259,TVAntennaCable:260,TVAudioDescription:261,TVAudioDescriptionMixDown:262,TVAudioDescriptionMixUp:263,TVContentsMenu:264,TVDataService:265,TVInput:266,TVInputComponent1:267,TVInputComponent2:268,TVInputComposite1:269,TVInputComposite2:270,TVInputHDMI1:271,TVInputHDMI2:272,TVInputHDMI3:273,TVInputHDMI4:274,TVInputVGA1:275,TVMediaContext:276,TVNetwork:277,TVNumberEntry:278,TVPower:279,TVRadioService:280,TVSatellite:281,TVSatelliteBS:282,TVSatelliteCS:283,TVSatelliteToggle:284,TVTerrestrialAnalog:285,TVTerrestrialDigital:286,TVTimer:287,Tab:288,Teletext:289,Undo:290,Unidentified:291,VideoModeNext:292,VoiceDial:293,WakeUp:294,Wink:295,Zenkaku:296,ZenkakuHankaku:297,ZoomIn:298,ZoomOut:299,ZoomToggle:300} +B.MD=new A.bT(B.vH,[B.t3,B.t4,B.pK,B.pZ,B.q_,B.qn,B.qo,B.hY,B.ux,B.c_,B.bO,B.bP,B.c0,B.q0,B.rX,B.rY,B.rZ,B.uo,B.t_,B.t0,B.t1,B.t2,B.up,B.uq,B.ry,B.rA,B.rz,B.b2,B.qc,B.qd,B.rQ,B.rR,B.rS,B.rT,B.rU,B.rV,B.rW,B.uy,B.qe,B.uz,B.q1,B.fc,B.t5,B.t6,B.l6,B.rl,B.td,B.qp,B.t7,B.t8,B.t9,B.ta,B.tb,B.tc,B.qq,B.q2,B.qr,B.pR,B.pS,B.pT,B.ub,B.aU,B.te,B.tf,B.qG,B.qf,B.d7,B.uA,B.hX,B.pU,B.fb,B.fb,B.pV,B.q3,B.tg,B.qQ,B.qZ,B.r_,B.r0,B.r1,B.r2,B.r3,B.r4,B.r5,B.r6,B.r7,B.qR,B.r8,B.r9,B.ra,B.rb,B.rc,B.qS,B.qT,B.qU,B.qV,B.qW,B.qX,B.qY,B.th,B.ti,B.tj,B.tk,B.tl,B.tm,B.tn,B.to,B.tp,B.tq,B.tr,B.ts,B.qs,B.q4,B.l5,B.pL,B.uB,B.uC,B.qt,B.qu,B.qv,B.qw,B.tt,B.tu,B.tv,B.qD,B.qE,B.qH,B.uD,B.q5,B.qk,B.qI,B.qJ,B.d8,B.pM,B.tw,B.l7,B.tx,B.qF,B.qK,B.qL,B.qM,B.v8,B.v9,B.uE,B.rG,B.rB,B.rO,B.rC,B.rM,B.rP,B.rD,B.rE,B.rF,B.rN,B.rH,B.rI,B.rJ,B.rK,B.rL,B.ty,B.tz,B.tA,B.tB,B.qg,B.rm,B.rn,B.ro,B.uG,B.tC,B.uc,B.un,B.tD,B.tE,B.tF,B.tG,B.rp,B.tH,B.tI,B.tJ,B.ud,B.ue,B.uf,B.ug,B.rq,B.uh,B.rr,B.rs,B.ur,B.us,B.uu,B.ut,B.qx,B.ui,B.uj,B.uk,B.ul,B.rt,B.qy,B.tK,B.tL,B.qz,B.uF,B.hZ,B.tM,B.ru,B.fd,B.fe,B.um,B.pW,B.q6,B.tN,B.tO,B.tP,B.tQ,B.q7,B.tR,B.tS,B.tT,B.qh,B.qi,B.qA,B.rv,B.qj,B.qB,B.q8,B.tU,B.tV,B.tW,B.pX,B.tX,B.qN,B.u1,B.u2,B.rw,B.tY,B.tZ,B.i_,B.q9,B.u_,B.pQ,B.qC,B.rd,B.re,B.rf,B.rg,B.rh,B.ri,B.rj,B.rk,B.uv,B.uw,B.rx,B.u0,B.ql,B.u3,B.pN,B.pO,B.pP,B.u5,B.uI,B.uJ,B.uK,B.uL,B.uM,B.uN,B.uO,B.u6,B.uP,B.uQ,B.uR,B.uS,B.uT,B.uU,B.uV,B.uW,B.uX,B.uY,B.uZ,B.v_,B.u7,B.v0,B.v1,B.v2,B.v3,B.v4,B.v5,B.v6,B.v7,B.hW,B.u4,B.pY,B.pJ,B.u8,B.uH,B.qm,B.u9,B.qO,B.qP,B.qa,B.qb,B.ua],A.aD("bT")) +B.ME=new A.bT(B.vH,[4294970632,4294970633,4294967553,4294968577,4294968578,4294969089,4294969090,4294967555,4294971393,4294968065,4294968066,4294968067,4294968068,4294968579,4294970625,4294970626,4294970627,4294970882,4294970628,4294970629,4294970630,4294970631,4294970884,4294970885,4294969871,4294969873,4294969872,4294967304,4294968833,4294968834,4294970369,4294970370,4294970371,4294970372,4294970373,4294970374,4294970375,4294971394,4294968835,4294971395,4294968580,4294967556,4294970634,4294970635,4294968321,4294969857,4294970642,4294969091,4294970636,4294970637,4294970638,4294970639,4294970640,4294970641,4294969092,4294968581,4294969093,4294968322,4294968323,4294968324,4294970703,4294967423,4294970643,4294970644,4294969108,4294968836,4294968069,4294971396,4294967309,4294968325,4294967323,4294967323,4294968326,4294968582,4294970645,4294969345,4294969354,4294969355,4294969356,4294969357,4294969358,4294969359,4294969360,4294969361,4294969362,4294969363,4294969346,4294969364,4294969365,4294969366,4294969367,4294969368,4294969347,4294969348,4294969349,4294969350,4294969351,4294969352,4294969353,4294970646,4294970647,4294970648,4294970649,4294970650,4294970651,4294970652,4294970653,4294970654,4294970655,4294970656,4294970657,4294969094,4294968583,4294967558,4294967559,4294971397,4294971398,4294969095,4294969096,4294969097,4294969098,4294970658,4294970659,4294970660,4294969105,4294969106,4294969109,4294971399,4294968584,4294968841,4294969110,4294969111,4294968070,4294967560,4294970661,4294968327,4294970662,4294969107,4294969112,4294969113,4294969114,4294971905,4294971906,4294971400,4294970118,4294970113,4294970126,4294970114,4294970124,4294970127,4294970115,4294970116,4294970117,4294970125,4294970119,4294970120,4294970121,4294970122,4294970123,4294970663,4294970664,4294970665,4294970666,4294968837,4294969858,4294969859,4294969860,4294971402,4294970667,4294970704,4294970715,4294970668,4294970669,4294970670,4294970671,4294969861,4294970672,4294970673,4294970674,4294970705,4294970706,4294970707,4294970708,4294969863,4294970709,4294969864,4294969865,4294970886,4294970887,4294970889,4294970888,4294969099,4294970710,4294970711,4294970712,4294970713,4294969866,4294969100,4294970675,4294970676,4294969101,4294971401,4294967562,4294970677,4294969867,4294968071,4294968072,4294970714,4294968328,4294968585,4294970678,4294970679,4294970680,4294970681,4294968586,4294970682,4294970683,4294970684,4294968838,4294968839,4294969102,4294969868,4294968840,4294969103,4294968587,4294970685,4294970686,4294970687,4294968329,4294970688,4294969115,4294970693,4294970694,4294969869,4294970689,4294970690,4294967564,4294968588,4294970691,4294967569,4294969104,4294969601,4294969602,4294969603,4294969604,4294969605,4294969606,4294969607,4294969608,4294971137,4294971138,4294969870,4294970692,4294968842,4294970695,4294967566,4294967567,4294967568,4294970697,4294971649,4294971650,4294971651,4294971652,4294971653,4294971654,4294971655,4294970698,4294971656,4294971657,4294971658,4294971659,4294971660,4294971661,4294971662,4294971663,4294971664,4294971665,4294971666,4294971667,4294970699,4294971668,4294971669,4294971670,4294971671,4294971672,4294971673,4294971674,4294971675,4294967305,4294970696,4294968330,4294967297,4294970700,4294971403,4294968843,4294970701,4294969116,4294969117,4294968589,4294968590,4294970702],t.eL) +B.Nu={"application/vnd.android.package-archive":0,"application/epub+zip":1,"application/gzip":2,"application/java-archive":3,"application/json":4,"application/ld+json":5,"application/msword":6,"application/octet-stream":7,"application/ogg":8,"application/pdf":9,"application/php":10,"application/rtf":11,"application/vnd.amazon.ebook":12,"application/vnd.apple.installer+xml":13,"application/vnd.mozilla.xul+xml":14,"application/vnd.ms-excel":15,"application/vnd.ms-fontobject":16,"application/vnd.ms-powerpoint":17,"application/vnd.oasis.opendocument.presentation":18,"application/vnd.oasis.opendocument.spreadsheet":19,"application/vnd.oasis.opendocument.text":20,"application/vnd.openxmlformats-officedocument.presentationml.presentation":21,"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":22,"application/vnd.openxmlformats-officedocument.wordprocessingml.document":23,"application/vnd.rar":24,"application/vnd.visio":25,"application/x-7z-compressed":26,"application/x-abiword":27,"application/x-bzip":28,"application/x-bzip2":29,"application/x-csh":30,"application/x-freearc":31,"application/x-sh":32,"application/x-shockwave-flash":33,"application/x-tar":34,"application/xhtml+xml":35,"application/xml":36,"application/zip":37,"audio/3gpp":38,"audio/3gpp2":39,"audio/aac":40,"audio/x-aac":41,"audio/midi":42,"audio/x-midi":43,"audio/x-m4a":44,"audio/m4a":45,"audio/mpeg":46,"audio/ogg":47,"audio/opus":48,"audio/wav":49,"audio/x-wav":50,"audio/webm":51,"font/otf":52,"font/ttf":53,"font/woff":54,"font/woff2":55,"image/bmp":56,"image/gif":57,"image/jpeg":58,"image/png":59,"image/svg+xml":60,"image/tiff":61,"image/vnd.microsoft.icon":62,"image/webp":63,"text/calendar":64,"text/css":65,"text/csv":66,"text/html":67,"text/javascript":68,"text/plain":69,"text/xml":70,"video/3gpp":71,"video/3gpp2":72,"video/mp2t":73,"video/mpeg":74,"video/ogg":75,"video/webm":76,"video/x-msvideo":77,"video/quicktime":78} +B.MF=new A.bT(B.Nu,[".apk",".epub",".gz",".jar",".json",".jsonld",".doc",".bin",".ogx",".pdf",".php",".rtf",".azw",".mpkg",".xul",".xls",".eot",".ppt",".odp",".ods",".odt",".pptx",".xlsx",".docx",".rar",".vsd",".7z",".abw",".bz",".bz2",".csh",".arc",".sh",".swf",".tar",".xhtml",".xml",".zip",".3gp",".3g2",".aac",".aac",".midi",".midi",".m4a",".m4a",".mp3",".oga",".opus",".wav",".wav",".weba",".otf",".ttf",".woff",".woff2",".bmp",".gif",".jpg",".png",".svg",".tiff",".ico",".webp",".ics",".css",".csv",".html",".js",".txt",".xml",".3gp",".3g2",".ts",".mpeg",".ogv",".webm",".avi",".mov"],t.li) +B.Nw={alias:0,allScroll:1,basic:2,cell:3,click:4,contextMenu:5,copy:6,forbidden:7,grab:8,grabbing:9,help:10,move:11,none:12,noDrop:13,precise:14,progress:15,text:16,resizeColumn:17,resizeDown:18,resizeDownLeft:19,resizeDownRight:20,resizeLeft:21,resizeLeftRight:22,resizeRight:23,resizeRow:24,resizeUp:25,resizeUpDown:26,resizeUpLeft:27,resizeUpRight:28,resizeUpLeftDownRight:29,resizeUpRightDownLeft:30,verticalText:31,wait:32,zoomIn:33,zoomOut:34} +B.MG=new A.bT(B.Nw,["alias","all-scroll","default","cell","pointer","context-menu","copy","not-allowed","grab","grabbing","help","move","none","no-drop","crosshair","progress","text","col-resize","s-resize","sw-resize","se-resize","w-resize","ew-resize","e-resize","row-resize","n-resize","ns-resize","nw-resize","ne-resize","nwse-resize","nesw-resize","vertical-text","wait","zoom-in","zoom-out"],t.li) +B.Ru=new A.ag(B.b2,!1,!1,!1,!1,B.m) +B.R1=new A.ag(B.b2,!1,!0,!1,!1,B.m) +B.R0=new A.ag(B.aU,!1,!1,!1,!1,B.m) +B.QQ=new A.ag(B.aU,!1,!0,!1,!1,B.m) +B.Rl=new A.ag(B.b2,!1,!0,!0,!1,B.m) +B.Rc=new A.ag(B.b2,!1,!1,!0,!1,B.m) +B.Rz=new A.ag(B.aU,!1,!0,!0,!1,B.m) +B.Rp=new A.ag(B.aU,!1,!1,!0,!1,B.m) +B.vw=new A.d0([B.Ru,B.p,B.R1,B.p,B.R0,B.p,B.QQ,B.p,B.Rl,B.p,B.Rc,B.p,B.Rz,B.p,B.Rp,B.p],t.Fp) +B.No={d:0,E:1,EEEE:2,LLL:3,LLLL:4,M:5,Md:6,MEd:7,MMM:8,MMMd:9,MMMEd:10,MMMM:11,MMMMd:12,MMMMEEEEd:13,QQQ:14,QQQQ:15,y:16,yM:17,yMd:18,yMEd:19,yMMM:20,yMMMd:21,yMMMEd:22,yMMMM:23,yMMMMd:24,yMMMMEEEEd:25,yQQQ:26,yQQQQ:27,H:28,Hm:29,Hms:30,j:31,jm:32,jms:33,jmv:34,jmz:35,jz:36,m:37,ms:38,s:39,v:40,z:41,zzzz:42,ZZZZ:43} +B.MH=new A.bT(B.No,["d","ccc","cccc","LLL","LLLL","L","M/d","EEE, M/d","LLL","MMM d","EEE, MMM d","LLLL","MMMM d","EEEE, MMMM d","QQQ","QQQQ","y","M/y","M/d/y","EEE, M/d/y","MMM y","MMM d, y","EEE, MMM d, y","MMMM y","MMMM d, y","EEEE, MMMM d, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h\u202fa","h:mm\u202fa","h:mm:ss\u202fa","h:mm\u202fa v","h:mm\u202fa z","h\u202fa z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.li) +B.Ny={type:0} +B.MI=new A.bT(B.Ny,["line"],t.li) +B.bs={} +B.MK=new A.bT(B.bs,[],A.aD("bT")) +B.vz=new A.bT(B.bs,[],A.aD("bT")) +B.i6=new A.bT(B.bs,[],A.aD("bT")) +B.ML=new A.bT(B.bs,[],A.aD("bT")) +B.vx=new A.bT(B.bs,[],A.aD("bT>")) +B.a_M=new A.bT(B.bs,[],t.li) +B.lh=new A.bT(B.bs,[],A.aD("bT")) +B.vA=new A.bT(B.bs,[],A.aD("bT")) +B.MJ=new A.bT(B.bs,[],A.aD("bT")) +B.vy=new A.bT(B.bs,[],A.aD("bT>")) +B.Jl=s([42,null,null,8589935146],t.Z) +B.Jm=s([43,null,null,8589935147],t.Z) +B.Jn=s([45,null,null,8589935149],t.Z) +B.Jo=s([46,null,null,8589935150],t.Z) +B.Jp=s([47,null,null,8589935151],t.Z) +B.Jq=s([48,null,null,8589935152],t.Z) +B.Jr=s([49,null,null,8589935153],t.Z) +B.Jt=s([50,null,null,8589935154],t.Z) +B.Jv=s([51,null,null,8589935155],t.Z) +B.Jw=s([52,null,null,8589935156],t.Z) +B.Jx=s([53,null,null,8589935157],t.Z) +B.Jy=s([54,null,null,8589935158],t.Z) +B.Jz=s([55,null,null,8589935159],t.Z) +B.JA=s([56,null,null,8589935160],t.Z) +B.JC=s([57,null,null,8589935161],t.Z) +B.Ke=s([8589934852,8589934852,8589934853,null],t.Z) +B.Ja=s([4294967555,null,4294967555,null],t.Z) +B.Jb=s([4294968065,null,null,8589935154],t.Z) +B.Jc=s([4294968066,null,null,8589935156],t.Z) +B.Jd=s([4294968067,null,null,8589935158],t.Z) +B.Je=s([4294968068,null,null,8589935160],t.Z) +B.Jj=s([4294968321,null,null,8589935157],t.Z) +B.Kf=s([8589934848,8589934848,8589934849,null],t.Z) +B.J9=s([4294967423,null,null,8589935150],t.Z) +B.Jf=s([4294968069,null,null,8589935153],t.Z) +B.J8=s([4294967309,null,null,8589935117],t.Z) +B.Jg=s([4294968070,null,null,8589935159],t.Z) +B.Jk=s([4294968327,null,null,8589935152],t.Z) +B.Kg=s([8589934854,8589934854,8589934855,null],t.Z) +B.Jh=s([4294968071,null,null,8589935155],t.Z) +B.Ji=s([4294968072,null,null,8589935161],t.Z) +B.Kh=s([8589934850,8589934850,8589934851,null],t.Z) +B.vB=new A.d0(["*",B.Jl,"+",B.Jm,"-",B.Jn,".",B.Jo,"/",B.Jp,"0",B.Jq,"1",B.Jr,"2",B.Jt,"3",B.Jv,"4",B.Jw,"5",B.Jx,"6",B.Jy,"7",B.Jz,"8",B.JA,"9",B.JC,"Alt",B.Ke,"AltGraph",B.Ja,"ArrowDown",B.Jb,"ArrowLeft",B.Jc,"ArrowRight",B.Jd,"ArrowUp",B.Je,"Clear",B.Jj,"Control",B.Kf,"Delete",B.J9,"End",B.Jf,"Enter",B.J8,"Home",B.Jg,"Insert",B.Jk,"Meta",B.Kg,"PageDown",B.Jh,"PageUp",B.Ji,"Shift",B.Kh],A.aD("d0>")) +B.JB=s([B.pI,null,null,B.vo],t.L) +B.KK=s([B.va,null,null,B.vp],t.L) +B.JX=s([B.vb,null,null,B.vq],t.L) +B.Kj=s([B.vc,null,null,B.da],t.L) +B.J2=s([B.vd,null,null,B.vr],t.L) +B.KX=s([B.ve,null,null,B.ld],t.L) +B.KU=s([B.vf,null,null,B.fi],t.L) +B.JI=s([B.vg,null,null,B.db],t.L) +B.L0=s([B.vh,null,null,B.fj],t.L) +B.KS=s([B.vi,null,null,B.dc],t.L) +B.JF=s([B.vj,null,null,B.le],t.L) +B.J6=s([B.vk,null,null,B.dd],t.L) +B.JR=s([B.vl,null,null,B.fk],t.L) +B.KL=s([B.vm,null,null,B.de],t.L) +B.KN=s([B.vn,null,null,B.fl],t.L) +B.JJ=s([B.fg,B.fg,B.i1,null],t.L) +B.KY=s([B.hY,null,B.hY,null],t.L) +B.K2=s([B.c_,null,null,B.db],t.L) +B.K3=s([B.bO,null,null,B.dc],t.L) +B.K4=s([B.bP,null,null,B.dd],t.L) +B.KZ=s([B.c0,null,null,B.de],t.L) +B.KQ=s([B.l6,null,null,B.le],t.L) +B.JK=s([B.ff,B.ff,B.i0,null],t.L) +B.Kq=s([B.aU,null,null,B.da],t.L) +B.K5=s([B.d7,null,null,B.fi],t.L) +B.JE=s([B.hX,null,null,B.lc],t.L) +B.K6=s([B.d8,null,null,B.fk],t.L) +B.KR=s([B.l7,null,null,B.ld],t.L) +B.JL=s([B.fh,B.fh,B.i2,null],t.L) +B.K7=s([B.fd,null,null,B.fj],t.L) +B.Ku=s([B.fe,null,null,B.fl],t.L) +B.JM=s([B.cJ,B.cJ,B.d9,null],t.L) +B.MM=new A.d0(["*",B.JB,"+",B.KK,"-",B.JX,".",B.Kj,"/",B.J2,"0",B.KX,"1",B.KU,"2",B.JI,"3",B.L0,"4",B.KS,"5",B.JF,"6",B.J6,"7",B.JR,"8",B.KL,"9",B.KN,"Alt",B.JJ,"AltGraph",B.KY,"ArrowDown",B.K2,"ArrowLeft",B.K3,"ArrowRight",B.K4,"ArrowUp",B.KZ,"Clear",B.KQ,"Control",B.JK,"Delete",B.Kq,"End",B.K5,"Enter",B.JE,"Home",B.K6,"Insert",B.KR,"Meta",B.JL,"PageDown",B.K7,"PageUp",B.Ku,"Shift",B.JM],A.aD("d0>")) +B.Nt={KeyA:0,KeyB:1,KeyC:2,KeyD:3,KeyE:4,KeyF:5,KeyG:6,KeyH:7,KeyI:8,KeyJ:9,KeyK:10,KeyL:11,KeyM:12,KeyN:13,KeyO:14,KeyP:15,KeyQ:16,KeyR:17,KeyS:18,KeyT:19,KeyU:20,KeyV:21,KeyW:22,KeyX:23,KeyY:24,KeyZ:25,Digit1:26,Digit2:27,Digit3:28,Digit4:29,Digit5:30,Digit6:31,Digit7:32,Digit8:33,Digit9:34,Digit0:35,Minus:36,Equal:37,BracketLeft:38,BracketRight:39,Backslash:40,Semicolon:41,Quote:42,Backquote:43,Comma:44,Period:45,Slash:46} +B.li=new A.bT(B.Nt,["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","1","2","3","4","5","6","7","8","9","0","-","=","[","]","\\",";","'","`",",",".","/"],t.li) +B.Nq={Abort:0,Again:1,AltLeft:2,AltRight:3,ArrowDown:4,ArrowLeft:5,ArrowRight:6,ArrowUp:7,AudioVolumeDown:8,AudioVolumeMute:9,AudioVolumeUp:10,Backquote:11,Backslash:12,Backspace:13,BracketLeft:14,BracketRight:15,BrightnessDown:16,BrightnessUp:17,BrowserBack:18,BrowserFavorites:19,BrowserForward:20,BrowserHome:21,BrowserRefresh:22,BrowserSearch:23,BrowserStop:24,CapsLock:25,Comma:26,ContextMenu:27,ControlLeft:28,ControlRight:29,Convert:30,Copy:31,Cut:32,Delete:33,Digit0:34,Digit1:35,Digit2:36,Digit3:37,Digit4:38,Digit5:39,Digit6:40,Digit7:41,Digit8:42,Digit9:43,DisplayToggleIntExt:44,Eject:45,End:46,Enter:47,Equal:48,Escape:49,Esc:50,F1:51,F10:52,F11:53,F12:54,F13:55,F14:56,F15:57,F16:58,F17:59,F18:60,F19:61,F2:62,F20:63,F21:64,F22:65,F23:66,F24:67,F3:68,F4:69,F5:70,F6:71,F7:72,F8:73,F9:74,Find:75,Fn:76,FnLock:77,GameButton1:78,GameButton10:79,GameButton11:80,GameButton12:81,GameButton13:82,GameButton14:83,GameButton15:84,GameButton16:85,GameButton2:86,GameButton3:87,GameButton4:88,GameButton5:89,GameButton6:90,GameButton7:91,GameButton8:92,GameButton9:93,GameButtonA:94,GameButtonB:95,GameButtonC:96,GameButtonLeft1:97,GameButtonLeft2:98,GameButtonMode:99,GameButtonRight1:100,GameButtonRight2:101,GameButtonSelect:102,GameButtonStart:103,GameButtonThumbLeft:104,GameButtonThumbRight:105,GameButtonX:106,GameButtonY:107,GameButtonZ:108,Help:109,Home:110,Hyper:111,Insert:112,IntlBackslash:113,IntlRo:114,IntlYen:115,KanaMode:116,KeyA:117,KeyB:118,KeyC:119,KeyD:120,KeyE:121,KeyF:122,KeyG:123,KeyH:124,KeyI:125,KeyJ:126,KeyK:127,KeyL:128,KeyM:129,KeyN:130,KeyO:131,KeyP:132,KeyQ:133,KeyR:134,KeyS:135,KeyT:136,KeyU:137,KeyV:138,KeyW:139,KeyX:140,KeyY:141,KeyZ:142,KeyboardLayoutSelect:143,Lang1:144,Lang2:145,Lang3:146,Lang4:147,Lang5:148,LaunchApp1:149,LaunchApp2:150,LaunchAssistant:151,LaunchControlPanel:152,LaunchMail:153,LaunchScreenSaver:154,MailForward:155,MailReply:156,MailSend:157,MediaFastForward:158,MediaPause:159,MediaPlay:160,MediaPlayPause:161,MediaRecord:162,MediaRewind:163,MediaSelect:164,MediaStop:165,MediaTrackNext:166,MediaTrackPrevious:167,MetaLeft:168,MetaRight:169,MicrophoneMuteToggle:170,Minus:171,NonConvert:172,NumLock:173,Numpad0:174,Numpad1:175,Numpad2:176,Numpad3:177,Numpad4:178,Numpad5:179,Numpad6:180,Numpad7:181,Numpad8:182,Numpad9:183,NumpadAdd:184,NumpadBackspace:185,NumpadClear:186,NumpadClearEntry:187,NumpadComma:188,NumpadDecimal:189,NumpadDivide:190,NumpadEnter:191,NumpadEqual:192,NumpadMemoryAdd:193,NumpadMemoryClear:194,NumpadMemoryRecall:195,NumpadMemoryStore:196,NumpadMemorySubtract:197,NumpadMultiply:198,NumpadParenLeft:199,NumpadParenRight:200,NumpadSubtract:201,Open:202,PageDown:203,PageUp:204,Paste:205,Pause:206,Period:207,Power:208,PrintScreen:209,PrivacyScreenToggle:210,Props:211,Quote:212,Resume:213,ScrollLock:214,Select:215,SelectTask:216,Semicolon:217,ShiftLeft:218,ShiftRight:219,ShowAllWindows:220,Slash:221,Sleep:222,Space:223,Super:224,Suspend:225,Tab:226,Turbo:227,Undo:228,WakeUp:229,ZoomToggle:230} +B.yz=new A.q(458907) +B.yf=new A.q(458873) +B.ec=new A.q(458978) +B.ee=new A.q(458982) +B.xF=new A.q(458833) +B.xE=new A.q(458832) +B.xD=new A.q(458831) +B.xG=new A.q(458834) +B.yn=new A.q(458881) +B.yl=new A.q(458879) +B.ym=new A.q(458880) +B.xf=new A.q(458805) +B.xc=new A.q(458801) +B.x5=new A.q(458794) +B.xa=new A.q(458799) +B.xb=new A.q(458800) +B.yP=new A.q(786544) +B.yO=new A.q(786543) +B.z9=new A.q(786980) +B.zd=new A.q(786986) +B.za=new A.q(786981) +B.z8=new A.q(786979) +B.zc=new A.q(786983) +B.z7=new A.q(786977) +B.zb=new A.q(786982) +B.dg=new A.q(458809) +B.xg=new A.q(458806) +B.xY=new A.q(458853) +B.ea=new A.q(458976) +B.fp=new A.q(458980) +B.ys=new A.q(458890) +B.yi=new A.q(458876) +B.yh=new A.q(458875) +B.xA=new A.q(458828) +B.x3=new A.q(458791) +B.wV=new A.q(458782) +B.wW=new A.q(458783) +B.wX=new A.q(458784) +B.wY=new A.q(458785) +B.wZ=new A.q(458786) +B.x_=new A.q(458787) +B.x0=new A.q(458788) +B.x1=new A.q(458789) +B.x2=new A.q(458790) +B.yN=new A.q(65717) +B.yY=new A.q(786616) +B.xB=new A.q(458829) +B.x4=new A.q(458792) +B.x9=new A.q(458798) +B.lx=new A.q(458793) +B.xj=new A.q(458810) +B.xs=new A.q(458819) +B.xt=new A.q(458820) +B.xu=new A.q(458821) +B.y0=new A.q(458856) +B.y1=new A.q(458857) +B.y2=new A.q(458858) +B.y3=new A.q(458859) +B.y4=new A.q(458860) +B.y5=new A.q(458861) +B.y6=new A.q(458862) +B.xk=new A.q(458811) +B.y7=new A.q(458863) +B.y8=new A.q(458864) +B.y9=new A.q(458865) +B.ya=new A.q(458866) +B.yb=new A.q(458867) +B.xl=new A.q(458812) +B.xm=new A.q(458813) +B.xn=new A.q(458814) +B.xo=new A.q(458815) +B.xp=new A.q(458816) +B.xq=new A.q(458817) +B.xr=new A.q(458818) +B.yk=new A.q(458878) +B.fo=new A.q(18) +B.vV=new A.q(19) +B.w0=new A.q(392961) +B.w9=new A.q(392970) +B.wa=new A.q(392971) +B.wb=new A.q(392972) +B.wc=new A.q(392973) +B.wd=new A.q(392974) +B.we=new A.q(392975) +B.wf=new A.q(392976) +B.w1=new A.q(392962) +B.w2=new A.q(392963) +B.w3=new A.q(392964) +B.w4=new A.q(392965) +B.w5=new A.q(392966) +B.w6=new A.q(392967) +B.w7=new A.q(392968) +B.w8=new A.q(392969) +B.wg=new A.q(392977) +B.wh=new A.q(392978) +B.wi=new A.q(392979) +B.wj=new A.q(392980) +B.wk=new A.q(392981) +B.wl=new A.q(392982) +B.wm=new A.q(392983) +B.wn=new A.q(392984) +B.wo=new A.q(392985) +B.wp=new A.q(392986) +B.wq=new A.q(392987) +B.wr=new A.q(392988) +B.ws=new A.q(392989) +B.wt=new A.q(392990) +B.wu=new A.q(392991) +B.yd=new A.q(458869) +B.xy=new A.q(458826) +B.vT=new A.q(16) +B.xx=new A.q(458825) +B.xX=new A.q(458852) +B.yp=new A.q(458887) +B.yr=new A.q(458889) +B.yq=new A.q(458888) +B.wv=new A.q(458756) +B.ww=new A.q(458757) +B.wx=new A.q(458758) +B.wy=new A.q(458759) +B.wz=new A.q(458760) +B.wA=new A.q(458761) +B.wB=new A.q(458762) +B.wC=new A.q(458763) +B.wD=new A.q(458764) +B.wE=new A.q(458765) +B.wF=new A.q(458766) +B.wG=new A.q(458767) +B.wH=new A.q(458768) +B.wI=new A.q(458769) +B.wJ=new A.q(458770) +B.wK=new A.q(458771) +B.wL=new A.q(458772) +B.wM=new A.q(458773) +B.wN=new A.q(458774) +B.wO=new A.q(458775) +B.wP=new A.q(458776) +B.wQ=new A.q(458777) +B.wR=new A.q(458778) +B.wS=new A.q(458779) +B.wT=new A.q(458780) +B.wU=new A.q(458781) +B.zi=new A.q(787101) +B.yu=new A.q(458896) +B.yv=new A.q(458897) +B.yw=new A.q(458898) +B.yx=new A.q(458899) +B.yy=new A.q(458900) +B.z2=new A.q(786836) +B.z1=new A.q(786834) +B.z6=new A.q(786891) +B.z3=new A.q(786847) +B.z0=new A.q(786826) +B.z5=new A.q(786865) +B.zg=new A.q(787083) +B.zf=new A.q(787081) +B.zh=new A.q(787084) +B.yT=new A.q(786611) +B.yR=new A.q(786609) +B.yQ=new A.q(786608) +B.yZ=new A.q(786637) +B.yS=new A.q(786610) +B.yU=new A.q(786612) +B.z_=new A.q(786819) +B.yX=new A.q(786615) +B.yV=new A.q(786613) +B.yW=new A.q(786614) +B.ed=new A.q(458979) +B.fr=new A.q(458983) +B.w_=new A.q(24) +B.x8=new A.q(458797) +B.yt=new A.q(458891) +B.id=new A.q(458835) +B.xV=new A.q(458850) +B.xM=new A.q(458841) +B.xN=new A.q(458842) +B.xO=new A.q(458843) +B.xP=new A.q(458844) +B.xQ=new A.q(458845) +B.xR=new A.q(458846) +B.xS=new A.q(458847) +B.xT=new A.q(458848) +B.xU=new A.q(458849) +B.xK=new A.q(458839) +B.yD=new A.q(458939) +B.yJ=new A.q(458968) +B.yK=new A.q(458969) +B.yo=new A.q(458885) +B.xW=new A.q(458851) +B.xH=new A.q(458836) +B.xL=new A.q(458840) +B.y_=new A.q(458855) +B.yH=new A.q(458963) +B.yG=new A.q(458962) +B.yF=new A.q(458961) +B.yE=new A.q(458960) +B.yI=new A.q(458964) +B.xI=new A.q(458837) +B.yB=new A.q(458934) +B.yC=new A.q(458935) +B.xJ=new A.q(458838) +B.yc=new A.q(458868) +B.xC=new A.q(458830) +B.xz=new A.q(458827) +B.yj=new A.q(458877) +B.xw=new A.q(458824) +B.xh=new A.q(458807) +B.xZ=new A.q(458854) +B.xv=new A.q(458822) +B.vZ=new A.q(23) +B.yA=new A.q(458915) +B.xe=new A.q(458804) +B.vX=new A.q(21) +B.ic=new A.q(458823) +B.ye=new A.q(458871) +B.z4=new A.q(786850) +B.xd=new A.q(458803) +B.eb=new A.q(458977) +B.fq=new A.q(458981) +B.zj=new A.q(787103) +B.xi=new A.q(458808) +B.yL=new A.q(65666) +B.x7=new A.q(458796) +B.vU=new A.q(17) +B.vW=new A.q(20) +B.x6=new A.q(458795) +B.vY=new A.q(22) +B.yg=new A.q(458874) +B.yM=new A.q(65667) +B.ze=new A.q(786994) +B.vC=new A.bT(B.Nq,[B.yz,B.yf,B.ec,B.ee,B.xF,B.xE,B.xD,B.xG,B.yn,B.yl,B.ym,B.xf,B.xc,B.x5,B.xa,B.xb,B.yP,B.yO,B.z9,B.zd,B.za,B.z8,B.zc,B.z7,B.zb,B.dg,B.xg,B.xY,B.ea,B.fp,B.ys,B.yi,B.yh,B.xA,B.x3,B.wV,B.wW,B.wX,B.wY,B.wZ,B.x_,B.x0,B.x1,B.x2,B.yN,B.yY,B.xB,B.x4,B.x9,B.lx,B.lx,B.xj,B.xs,B.xt,B.xu,B.y0,B.y1,B.y2,B.y3,B.y4,B.y5,B.y6,B.xk,B.y7,B.y8,B.y9,B.ya,B.yb,B.xl,B.xm,B.xn,B.xo,B.xp,B.xq,B.xr,B.yk,B.fo,B.vV,B.w0,B.w9,B.wa,B.wb,B.wc,B.wd,B.we,B.wf,B.w1,B.w2,B.w3,B.w4,B.w5,B.w6,B.w7,B.w8,B.wg,B.wh,B.wi,B.wj,B.wk,B.wl,B.wm,B.wn,B.wo,B.wp,B.wq,B.wr,B.ws,B.wt,B.wu,B.yd,B.xy,B.vT,B.xx,B.xX,B.yp,B.yr,B.yq,B.wv,B.ww,B.wx,B.wy,B.wz,B.wA,B.wB,B.wC,B.wD,B.wE,B.wF,B.wG,B.wH,B.wI,B.wJ,B.wK,B.wL,B.wM,B.wN,B.wO,B.wP,B.wQ,B.wR,B.wS,B.wT,B.wU,B.zi,B.yu,B.yv,B.yw,B.yx,B.yy,B.z2,B.z1,B.z6,B.z3,B.z0,B.z5,B.zg,B.zf,B.zh,B.yT,B.yR,B.yQ,B.yZ,B.yS,B.yU,B.z_,B.yX,B.yV,B.yW,B.ed,B.fr,B.w_,B.x8,B.yt,B.id,B.xV,B.xM,B.xN,B.xO,B.xP,B.xQ,B.xR,B.xS,B.xT,B.xU,B.xK,B.yD,B.yJ,B.yK,B.yo,B.xW,B.xH,B.xL,B.y_,B.yH,B.yG,B.yF,B.yE,B.yI,B.xI,B.yB,B.yC,B.xJ,B.yc,B.xC,B.xz,B.yj,B.xw,B.xh,B.xZ,B.xv,B.vZ,B.yA,B.xe,B.vX,B.ic,B.ye,B.z4,B.xd,B.eb,B.fq,B.zj,B.xi,B.yL,B.x7,B.vU,B.vW,B.x6,B.vY,B.yg,B.yM,B.ze],A.aD("bT")) +B.Nz={"deleteBackward:":0,"deleteWordBackward:":1,"deleteToBeginningOfLine:":2,"deleteForward:":3,"deleteWordForward:":4,"deleteToEndOfLine:":5,"moveLeft:":6,"moveRight:":7,"moveForward:":8,"moveBackward:":9,"moveUp:":10,"moveDown:":11,"moveLeftAndModifySelection:":12,"moveRightAndModifySelection:":13,"moveUpAndModifySelection:":14,"moveDownAndModifySelection:":15,"moveWordLeft:":16,"moveWordRight:":17,"moveToBeginningOfParagraph:":18,"moveToEndOfParagraph:":19,"moveWordLeftAndModifySelection:":20,"moveWordRightAndModifySelection:":21,"moveParagraphBackwardAndModifySelection:":22,"moveParagraphForwardAndModifySelection:":23,"moveToLeftEndOfLine:":24,"moveToRightEndOfLine:":25,"moveToBeginningOfDocument:":26,"moveToEndOfDocument:":27,"moveToLeftEndOfLineAndModifySelection:":28,"moveToRightEndOfLineAndModifySelection:":29,"moveToBeginningOfDocumentAndModifySelection:":30,"moveToEndOfDocumentAndModifySelection:":31,"transpose:":32,"scrollToBeginningOfDocument:":33,"scrollToEndOfDocument:":34,"scrollPageUp:":35,"scrollPageDown:":36,"pageUpAndModifySelection:":37,"pageDownAndModifySelection:":38,"cancelOperation:":39,"insertTab:":40,"insertBacktab:":41} +B.zA=new A.m3(!1) +B.zB=new A.m3(!0) +B.MU=new A.bT(B.Nz,[B.k_,B.k2,B.k0,B.eW,B.eX,B.k1,B.dR,B.dS,B.dS,B.dR,B.dV,B.dW,B.hv,B.hw,B.f1,B.f2,B.hz,B.hA,B.d3,B.d4,B.oC,B.oD,B.oy,B.oz,B.d3,B.d4,B.dT,B.dU,B.oo,B.op,B.kH,B.kI,B.nr,B.zA,B.zB,B.lJ,B.it,B.hB,B.hC,B.nf,B.nm,B.no],A.aD("bT")) +B.Nv={BU:0,DD:1,FX:2,TP:3,YD:4,ZR:5} +B.ck=new A.bT(B.Nv,["MM","DE","FR","TL","YE","CD"],t.li) +B.Os=new A.q(458752) +B.Ot=new A.q(458753) +B.Ou=new A.q(458754) +B.Ov=new A.q(458755) +B.Ow=new A.q(458967) +B.Ox=new A.q(786528) +B.Oy=new A.q(786529) +B.Oz=new A.q(786546) +B.OA=new A.q(786547) +B.OB=new A.q(786548) +B.OC=new A.q(786549) +B.OD=new A.q(786553) +B.OE=new A.q(786554) +B.OF=new A.q(786563) +B.OG=new A.q(786572) +B.OH=new A.q(786573) +B.OI=new A.q(786580) +B.OJ=new A.q(786588) +B.OK=new A.q(786589) +B.OL=new A.q(786639) +B.OM=new A.q(786661) +B.ON=new A.q(786820) +B.OO=new A.q(786822) +B.OP=new A.q(786829) +B.OQ=new A.q(786830) +B.OR=new A.q(786838) +B.OS=new A.q(786844) +B.OT=new A.q(786846) +B.OU=new A.q(786855) +B.OV=new A.q(786859) +B.OW=new A.q(786862) +B.OX=new A.q(786871) +B.OY=new A.q(786945) +B.OZ=new A.q(786947) +B.P_=new A.q(786951) +B.P0=new A.q(786952) +B.P1=new A.q(786989) +B.P2=new A.q(786990) +B.P3=new A.q(787065) +B.MV=new A.d0([16,B.vT,17,B.vU,18,B.fo,19,B.vV,20,B.vW,21,B.vX,22,B.vY,23,B.vZ,24,B.w_,65666,B.yL,65667,B.yM,65717,B.yN,392961,B.w0,392962,B.w1,392963,B.w2,392964,B.w3,392965,B.w4,392966,B.w5,392967,B.w6,392968,B.w7,392969,B.w8,392970,B.w9,392971,B.wa,392972,B.wb,392973,B.wc,392974,B.wd,392975,B.we,392976,B.wf,392977,B.wg,392978,B.wh,392979,B.wi,392980,B.wj,392981,B.wk,392982,B.wl,392983,B.wm,392984,B.wn,392985,B.wo,392986,B.wp,392987,B.wq,392988,B.wr,392989,B.ws,392990,B.wt,392991,B.wu,458752,B.Os,458753,B.Ot,458754,B.Ou,458755,B.Ov,458756,B.wv,458757,B.ww,458758,B.wx,458759,B.wy,458760,B.wz,458761,B.wA,458762,B.wB,458763,B.wC,458764,B.wD,458765,B.wE,458766,B.wF,458767,B.wG,458768,B.wH,458769,B.wI,458770,B.wJ,458771,B.wK,458772,B.wL,458773,B.wM,458774,B.wN,458775,B.wO,458776,B.wP,458777,B.wQ,458778,B.wR,458779,B.wS,458780,B.wT,458781,B.wU,458782,B.wV,458783,B.wW,458784,B.wX,458785,B.wY,458786,B.wZ,458787,B.x_,458788,B.x0,458789,B.x1,458790,B.x2,458791,B.x3,458792,B.x4,458793,B.lx,458794,B.x5,458795,B.x6,458796,B.x7,458797,B.x8,458798,B.x9,458799,B.xa,458800,B.xb,458801,B.xc,458803,B.xd,458804,B.xe,458805,B.xf,458806,B.xg,458807,B.xh,458808,B.xi,458809,B.dg,458810,B.xj,458811,B.xk,458812,B.xl,458813,B.xm,458814,B.xn,458815,B.xo,458816,B.xp,458817,B.xq,458818,B.xr,458819,B.xs,458820,B.xt,458821,B.xu,458822,B.xv,458823,B.ic,458824,B.xw,458825,B.xx,458826,B.xy,458827,B.xz,458828,B.xA,458829,B.xB,458830,B.xC,458831,B.xD,458832,B.xE,458833,B.xF,458834,B.xG,458835,B.id,458836,B.xH,458837,B.xI,458838,B.xJ,458839,B.xK,458840,B.xL,458841,B.xM,458842,B.xN,458843,B.xO,458844,B.xP,458845,B.xQ,458846,B.xR,458847,B.xS,458848,B.xT,458849,B.xU,458850,B.xV,458851,B.xW,458852,B.xX,458853,B.xY,458854,B.xZ,458855,B.y_,458856,B.y0,458857,B.y1,458858,B.y2,458859,B.y3,458860,B.y4,458861,B.y5,458862,B.y6,458863,B.y7,458864,B.y8,458865,B.y9,458866,B.ya,458867,B.yb,458868,B.yc,458869,B.yd,458871,B.ye,458873,B.yf,458874,B.yg,458875,B.yh,458876,B.yi,458877,B.yj,458878,B.yk,458879,B.yl,458880,B.ym,458881,B.yn,458885,B.yo,458887,B.yp,458888,B.yq,458889,B.yr,458890,B.ys,458891,B.yt,458896,B.yu,458897,B.yv,458898,B.yw,458899,B.yx,458900,B.yy,458907,B.yz,458915,B.yA,458934,B.yB,458935,B.yC,458939,B.yD,458960,B.yE,458961,B.yF,458962,B.yG,458963,B.yH,458964,B.yI,458967,B.Ow,458968,B.yJ,458969,B.yK,458976,B.ea,458977,B.eb,458978,B.ec,458979,B.ed,458980,B.fp,458981,B.fq,458982,B.ee,458983,B.fr,786528,B.Ox,786529,B.Oy,786543,B.yO,786544,B.yP,786546,B.Oz,786547,B.OA,786548,B.OB,786549,B.OC,786553,B.OD,786554,B.OE,786563,B.OF,786572,B.OG,786573,B.OH,786580,B.OI,786588,B.OJ,786589,B.OK,786608,B.yQ,786609,B.yR,786610,B.yS,786611,B.yT,786612,B.yU,786613,B.yV,786614,B.yW,786615,B.yX,786616,B.yY,786637,B.yZ,786639,B.OL,786661,B.OM,786819,B.z_,786820,B.ON,786822,B.OO,786826,B.z0,786829,B.OP,786830,B.OQ,786834,B.z1,786836,B.z2,786838,B.OR,786844,B.OS,786846,B.OT,786847,B.z3,786850,B.z4,786855,B.OU,786859,B.OV,786862,B.OW,786865,B.z5,786871,B.OX,786891,B.z6,786945,B.OY,786947,B.OZ,786951,B.P_,786952,B.P0,786977,B.z7,786979,B.z8,786980,B.z9,786981,B.za,786982,B.zb,786983,B.zc,786986,B.zd,786989,B.P1,786990,B.P2,786994,B.ze,787065,B.P3,787081,B.zf,787083,B.zg,787084,B.zh,787101,B.zi,787103,B.zj],A.aD("d0")) +B.MW=new A.Bz(null,null,null,null,null,null,null,null) +B.E8=new A.u(1,0.8901960784313725,0.9490196078431372,0.9921568627450981,B.e) +B.Fa=new A.u(1,0.7333333333333333,0.8705882352941177,0.984313725490196,B.e) +B.Ez=new A.u(1,0.5647058823529412,0.792156862745098,0.9764705882352941,B.e) +B.Eh=new A.u(1,0.39215686274509803,0.7098039215686275,0.9647058823529412,B.e) +B.Eu=new A.u(1,0.25882352941176473,0.6470588235294118,0.9607843137254902,B.e) +B.Et=new A.u(1,0.12941176470588237,0.5882352941176471,0.9529411764705882,B.e) +B.ER=new A.u(1,0.11764705882352941,0.5333333333333333,0.8980392156862745,B.e) +B.Fg=new A.u(1,0.09803921568627451,0.4627450980392157,0.8235294117647058,B.e) +B.Fr=new A.u(1,0.08235294117647059,0.396078431372549,0.7529411764705882,B.e) +B.EM=new A.u(1,0.050980392156862744,0.2784313725490196,0.6313725490196078,B.e) +B.MP=new A.d0([50,B.E8,100,B.Fa,200,B.Ez,300,B.Eh,400,B.Eu,500,B.Et,600,B.ER,700,B.Fg,800,B.Fr,900,B.EM],t.pl) +B.fm=new A.jq(B.MP,1,0.12941176470588237,0.5882352941176471,0.9529411764705882,B.e) +B.Ex=new A.u(1,0.9372549019607843,0.9215686274509803,0.9137254901960784,B.e) +B.Ed=new A.u(1,0.8431372549019608,0.8,0.7843137254901961,B.e) +B.EO=new A.u(1,0.7372549019607844,0.6666666666666666,0.6431372549019608,B.e) +B.F7=new A.u(1,0.6313725490196078,0.5333333333333333,0.4980392156862745,B.e) +B.Fj=new A.u(1,0.5529411764705883,0.43137254901960786,0.38823529411764707,B.e) +B.Ei=new A.u(1,0.4745098039215686,0.3333333333333333,0.2823529411764706,B.e) +B.EL=new A.u(1,0.42745098039215684,0.2980392156862745,0.2549019607843137,B.e) +B.EH=new A.u(1,0.36470588235294116,0.25098039215686274,0.21568627450980393,B.e) +B.EZ=new A.u(1,0.3058823529411765,0.20392156862745098,0.1803921568627451,B.e) +B.El=new A.u(1,0.24313725490196078,0.15294117647058825,0.13725490196078433,B.e) +B.MT=new A.d0([50,B.Ex,100,B.Ed,200,B.EO,300,B.F7,400,B.Fj,500,B.Ei,600,B.EL,700,B.EH,800,B.EZ,900,B.El],t.pl) +B.MX=new A.jq(B.MT,1,0.4745098039215686,0.3333333333333333,0.2823529411764706,B.e) +B.EN=new A.u(1,0.9529411764705882,0.8980392156862745,0.9607843137254902,B.e) +B.ES=new A.u(1,0.8823529411764706,0.7450980392156863,0.9058823529411765,B.e) +B.Ec=new A.u(1,0.807843137254902,0.5764705882352941,0.8470588235294118,B.e) +B.Fp=new A.u(1,0.7294117647058823,0.40784313725490196,0.7843137254901961,B.e) +B.Fm=new A.u(1,0.6705882352941176,0.2784313725490196,0.7372549019607844,B.e) +B.Fk=new A.u(1,0.611764705882353,0.15294117647058825,0.6901960784313725,B.e) +B.EJ=new A.u(1,0.5568627450980392,0.1411764705882353,0.6666666666666666,B.e) +B.EP=new A.u(1,0.4823529411764706,0.12156862745098039,0.6352941176470588,B.e) +B.Fs=new A.u(1,0.41568627450980394,0.10588235294117647,0.6039215686274509,B.e) +B.E2=new A.u(1,0.2901960784313726,0.0784313725490196,0.5490196078431373,B.e) +B.MR=new A.d0([50,B.EN,100,B.ES,200,B.Ec,300,B.Fp,400,B.Fm,500,B.Fk,600,B.EJ,700,B.EP,800,B.Fs,900,B.E2],t.pl) +B.vD=new A.jq(B.MR,1,0.611764705882353,0.15294117647058825,0.6901960784313725,B.e) +B.Ep=new A.u(1,1,0.9529411764705882,0.8784313725490196,B.e) +B.F4=new A.u(1,1,0.8784313725490196,0.6980392156862745,B.e) +B.FA=new A.u(1,1,0.8,0.5019607843137255,B.e) +B.DZ=new A.u(1,1,0.7176470588235294,0.30196078431372547,B.e) +B.EB=new A.u(1,1,0.6549019607843137,0.14901960784313725,B.e) +B.F0=new A.u(1,1,0.596078431372549,0,B.e) +B.Fh=new A.u(1,0.984313725490196,0.5490196078431373,0,B.e) +B.Ey=new A.u(1,0.9607843137254902,0.48627450980392156,0,B.e) +B.Fe=new A.u(1,0.9372549019607843,0.4235294117647059,0,B.e) +B.Eb=new A.u(1,0.9019607843137255,0.3176470588235294,0,B.e) +B.MN=new A.d0([50,B.Ep,100,B.F4,200,B.FA,300,B.DZ,400,B.EB,500,B.F0,600,B.Fh,700,B.Ey,800,B.Fe,900,B.Eb],t.pl) +B.lj=new A.jq(B.MN,1,1,0.596078431372549,0,B.e) +B.E_=new A.u(1,1,0.9725490196078431,0.8823529411764706,B.e) +B.EW=new A.u(1,1,0.9254901960784314,0.7019607843137254,B.e) +B.EK=new A.u(1,1,0.8784313725490196,0.5098039215686274,B.e) +B.EI=new A.u(1,1,0.8352941176470589,0.30980392156862746,B.e) +B.Fd=new A.u(1,1,0.792156862745098,0.1568627450980392,B.e) +B.E6=new A.u(1,1,0.7568627450980392,0.027450980392156862,B.e) +B.Fc=new A.u(1,1,0.7019607843137254,0,B.e) +B.Ej=new A.u(1,1,0.6274509803921569,0,B.e) +B.EQ=new A.u(1,1,0.5607843137254902,0,B.e) +B.Em=new A.u(1,1,0.43529411764705883,0,B.e) +B.MQ=new A.d0([50,B.E_,100,B.EW,200,B.EK,300,B.EI,400,B.Fd,500,B.E6,600,B.Fc,700,B.Ej,800,B.EQ,900,B.Em],t.pl) +B.vE=new A.jq(B.MQ,1,1,0.7568627450980392,0.027450980392156862,B.e) +B.MY=new A.qK(0,"padded") +B.MZ=new A.qK(1,"shrinkWrap") +B.cK=new A.qL(0,"canvas") +B.df=new A.qL(1,"card") +B.lk=new A.qL(2,"circle") +B.ll=new A.qL(3,"button") +B.i7=new A.qL(4,"transparency") +B.N_=new A.On(0,"none") +B.N0=new A.On(2,"truncateAfterCompositionEnds") +B.N1=new A.Op(null,null) +B.N2=new A.BI(null) +B.N3=new A.v8(null,null) +B.N4=new A.iy("popRoute",null) +B.cC=new A.alD() +B.lm=new A.v9("plugins.flutter.io/shared_preferences",B.cC) +B.N5=new A.v9("flutter/service_worker",B.cC) +B.e7=new A.Oz(0,"latestPointer") +B.lr=new A.Oz(1,"averageBoundaryPointers") +B.N6=new A.qT(0,"clipRect") +B.N7=new A.qT(1,"clipRRect") +B.N8=new A.qT(2,"clipPath") +B.N9=new A.qT(3,"transform") +B.Na=new A.qT(4,"opacity") +B.Ne=new A.vh(null,null,null,null,null,null,null,null,null,null,null,null) +B.Nf=new A.afq(0,"alwaysShow") +B.HO=new A.by(61703,"MaterialIcons",!1) +B.I6=new A.ca(B.HO,null,null,null,null) +B.Ng=new A.vi(B.I6,B.p5,"Home",null) +B.HN=new A.by(61239,"MaterialIcons",!1) +B.I_=new A.ca(B.HN,null,null,null,null) +B.Nh=new A.vi(B.I_,B.oZ,"Kategorien",null) +B.Ni=new A.BZ(null,null,null,null,null,null,null,null,null,null) +B.e8=new A.OD(0,"traditional") +B.i8=new A.OD(1,"directional") +B.Nj=new A.nM(!0) +B.Nk=new A.C_(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Nl=new A.OF(null) +B.vI=new A.ex(B.i,B.i) +B.i9=new A.j(0,1) +B.NB=new A.j(0,20) +B.NC=new A.j(0,26) +B.NE=new A.j(0,8) +B.NF=new A.j(0,-1) +B.vJ=new A.j(0,-2) +B.NG=new A.j(11,-4) +B.e9=new A.j(1,0) +B.NH=new A.j(1,3) +B.NI=new A.j(22,0) +B.NJ=new A.j(3,0) +B.NK=new A.j(3,-3) +B.NL=new A.j(2.6999999999999997,8.1) +B.NM=new A.j(3.6,9) +B.NN=new A.j(6,6) +B.vK=new A.j(9,9) +B.NO=new A.j(14.4,9) +B.vL=new A.j(7.2,12.6) +B.NR=new A.j(-0.3333333333333333,0) +B.NT=new A.j(5,10.5) +B.NU=new A.j(15.299999999999999,4.5) +B.NV=new A.j(1/0,0) +B.vM=new A.j(-0.25,0) +B.NX=new A.j(17976931348623157e292,0) +B.O_=new A.j(0,-0.25) +B.O0=new A.j(-1,0) +B.O1=new A.j(-3,0) +B.O2=new A.j(-3,3) +B.O3=new A.j(-3,-3) +B.a_N=new A.j(0,-0.005) +B.vN=new A.j(0.25,0) +B.O8=new A.j(1/0,1/0) +B.be=new A.lM(0,"iOs") +B.fn=new A.lM(1,"android") +B.ia=new A.lM(2,"linux") +B.lt=new A.lM(3,"windows") +B.c2=new A.lM(4,"macOs") +B.vO=new A.lM(5,"unknown") +B.lu=new A.hZ("flutter/restoration",B.cC) +B.eE=new A.aaR() +B.vP=new A.hZ("flutter/scribe",B.eE) +B.vQ=new A.hZ("flutter/textinput",B.eE) +B.vR=new A.hZ("flutter/menu",B.cC) +B.O9=new A.hZ("flutter/mousecursor",B.cC) +B.Oa=new A.hZ("flutter/processtext",B.cC) +B.aW=new A.hZ("flutter/platform",B.eE) +B.Ob=new A.hZ("flutter/backgesture",B.cC) +B.lv=new A.hZ("flutter/navigation",B.eE) +B.Oc=new A.hZ("flutter/undomanager",B.eE) +B.Od=new A.hZ("flutter/keyboard",B.cC) +B.vS=new A.r_(null) +B.Oe=new A.r0(0,null) +B.Of=new A.r0(1,null) +B.Og=new A.OV(0,"portrait") +B.Oh=new A.OV(1,"landscape") +B.Oi=new A.C9(null) +B.a_O=new A.OZ(0,"start") +B.Oj=new A.OZ(1,"end") +B.Ok=new A.P_(0,"nearestOverlay") +B.Ol=new A.P_(1,"rootOverlay") +B.X4=new A.bH("Keine Adressen gespeichert",null,null,null,null,null,null,null,null) +B.Om=new A.bo(B.aG,B.X4,null) +B.c3=new A.P5(0,"fill") +B.bt=new A.P5(1,"stroke") +B.Oo=new A.nS(1/0) +B.Op=new A.r4(null) +B.ib=new A.P8(0,"nonZero") +B.Oq=new A.P8(1,"evenOdd") +B.Or=new A.Ch(null) +B.zk=new A.nU(0,"baseline") +B.zl=new A.nU(1,"aboveBaseline") +B.zm=new A.nU(2,"belowBaseline") +B.zn=new A.nU(3,"top") +B.ef=new A.nU(4,"bottom") +B.zo=new A.nU(5,"middle") +B.P4=new A.vq(B.I,B.ef,null,null) +B.zq=new A.lS(0,"cancel") +B.ly=new A.lS(1,"add") +B.P5=new A.lS(2,"remove") +B.dh=new A.lS(3,"hover") +B.P6=new A.lS(4,"down") +B.ie=new A.lS(5,"move") +B.zr=new A.lS(6,"up") +B.at=new A.kA(0,"touch") +B.bG=new A.kA(1,"mouse") +B.b4=new A.kA(2,"stylus") +B.c4=new A.kA(3,"invertedStylus") +B.bf=new A.kA(4,"trackpad") +B.bu=new A.kA(5,"unknown") +B.ig=new A.vs(0,"none") +B.P7=new A.vs(1,"scroll") +B.P8=new A.vs(3,"scale") +B.P9=new A.vs(4,"unknown") +B.Pa=new A.Cl(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Pb=new A.o0(null,null,null) +B.Pc=new A.Cn(null) +B.Pd=new A.vw(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Pe=new A.Cr(null,null,null,null,null,null,null,null,null) +B.zs=new A.aG(1,1) +B.eh=new A.aG(2,2) +B.Pf=new A.aG(-1/0,-1/0) +B.Pg=new A.aG(1.5,1.5) +B.Ph=new A.aG(1/0,1/0) +B.Pi=new A.am(0,0) +B.Pj=new A.am(0,!0) +B.cq=new A.Eu(2,"collapsed") +B.Pm=new A.am(B.cq,B.cq) +B.Pq=new A.am(B.I,0) +B.iS=new A.Eu(0,"left") +B.iT=new A.Eu(1,"right") +B.Pt=new A.am(B.iS,B.iT) +B.iz=new A.cL(4,"scrollLeft") +B.iA=new A.cL(8,"scrollRight") +B.Pv=new A.am(B.iz,B.iA) +B.Pw=new A.am(B.iA,B.iz) +B.Px=new A.am(!1,!1) +B.Py=new A.am(!1,null) +B.Pz=new A.am(!1,!0) +B.iw=new A.cL(16,"scrollUp") +B.ix=new A.cL(32,"scrollDown") +B.PC=new A.am(B.iw,B.ix) +B.PG=new A.am(null,null) +B.PH=new A.am(B.ix,B.iw) +B.PJ=new A.am(!0,!1) +B.PK=new A.am(!0,!0) +B.PL=new A.am(B.iT,B.iS) +B.PM=new A.x(-1/0,-1/0,1/0,1/0) +B.dj=new A.x(-1e9,-1e9,1e9,1e9) +B.dk=new A.o5(0,"drag") +B.dl=new A.o5(1,"armed") +B.lA=new A.o5(2,"snap") +B.io=new A.o5(3,"refresh") +B.lB=new A.o5(4,"done") +B.ip=new A.o5(5,"canceled") +B.a_P=new A.ahC(1,"onEdge") +B.PN=new A.rm(null) +B.zt=new A.vF(0,"start") +B.lC=new A.vF(1,"stable") +B.PO=new A.vF(2,"changed") +B.PP=new A.vF(3,"unstable") +B.cl=new A.CE(0,"identical") +B.PQ=new A.CE(2,"paint") +B.bo=new A.CE(3,"layout") +B.eg=new A.aG(28,28) +B.C3=new A.cF(B.eg,B.eg,B.C,B.C) +B.PR=new A.cz(B.C3,B.q) +B.C5=new A.cF(B.eg,B.eg,B.eg,B.eg) +B.PS=new A.cz(B.C5,B.q) +B.ih=new A.aG(12,12) +B.C2=new A.cF(B.ih,B.ih,B.ih,B.ih) +B.PT=new A.cz(B.C2,B.q) +B.C4=new A.cF(B.eh,B.eh,B.eh,B.eh) +B.lD=new A.cz(B.C4,B.q) +B.PU=new A.cz(B.eB,B.q) +B.zu=new A.aiM(0,"none") +B.iq=new A.vK(0,"pop") +B.ej=new A.vK(1,"doNotPop") +B.zv=new A.vK(2,"bubble") +B.lE=new A.jE(null,null) +B.PW=new A.D7(1333) +B.lF=new A.D7(2222) +B.PX=new A.Qm(null,null) +B.dm=new A.rw(0,"idle") +B.zw=new A.rw(1,"transientCallbacks") +B.zx=new A.rw(2,"midFrameMicrotasks") +B.ek=new A.rw(3,"persistentCallbacks") +B.lG=new A.rw(4,"postFrameCallbacks") +B.zy=new A.ajg(0,"englishLike") +B.ir=new A.Dh(0,"idle") +B.lH=new A.Dh(1,"forward") +B.lI=new A.Dh(2,"reverse") +B.a_Q=new A.rz(0,"explicit") +B.cm=new A.rz(1,"keepVisibleAtEnd") +B.cn=new A.rz(2,"keepVisibleAtStart") +B.zC=new A.vO(0,"left") +B.zD=new A.vO(1,"right") +B.Q2=new A.vO(2,"top") +B.zE=new A.vO(3,"bottom") +B.Q3=new A.Dl(null,null,null,null,null,null,null,null,null,null,null) +B.Q4=new A.Dm(null,null,null,null,null,null,null,null,null,null,null,null) +B.zF=new A.rD(null) +B.Q5=new A.Dn(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Q6=new A.Do(null,null) +B.aJ=new A.iF(0,"tap") +B.zG=new A.iF(1,"doubleTap") +B.bv=new A.iF(2,"longPress") +B.fu=new A.iF(3,"forcePress") +B.ai=new A.iF(5,"toolbar") +B.aj=new A.iF(6,"drag") +B.fv=new A.iF(7,"stylusHandwriting") +B.Q7=new A.rF(0,"startEdgeUpdate") +B.cL=new A.rF(1,"endEdgeUpdate") +B.Q9=new A.rF(4,"selectWord") +B.Qa=new A.rF(5,"selectParagraph") +B.lK=new A.vQ(0,"previousLine") +B.lL=new A.vQ(1,"nextLine") +B.iu=new A.vQ(2,"forward") +B.iv=new A.vQ(3,"backward") +B.cM=new A.Dr(2,"none") +B.zH=new A.oe(null,null,B.cM,B.l1,!0) +B.zI=new A.oe(null,null,B.cM,B.l1,!1) +B.G=new A.of(0,"next") +B.M=new A.of(1,"previous") +B.P=new A.of(2,"end") +B.lM=new A.of(3,"pending") +B.fw=new A.of(4,"none") +B.lN=new A.Dr(0,"uncollapsed") +B.Qb=new A.Dr(1,"collapsed") +B.Qc=new A.cL(1048576,"moveCursorBackwardByWord") +B.zJ=new A.cL(128,"decrease") +B.Qd=new A.cL(16384,"paste") +B.Qe=new A.cL(16777216,"expand") +B.fx=new A.cL(1,"tap") +B.Qf=new A.cL(1024,"moveCursorBackwardByCharacter") +B.Qg=new A.cL(2048,"setSelection") +B.Qh=new A.cL(2097152,"setText") +B.Qi=new A.cL(256,"showOnScreen") +B.Qj=new A.cL(262144,"dismiss") +B.zK=new A.cL(2,"longPress") +B.Qk=new A.cL(32768,"didGainAccessibilityFocus") +B.Ql=new A.cL(33554432,"collapse") +B.Qm=new A.cL(4096,"copy") +B.iy=new A.cL(4194304,"focus") +B.Qn=new A.cL(512,"moveCursorForwardByCharacter") +B.Qo=new A.cL(524288,"moveCursorForwardByWord") +B.zL=new A.cL(64,"increase") +B.Qp=new A.cL(65536,"didLoseAccessibilityFocus") +B.Qq=new A.cL(8192,"cut") +B.zM=new A.cL(8388608,"scrollToOffset") +B.J=new A.EN(0,"none") +B.iB=new A.Dw(B.dG,B.J,B.J,B.J,B.J,B.J,B.J,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1) +B.lO=new A.rJ(0,"none") +B.zN=new A.rJ(1,"text") +B.Qr=new A.rJ(2,"url") +B.Qs=new A.rJ(3,"phone") +B.Qt=new A.rJ(5,"email") +B.iC=new A.iG(0,"none") +B.zO=new A.iG(1,"tab") +B.zP=new A.iG(15,"menuItem") +B.zQ=new A.iG(16,"menuItemCheckbox") +B.zR=new A.iG(17,"menuItemRadio") +B.Qu=new A.iG(2,"tabBar") +B.Qv=new A.iG(20,"form") +B.Qw=new A.iG(5,"alertDialog") +B.zS=new A.dp("RenderViewport.twoPane") +B.zT=new A.dp("_InputDecoratorState.suffixIcon") +B.Qy=new A.dp("RenderViewport.excludeFromScrolling") +B.Qz=new A.dp("_InputDecoratorState.suffix") +B.QA=new A.dp("_InputDecoratorState.prefix") +B.zU=new A.dp("_InputDecoratorState.prefixIcon") +B.z=new A.Dz(0,"none") +B.lP=new A.Dz(1,"valid") +B.lQ=new A.Dz(2,"invalid") +B.zV=new A.dW([B.c2,B.ia,B.lt],A.aD("dW")) +B.QB=new A.dW([10,11,12,13,133,8232,8233],t.Ih) +B.Nn={serif:0,"sans-serif":1,monospace:2,cursive:3,fantasy:4,"system-ui":5,math:6,emoji:7,fangsong:8} +B.QC=new A.fH(B.Nn,9,t.fF) +B.QD=new A.dW([B.ad,B.bw,B.L],t.MA) +B.Nm={"canvaskit.js":0} +B.QE=new A.fH(B.Nm,1,t.fF) +B.u=new A.bY(6,"disabled") +B.iD=new A.dW([B.u],t.El) +B.QF=new A.dW([B.c4,B.b4,B.at,B.bu,B.bf],t.Lu) +B.Nx={click:0,keyup:1,keydown:2,mouseup:3,mousedown:4,pointerdown:5,pointerup:6} +B.QG=new A.fH(B.Nx,7,t.fF) +B.QH=new A.dW([B.ad,B.L,B.bw],t.MA) +B.QJ=new A.fH(B.bs,0,A.aD("fH")) +B.QI=new A.fH(B.bs,0,A.aD("fH")) +B.aO=new A.fH(B.bs,0,A.aD("fH")) +B.QK=new A.dW([32,8203],t.Ih) +B.E=new A.bY(1,"focused") +B.A=new A.bY(0,"hovered") +B.T=new A.bY(2,"pressed") +B.QL=new A.dW([B.E,B.A,B.T],t.El) +B.Np={click:0,touchstart:1,touchend:2,pointerdown:3,pointermove:4,pointerup:5} +B.QM=new A.fH(B.Np,6,t.fF) +B.Qx=new A.iG(8,"row") +B.QN=new A.dW([B.Qx,B.zO],A.aD("dW")) +B.zW=new A.dW([B.at,B.b4,B.c4,B.bf,B.bu],t.Lu) +B.V=new A.bY(4,"selected") +B.iE=new A.dW([B.V],t.El) +B.F5=new A.u(0.23529411764705882,0,0,0,B.e) +B.ND=new A.j(0,4) +B.Ch=new A.dU(0.5,B.dB,B.F5,B.ND,10) +B.Kr=s([B.Ch],t.sq) +B.PV=new A.kD(B.n3,B.q) +B.QO=new A.i1(null,null,null,B.Kr,B.PV) +B.zX=new A.ag(B.l4,!1,!1,!1,!0,B.m) +B.QP=new A.ag(B.pD,!0,!1,!1,!1,B.m) +B.bm=new A.Bs(1,"locked") +B.QR=new A.ag(B.de,!1,!0,!1,!1,B.bm) +B.QS=new A.ag(B.fl,!1,!0,!1,!1,B.bm) +B.zY=new A.ag(B.l3,!1,!1,!1,!0,B.m) +B.QT=new A.ag(B.vs,!0,!1,!1,!1,B.m) +B.zZ=new A.ag(B.lg,!0,!1,!1,!1,B.m) +B.A_=new A.ag(B.l4,!0,!1,!1,!1,B.m) +B.QU=new A.ag(B.da,!0,!0,!1,!1,B.bm) +B.A0=new A.ag(B.lg,!1,!1,!1,!0,B.m) +B.bn=new A.Bs(2,"unlocked") +B.R_=new A.ag(B.fi,!1,!1,!1,!1,B.bn) +B.QX=new A.ag(B.db,!1,!1,!1,!1,B.bn) +B.QY=new A.ag(B.fj,!1,!1,!1,!1,B.bn) +B.QW=new A.ag(B.dc,!1,!1,!1,!1,B.bn) +B.QV=new A.ag(B.dd,!1,!1,!1,!1,B.bn) +B.QZ=new A.ag(B.fk,!1,!1,!1,!1,B.bn) +B.A2=new A.ag(B.l3,!0,!1,!1,!1,B.m) +B.R7=new A.ag(B.fi,!1,!0,!1,!1,B.bm) +B.R4=new A.ag(B.db,!1,!0,!1,!1,B.bm) +B.R5=new A.ag(B.fj,!1,!0,!1,!1,B.bm) +B.R3=new A.ag(B.dc,!1,!0,!1,!1,B.bm) +B.R2=new A.ag(B.dd,!1,!0,!1,!1,B.bm) +B.R6=new A.ag(B.fk,!1,!0,!1,!1,B.bm) +B.R8=new A.ag(B.da,!1,!1,!1,!1,B.bn) +B.Rb=new A.ag(B.db,!0,!1,!1,!1,B.bn) +B.Ra=new A.ag(B.dc,!0,!1,!1,!1,B.bn) +B.R9=new A.ag(B.dd,!0,!1,!1,!1,B.bn) +B.Rd=new A.ag(B.pE,!0,!1,!1,!1,B.m) +B.Re=new A.ag(B.pG,!0,!1,!1,!1,B.m) +B.iH=new A.ag(B.d7,!0,!1,!1,!1,B.m) +B.iG=new A.ag(B.d8,!0,!1,!1,!1,B.m) +B.Rg=new A.ag(B.fa,!0,!1,!1,!1,B.m) +B.Rh=new A.ag(B.fa,!1,!0,!1,!0,B.m) +B.Rj=new A.ag(B.c_,!1,!0,!1,!0,B.m) +B.A9=new A.ag(B.bO,!1,!0,!1,!0,B.m) +B.Aa=new A.ag(B.bP,!1,!0,!1,!0,B.m) +B.Ri=new A.ag(B.c0,!1,!0,!1,!0,B.m) +B.Rk=new A.ag(B.de,!0,!1,!1,!1,B.bn) +B.Rm=new A.ag(B.de,!1,!1,!1,!1,B.bn) +B.Rn=new A.ag(B.fl,!1,!1,!1,!1,B.bn) +B.Ro=new A.ag(B.pF,!0,!1,!1,!1,B.m) +B.Rq=new A.ag(B.da,!1,!0,!1,!1,B.bm) +B.Rr=new A.ag(B.fa,!0,!0,!1,!1,B.m) +B.Rt=new A.ag(B.c_,!0,!0,!1,!1,B.m) +B.Rs=new A.ag(B.c0,!0,!0,!1,!1,B.m) +B.lW=new A.ag(B.d7,!0,!0,!1,!1,B.m) +B.lV=new A.ag(B.d8,!0,!0,!1,!1,B.m) +B.lX=new A.ag(B.lf,!0,!1,!1,!1,B.m) +B.Rv=new A.ag(B.pC,!0,!1,!1,!1,B.m) +B.Ry=new A.ag(B.db,!0,!0,!1,!1,B.bm) +B.Rx=new A.ag(B.dc,!0,!0,!1,!1,B.bm) +B.Rw=new A.ag(B.dd,!0,!0,!1,!1,B.bm) +B.Ag=new A.ag(B.c_,!1,!0,!1,!1,B.m) +B.lY=new A.ag(B.bO,!1,!0,!1,!1,B.m) +B.lZ=new A.ag(B.bP,!1,!0,!1,!1,B.m) +B.Af=new A.ag(B.c0,!1,!0,!1,!1,B.m) +B.fA=new A.ag(B.d7,!1,!0,!1,!1,B.m) +B.fz=new A.ag(B.d8,!1,!0,!1,!1,B.m) +B.m_=new A.ag(B.fd,!1,!0,!1,!1,B.m) +B.Ah=new A.ag(B.lf,!1,!1,!1,!0,B.m) +B.fD=new A.ag(B.d7,!1,!1,!1,!1,B.m) +B.fC=new A.ag(B.d8,!1,!1,!1,!1,B.m) +B.m3=new A.ag(B.c_,!1,!0,!0,!1,B.m) +B.m0=new A.ag(B.bO,!1,!0,!0,!1,B.m) +B.m1=new A.ag(B.bP,!1,!0,!0,!1,B.m) +B.m2=new A.ag(B.c0,!1,!0,!0,!1,B.m) +B.m4=new A.ag(B.fe,!1,!0,!1,!1,B.m) +B.RA=new A.ag(B.de,!0,!0,!1,!1,B.bm) +B.RB=new A.ag(B.fa,!1,!1,!1,!0,B.m) +B.RC=new A.ag(B.da,!0,!1,!1,!1,B.bn) +B.RD=new A.I(1e5,1e5) +B.Ai=new A.I(10,10) +B.RF=new A.I(18,18) +B.iN=new A.I(1,1) +B.Aj=new A.I(1,-1) +B.RG=new A.I(22,22) +B.Ak=new A.I(32,4) +B.Al=new A.I(40,40) +B.RH=new A.I(41,41) +B.RI=new A.I(48,36) +B.Am=new A.I(48,48) +B.RK=new A.I(80,47.5) +B.An=new A.I(-1,1) +B.Ao=new A.I(-1,-1) +B.RL=new A.I(77.37,37.9) +B.ay=new A.eB(0,0,null,null) +B.fE=new A.eB(12,null,null,null) +B.RN=new A.eB(16,null,null,null) +B.iO=new A.eB(8,null,null,null) +B.BI=new A.po(B.k,t.ZU) +B.DL=new A.im(2,null,null,null,null,null,B.BI,null,null,null) +B.m5=new A.eB(20,20,B.DL,null) +B.DN=new A.im(2,null,null,null,null,null,null,null,null,null) +B.RO=new A.eB(20,20,B.DN,null) +B.cN=new A.eB(null,12,null,null) +B.c5=new A.eB(null,24,null,null) +B.fF=new A.eB(null,32,null,null) +B.RP=new A.eB(null,48,null,null) +B.fG=new A.eB(null,4,null,null) +B.aX=new A.eB(null,8,null,null) +B.RR=new A.DK(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Ap=new A.Rc(0,0,0,0,0,0,!1,!1,null,0) +B.m6=new A.Re(0.75) +B.RS=new A.Re(0.8) +B.Aq=new A.alr(0,"firstIsTop") +B.Ar=new A.Rj(0,"disabled") +B.As=new A.Rj(1,"enabled") +B.At=new A.Rk(0,"disabled") +B.Au=new A.Rk(1,"enabled") +B.RT=new A.Rl(0,"fixed") +B.RU=new A.Rl(1,"floating") +B.RV=new A.jK(0,"action") +B.RW=new A.jK(1,"dismiss") +B.RX=new A.jK(2,"swipe") +B.RY=new A.jK(3,"hide") +B.a_R=new A.jK(4,"remove") +B.RZ=new A.jK(5,"timeout") +B.S_=new A.w1(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Xl=new A.bH("Registrierung erfolgreich! Du kannst dich jetzt anmelden.",null,null,null,null,null,null,null,null) +B.S0=new A.jJ(B.Xl,B.br,null,null,null,null,null,null,null,null,null,null,null,B.bW,!1,null,null,null,B.B,null) +B.Xv=new A.bH("Erfolgreich eingeloggt!",null,null,null,null,null,null,null,null) +B.S1=new A.jJ(B.Xv,B.br,null,null,null,null,null,null,null,null,null,null,null,B.bW,!1,null,null,null,B.B,null) +B.Xb=new A.bH("Bitte akzeptiere die Nutzungsbedingungen",null,null,null,null,null,null,null,null) +B.S2=new A.jJ(B.Xb,B.aV,null,null,null,null,null,null,null,null,null,null,null,B.bW,!1,null,null,null,B.B,null) +B.X7=new A.bH("Erfolgreich abgemeldet",null,null,null,null,null,null,null,null) +B.S3=new A.jJ(B.X7,B.br,null,null,null,null,null,null,null,null,null,null,null,B.bW,!1,null,null,null,B.B,null) +B.X8=new A.bH("Profil erfolgreich aktualisiert",null,null,null,null,null,null,null,null) +B.S4=new A.jJ(B.X8,B.br,null,null,null,null,null,null,null,null,null,null,null,B.bW,!1,null,null,null,B.B,null) +B.Av=new A.DP(0,"permissive") +B.S5=new A.DP(1,"normal") +B.S6=new A.DP(2,"forced") +B.Aw=new A.Rv(null) +B.fH=new A.DQ(null,null,null,null,!1) +B.S7=new A.DT(0,"criticallyDamped") +B.S8=new A.DT(1,"underDamped") +B.S9=new A.DT(2,"overDamped") +B.bp=new A.Rz(0,"loose") +B.Ax=new A.Rz(2,"passthrough") +B.Sa=new A.jM("",-1,"","","",-1,-1,"","asynchronous suspension") +B.Sb=new A.jM("...",-1,"","","",-1,-1,"","...") +B.Ay=new A.fP(B.q) +B.Sd=new A.rO(2,"moreButton") +B.Se=new A.rO(3,"drawerButton") +B.co=new A.f7("") +B.iP=new A.E0(0,"butt") +B.m7=new A.E0(1,"round") +B.Sf=new A.E0(2,"square") +B.m8=new A.RJ(0,"miter") +B.AA=new A.RJ(1,"round") +B.Sg=new A.E1(null,null,null,0,null,null,null,0,null,null) +B.AB=new A.E3(0,"None") +B.iQ=new A.E3(1,"Alphabetic") +B.m9=new A.E3(2,"Numeric") +B.Sh=new A.E5(null,null,null,null,null,null,null,null,null,null) +B.Si=new A.f8("_count=") +B.Sj=new A.f8("_reentrantlyRemovedListeners=") +B.Sk=new A.f8("_notificationCallStackDepth=") +B.Sl=new A.f8("_count") +B.Sm=new A.f8("_listeners") +B.Sn=new A.f8("_notificationCallStackDepth") +B.So=new A.f8("_reentrantlyRemovedListeners") +B.Sp=new A.f8("_removeAt") +B.Sq=new A.f8("_listeners=") +B.b5=new A.kI("basic") +B.cp=new A.kI("click") +B.AE=new A.kI("text") +B.AF=new A.RK(0,"click") +B.Sr=new A.RK(2,"alert") +B.AG=new A.kJ(B.l,null,B.ag,null,null,B.ag,B.am,null) +B.AH=new A.kJ(B.l,null,B.ag,null,null,B.am,B.ag,null) +B.Ss=new A.E9(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.ma=new A.ama("tap") +B.AI=new A.RR(0) +B.AJ=new A.RR(-1) +B.o=new A.oq(0,"alphabetic") +B.X=new A.oq(1,"ideographic") +B.St=new A.we(null) +B.mb=new A.wf(3,"none") +B.AK=new A.Ei(B.mb) +B.AL=new A.wf(0,"words") +B.AM=new A.wf(1,"sentences") +B.AN=new A.wf(2,"characters") +B.em=new A.amg(3,"none") +B.AP=new A.wg(4) +B.mf=new A.fT(0,0,B.j,!1,0,0) +B.AQ=new A.cA("",B.mf,B.bg) +B.mc=new A.rS(0,"character") +B.Sv=new A.rS(1,"word") +B.AR=new A.rS(2,"paragraph") +B.Sw=new A.rS(3,"line") +B.Sx=new A.rS(4,"document") +B.me=new A.RZ(0,"proportional") +B.AS=new A.En(B.me) +B.Sy=new A.fS(0,"none") +B.Sz=new A.fS(1,"unspecified") +B.SA=new A.fS(10,"route") +B.SB=new A.fS(11,"emergencyCall") +B.AT=new A.fS(12,"newline") +B.fJ=new A.fS(2,"done") +B.SC=new A.fS(3,"go") +B.AU=new A.fS(4,"search") +B.SD=new A.fS(5,"send") +B.dp=new A.fS(6,"next") +B.SE=new A.fS(7,"previous") +B.SF=new A.fS(8,"continueAction") +B.SG=new A.fS(9,"join") +B.SH=new A.me(0,null,null) +B.SI=new A.me(10,null,null) +B.md=new A.me(1,null,null) +B.SJ=new A.me(3,null,null) +B.fK=new A.me(5,null,null) +B.SK=new A.me(6,null,null) +B.D=new A.RZ(1,"even") +B.aA=new A.Eq(2,"ellipsis") +B.SL=new A.Eq(3,"visible") +B.SM=new A.ao(0,B.ak) +B.fL=new A.ao(0,B.j) +B.AV=new A.c4(0,0) +B.SN=new A.Ev(null,null,null) +B.SO=new A.Ew(B.i,null) +B.AW=new A.p(!0,B.k,null,null,null,null,10,B.H,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.h=new A.wg(0) +B.Tn=new A.p(!1,B.ho,null,"CupertinoSystemText",null,null,17,null,null,-0.41,null,null,null,null,null,null,null,B.h,null,null,null,null,null,null,null,null) +B.AO=new A.wg(1) +B.AX=new A.p(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.AO,null,null,null,null,null,null,null,null) +B.U7=new A.p(!0,null,null,null,null,null,null,B.r,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.mg=new A.p(!0,null,null,null,null,null,null,B.H,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.F6=new A.u(0.8156862745098039,1,0,0,B.e) +B.EF=new A.u(1,1,1,0,B.e) +B.Su=new A.amh(1,"double") +B.Ul=new A.p(!0,B.F6,null,"monospace",null,null,48,B.oL,null,null,null,null,null,null,null,null,null,B.AO,B.EF,B.Su,null,"fallback style; consider putting your text in a Material",null,null,null,null) +B.UH=new A.p(!0,B.k,null,null,null,null,10,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.fM=new A.p(!0,null,null,null,null,null,16,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.UZ=new A.p(!1,null,null,null,null,null,15,B.r,null,-0.15,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Va=new A.p(!0,B.k,null,null,null,null,32,B.H,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.AY=new A.p(!1,null,null,null,null,null,14,B.r,null,-0.15,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Tp=new A.p(!1,null,null,null,null,null,112,B.kQ,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense displayLarge 2014",null,null,null,null) +B.VC=new A.p(!1,null,null,null,null,null,56,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense displayMedium 2014",null,null,null,null) +B.SS=new A.p(!1,null,null,null,null,null,45,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense displaySmall 2014",null,null,null,null) +B.TL=new A.p(!1,null,null,null,null,null,40,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense headlineLarge 2014",null,null,null,null) +B.W9=new A.p(!1,null,null,null,null,null,34,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense headlineMedium 2014",null,null,null,null) +B.Vi=new A.p(!1,null,null,null,null,null,24,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense headlineSmall 2014",null,null,null,null) +B.Th=new A.p(!1,null,null,null,null,null,21,B.a8,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense titleLarge 2014",null,null,null,null) +B.Vl=new A.p(!1,null,null,null,null,null,17,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense titleMedium 2014",null,null,null,null) +B.TV=new A.p(!1,null,null,null,null,null,15,B.a8,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense titleSmall 2014",null,null,null,null) +B.VU=new A.p(!1,null,null,null,null,null,15,B.a8,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense bodyLarge 2014",null,null,null,null) +B.Vf=new A.p(!1,null,null,null,null,null,15,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense bodyMedium 2014",null,null,null,null) +B.V2=new A.p(!1,null,null,null,null,null,13,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense bodySmall 2014",null,null,null,null) +B.TX=new A.p(!1,null,null,null,null,null,15,B.a8,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense labelLarge 2014",null,null,null,null) +B.Um=new A.p(!1,null,null,null,null,null,12,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense labelMedium 2014",null,null,null,null) +B.Uu=new A.p(!1,null,null,null,null,null,11,B.r,null,null,null,B.X,null,null,null,null,null,null,null,null,null,"dense labelSmall 2014",null,null,null,null) +B.WK=new A.e2(B.Tp,B.VC,B.SS,B.TL,B.W9,B.Vi,B.Th,B.Vl,B.TV,B.VU,B.Vf,B.V2,B.TX,B.Um,B.Uu) +B.T9=new A.p(!0,B.S,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino displayLarge",null,null,null,null) +B.UR=new A.p(!0,B.S,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino displayMedium",null,null,null,null) +B.Vg=new A.p(!0,B.S,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino displaySmall",null,null,null,null) +B.U8=new A.p(!0,B.S,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino headlineLarge",null,null,null,null) +B.Tb=new A.p(!0,B.S,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino headlineMedium",null,null,null,null) +B.VR=new A.p(!0,B.W,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino headlineSmall",null,null,null,null) +B.Ta=new A.p(!0,B.W,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino titleLarge",null,null,null,null) +B.Wa=new A.p(!0,B.W,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino titleMedium",null,null,null,null) +B.UL=new A.p(!0,B.l,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino titleSmall",null,null,null,null) +B.WI=new A.p(!0,B.W,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino bodyLarge",null,null,null,null) +B.SY=new A.p(!0,B.W,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino bodyMedium",null,null,null,null) +B.UP=new A.p(!0,B.S,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino bodySmall",null,null,null,null) +B.UF=new A.p(!0,B.W,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino labelLarge",null,null,null,null) +B.UM=new A.p(!0,B.l,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino labelMedium",null,null,null,null) +B.SV=new A.p(!0,B.l,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackCupertino labelSmall",null,null,null,null) +B.WL=new A.e2(B.T9,B.UR,B.Vg,B.U8,B.Tb,B.VR,B.Ta,B.Wa,B.UL,B.WI,B.SY,B.UP,B.UF,B.UM,B.SV) +B.Wc=new A.p(!0,B.Y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity displayLarge",null,null,null,null) +B.Tm=new A.p(!0,B.Y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity displayMedium",null,null,null,null) +B.Wd=new A.p(!0,B.Y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity displaySmall",null,null,null,null) +B.Wr=new A.p(!0,B.Y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity headlineLarge",null,null,null,null) +B.Tt=new A.p(!0,B.Y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity headlineMedium",null,null,null,null) +B.Up=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity headlineSmall",null,null,null,null) +B.TH=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity titleLarge",null,null,null,null) +B.Vo=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity titleMedium",null,null,null,null) +B.Vs=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity titleSmall",null,null,null,null) +B.VN=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity bodyLarge",null,null,null,null) +B.V3=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity bodyMedium",null,null,null,null) +B.UW=new A.p(!0,B.Y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity bodySmall",null,null,null,null) +B.U_=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity labelLarge",null,null,null,null) +B.V_=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity labelMedium",null,null,null,null) +B.TA=new A.p(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedwoodCity labelSmall",null,null,null,null) +B.WM=new A.e2(B.Wc,B.Tm,B.Wd,B.Wr,B.Tt,B.Up,B.TH,B.Vo,B.Vs,B.VN,B.V3,B.UW,B.U_,B.V_,B.TA) +B.UJ=new A.p(!0,B.Y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond displayLarge",null,null,null,null) +B.T7=new A.p(!0,B.Y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond displayMedium",null,null,null,null) +B.Wh=new A.p(!0,B.Y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond displaySmall",null,null,null,null) +B.Tk=new A.p(!0,B.Y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond headlineLarge",null,null,null,null) +B.VO=new A.p(!0,B.Y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond headlineMedium",null,null,null,null) +B.UU=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond headlineSmall",null,null,null,null) +B.Wf=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond titleLarge",null,null,null,null) +B.TM=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond titleMedium",null,null,null,null) +B.Tz=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond titleSmall",null,null,null,null) +B.Wu=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond bodyLarge",null,null,null,null) +B.W2=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond bodyMedium",null,null,null,null) +B.Vr=new A.p(!0,B.Y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond bodySmall",null,null,null,null) +B.Tl=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond labelLarge",null,null,null,null) +B.Uj=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond labelMedium",null,null,null,null) +B.SP=new A.p(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteRedmond labelSmall",null,null,null,null) +B.WN=new A.e2(B.UJ,B.T7,B.Wh,B.Tk,B.VO,B.UU,B.Wf,B.TM,B.Tz,B.Wu,B.W2,B.Vr,B.Tl,B.Uj,B.SP) +B.Vy=new A.p(!1,null,null,null,null,null,112,B.kQ,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike displayLarge 2014",null,null,null,null) +B.VG=new A.p(!1,null,null,null,null,null,56,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike displayMedium 2014",null,null,null,null) +B.Vh=new A.p(!1,null,null,null,null,null,45,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike displaySmall 2014",null,null,null,null) +B.VA=new A.p(!1,null,null,null,null,null,40,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike headlineLarge 2014",null,null,null,null) +B.Uh=new A.p(!1,null,null,null,null,null,34,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike headlineMedium 2014",null,null,null,null) +B.Td=new A.p(!1,null,null,null,null,null,24,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike headlineSmall 2014",null,null,null,null) +B.U2=new A.p(!1,null,null,null,null,null,20,B.a8,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike titleLarge 2014",null,null,null,null) +B.UT=new A.p(!1,null,null,null,null,null,16,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike titleMedium 2014",null,null,null,null) +B.T3=new A.p(!1,null,null,null,null,null,14,B.a8,null,0.1,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike titleSmall 2014",null,null,null,null) +B.SQ=new A.p(!1,null,null,null,null,null,14,B.a8,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike bodyLarge 2014",null,null,null,null) +B.SR=new A.p(!1,null,null,null,null,null,14,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike bodyMedium 2014",null,null,null,null) +B.Tg=new A.p(!1,null,null,null,null,null,12,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike bodySmall 2014",null,null,null,null) +B.Vt=new A.p(!1,null,null,null,null,null,14,B.a8,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike labelLarge 2014",null,null,null,null) +B.Ur=new A.p(!1,null,null,null,null,null,12,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike labelMedium 2014",null,null,null,null) +B.VZ=new A.p(!1,null,null,null,null,null,10,B.r,null,1.5,null,B.o,null,null,null,null,null,null,null,null,null,"englishLike labelSmall 2014",null,null,null,null) +B.WO=new A.e2(B.Vy,B.VG,B.Vh,B.VA,B.Uh,B.Td,B.U2,B.UT,B.T3,B.SQ,B.SR,B.Tg,B.Vt,B.Ur,B.VZ) +B.TT=new A.p(!0,B.Y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView displayLarge",null,null,null,null) +B.U5=new A.p(!0,B.Y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView displayMedium",null,null,null,null) +B.Ty=new A.p(!0,B.Y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView displaySmall",null,null,null,null) +B.SU=new A.p(!0,B.Y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView headlineLarge",null,null,null,null) +B.Uz=new A.p(!0,B.Y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView headlineMedium",null,null,null,null) +B.Wt=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView headlineSmall",null,null,null,null) +B.Tw=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView titleLarge",null,null,null,null) +B.TP=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView titleMedium",null,null,null,null) +B.Vp=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView titleSmall",null,null,null,null) +B.UB=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView bodyLarge",null,null,null,null) +B.Wy=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView bodyMedium",null,null,null,null) +B.Wx=new A.p(!0,B.Y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView bodySmall",null,null,null,null) +B.U3=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView labelLarge",null,null,null,null) +B.VE=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView labelMedium",null,null,null,null) +B.Wj=new A.p(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteMountainView labelSmall",null,null,null,null) +B.WP=new A.e2(B.TT,B.U5,B.Ty,B.SU,B.Uz,B.Wt,B.Tw,B.TP,B.Vp,B.UB,B.Wy,B.Wx,B.U3,B.VE,B.Wj) +B.Wm=new A.p(!1,null,null,null,null,null,57,B.r,null,-0.25,null,B.o,1.12,B.D,null,null,null,null,null,null,null,"englishLike displayLarge 2021",null,null,null,null) +B.VI=new A.p(!1,null,null,null,null,null,45,B.r,null,0,null,B.o,1.16,B.D,null,null,null,null,null,null,null,"englishLike displayMedium 2021",null,null,null,null) +B.V8=new A.p(!1,null,null,null,null,null,36,B.r,null,0,null,B.o,1.22,B.D,null,null,null,null,null,null,null,"englishLike displaySmall 2021",null,null,null,null) +B.Vb=new A.p(!1,null,null,null,null,null,32,B.r,null,0,null,B.o,1.25,B.D,null,null,null,null,null,null,null,"englishLike headlineLarge 2021",null,null,null,null) +B.UK=new A.p(!1,null,null,null,null,null,28,B.r,null,0,null,B.o,1.29,B.D,null,null,null,null,null,null,null,"englishLike headlineMedium 2021",null,null,null,null) +B.WA=new A.p(!1,null,null,null,null,null,24,B.r,null,0,null,B.o,1.33,B.D,null,null,null,null,null,null,null,"englishLike headlineSmall 2021",null,null,null,null) +B.T_=new A.p(!1,null,null,null,null,null,22,B.r,null,0,null,B.o,1.27,B.D,null,null,null,null,null,null,null,"englishLike titleLarge 2021",null,null,null,null) +B.TU=new A.p(!1,null,null,null,null,null,16,B.a8,null,0.15,null,B.o,1.5,B.D,null,null,null,null,null,null,null,"englishLike titleMedium 2021",null,null,null,null) +B.W3=new A.p(!1,null,null,null,null,null,14,B.a8,null,0.1,null,B.o,1.43,B.D,null,null,null,null,null,null,null,"englishLike titleSmall 2021",null,null,null,null) +B.T0=new A.p(!1,null,null,null,null,null,16,B.r,null,0.5,null,B.o,1.5,B.D,null,null,null,null,null,null,null,"englishLike bodyLarge 2021",null,null,null,null) +B.UY=new A.p(!1,null,null,null,null,null,14,B.r,null,0.25,null,B.o,1.43,B.D,null,null,null,null,null,null,null,"englishLike bodyMedium 2021",null,null,null,null) +B.ST=new A.p(!1,null,null,null,null,null,12,B.r,null,0.4,null,B.o,1.33,B.D,null,null,null,null,null,null,null,"englishLike bodySmall 2021",null,null,null,null) +B.Uw=new A.p(!1,null,null,null,null,null,14,B.a8,null,0.1,null,B.o,1.43,B.D,null,null,null,null,null,null,null,"englishLike labelLarge 2021",null,null,null,null) +B.TY=new A.p(!1,null,null,null,null,null,12,B.a8,null,0.5,null,B.o,1.33,B.D,null,null,null,null,null,null,null,"englishLike labelMedium 2021",null,null,null,null) +B.Vu=new A.p(!1,null,null,null,null,null,11,B.a8,null,0.5,null,B.o,1.45,B.D,null,null,null,null,null,null,null,"englishLike labelSmall 2021",null,null,null,null) +B.WQ=new A.e2(B.Wm,B.VI,B.V8,B.Vb,B.UK,B.WA,B.T_,B.TU,B.W3,B.T0,B.UY,B.ST,B.Uw,B.TY,B.Vu) +B.VB=new A.p(!1,null,null,null,null,null,112,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall displayLarge 2014",null,null,null,null) +B.Wq=new A.p(!1,null,null,null,null,null,56,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall displayMedium 2014",null,null,null,null) +B.TJ=new A.p(!1,null,null,null,null,null,45,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall displaySmall 2014",null,null,null,null) +B.VW=new A.p(!1,null,null,null,null,null,40,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall headlineLarge 2014",null,null,null,null) +B.Ug=new A.p(!1,null,null,null,null,null,34,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall headlineMedium 2014",null,null,null,null) +B.Ti=new A.p(!1,null,null,null,null,null,24,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall headlineSmall 2014",null,null,null,null) +B.TO=new A.p(!1,null,null,null,null,null,21,B.H,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall titleLarge 2014",null,null,null,null) +B.Ud=new A.p(!1,null,null,null,null,null,17,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall titleMedium 2014",null,null,null,null) +B.Wb=new A.p(!1,null,null,null,null,null,15,B.a8,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall titleSmall 2014",null,null,null,null) +B.Vm=new A.p(!1,null,null,null,null,null,15,B.H,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall bodyLarge 2014",null,null,null,null) +B.WJ=new A.p(!1,null,null,null,null,null,15,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall bodyMedium 2014",null,null,null,null) +B.V1=new A.p(!1,null,null,null,null,null,13,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall bodySmall 2014",null,null,null,null) +B.UG=new A.p(!1,null,null,null,null,null,15,B.H,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall labelLarge 2014",null,null,null,null) +B.WH=new A.p(!1,null,null,null,null,null,12,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall labelMedium 2014",null,null,null,null) +B.VF=new A.p(!1,null,null,null,null,null,11,B.r,null,null,null,B.o,null,null,null,null,null,null,null,null,null,"tall labelSmall 2014",null,null,null,null) +B.WR=new A.e2(B.VB,B.Wq,B.TJ,B.VW,B.Ug,B.Ti,B.TO,B.Ud,B.Wb,B.Vm,B.WJ,B.V1,B.UG,B.WH,B.VF) +B.WE=new A.p(!0,B.Y,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino displayLarge",null,null,null,null) +B.Wg=new A.p(!0,B.Y,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino displayMedium",null,null,null,null) +B.VH=new A.p(!0,B.Y,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino displaySmall",null,null,null,null) +B.Uq=new A.p(!0,B.Y,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino headlineLarge",null,null,null,null) +B.W4=new A.p(!0,B.Y,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino headlineMedium",null,null,null,null) +B.Uk=new A.p(!0,B.k,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino headlineSmall",null,null,null,null) +B.Vj=new A.p(!0,B.k,null,"CupertinoSystemDisplay",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino titleLarge",null,null,null,null) +B.W0=new A.p(!0,B.k,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino titleMedium",null,null,null,null) +B.Vc=new A.p(!0,B.k,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino titleSmall",null,null,null,null) +B.Wl=new A.p(!0,B.k,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino bodyLarge",null,null,null,null) +B.Ub=new A.p(!0,B.k,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino bodyMedium",null,null,null,null) +B.UI=new A.p(!0,B.Y,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino bodySmall",null,null,null,null) +B.Uo=new A.p(!0,B.k,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino labelLarge",null,null,null,null) +B.T5=new A.p(!0,B.k,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino labelMedium",null,null,null,null) +B.T4=new A.p(!0,B.k,null,"CupertinoSystemText",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteCupertino labelSmall",null,null,null,null) +B.WS=new A.e2(B.WE,B.Wg,B.VH,B.Uq,B.W4,B.Uk,B.Vj,B.W0,B.Vc,B.Wl,B.Ub,B.UI,B.Uo,B.T5,B.T4) +B.a0=s(["Ubuntu","Cantarell","DejaVu Sans","Liberation Sans","Arial"],t.s) +B.Vx=new A.p(!0,B.Y,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki displayLarge",null,null,null,null) +B.TI=new A.p(!0,B.Y,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki displayMedium",null,null,null,null) +B.Ua=new A.p(!0,B.Y,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki displaySmall",null,null,null,null) +B.Vk=new A.p(!0,B.Y,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki headlineLarge",null,null,null,null) +B.V0=new A.p(!0,B.Y,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki headlineMedium",null,null,null,null) +B.We=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki headlineSmall",null,null,null,null) +B.U6=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki titleLarge",null,null,null,null) +B.VX=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki titleMedium",null,null,null,null) +B.Uc=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki titleSmall",null,null,null,null) +B.Vd=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki bodyLarge",null,null,null,null) +B.Ue=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki bodyMedium",null,null,null,null) +B.Tq=new A.p(!0,B.Y,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki bodySmall",null,null,null,null) +B.Ts=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki labelLarge",null,null,null,null) +B.TW=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki labelMedium",null,null,null,null) +B.V6=new A.p(!0,B.k,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"whiteHelsinki labelSmall",null,null,null,null) +B.WT=new A.e2(B.Vx,B.TI,B.Ua,B.Vk,B.V0,B.We,B.U6,B.VX,B.Uc,B.Vd,B.Ue,B.Tq,B.Ts,B.TW,B.V6) +B.Ux=new A.p(!0,B.S,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki displayLarge",null,null,null,null) +B.T6=new A.p(!0,B.S,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki displayMedium",null,null,null,null) +B.Us=new A.p(!0,B.S,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki displaySmall",null,null,null,null) +B.UD=new A.p(!0,B.S,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki headlineLarge",null,null,null,null) +B.VJ=new A.p(!0,B.S,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki headlineMedium",null,null,null,null) +B.Wp=new A.p(!0,B.W,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki headlineSmall",null,null,null,null) +B.Tx=new A.p(!0,B.W,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki titleLarge",null,null,null,null) +B.Vw=new A.p(!0,B.W,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki titleMedium",null,null,null,null) +B.Vz=new A.p(!0,B.l,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki titleSmall",null,null,null,null) +B.UX=new A.p(!0,B.W,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki bodyLarge",null,null,null,null) +B.To=new A.p(!0,B.W,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki bodyMedium",null,null,null,null) +B.VS=new A.p(!0,B.S,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki bodySmall",null,null,null,null) +B.U0=new A.p(!0,B.W,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki labelLarge",null,null,null,null) +B.W8=new A.p(!0,B.l,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki labelMedium",null,null,null,null) +B.VV=new A.p(!0,B.l,null,"Roboto",B.a0,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackHelsinki labelSmall",null,null,null,null) +B.WU=new A.e2(B.Ux,B.T6,B.Us,B.UD,B.VJ,B.Wp,B.Tx,B.Vw,B.Vz,B.UX,B.To,B.VS,B.U0,B.W8,B.VV) +B.Wo=new A.p(!1,null,null,null,null,null,57,B.r,null,-0.25,null,B.X,1.12,B.D,null,null,null,null,null,null,null,"dense displayLarge 2021",null,null,null,null) +B.U4=new A.p(!1,null,null,null,null,null,45,B.r,null,0,null,B.X,1.16,B.D,null,null,null,null,null,null,null,"dense displayMedium 2021",null,null,null,null) +B.Uv=new A.p(!1,null,null,null,null,null,36,B.r,null,0,null,B.X,1.22,B.D,null,null,null,null,null,null,null,"dense displaySmall 2021",null,null,null,null) +B.TG=new A.p(!1,null,null,null,null,null,32,B.r,null,0,null,B.X,1.25,B.D,null,null,null,null,null,null,null,"dense headlineLarge 2021",null,null,null,null) +B.V5=new A.p(!1,null,null,null,null,null,28,B.r,null,0,null,B.X,1.29,B.D,null,null,null,null,null,null,null,"dense headlineMedium 2021",null,null,null,null) +B.Wv=new A.p(!1,null,null,null,null,null,24,B.r,null,0,null,B.X,1.33,B.D,null,null,null,null,null,null,null,"dense headlineSmall 2021",null,null,null,null) +B.Ws=new A.p(!1,null,null,null,null,null,22,B.r,null,0,null,B.X,1.27,B.D,null,null,null,null,null,null,null,"dense titleLarge 2021",null,null,null,null) +B.VK=new A.p(!1,null,null,null,null,null,16,B.a8,null,0.15,null,B.X,1.5,B.D,null,null,null,null,null,null,null,"dense titleMedium 2021",null,null,null,null) +B.Vq=new A.p(!1,null,null,null,null,null,14,B.a8,null,0.1,null,B.X,1.43,B.D,null,null,null,null,null,null,null,"dense titleSmall 2021",null,null,null,null) +B.VD=new A.p(!1,null,null,null,null,null,16,B.r,null,0.5,null,B.X,1.5,B.D,null,null,null,null,null,null,null,"dense bodyLarge 2021",null,null,null,null) +B.Ve=new A.p(!1,null,null,null,null,null,14,B.r,null,0.25,null,B.X,1.43,B.D,null,null,null,null,null,null,null,"dense bodyMedium 2021",null,null,null,null) +B.Tc=new A.p(!1,null,null,null,null,null,12,B.r,null,0.4,null,B.X,1.33,B.D,null,null,null,null,null,null,null,"dense bodySmall 2021",null,null,null,null) +B.SX=new A.p(!1,null,null,null,null,null,14,B.a8,null,0.1,null,B.X,1.43,B.D,null,null,null,null,null,null,null,"dense labelLarge 2021",null,null,null,null) +B.US=new A.p(!1,null,null,null,null,null,12,B.a8,null,0.5,null,B.X,1.33,B.D,null,null,null,null,null,null,null,"dense labelMedium 2021",null,null,null,null) +B.TC=new A.p(!1,null,null,null,null,null,11,B.a8,null,0.5,null,B.X,1.45,B.D,null,null,null,null,null,null,null,"dense labelSmall 2021",null,null,null,null) +B.WV=new A.e2(B.Wo,B.U4,B.Uv,B.TG,B.V5,B.Wv,B.Ws,B.VK,B.Vq,B.VD,B.Ve,B.Tc,B.SX,B.US,B.TC) +B.TD=new A.p(!0,B.S,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond displayLarge",null,null,null,null) +B.Uy=new A.p(!0,B.S,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond displayMedium",null,null,null,null) +B.WC=new A.p(!0,B.S,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond displaySmall",null,null,null,null) +B.Uf=new A.p(!0,B.S,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond headlineLarge",null,null,null,null) +B.UC=new A.p(!0,B.S,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond headlineMedium",null,null,null,null) +B.W5=new A.p(!0,B.W,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond headlineSmall",null,null,null,null) +B.UQ=new A.p(!0,B.W,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond titleLarge",null,null,null,null) +B.VL=new A.p(!0,B.W,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond titleMedium",null,null,null,null) +B.Wk=new A.p(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond titleSmall",null,null,null,null) +B.Ui=new A.p(!0,B.W,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond bodyLarge",null,null,null,null) +B.TS=new A.p(!0,B.W,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond bodyMedium",null,null,null,null) +B.SW=new A.p(!0,B.S,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond bodySmall",null,null,null,null) +B.TK=new A.p(!0,B.W,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond labelLarge",null,null,null,null) +B.WD=new A.p(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond labelMedium",null,null,null,null) +B.Wz=new A.p(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedmond labelSmall",null,null,null,null) +B.WW=new A.e2(B.TD,B.Uy,B.WC,B.Uf,B.UC,B.W5,B.UQ,B.VL,B.Wk,B.Ui,B.TS,B.SW,B.TK,B.WD,B.Wz) +B.Vv=new A.p(!1,null,null,null,null,null,57,B.r,null,-0.25,null,B.o,1.12,B.D,null,null,null,null,null,null,null,"tall displayLarge 2021",null,null,null,null) +B.TE=new A.p(!1,null,null,null,null,null,45,B.r,null,0,null,B.o,1.16,B.D,null,null,null,null,null,null,null,"tall displayMedium 2021",null,null,null,null) +B.WG=new A.p(!1,null,null,null,null,null,36,B.r,null,0,null,B.o,1.22,B.D,null,null,null,null,null,null,null,"tall displaySmall 2021",null,null,null,null) +B.Wi=new A.p(!1,null,null,null,null,null,32,B.r,null,0,null,B.o,1.25,B.D,null,null,null,null,null,null,null,"tall headlineLarge 2021",null,null,null,null) +B.TN=new A.p(!1,null,null,null,null,null,28,B.r,null,0,null,B.o,1.29,B.D,null,null,null,null,null,null,null,"tall headlineMedium 2021",null,null,null,null) +B.W_=new A.p(!1,null,null,null,null,null,24,B.r,null,0,null,B.o,1.33,B.D,null,null,null,null,null,null,null,"tall headlineSmall 2021",null,null,null,null) +B.WB=new A.p(!1,null,null,null,null,null,22,B.r,null,0,null,B.o,1.27,B.D,null,null,null,null,null,null,null,"tall titleLarge 2021",null,null,null,null) +B.Tv=new A.p(!1,null,null,null,null,null,16,B.a8,null,0.15,null,B.o,1.5,B.D,null,null,null,null,null,null,null,"tall titleMedium 2021",null,null,null,null) +B.Wn=new A.p(!1,null,null,null,null,null,14,B.a8,null,0.1,null,B.o,1.43,B.D,null,null,null,null,null,null,null,"tall titleSmall 2021",null,null,null,null) +B.Ww=new A.p(!1,null,null,null,null,null,16,B.r,null,0.5,null,B.o,1.5,B.D,null,null,null,null,null,null,null,"tall bodyLarge 2021",null,null,null,null) +B.VY=new A.p(!1,null,null,null,null,null,14,B.r,null,0.25,null,B.o,1.43,B.D,null,null,null,null,null,null,null,"tall bodyMedium 2021",null,null,null,null) +B.Tr=new A.p(!1,null,null,null,null,null,12,B.r,null,0.4,null,B.o,1.33,B.D,null,null,null,null,null,null,null,"tall bodySmall 2021",null,null,null,null) +B.Tf=new A.p(!1,null,null,null,null,null,14,B.a8,null,0.1,null,B.o,1.43,B.D,null,null,null,null,null,null,null,"tall labelLarge 2021",null,null,null,null) +B.UE=new A.p(!1,null,null,null,null,null,12,B.a8,null,0.5,null,B.o,1.33,B.D,null,null,null,null,null,null,null,"tall labelMedium 2021",null,null,null,null) +B.U1=new A.p(!1,null,null,null,null,null,11,B.a8,null,0.5,null,B.o,1.45,B.D,null,null,null,null,null,null,null,"tall labelSmall 2021",null,null,null,null) +B.WX=new A.e2(B.Vv,B.TE,B.WG,B.Wi,B.TN,B.W_,B.WB,B.Tv,B.Wn,B.Ww,B.VY,B.Tr,B.Tf,B.UE,B.U1) +B.VQ=new A.p(!0,B.S,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView displayLarge",null,null,null,null) +B.T1=new A.p(!0,B.S,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView displayMedium",null,null,null,null) +B.V4=new A.p(!0,B.S,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView displaySmall",null,null,null,null) +B.UV=new A.p(!0,B.S,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView headlineLarge",null,null,null,null) +B.TZ=new A.p(!0,B.S,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView headlineMedium",null,null,null,null) +B.VM=new A.p(!0,B.W,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView headlineSmall",null,null,null,null) +B.T2=new A.p(!0,B.W,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView titleLarge",null,null,null,null) +B.W1=new A.p(!0,B.W,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView titleMedium",null,null,null,null) +B.Ut=new A.p(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView titleSmall",null,null,null,null) +B.Te=new A.p(!0,B.W,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView bodyLarge",null,null,null,null) +B.TR=new A.p(!0,B.W,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView bodyMedium",null,null,null,null) +B.WF=new A.p(!0,B.S,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView bodySmall",null,null,null,null) +B.V7=new A.p(!0,B.W,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView labelLarge",null,null,null,null) +B.UA=new A.p(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView labelMedium",null,null,null,null) +B.TF=new A.p(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackMountainView labelSmall",null,null,null,null) +B.WY=new A.e2(B.VQ,B.T1,B.V4,B.UV,B.TZ,B.VM,B.T2,B.W1,B.Ut,B.Te,B.TR,B.WF,B.V7,B.UA,B.TF) +B.UN=new A.p(!0,B.S,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity displayLarge",null,null,null,null) +B.TQ=new A.p(!0,B.S,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity displayMedium",null,null,null,null) +B.UO=new A.p(!0,B.S,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity displaySmall",null,null,null,null) +B.Vn=new A.p(!0,B.S,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity headlineLarge",null,null,null,null) +B.Tu=new A.p(!0,B.S,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity headlineMedium",null,null,null,null) +B.TB=new A.p(!0,B.W,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity headlineSmall",null,null,null,null) +B.U9=new A.p(!0,B.W,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity titleLarge",null,null,null,null) +B.V9=new A.p(!0,B.W,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity titleMedium",null,null,null,null) +B.Un=new A.p(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity titleSmall",null,null,null,null) +B.VT=new A.p(!0,B.W,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity bodyLarge",null,null,null,null) +B.SZ=new A.p(!0,B.W,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity bodyMedium",null,null,null,null) +B.Tj=new A.p(!0,B.S,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity bodySmall",null,null,null,null) +B.VP=new A.p(!0,B.W,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity labelLarge",null,null,null,null) +B.W7=new A.p(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity labelMedium",null,null,null,null) +B.T8=new A.p(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.h,null,null,null,"blackRedwoodCity labelSmall",null,null,null,null) +B.WZ=new A.e2(B.UN,B.TQ,B.UO,B.Vn,B.Tu,B.TB,B.U9,B.V9,B.Un,B.VT,B.SZ,B.Tj,B.VP,B.W7,B.T8) +B.fN=new A.bH("Erneut versuchen",null,null,null,null,null,null,null,null) +B.X_=new A.bH("Zur Kasse",null,null,null,null,null,null,null,null) +B.X0=new A.bH("Bitte melde dich an",null,null,null,null,null,null,null,null) +B.X1=new A.bH("Passwort vergessen?",null,null,null,null,null,null,null,null) +B.X2=new A.bH("Rechnungsadresse",null,null,null,null,null,null,null,null) +B.X3=new A.bH("HyggeCraftery",null,null,null,null,null,null,null,null) +B.X5=new A.bH("Jetzt anmelden",null,null,null,null,null,null,null,null) +B.X6=new A.bH("Zur\xfcck zum Login",null,null,null,null,null,null,null,null) +B.AZ=new A.bH("Profil bearbeiten",null,null,null,null,null,null,null,null) +B.X9=new A.bH("Registrieren",null,null,null,null,null,null,null,null) +B.Xa=new A.bH("Suche",null,null,null,null,null,null,null,null) +B.B_=new A.bH("Abbrechen",null,null,null,null,null,null,null,null) +B.Xc=new A.bH("Weiter einkaufen",null,null,null,null,null,null,null,null) +B.mh=new A.bH("Meine Bestellungen",null,null,null,null,null,null,null,null) +B.Xd=new A.bH("M\xf6chtest du wirklich abbrechen? Dein Warenkorb bleibt erhalten.",null,null,null,null,null,null,null,null) +B.B0=new A.bH("Anmelden",null,null,null,null,null,null,null,null) +B.Xe=new A.bH("Noch kein Konto? ",null,null,null,null,null,null,null,null) +B.Xf=new A.bH("Bereits ein Konto? ",null,null,null,null,null,null,null,null) +B.Xg=new A.bH("Checkout abbrechen?",null,null,null,null,null,null,null,null) +B.Xh=new A.bH("Warenkorb",null,null,null,null,null,null,null,null) +B.Xi=new A.bH("Registrieren",null,B.fM,null,null,null,null,null,null) +B.Xj=new A.bH("Mein Profil",null,null,null,null,null,null,null,null) +B.Xm=new A.bH("Anmelden",null,B.fM,null,null,null,null,null,null) +B.Xn=new A.bH("Jetzt registrieren",null,null,null,null,null,null,null,null) +B.Xo=new A.bH("Schlie\xdfen",null,null,null,null,null,null,null,null) +B.Xp=new A.bH("Speichern",null,null,null,null,null,null,null,null) +B.Xq=new A.bH("Alle anzeigen",null,null,null,null,null,null,null,null) +B.Xr=new A.bH("Kategorien",null,null,null,null,null,null,null,null) +B.Xs=new A.bH("Reset-Link senden",null,B.fM,null,null,null,null,null,null) +B.Xt=new A.bH("Lieferadresse",null,null,null,null,null,null,null,null) +B.Xu=new A.bH("Passwort zur\xfccksetzen",null,null,null,null,null,null,null,null) +B.Xw=new A.bH("Zur Kasse",null,B.fM,null,null,null,null,null,null) +B.W6=new A.p(!0,B.aV,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.B2=new A.bH("Abmelden",null,B.W6,null,null,null,null,null,null) +B.a_S=new A.amY(0,"system") +B.NS=new A.j(0.056,0.024) +B.O7=new A.j(0.108,0.3085) +B.NP=new A.j(0.198,0.541) +B.NZ=new A.j(0.3655,1) +B.O6=new A.j(0.5465,0.989) +B.iU=new A.Ex(B.NS,B.O7,B.NP,B.NZ,B.O6) +B.B3=new A.Ey(0) +B.Xx=new A.Ey(0.5) +B.Xy=new A.Ez(null) +B.ep=new A.EA(0,"clamp") +B.B4=new A.EA(2,"mirror") +B.mi=new A.EA(3,"decal") +B.Xz=new A.EB(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.XA=new A.EC(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.XB=new A.EF(0.01,1/0) +B.c7=new A.EF(0.001,0.001) +B.XC=new A.EG(0,"darker") +B.dq=new A.EG(1,"lighter") +B.cs=new A.EG(2,"nearer") +B.mj=new A.wo(!1,!1,!1,!1) +B.XD=new A.wo(!1,!1,!0,!0) +B.XE=new A.wo(!0,!1,!1,!0) +B.XF=new A.wo(!0,!0,!0,!0) +B.XG=new A.EI(null,null,null,null,null,null,null,null,null,null) +B.B5=new A.EL(0,"identity") +B.B6=new A.EL(1,"transform2d") +B.B7=new A.EL(2,"complex") +B.ct=new A.ox(0,"up") +B.cu=new A.ox(1,"right") +B.cv=new A.ox(2,"down") +B.cw=new A.ox(3,"left") +B.B8=new A.EM(0,"closedLoop") +B.XH=new A.EM(1,"leaveFlutterView") +B.B9=new A.EM(3,"stop") +B.au=new A.EN(1,"isTrue") +B.fO=new A.EN(2,"isFalse") +B.XI=A.aJ("aT_") +B.XJ=A.aJ("kg") +B.XK=A.aJ("q1") +B.XL=A.aJ("q0") +B.XM=A.aJ("zR") +B.mk=A.aJ("tI") +B.XN=A.aJ("tW") +B.XO=A.aJ("k7") +B.XP=A.aJ("db") +B.XQ=A.aJ("dz") +B.XR=A.aJ("lg") +B.XS=A.aJ("kb") +B.XT=A.aJ("zs") +B.XU=A.aJ("pT") +B.XV=A.aJ("pU") +B.Ba=A.aJ("aCV") +B.ml=A.aJ("h5") +B.XW=A.aJ("aT0") +B.XX=A.aJ("ja") +B.XY=A.aJ("kf") +B.c8=A.aJ("uy") +B.XZ=A.aJ("a7N") +B.Y_=A.aJ("a8_") +B.Y0=A.aJ("a80") +B.Y1=A.aJ("jf") +B.Y2=A.aJ("aaK") +B.Y3=A.aJ("aaL") +B.Y4=A.aJ("aaM") +B.Y5=A.aJ("lp") +B.Y6=A.aJ("W") +B.Y7=A.aJ("bu>") +B.Y8=A.aJ("v0") +B.mm=A.aJ("jo") +B.Y9=A.aJ("aIM") +B.b6=A.aJ("qJ") +B.Ya=A.aJ("qW") +B.Yb=A.aJ("R") +B.Yc=A.aJ("vm") +B.iV=A.aJ("jz") +B.Yd=A.aJ("lO") +B.Ye=A.aJ("rg") +B.Yf=A.aJ("lX") +B.Yg=A.aJ("q3") +B.Yh=A.aJ("o4") +B.Yi=A.aJ("jD") +B.Yj=A.aJ("aDS") +B.mn=A.aJ("ey") +B.Yk=A.aJ("m4") +B.Yl=A.aJ("ol") +B.Ym=A.aJ("rM") +B.Yn=A.aJ("l") +B.Yo=A.aJ("kL") +B.iW=A.aJ("hq") +B.Yp=A.aJ("ow") +B.Yq=A.aJ("nh") +B.Yr=A.aJ("lt") +B.Ys=A.aJ("anf") +B.Yt=A.aJ("wr") +B.Yu=A.aJ("ang") +B.Yv=A.aJ("oy") +B.Yw=A.aJ("oz") +B.Yx=A.aJ("iO") +B.Yy=A.aJ("p7") +B.Yz=A.aJ("aEi") +B.Bb=A.aJ("F_") +B.YA=A.aJ("wE") +B.YB=A.aJ("my<@>") +B.YC=A.aJ("l1") +B.YD=A.aJ("pV") +B.YF=A.aJ("lq") +B.YE=A.aJ("ls") +B.mo=A.aJ("hN") +B.YG=A.aJ("lR") +B.YH=A.aJ("m3") +B.YI=A.aJ("oN") +B.YJ=A.aJ("q4") +B.YK=A.aJ("hI") +B.YL=A.aJ("lr") +B.YM=A.aJ("kK") +B.iX=A.aJ("i7") +B.YN=new A.jP(B.n4,B.bC) +B.YO=new A.Sg(0,"undo") +B.YP=new A.Sg(1,"redo") +B.YQ=new A.wu(!1,!1) +B.YR=new A.Si(0,"scope") +B.mp=new A.Si(1,"previouslyFocusedChild") +B.eq=new A.ET(!1) +B.YS=new A.ET(!0) +B.ap=new A.jQ(0,"monochrome") +B.YT=new A.jQ(1,"neutral") +B.YU=new A.jQ(2,"tonalSpot") +B.YV=new A.jQ(3,"vibrant") +B.YW=new A.jQ(4,"expressive") +B.dr=new A.jQ(5,"content") +B.ds=new A.jQ(6,"fidelity") +B.YX=new A.jQ(7,"rainbow") +B.YY=new A.jQ(8,"fruitSalad") +B.Bc=new A.oA(B.i,0,B.F,B.i) +B.mr=new A.oA(B.i,1,B.F,B.i) +B.cO=new A.i6(B.i) +B.YZ=new A.EW(0,"undefined") +B.Bd=new A.EW(1,"forward") +B.Z_=new A.EW(2,"backward") +B.Z0=new A.Sw(0,"unfocused") +B.ms=new A.Sw(1,"focused") +B.es=new A.mm(0,0) +B.Z1=new A.mm(-2,-2) +B.et=new A.b2(0,t.XR) +B.mt=new A.b2(18,t.XR) +B.iY=new A.b2(24,t.XR) +B.bh=new A.b2(B.y,t.De) +B.Z2=new A.b2(B.y,t.rc) +B.RM=new A.I(1/0,1/0) +B.dt=new A.b2(B.RM,t.W7) +B.iZ=new A.b2(B.oi,t.mD) +B.j_=new A.b2(B.Al,t.W7) +B.RJ=new A.I(64,40) +B.mu=new A.b2(B.RJ,t.W7) +B.du=new A.b2(B.Ay,t.dy) +B.j0=new A.bY(3,"dragged") +B.mv=new A.bY(5,"scrolledUnder") +B.bI=new A.bY(7,"error") +B.dv=new A.oD(0,"start") +B.Z3=new A.oD(1,"end") +B.Z4=new A.oD(2,"center") +B.Z5=new A.oD(3,"spaceBetween") +B.Z6=new A.oD(4,"spaceAround") +B.Z7=new A.oD(5,"spaceEvenly") +B.mw=new A.F1(0,"start") +B.Z8=new A.F1(1,"end") +B.Z9=new A.F1(2,"center") +B.av=new A.wD(0,"forward") +B.j1=new A.wD(1,"reverse") +B.a_U=new A.apD(0,"elevated") +B.Za=new A.Fm(0,"checkbox") +B.Zb=new A.Fm(1,"radio") +B.Zc=new A.Fm(2,"toggle") +B.a_V=new A.aq8(0,"material") +B.a_W=new A.aqC(0,"plain") +B.Fu=new A.u(0.01568627450980392,0,0,0,B.e) +B.J3=s([B.Fu,B.y],t.t_) +B.Zd=new A.jT(B.J3) +B.Ze=new A.jT(null) +B.mx=new A.t6(0,"backButton") +B.my=new A.t6(1,"nextButton") +B.eu=new A.UR(0,"horizontal") +B.ev=new A.UR(1,"vertical") +B.cy=new A.FU(0,"ready") +B.fP=new A.FV(0,"ready") +B.Bi=new A.FU(1,"possible") +B.mA=new A.FV(1,"possible") +B.fQ=new A.FU(2,"accepted") +B.ew=new A.FV(2,"accepted") +B.Z=new A.t8(0,"initial") +B.fR=new A.t8(1,"active") +B.Bj=new A.t8(2,"inactive") +B.Zk=new A.t8(3,"failed") +B.Bk=new A.t8(4,"defunct") +B.mB=new A.G3(0,"none") +B.Zr=new A.G3(1,"forward") +B.Zs=new A.G3(2,"reverse") +B.mC=new A.t9(0,"ready") +B.j2=new A.t9(1,"possible") +B.Bl=new A.t9(2,"accepted") +B.j3=new A.t9(3,"started") +B.Zt=new A.t9(4,"peaked") +B.j4=new A.x2(0,"idle") +B.Zu=new A.x2(1,"absorb") +B.j5=new A.x2(2,"pull") +B.Bm=new A.x2(3,"recede") +B.dw=new A.oM(0,"pressed") +B.ex=new A.oM(1,"hover") +B.Bn=new A.oM(2,"focus") +B.a_X=new A.atp(0,"material") +B.aK=new A.te(0,"minWidth") +B.ab=new A.te(1,"maxWidth") +B.aL=new A.te(2,"minHeight") +B.b8=new A.te(3,"maxHeight") +B.aB=new A.iT(1) +B.j6=new A.dD(0,"size") +B.mD=new A.dD(1,"width") +B.ZH=new A.dD(11,"viewPadding") +B.mE=new A.dD(13,"accessibleNavigation") +B.ZI=new A.dD(14,"invertColors") +B.Bo=new A.dD(15,"highContrast") +B.mF=new A.dD(18,"boldText") +B.Bp=new A.dD(19,"supportsAnnounce") +B.Bq=new A.dD(2,"height") +B.fS=new A.dD(20,"navigationMode") +B.mG=new A.dD(21,"gestureSettings") +B.ZJ=new A.dD(23,"supportsShowingSystemContextMenu") +B.ZK=new A.dD(3,"orientation") +B.cS=new A.dD(4,"devicePixelRatio") +B.bz=new A.dD(6,"textScaler") +B.j7=new A.dD(7,"platformBrightness") +B.bK=new A.dD(8,"padding") +B.j8=new A.dD(9,"viewInsets") +B.Br=new A.oR(1/0,1/0,1/0,1/0,1/0,1/0) +B.ZL=new A.oS(0,"isCurrent") +B.ZM=new A.oS(5,"opaque") +B.ZN=new A.dg(B.e3,B.e1) +B.hS=new A.qx(1,"left") +B.ZO=new A.dg(B.e3,B.hS) +B.hT=new A.qx(2,"right") +B.ZP=new A.dg(B.e3,B.hT) +B.ZQ=new A.dg(B.e3,B.ch) +B.ZR=new A.dg(B.e4,B.e1) +B.ZS=new A.dg(B.e4,B.hS) +B.ZT=new A.dg(B.e4,B.hT) +B.ZU=new A.dg(B.e4,B.ch) +B.ZV=new A.dg(B.e5,B.e1) +B.ZW=new A.dg(B.e5,B.hS) +B.ZX=new A.dg(B.e5,B.hT) +B.ZY=new A.dg(B.e5,B.ch) +B.ZZ=new A.dg(B.e6,B.e1) +B.a__=new A.dg(B.e6,B.hS) +B.a_0=new A.dg(B.e6,B.hT) +B.a_1=new A.dg(B.e6,B.ch) +B.a_2=new A.dg(B.ln,B.ch) +B.a_3=new A.dg(B.lo,B.ch) +B.a_4=new A.dg(B.lp,B.ch) +B.a_5=new A.dg(B.lq,B.ch) +B.a_6=new A.WY(null) +B.mH=new A.WZ(B.q) +B.a_8=new A.X2(null) +B.a_7=new A.X4(null) +B.a_b=new A.H7(0,"none") +B.a_c=new A.H7(1,"static") +B.Bs=new A.H7(2,"progress") +B.Bt=new A.mA(0,"idle") +B.a_d=new A.mA(1,"start") +B.a_e=new A.mA(2,"update") +B.dx=new A.mA(3,"commit") +B.a_f=new A.mA(4,"cancel") +B.mI=new A.fc(1,"add") +B.a_g=new A.fc(10,"remove") +B.a_h=new A.fc(11,"popping") +B.a_i=new A.fc(12,"removing") +B.j9=new A.fc(13,"dispose") +B.a_j=new A.fc(14,"disposing") +B.ja=new A.fc(15,"disposed") +B.a_k=new A.fc(2,"adding") +B.mJ=new A.fc(3,"push") +B.mK=new A.fc(4,"pushReplace") +B.Bu=new A.fc(5,"pushing") +B.a_l=new A.fc(6,"replace") +B.fT=new A.fc(7,"idle") +B.Bv=new A.fc(8,"pop") +B.a_m=new A.fc(9,"complete") +B.jb=new A.hy(0,"body") +B.jc=new A.hy(1,"appBar") +B.mM=new A.hy(10,"endDrawer") +B.jd=new A.hy(11,"statusBar") +B.je=new A.hy(2,"bodyScrim") +B.jf=new A.hy(3,"bottomSheet") +B.ez=new A.hy(4,"snackBar") +B.jg=new A.hy(5,"materialBanner") +B.mN=new A.hy(6,"persistentFooter") +B.jh=new A.hy(7,"bottomNavigationBar") +B.ji=new A.hy(8,"floatingActionButton") +B.mO=new A.hy(9,"drawer") +B.RE=new A.I(100,0) +B.a_n=new A.mB(B.RE,B.ay,B.ef,null,null) +B.a_o=new A.mB(B.I,B.ay,B.ef,null,null) +B.mP=new A.Ir(0,"open") +B.Bx=new A.Ir(1,"waitingForData") +B.By=new A.Ir(2,"closing") +B.jj=new A.ZS(0,"trailing") +B.Bz=new A.ZS(1,"leading") +B.mQ=new A.xH(0,"idle") +B.a_p=new A.xH(1,"absorb") +B.mR=new A.xH(2,"pull") +B.mS=new A.xH(3,"recede") +B.BA=new A.xN(0,"first") +B.a_q=new A.xN(1,"middle") +B.BB=new A.xN(2,"last") +B.mT=new A.xN(3,"only") +B.a_r=new A.IF(B.o3,B.eV) +B.jk=new A.IK(0,"leading") +B.jl=new A.IK(1,"middle") +B.jm=new A.IK(2,"trailing") +B.a_s=new A.a_J(0,"minimize") +B.a_t=new A.a_J(1,"maximize") +B.a_u=new A.J1(A.b2V(),"WidgetStateMouseCursor(clickable)") +B.a_v=new A.J1(A.b2W(),"WidgetStateMouseCursor(textable)")})();(function staticFields(){$.aER=null +$.pa=null +$.be=A.kU("canvasKit") +$.aCF=A.kU("_instance") +$.aRN=A.w(t.N,A.aD("av")) +$.aKe=!1 +$.aM1=null +$.aN_=0 +$.aEW=!1 +$.ly=null +$.aDg=A.b([],t.no) +$.aI4=0 +$.aI5=0 +$.aI3=0 +$.iZ=A.b([],t.qj) +$.JL=B.o4 +$.JK=null +$.aDv=null +$.aJ8=0 +$.aNq=null +$.aLW=null +$.aLl=0 +$.Pz=null +$.R6=null +$.aIA=null +$.bU=null +$.QW=null +$.y7=A.w(t.N,t.m) +$.aMn=1 +$.aBe=null +$.atR=null +$.tD=A.b([],t.jl) +$.aJt=null +$.agU=0 +$.Pp=A.b01() +$.aGJ=null +$.aGI=null +$.aNd=null +$.aMM=null +$.aNs=null +$.aBs=null +$.aBJ=null +$.aFk=null +$.awq=A.b([],A.aD("D?>")) +$.xZ=null +$.JN=null +$.JO=null +$.aF_=!1 +$.aq=B.aE +$.aKJ="" +$.aKK=null +$.aMc=A.w(t.N,A.aD("av(l,aT)")) +$.aMs=A.w(t.C_,t.lT) +$.i3=null +$.ci=0 +$.pY=B.AB +$.kj=A.b0F() +$.aD9=0 +$.aTY=A.b([],A.aD("D")) +$.aIG=null +$.a1J=0 +$.aAx=null +$.aEU=!1 +$.f1=null +$.aEE=!0 +$.aED=!1 +$.t_=A.b([],A.aD("D")) +$.jy=null +$.m1=null +$.aIE=0 +$.bC=null +$.vS=null +$.aHi=0 +$.aHh=A.w(t.S,t.I7) +$.aCR=A.w(t.I7,t.S) +$.akG=0 +$.e0=null +$.wb=null +$.alV=null +$.aKo=1 +$.rQ=null +$.aa=null +$.li=null +$.pN=null +$.aLt=1 +$.aDI=-9007199254740992 +$.aBk=null +$.aBM=null +$.aM7=null +$.aHk=A.w(t.N,t.y) +$.aUj=function(){var s=t.n +return A.b([A.b([0.001200833568784504,0.002389694492170889,0.0002795742885861124],s),A.b([0.0005891086651375999,0.0029785502573438758,0.0003270666104008398],s),A.b([0.00010146692491640572,0.0005364214359186694,0.0032979401770712076],s)],t.zg)}() +$.aUh=function(){var s=t.n +return A.b([A.b([1373.2198709594231,-1100.4251190754821,-7.278681089101213],s),A.b([-271.815969077903,559.6580465940733,-32.46047482791194],s),A.b([1.9622899599665666,-57.173814538844006,308.7233197812385],s)],t.zg)}() +$.AI=A.b([0.2126,0.7152,0.0722],t.n) +$.aUf=A.b([0.015176349177441876,0.045529047532325624,0.07588174588720938,0.10623444424209313,0.13658714259697685,0.16693984095186062,0.19729253930674434,0.2276452376616281,0.2579979360165119,0.28835063437139563,0.3188300904430532,0.350925934958123,0.3848314933096426,0.42057480301049466,0.458183274052838,0.4976837250274023,0.5391024159806381,0.5824650784040898,0.6277969426914107,0.6751227633498623,0.7244668422128921,0.775853049866786,0.829304845476233,0.8848452951698498,0.942497089126609,1.0022825574869039,1.0642236851973577,1.1283421258858297,1.1946592148522128,1.2631959812511864,1.3339731595349034,1.407011200216447,1.4823302800086415,1.5599503113873272,1.6398909516233677,1.7221716113234105,1.8068114625156377,1.8938294463134073,1.9832442801866852,2.075074464868551,2.1693382909216234,2.2660538449872063,2.36523901573795,2.4669114995532007,2.5710888059345764,2.6777882626779785,2.7870270208169257,2.898822059350997,3.0131901897720907,3.1301480604002863,3.2497121605402226,3.3718988244681087,3.4967242352587946,3.624204428461639,3.754355295633311,3.887192587735158,4.022731918402185,4.160988767090289,4.301978482107941,4.445716283538092,4.592217266055746,4.741496401646282,4.893568542229298,5.048448422192488,5.20615066083972,5.3666897647573375,5.5300801301023865,5.696336044816294,5.865471690767354,6.037501145825082,6.212438385869475,6.390297286737924,6.571091626112461,6.7548350853498045,6.941541251256611,7.131223617812143,7.323895587840543,7.5195704746346665,7.7182615035334345,7.919981813454504,8.124744458384042,8.332562408825165,8.543448553206703,8.757415699253682,8.974476575321063,9.194643831691977,9.417930041841839,9.644347703669503,9.873909240696694,10.106627003236781,10.342513269534024,10.58158024687427,10.8238400726681,11.069304815507364,11.317986476196008,11.569896988756009,11.825048221409341,12.083451977536606,12.345119996613247,12.610063955123938,12.878295467455942,13.149826086772048,13.42466730586372,13.702830557985108,13.984327217668513,14.269168601521828,14.55736596900856,14.848930523210871,15.143873411576273,15.44220572664832,15.743938506781891,16.04908273684337,16.35764934889634,16.66964922287304,16.985093187232053,17.30399201960269,17.62635644741625,17.95219714852476,18.281524751807332,18.614349837764564,18.95068293910138,19.290534541298456,19.633915083172692,19.98083495742689,20.331304511189067,20.685334046541502,21.042933821039977,21.404114048223256,21.76888489811322,22.137256497705877,22.50923893145328,22.884842241736916,23.264076429332462,23.6469514538663,24.033477234264016,24.42366364919083,24.817520537484558,25.21505769858089,25.61628489293138,26.021211842414342,26.429848230738664,26.842203703840827,27.258287870275353,27.678110301598522,28.10168053274597,28.529008062403893,28.96010235337422,29.39497283293396,29.83362889318845,30.276079891419332,30.722335150426627,31.172403958865512,31.62629557157785,32.08401920991837,32.54558406207592,33.010999283389665,33.4802739966603,33.953417292456834,34.430438229418264,34.911345834551085,35.39614910352207,35.88485700094671,36.37747846067349,36.87402238606382,37.37449765026789,37.87891309649659,38.38727753828926,38.89959975977785,39.41588851594697,39.93615253289054,40.460400508064545,40.98864111053629,41.520882981230194,42.05713473317016,42.597404951718396,43.141702194811224,43.6900349931913,44.24241185063697,44.798841244188324,45.35933162437017,45.92389141541209,46.49252901546552,47.065252796817916,47.64207110610409,48.22299226451468,48.808024568002054,49.3971762874833,49.9904556690408,50.587870934119984,51.189430279724725,51.79514187861014,52.40501387947288,53.0190544071392,53.637271562750364,54.259673423945976,54.88626804504493,55.517063457223934,56.15206766869424,56.79128866487574,57.43473440856916,58.08241284012621,58.734331877617365,59.39049941699807,60.05092333227251,60.715611475655585,61.38457167773311,62.057811747619894,62.7353394731159,63.417162620860914,64.10328893648692,64.79372614476921,65.48848194977529,66.18756403501224,66.89098006357258,67.59873767827808,68.31084450182222,69.02730813691093,69.74813616640164,70.47333615344107,71.20291564160104,71.93688215501312,72.67524319850172,73.41800625771542,74.16517879925733,74.9167682708136,75.67278210128072,76.43322770089146,77.1981124613393,77.96744375590167,78.74122893956174,79.51947534912904,80.30219030335869,81.08938110306934,81.88105503125999,82.67721935322541,83.4778813166706,84.28304815182372,85.09272707154808,85.90692527145302,86.72564993000343,87.54890820862819,88.3767072518277,89.2090541872801,90.04595612594655,90.88742016217518,91.73345337380438,92.58406282226491,93.43925555268066,94.29903859396902,95.16341895893969,96.03240364439274,96.9059996312159,97.78421388448044,98.6670533535366,99.55452497210776],t.n) +$.aJT=A.b([0,21,51,121,151,191,271,321,360],t.n) +$.aWy=A.b([45,95,45,20,45,90,45,45,45],t.n) +$.aWz=A.b([120,120,20,45,20,15,20,120,120],t.n) +$.aJU=A.b([0,41,61,101,131,181,251,301,360],t.n) +$.aWA=A.b([18,15,10,12,15,18,15,12,12],t.n) +$.aWB=A.b([35,30,20,25,30,35,30,25,25],t.n) +$.j7=function(){var s=t.n +return A.b([A.b([0.41233895,0.35762064,0.18051042],s),A.b([0.2126,0.7152,0.0722],s),A.b([0.01932141,0.11916382,0.95034478],s)],t.zg)}() +$.ue=A.b([95.047,100,108.883],t.n) +$.aM3=null +$.aAw=null +$.akY=null +$.aKP=A.b([],t.t) +$.aEg=0 +$.aKN=0 +$.aKO=0 +$.aKM=!1 +$.aIS=null +$.aIQ=null +$.aIR=null})();(function lazyInitializers(){var s=hunkHelpers.lazyFinal,r=hunkHelpers.lazy +s($,"b6M","yh",()=>A.M(A.M(A.at(),"ClipOp"),"Intersect")) +s($,"b7G","aQn",()=>{var q="FontWeight" +return A.b([A.M(A.M(A.at(),q),"Thin"),A.M(A.M(A.at(),q),"ExtraLight"),A.M(A.M(A.at(),q),"Light"),A.M(A.M(A.at(),q),"Normal"),A.M(A.M(A.at(),q),"Medium"),A.M(A.M(A.at(),q),"SemiBold"),A.M(A.M(A.at(),q),"Bold"),A.M(A.M(A.at(),q),"ExtraBold"),A.M(A.M(A.at(),q),"ExtraBlack")],t.O)}) +s($,"b7Q","aG6",()=>{var q="TextDirection" +return A.b([A.M(A.M(A.at(),q),"RTL"),A.M(A.M(A.at(),q),"LTR")],t.O)}) +s($,"b7N","aQu",()=>{var q="TextAlign" +return A.b([A.M(A.M(A.at(),q),"Left"),A.M(A.M(A.at(),q),"Right"),A.M(A.M(A.at(),q),"Center"),A.M(A.M(A.at(),q),"Justify"),A.M(A.M(A.at(),q),"Start"),A.M(A.M(A.at(),q),"End")],t.O)}) +s($,"b7R","aQw",()=>{var q="TextHeightBehavior" +return A.b([A.M(A.M(A.at(),q),"All"),A.M(A.M(A.at(),q),"DisableFirstAscent"),A.M(A.M(A.at(),q),"DisableLastDescent"),A.M(A.M(A.at(),q),"DisableAll")],t.O)}) +s($,"b7J","aQq",()=>{var q="RectHeightStyle" +return A.b([A.M(A.M(A.at(),q),"Tight"),A.M(A.M(A.at(),q),"Max"),A.M(A.M(A.at(),q),"IncludeLineSpacingMiddle"),A.M(A.M(A.at(),q),"IncludeLineSpacingTop"),A.M(A.M(A.at(),q),"IncludeLineSpacingBottom"),A.M(A.M(A.at(),q),"Strut")],t.O)}) +s($,"b7K","aQr",()=>{var q="RectWidthStyle" +return A.b([A.M(A.M(A.at(),q),"Tight"),A.M(A.M(A.at(),q),"Max")],t.O)}) +s($,"b7E","mQ",()=>A.b([A.M(A.M(A.at(),"ClipOp"),"Difference"),A.M(A.M(A.at(),"ClipOp"),"Intersect")],t.O)) +s($,"b7F","a2h",()=>{var q="FillType" +return A.b([A.M(A.M(A.at(),q),"Winding"),A.M(A.M(A.at(),q),"EvenOdd")],t.O)}) +s($,"b7D","aQm",()=>{var q="BlurStyle" +return A.b([A.M(A.M(A.at(),q),"Normal"),A.M(A.M(A.at(),q),"Solid"),A.M(A.M(A.at(),q),"Outer"),A.M(A.M(A.at(),q),"Inner")],t.O)}) +s($,"b7L","aQs",()=>{var q="StrokeCap" +return A.b([A.M(A.M(A.at(),q),"Butt"),A.M(A.M(A.at(),q),"Round"),A.M(A.M(A.at(),q),"Square")],t.O)}) +s($,"b7H","aQo",()=>{var q="PaintStyle" +return A.b([A.M(A.M(A.at(),q),"Fill"),A.M(A.M(A.at(),q),"Stroke")],t.O)}) +s($,"b7C","aQl",()=>{var q="BlendMode" +return A.b([A.M(A.M(A.at(),q),"Clear"),A.M(A.M(A.at(),q),"Src"),A.M(A.M(A.at(),q),"Dst"),A.M(A.M(A.at(),q),"SrcOver"),A.M(A.M(A.at(),q),"DstOver"),A.M(A.M(A.at(),q),"SrcIn"),A.M(A.M(A.at(),q),"DstIn"),A.M(A.M(A.at(),q),"SrcOut"),A.M(A.M(A.at(),q),"DstOut"),A.M(A.M(A.at(),q),"SrcATop"),A.M(A.M(A.at(),q),"DstATop"),A.M(A.M(A.at(),q),"Xor"),A.M(A.M(A.at(),q),"Plus"),A.M(A.M(A.at(),q),"Modulate"),A.M(A.M(A.at(),q),"Screen"),A.M(A.M(A.at(),q),"Overlay"),A.M(A.M(A.at(),q),"Darken"),A.M(A.M(A.at(),q),"Lighten"),A.M(A.M(A.at(),q),"ColorDodge"),A.M(A.M(A.at(),q),"ColorBurn"),A.M(A.M(A.at(),q),"HardLight"),A.M(A.M(A.at(),q),"SoftLight"),A.M(A.M(A.at(),q),"Difference"),A.M(A.M(A.at(),q),"Exclusion"),A.M(A.M(A.at(),q),"Multiply"),A.M(A.M(A.at(),q),"Hue"),A.M(A.M(A.at(),q),"Saturation"),A.M(A.M(A.at(),q),"Color"),A.M(A.M(A.at(),q),"Luminosity")],t.O)}) +s($,"b7M","aQt",()=>{var q="StrokeJoin" +return A.b([A.M(A.M(A.at(),q),"Miter"),A.M(A.M(A.at(),q),"Round"),A.M(A.M(A.at(),q),"Bevel")],t.O)}) +s($,"b7S","aQx",()=>{var q="TileMode" +return A.b([A.M(A.M(A.at(),q),"Clamp"),A.M(A.M(A.at(),q),"Repeat"),A.M(A.M(A.at(),q),"Mirror"),A.M(A.M(A.at(),q),"Decal")],t.O)}) +s($,"b6T","aG_",()=>{var q="FilterMode",p="MipmapMode",o="Linear" +return A.ab([B.dY,{filter:A.M(A.M(A.at(),q),"Nearest"),mipmap:A.M(A.M(A.at(),p),"None")},B.oG,{filter:A.M(A.M(A.at(),q),o),mipmap:A.M(A.M(A.at(),p),"None")},B.hE,{filter:A.M(A.M(A.at(),q),o),mipmap:A.M(A.M(A.at(),p),o)},B.kL,{B:0.3333333333333333,C:0.3333333333333333}],A.aD("q5"),t.m)}) +s($,"b72","aPV",()=>{var q=A.aDD(2) +q.$flags&2&&A.aI(q) +q[0]=0 +q[1]=1 +return q}) +s($,"b7A","aCj",()=>A.b2f(4)) +s($,"b6L","aPL",()=>A.aK6(A.M(A.at(),"ParagraphBuilder"))) +s($,"b7P","aQv",()=>{var q="DecorationStyle" +return A.b([A.M(A.M(A.at(),q),"Solid"),A.M(A.M(A.at(),q),"Double"),A.M(A.M(A.at(),q),"Dotted"),A.M(A.M(A.at(),q),"Dashed"),A.M(A.M(A.at(),q),"Wavy")],t.O)}) +s($,"b7O","aG5",()=>{var q="TextBaseline" +return A.b([A.M(A.M(A.at(),q),"Alphabetic"),A.M(A.M(A.at(),q),"Ideographic")],t.O)}) +s($,"b7I","aQp",()=>{var q="PlaceholderAlignment" +return A.b([A.M(A.M(A.at(),q),"Baseline"),A.M(A.M(A.at(),q),"AboveBaseline"),A.M(A.M(A.at(),q),"BelowBaseline"),A.M(A.M(A.at(),q),"Top"),A.M(A.M(A.at(),q),"Bottom"),A.M(A.M(A.at(),q),"Middle")],t.O)}) +r($,"b7y","aQi",()=>A.dq().gX9()+"roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2") +r($,"b6U","aPP",()=>A.aZQ(A.xX(A.xX(A.l7(),"window"),"FinalizationRegistry"),A.l3(new A.aAA()))) +r($,"b8o","aQM",()=>new A.afn()) +s($,"b7_","aPS",()=>A.aVg(B.K9)) +s($,"b6Z","aCh",()=>A.abG(A.aS0($.aPS()))) +s($,"b3I","dy",()=>{var q,p=A.M(A.M(A.l7(),"window"),"screen") +p=p==null?null:A.M(p,"width") +if(p==null)p=0 +q=A.M(A.M(A.l7(),"window"),"screen") +q=q==null?null:A.M(q,"height") +return new A.MD(A.aX1(p,q==null?0:q))}) +s($,"b3E","ej",()=>A.aJ9(A.ab(["preventScroll",!0],t.N,t.y))) +s($,"b7X","aQA",()=>{var q=A.M(A.M(A.l7(),"window"),"trustedTypes") +q.toString +return A.aZX(q,"createPolicy","flutter-engine",{createScriptURL:A.l3(new A.aBc())})}) +r($,"b80","aQD",()=>A.M(A.xX(A.l7(),"window"),"FinalizationRegistry")!=null) +r($,"b82","aCk",()=>A.M(A.xX(A.l7(),"window"),"OffscreenCanvas")!=null) +s($,"b6V","aPQ",()=>B.a6.c4(A.ab(["type","fontsChange"],t.N,t.z))) +r($,"aU7","aO0",()=>A.uF()) +r($,"b3V","aC8",()=>new A.Ng(A.b([],A.aD("D<~(Q)>")),A.aZW(A.M(A.l7(),"window"),"matchMedia","(forced-colors: active)"))) +s($,"b6J","aPJ",()=>A.aSa("ftyp")) +s($,"b74","aG0",()=>8589934852) +s($,"b75","aPX",()=>8589934853) +s($,"b76","aG1",()=>8589934848) +s($,"b77","aPY",()=>8589934849) +s($,"b7b","aG3",()=>8589934850) +s($,"b7c","aQ0",()=>8589934851) +s($,"b79","aG2",()=>8589934854) +s($,"b7a","aQ_",()=>8589934855) +s($,"b7h","aQ4",()=>458978) +s($,"b7i","aQ5",()=>458982) +s($,"b8k","aGf",()=>458976) +s($,"b8l","aGg",()=>458980) +s($,"b7l","aQ8",()=>458977) +s($,"b7m","aQ9",()=>458981) +s($,"b7j","aQ6",()=>458979) +s($,"b7k","aQ7",()=>458983) +s($,"b78","aPZ",()=>A.ab([$.aG0(),new A.aAT(),$.aPX(),new A.aAU(),$.aG1(),new A.aAV(),$.aPY(),new A.aAW(),$.aG3(),new A.aAX(),$.aQ0(),new A.aAY(),$.aG2(),new A.aAZ(),$.aQ_(),new A.aB_()],t.S,A.aD("Q(kk)"))) +s($,"b8r","aCl",()=>A.b3(new A.aBV())) +s($,"b3J","aR",()=>A.aTA()) +r($,"b4W","aCb",()=>{var q=t.N,p=t.S +q=new A.ags(A.w(q,t._8),A.w(p,t.m),A.aP(q),A.w(p,q)) +q.auA("_default_document_create_element_visible",A.aM9()) +q.ZE("_default_document_create_element_invisible",A.aM9(),!1) +return q}) +r($,"b4X","aOA",()=>new A.agu($.aCb())) +s($,"b51","aOF",()=>new A.aiU()) +s($,"b52","aFO",()=>new A.Lx()) +s($,"b53","l8",()=>new A.asp(A.w(t.S,A.aD("xq")))) +s($,"b7x","a3",()=>new A.a3Z(A.aXl(!1),new A.Lr(),A.w(t.S,A.aD("wz")))) +r($,"b81","aG9",()=>{var q=A.M(A.xX(A.l7(),"window"),"ImageDecoder") +q=(q==null?null:A.aIr(q))!=null&&$.bn().gdI()===B.cB +return q}) +s($,"b34","aNL",()=>{var q=t.N +return new A.a3o(A.ab(["birthday","bday","birthdayDay","bday-day","birthdayMonth","bday-month","birthdayYear","bday-year","countryCode","country","countryName","country-name","creditCardExpirationDate","cc-exp","creditCardExpirationMonth","cc-exp-month","creditCardExpirationYear","cc-exp-year","creditCardFamilyName","cc-family-name","creditCardGivenName","cc-given-name","creditCardMiddleName","cc-additional-name","creditCardName","cc-name","creditCardNumber","cc-number","creditCardSecurityCode","cc-csc","creditCardType","cc-type","email","email","familyName","family-name","fullStreetAddress","street-address","gender","sex","givenName","given-name","impp","impp","jobTitle","organization-title","language","language","middleName","additional-name","name","name","namePrefix","honorific-prefix","nameSuffix","honorific-suffix","newPassword","new-password","nickname","nickname","oneTimeCode","one-time-code","organizationName","organization","password","current-password","photo","photo","postalCode","postal-code","streetAddressLevel1","address-level1","streetAddressLevel2","address-level2","streetAddressLevel3","address-level3","streetAddressLevel4","address-level4","streetAddressLine1","address-line1","streetAddressLine2","address-line2","streetAddressLine3","address-line3","telephoneNumber","tel","telephoneNumberAreaCode","tel-area-code","telephoneNumberCountryCode","tel-country-code","telephoneNumberExtension","tel-extension","telephoneNumberLocal","tel-local","telephoneNumberLocalPrefix","tel-local-prefix","telephoneNumberLocalSuffix","tel-local-suffix","telephoneNumberNational","tel-national","transactionAmount","transaction-amount","transactionCurrency","transaction-currency","url","url","username","username"],q,q))}) +s($,"b8w","yi",()=>new A.a9Z()) +s($,"b8v","aQP",()=>{var q=t.N,p=A.aD("+breaks,graphemes,words(wr,wr,wr)"),o=A.aDz(1e5,q,p),n=A.aDz(1e4,q,p) +return new A.Yl(A.aDz(20,q,p),n,o)}) +s($,"b6Y","aPR",()=>A.ab([B.pd,A.aMZ("grapheme"),B.pe,A.aMZ("word")],A.aD("B3"),t.m)) +s($,"b7Y","aQB",()=>{var q="v8BreakIterator" +if(A.M(A.M(A.l7(),"Intl"),q)==null)A.a0(A.eQ("v8BreakIterator is not supported.")) +return A.aZR(A.xX(A.xX(A.l7(),"Intl"),q),A.aUO([]),A.aJ9(B.MI))}) +s($,"b7W","aQz",()=>A.aDD(4)) +s($,"b7U","aG8",()=>A.aDD(16)) +s($,"b7V","aQy",()=>A.aUZ($.aG8())) +r($,"b8s","el",()=>A.aT2(A.M(A.M(A.l7(),"window"),"console"))) +r($,"b3C","aNW",()=>{var q=$.dy(),p=A.aXg(null,null,!1,t.i) +p=new A.Mo(q,q.gmO(0),p) +p.Tb() +return p}) +s($,"b6X","aCg",()=>new A.aAQ().$0()) +s($,"b5X","aPa",()=>A.ck("[a-z0-9\\s]+",!1,!1)) +s($,"b5Y","aPb",()=>A.ck("\\b\\d",!0,!1)) +s($,"b8m","aQK",()=>A.aT5(A.aBm(0,0))) +s($,"b3l","K_",()=>A.b1M("_$dart_dartClosure")) +s($,"b8q","aQO",()=>B.aE.hu(new A.aBT())) +s($,"b7z","aQj",()=>A.b([new J.NO()],A.aD("D"))) +s($,"b5G","aOY",()=>A.mj(A.ane({ +toString:function(){return"$receiver$"}}))) +s($,"b5H","aOZ",()=>A.mj(A.ane({$method$:null, +toString:function(){return"$receiver$"}}))) +s($,"b5I","aP_",()=>A.mj(A.ane(null))) +s($,"b5J","aP0",()=>A.mj(function(){var $argumentsExpr$="$arguments$" +try{null.$method$($argumentsExpr$)}catch(q){return q.message}}())) +s($,"b5M","aP3",()=>A.mj(A.ane(void 0))) +s($,"b5N","aP4",()=>A.mj(function(){var $argumentsExpr$="$arguments$" +try{(void 0).$method$($argumentsExpr$)}catch(q){return q.message}}())) +s($,"b5L","aP2",()=>A.mj(A.aKF(null))) +s($,"b5K","aP1",()=>A.mj(function(){try{null.$method$}catch(q){return q.message}}())) +s($,"b5P","aP6",()=>A.mj(A.aKF(void 0))) +s($,"b5O","aP5",()=>A.mj(function(){try{(void 0).$method$}catch(q){return q.message}}())) +s($,"b7r","aQd",()=>A.aE3(254)) +s($,"b7d","aQ1",()=>97) +s($,"b7p","aQb",()=>65) +s($,"b7e","aQ2",()=>122) +s($,"b7q","aQc",()=>90) +s($,"b7f","aQ3",()=>48) +s($,"b61","aFT",()=>A.aYd()) +s($,"b3T","yf",()=>t.W.a($.aQO())) +s($,"b3S","aO1",()=>A.aYA(!1,B.aE,t.y)) +s($,"b6x","aPz",()=>A.aJ4(4096)) +s($,"b6v","aPx",()=>new A.azW().$0()) +s($,"b6w","aPy",()=>new A.azV().$0()) +s($,"b62","aPf",()=>A.aVl(A.ic(A.b([-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-2,-2,-2,-2,-2,62,-2,62,-2,63,52,53,54,55,56,57,58,59,60,61,-2,-2,-2,-1,-2,-2,-2,0,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,-2,-2,-2,-2,63,-2,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-2,-2,-2,-2,-2],t.t)))) +s($,"b3G","aNX",()=>A.ab(["iso_8859-1:1987",B.bM,"iso-ir-100",B.bM,"iso_8859-1",B.bM,"iso-8859-1",B.bM,"latin1",B.bM,"l1",B.bM,"ibm819",B.bM,"cp819",B.bM,"csisolatin1",B.bM,"iso-ir-6",B.bL,"ansi_x3.4-1968",B.bL,"ansi_x3.4-1986",B.bL,"iso_646.irv:1991",B.bL,"iso646-us",B.bL,"us-ascii",B.bL,"us",B.bL,"ibm367",B.bL,"cp367",B.bL,"csascii",B.bL,"ascii",B.bL,"csutf8",B.a5,"utf-8",B.a5],t.N,A.aD("pZ"))) +s($,"b6y","a2d",()=>A.aZH()) +s($,"b6t","aPv",()=>A.ck("^[\\-\\.0-9A-Z_a-z~]*$",!0,!1)) +s($,"b6u","aPw",()=>typeof URLSearchParams=="function") +s($,"b3n","aNP",()=>A.ck("^([+-]?\\d{4,6})-?(\\d\\d)-?(\\d\\d)(?:[ T](\\d\\d)(?::?(\\d\\d)(?::?(\\d\\d)(?:[.,](\\d+))?)?)?( ?[zZ]| ?([-+])(\\d\\d)(?::?(\\d\\d))?)?)?$",!0,!1)) +s($,"b6W","ek",()=>A.pi(B.Yb)) +s($,"b5v","Ka",()=>{A.aW1() +return $.agU}) +s($,"b70","aPT",()=>new A.R()) +s($,"b50","aOE",()=>A.aYV()) +r($,"b5_","aOD",()=>{$.aOE() +return!1}) +s($,"b55","aOG",()=>{var q=new A.atQ(A.aVe(8)) +q.a65() +return q}) +s($,"b3H","e6",()=>J.Kg(B.Nd.gc9(A.aVm(A.ic(A.b([1],t.t)))),0,null).getInt8(0)===1?B.aM:B.Cz) +s($,"b84","a2j",()=>new A.a4b(A.w(t.N,A.aD("mp")))) +s($,"b6s","aPu",()=>new A.azA()) +s($,"b6k","aPp",()=>new A.awf(50,A.w(A.aD("Hd"),t.ke))) +s($,"b36","aFF",()=>new A.a3r()) +r($,"b8_","bn",()=>$.aFF()) +r($,"b7w","aCi",()=>{A.aXt() +return B.CD}) +r($,"b38","aFG",()=>$.aNQ()) +s($,"b6N","aPM",()=>new A.R()) +s($,"b3c","aNM",()=>new A.R()) +s($,"b7T","aG7",()=>A.aD5()) +s($,"b73","aPW",()=>A.aE2(1,1,500)) +s($,"b6a","aPh",()=>A.aYa(new A.aqv(),t.Pb)) +s($,"b8h","aQJ",()=>A.ab([B.FI,A.ch(40),B.FJ,A.ch(40),B.o2,A.ch(12)],A.aD("ul"),t.m_)) +s($,"b88","aQE",()=>new A.Ub()) +s($,"b7n","aQa",()=>A.dO(B.e9,B.i,t.v)) +s($,"b7g","aG4",()=>A.dO(B.i,B.NR,t.v)) +r($,"b6b","aPi",()=>A.aSD(B.Ze,B.Zd)) +s($,"b89","aQF",()=>new A.LY()) +r($,"b8g","aQI",()=>$.aQG().p(0,"windowing")) +s($,"b8b","aQG",()=>A.eu(A.b("".split(","),t.s),t.N)) +s($,"b6K","aPK",()=>A.b0d($.bn().gdz())) +s($,"b39","aw",()=>A.bz(0,null,!1,t.Nw)) +s($,"b69","Kd",()=>new A.oH(0,$.aPg())) +s($,"b68","aPg",()=>A.b05(0)) +s($,"b6Q","a2f",()=>A.lI(null,t.N)) +s($,"b6R","aFZ",()=>A.aXf()) +s($,"b60","aPe",()=>A.aJ4(8)) +s($,"b5u","aOU",()=>A.ck("^\\s*at ([^\\s]+).*$",!0,!1)) +s($,"b8j","aGe",()=>A.bq(4294967295)) +s($,"b8i","aGd",()=>A.bq(3707764736)) +s($,"b8d","aGc",()=>new A.UE()) +s($,"b6m","aPq",()=>A.dO(0.75,1,t.i)) +s($,"b6n","aPr",()=>A.e9(B.Xx)) +s($,"b3Y","aO2",()=>A.e9(B.bc)) +s($,"b3Z","aO3",()=>A.e9(B.IA)) +r($,"b5D","aOV",()=>new A.amJ(new A.amK(),A.aM()===B.L)) +s($,"b6H","aPH",()=>{var q=t.i +return A.b([A.aKE(A.dO(0,0.4,q).f_(A.e9(B.FC)),0.166666,q),A.aKE(A.dO(0.4,1,q).f_(A.e9(B.FF)),0.833334,q)],t.x0)}) +s($,"b6G","a2e",()=>A.aKD($.aPH(),t.i)) +s($,"b6z","aPA",()=>A.dO(0,1,t.i).f_(A.e9(B.II))) +s($,"b6A","aPB",()=>A.dO(1.1,1,t.i).f_($.a2e())) +s($,"b6B","aPC",()=>A.dO(0.85,1,t.i).f_($.a2e())) +s($,"b6C","aPD",()=>A.dO(0,0.6,t.PM).f_(A.e9(B.ID))) +s($,"b6D","aPE",()=>A.dO(1,0,t.i).f_(A.e9(B.IH))) +s($,"b6F","aPG",()=>A.dO(1,1.05,t.i).f_($.a2e())) +s($,"b6E","aPF",()=>A.dO(1,0.9,t.i).f_($.a2e())) +s($,"b6e","aPl",()=>A.dO(B.vN,B.i,t.v).f_(A.e9(B.cr))) +s($,"b6d","aPk",()=>A.dO(B.i,B.vN,t.v).f_(A.e9(B.cr))) +s($,"b3O","aNY",()=>A.dO(B.i,B.vM,t.v).f_(A.e9(B.cr))) +s($,"b3P","aNZ",()=>A.dO(B.vM,B.i,t.v).f_(A.e9(B.cr))) +s($,"b3M","aFL",()=>A.dO(0,1,t.i).f_(A.e9(B.IF))) +s($,"b3N","aFM",()=>A.dO(1,0,t.i).f_(A.e9(B.IG))) +s($,"b66","aFW",()=>A.e9(B.IK).f_(A.e9(B.lF))) +s($,"b67","aFX",()=>A.e9(B.IJ).f_(A.e9(B.lF))) +s($,"b64","aFU",()=>A.e9(B.lF)) +s($,"b65","aFV",()=>A.e9(B.PW)) +s($,"b5d","aOL",()=>A.dO(0,0.75,t.i)) +s($,"b5b","aOJ",()=>A.dO(0,1.5,t.i)) +s($,"b5c","aOK",()=>A.dO(1,0,t.i)) +s($,"b6f","aPm",()=>A.dO(0.875,1,t.i).f_(A.e9(B.dL))) +s($,"b8n","aQL",()=>new A.Om()) +s($,"b5F","aOX",()=>A.aXM()) +s($,"b5E","aOW",()=>new A.Vg(A.w(A.aD("x5"),t.we),5,A.aD("Vg"))) +s($,"b4P","aCa",()=>A.aVi(4)) +s($,"b6_","aPd",()=>A.ck("[\\p{Space_Separator}\\p{Punctuation}]",!0,!0)) +s($,"b6r","aPt",()=>A.ck("\\p{Space_Separator}",!0,!0)) +r($,"b5e","aOM",()=>B.Fw) +r($,"b5g","aOO",()=>{var q=null +return A.aKu(q,B.jO,q,q,q,q,"sans-serif",q,q,18,q,q,q,q,q,q,q,q,q,q,q)}) +r($,"b5f","aON",()=>{var q=null +return A.aJl(q,q,q,q,q,q,q,q,q,B.dn,B.al,q)}) +s($,"b6q","aPs",()=>A.aV_()) +s($,"b5h","aOP",()=>A.aE3(65532)) +s($,"b6o","Ke",()=>A.aE3(65532)) +s($,"b6p","yg",()=>$.Ke().length) +s($,"b7o","a2g",()=>98304) +s($,"b5n","aCc",()=>A.hk()) +s($,"b5m","aOR",()=>A.aJ3(0)) +s($,"b5o","aOS",()=>A.aJ3(0)) +s($,"b5p","aOT",()=>A.aV0().a) +s($,"b8t","aCm",()=>{var q=t.N,p=t.L0 +return new A.agi(A.w(q,A.aD("av")),A.w(q,p),A.w(q,p))}) +s($,"b35","a24",()=>new A.a3q()) +s($,"b4_","aO4",()=>A.ab([4294967562,B.kY,4294967564,B.IV,4294967556,B.IW],t.S,t.SQ)) +s($,"b40","aO5",()=>{var q=t.T +return A.ab([B.l9,A.cn([B.cJ,B.d9],q),B.lb,A.cn([B.fh,B.i2],q),B.la,A.cn([B.fg,B.i1],q),B.l8,A.cn([B.ff,B.i0],q)],q,A.aD("bg"))}) +s($,"b59","aFQ",()=>new A.ahd(A.b([],A.aD("D<~(m_)>")),A.w(t.v3,t.T))) +s($,"b58","aOI",()=>{var q=t.v3 +return A.ab([B.ZW,A.cn([B.ec],q),B.ZX,A.cn([B.ee],q),B.ZY,A.cn([B.ec,B.ee],q),B.ZV,A.cn([B.ec],q),B.ZS,A.cn([B.eb],q),B.ZT,A.cn([B.fq],q),B.ZU,A.cn([B.eb,B.fq],q),B.ZR,A.cn([B.eb],q),B.ZO,A.cn([B.ea],q),B.ZP,A.cn([B.fp],q),B.ZQ,A.cn([B.ea,B.fp],q),B.ZN,A.cn([B.ea],q),B.a__,A.cn([B.ed],q),B.a_0,A.cn([B.fr],q),B.a_1,A.cn([B.ed,B.fr],q),B.ZZ,A.cn([B.ed],q),B.a_2,A.cn([B.dg],q),B.a_3,A.cn([B.id],q),B.a_4,A.cn([B.ic],q),B.a_5,A.cn([B.fo],q)],A.aD("dg"),A.aD("bg"))}) +s($,"b57","aFP",()=>A.ab([B.ec,B.fg,B.ee,B.i1,B.eb,B.cJ,B.fq,B.d9,B.ea,B.ff,B.fp,B.i0,B.ed,B.fh,B.fr,B.i2,B.dg,B.fc,B.id,B.hZ,B.ic,B.i_],t.v3,t.T)) +s($,"b56","aOH",()=>{var q=A.w(t.v3,t.T) +q.m(0,B.fo,B.l5) +q.O(0,$.aFP()) +return q}) +s($,"b3Q","aO_",()=>new A.MR("\n",!1,"")) +s($,"b5C","cf",()=>{var q=$.aCe() +q=new A.RX(q,A.cn([q],A.aD("Eo")),A.w(t.N,A.aD("aJV"))) +q.c=B.vQ +q.ga7l().nC(q.gaf7()) +return q}) +s($,"b6j","aCe",()=>new A.Xl()) +s($,"b5Q","a2c",()=>{var q=new A.Sh() +q.a=B.Oc +q.gaku().nC(q.gae3()) +return q}) +r($,"b5Z","aPc",()=>{var q=A.aD("~(b9)") +return A.ab([B.XW,A.aHz(!0),B.XI,A.aHz(!1),B.Yj,new A.Q9(A.C4(q)),B.Ya,new A.OG(A.C4(q)),B.Ye,new A.Pm(A.C4(q)),B.Ba,new A.zL(!1,A.C4(q)),B.mn,A.aWD(),B.Yf,new A.Pq(A.C4(q)),B.Yz,new A.SA(A.C4(q))],t.u,t.od)}) +s($,"b3r","aC7",()=>{var q,p,o,n=t.J,m=A.w(t.Vz,n) +for(q=A.aD("ag"),p=0;p<2;++p){o=B.l2[p] +m.O(0,A.ab([A.eA(B.b2,!1,!1,!1,o),B.k_,A.eA(B.b2,!1,!0,!1,o),B.k2,A.eA(B.b2,!0,!1,!1,o),B.k0,A.eA(B.aU,!1,!1,!1,o),B.eW,A.eA(B.aU,!1,!0,!1,o),B.eX,A.eA(B.aU,!0,!1,!1,o),B.k1],q,n))}m.m(0,B.iJ,B.dR) +m.m(0,B.iK,B.dS) +m.m(0,B.iL,B.dV) +m.m(0,B.iM,B.dW) +m.m(0,B.lY,B.hv) +m.m(0,B.lZ,B.hw) +m.m(0,B.Af,B.f1) +m.m(0,B.Ag,B.f2) +m.m(0,B.lR,B.d3) +m.m(0,B.lS,B.d4) +m.m(0,B.lT,B.dT) +m.m(0,B.lU,B.dU) +m.m(0,B.m0,B.oq) +m.m(0,B.m1,B.or) +m.m(0,B.m2,B.hx) +m.m(0,B.m3,B.hy) +m.m(0,B.A7,B.hz) +m.m(0,B.A8,B.hA) +m.m(0,B.Ab,B.oA) +m.m(0,B.Ac,B.oB) +m.m(0,B.Rs,B.ow) +m.m(0,B.Rt,B.ox) +m.m(0,B.fy,B.kJ) +m.m(0,B.fB,B.kK) +m.m(0,B.m4,B.hB) +m.m(0,B.m_,B.hC) +m.m(0,B.A_,B.nZ) +m.m(0,B.zZ,B.nY) +m.m(0,B.A2,B.nn) +m.m(0,B.lX,B.nq) +m.m(0,B.Rg,B.ns) +m.m(0,B.Rr,B.np) +m.m(0,B.iF,B.p) +m.m(0,B.iI,B.p) +return m}) +s($,"b3q","aFH",()=>{var q=A.lH($.aC7(),t.Vz,t.J) +q.m(0,B.fC,B.ou) +q.m(0,B.fD,B.ov) +q.m(0,B.fz,B.os) +q.m(0,B.fA,B.ot) +q.m(0,B.iG,B.dT) +q.m(0,B.iH,B.dU) +q.m(0,B.lV,B.hx) +q.m(0,B.lW,B.hy) +return q}) +s($,"b3s","aNR",()=>$.aFH()) +s($,"b3u","aFI",()=>A.ab([B.R2,B.hw,B.R3,B.hv,B.QR,B.f1,B.R4,B.f2,B.Rw,B.oB,B.Rx,B.oA,B.RA,B.ow,B.Ry,B.ox,B.QS,B.hB,B.R5,B.hC,B.R6,B.f1,B.R7,B.f2,B.Rq,B.eW,B.QU,B.eX,B.QV,B.dS,B.QW,B.dR,B.Rm,B.dV,B.QX,B.dW,B.R9,B.hA,B.Ra,B.hz,B.Rk,B.H4,B.Rb,B.H5,B.Rn,B.kJ,B.QY,B.kK,B.QZ,B.dV,B.R_,B.dW,B.R8,B.eW,B.RC,B.eX],t.Vz,t.J)) +s($,"b3v","aNT",()=>{var q=A.lH($.aC7(),t.Vz,t.J) +q.O(0,$.aFI()) +q.m(0,B.fC,B.d3) +q.m(0,B.fD,B.d4) +q.m(0,B.fz,B.oq) +q.m(0,B.fA,B.or) +q.m(0,B.iG,B.dT) +q.m(0,B.iH,B.dU) +q.m(0,B.lV,B.hx) +q.m(0,B.lW,B.hy) +return q}) +s($,"b3x","aFJ",()=>{var q,p,o,n=t.J,m=A.w(t.Vz,n) +for(q=A.aD("ag"),p=0;p<2;++p){o=B.l2[p] +m.O(0,A.ab([A.eA(B.b2,!1,!1,!1,o),B.k_,A.eA(B.b2,!0,!1,!1,o),B.k2,A.eA(B.b2,!1,!1,!0,o),B.k0,A.eA(B.aU,!1,!1,!1,o),B.eW,A.eA(B.aU,!0,!1,!1,o),B.eX,A.eA(B.aU,!1,!1,!0,o),B.k1],q,n))}m.m(0,B.iJ,B.dR) +m.m(0,B.iK,B.dS) +m.m(0,B.iL,B.dV) +m.m(0,B.iM,B.dW) +m.m(0,B.lY,B.hv) +m.m(0,B.lZ,B.hw) +m.m(0,B.Af,B.f1) +m.m(0,B.Ag,B.f2) +m.m(0,B.lR,B.hz) +m.m(0,B.lS,B.hA) +m.m(0,B.lT,B.d3) +m.m(0,B.lU,B.d4) +m.m(0,B.m0,B.oC) +m.m(0,B.m1,B.oD) +m.m(0,B.m2,B.oy) +m.m(0,B.m3,B.oz) +m.m(0,B.A3,B.d3) +m.m(0,B.A4,B.d4) +m.m(0,B.A5,B.dT) +m.m(0,B.A6,B.dU) +m.m(0,B.A9,B.oo) +m.m(0,B.Aa,B.op) +m.m(0,B.Ri,B.kH) +m.m(0,B.Rj,B.kI) +m.m(0,B.Re,B.nr) +m.m(0,B.fC,B.zA) +m.m(0,B.fD,B.zB) +m.m(0,B.fz,B.kH) +m.m(0,B.fA,B.kI) +m.m(0,B.fy,B.lJ) +m.m(0,B.fB,B.it) +m.m(0,B.m4,B.hB) +m.m(0,B.m_,B.hC) +m.m(0,B.zX,B.nZ) +m.m(0,B.A0,B.nY) +m.m(0,B.zY,B.nn) +m.m(0,B.Ah,B.nq) +m.m(0,B.RB,B.ns) +m.m(0,B.Rh,B.np) +m.m(0,B.Rv,B.d4) +m.m(0,B.lX,B.d3) +m.m(0,B.QP,B.dS) +m.m(0,B.QT,B.dR) +m.m(0,B.Rd,B.dW) +m.m(0,B.Ro,B.dV) +m.m(0,B.iF,B.p) +m.m(0,B.iI,B.p) +return m}) +s($,"b3t","aNS",()=>$.aFJ()) +s($,"b3z","aNV",()=>{var q=A.lH($.aC7(),t.Vz,t.J) +q.m(0,B.fy,B.kJ) +q.m(0,B.fB,B.kK) +q.m(0,B.fC,B.ou) +q.m(0,B.fD,B.ov) +q.m(0,B.fz,B.os) +q.m(0,B.fA,B.ot) +q.m(0,B.iG,B.dT) +q.m(0,B.iH,B.dU) +q.m(0,B.lV,B.hx) +q.m(0,B.lW,B.hy) +return q}) +s($,"b3y","aFK",()=>{var q,p,o,n=t.J,m=A.w(t.Vz,n) +for(q=A.aD("ag"),p=0;p<2;++p){o=B.l2[p] +m.O(0,A.ab([A.eA(B.b2,!1,!1,!1,o),B.p,A.eA(B.aU,!1,!1,!1,o),B.p,A.eA(B.b2,!0,!1,!1,o),B.p,A.eA(B.aU,!0,!1,!1,o),B.p,A.eA(B.b2,!1,!0,!1,o),B.p,A.eA(B.aU,!1,!0,!1,o),B.p,A.eA(B.b2,!1,!1,!0,o),B.p,A.eA(B.aU,!1,!1,!0,o),B.p],q,n))}m.O(0,B.vv) +m.m(0,B.A_,B.p) +m.m(0,B.zX,B.p) +m.m(0,B.zZ,B.p) +m.m(0,B.A0,B.p) +m.m(0,B.A2,B.p) +m.m(0,B.zY,B.p) +m.m(0,B.lX,B.p) +m.m(0,B.Ah,B.p) +return m}) +s($,"b3w","aNU",()=>{var q=A.lH(B.vv,t.Vz,t.J) +q.O(0,B.vw) +q.m(0,B.Ad,B.p) +q.m(0,B.Ae,B.p) +q.m(0,B.A1,B.p) +q.m(0,B.m3,B.p) +q.m(0,B.m2,B.p) +q.m(0,B.lY,B.p) +q.m(0,B.lZ,B.p) +q.m(0,B.m0,B.p) +q.m(0,B.m1,B.p) +q.m(0,B.A9,B.p) +q.m(0,B.Aa,B.p) +q.m(0,B.fy,B.p) +q.m(0,B.fB,B.p) +q.m(0,B.fD,B.p) +q.m(0,B.fC,B.p) +q.m(0,B.m4,B.p) +q.m(0,B.m_,B.p) +q.m(0,B.fA,B.p) +q.m(0,B.fz,B.p) +q.m(0,B.iH,B.p) +q.m(0,B.iG,B.p) +return q}) +r($,"b6i","aFY",()=>new A.X1(B.a_7,B.Z)) +s($,"b6h","aPo",()=>A.dO(1,0,t.i)) +s($,"b4S","k1",()=>A.aD5()) +s($,"b6g","aPn",()=>A.ea(16667,0,0)) +s($,"b5i","aOQ",()=>A.aE2(0.5,1.1,100)) +s($,"b3b","aC6",()=>A.aNj(0.78)/A.aNj(0.9)) +s($,"b6O","aPN",()=>A.abw(A.cn([B.l8],t.T))) +s($,"b7B","aQk",()=>A.abw(A.cn([B.l9],t.T))) +s($,"b6I","aPI",()=>A.abw(A.cn([B.la],t.T))) +s($,"b7t","aQf",()=>A.abw(A.cn([B.lb],t.T))) +s($,"b3o","aNQ",()=>{var q=null,p=new A.auF(A.aSg(B.jE.ga_1(0),$.a2a()),A.b2g(),B.Dv,B.jE),o=t.N,n=new A.Qg(p,A.w(o,t._A),q) +n.a5Q(q) +n.DH(q) +p.a=n +n=p.b +p=p.Wv(0,n==null?p.b=p.Wv(0,B.jE.ga_1(0)).Wc(".tmp_").b:n) +p.Wb() +p=new A.aeq(p.I2("cache")) +n=A.aUo() +p=new A.a4O(new A.OI(),p,B.Gr,200,n) +o=new A.a5r(A.w(o,A.aD("cs")),p,A.aRL(p)) +o.a5H(p) +return o}) +r($,"b83","a2i",()=>new A.a3D()) +s($,"b8y","aQR",()=>new A.agy(A.w(t.N,A.aD("av?(db?)")))) +s($,"b33","aNK",()=>A.ck("^[\\w!#%&'*+\\-.^`|~]+$",!0,!1)) +s($,"b6S","aPO",()=>A.ck('["\\x00-\\x1F\\x7F]',!0,!1)) +s($,"b8x","aQQ",()=>A.ck('[^()<>@,;:"\\\\/[\\]?={} \\t\\x00-\\x1F\\x7F]+',!0,!1)) +s($,"b7s","aQe",()=>A.ck("(?:\\r\\n)?[ \\t]+",!0,!1)) +s($,"b7v","aQh",()=>A.ck('"(?:[^"\\x00-\\x1F\\x7F\\\\]|\\\\.)*"',!0,!1)) +s($,"b7u","aQg",()=>A.ck("\\\\(.)",!0,!1)) +s($,"b8p","aQN",()=>A.ck('[()<>@,;:"\\\\/\\[\\]?={} \\t\\x00-\\x1F\\x7F]',!0,!1)) +s($,"b8z","aQS",()=>A.ck("(?:"+$.aQe().a+")*",!0,!1)) +s($,"b8e","aQH",()=>new A.a5k("en_US",B.JU,B.L2,B.pz,B.pz,B.po,B.po,B.pm,B.pm,B.pr,B.pr,B.ps,B.ps,B.KJ,B.K8,B.L_,B.JQ)) +r($,"b6P","aCf",()=>A.aKH("initializeDateFormatting()",$.aQH())) +r($,"b8a","aGb",()=>A.aKH("initializeDateFormatting()",B.MH)) +s($,"b7Z","aQC",()=>48) +s($,"b3m","aNO",()=>A.b([A.ck("^'(?:[^']|'')*'",!0,!1),A.ck("^(?:G+|y+|M+|k+|S+|E+|a+|h+|K+|H+|c+|L+|Q+|d+|D+|m+|s+|v+|z+|Z+)",!0,!1),A.ck("^[^'GyMkSEahKHcLQdDmsvzZ]+",!0,!1)],A.aD("D"))) +s($,"b6c","aPj",()=>A.ck("''",!0,!1)) +r($,"b42","aFN",()=>{var q=null +return A.bD(q,q,!0,"background",new A.abL(),q,new A.abM(),q)}) +r($,"b48","aO8",()=>A.bD(new A.ac2(),A.cq(3,3,4.5,7),!1,"on_background",new A.ac3(),null,new A.ac4(),null)) +r($,"b4B","aOt",()=>{var q=null +return A.bD(q,q,!0,"surface",new A.adS(),q,new A.adT(),q)}) +r($,"b4I","eG",()=>{var q=null +return A.bD(q,q,!0,"surface_dim",new A.adO(),q,new A.adP(),q)}) +r($,"b4C","eF",()=>{var q=null +return A.bD(q,q,!0,"surface_bright",new A.adC(),q,new A.adD(),q)}) +r($,"b4H","aOy",()=>{var q=null +return A.bD(q,q,!0,"surface_container_lowest",new A.adK(),q,new A.adL(),q)}) +r($,"b4G","aOx",()=>{var q=null +return A.bD(q,q,!0,"surface_container_low",new A.adI(),q,new A.adJ(),q)}) +r($,"b4D","aOu",()=>{var q=null +return A.bD(q,q,!0,"surface_container",new A.adM(),q,new A.adN(),q)}) +r($,"b4E","aOv",()=>{var q=null +return A.bD(q,q,!0,"surface_container_high",new A.adE(),q,new A.adF(),q)}) +r($,"b4F","aOw",()=>{var q=null +return A.bD(q,q,!0,"surface_container_highest",new A.adG(),q,new A.adH(),q)}) +r($,"b4j","aOj",()=>A.bD(new A.acG(),A.cq(4.5,7,11,21),!1,"on_surface",new A.acH(),null,new A.acI(),null)) +r($,"b4J","aOz",()=>{var q=null +return A.bD(q,q,!0,"surface_variant",new A.adQ(),q,new A.adR(),q)}) +r($,"b4k","aOk",()=>A.bD(new A.acD(),A.cq(3,4.5,7,11),!1,"on_surface_variant",new A.acE(),null,new A.acF(),null)) +r($,"b47","aC9",()=>{var q=null +return A.bD(q,q,!1,"inverse_surface",new A.ac0(),q,new A.ac1(),q)}) +r($,"b45","aO6",()=>A.bD(new A.abV(),A.cq(4.5,7,11,21),!1,"inverse_on_surface",new A.abW(),null,new A.abX(),null)) +r($,"b4p","aOp",()=>A.bD(new A.ad_(),A.cq(1.5,3,4.5,7),!1,"outline",new A.ad0(),null,new A.ad1(),null)) +r($,"b4q","aOq",()=>A.bD(new A.acX(),A.cq(1,1,3,4.5),!1,"outline_variant",new A.acY(),null,new A.acZ(),null)) +r($,"b4A","aOs",()=>{var q=null +return A.bD(q,q,!1,"shadow",new A.adA(),q,new A.adB(),q)}) +r($,"b4v","aOr",()=>{var q=null +return A.bD(q,q,!1,"scrim",new A.adi(),q,new A.adj(),q)}) +r($,"b4r","K0",()=>A.bD(new A.ade(),A.cq(3,4.5,7,7),!0,"primary",new A.adf(),null,new A.adg(),new A.adh())) +r($,"b4b","aOb",()=>A.bD(new A.acm(),A.cq(4.5,7,11,21),!1,"on_primary",new A.acn(),null,new A.aco(),null)) +r($,"b4s","K1",()=>A.bD(new A.ad2(),A.cq(1,1,3,4.5),!0,"primary_container",new A.ad3(),null,new A.ad4(),new A.ad5())) +r($,"b4c","aOc",()=>A.bD(new A.acb(),A.cq(4.5,7,11,21),!1,"on_primary_container",new A.acc(),null,new A.acd(),null)) +r($,"b46","aO7",()=>A.bD(new A.abY(),A.cq(3,4.5,7,7),!1,"inverse_primary",new A.abZ(),null,new A.ac_(),null)) +r($,"b4w","a27",()=>A.bD(new A.adw(),A.cq(3,4.5,7,7),!0,"secondary",new A.adx(),null,new A.ady(),new A.adz())) +r($,"b4f","aOf",()=>A.bD(new A.acA(),A.cq(4.5,7,11,21),!1,"on_secondary",new A.acB(),null,new A.acC(),null)) +r($,"b4x","K4",()=>A.bD(new A.adk(),A.cq(1,1,3,4.5),!0,"secondary_container",new A.adl(),null,new A.adm(),new A.adn())) +r($,"b4g","aOg",()=>A.bD(new A.acp(),A.cq(4.5,7,11,21),!1,"on_secondary_container",new A.acq(),null,new A.acr(),null)) +r($,"b4K","a28",()=>A.bD(new A.ae5(),A.cq(3,4.5,7,7),!0,"tertiary",new A.ae6(),null,new A.ae7(),new A.ae8())) +r($,"b4l","aOl",()=>A.bD(new A.acU(),A.cq(4.5,7,11,21),!1,"on_tertiary",new A.acV(),null,new A.acW(),null)) +r($,"b4L","K7",()=>A.bD(new A.adU(),A.cq(1,1,3,4.5),!0,"tertiary_container",new A.adV(),null,new A.adW(),new A.adX())) +r($,"b4m","aOm",()=>A.bD(new A.acJ(),A.cq(4.5,7,11,21),!1,"on_tertiary_container",new A.acK(),null,new A.acL(),null)) +r($,"b43","a25",()=>A.bD(new A.abR(),A.cq(3,4.5,7,7),!0,"error",new A.abS(),null,new A.abT(),new A.abU())) +r($,"b49","aO9",()=>A.bD(new A.ac8(),A.cq(4.5,7,11,21),!1,"on_error",new A.ac9(),null,new A.aca(),null)) +r($,"b44","a26",()=>A.bD(new A.abN(),A.cq(1,1,3,4.5),!0,"error_container",new A.abO(),null,new A.abP(),new A.abQ())) +r($,"b4a","aOa",()=>A.bD(new A.ac5(),A.cq(4.5,7,11,21),!1,"on_error_container",new A.ac6(),null,new A.ac7(),null)) +r($,"b4t","K2",()=>A.bD(new A.ada(),A.cq(1,1,3,4.5),!0,"primary_fixed",new A.adb(),null,new A.adc(),new A.add())) +r($,"b4u","K3",()=>A.bD(new A.ad6(),A.cq(1,1,3,4.5),!0,"primary_fixed_dim",new A.ad7(),null,new A.ad8(),new A.ad9())) +r($,"b4d","aOd",()=>A.bD(new A.aci(),A.cq(4.5,7,11,21),!1,"on_primary_fixed",new A.acj(),new A.ack(),new A.acl(),null)) +r($,"b4e","aOe",()=>A.bD(new A.ace(),A.cq(3,4.5,7,11),!1,"on_primary_fixed_variant",new A.acf(),new A.acg(),new A.ach(),null)) +r($,"b4y","K5",()=>A.bD(new A.ads(),A.cq(1,1,3,4.5),!0,"secondary_fixed",new A.adt(),null,new A.adu(),new A.adv())) +r($,"b4z","K6",()=>A.bD(new A.ado(),A.cq(1,1,3,4.5),!0,"secondary_fixed_dim",new A.adp(),null,new A.adq(),new A.adr())) +r($,"b4h","aOh",()=>A.bD(new A.acw(),A.cq(4.5,7,11,21),!1,"on_secondary_fixed",new A.acx(),new A.acy(),new A.acz(),null)) +r($,"b4i","aOi",()=>A.bD(new A.acs(),A.cq(3,4.5,7,11),!1,"on_secondary_fixed_variant",new A.act(),new A.acu(),new A.acv(),null)) +r($,"b4M","K8",()=>A.bD(new A.ae1(),A.cq(1,1,3,4.5),!0,"tertiary_fixed",new A.ae2(),null,new A.ae3(),new A.ae4())) +r($,"b4N","K9",()=>A.bD(new A.adY(),A.cq(1,1,3,4.5),!0,"tertiary_fixed_dim",new A.adZ(),null,new A.ae_(),new A.ae0())) +r($,"b4n","aOn",()=>A.bD(new A.acQ(),A.cq(4.5,7,11,21),!1,"on_tertiary_fixed",new A.acR(),new A.acS(),new A.acT(),null)) +r($,"b4o","aOo",()=>A.bD(new A.acM(),A.cq(3,4.5,7,11),!1,"on_tertiary_fixed_variant",new A.acN(),new A.acO(),new A.acP(),null)) +s($,"b5V","aP9",()=>$.Kc()) +s($,"b5U","Kc",()=>{var q,p,o,n,m,l,k,j,i,h,g=63.66197723675813*A.pL(50)/100,f=A.aFq(0.1,50),e=$.ue[0],d=$.ue[1],c=$.ue[2],b=e*0.401288+d*0.650173+c*-0.051461,a=e*-0.250268+d*1.204414+c*0.045854,a0=e*-0.002079+d*0.048952+c*0.953127,a1=A.aDA(0.59,0.69,0.9999999999999998),a2=1-0.2777777777777778*A.b1u((-g-42)/92) +if(a2>1)a2=1 +else if(a2<0)a2=0 +q=A.b([a2*(100/b)+1-a2,a2*(100/a)+1-a2,a2*(100/a0)+1-a2],t.n) +e=5*g +p=1/(e+1) +o=p*p*p*p +n=1-o +m=o*g+0.1*n*n*A.JV(e,0.3333333333333333) +l=A.pL(f)/$.ue[1] +e=A.b2A(l) +k=0.725/A.JV(l,0.2) +j=[A.JV(m*q[0]*b/100,0.42),A.JV(m*q[1]*a/100,0.42),A.JV(m*q[2]*a0/100,0.42)] +d=j[0] +c=j[1] +i=j[2] +h=[400*d/(d+27.13),400*c/(c+27.13),400*i/(i+27.13)] +return new A.anC(l,(40*h[0]+20*h[1]+h[2])/20*k,k,k,a1,1,q,m,A.JV(m,0.25),1.48+e)}) +s($,"b86","aGa",()=>new A.LN($.aFS(),null)) +s($,"b5y","a2a",()=>new A.agK(A.ck("/",!0,!1),A.ck("[^/]$",!0,!1),A.ck("^/",!0,!1))) +s($,"b5A","a2b",()=>new A.anQ(A.ck("[/\\\\]",!0,!1),A.ck("[^/\\\\]$",!0,!1),A.ck("^(\\\\\\\\[^\\\\]+\\\\[^\\\\/]+|[a-zA-Z]:[/\\\\])",!0,!1),A.ck("^[/\\\\](?![/\\\\])",!0,!1))) +s($,"b5z","Kb",()=>new A.ann(A.ck("/",!0,!1),A.ck("(^[a-zA-Z][-+.a-zA-Z\\d]*://|[^/])$",!0,!1),A.ck("[a-zA-Z][-+.a-zA-Z\\d]*://[^/]*",!0,!1),A.ck("^/",!0,!1))) +s($,"b5x","aFS",()=>A.aXk()) +s($,"b4U","a29",()=>A.aD5()) +s($,"b71","aPU",()=>!A.aD("O").b(A.b([],t.Z))) +s($,"b5r","aFR",()=>new A.R()) +r($,"aWZ","aCd",()=>{var q=new A.aeF() +q.a5R($.aFR()) +return q}) +r($,"b5S","aP8",()=>new A.a4X()) +s($,"b5R","aP7",()=>{var q,p=J.aDq(256,t.N) +for(q=0;q<256;++q)p[q]=B.c.eb(B.f.lV(q,16),2,"0") +return p}) +s($,"b3d","aNN",()=>$.aOG()) +s($,"b4Y","aOB",()=>new A.R()) +s($,"b4Z","aOC",()=>new A.R())})();(function nativeSupport(){!function(){var s=function(a){var m={} +m[a]=1 +return Object.keys(hunkHelpers.convertToFastObject(m))[0]} +v.getIsolateTag=function(a){return s("___dart_"+a+v.isolateTag)} +var r="___dart_isolate_tags_" +var q=Object[r]||(Object[r]=Object.create(null)) +var p="_ZxYxX" +for(var o=0;;o++){var n=s(p+"_"+o+"_") +if(!(n in q)){q[n]=1 +v.isolateTag=n +break}}v.dispatchPropertyName=v.getIsolateTag("dispatch_record")}() +hunkHelpers.setOrUpdateInterceptorsByTag({WebGL:J.uQ,AbortPaymentEvent:J.i,AnimationEffectReadOnly:J.i,AnimationEffectTiming:J.i,AnimationEffectTimingReadOnly:J.i,AnimationEvent:J.i,AnimationPlaybackEvent:J.i,AnimationTimeline:J.i,AnimationWorkletGlobalScope:J.i,ApplicationCacheErrorEvent:J.i,AuthenticatorAssertionResponse:J.i,AuthenticatorAttestationResponse:J.i,AuthenticatorResponse:J.i,BackgroundFetchClickEvent:J.i,BackgroundFetchEvent:J.i,BackgroundFetchFailEvent:J.i,BackgroundFetchFetch:J.i,BackgroundFetchManager:J.i,BackgroundFetchSettledFetch:J.i,BackgroundFetchedEvent:J.i,BarProp:J.i,BarcodeDetector:J.i,BeforeInstallPromptEvent:J.i,BeforeUnloadEvent:J.i,BlobEvent:J.i,BluetoothRemoteGATTDescriptor:J.i,Body:J.i,BudgetState:J.i,CacheStorage:J.i,CanMakePaymentEvent:J.i,CanvasGradient:J.i,CanvasPattern:J.i,CanvasRenderingContext2D:J.i,Client:J.i,Clients:J.i,ClipboardEvent:J.i,CloseEvent:J.i,CompositionEvent:J.i,CookieStore:J.i,Coordinates:J.i,Credential:J.i,CredentialUserData:J.i,CredentialsContainer:J.i,Crypto:J.i,CryptoKey:J.i,CSS:J.i,CSSVariableReferenceValue:J.i,CustomElementRegistry:J.i,CustomEvent:J.i,DataTransfer:J.i,DataTransferItem:J.i,DeprecatedStorageInfo:J.i,DeprecatedStorageQuota:J.i,DeprecationReport:J.i,DetectedBarcode:J.i,DetectedFace:J.i,DetectedText:J.i,DeviceAcceleration:J.i,DeviceMotionEvent:J.i,DeviceOrientationEvent:J.i,DeviceRotationRate:J.i,DirectoryEntry:J.i,webkitFileSystemDirectoryEntry:J.i,FileSystemDirectoryEntry:J.i,DirectoryReader:J.i,WebKitDirectoryReader:J.i,webkitFileSystemDirectoryReader:J.i,FileSystemDirectoryReader:J.i,DocumentOrShadowRoot:J.i,DocumentTimeline:J.i,DOMError:J.i,DOMImplementation:J.i,Iterator:J.i,DOMMatrix:J.i,DOMMatrixReadOnly:J.i,DOMParser:J.i,DOMPoint:J.i,DOMPointReadOnly:J.i,DOMQuad:J.i,DOMStringMap:J.i,Entry:J.i,webkitFileSystemEntry:J.i,FileSystemEntry:J.i,ErrorEvent:J.i,Event:J.i,InputEvent:J.i,SubmitEvent:J.i,ExtendableEvent:J.i,ExtendableMessageEvent:J.i,External:J.i,FaceDetector:J.i,FederatedCredential:J.i,FetchEvent:J.i,FileEntry:J.i,webkitFileSystemFileEntry:J.i,FileSystemFileEntry:J.i,DOMFileSystem:J.i,WebKitFileSystem:J.i,webkitFileSystem:J.i,FileSystem:J.i,FocusEvent:J.i,FontFace:J.i,FontFaceSetLoadEvent:J.i,FontFaceSource:J.i,ForeignFetchEvent:J.i,FormData:J.i,GamepadButton:J.i,GamepadEvent:J.i,GamepadPose:J.i,Geolocation:J.i,Position:J.i,GeolocationPosition:J.i,HashChangeEvent:J.i,Headers:J.i,HTMLHyperlinkElementUtils:J.i,IdleDeadline:J.i,ImageBitmap:J.i,ImageBitmapRenderingContext:J.i,ImageCapture:J.i,ImageData:J.i,InputDeviceCapabilities:J.i,InstallEvent:J.i,IntersectionObserver:J.i,IntersectionObserverEntry:J.i,InterventionReport:J.i,KeyboardEvent:J.i,KeyframeEffect:J.i,KeyframeEffectReadOnly:J.i,MediaCapabilities:J.i,MediaCapabilitiesInfo:J.i,MediaDeviceInfo:J.i,MediaEncryptedEvent:J.i,MediaError:J.i,MediaKeyMessageEvent:J.i,MediaKeyStatusMap:J.i,MediaKeySystemAccess:J.i,MediaKeys:J.i,MediaKeysPolicy:J.i,MediaMetadata:J.i,MediaQueryListEvent:J.i,MediaSession:J.i,MediaSettingsRange:J.i,MediaStreamEvent:J.i,MediaStreamTrackEvent:J.i,MemoryInfo:J.i,MessageChannel:J.i,MessageEvent:J.i,Metadata:J.i,MIDIConnectionEvent:J.i,MIDIMessageEvent:J.i,MouseEvent:J.i,DragEvent:J.i,MutationEvent:J.i,MutationObserver:J.i,WebKitMutationObserver:J.i,MutationRecord:J.i,NavigationPreloadManager:J.i,Navigator:J.i,NavigatorAutomationInformation:J.i,NavigatorConcurrentHardware:J.i,NavigatorCookies:J.i,NavigatorUserMediaError:J.i,NodeFilter:J.i,NodeIterator:J.i,NonDocumentTypeChildNode:J.i,NonElementParentNode:J.i,NoncedElement:J.i,NotificationEvent:J.i,OffscreenCanvasRenderingContext2D:J.i,OverconstrainedError:J.i,PageTransitionEvent:J.i,PaintRenderingContext2D:J.i,PaintSize:J.i,PaintWorkletGlobalScope:J.i,PasswordCredential:J.i,Path2D:J.i,PaymentAddress:J.i,PaymentInstruments:J.i,PaymentManager:J.i,PaymentRequestEvent:J.i,PaymentRequestUpdateEvent:J.i,PaymentResponse:J.i,PerformanceEntry:J.i,PerformanceLongTaskTiming:J.i,PerformanceMark:J.i,PerformanceMeasure:J.i,PerformanceNavigation:J.i,PerformanceNavigationTiming:J.i,PerformanceObserver:J.i,PerformanceObserverEntryList:J.i,PerformancePaintTiming:J.i,PerformanceResourceTiming:J.i,PerformanceServerTiming:J.i,PerformanceTiming:J.i,Permissions:J.i,PhotoCapabilities:J.i,PointerEvent:J.i,PopStateEvent:J.i,PositionError:J.i,GeolocationPositionError:J.i,Presentation:J.i,PresentationConnectionAvailableEvent:J.i,PresentationConnectionCloseEvent:J.i,PresentationReceiver:J.i,ProgressEvent:J.i,PromiseRejectionEvent:J.i,PublicKeyCredential:J.i,PushEvent:J.i,PushManager:J.i,PushMessageData:J.i,PushSubscription:J.i,PushSubscriptionOptions:J.i,Range:J.i,RelatedApplication:J.i,ReportBody:J.i,ReportingObserver:J.i,ResizeObserver:J.i,ResizeObserverEntry:J.i,RTCCertificate:J.i,RTCDataChannelEvent:J.i,RTCDTMFToneChangeEvent:J.i,RTCIceCandidate:J.i,mozRTCIceCandidate:J.i,RTCLegacyStatsReport:J.i,RTCPeerConnectionIceEvent:J.i,RTCRtpContributingSource:J.i,RTCRtpReceiver:J.i,RTCRtpSender:J.i,RTCSessionDescription:J.i,mozRTCSessionDescription:J.i,RTCStatsResponse:J.i,RTCTrackEvent:J.i,Screen:J.i,ScrollState:J.i,ScrollTimeline:J.i,SecurityPolicyViolationEvent:J.i,Selection:J.i,SensorErrorEvent:J.i,SpeechRecognitionAlternative:J.i,SpeechRecognitionError:J.i,SpeechRecognitionEvent:J.i,SpeechSynthesisEvent:J.i,SpeechSynthesisVoice:J.i,StaticRange:J.i,StorageEvent:J.i,StorageManager:J.i,StyleMedia:J.i,StylePropertyMap:J.i,StylePropertyMapReadonly:J.i,SyncEvent:J.i,SyncManager:J.i,TaskAttributionTiming:J.i,TextDetector:J.i,TextEvent:J.i,TextMetrics:J.i,TouchEvent:J.i,TrackDefault:J.i,TrackEvent:J.i,TransitionEvent:J.i,WebKitTransitionEvent:J.i,TreeWalker:J.i,TrustedHTML:J.i,TrustedScriptURL:J.i,TrustedURL:J.i,UIEvent:J.i,UnderlyingSourceBase:J.i,URLSearchParams:J.i,VRCoordinateSystem:J.i,VRDeviceEvent:J.i,VRDisplayCapabilities:J.i,VRDisplayEvent:J.i,VREyeParameters:J.i,VRFrameData:J.i,VRFrameOfReference:J.i,VRPose:J.i,VRSessionEvent:J.i,VRStageBounds:J.i,VRStageBoundsPoint:J.i,VRStageParameters:J.i,ValidityState:J.i,VideoPlaybackQuality:J.i,VideoTrack:J.i,VTTRegion:J.i,WheelEvent:J.i,WindowClient:J.i,WorkletAnimation:J.i,WorkletGlobalScope:J.i,XPathEvaluator:J.i,XPathExpression:J.i,XPathNSResolver:J.i,XPathResult:J.i,XMLSerializer:J.i,XSLTProcessor:J.i,Bluetooth:J.i,BluetoothCharacteristicProperties:J.i,BluetoothRemoteGATTServer:J.i,BluetoothRemoteGATTService:J.i,BluetoothUUID:J.i,BudgetService:J.i,Cache:J.i,DOMFileSystemSync:J.i,DirectoryEntrySync:J.i,DirectoryReaderSync:J.i,EntrySync:J.i,FileEntrySync:J.i,FileReaderSync:J.i,FileWriterSync:J.i,HTMLAllCollection:J.i,Mojo:J.i,MojoHandle:J.i,MojoInterfaceRequestEvent:J.i,MojoWatcher:J.i,NFC:J.i,PagePopupController:J.i,Report:J.i,Request:J.i,ResourceProgressEvent:J.i,Response:J.i,SubtleCrypto:J.i,USBAlternateInterface:J.i,USBConfiguration:J.i,USBConnectionEvent:J.i,USBDevice:J.i,USBEndpoint:J.i,USBInTransferResult:J.i,USBInterface:J.i,USBIsochronousInTransferPacket:J.i,USBIsochronousInTransferResult:J.i,USBIsochronousOutTransferPacket:J.i,USBIsochronousOutTransferResult:J.i,USBOutTransferResult:J.i,WorkerLocation:J.i,WorkerNavigator:J.i,Worklet:J.i,IDBCursor:J.i,IDBCursorWithValue:J.i,IDBFactory:J.i,IDBIndex:J.i,IDBKeyRange:J.i,IDBObjectStore:J.i,IDBObservation:J.i,IDBObserver:J.i,IDBObserverChanges:J.i,IDBVersionChangeEvent:J.i,SVGAngle:J.i,SVGAnimatedAngle:J.i,SVGAnimatedBoolean:J.i,SVGAnimatedEnumeration:J.i,SVGAnimatedInteger:J.i,SVGAnimatedLength:J.i,SVGAnimatedLengthList:J.i,SVGAnimatedNumber:J.i,SVGAnimatedNumberList:J.i,SVGAnimatedPreserveAspectRatio:J.i,SVGAnimatedRect:J.i,SVGAnimatedString:J.i,SVGAnimatedTransformList:J.i,SVGMatrix:J.i,SVGPoint:J.i,SVGPreserveAspectRatio:J.i,SVGRect:J.i,SVGUnitTypes:J.i,AudioListener:J.i,AudioParam:J.i,AudioProcessingEvent:J.i,AudioTrack:J.i,AudioWorkletGlobalScope:J.i,AudioWorkletProcessor:J.i,OfflineAudioCompletionEvent:J.i,PeriodicWave:J.i,WebGLActiveInfo:J.i,ANGLEInstancedArrays:J.i,ANGLE_instanced_arrays:J.i,WebGLBuffer:J.i,WebGLCanvas:J.i,WebGLColorBufferFloat:J.i,WebGLCompressedTextureASTC:J.i,WebGLCompressedTextureATC:J.i,WEBGL_compressed_texture_atc:J.i,WebGLCompressedTextureETC1:J.i,WEBGL_compressed_texture_etc1:J.i,WebGLCompressedTextureETC:J.i,WebGLCompressedTexturePVRTC:J.i,WEBGL_compressed_texture_pvrtc:J.i,WebGLCompressedTextureS3TC:J.i,WEBGL_compressed_texture_s3tc:J.i,WebGLCompressedTextureS3TCsRGB:J.i,WebGLContextEvent:J.i,WebGLDebugRendererInfo:J.i,WEBGL_debug_renderer_info:J.i,WebGLDebugShaders:J.i,WEBGL_debug_shaders:J.i,WebGLDepthTexture:J.i,WEBGL_depth_texture:J.i,WebGLDrawBuffers:J.i,WEBGL_draw_buffers:J.i,EXTsRGB:J.i,EXT_sRGB:J.i,EXTBlendMinMax:J.i,EXT_blend_minmax:J.i,EXTColorBufferFloat:J.i,EXTColorBufferHalfFloat:J.i,EXTDisjointTimerQuery:J.i,EXTDisjointTimerQueryWebGL2:J.i,EXTFragDepth:J.i,EXT_frag_depth:J.i,EXTShaderTextureLOD:J.i,EXT_shader_texture_lod:J.i,EXTTextureFilterAnisotropic:J.i,EXT_texture_filter_anisotropic:J.i,WebGLFramebuffer:J.i,WebGLGetBufferSubDataAsync:J.i,WebGLLoseContext:J.i,WebGLExtensionLoseContext:J.i,WEBGL_lose_context:J.i,OESElementIndexUint:J.i,OES_element_index_uint:J.i,OESStandardDerivatives:J.i,OES_standard_derivatives:J.i,OESTextureFloat:J.i,OES_texture_float:J.i,OESTextureFloatLinear:J.i,OES_texture_float_linear:J.i,OESTextureHalfFloat:J.i,OES_texture_half_float:J.i,OESTextureHalfFloatLinear:J.i,OES_texture_half_float_linear:J.i,OESVertexArrayObject:J.i,OES_vertex_array_object:J.i,WebGLProgram:J.i,WebGLQuery:J.i,WebGLRenderbuffer:J.i,WebGLRenderingContext:J.i,WebGL2RenderingContext:J.i,WebGLSampler:J.i,WebGLShader:J.i,WebGLShaderPrecisionFormat:J.i,WebGLSync:J.i,WebGLTexture:J.i,WebGLTimerQueryEXT:J.i,WebGLTransformFeedback:J.i,WebGLUniformLocation:J.i,WebGLVertexArrayObject:J.i,WebGLVertexArrayObjectOES:J.i,WebGL2RenderingContextBase:J.i,SharedArrayBuffer:A.ve,ArrayBuffer:A.qU,ArrayBufferView:A.BV,DataView:A.BQ,Float32Array:A.BR,Float64Array:A.BS,Int16Array:A.OA,Int32Array:A.BT,Int8Array:A.OB,Uint16Array:A.BW,Uint32Array:A.BX,Uint8ClampedArray:A.BY,CanvasPixelArray:A.BY,Uint8Array:A.lK,HTMLAudioElement:A.aL,HTMLBRElement:A.aL,HTMLBaseElement:A.aL,HTMLBodyElement:A.aL,HTMLButtonElement:A.aL,HTMLCanvasElement:A.aL,HTMLContentElement:A.aL,HTMLDListElement:A.aL,HTMLDataElement:A.aL,HTMLDataListElement:A.aL,HTMLDetailsElement:A.aL,HTMLDialogElement:A.aL,HTMLDivElement:A.aL,HTMLEmbedElement:A.aL,HTMLFieldSetElement:A.aL,HTMLHRElement:A.aL,HTMLHeadElement:A.aL,HTMLHeadingElement:A.aL,HTMLHtmlElement:A.aL,HTMLIFrameElement:A.aL,HTMLImageElement:A.aL,HTMLInputElement:A.aL,HTMLLIElement:A.aL,HTMLLabelElement:A.aL,HTMLLegendElement:A.aL,HTMLLinkElement:A.aL,HTMLMapElement:A.aL,HTMLMediaElement:A.aL,HTMLMenuElement:A.aL,HTMLMetaElement:A.aL,HTMLMeterElement:A.aL,HTMLModElement:A.aL,HTMLOListElement:A.aL,HTMLObjectElement:A.aL,HTMLOptGroupElement:A.aL,HTMLOptionElement:A.aL,HTMLOutputElement:A.aL,HTMLParagraphElement:A.aL,HTMLParamElement:A.aL,HTMLPictureElement:A.aL,HTMLPreElement:A.aL,HTMLProgressElement:A.aL,HTMLQuoteElement:A.aL,HTMLScriptElement:A.aL,HTMLShadowElement:A.aL,HTMLSlotElement:A.aL,HTMLSourceElement:A.aL,HTMLSpanElement:A.aL,HTMLStyleElement:A.aL,HTMLTableCaptionElement:A.aL,HTMLTableCellElement:A.aL,HTMLTableDataCellElement:A.aL,HTMLTableHeaderCellElement:A.aL,HTMLTableColElement:A.aL,HTMLTableElement:A.aL,HTMLTableRowElement:A.aL,HTMLTableSectionElement:A.aL,HTMLTemplateElement:A.aL,HTMLTextAreaElement:A.aL,HTMLTimeElement:A.aL,HTMLTitleElement:A.aL,HTMLTrackElement:A.aL,HTMLUListElement:A.aL,HTMLUnknownElement:A.aL,HTMLVideoElement:A.aL,HTMLDirectoryElement:A.aL,HTMLFontElement:A.aL,HTMLFrameElement:A.aL,HTMLFrameSetElement:A.aL,HTMLMarqueeElement:A.aL,HTMLElement:A.aL,AccessibleNodeList:A.Kn,HTMLAnchorElement:A.Kv,HTMLAreaElement:A.KE,Blob:A.yM,CDATASection:A.k9,CharacterData:A.k9,Comment:A.k9,ProcessingInstruction:A.k9,Text:A.k9,CSSPerspective:A.LQ,CSSCharsetRule:A.cv,CSSConditionRule:A.cv,CSSFontFaceRule:A.cv,CSSGroupingRule:A.cv,CSSImportRule:A.cv,CSSKeyframeRule:A.cv,MozCSSKeyframeRule:A.cv,WebKitCSSKeyframeRule:A.cv,CSSKeyframesRule:A.cv,MozCSSKeyframesRule:A.cv,WebKitCSSKeyframesRule:A.cv,CSSMediaRule:A.cv,CSSNamespaceRule:A.cv,CSSPageRule:A.cv,CSSRule:A.cv,CSSStyleRule:A.cv,CSSSupportsRule:A.cv,CSSViewportRule:A.cv,CSSStyleDeclaration:A.uk,MSStyleCSSProperties:A.uk,CSS2Properties:A.uk,CSSImageValue:A.fI,CSSKeywordValue:A.fI,CSSNumericValue:A.fI,CSSPositionValue:A.fI,CSSResourceValue:A.fI,CSSUnitValue:A.fI,CSSURLImageValue:A.fI,CSSStyleValue:A.fI,CSSMatrixComponent:A.j8,CSSRotation:A.j8,CSSScale:A.j8,CSSSkew:A.j8,CSSTranslation:A.j8,CSSTransformComponent:A.j8,CSSTransformValue:A.LR,CSSUnparsedValue:A.LS,DataTransferItemList:A.M1,DOMException:A.Mq,ClientRectList:A.zT,DOMRectList:A.zT,DOMRectReadOnly:A.zU,DOMStringList:A.Ms,DOMTokenList:A.Mu,MathMLElement:A.aF,SVGAElement:A.aF,SVGAnimateElement:A.aF,SVGAnimateMotionElement:A.aF,SVGAnimateTransformElement:A.aF,SVGAnimationElement:A.aF,SVGCircleElement:A.aF,SVGClipPathElement:A.aF,SVGDefsElement:A.aF,SVGDescElement:A.aF,SVGDiscardElement:A.aF,SVGEllipseElement:A.aF,SVGFEBlendElement:A.aF,SVGFEColorMatrixElement:A.aF,SVGFEComponentTransferElement:A.aF,SVGFECompositeElement:A.aF,SVGFEConvolveMatrixElement:A.aF,SVGFEDiffuseLightingElement:A.aF,SVGFEDisplacementMapElement:A.aF,SVGFEDistantLightElement:A.aF,SVGFEFloodElement:A.aF,SVGFEFuncAElement:A.aF,SVGFEFuncBElement:A.aF,SVGFEFuncGElement:A.aF,SVGFEFuncRElement:A.aF,SVGFEGaussianBlurElement:A.aF,SVGFEImageElement:A.aF,SVGFEMergeElement:A.aF,SVGFEMergeNodeElement:A.aF,SVGFEMorphologyElement:A.aF,SVGFEOffsetElement:A.aF,SVGFEPointLightElement:A.aF,SVGFESpecularLightingElement:A.aF,SVGFESpotLightElement:A.aF,SVGFETileElement:A.aF,SVGFETurbulenceElement:A.aF,SVGFilterElement:A.aF,SVGForeignObjectElement:A.aF,SVGGElement:A.aF,SVGGeometryElement:A.aF,SVGGraphicsElement:A.aF,SVGImageElement:A.aF,SVGLineElement:A.aF,SVGLinearGradientElement:A.aF,SVGMarkerElement:A.aF,SVGMaskElement:A.aF,SVGMetadataElement:A.aF,SVGPathElement:A.aF,SVGPatternElement:A.aF,SVGPolygonElement:A.aF,SVGPolylineElement:A.aF,SVGRadialGradientElement:A.aF,SVGRectElement:A.aF,SVGScriptElement:A.aF,SVGSetElement:A.aF,SVGStopElement:A.aF,SVGStyleElement:A.aF,SVGElement:A.aF,SVGSVGElement:A.aF,SVGSwitchElement:A.aF,SVGSymbolElement:A.aF,SVGTSpanElement:A.aF,SVGTextContentElement:A.aF,SVGTextElement:A.aF,SVGTextPathElement:A.aF,SVGTextPositioningElement:A.aF,SVGTitleElement:A.aF,SVGUseElement:A.aF,SVGViewElement:A.aF,SVGGradientElement:A.aF,SVGComponentTransferFunctionElement:A.aF,SVGFEDropShadowElement:A.aF,SVGMPathElement:A.aF,Element:A.aF,AbsoluteOrientationSensor:A.a4,Accelerometer:A.a4,AccessibleNode:A.a4,AmbientLightSensor:A.a4,Animation:A.a4,ApplicationCache:A.a4,DOMApplicationCache:A.a4,OfflineResourceList:A.a4,BackgroundFetchRegistration:A.a4,BatteryManager:A.a4,BroadcastChannel:A.a4,CanvasCaptureMediaStreamTrack:A.a4,DedicatedWorkerGlobalScope:A.a4,EventSource:A.a4,FileReader:A.a4,FontFaceSet:A.a4,Gyroscope:A.a4,XMLHttpRequest:A.a4,XMLHttpRequestEventTarget:A.a4,XMLHttpRequestUpload:A.a4,LinearAccelerationSensor:A.a4,Magnetometer:A.a4,MediaDevices:A.a4,MediaKeySession:A.a4,MediaQueryList:A.a4,MediaRecorder:A.a4,MediaSource:A.a4,MediaStream:A.a4,MediaStreamTrack:A.a4,MessagePort:A.a4,MIDIAccess:A.a4,MIDIInput:A.a4,MIDIOutput:A.a4,MIDIPort:A.a4,NetworkInformation:A.a4,Notification:A.a4,OffscreenCanvas:A.a4,OrientationSensor:A.a4,PaymentRequest:A.a4,Performance:A.a4,PermissionStatus:A.a4,PresentationAvailability:A.a4,PresentationConnection:A.a4,PresentationConnectionList:A.a4,PresentationRequest:A.a4,RelativeOrientationSensor:A.a4,RemotePlayback:A.a4,RTCDataChannel:A.a4,DataChannel:A.a4,RTCDTMFSender:A.a4,RTCPeerConnection:A.a4,webkitRTCPeerConnection:A.a4,mozRTCPeerConnection:A.a4,ScreenOrientation:A.a4,Sensor:A.a4,ServiceWorker:A.a4,ServiceWorkerContainer:A.a4,ServiceWorkerGlobalScope:A.a4,ServiceWorkerRegistration:A.a4,SharedWorker:A.a4,SharedWorkerGlobalScope:A.a4,SpeechRecognition:A.a4,webkitSpeechRecognition:A.a4,SpeechSynthesis:A.a4,SpeechSynthesisUtterance:A.a4,VR:A.a4,VRDevice:A.a4,VRDisplay:A.a4,VRSession:A.a4,VisualViewport:A.a4,WebSocket:A.a4,Window:A.a4,DOMWindow:A.a4,Worker:A.a4,WorkerGlobalScope:A.a4,WorkerPerformance:A.a4,BluetoothDevice:A.a4,BluetoothRemoteGATTCharacteristic:A.a4,Clipboard:A.a4,MojoInterfaceInterceptor:A.a4,USB:A.a4,IDBDatabase:A.a4,IDBOpenDBRequest:A.a4,IDBVersionChangeRequest:A.a4,IDBRequest:A.a4,IDBTransaction:A.a4,AnalyserNode:A.a4,RealtimeAnalyserNode:A.a4,AudioBufferSourceNode:A.a4,AudioDestinationNode:A.a4,AudioNode:A.a4,AudioScheduledSourceNode:A.a4,AudioWorkletNode:A.a4,BiquadFilterNode:A.a4,ChannelMergerNode:A.a4,AudioChannelMerger:A.a4,ChannelSplitterNode:A.a4,AudioChannelSplitter:A.a4,ConstantSourceNode:A.a4,ConvolverNode:A.a4,DelayNode:A.a4,DynamicsCompressorNode:A.a4,GainNode:A.a4,AudioGainNode:A.a4,IIRFilterNode:A.a4,MediaElementAudioSourceNode:A.a4,MediaStreamAudioDestinationNode:A.a4,MediaStreamAudioSourceNode:A.a4,OscillatorNode:A.a4,Oscillator:A.a4,PannerNode:A.a4,AudioPannerNode:A.a4,webkitAudioPannerNode:A.a4,ScriptProcessorNode:A.a4,JavaScriptAudioNode:A.a4,StereoPannerNode:A.a4,WaveShaperNode:A.a4,EventTarget:A.a4,File:A.h6,FileList:A.MN,FileWriter:A.MQ,HTMLFormElement:A.N1,Gamepad:A.h8,History:A.Nh,HTMLCollection:A.qn,HTMLFormControlsCollection:A.qn,HTMLOptionsCollection:A.qn,Location:A.Of,MediaList:A.Oo,MIDIInputMap:A.Os,MIDIOutputMap:A.Ot,MimeType:A.hg,MimeTypeArray:A.Ou,Document:A.bA,DocumentFragment:A.bA,HTMLDocument:A.bA,ShadowRoot:A.bA,XMLDocument:A.bA,Attr:A.bA,DocumentType:A.bA,Node:A.bA,NodeList:A.C1,RadioNodeList:A.C1,Plugin:A.hh,PluginArray:A.Pg,RTCStatsReport:A.Qj,HTMLSelectElement:A.QH,SourceBuffer:A.hm,SourceBufferList:A.Rp,SpeechGrammar:A.hn,SpeechGrammarList:A.Rw,SpeechRecognitionResult:A.ho,Storage:A.RD,CSSStyleSheet:A.fu,StyleSheet:A.fu,TextTrack:A.hs,TextTrackCue:A.fx,VTTCue:A.fx,TextTrackCueList:A.S5,TextTrackList:A.S6,TimeRanges:A.S8,Touch:A.ht,TouchList:A.Sb,TrackDefaultList:A.Sc,URL:A.Sp,VideoTrackList:A.Su,CSSRuleList:A.U6,ClientRect:A.FQ,DOMRect:A.FQ,GamepadList:A.VC,NamedNodeMap:A.GO,MozNamedAttrMap:A.GO,SpeechRecognitionResultList:A.ZO,StyleSheetList:A.ZZ,SVGLength:A.hT,SVGLengthList:A.O5,SVGNumber:A.hY,SVGNumberList:A.OM,SVGPointList:A.Ph,SVGStringList:A.RH,SVGTransform:A.i4,SVGTransformList:A.Sd,AudioBuffer:A.KK,AudioParamMap:A.KL,AudioTrackList:A.KM,AudioContext:A.mY,webkitAudioContext:A.mY,BaseAudioContext:A.mY,OfflineAudioContext:A.OP}) +hunkHelpers.setOrUpdateLeafTags({WebGL:true,AbortPaymentEvent:true,AnimationEffectReadOnly:true,AnimationEffectTiming:true,AnimationEffectTimingReadOnly:true,AnimationEvent:true,AnimationPlaybackEvent:true,AnimationTimeline:true,AnimationWorkletGlobalScope:true,ApplicationCacheErrorEvent:true,AuthenticatorAssertionResponse:true,AuthenticatorAttestationResponse:true,AuthenticatorResponse:true,BackgroundFetchClickEvent:true,BackgroundFetchEvent:true,BackgroundFetchFailEvent:true,BackgroundFetchFetch:true,BackgroundFetchManager:true,BackgroundFetchSettledFetch:true,BackgroundFetchedEvent:true,BarProp:true,BarcodeDetector:true,BeforeInstallPromptEvent:true,BeforeUnloadEvent:true,BlobEvent:true,BluetoothRemoteGATTDescriptor:true,Body:true,BudgetState:true,CacheStorage:true,CanMakePaymentEvent:true,CanvasGradient:true,CanvasPattern:true,CanvasRenderingContext2D:true,Client:true,Clients:true,ClipboardEvent:true,CloseEvent:true,CompositionEvent:true,CookieStore:true,Coordinates:true,Credential:true,CredentialUserData:true,CredentialsContainer:true,Crypto:true,CryptoKey:true,CSS:true,CSSVariableReferenceValue:true,CustomElementRegistry:true,CustomEvent:true,DataTransfer:true,DataTransferItem:true,DeprecatedStorageInfo:true,DeprecatedStorageQuota:true,DeprecationReport:true,DetectedBarcode:true,DetectedFace:true,DetectedText:true,DeviceAcceleration:true,DeviceMotionEvent:true,DeviceOrientationEvent:true,DeviceRotationRate:true,DirectoryEntry:true,webkitFileSystemDirectoryEntry:true,FileSystemDirectoryEntry:true,DirectoryReader:true,WebKitDirectoryReader:true,webkitFileSystemDirectoryReader:true,FileSystemDirectoryReader:true,DocumentOrShadowRoot:true,DocumentTimeline:true,DOMError:true,DOMImplementation:true,Iterator:true,DOMMatrix:true,DOMMatrixReadOnly:true,DOMParser:true,DOMPoint:true,DOMPointReadOnly:true,DOMQuad:true,DOMStringMap:true,Entry:true,webkitFileSystemEntry:true,FileSystemEntry:true,ErrorEvent:true,Event:true,InputEvent:true,SubmitEvent:true,ExtendableEvent:true,ExtendableMessageEvent:true,External:true,FaceDetector:true,FederatedCredential:true,FetchEvent:true,FileEntry:true,webkitFileSystemFileEntry:true,FileSystemFileEntry:true,DOMFileSystem:true,WebKitFileSystem:true,webkitFileSystem:true,FileSystem:true,FocusEvent:true,FontFace:true,FontFaceSetLoadEvent:true,FontFaceSource:true,ForeignFetchEvent:true,FormData:true,GamepadButton:true,GamepadEvent:true,GamepadPose:true,Geolocation:true,Position:true,GeolocationPosition:true,HashChangeEvent:true,Headers:true,HTMLHyperlinkElementUtils:true,IdleDeadline:true,ImageBitmap:true,ImageBitmapRenderingContext:true,ImageCapture:true,ImageData:true,InputDeviceCapabilities:true,InstallEvent:true,IntersectionObserver:true,IntersectionObserverEntry:true,InterventionReport:true,KeyboardEvent:true,KeyframeEffect:true,KeyframeEffectReadOnly:true,MediaCapabilities:true,MediaCapabilitiesInfo:true,MediaDeviceInfo:true,MediaEncryptedEvent:true,MediaError:true,MediaKeyMessageEvent:true,MediaKeyStatusMap:true,MediaKeySystemAccess:true,MediaKeys:true,MediaKeysPolicy:true,MediaMetadata:true,MediaQueryListEvent:true,MediaSession:true,MediaSettingsRange:true,MediaStreamEvent:true,MediaStreamTrackEvent:true,MemoryInfo:true,MessageChannel:true,MessageEvent:true,Metadata:true,MIDIConnectionEvent:true,MIDIMessageEvent:true,MouseEvent:true,DragEvent:true,MutationEvent:true,MutationObserver:true,WebKitMutationObserver:true,MutationRecord:true,NavigationPreloadManager:true,Navigator:true,NavigatorAutomationInformation:true,NavigatorConcurrentHardware:true,NavigatorCookies:true,NavigatorUserMediaError:true,NodeFilter:true,NodeIterator:true,NonDocumentTypeChildNode:true,NonElementParentNode:true,NoncedElement:true,NotificationEvent:true,OffscreenCanvasRenderingContext2D:true,OverconstrainedError:true,PageTransitionEvent:true,PaintRenderingContext2D:true,PaintSize:true,PaintWorkletGlobalScope:true,PasswordCredential:true,Path2D:true,PaymentAddress:true,PaymentInstruments:true,PaymentManager:true,PaymentRequestEvent:true,PaymentRequestUpdateEvent:true,PaymentResponse:true,PerformanceEntry:true,PerformanceLongTaskTiming:true,PerformanceMark:true,PerformanceMeasure:true,PerformanceNavigation:true,PerformanceNavigationTiming:true,PerformanceObserver:true,PerformanceObserverEntryList:true,PerformancePaintTiming:true,PerformanceResourceTiming:true,PerformanceServerTiming:true,PerformanceTiming:true,Permissions:true,PhotoCapabilities:true,PointerEvent:true,PopStateEvent:true,PositionError:true,GeolocationPositionError:true,Presentation:true,PresentationConnectionAvailableEvent:true,PresentationConnectionCloseEvent:true,PresentationReceiver:true,ProgressEvent:true,PromiseRejectionEvent:true,PublicKeyCredential:true,PushEvent:true,PushManager:true,PushMessageData:true,PushSubscription:true,PushSubscriptionOptions:true,Range:true,RelatedApplication:true,ReportBody:true,ReportingObserver:true,ResizeObserver:true,ResizeObserverEntry:true,RTCCertificate:true,RTCDataChannelEvent:true,RTCDTMFToneChangeEvent:true,RTCIceCandidate:true,mozRTCIceCandidate:true,RTCLegacyStatsReport:true,RTCPeerConnectionIceEvent:true,RTCRtpContributingSource:true,RTCRtpReceiver:true,RTCRtpSender:true,RTCSessionDescription:true,mozRTCSessionDescription:true,RTCStatsResponse:true,RTCTrackEvent:true,Screen:true,ScrollState:true,ScrollTimeline:true,SecurityPolicyViolationEvent:true,Selection:true,SensorErrorEvent:true,SpeechRecognitionAlternative:true,SpeechRecognitionError:true,SpeechRecognitionEvent:true,SpeechSynthesisEvent:true,SpeechSynthesisVoice:true,StaticRange:true,StorageEvent:true,StorageManager:true,StyleMedia:true,StylePropertyMap:true,StylePropertyMapReadonly:true,SyncEvent:true,SyncManager:true,TaskAttributionTiming:true,TextDetector:true,TextEvent:true,TextMetrics:true,TouchEvent:true,TrackDefault:true,TrackEvent:true,TransitionEvent:true,WebKitTransitionEvent:true,TreeWalker:true,TrustedHTML:true,TrustedScriptURL:true,TrustedURL:true,UIEvent:true,UnderlyingSourceBase:true,URLSearchParams:true,VRCoordinateSystem:true,VRDeviceEvent:true,VRDisplayCapabilities:true,VRDisplayEvent:true,VREyeParameters:true,VRFrameData:true,VRFrameOfReference:true,VRPose:true,VRSessionEvent:true,VRStageBounds:true,VRStageBoundsPoint:true,VRStageParameters:true,ValidityState:true,VideoPlaybackQuality:true,VideoTrack:true,VTTRegion:true,WheelEvent:true,WindowClient:true,WorkletAnimation:true,WorkletGlobalScope:true,XPathEvaluator:true,XPathExpression:true,XPathNSResolver:true,XPathResult:true,XMLSerializer:true,XSLTProcessor:true,Bluetooth:true,BluetoothCharacteristicProperties:true,BluetoothRemoteGATTServer:true,BluetoothRemoteGATTService:true,BluetoothUUID:true,BudgetService:true,Cache:true,DOMFileSystemSync:true,DirectoryEntrySync:true,DirectoryReaderSync:true,EntrySync:true,FileEntrySync:true,FileReaderSync:true,FileWriterSync:true,HTMLAllCollection:true,Mojo:true,MojoHandle:true,MojoInterfaceRequestEvent:true,MojoWatcher:true,NFC:true,PagePopupController:true,Report:true,Request:true,ResourceProgressEvent:true,Response:true,SubtleCrypto:true,USBAlternateInterface:true,USBConfiguration:true,USBConnectionEvent:true,USBDevice:true,USBEndpoint:true,USBInTransferResult:true,USBInterface:true,USBIsochronousInTransferPacket:true,USBIsochronousInTransferResult:true,USBIsochronousOutTransferPacket:true,USBIsochronousOutTransferResult:true,USBOutTransferResult:true,WorkerLocation:true,WorkerNavigator:true,Worklet:true,IDBCursor:true,IDBCursorWithValue:true,IDBFactory:true,IDBIndex:true,IDBKeyRange:true,IDBObjectStore:true,IDBObservation:true,IDBObserver:true,IDBObserverChanges:true,IDBVersionChangeEvent:true,SVGAngle:true,SVGAnimatedAngle:true,SVGAnimatedBoolean:true,SVGAnimatedEnumeration:true,SVGAnimatedInteger:true,SVGAnimatedLength:true,SVGAnimatedLengthList:true,SVGAnimatedNumber:true,SVGAnimatedNumberList:true,SVGAnimatedPreserveAspectRatio:true,SVGAnimatedRect:true,SVGAnimatedString:true,SVGAnimatedTransformList:true,SVGMatrix:true,SVGPoint:true,SVGPreserveAspectRatio:true,SVGRect:true,SVGUnitTypes:true,AudioListener:true,AudioParam:true,AudioProcessingEvent:true,AudioTrack:true,AudioWorkletGlobalScope:true,AudioWorkletProcessor:true,OfflineAudioCompletionEvent:true,PeriodicWave:true,WebGLActiveInfo:true,ANGLEInstancedArrays:true,ANGLE_instanced_arrays:true,WebGLBuffer:true,WebGLCanvas:true,WebGLColorBufferFloat:true,WebGLCompressedTextureASTC:true,WebGLCompressedTextureATC:true,WEBGL_compressed_texture_atc:true,WebGLCompressedTextureETC1:true,WEBGL_compressed_texture_etc1:true,WebGLCompressedTextureETC:true,WebGLCompressedTexturePVRTC:true,WEBGL_compressed_texture_pvrtc:true,WebGLCompressedTextureS3TC:true,WEBGL_compressed_texture_s3tc:true,WebGLCompressedTextureS3TCsRGB:true,WebGLContextEvent:true,WebGLDebugRendererInfo:true,WEBGL_debug_renderer_info:true,WebGLDebugShaders:true,WEBGL_debug_shaders:true,WebGLDepthTexture:true,WEBGL_depth_texture:true,WebGLDrawBuffers:true,WEBGL_draw_buffers:true,EXTsRGB:true,EXT_sRGB:true,EXTBlendMinMax:true,EXT_blend_minmax:true,EXTColorBufferFloat:true,EXTColorBufferHalfFloat:true,EXTDisjointTimerQuery:true,EXTDisjointTimerQueryWebGL2:true,EXTFragDepth:true,EXT_frag_depth:true,EXTShaderTextureLOD:true,EXT_shader_texture_lod:true,EXTTextureFilterAnisotropic:true,EXT_texture_filter_anisotropic:true,WebGLFramebuffer:true,WebGLGetBufferSubDataAsync:true,WebGLLoseContext:true,WebGLExtensionLoseContext:true,WEBGL_lose_context:true,OESElementIndexUint:true,OES_element_index_uint:true,OESStandardDerivatives:true,OES_standard_derivatives:true,OESTextureFloat:true,OES_texture_float:true,OESTextureFloatLinear:true,OES_texture_float_linear:true,OESTextureHalfFloat:true,OES_texture_half_float:true,OESTextureHalfFloatLinear:true,OES_texture_half_float_linear:true,OESVertexArrayObject:true,OES_vertex_array_object:true,WebGLProgram:true,WebGLQuery:true,WebGLRenderbuffer:true,WebGLRenderingContext:true,WebGL2RenderingContext:true,WebGLSampler:true,WebGLShader:true,WebGLShaderPrecisionFormat:true,WebGLSync:true,WebGLTexture:true,WebGLTimerQueryEXT:true,WebGLTransformFeedback:true,WebGLUniformLocation:true,WebGLVertexArrayObject:true,WebGLVertexArrayObjectOES:true,WebGL2RenderingContextBase:true,SharedArrayBuffer:true,ArrayBuffer:true,ArrayBufferView:false,DataView:true,Float32Array:true,Float64Array:true,Int16Array:true,Int32Array:true,Int8Array:true,Uint16Array:true,Uint32Array:true,Uint8ClampedArray:true,CanvasPixelArray:true,Uint8Array:false,HTMLAudioElement:true,HTMLBRElement:true,HTMLBaseElement:true,HTMLBodyElement:true,HTMLButtonElement:true,HTMLCanvasElement:true,HTMLContentElement:true,HTMLDListElement:true,HTMLDataElement:true,HTMLDataListElement:true,HTMLDetailsElement:true,HTMLDialogElement:true,HTMLDivElement:true,HTMLEmbedElement:true,HTMLFieldSetElement:true,HTMLHRElement:true,HTMLHeadElement:true,HTMLHeadingElement:true,HTMLHtmlElement:true,HTMLIFrameElement:true,HTMLImageElement:true,HTMLInputElement:true,HTMLLIElement:true,HTMLLabelElement:true,HTMLLegendElement:true,HTMLLinkElement:true,HTMLMapElement:true,HTMLMediaElement:true,HTMLMenuElement:true,HTMLMetaElement:true,HTMLMeterElement:true,HTMLModElement:true,HTMLOListElement:true,HTMLObjectElement:true,HTMLOptGroupElement:true,HTMLOptionElement:true,HTMLOutputElement:true,HTMLParagraphElement:true,HTMLParamElement:true,HTMLPictureElement:true,HTMLPreElement:true,HTMLProgressElement:true,HTMLQuoteElement:true,HTMLScriptElement:true,HTMLShadowElement:true,HTMLSlotElement:true,HTMLSourceElement:true,HTMLSpanElement:true,HTMLStyleElement:true,HTMLTableCaptionElement:true,HTMLTableCellElement:true,HTMLTableDataCellElement:true,HTMLTableHeaderCellElement:true,HTMLTableColElement:true,HTMLTableElement:true,HTMLTableRowElement:true,HTMLTableSectionElement:true,HTMLTemplateElement:true,HTMLTextAreaElement:true,HTMLTimeElement:true,HTMLTitleElement:true,HTMLTrackElement:true,HTMLUListElement:true,HTMLUnknownElement:true,HTMLVideoElement:true,HTMLDirectoryElement:true,HTMLFontElement:true,HTMLFrameElement:true,HTMLFrameSetElement:true,HTMLMarqueeElement:true,HTMLElement:false,AccessibleNodeList:true,HTMLAnchorElement:true,HTMLAreaElement:true,Blob:false,CDATASection:true,CharacterData:true,Comment:true,ProcessingInstruction:true,Text:true,CSSPerspective:true,CSSCharsetRule:true,CSSConditionRule:true,CSSFontFaceRule:true,CSSGroupingRule:true,CSSImportRule:true,CSSKeyframeRule:true,MozCSSKeyframeRule:true,WebKitCSSKeyframeRule:true,CSSKeyframesRule:true,MozCSSKeyframesRule:true,WebKitCSSKeyframesRule:true,CSSMediaRule:true,CSSNamespaceRule:true,CSSPageRule:true,CSSRule:true,CSSStyleRule:true,CSSSupportsRule:true,CSSViewportRule:true,CSSStyleDeclaration:true,MSStyleCSSProperties:true,CSS2Properties:true,CSSImageValue:true,CSSKeywordValue:true,CSSNumericValue:true,CSSPositionValue:true,CSSResourceValue:true,CSSUnitValue:true,CSSURLImageValue:true,CSSStyleValue:false,CSSMatrixComponent:true,CSSRotation:true,CSSScale:true,CSSSkew:true,CSSTranslation:true,CSSTransformComponent:false,CSSTransformValue:true,CSSUnparsedValue:true,DataTransferItemList:true,DOMException:true,ClientRectList:true,DOMRectList:true,DOMRectReadOnly:false,DOMStringList:true,DOMTokenList:true,MathMLElement:true,SVGAElement:true,SVGAnimateElement:true,SVGAnimateMotionElement:true,SVGAnimateTransformElement:true,SVGAnimationElement:true,SVGCircleElement:true,SVGClipPathElement:true,SVGDefsElement:true,SVGDescElement:true,SVGDiscardElement:true,SVGEllipseElement:true,SVGFEBlendElement:true,SVGFEColorMatrixElement:true,SVGFEComponentTransferElement:true,SVGFECompositeElement:true,SVGFEConvolveMatrixElement:true,SVGFEDiffuseLightingElement:true,SVGFEDisplacementMapElement:true,SVGFEDistantLightElement:true,SVGFEFloodElement:true,SVGFEFuncAElement:true,SVGFEFuncBElement:true,SVGFEFuncGElement:true,SVGFEFuncRElement:true,SVGFEGaussianBlurElement:true,SVGFEImageElement:true,SVGFEMergeElement:true,SVGFEMergeNodeElement:true,SVGFEMorphologyElement:true,SVGFEOffsetElement:true,SVGFEPointLightElement:true,SVGFESpecularLightingElement:true,SVGFESpotLightElement:true,SVGFETileElement:true,SVGFETurbulenceElement:true,SVGFilterElement:true,SVGForeignObjectElement:true,SVGGElement:true,SVGGeometryElement:true,SVGGraphicsElement:true,SVGImageElement:true,SVGLineElement:true,SVGLinearGradientElement:true,SVGMarkerElement:true,SVGMaskElement:true,SVGMetadataElement:true,SVGPathElement:true,SVGPatternElement:true,SVGPolygonElement:true,SVGPolylineElement:true,SVGRadialGradientElement:true,SVGRectElement:true,SVGScriptElement:true,SVGSetElement:true,SVGStopElement:true,SVGStyleElement:true,SVGElement:true,SVGSVGElement:true,SVGSwitchElement:true,SVGSymbolElement:true,SVGTSpanElement:true,SVGTextContentElement:true,SVGTextElement:true,SVGTextPathElement:true,SVGTextPositioningElement:true,SVGTitleElement:true,SVGUseElement:true,SVGViewElement:true,SVGGradientElement:true,SVGComponentTransferFunctionElement:true,SVGFEDropShadowElement:true,SVGMPathElement:true,Element:false,AbsoluteOrientationSensor:true,Accelerometer:true,AccessibleNode:true,AmbientLightSensor:true,Animation:true,ApplicationCache:true,DOMApplicationCache:true,OfflineResourceList:true,BackgroundFetchRegistration:true,BatteryManager:true,BroadcastChannel:true,CanvasCaptureMediaStreamTrack:true,DedicatedWorkerGlobalScope:true,EventSource:true,FileReader:true,FontFaceSet:true,Gyroscope:true,XMLHttpRequest:true,XMLHttpRequestEventTarget:true,XMLHttpRequestUpload:true,LinearAccelerationSensor:true,Magnetometer:true,MediaDevices:true,MediaKeySession:true,MediaQueryList:true,MediaRecorder:true,MediaSource:true,MediaStream:true,MediaStreamTrack:true,MessagePort:true,MIDIAccess:true,MIDIInput:true,MIDIOutput:true,MIDIPort:true,NetworkInformation:true,Notification:true,OffscreenCanvas:true,OrientationSensor:true,PaymentRequest:true,Performance:true,PermissionStatus:true,PresentationAvailability:true,PresentationConnection:true,PresentationConnectionList:true,PresentationRequest:true,RelativeOrientationSensor:true,RemotePlayback:true,RTCDataChannel:true,DataChannel:true,RTCDTMFSender:true,RTCPeerConnection:true,webkitRTCPeerConnection:true,mozRTCPeerConnection:true,ScreenOrientation:true,Sensor:true,ServiceWorker:true,ServiceWorkerContainer:true,ServiceWorkerGlobalScope:true,ServiceWorkerRegistration:true,SharedWorker:true,SharedWorkerGlobalScope:true,SpeechRecognition:true,webkitSpeechRecognition:true,SpeechSynthesis:true,SpeechSynthesisUtterance:true,VR:true,VRDevice:true,VRDisplay:true,VRSession:true,VisualViewport:true,WebSocket:true,Window:true,DOMWindow:true,Worker:true,WorkerGlobalScope:true,WorkerPerformance:true,BluetoothDevice:true,BluetoothRemoteGATTCharacteristic:true,Clipboard:true,MojoInterfaceInterceptor:true,USB:true,IDBDatabase:true,IDBOpenDBRequest:true,IDBVersionChangeRequest:true,IDBRequest:true,IDBTransaction:true,AnalyserNode:true,RealtimeAnalyserNode:true,AudioBufferSourceNode:true,AudioDestinationNode:true,AudioNode:true,AudioScheduledSourceNode:true,AudioWorkletNode:true,BiquadFilterNode:true,ChannelMergerNode:true,AudioChannelMerger:true,ChannelSplitterNode:true,AudioChannelSplitter:true,ConstantSourceNode:true,ConvolverNode:true,DelayNode:true,DynamicsCompressorNode:true,GainNode:true,AudioGainNode:true,IIRFilterNode:true,MediaElementAudioSourceNode:true,MediaStreamAudioDestinationNode:true,MediaStreamAudioSourceNode:true,OscillatorNode:true,Oscillator:true,PannerNode:true,AudioPannerNode:true,webkitAudioPannerNode:true,ScriptProcessorNode:true,JavaScriptAudioNode:true,StereoPannerNode:true,WaveShaperNode:true,EventTarget:false,File:true,FileList:true,FileWriter:true,HTMLFormElement:true,Gamepad:true,History:true,HTMLCollection:true,HTMLFormControlsCollection:true,HTMLOptionsCollection:true,Location:true,MediaList:true,MIDIInputMap:true,MIDIOutputMap:true,MimeType:true,MimeTypeArray:true,Document:true,DocumentFragment:true,HTMLDocument:true,ShadowRoot:true,XMLDocument:true,Attr:true,DocumentType:true,Node:false,NodeList:true,RadioNodeList:true,Plugin:true,PluginArray:true,RTCStatsReport:true,HTMLSelectElement:true,SourceBuffer:true,SourceBufferList:true,SpeechGrammar:true,SpeechGrammarList:true,SpeechRecognitionResult:true,Storage:true,CSSStyleSheet:true,StyleSheet:true,TextTrack:true,TextTrackCue:true,VTTCue:true,TextTrackCueList:true,TextTrackList:true,TimeRanges:true,Touch:true,TouchList:true,TrackDefaultList:true,URL:true,VideoTrackList:true,CSSRuleList:true,ClientRect:true,DOMRect:true,GamepadList:true,NamedNodeMap:true,MozNamedAttrMap:true,SpeechRecognitionResultList:true,StyleSheetList:true,SVGLength:true,SVGLengthList:true,SVGNumber:true,SVGNumberList:true,SVGPointList:true,SVGStringList:true,SVGTransform:true,SVGTransformList:true,AudioBuffer:true,AudioParamMap:true,AudioTrackList:true,AudioContext:true,webkitAudioContext:true,BaseAudioContext:false,OfflineAudioContext:true}) +A.vf.$nativeSuperclassTag="ArrayBufferView" +A.GP.$nativeSuperclassTag="ArrayBufferView" +A.GQ.$nativeSuperclassTag="ArrayBufferView" +A.BU.$nativeSuperclassTag="ArrayBufferView" +A.GR.$nativeSuperclassTag="ArrayBufferView" +A.GS.$nativeSuperclassTag="ArrayBufferView" +A.hX.$nativeSuperclassTag="ArrayBufferView" +A.Ih.$nativeSuperclassTag="EventTarget" +A.Ii.$nativeSuperclassTag="EventTarget" +A.IG.$nativeSuperclassTag="EventTarget" +A.IH.$nativeSuperclassTag="EventTarget"})() +Function.prototype.$0=function(){return this()} +Function.prototype.$1=function(a){return this(a)} +Function.prototype.$2=function(a,b){return this(a,b)} +Function.prototype.$3=function(a,b,c){return this(a,b,c)} +Function.prototype.$4=function(a,b,c,d){return this(a,b,c,d)} +Function.prototype.$1$1=function(a){return this(a)} +Function.prototype.$1$0=function(){return this()} +Function.prototype.$2$1=function(a){return this(a)} +Function.prototype.$1$2=function(a,b){return this(a,b)} +Function.prototype.$2$0=function(){return this()} +Function.prototype.$5=function(a,b,c,d,e){return this(a,b,c,d,e)} +Function.prototype.$1$5=function(a,b,c,d,e){return this(a,b,c,d,e)} +Function.prototype.$6=function(a,b,c,d,e,f){return this(a,b,c,d,e,f)} +convertAllToFastObject(w) +convertToFastObject($);(function(a){if(typeof document==="undefined"){a(null) +return}if(typeof document.currentScript!="undefined"){a(document.currentScript) +return}var s=document.scripts +function onLoad(b){for(var q=0;q + + + + + + + + + + + + + + + + diff --git a/ios/.DS_Store b/ios/.DS_Store new file mode 100644 index 0000000..095c723 Binary files /dev/null and b/ios/.DS_Store differ diff --git a/ios/Flutter/Generated.xcconfig b/ios/Flutter/Generated.xcconfig new file mode 100644 index 0000000..f8bd6fb --- /dev/null +++ b/ios/Flutter/Generated.xcconfig @@ -0,0 +1,14 @@ +// This is a generated file; do not edit or check into version control. +FLUTTER_ROOT=/Users/tim/develop/flutter +FLUTTER_APPLICATION_PATH=/Users/tim/Documents/HyggeCraftery/APP +COCOAPODS_PARALLEL_CODE_SIGN=true +FLUTTER_TARGET=lib/main.dart +FLUTTER_BUILD_DIR=build +FLUTTER_BUILD_NAME=1.0.0 +FLUTTER_BUILD_NUMBER=1 +EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386 +EXCLUDED_ARCHS[sdk=iphoneos*]=armv7 +DART_OBFUSCATION=false +TRACK_WIDGET_CREATION=true +TREE_SHAKE_ICONS=false +PACKAGE_CONFIG=.dart_tool/package_config.json diff --git a/ios/Flutter/ephemeral/flutter_lldb_helper.py b/ios/Flutter/ephemeral/flutter_lldb_helper.py new file mode 100644 index 0000000..a88caf9 --- /dev/null +++ b/ios/Flutter/ephemeral/flutter_lldb_helper.py @@ -0,0 +1,32 @@ +# +# Generated file, do not edit. +# + +import lldb + +def handle_new_rx_page(frame: lldb.SBFrame, bp_loc, extra_args, intern_dict): + """Intercept NOTIFY_DEBUGGER_ABOUT_RX_PAGES and touch the pages.""" + base = frame.register["x0"].GetValueAsAddress() + page_len = frame.register["x1"].GetValueAsUnsigned() + + # Note: NOTIFY_DEBUGGER_ABOUT_RX_PAGES will check contents of the + # first page to see if handled it correctly. This makes diagnosing + # misconfiguration (e.g. missing breakpoint) easier. + data = bytearray(page_len) + data[0:8] = b'IHELPED!' + + error = lldb.SBError() + frame.GetThread().GetProcess().WriteMemory(base, data, error) + if not error.Success(): + print(f'Failed to write into {base}[+{page_len}]', error) + return + +def __lldb_init_module(debugger: lldb.SBDebugger, _): + target = debugger.GetDummyTarget() + # Caveat: must use BreakpointCreateByRegEx here and not + # BreakpointCreateByName. For some reasons callback function does not + # get carried over from dummy target for the later. + bp = target.BreakpointCreateByRegex("^NOTIFY_DEBUGGER_ABOUT_RX_PAGES$") + bp.SetScriptCallbackFunction('{}.handle_new_rx_page'.format(__name__)) + bp.SetAutoContinue(True) + print("-- LLDB integration loaded --") diff --git a/ios/Flutter/ephemeral/flutter_lldbinit b/ios/Flutter/ephemeral/flutter_lldbinit new file mode 100644 index 0000000..e3ba6fb --- /dev/null +++ b/ios/Flutter/ephemeral/flutter_lldbinit @@ -0,0 +1,5 @@ +# +# Generated file, do not edit. +# + +command script import --relative-to-command-file flutter_lldb_helper.py diff --git a/ios/Flutter/flutter_export_environment.sh b/ios/Flutter/flutter_export_environment.sh new file mode 100755 index 0000000..b508091 --- /dev/null +++ b/ios/Flutter/flutter_export_environment.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# This is a generated file; do not edit or check into version control. +export "FLUTTER_ROOT=/Users/tim/develop/flutter" +export "FLUTTER_APPLICATION_PATH=/Users/tim/Documents/HyggeCraftery/APP" +export "COCOAPODS_PARALLEL_CODE_SIGN=true" +export "FLUTTER_TARGET=lib/main.dart" +export "FLUTTER_BUILD_DIR=build" +export "FLUTTER_BUILD_NAME=1.0.0" +export "FLUTTER_BUILD_NUMBER=1" +export "DART_OBFUSCATION=false" +export "TRACK_WIDGET_CREATION=true" +export "TREE_SHAKE_ICONS=false" +export "PACKAGE_CONFIG=.dart_tool/package_config.json" diff --git a/ios/Runner/GeneratedPluginRegistrant.h b/ios/Runner/GeneratedPluginRegistrant.h new file mode 100644 index 0000000..7a89092 --- /dev/null +++ b/ios/Runner/GeneratedPluginRegistrant.h @@ -0,0 +1,19 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GeneratedPluginRegistrant_h +#define GeneratedPluginRegistrant_h + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface GeneratedPluginRegistrant : NSObject ++ (void)registerWithRegistry:(NSObject*)registry; +@end + +NS_ASSUME_NONNULL_END +#endif /* GeneratedPluginRegistrant_h */ diff --git a/ios/Runner/GeneratedPluginRegistrant.m b/ios/Runner/GeneratedPluginRegistrant.m new file mode 100644 index 0000000..dfdb594 --- /dev/null +++ b/ios/Runner/GeneratedPluginRegistrant.m @@ -0,0 +1,49 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#import "GeneratedPluginRegistrant.h" + +#if __has_include() +#import +#else +@import connectivity_plus; +#endif + +#if __has_include() +#import +#else +@import path_provider_foundation; +#endif + +#if __has_include() +#import +#else +@import shared_preferences_foundation; +#endif + +#if __has_include() +#import +#else +@import sqflite_darwin; +#endif + +#if __has_include() +#import +#else +@import webview_flutter_wkwebview; +#endif + +@implementation GeneratedPluginRegistrant + ++ (void)registerWithRegistry:(NSObject*)registry { + [ConnectivityPlusPlugin registerWithRegistrar:[registry registrarForPlugin:@"ConnectivityPlusPlugin"]]; + [PathProviderPlugin registerWithRegistrar:[registry registrarForPlugin:@"PathProviderPlugin"]]; + [SharedPreferencesPlugin registerWithRegistrar:[registry registrarForPlugin:@"SharedPreferencesPlugin"]]; + [SqflitePlugin registerWithRegistrar:[registry registrarForPlugin:@"SqflitePlugin"]]; + [WebViewFlutterPlugin registerWithRegistrar:[registry registrarForPlugin:@"WebViewFlutterPlugin"]]; +} + +@end diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..2e14478 --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,55 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + HyggeCraftery + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + hyggecraftery + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + + + diff --git a/lib/.DS_Store b/lib/.DS_Store new file mode 100644 index 0000000..b75e361 Binary files /dev/null and b/lib/.DS_Store differ diff --git a/lib/env.dart b/lib/env.dart new file mode 100644 index 0000000..931212c --- /dev/null +++ b/lib/env.dart @@ -0,0 +1,7 @@ +// Environment Variables +// Diese Datei wird für Umgebungsvariablen verwendet (falls benötigt) + +// Du kannst hier Umgebungsvariablen definieren, falls du sie später brauchst +// Beispiel: +// const String apiUrl = String.fromEnvironment('API_URL', defaultValue: 'https://hyggecraftery.com'); + diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..8b1fe87 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,51 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:hyggecraftery/providers/cart_provider.dart'; +import 'package:hyggecraftery/providers/user_provider.dart'; +import 'package:hyggecraftery/screens/main_navigation_screen.dart'; + +void main() { + runApp(const HyggeCrafteryApp()); +} + +class HyggeCrafteryApp extends StatelessWidget { + const HyggeCrafteryApp({super.key}); + + @override + Widget build(BuildContext context) { + return MultiProvider( + providers: [ + ChangeNotifierProvider(create: (_) => UserProvider()), + ChangeNotifierProvider(create: (_) => CartProvider()), + ], + child: MaterialApp( + title: 'HyggeCraftery', + debugShowCheckedModeBanner: false, + theme: ThemeData( + primarySwatch: Colors.brown, + primaryColor: const Color(0xFF8B6F47), + colorScheme: ColorScheme.fromSeed( + seedColor: const Color(0xFF8B6F47), + primary: const Color(0xFF8B6F47), + secondary: const Color(0xFFD4A574), + ), + scaffoldBackgroundColor: const Color(0xFFFAF7F2), + appBarTheme: const AppBarTheme( + backgroundColor: Color(0xFF8B6F47), + foregroundColor: Colors.white, + elevation: 0, + ), + cardTheme: CardThemeData( + elevation: 2, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + ), + useMaterial3: true, + ), + home: const MainNavigationScreen(), + ), + ); + } +} + diff --git a/lib/models/address.dart b/lib/models/address.dart new file mode 100644 index 0000000..76a869e --- /dev/null +++ b/lib/models/address.dart @@ -0,0 +1,78 @@ +class Address { + final String? firstName; + final String? lastName; + final String? company; + final String? address1; + final String? address2; + final String? city; + final String? state; + final String? postcode; + final String? country; + final String? email; + final String? phone; + + Address({ + this.firstName, + this.lastName, + this.company, + this.address1, + this.address2, + this.city, + this.state, + this.postcode, + this.country, + this.email, + this.phone, + }); + + factory Address.fromJson(Map json) { + return Address( + firstName: json['first_name'], + lastName: json['last_name'], + company: json['company'], + address1: json['address_1'] ?? json['address1'], + address2: json['address_2'] ?? json['address2'], + city: json['city'], + state: json['state'], + postcode: json['postcode'], + country: json['country'], + email: json['email'], + phone: json['phone'], + ); + } + + Map toJson() { + return { + 'first_name': firstName, + 'last_name': lastName, + 'company': company, + 'address_1': address1, + 'address_2': address2, + 'city': city, + 'state': state, + 'postcode': postcode, + 'country': country, + 'email': email, + 'phone': phone, + }; + } + + String get fullAddress { + final parts = []; + if (address1 != null && address1!.isNotEmpty) parts.add(address1!); + if (address2 != null && address2!.isNotEmpty) parts.add(address2!); + if (postcode != null && postcode!.isNotEmpty) parts.add(postcode!); + if (city != null && city!.isNotEmpty) parts.add(city!); + if (state != null && state!.isNotEmpty) parts.add(state!); + if (country != null && country!.isNotEmpty) parts.add(country!); + return parts.join(', '); + } + + bool get isEmpty { + return (firstName == null || firstName!.isEmpty) && + (lastName == null || lastName!.isEmpty) && + (address1 == null || address1!.isEmpty) && + (city == null || city!.isEmpty); + } +} + diff --git a/lib/models/category.dart b/lib/models/category.dart new file mode 100644 index 0000000..1e8e8de --- /dev/null +++ b/lib/models/category.dart @@ -0,0 +1,44 @@ +class Category { + final int id; + final String name; + final String? slug; + final String? description; + final int? parent; + final int count; + final String? imageUrl; + + Category({ + required this.id, + required this.name, + this.slug, + this.description, + this.parent, + this.count = 0, + this.imageUrl, + }); + + factory Category.fromJson(Map json) { + return Category( + id: json['id'] ?? 0, + name: json['name'] ?? '', + slug: json['slug'], + description: json['description'], + parent: json['parent'], + count: json['count'] ?? 0, + imageUrl: json['image']?['src'], + ); + } + + Map toJson() { + return { + 'id': id, + 'name': name, + 'slug': slug, + 'description': description, + 'parent': parent, + 'count': count, + 'image': imageUrl != null ? {'src': imageUrl} : null, + }; + } +} + diff --git a/lib/models/coupon.dart b/lib/models/coupon.dart new file mode 100644 index 0000000..a59c592 --- /dev/null +++ b/lib/models/coupon.dart @@ -0,0 +1,42 @@ +class Coupon { + final String code; + final String? description; + final String discountType; // fixed_cart, percent, fixed_product, percent_product + final String amount; + final bool isValid; + final String? errorMessage; + + Coupon({ + required this.code, + this.description, + required this.discountType, + required this.amount, + this.isValid = false, + this.errorMessage, + }); + + factory Coupon.fromJson(Map json) { + return Coupon( + code: json['code'] ?? '', + description: json['description'], + discountType: json['discount_type'] ?? 'fixed_cart', + amount: json['amount'] ?? '0', + isValid: json['is_valid'] ?? false, + errorMessage: json['error_message'], + ); + } + + String get discountDisplay { + switch (discountType) { + case 'percent': + case 'percent_product': + return '$amount%'; + case 'fixed_cart': + case 'fixed_product': + return '$amount €'; + default: + return amount; + } + } +} + diff --git a/lib/models/order.dart b/lib/models/order.dart new file mode 100644 index 0000000..7a61bd6 --- /dev/null +++ b/lib/models/order.dart @@ -0,0 +1,201 @@ +class Order { + final int id; + final String status; + final String total; + final String currency; + final DateTime dateCreated; + final List items; + final BillingAddress? billing; + final ShippingAddress? shipping; + final String? paymentMethod; + final String? paymentMethodTitle; + + Order({ + required this.id, + required this.status, + required this.total, + required this.currency, + required this.dateCreated, + required this.items, + this.billing, + this.shipping, + this.paymentMethod, + this.paymentMethodTitle, + }); + + factory Order.fromJson(Map json) { + final items = (json['line_items'] as List?) + ?.map((item) => OrderItem.fromJson(item)) + .toList() ?? + []; + + return Order( + id: json['id'] ?? 0, + status: json['status'] ?? '', + total: json['total'] ?? '0', + currency: json['currency'] ?? 'EUR', + dateCreated: json['date_created'] != null + ? DateTime.parse(json['date_created']) + : DateTime.now(), + items: items, + billing: json['billing'] != null + ? BillingAddress.fromJson(json['billing']) + : null, + shipping: json['shipping'] != null + ? ShippingAddress.fromJson(json['shipping']) + : null, + paymentMethod: json['payment_method'], + paymentMethodTitle: json['payment_method_title'], + ); + } + + String get statusDisplay { + switch (status) { + case 'pending': + return 'Ausstehend'; + case 'processing': + return 'In Bearbeitung'; + case 'on-hold': + return 'Wartend'; + case 'completed': + return 'Abgeschlossen'; + case 'cancelled': + return 'Storniert'; + case 'refunded': + return 'Erstattet'; + case 'failed': + return 'Fehlgeschlagen'; + default: + return status; + } + } +} + +class OrderItem { + final int id; + final String name; + final int quantity; + final String price; + final String? imageUrl; + + OrderItem({ + required this.id, + required this.name, + required this.quantity, + required this.price, + this.imageUrl, + }); + + factory OrderItem.fromJson(Map json) { + return OrderItem( + id: json['id'] ?? 0, + name: json['name'] ?? '', + quantity: json['quantity'] ?? 0, + price: json['price'] ?? '0', + imageUrl: json['image']?['src'], + ); + } +} + +class BillingAddress { + final String? firstName; + final String? lastName; + final String? company; + final String? address1; + final String? address2; + final String? city; + final String? state; + final String? postcode; + final String? country; + final String? email; + final String? phone; + + BillingAddress({ + this.firstName, + this.lastName, + this.company, + this.address1, + this.address2, + this.city, + this.state, + this.postcode, + this.country, + this.email, + this.phone, + }); + + factory BillingAddress.fromJson(Map json) { + return BillingAddress( + firstName: json['first_name'], + lastName: json['last_name'], + company: json['company'], + address1: json['address_1'], + address2: json['address_2'], + city: json['city'], + state: json['state'], + postcode: json['postcode'], + country: json['country'], + email: json['email'], + phone: json['phone'], + ); + } + + String get fullAddress { + final parts = []; + if (address1 != null && address1!.isNotEmpty) parts.add(address1!); + if (address2 != null && address2!.isNotEmpty) parts.add(address2!); + if (postcode != null && postcode!.isNotEmpty) parts.add(postcode!); + if (city != null && city!.isNotEmpty) parts.add(city!); + if (country != null && country!.isNotEmpty) parts.add(country!); + return parts.join(', '); + } +} + +class ShippingAddress { + final String? firstName; + final String? lastName; + final String? company; + final String? address1; + final String? address2; + final String? city; + final String? state; + final String? postcode; + final String? country; + + ShippingAddress({ + this.firstName, + this.lastName, + this.company, + this.address1, + this.address2, + this.city, + this.state, + this.postcode, + this.country, + }); + + factory ShippingAddress.fromJson(Map json) { + return ShippingAddress( + firstName: json['first_name'], + lastName: json['last_name'], + company: json['company'], + address1: json['address_1'], + address2: json['address_2'], + city: json['city'], + state: json['state'], + postcode: json['postcode'], + country: json['country'], + ); + } + + String get fullAddress { + final parts = []; + if (address1 != null && address1!.isNotEmpty) parts.add(address1!); + if (address2 != null && address2!.isNotEmpty) parts.add(address2!); + if (postcode != null && postcode!.isNotEmpty) parts.add(postcode!); + if (city != null && city!.isNotEmpty) parts.add(city!); + if (country != null && country!.isNotEmpty) parts.add(country!); + return parts.join(', '); + } +} + diff --git a/lib/models/product.dart b/lib/models/product.dart new file mode 100644 index 0000000..c3169bc --- /dev/null +++ b/lib/models/product.dart @@ -0,0 +1,96 @@ +class Product { + final int id; + final String name; + final String description; + final String price; + final String? regularPrice; + final String? salePrice; + final String? imageUrl; + final List images; + final bool inStock; + final int stockQuantity; + final String? sku; + final List>? categories; + final double? rating; + final int? ratingCount; + + Product({ + required this.id, + required this.name, + required this.description, + required this.price, + this.regularPrice, + this.salePrice, + this.imageUrl, + this.images = const [], + this.inStock = true, + this.stockQuantity = 0, + this.sku, + this.categories, + this.rating, + this.ratingCount, + }); + + factory Product.fromJson(Map json) { + final images = []; + + if (json['images'] != null && json['images'] is List) { + for (var img in json['images']) { + if (img['src'] != null) { + images.add(img['src']); + } + } + } + + return Product( + id: json['id'] ?? 0, + name: json['name'] ?? '', + description: json['description'] ?? '', + price: json['price'] ?? '0', + regularPrice: json['regular_price'], + salePrice: json['sale_price'], + imageUrl: images.isNotEmpty ? images[0] : null, + images: images, + inStock: json['stock_status'] == 'instock', + stockQuantity: json['stock_quantity'] ?? 0, + sku: json['sku'], + categories: json['categories'] != null + ? List>.from(json['categories']) + : null, + rating: json['average_rating'] != null + ? double.tryParse(json['average_rating'].toString()) + : null, + ratingCount: json['rating_count'], + ); + } + + bool get isOnSale => salePrice != null && salePrice!.isNotEmpty; + + double get priceValue { + try { + return double.parse(price); + } catch (e) { + return 0.0; + } + } + + Map toJson() { + return { + 'id': id, + 'name': name, + 'description': description, + 'price': price, + 'regular_price': regularPrice, + 'sale_price': salePrice, + 'image_url': imageUrl, + 'images': images, + 'in_stock': inStock, + 'stock_quantity': stockQuantity, + 'sku': sku, + 'categories': categories, + 'average_rating': rating, + 'rating_count': ratingCount, + }; + } +} + diff --git a/lib/models/review.dart b/lib/models/review.dart new file mode 100644 index 0000000..3f89ee0 --- /dev/null +++ b/lib/models/review.dart @@ -0,0 +1,80 @@ +class Review { + final int id; + final int productId; + final String reviewer; + final String reviewerEmail; + final String review; + final int rating; + final bool verified; + final DateTime dateCreated; + final String? reviewerAvatarUrl; + + Review({ + required this.id, + required this.productId, + required this.reviewer, + required this.reviewerEmail, + required this.review, + required this.rating, + this.verified = false, + required this.dateCreated, + this.reviewerAvatarUrl, + }); + + factory Review.fromJson(Map json) { + return Review( + id: json['id'] ?? 0, + productId: json['product_id'] ?? 0, + reviewer: json['reviewer'] ?? '', + reviewerEmail: json['reviewer_email'] ?? '', + review: json['review'] ?? '', + rating: json['rating'] ?? 0, + verified: json['verified'] ?? false, + dateCreated: json['date_created'] != null + ? DateTime.parse(json['date_created']) + : DateTime.now(), + reviewerAvatarUrl: json['reviewer_avatar_urls']?['96'], + ); + } + + Map toJson() { + return { + 'id': id, + 'product_id': productId, + 'reviewer': reviewer, + 'reviewer_email': reviewerEmail, + 'review': review, + 'rating': rating, + 'verified': verified, + 'date_created': dateCreated.toIso8601String(), + }; + } +} + +class ProductRating { + final double averageRating; + final int ratingCount; + final Map ratingBreakdown; // rating -> count + + ProductRating({ + required this.averageRating, + required this.ratingCount, + required this.ratingBreakdown, + }); + + factory ProductRating.fromJson(Map json) { + final breakdown = {}; + if (json['rating_breakdown'] != null) { + (json['rating_breakdown'] as Map).forEach((key, value) { + breakdown[int.parse(key.toString())] = value as int; + }); + } + + return ProductRating( + averageRating: (json['average_rating'] ?? 0.0).toDouble(), + ratingCount: json['rating_count'] ?? 0, + ratingBreakdown: breakdown, + ); + } +} + diff --git a/lib/models/user.dart b/lib/models/user.dart new file mode 100644 index 0000000..e14d72b --- /dev/null +++ b/lib/models/user.dart @@ -0,0 +1,51 @@ +class User { + final int id; + final String email; + final String? username; + final String? firstName; + final String? lastName; + final String? displayName; + final String? avatarUrl; + + User({ + required this.id, + required this.email, + this.username, + this.firstName, + this.lastName, + this.displayName, + this.avatarUrl, + }); + + factory User.fromJson(Map json) { + return User( + id: json['id'] ?? 0, + email: json['email'] ?? '', + username: json['username'], + firstName: json['first_name'], + lastName: json['last_name'], + displayName: json['display_name'] ?? json['name'], + avatarUrl: json['avatar_url'], + ); + } + + Map toJson() { + return { + 'id': id, + 'email': email, + 'username': username, + 'first_name': firstName, + 'last_name': lastName, + 'display_name': displayName, + 'avatar_url': avatarUrl, + }; + } + + String get fullName { + if (firstName != null && lastName != null) { + return '$firstName $lastName'; + } + return displayName ?? email; + } +} + diff --git a/lib/providers/cart_provider.dart b/lib/providers/cart_provider.dart new file mode 100644 index 0000000..d048481 --- /dev/null +++ b/lib/providers/cart_provider.dart @@ -0,0 +1,118 @@ +import 'package:flutter/foundation.dart'; +import 'package:shared_preferences/shared_preferences.dart'; +import 'dart:convert'; +import '../models/product.dart'; + +class CartItem { + final Product product; + int quantity; + + CartItem({ + required this.product, + this.quantity = 1, + }); + + double get totalPrice => product.priceValue * quantity; + + Map toJson() { + return { + 'product_id': product.id, + 'quantity': quantity, + 'product': product.toJson(), + }; + } + + factory CartItem.fromJson(Map json) { + return CartItem( + product: Product.fromJson(json['product']), + quantity: json['quantity'] ?? 1, + ); + } +} + +class CartProvider extends ChangeNotifier { + final List _items = []; + static const String _cartKey = 'cart_items'; + + List get items => _items; + + int get itemCount => _items.fold(0, (sum, item) => sum + item.quantity); + + double get totalPrice { + return _items.fold(0.0, (sum, item) => sum + item.totalPrice); + } + + CartProvider() { + _loadCart(); + } + + /// Lädt gespeicherten Warenkorb + Future _loadCart() async { + try { + final prefs = await SharedPreferences.getInstance(); + final cartJson = prefs.getString(_cartKey); + + if (cartJson != null) { + final List cartData = json.decode(cartJson); + _items.clear(); + _items.addAll( + cartData.map((item) => CartItem.fromJson(item)).toList(), + ); + notifyListeners(); + } + } catch (e) { + print('Fehler beim Laden des Warenkorbs: $e'); + } + } + + /// Speichert Warenkorb + Future _saveCart() async { + try { + final prefs = await SharedPreferences.getInstance(); + final cartJson = json.encode( + _items.map((item) => item.toJson()).toList(), + ); + await prefs.setString(_cartKey, cartJson); + } catch (e) { + print('Fehler beim Speichern des Warenkorbs: $e'); + } + } + + void addItem(Product product) { + final existingIndex = _items.indexWhere((item) => item.product.id == product.id); + + if (existingIndex >= 0) { + _items[existingIndex].quantity++; + } else { + _items.add(CartItem(product: product)); + } + notifyListeners(); + _saveCart(); + } + + void removeItem(Product product) { + final existingIndex = _items.indexWhere((item) => item.product.id == product.id); + + if (existingIndex >= 0) { + if (_items[existingIndex].quantity > 1) { + _items[existingIndex].quantity--; + } else { + _items.removeAt(existingIndex); + } + notifyListeners(); + _saveCart(); + } + } + + void removeItemCompletely(Product product) { + _items.removeWhere((item) => item.product.id == product.id); + notifyListeners(); + _saveCart(); + } + + void clearCart() { + _items.clear(); + notifyListeners(); + _saveCart(); + } +} diff --git a/lib/providers/user_provider.dart b/lib/providers/user_provider.dart new file mode 100644 index 0000000..d060086 --- /dev/null +++ b/lib/providers/user_provider.dart @@ -0,0 +1,63 @@ +import 'package:flutter/foundation.dart'; +import '../models/user.dart'; +import '../services/auth_service.dart'; + +class UserProvider extends ChangeNotifier { + final AuthService _authService = AuthService(); + User? _user; + bool _isLoading = false; + + User? get user => _user; + bool get isLoggedIn => _user != null; + bool get isLoading => _isLoading; + + UserProvider() { + _loadSavedUser(); + } + + Future _loadSavedUser() async { + _isLoading = true; + notifyListeners(); + + try { + _user = await _authService.getSavedUser(); + } catch (e) { + print('Fehler beim Laden des Benutzers: $e'); + } finally { + _isLoading = false; + notifyListeners(); + } + } + + Future login(String username, String password) async { + _isLoading = true; + notifyListeners(); + + try { + final user = await _authService.login(username, password); + if (user != null) { + _user = user; + _isLoading = false; + notifyListeners(); + return true; + } + } catch (e) { + print('Login-Fehler: $e'); + } + + _isLoading = false; + notifyListeners(); + return false; + } + + Future logout() async { + await _authService.logout(); + _user = null; + notifyListeners(); + } + + Future refreshUser() async { + await _loadSavedUser(); + } +} + diff --git a/lib/screens/cart_screen.dart b/lib/screens/cart_screen.dart new file mode 100644 index 0000000..04a031a --- /dev/null +++ b/lib/screens/cart_screen.dart @@ -0,0 +1,372 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:cached_network_image/cached_network_image.dart'; +import '../providers/cart_provider.dart'; +import '../services/coupon_service.dart'; +import '../models/coupon.dart'; +import 'product_detail_screen.dart'; +import 'checkout_screen.dart'; + +class _CartScreenState extends State { + final CouponService _couponService = CouponService(); + final TextEditingController _couponController = TextEditingController(); + Coupon? _appliedCoupon; + bool _isValidatingCoupon = false; + + @override + void dispose() { + _couponController.dispose(); + super.dispose(); + } + + Future _applyCoupon() async { + if (_couponController.text.trim().isEmpty) return; + + setState(() { + _isValidatingCoupon = true; + }); + + final coupon = await _couponService.validateCoupon(_couponController.text.trim()); + + setState(() { + _appliedCoupon = coupon.isValid ? coupon : null; + _isValidatingCoupon = false; + }); + + if (!coupon.isValid) { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(coupon.errorMessage ?? 'Ungültiger Gutschein-Code'), + backgroundColor: Colors.red, + ), + ); + } + } + } + + void _removeCoupon() { + setState(() { + _appliedCoupon = null; + _couponController.clear(); + }); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Warenkorb'), + ), + body: Consumer( + builder: (context, cart, child) { + if (cart.items.isEmpty) { + return Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon( + Icons.shopping_cart_outlined, + size: 64, + color: Colors.grey[400], + ), + const SizedBox(height: 16), + Text( + 'Dein Warenkorb ist leer', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + color: Colors.grey[600], + ), + ), + const SizedBox(height: 8), + Text( + 'Füge Produkte hinzu, um zu beginnen', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey[500], + ), + ), + ], + ), + ); + } + + return Column( + children: [ + Expanded( + child: ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: cart.items.length, + itemBuilder: (context, index) { + final item = cart.items[index]; + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: InkWell( + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => ProductDetailScreen( + product: item.product, + ), + ), + ); + }, + child: Padding( + padding: const EdgeInsets.all(12), + child: Row( + children: [ + // Produktbild + if (item.product.imageUrl != null) + ClipRRect( + borderRadius: BorderRadius.circular(8), + child: CachedNetworkImage( + imageUrl: item.product.imageUrl!, + width: 80, + height: 80, + fit: BoxFit.cover, + placeholder: (context, url) => Container( + width: 80, + height: 80, + color: Colors.grey[300], + child: const Center( + child: CircularProgressIndicator(), + ), + ), + errorWidget: (context, url, error) => + Container( + width: 80, + height: 80, + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported), + ), + ), + ) + else + Container( + width: 80, + height: 80, + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported), + ), + const SizedBox(width: 12), + + // Produktinfo + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + item.product.name, + style: Theme.of(context) + .textTheme + .titleMedium + ?.copyWith( + fontWeight: FontWeight.bold, + ), + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), + const SizedBox(height: 4), + Text( + '${item.product.price} €', + style: Theme.of(context) + .textTheme + .bodyLarge + ?.copyWith( + color: const Color(0xFF8B6F47), + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ), + + // Mengensteuerung + Column( + children: [ + Row( + mainAxisSize: MainAxisSize.min, + children: [ + IconButton( + icon: const Icon(Icons.remove_circle_outline), + onPressed: () => cart.removeItem(item.product), + ), + Text( + '${item.quantity}', + style: Theme.of(context).textTheme.titleMedium, + ), + IconButton( + icon: const Icon(Icons.add_circle_outline), + onPressed: () => cart.addItem(item.product), + ), + ], + ), + Text( + '${item.totalPrice.toStringAsFixed(2)} €', + style: Theme.of(context) + .textTheme + .bodyMedium + ?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + ], + ), + + // Entfernen + IconButton( + icon: const Icon(Icons.delete_outline), + color: Colors.red, + onPressed: () { + cart.removeItemCompletely(item.product); + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text('${item.product.name} entfernt'), + ), + ); + }, + ), + ], + ), + ), + ), + ); + }, + ), + ), + + // Gesamtsumme und Checkout + Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: Colors.white, + boxShadow: [ + BoxShadow( + color: Colors.black.withOpacity(0.1), + blurRadius: 4, + offset: const Offset(0, -2), + ), + ], + ), + child: Column( + children: [ + // Gutschein-Eingabe + Container( + padding: const EdgeInsets.all(12), + decoration: BoxDecoration( + color: Colors.grey[100], + borderRadius: BorderRadius.circular(8), + ), + child: Row( + children: [ + Expanded( + child: TextField( + controller: _couponController, + decoration: InputDecoration( + hintText: 'Gutschein-Code', + border: InputBorder.none, + isDense: true, + ), + enabled: !_isValidatingCoupon && _appliedCoupon == null, + ), + ), + if (_appliedCoupon != null) + IconButton( + icon: const Icon(Icons.check_circle, color: Colors.green), + onPressed: _removeCoupon, + ) + else + IconButton( + icon: _isValidatingCoupon + ? const SizedBox( + width: 20, + height: 20, + child: CircularProgressIndicator(strokeWidth: 2), + ) + : const Icon(Icons.add), + onPressed: _isValidatingCoupon ? null : _applyCoupon, + ), + ], + ), + ), + if (_appliedCoupon != null) ...[ + const SizedBox(height: 8), + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + 'Rabatt (${_appliedCoupon!.code}):', + style: Theme.of(context).textTheme.bodyMedium, + ), + Text( + '-${_couponService.calculateDiscount(_appliedCoupon!, cart.totalPrice).toStringAsFixed(2)} €', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.green, + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ], + const SizedBox(height: 12), + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + 'Gesamtsumme:', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + Text( + '${(cart.totalPrice - (_appliedCoupon != null ? _couponService.calculateDiscount(_appliedCoupon!, cart.totalPrice) : 0)).toStringAsFixed(2)} €', + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + color: const Color(0xFF8B6F47), + fontWeight: FontWeight.bold, + ), + ), + ], + ), + const SizedBox(height: 16), + SizedBox( + width: double.infinity, + child: ElevatedButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const CheckoutScreen(), + ), + ); + }, + style: ElevatedButton.styleFrom( + backgroundColor: const Color(0xFF8B6F47), + foregroundColor: Colors.white, + padding: const EdgeInsets.symmetric(vertical: 16), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + child: const Text( + 'Zur Kasse', + style: TextStyle(fontSize: 16), + ), + ), + ), + ], + ), + ), + ], + ); + }, + ), + ); + } +} + +class CartScreen extends StatefulWidget { + const CartScreen({super.key}); + + @override + State createState() => _CartScreenState(); +} + diff --git a/lib/screens/categories_screen.dart b/lib/screens/categories_screen.dart new file mode 100644 index 0000000..6ec9f5a --- /dev/null +++ b/lib/screens/categories_screen.dart @@ -0,0 +1,168 @@ +import 'package:flutter/material.dart'; +import 'package:cached_network_image/cached_network_image.dart'; +import '../models/category.dart'; +import '../services/woocommerce_service.dart'; +import '../services/analytics_service.dart'; +import '../widgets/loading_widget.dart'; +import '../widgets/retry_widget.dart'; +import '../utils/error_handler.dart'; +import 'products_screen.dart'; + +class CategoriesScreen extends StatefulWidget { + const CategoriesScreen({super.key}); + + @override + State createState() => _CategoriesScreenState(); +} + +class _CategoriesScreenState extends State { + final WooCommerceService _wooCommerceService = WooCommerceService(); + List _categories = []; + bool _isLoading = true; + String? _error; + + @override + void initState() { + super.initState(); + _loadCategories(); + } + + Future _loadCategories() async { + setState(() { + _isLoading = true; + _error = null; + }); + + try { + final categories = await _wooCommerceService.getCategories(); + setState(() { + _categories = categories; + _isLoading = false; + }); + } catch (e) { + setState(() { + _error = e.toString(); + _isLoading = false; + }); + ErrorHandler.showError(context, e); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Kategorien'), + ), + body: _isLoading + ? const LoadingWidget() + : _error != null + ? RetryWidget( + message: 'Fehler beim Laden der Kategorien', + onRetry: _loadCategories, + ) + : _categories.isEmpty + ? Center( + child: Text( + 'Keine Kategorien verfügbar', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + color: Colors.grey[600], + ), + ), + ) + : RefreshIndicator( + onRefresh: _loadCategories, + child: GridView.builder( + padding: const EdgeInsets.all(16), + gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( + crossAxisCount: 2, + crossAxisSpacing: 16, + mainAxisSpacing: 16, + childAspectRatio: 0.8, + ), + itemCount: _categories.length, + itemBuilder: (context, index) { + final category = _categories[index]; + return _buildCategoryCard(category); + }, + ), + ), + ); + } + + Widget _buildCategoryCard(Category category) { + return Card( + clipBehavior: Clip.antiAlias, + child: InkWell( + onTap: () { + AnalyticsService.trackCategoryView(category.name); + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => ProductsScreen( + categoryId: category.id.toString(), + categoryName: category.name, + ), + ), + ); + }, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Expanded( + flex: 3, + child: category.imageUrl != null + ? CachedNetworkImage( + imageUrl: category.imageUrl!, + fit: BoxFit.cover, + placeholder: (context, url) => Container( + color: Colors.grey[300], + child: const Center( + child: CircularProgressIndicator(), + ), + ), + errorWidget: (context, url, error) => Container( + color: Colors.grey[300], + child: const Icon(Icons.category, size: 48), + ), + ) + : Container( + color: Colors.grey[300], + child: const Icon(Icons.category, size: 48), + ), + ), + Expanded( + flex: 2, + child: Padding( + padding: const EdgeInsets.all(12), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + category.name, + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), + if (category.count > 0) ...[ + const SizedBox(height: 4), + Text( + '${category.count} Produkte', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.grey[600], + ), + ), + ], + ], + ), + ), + ), + ], + ), + ), + ); + } +} + diff --git a/lib/screens/checkout_screen.dart b/lib/screens/checkout_screen.dart new file mode 100644 index 0000000..80aaefc --- /dev/null +++ b/lib/screens/checkout_screen.dart @@ -0,0 +1,241 @@ +import 'package:flutter/material.dart'; +import 'package:webview_flutter/webview_flutter.dart'; +import 'package:provider/provider.dart'; +import '../providers/cart_provider.dart'; +import '../services/woocommerce_service.dart'; + +class CheckoutScreen extends StatefulWidget { + const CheckoutScreen({super.key}); + + @override + State createState() => _CheckoutScreenState(); +} + +class _CheckoutScreenState extends State { + late final WebViewController _controller; + bool _isLoading = true; + String? _error; + + @override + void initState() { + super.initState(); + _initializeWebView(); + } + + void _initializeWebView() { + final cart = Provider.of(context, listen: false); + + // Erstelle WooCommerce Checkout URL mit Warenkorb-Daten + final checkoutUrl = _buildCheckoutUrl(cart); + + _controller = WebViewController() + ..setJavaScriptMode(JavaScriptMode.unrestricted) + ..addJavaScriptChannel( + 'FlutterChannel', + onMessageReceived: (JavaScriptMessage message) { + // Handle messages from JavaScript if needed + if (message.message == 'order_success') { + _handleOrderSuccess(); + } + }, + ) + ..setNavigationDelegate( + NavigationDelegate( + onPageStarted: (String url) { + setState(() { + _isLoading = true; + _error = null; + }); + }, + onPageFinished: (String url) async { + setState(() { + _isLoading = false; + }); + + // Prüfe ob Bestellung erfolgreich war + if (url.contains('order-received') || url.contains('order-received/')) { + _handleOrderSuccess(); + } + + // Füge Produkte zum WooCommerce-Warenkorb hinzu, wenn wir auf der Cart/Checkout-Seite sind + if (url.contains('/cart/') || url.contains('/checkout/')) { + await _addProductsToCart(cart); + } + }, + onWebResourceError: (WebResourceError error) { + setState(() { + _error = 'Fehler beim Laden der Seite: ${error.description}'; + _isLoading = false; + }); + }, + ), + ) + ..loadRequest(Uri.parse(checkoutUrl)); + } + + /// Fügt Produkte mit JavaScript zum WooCommerce-Warenkorb hinzu + Future _addProductsToCart(CartProvider cart) async { + if (cart.items.isEmpty) return; + + // Erstelle JavaScript-Code, um Produkte zum Warenkorb hinzuzufügen + final jsCode = StringBuffer(); + jsCode.writeln('(function() {'); + + // Für jedes Produkt im Warenkorb + for (var item in cart.items) { + jsCode.writeln(''' + fetch('${WooCommerceService.baseUrl}/?wc-ajax=add_to_cart', { + method: 'POST', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + body: 'product_id=${item.product.id}&quantity=${item.quantity}' + }).then(response => response.json()).then(data => { + if (data.error) { + console.error('Fehler beim Hinzufügen:', data.error); + } + }); + '''); + } + + jsCode.writeln('})();'); + + try { + await _controller.runJavaScript(jsCode.toString()); + + // Warte kurz und leite dann zum Checkout weiter + await Future.delayed(const Duration(milliseconds: 500)); + await _controller.runJavaScript('window.location.href = "${WooCommerceService.baseUrl}/checkout/";'); + } catch (e) { + // Falls JavaScript-Fehler auftreten, verwende die einfache URL-Methode + print('JavaScript-Fehler: $e'); + } + } + + String _buildCheckoutUrl(CartProvider cart) { + final baseUrl = WooCommerceService.baseUrl; + + if (cart.items.isEmpty) { + return '$baseUrl/checkout/'; + } + + // Starte mit der Cart-Seite, damit wir die Produkte hinzufügen können + // Die JavaScript-Funktion _addProductsToCart wird dann die Produkte hinzufügen + return '$baseUrl/cart/'; + } + + void _handleOrderSuccess() { + // Warenkorb leeren nach erfolgreicher Bestellung + final cart = Provider.of(context, listen: false); + cart.clearCart(); + + // Zeige Erfolgsmeldung + showDialog( + context: context, + barrierDismissible: false, + builder: (context) => AlertDialog( + title: const Text('Bestellung erfolgreich!'), + content: const Text( + 'Vielen Dank für deine Bestellung. Du erhältst eine Bestätigungs-E-Mail.', + ), + actions: [ + TextButton( + onPressed: () { + Navigator.of(context).pop(); // Dialog schließen + Navigator.of(context).pop(); // Checkout schließen + Navigator.of(context).pop(); // Warenkorb schließen (falls von dort gekommen) + }, + child: const Text('OK'), + ), + ], + ), + ); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Zur Kasse'), + leading: IconButton( + icon: const Icon(Icons.close), + onPressed: () { + // Frage ob wirklich abbrechen + showDialog( + context: context, + builder: (context) => AlertDialog( + title: const Text('Checkout abbrechen?'), + content: const Text('Möchtest du wirklich abbrechen? Dein Warenkorb bleibt erhalten.'), + actions: [ + TextButton( + onPressed: () => Navigator.of(context).pop(), + child: const Text('Weiter einkaufen'), + ), + TextButton( + onPressed: () { + Navigator.of(context).pop(); // Dialog + Navigator.of(context).pop(); // Checkout + }, + child: const Text('Abbrechen'), + ), + ], + ), + ); + }, + ), + ), + body: Stack( + children: [ + if (_error != null) + Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Icon(Icons.error_outline, size: 64, color: Colors.red), + const SizedBox(height: 16), + Text( + 'Fehler', + style: Theme.of(context).textTheme.titleLarge, + ), + const SizedBox(height: 8), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 32), + child: Text( + _error!, + style: Theme.of(context).textTheme.bodyMedium, + textAlign: TextAlign.center, + ), + ), + const SizedBox(height: 16), + ElevatedButton( + onPressed: () { + _initializeWebView(); + }, + child: const Text('Erneut versuchen'), + ), + ], + ), + ) + else + WebViewWidget(controller: _controller), + + if (_isLoading && _error == null) + Container( + color: Colors.white, + child: const Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + CircularProgressIndicator(), + SizedBox(height: 16), + Text('Checkout wird geladen...'), + ], + ), + ), + ), + ], + ), + ); + } +} + diff --git a/lib/screens/home_screen.dart b/lib/screens/home_screen.dart new file mode 100644 index 0000000..d3ba16c --- /dev/null +++ b/lib/screens/home_screen.dart @@ -0,0 +1,427 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import '../providers/cart_provider.dart'; +import '../providers/user_provider.dart'; +import 'products_screen.dart'; +import 'product_detail_screen.dart'; +import 'cart_screen.dart'; +import 'login_screen.dart'; +import 'orders_screen.dart'; +import 'search_screen.dart'; +import 'categories_screen.dart'; +import '../widgets/product_card.dart'; +import '../services/woocommerce_service.dart'; +import '../services/analytics_service.dart'; +import '../models/product.dart'; + +class HomeScreen extends StatefulWidget { + const HomeScreen({super.key}); + + @override + State createState() => _HomeScreenState(); +} + +class _HomeScreenState extends State { + final WooCommerceService _wooCommerceService = WooCommerceService(); + List _featuredProducts = []; + bool _isLoading = true; + String? _error; + + @override + void initState() { + super.initState(); + _loadFeaturedProducts(); + } + + Future _loadFeaturedProducts() async { + try { + setState(() { + _isLoading = true; + _error = null; + }); + + final products = await _wooCommerceService.getFeaturedProducts(limit: 6); + + // Falls keine Featured Products vorhanden sind, lade normale Produkte + if (products.isEmpty) { + final allProducts = await _wooCommerceService.getProducts(perPage: 6); + setState(() { + _featuredProducts = allProducts; + _isLoading = false; + }); + } else { + setState(() { + _featuredProducts = products; + _isLoading = false; + }); + } + } catch (e) { + setState(() { + _error = e.toString(); + _isLoading = false; + }); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('HyggeCraftery'), + actions: [ + // Such-Button + IconButton( + icon: const Icon(Icons.search), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const SearchScreen(), + ), + ); + }, + ), + // Kategorien-Button + IconButton( + icon: const Icon(Icons.category), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const CategoriesScreen(), + ), + ); + }, + ), + // Account-Button + Consumer( + builder: (context, userProvider, child) { + return IconButton( + icon: Icon( + userProvider.isLoggedIn ? Icons.account_circle : Icons.login, + ), + onPressed: () { + if (userProvider.isLoggedIn) { + _showAccountMenu(context, userProvider); + } else { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const LoginScreen(), + ), + ); + } + }, + ); + }, + ), + // Warenkorb-Button + Consumer( + builder: (context, cart, child) { + return Stack( + children: [ + IconButton( + icon: const Icon(Icons.shopping_cart), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const CartScreen(), + ), + ); + }, + ), + if (cart.itemCount > 0) + Positioned( + right: 8, + top: 8, + child: Container( + padding: const EdgeInsets.all(4), + decoration: const BoxDecoration( + color: Colors.red, + shape: BoxShape.circle, + ), + constraints: const BoxConstraints( + minWidth: 16, + minHeight: 16, + ), + child: Text( + '${cart.itemCount}', + style: const TextStyle( + color: Colors.white, + fontSize: 10, + ), + textAlign: TextAlign.center, + ), + ), + ), + ], + ); + }, + ), + ], + ), + body: _buildHomeTab(), + ); + } + + Widget _buildHomeTab() { + if (_isLoading) { + return const Center(child: CircularProgressIndicator()); + } + + if (_error != null) { + return Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Icon(Icons.error_outline, size: 64, color: Colors.red), + const SizedBox(height: 16), + Text( + 'Fehler beim Laden der Produkte', + style: Theme.of(context).textTheme.titleLarge, + ), + const SizedBox(height: 8), + Text( + _error!, + style: Theme.of(context).textTheme.bodyMedium, + textAlign: TextAlign.center, + ), + const SizedBox(height: 16), + ElevatedButton( + onPressed: _loadFeaturedProducts, + child: const Text('Erneut versuchen'), + ), + ], + ), + ); + } + + return SingleChildScrollView( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Willkommensbereich + Container( + width: double.infinity, + padding: const EdgeInsets.all(24), + decoration: BoxDecoration( + gradient: LinearGradient( + colors: [ + const Color(0xFF8B6F47).withOpacity(0.8), + const Color(0xFFD4A574).withOpacity(0.8), + ], + begin: Alignment.topLeft, + end: Alignment.bottomRight, + ), + borderRadius: BorderRadius.circular(16), + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + 'Willkommen bei HyggeCraftery', + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + color: Colors.white, + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 8), + Text( + 'Entdecke unsere gemütlichen Handwerksprodukte', + style: Theme.of(context).textTheme.bodyLarge?.copyWith( + color: Colors.white.withOpacity(0.9), + ), + ), + ], + ), + ), + const SizedBox(height: 32), + + // Quick Actions + Row( + children: [ + Expanded( + child: _buildQuickActionCard( + context, + icon: Icons.search, + title: 'Suchen', + color: Colors.blue, + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const SearchScreen(), + ), + ); + }, + ), + ), + const SizedBox(width: 12), + Expanded( + child: _buildQuickActionCard( + context, + icon: Icons.category, + title: 'Kategorien', + color: Colors.green, + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const CategoriesScreen(), + ), + ); + }, + ), + ), + ], + ), + const SizedBox(height: 32), + + // Featured Products + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + 'Ausgewählte Produkte', + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + fontWeight: FontWeight.bold, + color: const Color(0xFF8B6F47), + ), + ), + TextButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const ProductsScreen(), + ), + ); + }, + child: const Text('Alle anzeigen'), + ), + ], + ), + const SizedBox(height: 16), + + if (_featuredProducts.isEmpty) + const Center( + child: Padding( + padding: EdgeInsets.all(32.0), + child: Text('Keine Produkte verfügbar'), + ), + ) + else + GridView.builder( + shrinkWrap: true, + physics: const NeverScrollableScrollPhysics(), + gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( + crossAxisCount: 2, + crossAxisSpacing: 16, + mainAxisSpacing: 16, + childAspectRatio: 0.75, + ), + itemCount: _featuredProducts.length, + itemBuilder: (context, index) { + return ProductCard( + product: _featuredProducts[index], + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => ProductDetailScreen( + product: _featuredProducts[index], + ), + ), + ); + }, + ); + }, + ), + ], + ), + ); + } + + void _showAccountMenu(BuildContext context, UserProvider userProvider) { + showModalBottomSheet( + context: context, + builder: (context) => Container( + padding: const EdgeInsets.all(16), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + if (userProvider.user != null) ...[ + ListTile( + leading: const Icon(Icons.person), + title: Text(userProvider.user!.fullName), + subtitle: Text(userProvider.user!.email), + ), + const Divider(), + ], + ListTile( + leading: const Icon(Icons.shopping_bag), + title: const Text('Meine Bestellungen'), + onTap: () { + Navigator.pop(context); + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const OrdersScreen(), + ), + ); + }, + ), + const Divider(), + ListTile( + leading: const Icon(Icons.logout, color: Colors.red), + title: const Text('Abmelden', style: TextStyle(color: Colors.red)), + onTap: () async { + await userProvider.logout(); + Navigator.pop(context); + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Erfolgreich abgemeldet'), + backgroundColor: Colors.green, + ), + ); + }, + ), + ], + ), + ), + ); + } + + Widget _buildQuickActionCard( + BuildContext context, { + required IconData icon, + required String title, + required Color color, + required VoidCallback onTap, + }) { + return Card( + child: InkWell( + onTap: onTap, + borderRadius: BorderRadius.circular(12), + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + children: [ + Icon(icon, size: 32, color: color), + const SizedBox(height: 8), + Text( + title, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ), + ), + ); + } +} + diff --git a/lib/screens/login_screen.dart b/lib/screens/login_screen.dart new file mode 100644 index 0000000..9226823 --- /dev/null +++ b/lib/screens/login_screen.dart @@ -0,0 +1,253 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import '../providers/user_provider.dart'; +import 'register_screen.dart'; +import 'password_reset_screen.dart'; + +class LoginScreen extends StatefulWidget { + const LoginScreen({super.key}); + + @override + State createState() => _LoginScreenState(); +} + +class _LoginScreenState extends State { + final _formKey = GlobalKey(); + final _usernameController = TextEditingController(); + final _passwordController = TextEditingController(); + bool _obscurePassword = true; + String? _errorMessage; + + @override + void dispose() { + _usernameController.dispose(); + _passwordController.dispose(); + super.dispose(); + } + + Future _handleLogin() async { + if (!_formKey.currentState!.validate()) { + return; + } + + setState(() { + _errorMessage = null; + }); + + final userProvider = Provider.of(context, listen: false); + final success = await userProvider.login( + _usernameController.text.trim(), + _passwordController.text, + ); + + if (success) { + if (mounted) { + Navigator.of(context).pop(); // Zurück zur vorherigen Seite + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Erfolgreich eingeloggt!'), + backgroundColor: Colors.green, + ), + ); + } + } else { + setState(() { + _errorMessage = 'Ungültige Anmeldedaten. Bitte versuche es erneut.'; + }); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Anmelden'), + ), + body: SafeArea( + child: SingleChildScrollView( + padding: const EdgeInsets.all(24), + child: Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + const SizedBox(height: 32), + + // Logo oder Titel + Icon( + Icons.account_circle, + size: 80, + color: Theme.of(context).primaryColor, + ), + const SizedBox(height: 16), + Text( + 'Willkommen zurück', + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: 8), + Text( + 'Melde dich an, um deine Bestellungen zu sehen', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey[600], + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: 48), + + // Fehlermeldung + if (_errorMessage != null) + Container( + padding: const EdgeInsets.all(12), + margin: const EdgeInsets.only(bottom: 16), + decoration: BoxDecoration( + color: Colors.red[50], + borderRadius: BorderRadius.circular(8), + border: Border.all(color: Colors.red[300]!), + ), + child: Row( + children: [ + Icon(Icons.error_outline, color: Colors.red[700]), + const SizedBox(width: 8), + Expanded( + child: Text( + _errorMessage!, + style: TextStyle(color: Colors.red[700]), + ), + ), + ], + ), + ), + + // Benutzername/E-Mail Feld + TextFormField( + controller: _usernameController, + decoration: InputDecoration( + labelText: 'Benutzername oder E-Mail', + prefixIcon: const Icon(Icons.person), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + keyboardType: TextInputType.emailAddress, + textInputAction: TextInputAction.next, + validator: (value) { + if (value == null || value.isEmpty) { + return 'Bitte gib deinen Benutzernamen oder E-Mail ein'; + } + return null; + }, + ), + const SizedBox(height: 16), + + // Passwort Feld + TextFormField( + controller: _passwordController, + decoration: InputDecoration( + labelText: 'Passwort', + prefixIcon: const Icon(Icons.lock), + suffixIcon: IconButton( + icon: Icon( + _obscurePassword ? Icons.visibility : Icons.visibility_off, + ), + onPressed: () { + setState(() { + _obscurePassword = !_obscurePassword; + }); + }, + ), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + obscureText: _obscurePassword, + textInputAction: TextInputAction.done, + onFieldSubmitted: (_) => _handleLogin(), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Bitte gib dein Passwort ein'; + } + return null; + }, + ), + const SizedBox(height: 24), + + // Anmelden Button + Consumer( + builder: (context, userProvider, child) { + return ElevatedButton( + onPressed: userProvider.isLoading ? null : _handleLogin, + style: ElevatedButton.styleFrom( + backgroundColor: const Color(0xFF8B6F47), + foregroundColor: Colors.white, + padding: const EdgeInsets.symmetric(vertical: 16), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + child: userProvider.isLoading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + valueColor: AlwaysStoppedAnimation(Colors.white), + ), + ) + : const Text( + 'Anmelden', + style: TextStyle(fontSize: 16), + ), + ); + }, + ), + + const SizedBox(height: 8), + + // Passwort vergessen Link + Align( + alignment: Alignment.centerRight, + child: TextButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const PasswordResetScreen(), + ), + ); + }, + child: const Text('Passwort vergessen?'), + ), + ), + + const SizedBox(height: 16), + + // Registrieren Link + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Text('Noch kein Konto? '), + TextButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const RegisterScreen(), + ), + ); + }, + child: const Text('Jetzt registrieren'), + ), + ], + ), + ], + ), + ), + ), + ), + ); + } +} + diff --git a/lib/screens/main_navigation_screen.dart b/lib/screens/main_navigation_screen.dart new file mode 100644 index 0000000..5e71b9e --- /dev/null +++ b/lib/screens/main_navigation_screen.dart @@ -0,0 +1,162 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import '../providers/cart_provider.dart'; +import '../providers/user_provider.dart'; +import '../services/analytics_service.dart'; +import 'home_screen.dart'; +import 'categories_screen.dart'; +import 'cart_screen.dart'; +import 'profile_screen.dart'; +import 'login_screen.dart'; + +class MainNavigationScreen extends StatefulWidget { + const MainNavigationScreen({super.key}); + + @override + State createState() => _MainNavigationScreenState(); +} + +class _MainNavigationScreenState extends State { + int _currentIndex = 0; + + final List _screens = [ + const HomeScreen(), + const CategoriesScreen(), + const CartScreen(), + const ProfileScreen(), + ]; + + @override + void initState() { + super.initState(); + // Track initial page view + AnalyticsService.trackPageView('/home'); + } + + void _onTabTapped(int index) { + setState(() { + _currentIndex = index; + }); + + // Track page views + switch (index) { + case 0: + AnalyticsService.trackPageView('/home'); + break; + case 1: + AnalyticsService.trackPageView('/categories'); + break; + case 2: + AnalyticsService.trackPageView('/cart'); + break; + case 3: + AnalyticsService.trackPageView('/profile'); + break; + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: IndexedStack( + index: _currentIndex, + children: _screens, + ), + bottomNavigationBar: Consumer2( + builder: (context, cart, userProvider, child) { + return NavigationBar( + selectedIndex: _currentIndex, + onDestinationSelected: _onTabTapped, + destinations: [ + const NavigationDestination( + icon: Icon(Icons.home_outlined), + selectedIcon: Icon(Icons.home), + label: 'Home', + ), + const NavigationDestination( + icon: Icon(Icons.category_outlined), + selectedIcon: Icon(Icons.category), + label: 'Kategorien', + ), + NavigationDestination( + icon: Stack( + children: [ + const Icon(Icons.shopping_cart_outlined), + if (cart.itemCount > 0) + Positioned( + right: 0, + top: 0, + child: Container( + padding: const EdgeInsets.all(4), + decoration: const BoxDecoration( + color: Colors.red, + shape: BoxShape.circle, + ), + constraints: const BoxConstraints( + minWidth: 16, + minHeight: 16, + ), + child: Text( + '${cart.itemCount}', + style: const TextStyle( + color: Colors.white, + fontSize: 10, + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.center, + ), + ), + ), + ], + ), + selectedIcon: Stack( + children: [ + const Icon(Icons.shopping_cart), + if (cart.itemCount > 0) + Positioned( + right: 0, + top: 0, + child: Container( + padding: const EdgeInsets.all(4), + decoration: const BoxDecoration( + color: Colors.red, + shape: BoxShape.circle, + ), + constraints: const BoxConstraints( + minWidth: 16, + minHeight: 16, + ), + child: Text( + '${cart.itemCount}', + style: const TextStyle( + color: Colors.white, + fontSize: 10, + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.center, + ), + ), + ), + ], + ), + label: 'Warenkorb', + ), + NavigationDestination( + icon: Icon( + userProvider.isLoggedIn + ? Icons.account_circle_outlined + : Icons.login_outlined, + ), + selectedIcon: Icon( + userProvider.isLoggedIn ? Icons.account_circle : Icons.login, + ), + label: userProvider.isLoggedIn ? 'Profil' : 'Anmelden', + ), + ], + ); + }, + ), + ); + } +} + diff --git a/lib/screens/order_detail_screen.dart b/lib/screens/order_detail_screen.dart new file mode 100644 index 0000000..4b26b00 --- /dev/null +++ b/lib/screens/order_detail_screen.dart @@ -0,0 +1,293 @@ +import 'package:flutter/material.dart'; +import 'package:cached_network_image/cached_network_image.dart'; +import 'package:intl/intl.dart'; +import '../models/order.dart'; + +class OrderDetailScreen extends StatelessWidget { + final Order order; + + const OrderDetailScreen({ + super.key, + required this.order, + }); + + @override + Widget build(BuildContext context) { + final dateFormat = DateFormat('dd.MM.yyyy HH:mm'); + final statusColor = _getStatusColor(order.status); + + return Scaffold( + appBar: AppBar( + title: Text('Bestellung #${order.id}'), + ), + body: SingleChildScrollView( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Status + Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: statusColor.withOpacity(0.1), + borderRadius: BorderRadius.circular(12), + border: Border.all(color: statusColor), + ), + child: Row( + children: [ + Icon(Icons.info_outline, color: statusColor), + const SizedBox(width: 12), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + 'Status', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.grey[600], + ), + ), + Text( + order.statusDisplay, + style: TextStyle( + color: statusColor, + fontWeight: FontWeight.bold, + fontSize: 16, + ), + ), + ], + ), + ), + ], + ), + ), + const SizedBox(height: 16), + + // Bestelldatum + _buildInfoRow( + context, + 'Bestelldatum', + dateFormat.format(order.dateCreated), + Icons.calendar_today, + ), + const SizedBox(height: 16), + + // Produkte + Text( + 'Produkte', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 12), + ...order.items.map((item) => _buildOrderItem(context, item)), + const SizedBox(height: 16), + + // Zahlungsmethode + if (order.paymentMethodTitle != null) ...[ + _buildInfoRow( + context, + 'Zahlungsmethode', + order.paymentMethodTitle!, + Icons.payment, + ), + const SizedBox(height: 16), + ], + + // Rechnungsadresse + if (order.billing != null) ...[ + Text( + 'Rechnungsadresse', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 8), + Container( + padding: const EdgeInsets.all(12), + decoration: BoxDecoration( + color: Colors.grey[100], + borderRadius: BorderRadius.circular(8), + ), + child: Text( + order.billing!.fullAddress, + style: Theme.of(context).textTheme.bodyMedium, + ), + ), + const SizedBox(height: 16), + ], + + // Lieferadresse + if (order.shipping != null) ...[ + Text( + 'Lieferadresse', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 8), + Container( + padding: const EdgeInsets.all(12), + decoration: BoxDecoration( + color: Colors.grey[100], + borderRadius: BorderRadius.circular(8), + ), + child: Text( + order.shipping!.fullAddress, + style: Theme.of(context).textTheme.bodyMedium, + ), + ), + const SizedBox(height: 16), + ], + + // Gesamtsumme + Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: const Color(0xFF8B6F47).withOpacity(0.1), + borderRadius: BorderRadius.circular(12), + ), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + 'Gesamtsumme:', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + Text( + '${order.total} ${order.currency}', + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + color: const Color(0xFF8B6F47), + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ), + ], + ), + ), + ); + } + + Widget _buildInfoRow( + BuildContext context, + String label, + String value, + IconData icon, + ) { + return Row( + children: [ + Icon(icon, size: 20, color: Colors.grey[600]), + const SizedBox(width: 12), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + label, + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.grey[600], + ), + ), + Text( + value, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + fontWeight: FontWeight.w500, + ), + ), + ], + ), + ), + ], + ); + } + + Widget _buildOrderItem(BuildContext context, OrderItem item) { + return Card( + margin: const EdgeInsets.only(bottom: 8), + child: Padding( + padding: const EdgeInsets.all(12), + child: Row( + children: [ + if (item.imageUrl != null) + ClipRRect( + borderRadius: BorderRadius.circular(8), + child: CachedNetworkImage( + imageUrl: item.imageUrl!, + width: 60, + height: 60, + fit: BoxFit.cover, + errorWidget: (context, url, error) => Container( + width: 60, + height: 60, + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported), + ), + ), + ) + else + Container( + width: 60, + height: 60, + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported), + ), + const SizedBox(width: 12), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + item.name, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 4), + Text( + 'Menge: ${item.quantity}', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.grey[600], + ), + ), + ], + ), + ), + Text( + '${item.price} €', + style: Theme.of(context).textTheme.titleSmall?.copyWith( + color: const Color(0xFF8B6F47), + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ), + ); + } + + Color _getStatusColor(String status) { + switch (status) { + case 'completed': + return Colors.green; + case 'processing': + return Colors.blue; + case 'pending': + return Colors.orange; + case 'on-hold': + return Colors.amber; + case 'cancelled': + return Colors.red; + case 'refunded': + return Colors.purple; + case 'failed': + return Colors.red; + default: + return Colors.grey; + } + } +} + diff --git a/lib/screens/orders_screen.dart b/lib/screens/orders_screen.dart new file mode 100644 index 0000000..8acc2d1 --- /dev/null +++ b/lib/screens/orders_screen.dart @@ -0,0 +1,270 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:cached_network_image/cached_network_image.dart'; +import 'package:intl/intl.dart'; +import '../models/order.dart'; +import '../services/order_service.dart'; +import 'order_detail_screen.dart'; + +class OrdersScreen extends StatefulWidget { + const OrdersScreen({super.key}); + + @override + State createState() => _OrdersScreenState(); +} + +class _OrdersScreenState extends State { + final OrderService _orderService = OrderService(); + List _orders = []; + bool _isLoading = true; + String? _error; + + @override + void initState() { + super.initState(); + _loadOrders(); + } + + Future _loadOrders() async { + setState(() { + _isLoading = true; + _error = null; + }); + + try { + final orders = await _orderService.getOrders(); + setState(() { + _orders = orders; + _isLoading = false; + }); + } catch (e) { + setState(() { + _error = e.toString(); + _isLoading = false; + }); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Meine Bestellungen'), + ), + body: _isLoading + ? const Center(child: CircularProgressIndicator()) + : _error != null + ? Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Icon(Icons.error_outline, size: 64, color: Colors.red), + const SizedBox(height: 16), + Text( + 'Fehler beim Laden der Bestellungen', + style: Theme.of(context).textTheme.titleLarge, + ), + const SizedBox(height: 8), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 32), + child: Text( + _error!, + style: Theme.of(context).textTheme.bodyMedium, + textAlign: TextAlign.center, + ), + ), + const SizedBox(height: 16), + ElevatedButton( + onPressed: _loadOrders, + child: const Text('Erneut versuchen'), + ), + ], + ), + ) + : _orders.isEmpty + ? Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon( + Icons.shopping_bag_outlined, + size: 64, + color: Colors.grey[400], + ), + const SizedBox(height: 16), + Text( + 'Noch keine Bestellungen', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + color: Colors.grey[600], + ), + ), + const SizedBox(height: 8), + Text( + 'Deine Bestellungen werden hier angezeigt', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey[500], + ), + ), + ], + ), + ) + : RefreshIndicator( + onRefresh: _loadOrders, + child: ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: _orders.length, + itemBuilder: (context, index) { + final order = _orders[index]; + return _buildOrderCard(order); + }, + ), + ), + ); + } + + Widget _buildOrderCard(Order order) { + final dateFormat = DateFormat('dd.MM.yyyy'); + final statusColor = _getStatusColor(order.status); + + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: InkWell( + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => OrderDetailScreen(order: order), + ), + ); + }, + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + 'Bestellung #${order.id}', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 4), + Text( + dateFormat.format(order.dateCreated), + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.grey[600], + ), + ), + ], + ), + Container( + padding: const EdgeInsets.symmetric( + horizontal: 12, + vertical: 6, + ), + decoration: BoxDecoration( + color: statusColor.withOpacity(0.1), + borderRadius: BorderRadius.circular(12), + border: Border.all(color: statusColor), + ), + child: Text( + order.statusDisplay, + style: TextStyle( + color: statusColor, + fontWeight: FontWeight.bold, + fontSize: 12, + ), + ), + ), + ], + ), + const SizedBox(height: 12), + + // Produktvorschau + if (order.items.isNotEmpty) ...[ + Row( + children: [ + if (order.items[0].imageUrl != null) + ClipRRect( + borderRadius: BorderRadius.circular(4), + child: CachedNetworkImage( + imageUrl: order.items[0].imageUrl!, + width: 40, + height: 40, + fit: BoxFit.cover, + errorWidget: (context, url, error) => Container( + width: 40, + height: 40, + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported, size: 20), + ), + ), + ), + const SizedBox(width: 8), + Expanded( + child: Text( + order.items.length == 1 + ? order.items[0].name + : '${order.items[0].name} + ${order.items.length - 1} weitere', + style: Theme.of(context).textTheme.bodyMedium, + maxLines: 1, + overflow: TextOverflow.ellipsis, + ), + ), + ], + ), + const SizedBox(height: 12), + ], + + // Gesamtsumme + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + 'Gesamtsumme:', + style: Theme.of(context).textTheme.bodyMedium, + ), + Text( + '${order.total} ${order.currency}', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + color: const Color(0xFF8B6F47), + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ], + ), + ), + ), + ); + } + + Color _getStatusColor(String status) { + switch (status) { + case 'completed': + return Colors.green; + case 'processing': + return Colors.blue; + case 'pending': + return Colors.orange; + case 'on-hold': + return Colors.amber; + case 'cancelled': + return Colors.red; + case 'refunded': + return Colors.purple; + case 'failed': + return Colors.red; + default: + return Colors.grey; + } + } +} + diff --git a/lib/screens/password_reset_screen.dart b/lib/screens/password_reset_screen.dart new file mode 100644 index 0000000..4ef77db --- /dev/null +++ b/lib/screens/password_reset_screen.dart @@ -0,0 +1,172 @@ +import 'package:flutter/material.dart'; +import 'package:email_validator/email_validator.dart'; +import '../services/auth_service.dart'; +import '../utils/error_handler.dart'; + +class PasswordResetScreen extends StatefulWidget { + const PasswordResetScreen({super.key}); + + @override + State createState() => _PasswordResetScreenState(); +} + +class _PasswordResetScreenState extends State { + final _formKey = GlobalKey(); + final _emailController = TextEditingController(); + bool _isLoading = false; + bool _emailSent = false; + + @override + void dispose() { + _emailController.dispose(); + super.dispose(); + } + + Future _handlePasswordReset() async { + if (!_formKey.currentState!.validate()) { + return; + } + + setState(() { + _isLoading = true; + }); + + try { + final authService = AuthService(); + final result = await authService.requestPasswordReset( + _emailController.text.trim(), + ); + + if (mounted) { + setState(() { + _isLoading = false; + _emailSent = result['success'] == true; + }); + + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(result['message'] ?? 'E-Mail wurde gesendet'), + backgroundColor: result['success'] == true ? Colors.green : Colors.orange, + ), + ); + } + } catch (e) { + if (mounted) { + setState(() { + _isLoading = false; + }); + ErrorHandler.showError(context, e); + } + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Passwort zurücksetzen'), + ), + body: SafeArea( + child: SingleChildScrollView( + padding: const EdgeInsets.all(24), + child: Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Icon( + Icons.lock_reset, + size: 80, + color: Theme.of(context).primaryColor, + ), + const SizedBox(height: 16), + Text( + _emailSent ? 'E-Mail gesendet' : 'Passwort zurücksetzen', + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: 8), + Text( + _emailSent + ? 'Wir haben dir eine E-Mail mit Anweisungen zum Zurücksetzen deines Passworts gesendet.' + : 'Gib deine E-Mail-Adresse ein und wir senden dir einen Link zum Zurücksetzen deines Passworts.', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey[600], + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: 32), + + if (!_emailSent) ...[ + TextFormField( + controller: _emailController, + decoration: InputDecoration( + labelText: 'E-Mail', + prefixIcon: const Icon(Icons.email), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + keyboardType: TextInputType.emailAddress, + textInputAction: TextInputAction.done, + onFieldSubmitted: (_) => _handlePasswordReset(), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Bitte gib deine E-Mail ein'; + } + if (!EmailValidator.validate(value)) { + return 'Bitte gib eine gültige E-Mail ein'; + } + return null; + }, + ), + const SizedBox(height: 24), + ElevatedButton( + onPressed: _isLoading ? null : _handlePasswordReset, + style: ElevatedButton.styleFrom( + backgroundColor: const Color(0xFF8B6F47), + foregroundColor: Colors.white, + padding: const EdgeInsets.symmetric(vertical: 16), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + child: _isLoading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + valueColor: AlwaysStoppedAnimation(Colors.white), + ), + ) + : const Text( + 'Reset-Link senden', + style: TextStyle(fontSize: 16), + ), + ), + ] else ...[ + Icon( + Icons.check_circle, + size: 64, + color: Colors.green, + ), + const SizedBox(height: 16), + ElevatedButton( + onPressed: () { + Navigator.of(context).pop(); + }, + child: const Text('Zurück zum Login'), + ), + ], + ], + ), + ), + ), + ), + ); + } +} + diff --git a/lib/screens/product_detail_screen.dart b/lib/screens/product_detail_screen.dart new file mode 100644 index 0000000..928dd04 --- /dev/null +++ b/lib/screens/product_detail_screen.dart @@ -0,0 +1,259 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:cached_network_image/cached_network_image.dart'; +import '../models/product.dart'; +import '../providers/cart_provider.dart'; + +class ProductDetailScreen extends StatelessWidget { + final Product product; + + const ProductDetailScreen({ + super.key, + required this.product, + }); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Text(product.name), + ), + body: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Produktbild + if (product.imageUrl != null) + SizedBox( + height: 300, + width: double.infinity, + child: CachedNetworkImage( + imageUrl: product.imageUrl!, + fit: BoxFit.cover, + placeholder: (context, url) => const Center( + child: CircularProgressIndicator(), + ), + errorWidget: (context, url, error) => Container( + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported, size: 64), + ), + ), + ) + else + Container( + height: 300, + width: double.infinity, + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported, size: 64), + ), + + Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Produktname + Text( + product.name, + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 16), + + // Preis + Row( + children: [ + if (product.isOnSale) ...[ + Text( + '${product.regularPrice} €', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + decoration: TextDecoration.lineThrough, + color: Colors.grey, + ), + ), + const SizedBox(width: 8), + Container( + padding: const EdgeInsets.symmetric( + horizontal: 8, + vertical: 4, + ), + decoration: BoxDecoration( + color: Colors.red, + borderRadius: BorderRadius.circular(4), + ), + child: Text( + 'Sale', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.white, + fontWeight: FontWeight.bold, + ), + ), + ), + ], + const Spacer(), + Text( + '${product.price} €', + style: Theme.of(context).textTheme.headlineMedium?.copyWith( + color: const Color(0xFF8B6F47), + fontWeight: FontWeight.bold, + ), + ), + ], + ), + const SizedBox(height: 16), + + // Verfügbarkeit + Row( + children: [ + Icon( + product.inStock ? Icons.check_circle : Icons.cancel, + color: product.inStock ? Colors.green : Colors.red, + size: 20, + ), + const SizedBox(width: 8), + Text( + product.inStock + ? 'Auf Lager' + : 'Nicht verfügbar', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: product.inStock ? Colors.green : Colors.red, + ), + ), + ], + ), + const SizedBox(height: 24), + + // Beschreibung + if (product.description.isNotEmpty) ...[ + Text( + 'Beschreibung', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 8), + Text( + product.description.replaceAll(RegExp(r'<[^>]*>'), ''), + style: Theme.of(context).textTheme.bodyMedium, + ), + const SizedBox(height: 24), + ], + + // Zusätzliche Bilder + if (product.images.length > 1) ...[ + Text( + 'Weitere Bilder', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 8), + SizedBox( + height: 100, + child: ListView.builder( + scrollDirection: Axis.horizontal, + itemCount: product.images.length, + itemBuilder: (context, index) { + return Padding( + padding: const EdgeInsets.only(right: 8), + child: CachedNetworkImage( + imageUrl: product.images[index], + width: 100, + fit: BoxFit.cover, + placeholder: (context, url) => Container( + width: 100, + color: Colors.grey[300], + child: const Center( + child: CircularProgressIndicator(), + ), + ), + errorWidget: (context, url, error) => Container( + width: 100, + color: Colors.grey[300], + child: const Icon(Icons.image_not_supported), + ), + ), + ); + }, + ), + ), + const SizedBox(height: 24), + ], + ], + ), + ), + ], + ), + ), + bottomNavigationBar: Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: Colors.white, + boxShadow: [ + BoxShadow( + color: Colors.black.withOpacity(0.1), + blurRadius: 4, + offset: const Offset(0, -2), + ), + ], + ), + child: Consumer( + builder: (context, cart, child) { + final cartItem = cart.items.firstWhere( + (item) => item.product.id == product.id, + orElse: () => CartItem(product: product, quantity: 0), + ); + + return Row( + children: [ + if (cartItem.quantity > 0) ...[ + IconButton( + icon: const Icon(Icons.remove_circle_outline), + onPressed: () => cart.removeItem(product), + ), + Text( + '${cartItem.quantity}', + style: Theme.of(context).textTheme.titleLarge, + ), + IconButton( + icon: const Icon(Icons.add_circle_outline), + onPressed: () => cart.addItem(product), + ), + ] else + Expanded( + child: ElevatedButton( + onPressed: product.inStock + ? () { + cart.addItem(product); + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text('${product.name} zum Warenkorb hinzugefügt'), + duration: const Duration(seconds: 2), + ), + ); + } + : null, + style: ElevatedButton.styleFrom( + backgroundColor: const Color(0xFF8B6F47), + foregroundColor: Colors.white, + padding: const EdgeInsets.symmetric(vertical: 16), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + child: Text( + product.inStock ? 'Zum Warenkorb hinzufügen' : 'Nicht verfügbar', + style: const TextStyle(fontSize: 16), + ), + ), + ), + ], + ); + }, + ), + ), + ); + } +} + diff --git a/lib/screens/products_screen.dart b/lib/screens/products_screen.dart new file mode 100644 index 0000000..f14781a --- /dev/null +++ b/lib/screens/products_screen.dart @@ -0,0 +1,200 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import '../providers/cart_provider.dart'; +import '../models/product.dart'; +import '../services/woocommerce_service.dart'; +import '../widgets/product_card.dart'; +import 'product_detail_screen.dart'; + +class ProductsScreen extends StatefulWidget { + final String? categoryId; + final String? categoryName; + + const ProductsScreen({ + super.key, + this.categoryId, + this.categoryName, + }); + + @override + State createState() => _ProductsScreenState(); +} + +class _ProductsScreenState extends State { + final WooCommerceService _wooCommerceService = WooCommerceService(); + List _products = []; + bool _isLoading = true; + bool _isLoadingMore = false; + String? _error; + int _currentPage = 1; + final int _perPage = 20; + bool _hasMore = true; + final ScrollController _scrollController = ScrollController(); + + @override + void initState() { + super.initState(); + _loadProducts(); + _scrollController.addListener(_onScroll); + } + + @override + void dispose() { + _scrollController.dispose(); + super.dispose(); + } + + void _onScroll() { + if (_scrollController.position.pixels >= + _scrollController.position.maxScrollExtent * 0.9) { + if (!_isLoadingMore && _hasMore) { + _loadMoreProducts(); + } + } + } + + Future _loadProducts() async { + try { + setState(() { + _isLoading = true; + _error = null; + }); + + final products = await _wooCommerceService.getProducts( + perPage: _perPage, + page: 1, + category: widget.categoryId, + ); + + setState(() { + _products = products; + _isLoading = false; + _currentPage = 1; + _hasMore = products.length == _perPage; + }); + } catch (e) { + setState(() { + _error = e.toString(); + _isLoading = false; + }); + } + } + + Future _loadMoreProducts() async { + if (_isLoadingMore || !_hasMore) return; + + try { + setState(() { + _isLoadingMore = true; + }); + + final nextPage = _currentPage + 1; + final products = await _wooCommerceService.getProducts( + perPage: _perPage, + page: nextPage, + ); + + setState(() { + if (products.isEmpty) { + _hasMore = false; + } else { + _products.addAll(products); + _currentPage = nextPage; + _hasMore = products.length == _perPage; + } + _isLoadingMore = false; + }); + } catch (e) { + setState(() { + _isLoadingMore = false; + }); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Text(widget.categoryName ?? 'Alle Produkte'), + ), + body: _buildBody(), + ); + } + + Widget _buildBody() { + if (_isLoading) { + return const Center(child: CircularProgressIndicator()); + } + + if (_error != null) { + return Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Icon(Icons.error_outline, size: 64, color: Colors.red), + const SizedBox(height: 16), + Text( + 'Fehler beim Laden der Produkte', + style: Theme.of(context).textTheme.titleLarge, + ), + const SizedBox(height: 8), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 32), + child: Text( + _error!, + style: Theme.of(context).textTheme.bodyMedium, + textAlign: TextAlign.center, + ), + ), + const SizedBox(height: 16), + ElevatedButton( + onPressed: _loadProducts, + child: const Text('Erneut versuchen'), + ), + ], + ), + ); + } + + if (_products.isEmpty) { + return const Center( + child: Text('Keine Produkte verfügbar'), + ); + } + + return RefreshIndicator( + onRefresh: _loadProducts, + child: GridView.builder( + controller: _scrollController, + padding: const EdgeInsets.all(16), + gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( + crossAxisCount: 2, + crossAxisSpacing: 16, + mainAxisSpacing: 16, + childAspectRatio: 0.75, + ), + itemCount: _products.length + (_isLoadingMore ? 1 : 0), + itemBuilder: (context, index) { + if (index == _products.length) { + return const Center(child: CircularProgressIndicator()); + } + + return ProductCard( + product: _products[index], + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => ProductDetailScreen( + product: _products[index], + ), + ), + ); + }, + ); + }, + ), + ); + } +} + diff --git a/lib/screens/profile_screen.dart b/lib/screens/profile_screen.dart new file mode 100644 index 0000000..6c91bd9 --- /dev/null +++ b/lib/screens/profile_screen.dart @@ -0,0 +1,446 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import '../providers/user_provider.dart'; +import '../services/auth_service.dart'; +import '../services/order_service.dart'; +import '../models/address.dart'; +import '../models/order.dart'; +import '../utils/error_handler.dart'; +import '../widgets/loading_widget.dart'; +import 'orders_screen.dart'; +import 'login_screen.dart'; + +class ProfileScreen extends StatefulWidget { + const ProfileScreen({super.key}); + + @override + State createState() => _ProfileScreenState(); +} + +class _ProfileScreenState extends State { + final AuthService _authService = AuthService(); + final OrderService _orderService = OrderService(); + Address? _billingAddress; + Address? _shippingAddress; + bool _isLoadingAddresses = false; + + @override + void initState() { + super.initState(); + _loadAddresses(); + } + + Address? _convertBillingAddress(BillingAddress? billing) { + if (billing == null) return null; + return Address( + firstName: billing.firstName, + lastName: billing.lastName, + company: billing.company, + address1: billing.address1, + address2: billing.address2, + city: billing.city, + state: billing.state, + postcode: billing.postcode, + country: billing.country, + email: billing.email, + phone: billing.phone, + ); + } + + Address? _convertShippingAddress(ShippingAddress? shipping) { + if (shipping == null) return null; + return Address( + firstName: shipping.firstName, + lastName: shipping.lastName, + company: shipping.company, + address1: shipping.address1, + address2: shipping.address2, + city: shipping.city, + state: shipping.state, + postcode: shipping.postcode, + country: shipping.country, + ); + } + + Future _loadAddresses() async { + setState(() { + _isLoadingAddresses = true; + }); + + try { + // Hole letzte Bestellung für Adressen + final orders = await _orderService.getOrders(perPage: 1); + if (orders.isNotEmpty) { + setState(() { + _billingAddress = _convertBillingAddress(orders[0].billing); + _shippingAddress = _convertShippingAddress(orders[0].shipping); + }); + } + } catch (e) { + // Fehler ignorieren - Adressen sind optional + } finally { + setState(() { + _isLoadingAddresses = false; + }); + } + } + + Future _updateProfile() async { + final userProvider = Provider.of(context, listen: false); + if (userProvider.user == null) return; + + final firstName = userProvider.user!.firstName ?? ''; + final lastName = userProvider.user!.lastName ?? ''; + + showDialog( + context: context, + builder: (context) => _ProfileEditDialog( + firstName: firstName, + lastName: lastName, + email: userProvider.user!.email, + onSave: (firstName, lastName, email) async { + final updatedUser = await _authService.updateProfile( + firstName: firstName, + lastName: lastName, + email: email, + ); + + if (updatedUser != null && mounted) { + await userProvider.refreshUser(); + Navigator.pop(context); + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Profil erfolgreich aktualisiert'), + backgroundColor: Colors.green, + ), + ); + } else { + if (mounted) { + Navigator.pop(context); + ErrorHandler.showError(context, 'Fehler beim Aktualisieren des Profils'); + } + } + }, + ), + ); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Mein Profil'), + actions: [ + IconButton( + icon: const Icon(Icons.edit), + onPressed: _updateProfile, + ), + ], + ), + body: Consumer( + builder: (context, userProvider, child) { + if (userProvider.user == null) { + return Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Icon(Icons.account_circle, size: 64, color: Colors.grey), + const SizedBox(height: 16), + const Text('Bitte melde dich an'), + const SizedBox(height: 16), + ElevatedButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const LoginScreen(), + ), + ); + }, + child: const Text('Anmelden'), + ), + ], + ), + ); + } + + final user = userProvider.user!; + + return SingleChildScrollView( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Profil-Header + Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Row( + children: [ + CircleAvatar( + radius: 40, + backgroundColor: const Color(0xFF8B6F47), + child: Text( + user.fullName[0].toUpperCase(), + style: const TextStyle( + fontSize: 32, + color: Colors.white, + fontWeight: FontWeight.bold, + ), + ), + ), + const SizedBox(width: 16), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + user.fullName, + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 4), + Text( + user.email, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey[600], + ), + ), + ], + ), + ), + ], + ), + ), + ), + const SizedBox(height: 24), + + // Menü-Optionen + Text( + 'Konto', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 12), + Card( + child: Column( + children: [ + ListTile( + leading: const Icon(Icons.shopping_bag), + title: const Text('Meine Bestellungen'), + trailing: const Icon(Icons.chevron_right), + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const OrdersScreen(), + ), + ); + }, + ), + const Divider(height: 1), + ListTile( + leading: const Icon(Icons.person), + title: const Text('Profil bearbeiten'), + trailing: const Icon(Icons.chevron_right), + onTap: _updateProfile, + ), + ], + ), + ), + const SizedBox(height: 24), + + // Adressen + Text( + 'Adressen', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 12), + if (_isLoadingAddresses) + const LoadingWidget() + else ...[ + if (_billingAddress != null && !_billingAddress!.isEmpty) + Card( + child: ListTile( + leading: const Icon(Icons.home), + title: const Text('Rechnungsadresse'), + subtitle: Text(_billingAddress!.fullAddress), + trailing: const Icon(Icons.chevron_right), + onTap: () { + _showAddressDialog('Rechnungsadresse', _billingAddress!); + }, + ), + ), + if (_shippingAddress != null && !_shippingAddress!.isEmpty) + Card( + margin: const EdgeInsets.only(top: 8), + child: ListTile( + leading: const Icon(Icons.local_shipping), + title: const Text('Lieferadresse'), + subtitle: Text(_shippingAddress!.fullAddress), + trailing: const Icon(Icons.chevron_right), + onTap: () { + _showAddressDialog('Lieferadresse', _shippingAddress!); + }, + ), + ), + if ((_billingAddress == null || _billingAddress!.isEmpty) && + (_shippingAddress == null || _shippingAddress!.isEmpty)) + Card( + child: const Padding( + padding: EdgeInsets.all(16), + child: Text('Keine Adressen gespeichert'), + ), + ), + ], + const SizedBox(height: 24), + + // Abmelden + SizedBox( + width: double.infinity, + child: OutlinedButton.icon( + onPressed: () async { + await userProvider.logout(); + if (mounted) { + Navigator.of(context).pushAndRemoveUntil( + MaterialPageRoute( + builder: (context) => const LoginScreen(), + ), + (route) => false, + ); + } + }, + icon: const Icon(Icons.logout, color: Colors.red), + label: const Text( + 'Abmelden', + style: TextStyle(color: Colors.red), + ), + style: OutlinedButton.styleFrom( + padding: const EdgeInsets.symmetric(vertical: 16), + ), + ), + ), + ], + ), + ); + }, + ), + ); + } + + void _showAddressDialog(String title, Address address) { + showDialog( + context: context, + builder: (context) => AlertDialog( + title: Text(title), + content: SingleChildScrollView( + child: Text(address.fullAddress), + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(context), + child: const Text('Schließen'), + ), + ], + ), + ); + } +} + +class _ProfileEditDialog extends StatefulWidget { + final String firstName; + final String lastName; + final String email; + final Function(String, String, String) onSave; + + const _ProfileEditDialog({ + required this.firstName, + required this.lastName, + required this.email, + required this.onSave, + }); + + @override + State<_ProfileEditDialog> createState() => _ProfileEditDialogState(); +} + +class _ProfileEditDialogState extends State<_ProfileEditDialog> { + late TextEditingController _firstNameController; + late TextEditingController _lastNameController; + late TextEditingController _emailController; + + @override + void initState() { + super.initState(); + _firstNameController = TextEditingController(text: widget.firstName); + _lastNameController = TextEditingController(text: widget.lastName); + _emailController = TextEditingController(text: widget.email); + } + + @override + void dispose() { + _firstNameController.dispose(); + _lastNameController.dispose(); + _emailController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + return AlertDialog( + title: const Text('Profil bearbeiten'), + content: SingleChildScrollView( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + TextField( + controller: _firstNameController, + decoration: const InputDecoration( + labelText: 'Vorname', + border: OutlineInputBorder(), + ), + ), + const SizedBox(height: 12), + TextField( + controller: _lastNameController, + decoration: const InputDecoration( + labelText: 'Nachname', + border: OutlineInputBorder(), + ), + ), + const SizedBox(height: 12), + TextField( + controller: _emailController, + decoration: const InputDecoration( + labelText: 'E-Mail', + border: OutlineInputBorder(), + ), + keyboardType: TextInputType.emailAddress, + ), + ], + ), + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(context), + child: const Text('Abbrechen'), + ), + ElevatedButton( + onPressed: () { + widget.onSave( + _firstNameController.text.trim(), + _lastNameController.text.trim(), + _emailController.text.trim(), + ); + }, + child: const Text('Speichern'), + ), + ], + ); + } +} + diff --git a/lib/screens/register_screen.dart b/lib/screens/register_screen.dart new file mode 100644 index 0000000..55abeaf --- /dev/null +++ b/lib/screens/register_screen.dart @@ -0,0 +1,353 @@ +import 'package:flutter/material.dart'; +import 'package:email_validator/email_validator.dart'; +import '../services/auth_service.dart'; +import '../utils/error_handler.dart'; +import 'login_screen.dart'; + +class RegisterScreen extends StatefulWidget { + const RegisterScreen({super.key}); + + @override + State createState() => _RegisterScreenState(); +} + +class _RegisterScreenState extends State { + final _formKey = GlobalKey(); + final _emailController = TextEditingController(); + final _usernameController = TextEditingController(); + final _passwordController = TextEditingController(); + final _confirmPasswordController = TextEditingController(); + final _firstNameController = TextEditingController(); + final _lastNameController = TextEditingController(); + bool _obscurePassword = true; + bool _obscureConfirmPassword = true; + bool _isLoading = false; + bool _acceptTerms = false; + + @override + void dispose() { + _emailController.dispose(); + _usernameController.dispose(); + _passwordController.dispose(); + _confirmPasswordController.dispose(); + _firstNameController.dispose(); + _lastNameController.dispose(); + super.dispose(); + } + + Future _handleRegister() async { + if (!_formKey.currentState!.validate()) { + return; + } + + if (!_acceptTerms) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Bitte akzeptiere die Nutzungsbedingungen'), + backgroundColor: Colors.red, + ), + ); + return; + } + + setState(() { + _isLoading = true; + }); + + try { + final authService = AuthService(); + final result = await authService.register( + email: _emailController.text.trim(), + username: _usernameController.text.trim(), + password: _passwordController.text, + firstName: _firstNameController.text.trim(), + lastName: _lastNameController.text.trim(), + ); + + if (mounted) { + setState(() { + _isLoading = false; + }); + + if (result['success'] == true) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Registrierung erfolgreich! Du kannst dich jetzt anmelden.'), + backgroundColor: Colors.green, + ), + ); + Navigator.of(context).pop(); + } else { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(result['message'] ?? 'Registrierung fehlgeschlagen'), + backgroundColor: Colors.red, + ), + ); + } + } + } catch (e) { + if (mounted) { + setState(() { + _isLoading = false; + }); + ErrorHandler.showError(context, e); + } + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Registrieren'), + ), + body: SafeArea( + child: SingleChildScrollView( + padding: const EdgeInsets.all(24), + child: Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Icon( + Icons.person_add, + size: 80, + color: Theme.of(context).primaryColor, + ), + const SizedBox(height: 16), + Text( + 'Account erstellen', + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: 32), + + // Vorname + TextFormField( + controller: _firstNameController, + decoration: InputDecoration( + labelText: 'Vorname', + prefixIcon: const Icon(Icons.person), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + textInputAction: TextInputAction.next, + ), + const SizedBox(height: 16), + + // Nachname + TextFormField( + controller: _lastNameController, + decoration: InputDecoration( + labelText: 'Nachname', + prefixIcon: const Icon(Icons.person_outline), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + textInputAction: TextInputAction.next, + ), + const SizedBox(height: 16), + + // E-Mail + TextFormField( + controller: _emailController, + decoration: InputDecoration( + labelText: 'E-Mail', + prefixIcon: const Icon(Icons.email), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + keyboardType: TextInputType.emailAddress, + textInputAction: TextInputAction.next, + validator: (value) { + if (value == null || value.isEmpty) { + return 'Bitte gib deine E-Mail ein'; + } + if (!EmailValidator.validate(value)) { + return 'Bitte gib eine gültige E-Mail ein'; + } + return null; + }, + ), + const SizedBox(height: 16), + + // Benutzername + TextFormField( + controller: _usernameController, + decoration: InputDecoration( + labelText: 'Benutzername', + prefixIcon: const Icon(Icons.account_circle), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + textInputAction: TextInputAction.next, + validator: (value) { + if (value == null || value.isEmpty) { + return 'Bitte gib einen Benutzernamen ein'; + } + if (value.length < 3) { + return 'Benutzername muss mindestens 3 Zeichen lang sein'; + } + return null; + }, + ), + const SizedBox(height: 16), + + // Passwort + TextFormField( + controller: _passwordController, + decoration: InputDecoration( + labelText: 'Passwort', + prefixIcon: const Icon(Icons.lock), + suffixIcon: IconButton( + icon: Icon( + _obscurePassword ? Icons.visibility : Icons.visibility_off, + ), + onPressed: () { + setState(() { + _obscurePassword = !_obscurePassword; + }); + }, + ), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + obscureText: _obscurePassword, + textInputAction: TextInputAction.next, + validator: (value) { + if (value == null || value.isEmpty) { + return 'Bitte gib ein Passwort ein'; + } + if (value.length < 6) { + return 'Passwort muss mindestens 6 Zeichen lang sein'; + } + return null; + }, + ), + const SizedBox(height: 16), + + // Passwort bestätigen + TextFormField( + controller: _confirmPasswordController, + decoration: InputDecoration( + labelText: 'Passwort bestätigen', + prefixIcon: const Icon(Icons.lock_outline), + suffixIcon: IconButton( + icon: Icon( + _obscureConfirmPassword ? Icons.visibility : Icons.visibility_off, + ), + onPressed: () { + setState(() { + _obscureConfirmPassword = !_obscureConfirmPassword; + }); + }, + ), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + obscureText: _obscureConfirmPassword, + textInputAction: TextInputAction.done, + onFieldSubmitted: (_) => _handleRegister(), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Bitte bestätige dein Passwort'; + } + if (value != _passwordController.text) { + return 'Passwörter stimmen nicht überein'; + } + return null; + }, + ), + const SizedBox(height: 16), + + // Nutzungsbedingungen + Row( + children: [ + Checkbox( + value: _acceptTerms, + onChanged: (value) { + setState(() { + _acceptTerms = value ?? false; + }); + }, + ), + Expanded( + child: GestureDetector( + onTap: () { + setState(() { + _acceptTerms = !_acceptTerms; + }); + }, + child: Text( + 'Ich akzeptiere die Nutzungsbedingungen und Datenschutzerklärung', + style: Theme.of(context).textTheme.bodySmall, + ), + ), + ), + ], + ), + const SizedBox(height: 24), + + // Registrieren Button + ElevatedButton( + onPressed: _isLoading ? null : _handleRegister, + style: ElevatedButton.styleFrom( + backgroundColor: const Color(0xFF8B6F47), + foregroundColor: Colors.white, + padding: const EdgeInsets.symmetric(vertical: 16), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(8), + ), + ), + child: _isLoading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + valueColor: AlwaysStoppedAnimation(Colors.white), + ), + ) + : const Text( + 'Registrieren', + style: TextStyle(fontSize: 16), + ), + ), + const SizedBox(height: 16), + + // Link zum Login + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Text('Bereits ein Konto? '), + TextButton( + onPressed: () { + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => const LoginScreen(), + ), + ); + }, + child: const Text('Jetzt anmelden'), + ), + ], + ), + ], + ), + ), + ), + ), + ); + } +} + diff --git a/lib/screens/search_screen.dart b/lib/screens/search_screen.dart new file mode 100644 index 0000000..14ce039 --- /dev/null +++ b/lib/screens/search_screen.dart @@ -0,0 +1,201 @@ +import 'package:flutter/material.dart'; +import '../models/product.dart'; +import '../services/woocommerce_service.dart'; +import '../services/analytics_service.dart'; +import '../widgets/product_card.dart'; +import '../widgets/loading_widget.dart'; +import '../widgets/retry_widget.dart'; +import '../utils/error_handler.dart'; +import 'product_detail_screen.dart'; + +class SearchScreen extends StatefulWidget { + const SearchScreen({super.key}); + + @override + State createState() => _SearchScreenState(); +} + +class _SearchScreenState extends State { + final WooCommerceService _wooCommerceService = WooCommerceService(); + final TextEditingController _searchController = TextEditingController(); + List _products = []; + bool _isLoading = false; + String? _error; + String _lastSearchQuery = ''; + + @override + void dispose() { + _searchController.dispose(); + super.dispose(); + } + + Future _performSearch(String query) async { + if (query.trim().isEmpty) { + setState(() { + _products = []; + _error = null; + }); + return; + } + + setState(() { + _isLoading = true; + _error = null; + _lastSearchQuery = query; + }); + + // Track Search + AnalyticsService.trackSearch(query); + + try { + final products = await _wooCommerceService.getProducts( + search: query, + perPage: 50, + ); + + setState(() { + _products = products; + _isLoading = false; + }); + } catch (e) { + setState(() { + _error = e.toString(); + _isLoading = false; + }); + ErrorHandler.showError(context, e); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Suche'), + ), + body: Column( + children: [ + // Suchleiste + Padding( + padding: const EdgeInsets.all(16), + child: TextField( + controller: _searchController, + decoration: InputDecoration( + hintText: 'Produkte suchen...', + prefixIcon: const Icon(Icons.search), + suffixIcon: _searchController.text.isNotEmpty + ? IconButton( + icon: const Icon(Icons.clear), + onPressed: () { + _searchController.clear(); + _performSearch(''); + }, + ) + : null, + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + ), + filled: true, + fillColor: Colors.grey[100], + ), + textInputAction: TextInputAction.search, + onSubmitted: _performSearch, + onChanged: (value) { + setState(() {}); + // Optional: Live-Suche mit Debounce + // _debounceSearch(value); + }, + ), + ), + + // Ergebnisse + Expanded( + child: _isLoading + ? const LoadingWidget(message: 'Suche läuft...') + : _error != null + ? RetryWidget( + message: 'Fehler bei der Suche', + onRetry: () => _performSearch(_lastSearchQuery), + ) + : _products.isEmpty && _lastSearchQuery.isNotEmpty + ? Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon( + Icons.search_off, + size: 64, + color: Colors.grey[400], + ), + const SizedBox(height: 16), + Text( + 'Keine Ergebnisse gefunden', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + color: Colors.grey[600], + ), + ), + const SizedBox(height: 8), + Text( + 'Versuche es mit anderen Suchbegriffen', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey[500], + ), + ), + ], + ), + ) + : _products.isEmpty + ? Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon( + Icons.search, + size: 64, + color: Colors.grey[400], + ), + const SizedBox(height: 16), + Text( + 'Suche nach Produkten', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + color: Colors.grey[600], + ), + ), + ], + ), + ) + : GridView.builder( + padding: const EdgeInsets.all(16), + gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( + crossAxisCount: 2, + crossAxisSpacing: 16, + mainAxisSpacing: 16, + childAspectRatio: 0.75, + ), + itemCount: _products.length, + itemBuilder: (context, index) { + return ProductCard( + product: _products[index], + onTap: () { + AnalyticsService.trackProductView( + _products[index].id, + _products[index].name, + ); + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => ProductDetailScreen( + product: _products[index], + ), + ), + ); + }, + ); + }, + ), + ), + ], + ), + ); + } +} + diff --git a/lib/services/analytics_service.dart b/lib/services/analytics_service.dart new file mode 100644 index 0000000..037ff84 --- /dev/null +++ b/lib/services/analytics_service.dart @@ -0,0 +1,132 @@ +import 'dart:convert'; +import 'package:http/http.dart' as http; + +/// Analytics Service für Umami Integration +/// +/// Umami ist eine datenschutzfreundliche Analytics-Lösung. +/// Konfiguriere deine Umami-URL und Website-ID in den statischen Variablen. +class AnalyticsService { + // Ersetze mit deiner Umami-Instanz URL + static const String umamiUrl = 'https://analytics.hyggecraftery.com'; + + // Ersetze mit deiner Website-ID von Umami + static const String websiteId = 'c43cd023-ff64-43c8-a42a-ac23d32366f6'; + + // Optionale API-Key für Authentifizierung + static const String? apiKey = null; + + /// Sendet ein Event an Umami + static Future trackEvent({ + required String eventName, + Map? eventData, + String? url, + String? referrer, + }) async { + try { + final uri = Uri.parse('$umamiUrl/api/send'); + + final payload = { + 'website': websiteId, + 'hostname': 'hyggecraftery.com', + 'url': url ?? '/', + 'referrer': referrer, + 'name': eventName, + 'data': eventData ?? {}, + }; + + final headers = { + 'Content-Type': 'application/json', + }; + + if (apiKey != null) { + headers['Authorization'] = 'Bearer $apiKey'; + } + + final response = await http.post( + uri, + headers: headers, + body: json.encode(payload), + ); + + if (response.statusCode != 200) { + print('Umami Tracking Fehler: ${response.statusCode}'); + } + } catch (e) { + // Fail silently - Analytics sollten die App nicht blockieren + print('Analytics Fehler: $e'); + } + } + + /// Trackt einen Page View + static Future trackPageView(String page) async { + await trackEvent( + eventName: 'pageview', + url: page, + ); + } + + /// Trackt eine Produktansicht + static Future trackProductView(int productId, String productName) async { + await trackEvent( + eventName: 'product_view', + eventData: { + 'product_id': productId, + 'product_name': productName, + }, + ); + } + + /// Trackt einen "Zum Warenkorb hinzufügen" Event + static Future trackAddToCart(int productId, String productName, double price) async { + await trackEvent( + eventName: 'add_to_cart', + eventData: { + 'product_id': productId, + 'product_name': productName, + 'price': price, + }, + ); + } + + /// Trackt einen Checkout-Start + static Future trackCheckoutStart(double total) async { + await trackEvent( + eventName: 'checkout_start', + eventData: { + 'total': total, + }, + ); + } + + /// Trackt eine erfolgreiche Bestellung + static Future trackPurchase(int orderId, double total) async { + await trackEvent( + eventName: 'purchase', + eventData: { + 'order_id': orderId, + 'total': total, + }, + ); + } + + /// Trackt eine Suche + static Future trackSearch(String searchQuery) async { + await trackEvent( + eventName: 'search', + eventData: { + 'query': searchQuery, + }, + ); + } + + /// Trackt eine Kategorie-Ansicht + static Future trackCategoryView(String categoryName) async { + await trackEvent( + eventName: 'category_view', + eventData: { + 'category': categoryName, + }, + ); + } +} + diff --git a/lib/services/auth_service.dart b/lib/services/auth_service.dart new file mode 100644 index 0000000..2770848 --- /dev/null +++ b/lib/services/auth_service.dart @@ -0,0 +1,285 @@ +import 'dart:convert'; +import 'package:http/http.dart' as http; +import 'package:shared_preferences/shared_preferences.dart'; +import '../models/user.dart'; +import 'woocommerce_service.dart'; + +class AuthService { + static const String _userKey = 'user_data'; + static const String _tokenKey = 'auth_token'; + + /// Meldet einen Benutzer an + /// + /// Verwendet die WordPress REST API für die Authentifizierung + Future login(String username, String password) async { + try { + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/jwt-auth/v1/token'); + + final response = await http.post( + uri, + headers: {'Content-Type': 'application/json'}, + body: json.encode({ + 'username': username, + 'password': password, + }), + ); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + + if (data['token'] != null) { + // Speichere Token + final prefs = await SharedPreferences.getInstance(); + await prefs.setString(_tokenKey, data['token']); + + // Hole Benutzerdaten + final user = await getUserData(data['token']); + + if (user != null) { + await saveUser(user); + return user; + } + } + } else if (response.statusCode == 403) { + // JWT Auth Plugin nicht installiert, verwende alternative Methode + return await _loginAlternative(username, password); + } + + return null; + } catch (e) { + print('Login-Fehler: $e'); + return null; + } + } + + /// Alternative Login-Methode über WooCommerce REST API + Future _loginAlternative(String username, String password) async { + try { + // Verwende Basic Auth mit WooCommerce API + final credentials = base64Encode(utf8.encode('$username:$password')); + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wc/v3/customers'); + + final response = await http.get( + uri, + headers: { + 'Authorization': 'Basic $credentials', + }, + ); + + if (response.statusCode == 200) { + // Suche nach dem Benutzer mit dieser E-Mail/Username + final customers = json.decode(response.body) as List; + final customer = customers.firstWhere( + (c) => c['email'] == username || c['username'] == username, + orElse: () => null, + ); + + if (customer != null) { + final user = User.fromJson(customer); + await saveUser(user); + // Speichere Credentials für spätere API-Calls + final prefs = await SharedPreferences.getInstance(); + await prefs.setString('username', username); + await prefs.setString('password', password); // In Produktion verschlüsseln! + return user; + } + } + + return null; + } catch (e) { + print('Alternative Login-Fehler: $e'); + return null; + } + } + + /// Holt Benutzerdaten mit Token + Future getUserData(String token) async { + try { + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wp/v2/users/me'); + + final response = await http.get( + uri, + headers: { + 'Authorization': 'Bearer $token', + }, + ); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + return User.fromJson(data); + } + + return null; + } catch (e) { + print('Fehler beim Abrufen der Benutzerdaten: $e'); + return null; + } + } + + /// Speichert Benutzerdaten lokal + Future saveUser(User user) async { + final prefs = await SharedPreferences.getInstance(); + await prefs.setString(_userKey, json.encode(user.toJson())); + } + + /// Lädt gespeicherten Benutzer + Future getSavedUser() async { + try { + final prefs = await SharedPreferences.getInstance(); + final userJson = prefs.getString(_userKey); + + if (userJson != null) { + final userData = json.decode(userJson); + return User.fromJson(userData); + } + + return null; + } catch (e) { + print('Fehler beim Laden des gespeicherten Benutzers: $e'); + return null; + } + } + + /// Prüft ob Benutzer eingeloggt ist + Future isLoggedIn() async { + final user = await getSavedUser(); + return user != null; + } + + /// Meldet den Benutzer ab + Future logout() async { + final prefs = await SharedPreferences.getInstance(); + await prefs.remove(_userKey); + await prefs.remove(_tokenKey); + await prefs.remove('username'); + await prefs.remove('password'); + } + + /// Holt das gespeicherte Token + Future getToken() async { + final prefs = await SharedPreferences.getInstance(); + return prefs.getString(_tokenKey); + } + + /// Registriert einen neuen Benutzer + Future> register({ + required String email, + required String username, + required String password, + String? firstName, + String? lastName, + }) async { + try { + // Versuche WordPress REST API + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wp/v2/users'); + + final response = await http.post( + uri, + headers: {'Content-Type': 'application/json'}, + body: json.encode({ + 'username': username, + 'email': email, + 'password': password, + 'first_name': firstName ?? '', + 'last_name': lastName ?? '', + }), + ); + + if (response.statusCode == 201) { + final data = json.decode(response.body); + return {'success': true, 'user_id': data['id']}; + } else { + final error = json.decode(response.body); + return { + 'success': false, + 'message': error['message'] ?? 'Registrierung fehlgeschlagen', + }; + } + } catch (e) { + return { + 'success': false, + 'message': 'Fehler bei der Registrierung: $e', + }; + } + } + + /// Sendet Passwort-Reset-E-Mail + Future> requestPasswordReset(String email) async { + try { + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/bdpwr/v1/reset-password'); + + final response = await http.post( + uri, + headers: {'Content-Type': 'application/json'}, + body: json.encode({'email': email}), + ); + + if (response.statusCode == 200) { + return {'success': true, 'message': 'Reset-Link wurde per E-Mail gesendet'}; + } else { + // Fallback: WordPress Standard + final uri2 = Uri.parse('${WooCommerceService.baseUrl}/wp-login.php?action=lostpassword'); + final response2 = await http.post( + uri2, + headers: {'Content-Type': 'application/x-www-form-urlencoded'}, + body: 'user_login=$email', + ); + + return { + 'success': response2.statusCode == 200, + 'message': 'Bitte prüfe deine E-Mails für den Reset-Link', + }; + } + } catch (e) { + return { + 'success': false, + 'message': 'Fehler beim Anfordern des Passwort-Resets: $e', + }; + } + } + + /// Aktualisiert Benutzerprofil + Future updateProfile({ + required String firstName, + required String lastName, + String? email, + String? displayName, + }) async { + try { + final token = await getToken(); + if (token == null) return null; + + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wp/v2/users/me'); + + final body = { + 'first_name': firstName, + 'last_name': lastName, + }; + + if (email != null) body['email'] = email; + if (displayName != null) body['name'] = displayName; + + final response = await http.post( + uri, + headers: { + 'Authorization': 'Bearer $token', + 'Content-Type': 'application/json', + }, + body: json.encode(body), + ); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + final user = User.fromJson(data); + await saveUser(user); + return user; + } + + return null; + } catch (e) { + print('Fehler beim Aktualisieren des Profils: $e'); + return null; + } + } +} + diff --git a/lib/services/coupon_service.dart b/lib/services/coupon_service.dart new file mode 100644 index 0000000..29cc866 --- /dev/null +++ b/lib/services/coupon_service.dart @@ -0,0 +1,82 @@ +import 'dart:convert'; +import 'package:http/http.dart' as http; +import '../models/coupon.dart'; +import 'woocommerce_service.dart'; + +class CouponService { + /// Validiert einen Gutschein-Code + Future validateCoupon(String code) async { + try { + final queryParams = { + 'code': code, + 'status': 'publish', + 'consumer_key': WooCommerceService.consumerKey, + 'consumer_secret': WooCommerceService.consumerSecret, + }; + + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wc/v3/coupons').replace( + queryParameters: queryParams, + ); + + final response = await http.get(uri); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + + if (data.isNotEmpty) { + final couponData = data[0]; + return Coupon( + code: couponData['code'] ?? code, + description: couponData['description'], + discountType: couponData['discount_type'] ?? 'fixed_cart', + amount: couponData['amount'] ?? '0', + isValid: true, + ); + } else { + return Coupon( + code: code, + discountType: 'fixed_cart', + amount: '0', + isValid: false, + errorMessage: 'Gutschein-Code nicht gefunden', + ); + } + } else { + return Coupon( + code: code, + discountType: 'fixed_cart', + amount: '0', + isValid: false, + errorMessage: 'Fehler beim Validieren des Gutscheins', + ); + } + } catch (e) { + return Coupon( + code: code, + discountType: 'fixed_cart', + amount: '0', + isValid: false, + errorMessage: 'Fehler: $e', + ); + } + } + + /// Berechnet den Rabatt für einen Warenkorb + double calculateDiscount(Coupon coupon, double cartTotal) { + if (!coupon.isValid) return 0.0; + + final amount = double.tryParse(coupon.amount) ?? 0.0; + + switch (coupon.discountType) { + case 'percent': + case 'percent_product': + return (cartTotal * amount) / 100; + case 'fixed_cart': + case 'fixed_product': + return amount; + default: + return 0.0; + } + } +} + diff --git a/lib/services/order_service.dart b/lib/services/order_service.dart new file mode 100644 index 0000000..2d1397b --- /dev/null +++ b/lib/services/order_service.dart @@ -0,0 +1,154 @@ +import 'dart:convert'; +import 'package:http/http.dart' as http; +import 'package:shared_preferences/shared_preferences.dart'; +import '../models/order.dart'; +import '../services/auth_service.dart'; +import 'woocommerce_service.dart'; + +class OrderService { + final AuthService _authService = AuthService(); + + /// Holt alle Bestellungen des eingeloggten Benutzers + Future> getOrders({int perPage = 20, int page = 1}) async { + try { + // Versuche zuerst mit JWT Token + final token = await _authService.getToken(); + + if (token != null) { + return await _getOrdersWithToken(token, perPage, page); + } + + // Fallback: Verwende WooCommerce Customer API + return await _getOrdersWithCredentials(perPage, page); + } catch (e) { + throw Exception('Fehler beim Abrufen der Bestellungen: $e'); + } + } + + Future> _getOrdersWithToken(String token, int perPage, int page) async { + try { + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wc/v3/orders').replace( + queryParameters: { + 'per_page': perPage.toString(), + 'page': page.toString(), + 'customer': 'me', // Holt Bestellungen des aktuellen Benutzers + }, + ); + + final response = await http.get( + uri, + headers: { + 'Authorization': 'Bearer $token', + }, + ); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data.map((json) => Order.fromJson(json)).toList(); + } else { + throw Exception('Fehler: ${response.statusCode}'); + } + } catch (e) { + // Fallback zur Credentials-Methode + return await _getOrdersWithCredentials(perPage, page); + } + } + + Future> _getOrdersWithCredentials(int perPage, int page) async { + try { + final prefs = await SharedPreferences.getInstance(); + final username = prefs.getString('username'); + final password = prefs.getString('password'); + + if (username == null || password == null) { + throw Exception('Nicht eingeloggt'); + } + + // Hole Customer ID + final customerId = await _getCustomerId(username, password); + if (customerId == null) { + throw Exception('Kunde nicht gefunden'); + } + + final credentials = base64Encode(utf8.encode('$username:$password')); + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wc/v3/orders').replace( + queryParameters: { + 'per_page': perPage.toString(), + 'page': page.toString(), + 'customer': customerId.toString(), + }, + ); + + final response = await http.get( + uri, + headers: { + 'Authorization': 'Basic $credentials', + }, + ); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data.map((json) => Order.fromJson(json)).toList(); + } else { + throw Exception('Fehler: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen der Bestellungen: $e'); + } + } + + Future _getCustomerId(String username, String password) async { + try { + final credentials = base64Encode(utf8.encode('$username:$password')); + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wc/v3/customers'); + + final response = await http.get( + uri, + headers: { + 'Authorization': 'Basic $credentials', + }, + ); + + if (response.statusCode == 200) { + final customers = json.decode(response.body) as List; + final customer = customers.firstWhere( + (c) => c['email'] == username || c['username'] == username, + orElse: () => null, + ); + + return customer != null ? customer['id'] : null; + } + } catch (e) { + print('Fehler beim Abrufen der Customer ID: $e'); + } + return null; + } + + /// Holt Details einer einzelnen Bestellung + Future getOrder(int orderId) async { + try { + final token = await _authService.getToken(); + + if (token != null) { + final uri = Uri.parse('${WooCommerceService.baseUrl}/wp-json/wc/v3/orders/$orderId'); + + final response = await http.get( + uri, + headers: { + 'Authorization': 'Bearer $token', + }, + ); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + return Order.fromJson(data); + } + } + + throw Exception('Nicht autorisiert'); + } catch (e) { + throw Exception('Fehler beim Abrufen der Bestellung: $e'); + } + } +} + diff --git a/lib/services/woocommerce_checkout_service.dart b/lib/services/woocommerce_checkout_service.dart new file mode 100644 index 0000000..ea31900 --- /dev/null +++ b/lib/services/woocommerce_checkout_service.dart @@ -0,0 +1,149 @@ +import 'dart:convert'; +import 'package:http/http.dart' as http; +import '../providers/cart_provider.dart'; +import 'woocommerce_service.dart'; + +/// Service für WooCommerce Checkout-Funktionalität +/// +/// Dieser Service bietet Methoden für den Checkout-Prozess. +/// Für die einfachste Lösung wird die WebView-basierte Checkout-Seite verwendet, +/// die alle WooCommerce-Einstellungen automatisch nutzt. +class WooCommerceCheckoutService { + static const String baseUrl = WooCommerceService.baseUrl; + static const String consumerKey = WooCommerceService.consumerKey; + static const String consumerSecret = WooCommerceService.consumerSecret; + + /// Erstellt eine Checkout-URL mit Warenkorb-Produkten + /// + /// Diese Methode erstellt eine URL, die direkt zur WooCommerce Checkout-Seite + /// führt und die Produkte aus dem Warenkorb automatisch hinzufügt. + static String buildCheckoutUrl(CartProvider cart) { + if (cart.items.isEmpty) { + return '$baseUrl/checkout/'; + } + + // Erstelle eine URL, die alle Produkte zum Warenkorb hinzufügt + // Format: /checkout/?add-to-cart=ID1,ID2,ID3 + final productIds = cart.items + .map((item) => '${item.product.id}:${item.quantity}') + .join(','); + + // Alternative: Verwende die WooCommerce Cart-Seite und leite dann weiter + // Oder direkt zur Checkout-Seite mit Produkten + return '$baseUrl/checkout/?add-to-cart=${cart.items.map((item) => item.product.id).join(',')}'; + } + + /// Erstellt eine Order über die WooCommerce REST API + /// + /// Diese Methode kann verwendet werden, wenn du einen nativen Checkout + /// implementieren möchtest. Sie erfordert Write-Berechtigungen für die API Keys. + /// + /// Hinweis: Für die einfachste Lösung wird die WebView-basierte Checkout-Seite + /// empfohlen, da sie alle WooCommerce-Einstellungen (Zahlungen, Versand, etc.) + /// automatisch nutzt. + static Future> createOrder({ + required CartProvider cart, + required Map billing, + Map? shipping, + String? paymentMethod, + }) async { + try { + final lineItems = cart.items.map((item) { + return { + 'product_id': item.product.id, + 'quantity': item.quantity, + }; + }).toList(); + + final orderData = { + 'payment_method': paymentMethod ?? 'bacs', + 'payment_method_title': paymentMethod ?? 'Direktüberweisung', + 'set_paid': false, + 'billing': billing, + 'shipping': shipping ?? billing, + 'line_items': lineItems, + 'shipping_lines': [], + }; + + final uri = Uri.parse('$baseUrl/wp-json/wc/v3/orders'); + + // Basic Auth für API + final credentials = base64Encode(utf8.encode('$consumerKey:$consumerSecret')); + final headers = { + 'Authorization': 'Basic $credentials', + 'Content-Type': 'application/json', + }; + + final response = await http.post( + uri, + headers: headers, + body: json.encode(orderData), + ); + + if (response.statusCode == 201) { + return json.decode(response.body); + } else { + throw Exception('Fehler beim Erstellen der Bestellung: ${response.statusCode} - ${response.body}'); + } + } catch (e) { + throw Exception('Fehler beim Checkout: $e'); + } + } + + /// Ruft verfügbare Zahlungsmethoden ab + static Future>> getPaymentMethods() async { + try { + final uri = Uri.parse('$baseUrl/wp-json/wc/v3/payment_gateways'); + + final credentials = base64Encode(utf8.encode('$consumerKey:$consumerSecret')); + final headers = { + 'Authorization': 'Basic $credentials', + }; + + final response = await http.get(uri, headers: headers); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data + .where((gateway) => gateway['enabled'] == true) + .map((gateway) => { + return { + 'id': gateway['id'], + 'title': gateway['title'], + 'description': gateway['description'], + }; + }) + .toList() + .cast>(); + } else { + throw Exception('Fehler beim Laden der Zahlungsmethoden: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen der Zahlungsmethoden: $e'); + } + } + + /// Ruft Versandoptionen ab + static Future>> getShippingMethods() async { + try { + final uri = Uri.parse('$baseUrl/wp-json/wc/v3/shipping/zones'); + + final credentials = base64Encode(utf8.encode('$consumerKey:$consumerSecret')); + final headers = { + 'Authorization': 'Basic $credentials', + }; + + final response = await http.get(uri, headers: headers); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data.cast>(); + } else { + throw Exception('Fehler beim Laden der Versandoptionen: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen der Versandoptionen: $e'); + } + } +} + diff --git a/lib/services/woocommerce_service.dart b/lib/services/woocommerce_service.dart new file mode 100644 index 0000000..7b485ce --- /dev/null +++ b/lib/services/woocommerce_service.dart @@ -0,0 +1,230 @@ +import 'dart:convert'; +import 'package:http/http.dart' as http; +import '../models/product.dart'; +import '../models/category.dart'; +import '../models/review.dart'; + +class WooCommerceService { + // Ersetze diese URL mit deiner WooCommerce Shop-URL + static const String baseUrl = 'https://hyggecraftery.com'; + static const String consumerKey = 'ck_ae583aa69ca3f962e14ae03faadd302937b8f3e2'; // Ersetze mit deinem Consumer Key + static const String consumerSecret = 'cs_3835315e5dc3c7e87c89a733e6c3e5ec8f76b70e'; // Ersetze mit deinem Consumer Secret + + // Öffentliche Zugriffe für andere Services + static String get shopUrl => baseUrl; + + // Für öffentliche Produkte (ohne Authentifizierung) + // Du kannst auch die WooCommerce REST API ohne Keys verwenden, wenn die Produkte öffentlich sind + static const String apiBaseUrl = '$baseUrl/wp-json/wc/v3'; + + /// Baut eine authentifizierte URL für WooCommerce API-Aufrufe + Uri _buildAuthenticatedUrl(String endpoint, Map? queryParams) { + final params = { + 'consumer_key': consumerKey, + 'consumer_secret': consumerSecret, + if (queryParams != null) ...queryParams, + }; + + return Uri.parse('$apiBaseUrl/$endpoint').replace( + queryParameters: params, + ); + } + + Future> getProducts({ + int perPage = 20, + int page = 1, + String? category, + String? search, + String? orderBy, + String? order, + double? minPrice, + double? maxPrice, + }) async { + try { + final queryParams = { + 'per_page': perPage.toString(), + 'page': page.toString(), + 'status': 'publish', + }; + + if (category != null) { + queryParams['category'] = category; + } + + if (search != null && search.isNotEmpty) { + queryParams['search'] = search; + } + + if (orderBy != null) { + queryParams['orderby'] = orderBy; + } + + if (order != null) { + queryParams['order'] = order; + } + + if (minPrice != null) { + queryParams['min_price'] = minPrice.toString(); + } + + if (maxPrice != null) { + queryParams['max_price'] = maxPrice.toString(); + } + + final uri = _buildAuthenticatedUrl('products', queryParams); + + final response = await http.get(uri); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data.map((json) => Product.fromJson(json)).toList(); + } else { + throw Exception('Fehler beim Laden der Produkte: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen der Produkte: $e'); + } + } + + Future getProduct(int productId) async { + try { + final uri = _buildAuthenticatedUrl('products/$productId', null); + + final response = await http.get(uri); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + return Product.fromJson(data); + } else { + throw Exception('Fehler beim Laden des Produkts: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen des Produkts: $e'); + } + } + + Future> getFeaturedProducts({int limit = 6}) async { + try { + final uri = _buildAuthenticatedUrl('products', { + 'featured': 'true', + 'per_page': limit.toString(), + 'status': 'publish', + }); + + final response = await http.get(uri); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data.map((json) => Product.fromJson(json)).toList(); + } else { + throw Exception('Fehler beim Laden der Featured Produkte: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen der Featured Produkte: $e'); + } + } + + /// Holt alle Kategorien + Future> getCategories({int? parent}) async { + try { + final queryParams = { + 'per_page': '100', + 'hide_empty': 'false', + }; + + if (parent != null) { + queryParams['parent'] = parent.toString(); + } + + final uri = _buildAuthenticatedUrl('products/categories', queryParams); + + final response = await http.get(uri); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data.map((json) => Category.fromJson(json)).toList(); + } else { + throw Exception('Fehler beim Laden der Kategorien: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen der Kategorien: $e'); + } + } + + /// Holt Bewertungen für ein Produkt + Future> getProductReviews(int productId, {int perPage = 10, int page = 1}) async { + try { + final uri = _buildAuthenticatedUrl('products/reviews', { + 'product': productId.toString(), + 'per_page': perPage.toString(), + 'page': page.toString(), + 'status': 'approved', + }); + + final response = await http.get(uri); + + if (response.statusCode == 200) { + final List data = json.decode(response.body); + return data.map((json) => Review.fromJson(json)).toList(); + } else { + throw Exception('Fehler beim Laden der Bewertungen: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Abrufen der Bewertungen: $e'); + } + } + + /// Holt Produktbewertungs-Statistiken + Future getProductRating(int productId) async { + try { + final product = await getProduct(productId); + + // WooCommerce speichert Rating-Daten im Produkt + final averageRating = double.tryParse(product.rating?.toString() ?? '0') ?? 0.0; + final ratingCount = product.ratingCount ?? 0; + + return ProductRating( + averageRating: averageRating, + ratingCount: ratingCount, + ratingBreakdown: {}, // Kann aus Reviews berechnet werden + ); + } catch (e) { + throw Exception('Fehler beim Abrufen der Bewertungsstatistik: $e'); + } + } + + /// Erstellt eine neue Bewertung + Future createReview({ + required int productId, + required String reviewer, + required String reviewerEmail, + required String review, + required int rating, + }) async { + try { + final uri = _buildAuthenticatedUrl('products/reviews', null); + + final response = await http.post( + uri, + headers: {'Content-Type': 'application/json'}, + body: json.encode({ + 'product_id': productId, + 'reviewer': reviewer, + 'reviewer_email': reviewerEmail, + 'review': review, + 'rating': rating, + 'status': 'pending', // Wird vom Admin genehmigt + }), + ); + + if (response.statusCode == 201) { + final data = json.decode(response.body); + return Review.fromJson(data); + } else { + throw Exception('Fehler beim Erstellen der Bewertung: ${response.statusCode}'); + } + } catch (e) { + throw Exception('Fehler beim Erstellen der Bewertung: $e'); + } + } +} diff --git a/lib/utils/error_handler.dart b/lib/utils/error_handler.dart new file mode 100644 index 0000000..c4f31fa --- /dev/null +++ b/lib/utils/error_handler.dart @@ -0,0 +1,81 @@ +import 'package:flutter/material.dart'; +import 'package:connectivity_plus/connectivity_plus.dart'; +import 'dart:io' if (dart.library.html) 'dart:html' as io; + +class ErrorHandler { + /// Zeigt eine benutzerfreundliche Fehlermeldung + static void showError(BuildContext context, dynamic error) { + String message = 'Ein Fehler ist aufgetreten'; + final errorString = error.toString().toLowerCase(); + + // Web-kompatible Fehlerbehandlung (ohne direkte Typ-Prüfungen für dart:io) + if (error is String) { + message = error; + } else if (errorString.contains('failed host lookup') || + errorString.contains('socketexception') || + errorString.contains('network') || + errorString.contains('connection')) { + message = 'Keine Internetverbindung. Bitte prüfe deine Verbindung.'; + } else if (errorString.contains('timeout') || + errorString.contains('timed out')) { + message = 'Zeitüberschreitung. Bitte versuche es erneut.'; + } else if (error is FormatException) { + message = 'Datenfehler. Bitte versuche es erneut.'; + } else if (errorString.contains('404') || errorString.contains('not found')) { + message = 'Nicht gefunden.'; + } else if (errorString.contains('401') || + errorString.contains('403') || + errorString.contains('unauthorized') || + errorString.contains('forbidden')) { + message = 'Nicht autorisiert. Bitte melde dich an.'; + } else if (errorString.contains('500') || + errorString.contains('server error') || + errorString.contains('internal server')) { + message = 'Server-Fehler. Bitte versuche es später erneut.'; + } + + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(message), + backgroundColor: Colors.red, + action: SnackBarAction( + label: 'OK', + textColor: Colors.white, + onPressed: () {}, + ), + ), + ); + } + + /// Prüft die Internetverbindung + static Future checkConnectivity() async { + try { + final connectivityResult = await Connectivity().checkConnectivity(); + return connectivityResult != ConnectivityResult.none; + } catch (e) { + return false; + } + } + + /// Zeigt einen Retry-Dialog + static Future showRetryDialog(BuildContext context, String message) async { + return await showDialog( + context: context, + builder: (context) => AlertDialog( + title: const Text('Fehler'), + content: Text(message), + actions: [ + TextButton( + onPressed: () => Navigator.of(context).pop(false), + child: const Text('Abbrechen'), + ), + ElevatedButton( + onPressed: () => Navigator.of(context).pop(true), + child: const Text('Erneut versuchen'), + ), + ], + ), + ) ?? false; + } +} + diff --git a/lib/widgets/loading_widget.dart b/lib/widgets/loading_widget.dart new file mode 100644 index 0000000..5f14a81 --- /dev/null +++ b/lib/widgets/loading_widget.dart @@ -0,0 +1,34 @@ +import 'package:flutter/material.dart'; + +class LoadingWidget extends StatelessWidget { + final String? message; + + const LoadingWidget({ + super.key, + this.message, + }); + + @override + Widget build(BuildContext context) { + return Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const CircularProgressIndicator( + valueColor: AlwaysStoppedAnimation(Color(0xFF8B6F47)), + ), + if (message != null) ...[ + const SizedBox(height: 16), + Text( + message!, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey[600], + ), + ), + ], + ], + ), + ); + } +} + diff --git a/lib/widgets/product_card.dart b/lib/widgets/product_card.dart new file mode 100644 index 0000000..8f3822c --- /dev/null +++ b/lib/widgets/product_card.dart @@ -0,0 +1,137 @@ +import 'package:flutter/material.dart'; +import 'package:cached_network_image/cached_network_image.dart'; +import '../models/product.dart'; + +class ProductCard extends StatelessWidget { + final Product product; + final VoidCallback onTap; + + const ProductCard({ + super.key, + required this.product, + required this.onTap, + }); + + @override + Widget build(BuildContext context) { + return Card( + clipBehavior: Clip.antiAlias, + child: InkWell( + onTap: onTap, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Produktbild + Expanded( + flex: 3, + child: Stack( + children: [ + if (product.imageUrl != null) + CachedNetworkImage( + imageUrl: product.imageUrl!, + width: double.infinity, + fit: BoxFit.cover, + placeholder: (context, url) => Container( + color: Colors.grey[300], + child: const Center( + child: CircularProgressIndicator(), + ), + ), + errorWidget: (context, url, error) => Container( + color: Colors.grey[300], + child: const Icon( + Icons.image_not_supported, + size: 48, + color: Colors.grey, + ), + ), + ) + else + Container( + color: Colors.grey[300], + child: const Icon( + Icons.image_not_supported, + size: 48, + color: Colors.grey, + ), + ), + + // Sale Badge + if (product.isOnSale) + Positioned( + top: 8, + right: 8, + child: Container( + padding: const EdgeInsets.symmetric( + horizontal: 8, + vertical: 4, + ), + decoration: BoxDecoration( + color: Colors.red, + borderRadius: BorderRadius.circular(4), + ), + child: Text( + 'Sale', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.white, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + ], + ), + ), + + // Produktinfo + Expanded( + flex: 2, + child: Padding( + padding: const EdgeInsets.all(8), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Produktname + Text( + product.name, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), + const Spacer(), + + // Preis + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + if (product.isOnSale) ...[ + Text( + '${product.regularPrice} €', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + decoration: TextDecoration.lineThrough, + color: Colors.grey, + ), + ), + ], + Text( + '${product.price} €', + style: Theme.of(context).textTheme.titleSmall?.copyWith( + color: const Color(0xFF8B6F47), + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ], + ), + ), + ), + ], + ), + ), + ); + } +} + diff --git a/lib/widgets/retry_widget.dart b/lib/widgets/retry_widget.dart new file mode 100644 index 0000000..802a408 --- /dev/null +++ b/lib/widgets/retry_widget.dart @@ -0,0 +1,52 @@ +import 'package:flutter/material.dart'; + +class RetryWidget extends StatelessWidget { + final String message; + final VoidCallback onRetry; + final IconData? icon; + + const RetryWidget({ + super.key, + required this.message, + required this.onRetry, + this.icon, + }); + + @override + Widget build(BuildContext context) { + return Center( + child: Padding( + padding: const EdgeInsets.all(24), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon( + icon ?? Icons.error_outline, + size: 64, + color: Colors.grey[400], + ), + const SizedBox(height: 16), + Text( + message, + style: Theme.of(context).textTheme.titleMedium?.copyWith( + color: Colors.grey[600], + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: 24), + ElevatedButton.icon( + onPressed: onRetry, + icon: const Icon(Icons.refresh), + label: const Text('Erneut versuchen'), + style: ElevatedButton.styleFrom( + backgroundColor: const Color(0xFF8B6F47), + foregroundColor: Colors.white, + ), + ), + ], + ), + ), + ); + } +} + diff --git a/lib/widgets/reviews_widget.dart b/lib/widgets/reviews_widget.dart new file mode 100644 index 0000000..aa5430a --- /dev/null +++ b/lib/widgets/reviews_widget.dart @@ -0,0 +1,219 @@ +import 'package:flutter/material.dart'; +import 'package:intl/intl.dart'; +import 'package:cached_network_image/cached_network_image.dart'; +import '../models/review.dart'; +import '../services/woocommerce_service.dart'; +import '../widgets/loading_widget.dart'; +import '../utils/error_handler.dart'; + +class ReviewsWidget extends StatefulWidget { + final int productId; + + const ReviewsWidget({ + super.key, + required this.productId, + }); + + @override + State createState() => _ReviewsWidgetState(); +} + +class _ReviewsWidgetState extends State { + final WooCommerceService _wooCommerceService = WooCommerceService(); + List _reviews = []; + ProductRating? _rating; + bool _isLoading = true; + String? _error; + + @override + void initState() { + super.initState(); + _loadReviews(); + } + + Future _loadReviews() async { + setState(() { + _isLoading = true; + _error = null; + }); + + try { + final reviews = await _wooCommerceService.getProductReviews(widget.productId); + final rating = await _wooCommerceService.getProductRating(widget.productId); + + setState(() { + _reviews = reviews; + _rating = rating; + _isLoading = false; + }); + } catch (e) { + setState(() { + _error = e.toString(); + _isLoading = false; + }); + } + } + + @override + Widget build(BuildContext context) { + if (_isLoading) { + return const LoadingWidget(); + } + + if (_error != null) { + return Center( + child: Column( + children: [ + Text('Fehler beim Laden der Bewertungen'), + ElevatedButton( + onPressed: _loadReviews, + child: const Text('Erneut versuchen'), + ), + ], + ), + ); + } + + return Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + if (_rating != null) _buildRatingSummary(_rating!), + const SizedBox(height: 16), + Text( + 'Bewertungen (${_reviews.length})', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 12), + if (_reviews.isEmpty) + const Padding( + padding: EdgeInsets.all(16.0), + child: Text('Noch keine Bewertungen'), + ) + else + ..._reviews.map((review) => _buildReviewCard(review)), + ], + ); + } + + Widget _buildRatingSummary(ProductRating rating) { + return Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: Colors.grey[100], + borderRadius: BorderRadius.circular(12), + ), + child: Row( + children: [ + Column( + children: [ + Text( + rating.averageRating.toStringAsFixed(1), + style: Theme.of(context).textTheme.headlineMedium?.copyWith( + fontWeight: FontWeight.bold, + color: const Color(0xFF8B6F47), + ), + ), + _buildStars(rating.averageRating), + Text( + '${rating.ratingCount} Bewertungen', + style: Theme.of(context).textTheme.bodySmall, + ), + ], + ), + ], + ), + ); + } + + Widget _buildStars(double rating) { + return Row( + mainAxisSize: MainAxisSize.min, + children: List.generate(5, (index) { + return Icon( + index < rating.floor() + ? Icons.star + : index < rating + ? Icons.star_half + : Icons.star_border, + color: Colors.amber, + size: 20, + ); + }), + ); + } + + Widget _buildReviewCard(Review review) { + final dateFormat = DateFormat('dd.MM.yyyy'); + + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: Padding( + padding: const EdgeInsets.all(12), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + if (review.reviewerAvatarUrl != null) + CircleAvatar( + radius: 20, + backgroundImage: CachedNetworkImageProvider(review.reviewerAvatarUrl!), + ) + else + CircleAvatar( + radius: 20, + child: Text(review.reviewer[0].toUpperCase()), + ), + const SizedBox(width: 12), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + review.reviewer, + style: Theme.of(context).textTheme.titleSmall?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + Text( + dateFormat.format(review.dateCreated), + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.grey[600], + ), + ), + ], + ), + ), + _buildStars(review.rating.toDouble()), + ], + ), + const SizedBox(height: 8), + Text( + review.review, + style: Theme.of(context).textTheme.bodyMedium, + ), + if (review.verified) + Padding( + padding: const EdgeInsets.only(top: 8), + child: Row( + children: [ + Icon(Icons.verified, size: 16, color: Colors.green), + const SizedBox(width: 4), + Text( + 'Verifizierter Kauf', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: Colors.green, + ), + ), + ], + ), + ), + ], + ), + ), + ); + } +} + diff --git a/macos/.DS_Store b/macos/.DS_Store new file mode 100644 index 0000000..100c1f2 Binary files /dev/null and b/macos/.DS_Store differ diff --git a/macos/.gitignore b/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/macos/Flutter/Flutter-Debug.xcconfig b/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/Flutter-Release.xcconfig b/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..bb50587 --- /dev/null +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,20 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + +import connectivity_plus +import path_provider_foundation +import shared_preferences_foundation +import sqflite_darwin +import webview_flutter_wkwebview + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + ConnectivityPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlugin")) + PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) + SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) + SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) + WebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "WebViewFlutterPlugin")) +} diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..7eac421 --- /dev/null +++ b/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,705 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* hyggecraftery.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "hyggecraftery.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* hyggecraftery.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* hyggecraftery.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.hyggecraftery.hyggecraftery.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/hyggecraftery.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/hyggecraftery"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.hyggecraftery.hyggecraftery.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/hyggecraftery.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/hyggecraftery"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.hyggecraftery.hyggecraftery.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/hyggecraftery.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/hyggecraftery"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..ae29d4a --- /dev/null +++ b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner.xcworkspace/contents.xcworkspacedata b/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner/.DS_Store b/macos/Runner/.DS_Store new file mode 100644 index 0000000..9543671 Binary files /dev/null and b/macos/Runner/.DS_Store differ diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..b3c1761 --- /dev/null +++ b/macos/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import Cocoa +import FlutterMacOS + +@main +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } + + override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { + return true + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000..82b6f9d Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000..13b35eb Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000..0a3f5fa Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png new file mode 100644 index 0000000..bdb5722 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png new file mode 100644 index 0000000..f083318 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png new file mode 100644 index 0000000..326c0e7 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000..2f1632c Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png differ diff --git a/macos/Runner/Base.lproj/MainMenu.xib b/macos/Runner/Base.lproj/MainMenu.xib new file mode 100644 index 0000000..80e867a --- /dev/null +++ b/macos/Runner/Base.lproj/MainMenu.xib @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..ffc4e70 --- /dev/null +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = hyggecraftery + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = com.hyggecraftery.hyggecraftery + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2026 com.hyggecraftery. All rights reserved. diff --git a/macos/Runner/Configs/Debug.xcconfig b/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Release.xcconfig b/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Warnings.xcconfig b/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/macos/Runner/DebugProfile.entitlements b/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..dddb8a3 --- /dev/null +++ b/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,12 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + + diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/macos/Runner/MainFlutterWindow.swift b/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..3cc05eb --- /dev/null +++ b/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/macos/Runner/Release.entitlements b/macos/Runner/Release.entitlements new file mode 100644 index 0000000..852fa1a --- /dev/null +++ b/macos/Runner/Release.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.security.app-sandbox + + + diff --git a/macos/RunnerTests/RunnerTests.swift b/macos/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..61f3bd1 --- /dev/null +++ b/macos/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Cocoa +import FlutterMacOS +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..4f2bb04 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,706 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + args: + dependency: transitive + description: + name: args + sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 + url: "https://pub.dev" + source: hosted + version: "2.7.0" + async: + dependency: transitive + description: + name: async + sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb" + url: "https://pub.dev" + source: hosted + version: "2.13.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + cached_network_image: + dependency: "direct main" + description: + name: cached_network_image + sha256: "7c1183e361e5c8b0a0f21a28401eecdbde252441106a9816400dd4c2b2424916" + url: "https://pub.dev" + source: hosted + version: "3.4.1" + cached_network_image_platform_interface: + dependency: transitive + description: + name: cached_network_image_platform_interface + sha256: "35814b016e37fbdc91f7ae18c8caf49ba5c88501813f73ce8a07027a395e2829" + url: "https://pub.dev" + source: hosted + version: "4.1.1" + cached_network_image_web: + dependency: transitive + description: + name: cached_network_image_web + sha256: "980842f4e8e2535b8dbd3d5ca0b1f0ba66bf61d14cc3a17a9b4788a3685ba062" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + characters: + dependency: transitive + description: + name: characters + sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + clock: + dependency: transitive + description: + name: clock + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b + url: "https://pub.dev" + source: hosted + version: "1.1.2" + collection: + dependency: transitive + description: + name: collection + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" + url: "https://pub.dev" + source: hosted + version: "1.19.1" + connectivity_plus: + dependency: "direct main" + description: + name: connectivity_plus + sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0" + url: "https://pub.dev" + source: hosted + version: "5.0.2" + connectivity_plus_platform_interface: + dependency: transitive + description: + name: connectivity_plus_platform_interface + sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a + url: "https://pub.dev" + source: hosted + version: "1.2.4" + crypto: + dependency: transitive + description: + name: crypto + sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf + url: "https://pub.dev" + source: hosted + version: "3.0.7" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6 + url: "https://pub.dev" + source: hosted + version: "1.0.8" + dbus: + dependency: transitive + description: + name: dbus + sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c" + url: "https://pub.dev" + source: hosted + version: "0.7.11" + dio: + dependency: "direct main" + description: + name: dio + sha256: d90ee57923d1828ac14e492ca49440f65477f4bb1263575900be731a3dac66a9 + url: "https://pub.dev" + source: hosted + version: "5.9.0" + dio_web_adapter: + dependency: transitive + description: + name: dio_web_adapter + sha256: "7586e476d70caecaf1686d21eee7247ea43ef5c345eab9e0cc3583ff13378d78" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + email_validator: + dependency: "direct main" + description: + name: email_validator + sha256: e9a90f27ab2b915a27d7f9c2a7ddda5dd752d6942616ee83529b686fc086221b + url: "https://pub.dev" + source: hosted + version: "2.1.17" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" + url: "https://pub.dev" + source: hosted + version: "1.3.3" + ffi: + dependency: transitive + description: + name: ffi + sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + file: + dependency: transitive + description: + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 + url: "https://pub.dev" + source: hosted + version: "7.0.1" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://pub.dev" + source: hosted + version: "1.1.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_cache_manager: + dependency: transitive + description: + name: flutter_cache_manager + sha256: "400b6592f16a4409a7f2bb929a9a7e38c72cceb8ffb99ee57bbf2cb2cecf8386" + url: "https://pub.dev" + source: hosted + version: "3.4.1" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + sha256: "87fbd7c534435b6c5d9d98b01e1fd527812b82e68ddd8bd35fc45ed0fa8f0a95" + url: "https://pub.dev" + source: hosted + version: "2.2.3" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + http: + dependency: "direct main" + description: + name: http + sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412" + url: "https://pub.dev" + source: hosted + version: "1.6.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" + url: "https://pub.dev" + source: hosted + version: "4.1.2" + intl: + dependency: "direct main" + description: + name: intl + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" + source: hosted + version: "0.18.1" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de" + url: "https://pub.dev" + source: hosted + version: "11.0.2" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" + url: "https://pub.dev" + source: hosted + version: "3.0.10" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + lints: + dependency: transitive + description: + name: lints + sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 + url: "https://pub.dev" + source: hosted + version: "0.12.17" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + url: "https://pub.dev" + source: hosted + version: "0.11.1" + meta: + dependency: transitive + description: + name: meta + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" + url: "https://pub.dev" + source: hosted + version: "1.17.0" + mime: + dependency: transitive + description: + name: mime + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + nm: + dependency: transitive + description: + name: nm + sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + octo_image: + dependency: transitive + description: + name: octo_image + sha256: "34faa6639a78c7e3cbe79be6f9f96535867e879748ade7d17c9b1ae7536293bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + path_provider: + dependency: transitive + description: + name: path_provider + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: f2c65e21139ce2c3dad46922be8272bb5963516045659e71bb16e151c93b580e + url: "https://pub.dev" + source: hosted + version: "2.2.22" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "6d13aece7b3f5c5a9731eaf553ff9dcbc2eff41087fd2df587fd0fed9a3eb0c4" + url: "https://pub.dev" + source: hosted + version: "2.5.1" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: "1a97266a94f7350d30ae522c0af07890c70b8e62c71e8e3920d1db4d23c057d1" + url: "https://pub.dev" + source: hosted + version: "7.0.1" + platform: + dependency: transitive + description: + name: platform + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" + url: "https://pub.dev" + source: hosted + version: "3.1.6" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + provider: + dependency: "direct main" + description: + name: provider + sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272" + url: "https://pub.dev" + source: hosted + version: "6.1.5+1" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" + url: "https://pub.dev" + source: hosted + version: "0.28.0" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + sha256: "2939ae520c9024cb197fc20dee269cd8cdbf564c8b5746374ec6cacdc5169e64" + url: "https://pub.dev" + source: hosted + version: "2.5.4" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: "83af5c682796c0f7719c2bbf74792d113e40ae97981b8f266fa84574573556bc" + url: "https://pub.dev" + source: hosted + version: "2.4.18" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "4e7eaffc2b17ba398759f1151415869a34771ba11ebbccd1b0145472a619a64f" + url: "https://pub.dev" + source: hosted + version: "2.5.6" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 + url: "https://pub.dev" + source: hosted + version: "2.4.3" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c" + url: "https://pub.dev" + source: hosted + version: "1.10.1" + sqflite: + dependency: transitive + description: + name: sqflite + sha256: e2297b1da52f127bc7a3da11439985d9b536f75070f3325e62ada69a5c585d03 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_android: + dependency: transitive + description: + name: sqflite_android + sha256: ecd684501ebc2ae9a83536e8b15731642b9570dc8623e0073d227d0ee2bfea88 + url: "https://pub.dev" + source: hosted + version: "2.4.2+2" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: "6ef422a4525ecc601db6c0a2233ff448c731307906e92cabc9ba292afaae16a6" + url: "https://pub.dev" + source: hosted + version: "2.5.6" + sqflite_darwin: + dependency: transitive + description: + name: sqflite_darwin + sha256: "279832e5cde3fe99e8571879498c9211f3ca6391b0d818df4e17d9fff5c6ccb3" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_platform_interface: + dependency: transitive + description: + name: sqflite_platform_interface + sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" + url: "https://pub.dev" + source: hosted + version: "2.4.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" + url: "https://pub.dev" + source: hosted + version: "1.12.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" + url: "https://pub.dev" + source: hosted + version: "1.4.1" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: c254ade258ec8282947a0acbbc90b9575b4f19673533ee46f2f6e9b3aeefd7c0 + url: "https://pub.dev" + source: hosted + version: "3.4.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55 + url: "https://pub.dev" + source: hosted + version: "0.7.7" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + uuid: + dependency: transitive + description: + name: uuid + sha256: a11b666489b1954e01d992f3d601b1804a33937b5a8fe677bd26b8a9f96f96e8 + url: "https://pub.dev" + source: hosted + version: "4.5.2" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: a4f059dc26fc8295b5921376600a194c4ec7d55e72f2fe4c7d2831e103d461e6 + url: "https://pub.dev" + source: hosted + version: "1.1.19" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146" + url: "https://pub.dev" + source: hosted + version: "1.1.13" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: d354a7ec6931e6047785f4db12a1f61ec3d43b207fc0790f863818543f8ff0dc + url: "https://pub.dev" + source: hosted + version: "1.1.19" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + url: "https://pub.dev" + source: hosted + version: "2.2.0" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60" + url: "https://pub.dev" + source: hosted + version: "15.0.2" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + webview_flutter: + dependency: "direct main" + description: + name: webview_flutter + sha256: c3e4fe614b1c814950ad07186007eff2f2e5dd2935eba7b9a9a1af8e5885f1ba + url: "https://pub.dev" + source: hosted + version: "4.13.0" + webview_flutter_android: + dependency: transitive + description: + name: webview_flutter_android + sha256: eeeb3fcd5f0ff9f8446c9f4bbc18a99b809e40297528a3395597d03aafb9f510 + url: "https://pub.dev" + source: hosted + version: "4.10.11" + webview_flutter_platform_interface: + dependency: transitive + description: + name: webview_flutter_platform_interface + sha256: "63d26ee3aca7256a83ccb576a50272edd7cfc80573a4305caa98985feb493ee0" + url: "https://pub.dev" + source: hosted + version: "2.14.0" + webview_flutter_wkwebview: + dependency: transitive + description: + name: webview_flutter_wkwebview + sha256: e49f378ed066efb13fc36186bbe0bd2425630d4ea0dbc71a18fdd0e4d8ed8ebc + url: "https://pub.dev" + source: hosted + version: "3.23.5" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + xml: + dependency: transitive + description: + name: xml + sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025" + url: "https://pub.dev" + source: hosted + version: "6.6.1" +sdks: + dart: ">=3.9.0 <4.0.0" + flutter: ">=3.35.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..cfc2b51 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,52 @@ +name: hyggecraftery +description: HyggeCraftery E-Commerce App mit WooCommerce Integration +publish_to: 'none' +version: 1.0.0+1 + +environment: + sdk: '>=3.0.0 <4.0.0' + +dependencies: + flutter: + sdk: flutter + + # UI & Navigation + cupertino_icons: ^1.0.6 + flutter_svg: ^2.0.9 + + # HTTP & API + http: ^1.1.0 + dio: ^5.4.0 + + # State Management + provider: ^6.1.1 + + # Image Loading + cached_network_image: ^3.3.0 + + # Local Storage + shared_preferences: ^2.2.2 + + # Utilities + intl: ^0.18.1 + + # WebView für Checkout + webview_flutter: ^4.4.2 + + # Connectivity & Error Handling + connectivity_plus: ^5.0.2 + + # Form Validation + email_validator: ^2.1.17 + +dev_dependencies: + flutter_test: + sdk: flutter + flutter_lints: ^3.0.0 + +flutter: + uses-material-design: true + + assets: + - assets/images/ + diff --git a/push-to-github.sh b/push-to-github.sh new file mode 100755 index 0000000..0cee496 --- /dev/null +++ b/push-to-github.sh @@ -0,0 +1,105 @@ +#!/bin/bash +# Script zum Pushen von Code zu GitHub + +echo "📤 Code zu GitHub pushen" +echo "========================" +echo "" + +# Prüfe ob wir im richtigen Verzeichnis sind +if [ ! -f "pubspec.yaml" ]; then + echo "❌ pubspec.yaml nicht gefunden!" + echo " Bitte führe das Script im Projektordner aus." + exit 1 +fi + +# Prüfe ob Git initialisiert ist +if [ ! -d ".git" ]; then + echo "📦 Initialisiere Git Repository..." + git init + git branch -M main +fi + +# Prüfe ob Remote konfiguriert ist +if ! git remote get-url origin >/dev/null 2>&1; then + echo "📋 GitHub Remote konfigurieren..." + git remote add origin https://github.com/Timborimbo/hyggecraftery_APP.git + echo "✅ Remote hinzugefügt" +fi + +# Zeige Status +echo "" +echo "📊 Aktueller Status:" +git status --short + +# Frage ob pushen +echo "" +read -p "Möchtest du alle Änderungen committen und pushen? (j/n): " PUSH + +if [ "$PUSH" != "j" ] && [ "$PUSH" != "J" ] && [ "$PUSH" != "y" ] && [ "$PUSH" != "Y" ]; then + echo "❌ Abgebrochen" + exit 0 +fi + +# Alle Änderungen hinzufügen +echo "" +echo "📦 Füge Änderungen hinzu..." +git add . + +# Commit erstellen +echo "💾 Erstelle Commit..." +COMMIT_MSG="${1:-Update: $(date +'%Y-%m-%d %H:%M:%S')}" +git commit -m "$COMMIT_MSG" || { + echo "⚠️ Keine Änderungen zu committen" + exit 0 +} + +# Pushen +echo "" +echo "📤 Pushe zu GitHub..." +echo "" + +# Versuche mit gespeicherten Credentials zu pushen +git push origin main + +# Falls das fehlschlägt, zeige Hinweis +if [ $? -ne 0 ]; then + echo "" + echo "⚠️ Push fehlgeschlagen. Mögliche Ursachen:" + echo "" + echo "1. Token nicht gespeichert:" + echo " Beim ersten Push wirst du nach Credentials gefragt:" + echo " - Username: Timborimbo" + echo " - Password: Dein Personal Access Token (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)" + echo "" + echo "2. Token in Git speichern (einmalig):" + echo " git config --global credential.helper osxkeychain" + echo "" + echo "3. Dann erneut pushen:" + echo " git push origin main" + echo "" + exit 1 +fi + +if [ $? -eq 0 ]; then + echo "" + echo "✅ Code erfolgreich zu GitHub gepusht!" + echo "" + echo "📋 Nächste Schritte:" + echo " 1. Gehe zu Coolify Dashboard" + echo " 2. Klicke auf 'Redeploy' in deiner Application" + echo " 3. Coolify holt den neuen Code von GitHub" +else + echo "" + echo "❌ Fehler beim Pushen!" + echo "" + echo "Mögliche Ursachen:" + echo " - Falsche Credentials" + echo " - Token abgelaufen" + echo " - Keine Internetverbindung" + echo "" + echo "Lösung:" + echo " - Prüfe deinen Personal Access Token" + echo " - Erstelle einen neuen Token falls nötig" + exit 1 +fi + diff --git a/setup-github.sh b/setup-github.sh new file mode 100755 index 0000000..527a479 --- /dev/null +++ b/setup-github.sh @@ -0,0 +1,82 @@ +#!/bin/bash +# Script zum Setup von GitHub Repository + +echo "🚀 HyggeCraftery - GitHub Setup" +echo "===============================" +echo "" + +# Prüfe ob Git bereits initialisiert ist +if [ ! -d ".git" ]; then + echo "📦 Initialisiere Git Repository..." + git init + git add . + git commit -m "Initial commit: HyggeCraftery Flutter App" + echo "✅ Git Repository initialisiert" +else + echo "✅ Git Repository bereits initialisiert" + git add . + git commit -m "Update: Deploy to Coolify" || echo "⚠️ Keine Änderungen zu committen" +fi + +echo "" +echo "📋 GitHub Repository konfigurieren..." +echo "" + +# Prüfe ob Remote bereits existiert +if git remote get-url origin >/dev/null 2>&1; then + CURRENT_REMOTE=$(git remote get-url origin) + echo "⚠️ Remote bereits konfiguriert: $CURRENT_REMOTE" + read -p "Möchtest du es ändern? (j/n): " CHANGE_REMOTE + + if [ "$CHANGE_REMOTE" = "j" ] || [ "$CHANGE_REMOTE" = "J" ] || [ "$CHANGE_REMOTE" = "y" ] || [ "$CHANGE_REMOTE" = "Y" ]; then + git remote set-url origin https://github.com/Timborimbo/hyggecraftery_APP.git + echo "✅ Remote aktualisiert" + fi +else + git remote add origin https://github.com/Timborimbo/hyggecraftery_APP.git + echo "✅ Remote hinzugefügt" +fi + +echo "" +echo "📤 Pushe zu GitHub..." +echo "" + +# Branch auf main setzen (falls nicht bereits) +git branch -M main 2>/dev/null || true + +# Pushen +echo " Versuche zu pushen..." +git push -u origin main + +if [ $? -eq 0 ]; then + echo "" + echo "✅ Code erfolgreich zu GitHub gepusht!" + echo "" + echo "📋 Nächste Schritte in Coolify:" + echo "" + echo "1. Gehe zu deiner Application: APP_hgyyecraftery" + echo "2. Settings → Source" + echo "3. Source Type: 'Private Repository (with Deploy Key)'" + echo "4. Repository URL: https://github.com/Timborimbo/hyggecraftery_APP.git" + echo "5. Branch: main" + echo "6. Coolify wird einen Deploy Key generieren" + echo "7. Kopiere den Deploy Key und füge ihn zu GitHub hinzu:" + echo " - GitHub → Repository → Settings → Deploy keys → Add deploy key" + echo " - Füge den Key von Coolify ein" + echo "8. Speichern und Deploy!" +else + echo "" + echo "❌ Fehler beim Pushen!" + echo "" + echo "Mögliche Ursachen:" + echo " - Du bist nicht bei GitHub angemeldet" + echo " - Repository existiert noch nicht" + echo " - Keine Berechtigung" + echo "" + echo "Lösung:" + echo " 1. Prüfe, ob das Repository existiert: https://github.com/Timborimbo/hyggecraftery_APP" + echo " 2. Melde dich bei GitHub an" + echo " 3. Versuche es erneut" + exit 1 +fi + diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..38c52eb --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:hyggecraftery/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/web/favicon.png differ diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/web/icons/Icon-192.png differ diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/web/icons/Icon-512.png differ diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/web/icons/Icon-maskable-192.png differ diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/web/icons/Icon-maskable-512.png differ diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..804baeb --- /dev/null +++ b/web/index.html @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + hyggecraftery + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..405460f --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "hyggecraftery", + "short_name": "hyggecraftery", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +}